From 0dd0387e2ba1680d9d5b61c3fadf7fdaace18d53 Mon Sep 17 00:00:00 2001 From: baphomello Date: Wed, 4 Mar 2026 14:59:22 -0300 Subject: [PATCH 01/10] fix(core): support accountIdFromBuffer in MessageTokenizer Adds accountIdFromBuffer server flag to allow reading accountID directly from the buffer instead of comparing with the stored value. Fixes packet desync (Unknown switch: 2653) on servers that send accountID differently from standard kRO. --- src/Network/MessageTokenizer.pm | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/src/Network/MessageTokenizer.pm b/src/Network/MessageTokenizer.pm index d0b512f6ce..53b6425b29 100644 --- a/src/Network/MessageTokenizer.pm +++ b/src/Network/MessageTokenizer.pm @@ -25,6 +25,7 @@ use Modules 'register'; use bytes; no encoding 'utf8'; use enum qw(KNOWN_MESSAGE UNKNOWN_MESSAGE ACCOUNT_ID); +use Globals qw($masterServer); ## # Network::MessageTokenizer->new(Hash* rpackets) @@ -129,19 +130,19 @@ sub readNext { if ($nextMessageMightBeAccountID) { if (length($$buffer) >= 4) { - - $result = substr($$buffer, 0, 4); - if (unpack("V1",$result) == unpack("V1",$Globals::accountID)) { - substr($$buffer, 0, 4, ''); - $$type = ACCOUNT_ID; - } else { - # Account ID is "hidden" in a packet (0283 is one of them) - return $self->readNext($type); - } - - } else { - $self->{nextMessageMightBeAccountID} = $nextMessageMightBeAccountID; - } + $result = substr($$buffer, 0, 4); + + if ($masterServer->{accountIdFromBuffer} || + unpack("V1",$result) == unpack("V1",$Globals::accountID)) { + $Globals::accountID = $result if $masterServer->{accountIdFromBuffer}; + substr($$buffer, 0, 4, ''); + $$type = ACCOUNT_ID; + } else { + return $self->readNext($type); + } + } else { + $self->{nextMessageMightBeAccountID} = $nextMessageMightBeAccountID; + } } elsif ($size > 1) { # Static length message. From d4503c139a12ab47c99c2f3e5289c910f93d01fc Mon Sep 17 00:00:00 2001 From: baphomello Date: Wed, 4 Mar 2026 14:59:22 -0300 Subject: [PATCH 02/10] fix(core): add charBlockSize 247 and server name sanitization - Adds unpack string for charBlockSize 247 (PACKETVER >= 20211103), extending character name field from 24 to 96 bytes - Strips non-printable characters from server names received in the server list packet, preventing garbled names on encrypted servers - Fixes inet_ntoa to correctly handle 4-byte IPv4 addresses --- src/Network/Receive.pm | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/src/Network/Receive.pm b/src/Network/Receive.pm index b84c7fa86f..40d46a7880 100644 --- a/src/Network/Receive.pm +++ b/src/Network/Receive.pm @@ -712,7 +712,12 @@ sub received_characters_blockSize { sub received_characters_unpackString { my $char_info; for ($masterServer && $masterServer->{charBlockSize}) { - if ($_ == 175) { # PACKETVER >= 20201007 [hp, hp_max, sp and sp_max are now uint64] + if ($_ == 247) { # PACKETVER >= 20211103? [extended char block: character name increased to 96 bytes] + $char_info = { + types => 'a4 V2 V V2 V6 v V2 V2 V2 V2 v2 V v9 Z96 C8 v Z16 V4 C', + keys => [qw(charID exp exp_2 zeny exp_job exp_job_2 lv_job body_state health_state effect_state stance manner status_point hp hp_2 hp_max hp_max_2 sp sp_2 sp_max sp_max_2 walkspeed jobID hair_style weapon lv skill_point head_bottom shield head_top head_mid hair_pallete clothes_color name str agi vit int dex luk slot hair_color is_renamed last_map delete_date robe slot_addon rename_addon sex)], + }; + } elsif ($_ == 175) { # PACKETVER >= 20201007 [hp, hp_max, sp and sp_max are now uint64] $char_info = { types => 'a4 V2 V V2 V6 v V2 V2 V2 V2 v2 V v9 Z24 C8 v Z16 V4 C', keys => [qw(charID exp exp_2 zeny exp_job exp_job_2 lv_job body_state health_state effect_state stance manner status_point hp hp_2 hp_max hp_max_2 sp sp_2 sp_max sp_max_2 walkspeed jobID hair_style weapon lv skill_point head_bottom shield head_top head_mid hair_pallete clothes_color name str agi vit int dex luk slot hair_color is_renamed last_map delete_date robe slot_addon rename_addon sex)], @@ -1057,12 +1062,12 @@ sub parse_account_server_info { keys => [qw(ip port name state users property ip_port unknown)], }; - } elsif ($args->{switch} eq '0AC4' || $args->{switch} eq '0B07') { # kRO Zero 2017, kRO ST 201703+, vRO 2021 - $server_info = { - len => 160, - types => 'a4 v Z20 v3 a128', - keys => [qw(ip port name users state property ip_port)], - }; + } elsif ($args->{switch} eq '0AC4' || $args->{switch} eq '0B07') { # kRO Zero 2017, kRO ST 201703+, vRO 2021 + $server_info = { + len => 160, + types => 'a4 v Z20 v3 a128', + keys => [qw(ip port name users state property ip_port)], + }; } elsif ($args->{switch} eq '0AC9') { # cRO 2017 $server_info = { @@ -1103,6 +1108,7 @@ sub parse_account_server_info { $server{ip} = inet_ntoa($server{ip}); } $server{name} = bytesToString($server{name}); + $server{name} =~ s/[^\x20-\x7E]//g; # Remove non-printable characters from server name \%server } unpack '(a'.$server_info->{len}.')*', $args->{serverInfo}; From c085dd3fb6b4517ce563533735f021d2dd19be86 Mon Sep 17 00:00:00 2001 From: baphomello Date: Wed, 4 Mar 2026 14:59:22 -0300 Subject: [PATCH 03/10] feat(laRO): add Network::Receive::laRO and Network::Send::laRO - Receive: extends kRO::RagexeRE_2021_11_03 - Send: overrides master_login with LatamChecksum header and adds sendUsePackageItem (packet 0x0BAF) for package item usage --- src/Network/Receive/laRO.pm | 20 ++++++++++++++ src/Network/Send/laRO.pm | 54 +++++++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 src/Network/Receive/laRO.pm create mode 100644 src/Network/Send/laRO.pm diff --git a/src/Network/Receive/laRO.pm b/src/Network/Receive/laRO.pm new file mode 100644 index 0000000000..3fd62a72ef --- /dev/null +++ b/src/Network/Receive/laRO.pm @@ -0,0 +1,20 @@ +package Network::Receive::laRO; +use strict; +use base qw(Network::Receive::kRO::RagexeRE_2021_11_03); + +sub new { + my ($class) = @_; + my $self = $class->SUPER::new(@_); + + my %packets = (); + + $self->{packet_list}{$_} = $packets{$_} for keys %packets; + + my %handlers = qw(); + + $self->{packet_lut}{$_} = $handlers{$_} for keys %handlers; + + return $self; +} + +1; \ No newline at end of file diff --git a/src/Network/Send/laRO.pm b/src/Network/Send/laRO.pm new file mode 100644 index 0000000000..e957b3cf19 --- /dev/null +++ b/src/Network/Send/laRO.pm @@ -0,0 +1,54 @@ +package Network::Send::laRO; +use strict; +use base qw(Network::Send::kRO::RagexeRE_2021_11_03); +use Globals qw($accountID); + +sub new { + my ( $class ) = @_; + my $self = $class->SUPER::new( @_ ); + + my %packets = ( + '0064' => ['master_login', 'V Z24 Z24 C', [qw(version username password master_version)]], + '0BAF' => ['use_packageitem', 'v V V V', [qw(index accountID itemID boxIndex)]], + ); + + $self->{packet_list}{$_} = $packets{$_} for keys %packets; + + my %handlers = qw( + master_login 0064 + use_packageitem 0BAF + ); + + $self->{packet_lut}{$_} = $handlers{$_} for keys %handlers; + + return $self; +} + +sub sendUsePackageItem { + my ($self, $index, $itemID, $boxIndex) = @_; + + my $acc = $accountID; + if (defined $acc && length($acc) == 4 && $acc !~ /^\d+$/) { + $acc = unpack('V', $acc); + } + $acc = 0 unless defined $acc; + + $self->sendToServer($self->reconstruct({ + switch => 'use_packageitem', + index => int($index), + accountID => int($acc), + itemID => int($itemID), + boxIndex => int($boxIndex), + })); +} + +sub sendMasterLogin { + my ($self, $username, $password, $master_version, $version) = @_; + $self->sendToServer(pack('v a16', 0x0204, + pack('H*', 'a81b5c0b40ce1c6a0beebc2aed11742f') + )); + + $self->SUPER::sendMasterLogin($username, $password, $master_version, $version); +} + +1; \ No newline at end of file From 4d34e4fcfc7cb9209dd19269bfcbbe769ad806ff Mon Sep 17 00:00:00 2001 From: baphomello Date: Wed, 4 Mar 2026 14:59:22 -0300 Subject: [PATCH 04/10] feat(commands): add openpackage command for package item selection Adds 'openpackage ' command, which sends the use_packageitem packet (0x0BAF) allowing the bot to open package/box items and select a specific option by index. --- src/Commands.pm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/src/Commands.pm b/src/Commands.pm index ea84ae5967..1a01942041 100644 --- a/src/Commands.pm +++ b/src/Commands.pm @@ -429,6 +429,10 @@ sub initHandlers { ], \&cmdNPCCreateRequest], ['nl', T("List NPCs that are on screen."), \&cmdNPCList], ['openbuyershop', undef, \&cmdOpenBuyerShop], + ['openpackage', [ + T("Use package item with selection."), + [T(" "), T("use package item selecting option")] + ], \&cmdOpenPackage], ['openshop', T("Open your vending shop."), \&cmdOpenShop], ['p', [ T("Chat in the party chat."), @@ -4229,6 +4233,38 @@ sub cmdNPCList { message $msg, "list"; } +sub cmdOpenPackage { + my (undef, $args) = @_; + + unless ($args) { + error "Usage: openpackage \n"; + return; + } + + my @parts = split(/\s+/, $args); + my $boxIndex = pop @parts; + my $itemName = join(' ', @parts); + + my $item = $char->inventory->getByName($itemName); + + unless ($item) { + error "Item '$itemName' not found in inventory.\n"; + return; + } + + my $realIndex = unpack("v", $item->{ID}); + my $nameID = $item->{nameID}; + $boxIndex = int($boxIndex); + + message "Using package item: $item->{name} (slot $realIndex / binID $item->{binID}) option $boxIndex\n"; + + $messageSender->sendUsePackageItem( + $realIndex, + $nameID, + $boxIndex + ); +} + sub cmdOpenShop { if (!$net || $net->getState() != Network::IN_GAME) { error TF("You must be logged in the game to use this command '%s'\n", shift); From 4089d9c9ba01f57200a9d1e8fde4cfae3092d245 Mon Sep 17 00:00:00 2001 From: baphomello Date: Wed, 4 Mar 2026 14:59:22 -0300 Subject: [PATCH 05/10] feat(tables): add Landverse America laRO server to servers.txt Adds server configuration for laRO (Landverse America - Muka): - charBlockSize 247, accountIdFromBuffer 1, pinCode 0 - serverType laRO, serverEncoding Western, addTableFolders laRO --- tables/servers.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/tables/servers.txt b/tables/servers.txt index 65c7c6d389..2ff17cbc3c 100644 --- a/tables/servers.txt +++ b/tables/servers.txt @@ -207,6 +207,23 @@ storageEncryptKey 0x050B6F79, 0x0202C179, 0x0E20120, 0x04FA43E3, 0x0179B6C8, 0x0 pinCode 1 gameGuard 0 +# https://rola.maxion.gg/ +[Landverse America - laRO: Muka] +ip 103.234.239.1 +port 6900 +master_version 1 +version 55 +serverType laRO +serverEncoding Western +addTableFolders laRO +charBlockSize 247 +charDeleteDateType 1 +blockingPlayerCancel 1 +accountIdFromBuffer 1 +rankingSystemType 1 +itemListType 1 +pinCode 0 + # https://ro.gnjoylatam.com/ [Latam - ROla: Freya/Nidhogg/Yggdrasil] OTP_ip lt-account-01.gnjoylatam.com From 1df7640ba53e3cbf78680e80320041f4216f74b3 Mon Sep 17 00:00:00 2001 From: baphomello Date: Wed, 4 Mar 2026 14:59:22 -0300 Subject: [PATCH 06/10] feat(tables/laRO): add extracted table files for laRO server Adds all OpenKore table files extracted from the laRO client: - items.txt (27,453 items from itemInfo_true.lub) - itemsdescriptions.txt (descriptions, color codes stripped) - itemslotcounttable.txt (3,813 slotted items) - itemslots.txt (extracted from data.grf) - maps.txt (extracted from roverse.grf mapnametable) - resnametable.txt (merged from data.grf + roverse.grf) - skillssp.txt (SP costs from skillinfolist.lub) - msgstringtable.txt and achievement_list.txt (extracted from GRF) - recvpackets.txt --- tables/laRO/achievement_list.txt | 908 + tables/laRO/items.txt | 27453 +++ tables/laRO/itemsdescriptions.txt | 336481 ++++++++++++++++++++++++++ tables/laRO/itemslotcounttable.txt | 3813 + tables/laRO/itemslots.txt | 1800 + tables/laRO/maps.txt | 1380 + tables/laRO/msgstringtable.txt | 4023 + tables/laRO/recvpackets.txt | 1489 + tables/laRO/resnametable.txt | 1675 + tables/laRO/skillssp.txt | 8673 + 10 files changed, 387695 insertions(+) create mode 100644 tables/laRO/achievement_list.txt create mode 100644 tables/laRO/items.txt create mode 100644 tables/laRO/itemsdescriptions.txt create mode 100644 tables/laRO/itemslotcounttable.txt create mode 100644 tables/laRO/itemslots.txt create mode 100644 tables/laRO/maps.txt create mode 100644 tables/laRO/msgstringtable.txt create mode 100644 tables/laRO/recvpackets.txt create mode 100644 tables/laRO/resnametable.txt create mode 100644 tables/laRO/skillssp.txt diff --git a/tables/laRO/achievement_list.txt b/tables/laRO/achievement_list.txt new file mode 100644 index 0000000000..9268c72ae3 --- /dev/null +++ b/tables/laRO/achievement_list.txt @@ -0,0 +1,908 @@ +achievement_tbl = { + [300000] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Tesouro dos Céus!", + content = { + summary = "Receba uma recompensa especial caída do céu.", + details = "Benefícios do Título\n\t- VIT +3\n\t- HIT +5\n\nPrepare-se para ser agraciado com um presente celestial! Ao conquistar este título, você será recompensado com um bônus que vai elevar suas habilidades a um novo patamar. Não perca a chance de brilhar como nunca antes!" + }, + resource = {}, + reward = { title = 1048 }, + score = 10 + }, + [300001] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Herói do Bronze", + content = { + summary = "Adquira o Pacote de Pré-venda Bronze", + details = "O título 'Glória' está disponível para os jogadores que adquiriram o Pacote de Pré-venda Bronze.\nBenefícios do Título\n\t- Todos os Stats +1" + }, + resource = {}, + reward = { title = 1049 }, + score = 10 + }, + [300002] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Guardião de Midgard", + content = { + summary = "Adquira o Pacote de Pré-venda Nível Prata.", + details = "O título 'Guardião de Midgard' está disponível para os jogadores que adquirirem o Pacote de Pré-venda Nível Prata.\nBenefícios do Título\n\t- Todos os Stats +1" + }, + resource = {}, + reward = { title = 1050 }, + score = 10 + }, + [300003] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Nobreza Suprema", + content = { + summary = "Adquira o Pacote de Pré-venda Ouro para desbloquear este título.", + details = "O título 'Nobreza Suprema' é concedido aos jogadores que adquiriram o Pacote de Pré-venda Ouro.\nBenefícios do Título\n\t- Todos os Stats +3" + }, + resource = {}, + reward = { title = 1051 }, + score = 10 + }, + [300004] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Apoiador Lendário da Pré-venda", + content = { + summary = "Adquira o Pacote de Pré-venda Lendário", + details = "O título 'Fundador' está disponível para os jogadores que compraram o Pacote de Pré-venda Lendário.\nBenefícios do Título\n\t- Todos os Stats +5" + }, + resource = {}, + reward = { title = 1052 }, + score = 10 + }, + [300005] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Pioneiro de Midgard", + content = { + summary = "Participou do CBT1 e alcançou o nível 60.", + details = "O título 'Pioneiro de Midgard' é reservado para os bravos aventureiros que desbravaram o CBT1 e chegaram ao nível 60. Mostre ao mundo que você foi um dos primeiros a explorar as terras de Midgard!\nBenefícios do Título\n\t- [lista de benefícios]" + }, + resource = {}, + reward = { title = 1053 }, + score = 10 + }, + [300006] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Pioneiro Lendário", + content = { + summary = "Participou do CBT1 e alcançou o nível 90.", + details = "O título 'Beta Tester' é uma honra reservada aos bravos que desbravaram o CBT1 e chegaram ao nível 90. Mostre ao mundo que você foi um dos primeiros a explorar as terras de Midgard!\nBenefícios do Título\n\t- Exclusivo para os pioneiros do CBT1" + }, + resource = {}, + reward = { title = 1054 }, + score = 10 + }, + [300007] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Mestre da Segurança", + content = { + summary = "Recompensa do Passe de Batalha SSI na Etapa 19", + details = "O título 'Mestre da Segurança' está disponível para os jogadores que alcançarem a Etapa 19 do Passe de Batalha SSI.\nBenefícios do Título\n\t- Todos os Stats +3" + }, + resource = {}, + reward = { title = 1055 }, + score = 10 + }, + [300008] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Assassino Supremo", + content = { + summary = "Conquiste o topo no Evento Corrida de Níveis.", + details = "O título 'Assassino Supremo' é reservado para aqueles que alcançam a vitória no Evento Corrida de Níveis.\nBenefícios do Título\n\t- Nenhum, mas a glória é sua!" + }, + resource = {}, + reward = { title = 1056 }, + score = 10 + }, + [300009] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Caçador Supremo", + content = { + summary = "Conquiste o 1º lugar no Evento Corrida de Níveis.", + details = "O título 'Caçador Supremo' é reservado para os jogadores que alcançam o topo no Evento Corrida de Níveis. Mostre a todos que você é o melhor dos melhores!\nBenefícios do Título\n\t- Nenhum" + }, + resource = {}, + reward = { title = 1057 }, + score = 10 + }, + [300010] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Cavaleiro Supremo", + content = { + summary = "Conquiste o 1º lugar no Evento Corrida de Níveis.", + details = "O título 'Cavaleiro Supremo' é reservado para aqueles que alcançam o topo no Evento Corrida de Níveis. Mostre sua força e determinação para ser o número um!\nBenefícios do Título\n\t- Nenhum" + }, + resource = {}, + reward = { title = 1058 }, + score = 10 + }, + [300011] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Sacerdote Supremo", + content = { + summary = "Conquiste o 1º lugar no Evento Corrida de Níveis.", + details = "O título 'Sacerdote Supremo' é reservado para aqueles que alcançam o topo no Evento Corrida de Níveis. Mostre seu poder e dedicação para ser o número 1!\nBenefícios do Título\n\t- Nenhum, além da glória eterna!" + }, + resource = {}, + reward = { title = 1059 }, + score = 10 + }, + [300012] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Ferreiro Supremo", + content = { + summary = "Conquiste o topo no Evento Corrida de Níveis como Ferreiro.", + details = "O título 'Ferreiro Supremo' é reservado aos jogadores que alcançam o primeiro lugar no Evento Corrida de Níveis. Mostre sua habilidade e determinação para se tornar o melhor entre os ferreiros!\nBenefícios do Título\n\t- Nenhum, além da glória eterna!" + }, + resource = {}, + reward = { title = 1060 }, + score = 10 + }, + [300013] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Arquimago Supremo", + content = { + summary = "Conquiste o 1º lugar no Evento Corrida de Níveis.", + details = "O título de 'Arquimago Supremo' é reservado para os jogadores que alcançam o topo no Evento Corrida de Níveis. Mostre seu poder e torne-se uma lenda entre os magos!\nBenefícios do Título\n\t- Nenhum" + }, + resource = {}, + reward = { title = 1061 }, + score = 10 + }, + [300014] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Senhor das Terras I", + content = { + summary = "Conquiste o primeiro nível de propriedade de terras.", + details = "Alcance o primeiro patamar de domínio territorial e mostre seu poder em Midgard!\nBenefícios do Título\n\t- Todos os Stats + 3" + }, + resource = {}, + reward = { title = 1062 }, + score = 0 + }, + [300015] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Senhor das Terras II", + content = { + summary = "Conquiste o segundo nível de domínio sobre suas terras.", + details = "Alcance o domínio absoluto sobre suas terras e desbloqueie o poder do segundo nível! \nBenefícios do Título\n\t- Todos os Stats + 4" + }, + resource = {}, + reward = { title = 1063 }, + score = 0 + }, + [300016] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Senhor das Terras III", + content = { + summary = "Conquista o terceiro nível de domínio territorial.", + details = "Eleve seu status ao máximo e torne-se o verdadeiro Senhor das Terras! Alcance o nível 3 de propriedade e colha os frutos do seu império.\nBenefícios do Título\n\t- Todos os Stats + 5" + }, + resource = {}, + reward = { title = 1064 }, + score = 0 + }, + [300017] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Mordida Glacial", + content = { + summary = "Obtenha o título 'Mordida Glacial' ao alcançar o Step-19 do Passe de Batalha - Premium SS II.", + details = "Desperte o poder do gelo e conquiste o título 'Mordida Glacial' ao atingir o Step-19 do Passe de Batalha - Premium SS II. \nBenefícios do Título\n\t- Todos os Stats +3" + }, + resource = {}, + reward = { title = 1065 }, + score = 0 + }, + [300018] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "O Desbravador", + content = { + summary = "Conquista disponível para jogadores que possuem o Pacote Inicial 2-2.", + details = "O título 'O Desbravador' é reservado para aqueles que iniciam sua jornada com o Pacote Inicial 2-2. Mostre ao mundo que você está pronto para enfrentar qualquer desafio!\nBenefícios do Título\n\t- Todos os Stats +1\n\t- Exp & Drop +3%" + }, + resource = {}, + reward = { title = 1066 }, + score = 0 + }, + [300019] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Monge Supremo", + content = { + summary = "Conquiste o primeiro lugar no Evento Corrida de Níveis.", + details = "O título 'Monge Supremo' é reservado para aqueles que alcançam o topo no Evento Corrida de Níveis. Mostre ao mundo que você é o melhor dos melhores!\nBenefícios do Título\n\t- Nenhum, além da glória eterna!" + }, + resource = {}, + reward = { title = 1067 }, + score = 10 + }, + [300020] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Rogue Supremo", + content = { + summary = "Conquiste o 1º lugar no Evento Corrida de Níveis.", + details = "O título 'Rogue Supremo' é reservado para aqueles que alcançam o topo no Evento Corrida de Níveis. Mostre que você é o mais ágil e astuto de todos!\nBenefícios do Título\n\t- Nada (mas a glória é toda sua!)" + }, + resource = {}, + reward = { title = 1068 }, + score = 10 + }, + [300021] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Alquimista Supremo", + content = { + summary = "Conquiste o topo no Evento Corrida de Níveis como Alquimista.", + details = "O título 'Alquimista Supremo' é reservado para aqueles que se destacam como vencedores no Evento Corrida de Níveis.\nBenefícios do Título\n\t- Nenhum, apenas a glória eterna!" + }, + resource = {}, + reward = { title = 1069 }, + score = 10 + }, + [300022] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Maestro Supremo", + content = { + summary = "Conquiste o 1º lugar no Evento Corrida de Níveis como Bard ou Dancer.", + details = "O título 'Maestro Supremo' é reservado para aqueles que alcançam o topo no Evento Corrida de Níveis como Bard ou Dancer. Mostre que sua melodia é a mais poderosa de todas!\nBenefícios do Título\n\t- Nada, além da glória eterna!" + }, + resource = {}, + reward = { title = 1070 }, + score = 10 + }, + [300023] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Sábio Supremo", + content = { + summary = "Conquiste o primeiro lugar no Evento Corrida de Níveis.", + details = "O título 'Sábio Supremo' é reservado para aqueles que alcançam o topo no Evento Corrida de Níveis. Mostre que você é o mestre dos níveis e conquiste seu lugar entre os lendários!\nBenefícios do Título\n\t- Nenhum" + }, + resource = {}, + reward = { title = 1071 }, + score = 10 + }, + [300024] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Cruzado Supremo", + content = { + summary = "Conquiste o primeiro lugar no Evento Corrida de Níveis.", + details = "O título 'Cruzado Supremo' é concedido aos jogadores que triunfarem como vencedores do Evento Corrida de Níveis.\nBenefícios do Título\n\t- Nenhum, mas a glória é eterna!" + }, + resource = {}, + reward = { title = 1072 }, + score = 10 + }, + [300025] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Rainha do Palco", + content = { + summary = "Conquiste o 1º lugar no Evento Corrida de Níveis.", + details = "O título 'Rainha do Palco' é concedido aos jogadores que se destacam como vencedores do Evento Corrida de Níveis.\nBenefícios do Título\n\t- Nenhum, mas a glória é toda sua!" + }, + resource = {}, + reward = { title = 1073 }, + score = 10 + }, + [300026] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Arquitetor das Neves", + content = { + summary = "Participe do evento de construção de bonecos de neve.", + details = "O título 'Arquitetor das Neves' está disponível para os jogadores que participarem do evento de construção de bonecos de neve. Mostre suas habilidades artísticas e divirta-se com a neve!\nBenefícios do Título\n\t- Nenhum" + }, + resource = {}, + reward = { title = 1074 }, + score = 10 + }, + [300027] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Escultor de Neves", + content = { + summary = "Participe do evento de construção de bonecos de neve.", + details = "O título 'Escultor de Neves' está disponível para os jogadores que participarem do evento de construção de bonecos de neve.\nBenefícios do Título\n\t- Nenhum, mas sua criatividade será reconhecida!" + }, + resource = {}, + reward = { title = 1075 }, + score = 10 + }, + [300028] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Caçador de Geada", + content = { + summary = "Participe do evento de construção de Bonecos de Neve.", + details = "O título 'Caçador de Geada' está disponível para jogadores que participarem do evento de construção de Bonecos de Neve. Mostre seu talento para moldar o gelo e conquiste este título gelado!\nBenefícios do Título\n\t- Nenhum, mas seu estilo vai congelar os corações!" + }, + resource = {}, + reward = { title = 1076 }, + score = 10 + }, + [300029] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Escultor das Neves", + content = { + summary = "Participe do evento de construção de bonecos de neve.", + details = "O título 'Escultor das Neves' está disponível para jogadores que participam do evento de construção de bonecos de neve.\nBenefícios do Título\n\t- Nenhum, mas a diversão é garantida!" + }, + resource = {}, + reward = { title = 1077 }, + score = 10 + }, + [300030] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Mestre do Boneco de Neve", + content = { + summary = "Participe do evento de construção de bonecos de neve.", + details = "Desperte o espírito do inverno e mostre suas habilidades artísticas ao participar do evento de construção de bonecos de neve! Torne-se um verdadeiro Mestre do Boneco de Neve e celebre a magia do inverno em Midgard.\nBenefícios do Título\n\t- Nada, além do orgulho de ser um artista do gelo!" + }, + resource = {}, + reward = { title = 1078 }, + score = 10 + }, + [300031] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Viajante do Caminho I", + content = { + summary = "Desbrave a Masmorra do Caminho e conquiste este título.", + details = "O título 'Viajante do Caminho I' pode ser adquirido na Loja do Caminho.\nBenefícios do Título\n\t- Nenhum, mas o prestígio é todo seu!" + }, + resource = {}, + reward = { title = 1079 }, + score = 10 + }, + [300032] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Viajante do Destino II", + content = { + summary = "Desbrave a Masmorra do Caminho e conquiste o título lendário.", + details = "O título 'Viajante do Destino II' pode ser adquirido na Loja do Caminho.\nBenefícios do Título\n\t- Nenhum, mas a honra é inestimável!" + }, + resource = {}, + reward = { title = 1080 }, + score = 10 + }, + [300033] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Viajante das Trilhas III", + content = { + summary = "Conquiste o título ao adquirir na Loja das Trilhas.", + details = "O título 'Viajante das Trilhas III' pode ser obtido na Loja das Trilhas.\nBenefícios do Título\n\t- Nenhum, mas a jornada é o que importa!" + }, + resource = {}, + reward = { title = 1081 }, + score = 10 + }, + [300034] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Coração Grandioso", + content = { + summary = "Coração Grandioso", + details = "O título 'Coração Grandioso' está disponível para jogadores que alcançarem a recompensa Step-19 do Passe de Batalha - Premium SS III.\nBenefícios do Título\n\t- Todos os Stats +3" + }, + resource = {}, + reward = { title = 1082 }, + score = 0 + }, + [300035] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "A Jornada Começa", + content = { + summary = "Desbloqueie o título 'A Jornada Começa' ao atingir 300 ION no Top Up.", + details = "O título 'A Jornada Começa' está disponível para aventureiros que alcançarem o marco de 300 ION no Top Up.\nBenefícios do Título\n\t- Nenhum, mas o verdadeiro prêmio é a jornada!" + }, + resource = {}, + reward = { title = 1083 }, + score = 0 + }, + [300036] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Dividido e Conquistado", + content = { + summary = "Adquira o título 'Dividido' na Loja da Guilda.", + details = "O título 'Dividido' está disponível na Loja da Guilda. \nBenefícios do Título\n\t- Nenhum, mas o estilo é tudo!" + }, + resource = {}, + reward = { title = 1084 }, + score = 0 + }, + [300037] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Mania do Esplendor", + content = { + summary = "Conquista disponível ao atingir o Passo-19 do Passe de Batalha - Premium SS IV.", + details = "Liberte o poder do título 'Mania do Esplendor' ao alcançar o Passo-19 do Passe de Batalha - Premium SS IV.\nBenefícios do Título\n\t- Todos os Stats +3\nDesperte a verdadeira força e brilhe como nunca antes!" + }, + resource = {}, + reward = { title = 1085 }, + score = 0 + }, + [300038] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Ninja Supremo", + content = { + summary = "Conquiste o topo no Evento Corrida de Níveis.", + details = "O título 'Ninja Supremo' é reservado para aqueles que dominam o Evento Corrida de Níveis e alcançam o primeiro lugar. Mostre sua habilidade e agilidade para se tornar o ninja número um!\nBenefícios do Título\n\t- Nada" + }, + resource = {}, + reward = { title = 1086 }, + score = 10 + }, + [300039] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Pistoleiro Supremo", + content = { + summary = "Conquiste o primeiro lugar no Evento Corrida de Níveis.", + details = "O título 'Pistoleiro Supremo' é reservado para aqueles que dominam o Evento Corrida de Níveis e se consagram como vencedores. Mostre que você é o mais rápido no gatilho e o mais ágil em Midgard!\nBenefícios do Título\n\t- Nenhum, mas o prestígio é inigualável!" + }, + resource = {}, + reward = { title = 1087 }, + score = 10 + }, + [300040] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Mestre Taekwondo Supremo", + content = { + summary = "Conquiste o 1º lugar no Evento Corrida de Níveis.", + details = "O título 'Mestre Taekwondo Supremo' é reservado para os jogadores que alcançam o topo no Evento Corrida de Níveis. Mostre sua habilidade e dedicação para se tornar o número 1!\nBenefícios do Título\n\t- Nenhum" + }, + resource = {}, + reward = { title = 1088 }, + score = 10 + }, + [300041] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Vínculo Supremo", + content = { + summary = "Conquiste o 1º lugar no Evento Corrida de Níveis.", + details = "O título 'Vínculo Supremo' é reservado para aqueles que alcançam o topo no Evento Corrida de Níveis como Soul Linker. Mostre a todos que você é o verdadeiro mestre dos vínculos espirituais!\nBenefícios do Título\n\t- Nenhum, além da glória eterna!" + }, + resource = {}, + reward = { title = 1089 }, + score = 10 + }, + [300042] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Aventuras em Prontera", + content = { + summary = "Conquista disponível para jogadores com Passe de Batalha - Classe.", + details = "Desbrave os mistérios de Prontera e conquiste o título de aventureiro! Este título é reservado para aqueles que possuem o Passe de Batalha - Classe.\nBenefícios do Título\n\t- Exp & Drop +3%" + }, + resource = {}, + reward = { title = 1090 }, + score = 10 + }, + [300043] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Guardião de Prontera", + content = { + summary = "Conquiste o título 'Guardião de Prontera' ao possuir o Passe de Batalha - Classe.", + details = "O título 'Guardião de Prontera' está disponível para os jogadores que possuem o Passe de Batalha - Classe.\nBenefícios do Título\n\t- Todos os Stats +3\nTorne-se uma lenda em Prontera e mostre seu valor com este título épico!" + }, + resource = {}, + reward = { title = 1091 }, + score = 10 + }, + [300044] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Bem-vindo a Midgard!", + content = { + summary = "Desbloqueie ao atingir o marco de 300ION no TOPUP.", + details = "Parabéns, aventureiro! Você acaba de ser oficialmente recebido em Midgard ao atingir o marco de 300ION no TOPUP. Embora não haja benefícios diretos, o verdadeiro prêmio é a sua jornada e o que está por vir!\nBenefícios do Título\n\t- Nenhum" + }, + resource = {}, + reward = { title = 1092 }, + score = 10 + }, + [300045] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Caçador de MVPs", + content = { + summary = "Torne-se um lendário Caçador de MVPs ao derrotar chefes poderosos durante eventos especiais.", + details = "O título de 'Caçador de MVPs' é concedido àqueles que se destacam na caça aos MVPs durante eventos épicos.\nBenefícios do Título\n\t- Nada, além do prestígio de ser um verdadeiro mestre dos MVPs!" + }, + resource = {}, + reward = { title = 1093 }, + score = 10 + }, + [300046] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Soberano dos Caçadores", + content = { + summary = "Torne-se o Soberano dos Caçadores ao derrotar o MVP do evento.", + details = "Prove seu valor e conquiste o título de 'Soberano dos Caçadores' ao abater o MVP do evento. Mostre que você é o verdadeiro mestre da caça!\nBenefícios do Título\n\t- Nenhum" + }, + resource = {}, + reward = { title = 1094 }, + score = 10 + }, + [300047] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Caçador Supremo", + content = { + summary = "Conquiste o título de Caçador Supremo ao derrotar MVPs durante eventos especiais.", + details = "Mostre sua supremacia nos campos de batalha e conquiste o título de 'Caçador Supremo' ao abater MVPs em eventos épicos. Prove que você é o predador mais temido de Midgard!\nBenefícios do Título\n\t- Nenhum" + }, + resource = {}, + reward = { title = 1095 }, + score = 10 + }, + [300048] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Caçador de Corações", + content = { + summary = "Derrote o MVP do evento Caçador de Corações.", + details = "Prove seu valor como o lendário Caçador de Corações ao derrotar o MVP deste evento especial. Mostre que você é o verdadeiro mestre da caça!\nBenefícios do Título\n\t- Nenhum" + }, + resource = {}, + reward = { title = 1096 }, + score = 10 + }, + [300049] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Aniquilador de Glastheim Antiga", + content = { + summary = "Conquiste o título de Aniquilador de Glastheim Antiga ao atingir o marco de 300ION no TOPUP.", + details = "O título 'Aniquilador de Glastheim Antiga' é concedido aos bravos que alcançam o marco de 300ION no TOPUP. Mostre seu poder e torne-se uma lenda em Glastheim!\nBenefícios do Título\n\t- Nada, além da glória eterna!" + }, + resource = {}, + reward = { title = 1097 }, + score = 10 + }, + [300050] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Portal para o Rift de Yggdrasil", + content = { + summary = "Desbloqueie o título ao atingir o marco de 300ION no TOPUP.", + details = "O título 'Portal para o Rift de Yggdrasil' é concedido aos aventureiros que alcançam o marco de 300ION no TOPUP. \nBenefícios do Título\n\t- Nenhum (mas a glória é toda sua!)" + }, + resource = {}, + reward = { title = 1098 }, + score = 10 + }, + [300051] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Imperador das Chamas", + content = { + summary = "Torne-se o Imperador das Chamas ao alcançar o Step-30 do Passe de Batalha - Premium SS IV.", + details = "Ascenda ao trono flamejante e conquiste o título de 'Imperador das Chamas' ao atingir o Step-30 no Passe de Batalha - Premium SS IV. Mostre seu domínio sobre o fogo e brilhe como nunca antes!\nBenefícios do Título\n\t- Nada, além do prestígio ardente!" + }, + resource = {}, + reward = { title = 1099 }, + score = 10 + }, + [300056] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Aventuras Inéditas", + content = { + summary = "Dê boas-vindas à sua nova jornada em Midgard!", + details = "A conquista 'Aventuras Inéditas' celebra o início da sua jornada épica em Ragnarok Online. Prepare-se para explorar terras desconhecidas e enfrentar desafios incríveis!\nBenefícios do Título\n\t- Nada (mas a aventura em si já é uma recompensa!)" + }, + resource = {}, + reward = { title = 1104 }, + score = 10 + }, + [300057] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Vento Celestial", + content = { + summary = "Conquista o título 'Vento Celestial' ao alcançar o Passo 30 do Passe de Batalha - Premium.", + details = "Alcance o ápice do Passe de Batalha - Premium e seja agraciado com o título 'Vento Celestial'.\nBenefícios do Título\n\t- Nenhum, mas o prestígio é inestimável!" + }, + resource = {}, + reward = { title = 1105 }, + score = 10 + }, + [300058] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Festa Épica de Ragnarok", + content = { + summary = "Participe do evento 'Ragnarok Festa' e celebre como um verdadeiro herói!", + details = "A 'Ragnarok Festa' é a celebração máxima dos aventureiros de Midgard. Junte-se a essa festa lendária e mostre seu espírito de camaradagem!\nBenefícios do Título\n\t- Nada, apenas a glória de participar!" + }, + resource = {}, + reward = { title = 1106 }, + score = 10 + }, + [300059] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Olhar Desafiador", + content = { + summary = "Participe da lendária Ragnarok Festa e conquiste o olhar que desafia tudo!", + details = "A lendária Ragnarok Festa espera por você! Mostre sua coragem e estilo com o olhar que desafia qualquer oponente. \nBenefícios do Título\n\t- Nenhum, apenas o respeito dos aventureiros!" + }, + resource = {}, + reward = { title = 1107 }, + score = 10 + }, + [300060] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Festa dos Emoticons!", + content = { + summary = "Participe da Festa Ragnarok com o emoticon especial (๐^_^๐).", + details = "A celebração está no ar! Entre na Festa Ragnarok usando o emoticon (๐^_^๐) e mostre seu espírito festivo. Benefícios do Título\n\t- Nenhum, mas a diversão é garantida!" + }, + resource = {}, + reward = { title = 1108 }, + score = 10 + }, + [300063] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Fenda de Yggdrasil", + content = { + summary = "Participe do evento épico 'Fenda de Yggdrasil' no Ragnarok Festa.", + details = "Mergulhe na lendária 'Fenda de Yggdrasil' durante o Ragnarok Festa e prove seu valor em meio ao caos! \nBenefícios do Título\n\t- Nada (mas a glória é sua!)" + }, + resource = {}, + reward = { title = 1111 }, + score = 10 + }, + [300064] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Festa Épica ROLC2024", + content = { + summary = "Participe da grandiosa Festa ROLC2024 em Ragnarok Online.", + details = "A lendária Festa ROLC2024 está de volta! Junte-se a outros aventureiros nesta celebração épica em Midgard. \nBenefícios do Título\n\t- Nenhum" + }, + resource = {}, + reward = { title = 1112 }, + score = 10 + }, + [300067] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Sangue da Feiticeira", + content = { + summary = "Adquira o lendário 'Sangue da Feiticeira'.", + details = "O lendário 'Sangue da Feiticeira' agora corre em suas veias, mas não traz benefícios além do prestígio! Prove seu valor e conquiste este título místico.\nBenefícios do Título\n\t- Nenhum" + }, + resource = {}, + reward = { title = 1115 }, + score = 10 + }, + [300130] = { + UI_Type = 0, + group = "CHATTING", + major = 1, + minor = 2, + title = "Nova Journey", + content = { + summary = "Nova Journey", + details = "The \'Nova Journey\' Nova Journey .\nTitle Benefits\n\t- Nothing" + }, + resource = {}, + reward = { title = 1178 }, + score = 10 + }, +} + +function main() + for achieveID, achieveInfo in pairs(achievement_tbl) do + result, msg = InsertAchieveInfo(achieveID, achieveInfo.title, achieveInfo.content.summary, achieveInfo.content.details, achieveInfo.score) + if not result then + return false, msg + end + if nil ~= achieveInfo.resource then + for index, resource in ipairs(achieveInfo.resource) do + if nil ~= resource.shortcut then + shortcut = resource.shortcut + else + shortcut = -1 + end + if 0 == achieveInfo.UI_Type then + result, msg = InsertAchieveResource(achieveID, resource.text, 0, shortcut) + elseif 1 == achieveInfo.UI_Type then + result, msg = InsertAchieveResource(achieveID, resource.text, resource.count, shortcut) + end + if not result then + return false, msg + end + end + end + if nil ~= achieveInfo.reward then + if nil ~= achieveInfo.reward.item then + result, msg = InsertAchieveRewardItem(achieveID, achieveInfo.reward.item) + end + if nil ~= achieveInfo.reward.title then + result, msg = InsertAchieveRewardTitle(achieveID, achieveInfo.reward.title) + if not result then + return false, msg + end + end + if nil ~= achieveInfo.reward.buff then + result, msg = InsertAchieveRewardBuff(achieveID, achieveInfo.reward.buff) + if not result then + return false, msg + end + end + end + result, msg = InsertAchieveUIType(achieveID, achieveInfo.UI_Type, achieveInfo.group) + if not result then + return false, msg + end + result, msg = SetAchieveIDByTab(achieveID, achieveInfo.major, achieveInfo.minor) + if not result then + return false, msg + end + end + return true, "good" +end diff --git a/tables/laRO/items.txt b/tables/laRO/items.txt new file mode 100644 index 0000000000..9a777c55b1 --- /dev/null +++ b/tables/laRO/items.txt @@ -0,0 +1,27453 @@ +500#Choco Gangjeong# +501#Red Potion# +502#Orange Potion# +503#Yellow Potion# +504#White Potion# +505#Blue Potion# +506#Green Potion# +507#Red Herb# +508#Yellow Herb# +509#White Herb# +510#Blue Herb# +511#Green Herb# +512#Apple# +513#Banana# +514#Grape# +515#Carrot# +516#Potato# +517#Meat# +518#Honey# +519#Milk# +520#Hinalle Leaflet# +521#Aloe Leaflet# +522#Mastela Fruit# +523#Holy Water# +525#Panacea# +526#Royal Jelly# +528#Monster's Feed# +529#Candy# +530#Candy Cane# +531#Apple Juice# +532#Banana Juice# +533#Grape Juice# +534#Carrot Juice# +535#Pumpkin# +536#Ice Cream# +537#Pet Food# +538#Well Baked Cookie# +539#Piece of Cake# +540#Falcon Food# +541#PecoPeco Food# +542#Festive Cookie# +543#Festive Rainbow Cake# +544#Raw Fish# +545#Red Slim Potion# +546#Yellow Slim Potion# +547#White Slim Potion# +548#Cheese# +549#Yam# +550#Rice Cake# +551#Sushi# +552#Ketupat# +553#Bao# +554#Mochi# +555#Traditional Rice Cake# +556#Rice Cake Stick# +557#Neatly Sliced Rice Cake# +558#Chocolate# +559#Hand-made Chocolate# +560#Handmade White Chocolate# +561#White Chocolate# +562#Doublecrust Swiss Fondue# +563#Doublecrust Swiss Fondue# +564#Rice Ball# +565#Vita500# +566#Tom Yum Goong# +567#Shrimp# +568#Lemon# +569#Novice Potion# +570#Lucky Candy# +571#Lucky Candy Cane# +572#Lucky Cookie# +573#Chocolate Drink# +574#Egg# +575#2nd Anniversary Cake# +576#Prickly Fruit# +577#Bag of Grain# +578#Strawberry# +579#Fresh Fish# +580#Bread# +581#Edible Mushroom# +582#Orange# +583#Ketupat Sayur# +584#Fish Cake Soup# +585#Brusti# +586#Mother's Cake# +587#Red Prickly Fruit# +588#Spaghetti# +589#Piece of Pizza# +590#Pretzel# +591#Caviar Pancake# +592#Jam Pancake# +593#Honey Pancake# +594#Sour-Cream Pancake# +595#Mushroom Pancake# +596#Cute Strawberry-Choco# +597#Lovely Choco-Tart# +598#Light Red Potion# +599#Light Orange Potion# +601#Fly Wing# +602#Butterfly Wing# +603#Old Blue Box# +604#Dead Branch# +605#Anodyne# +606#Aloevera# +607#Yggdrasil Berry# +608#Yggdrasil Seed# +609#Amulet# +610#Yggdrasil Leaf# +611#Magnifier# +612#Mini Furnace# +613#Iron Hammer# +614#Golden Hammer# +615#Oridecon Hammer# +616#Old Card Album# +617#Old Purple Box# +618#Worn Out Scroll# +619#Unripe Apple# +620#Orange Juice# +621#Bitter Herb# +622#Rainbow Carrot# +623#Earthworm the Dude# +624#Rotten Fish# +625#Rusty Iron# +626#Monster Juice# +627#Sweet Milk# +628#Well-Dried Bone# +629#Singing Flower# +630#Dew Laden Moss# +631#Deadly Noxious Herb# +632#Fatty Chubby Earthworm# +633#Sweet Potato# +634#Tropical Banana# +635#Orc Trophy# +636#No Recipient# +637#Old Broom# +638#Silver Knife of Chastity# +639#Armlet of Obedience# +640#Shining Stone# +641#Contract in Shadow# +642#Book of the Devil# +643#Pet Incubator# +644#Gift Box# +645#Concentration Potion# +656#Awakening Potion# +657#Berserk Potion# +658#Union of Tribe# +659#Her Heart# +660#Forbidden Red Candle# +661#Soft Apron# +662#Authoritative Badge# +663#Korean Rice Cake# +664#Gift Box# +665#Gift Box# +666#Gift Box# +667#Gift Box# +668#New Year's Red Envelope# +669#Tempting Rice-Cake Soup# +670#Bag of Gold Coins# +671#Roulette Gold Coin# +672#Bag of Bronze Coins# +673#Bronze Coin# +674#Mythril Coin# +675#Roulette Silver Coin# +676#Bag of Silver Coins# +677#Platinum Coin# +678#Poison Bottle# +679#Gold Pill# +680#Magic Carnation# +681#Sweet Memory of Marriage# +682#Distilled Fighting Spirit# +683#Herb of Incantation# +684#Durian# +685#Ramadan# +686#Level 3 Earth Spike Scroll# +687#Level 5 Earth Spike Scroll# +688#Level 3 Cold Bolt Scroll# +689#Level 5 Cold Bolt Scroll# +690#Level 3 Fire Bolt Scroll# +691#Level 5 Fire Bolt Scroll# +692#Level 3 Lightning Bolt Scroll# +693#Level 5 Lightning Bolt Scroll# +694#Level 3 Soul Strike Scroll# +695#Level 5 Soul Strike Scroll# +696#Level 1 Fire Ball Scroll# +697#Level 5 Fire Ball Scroll# +698#Level 1 Fire Wall Scroll# +699#Level 5 Fire Wall Scroll# +700#Level 1 Frost Diver Scroll# +701#Ora Ora# +702#Animal Gore# +703#Hinalle# +704#Aloe# +705#Clover# +706#Four Leaf Clover# +707#Singing Plant# +708#Ment# +709#Izidor# +710#Illusion Flower# +711#Shoot# +712#Flower# +713#Empty Bottle# +714#Emperium# +715#Yellow Gemstone# +716#Red Gemstone# +717#Blue Gemstone# +718#Garnet# +719#Amethyst# +720#Aquamarine# +721#Emerald# +722#Pearl# +723#Ruby# +724#Cursed Ruby# +725#Sardonyx# +726#Sapphire# +727#Opal# +728#Topaz# +729#Zircon# +730#1carat Diamond# +731#2carat Diamond# +732#3carat Diamond# +733#Cracked Diamond# +734#Red Frame# +735#Chung Jah# +736#China# +737#Black Ladle# +738#Pencil Case# +739#Rouge# +740#Puppet# +741#Poring Doll# +742#Chonchon Doll# +743#Spore Doll# +744#Bouquet# +745#Wedding Bouquet# +746#Glass Bead# +747#Crystal Mirror# +748#Witherless Rose# +749#Frozen Rose# +750#Baphomet Doll# +751#Osiris Doll# +752#Rocker Doll# +753#Yoyo Doll# +754#Racoon Doll# +756#Rough Oridecon# +757#Rough Elunium# +766#Silky Fur Bundle# +901#Daenggie# +902#Tree Root# +903#Reptile Tongue# +904#Scorpion Tail# +905#Stem# +906#Pointed Scale# +907#Resin# +908#Spawn# +909#Jellopy# +910#Garlet# +911#Scell# +912#Zargon# +913#Tooth of Bat# +914#Fluff# +915#Chrysalis# +916#Feather of Birds# +917#Talon# +918#Sticky Webfoot# +919#Animal Skin# +920#Wolf Claw# +921#Mushroom Spore# +922#Orc's Fang# +923#Evil Horn# +924#Powder of Butterfly# +925#Bill of Birds# +926#Snake Scale# +928#Insect Feeler# +929#Immortal Heart# +930#Rotten Bandage# +931#Orc Warrior's Token# +932#Skel-Bone# +934#Memento# +935#Shell# +936#Scale Shell# +937#Venom Canine# +938#Sticky Mucus# +939#Bee Sting# +940#Grasshopper's Leg# +941#Nose Ring# +942#Yoyo Tail# +943#Solid Shell# +944#Horseshoe# +945#Raccoon Leaf# +946#Snail's Shell# +947#Horn# +948#Bear's Footskin# +949#Feather# +950#Heart of Mermaid# +951#Fin# +952#Cactus Needle# +953#Stone Heart# +954#Shining Scale# +955#Worm Peeling# +956#Gill# +957#Decayed Nail# +958#Horrendous Mouth# +959#Stinky Scale# +960#Nipper# +961#Conch# +962#Tentacle# +963#Sharp Scale# +964#Crab Shell# +965#Clam Shell# +966#Clam Flesh# +967#Turtle Shell# +968#Orc Hero's Token# +969#Gold# +970#Alcohol# +971#Detrimindexta# +972#Karvodailnirol# +973#Counteragent# +974#Mixture# +975#Scarlet Dyestuffs# +976#Lemon Dyestuffs# +978#Cobaltblue Dyestuffs# +979#Darkgreen Dyestuffs# +980#Orange Dyestuffs# +981#Violet Dyestuffs# +982#White Dyestuffs# +983#Black Dyestuffs# +984#Oridecon# +985#Elunium# +986#Anvil# +987#Oridecon Anvil# +988#Golden Anvil# +989#Emperium Anvil# +990#Red Blood# +991#Crystal Blue# +992#Wind of Verdure# +993#Green Live# +994#Flame Heart# +995#Mystic Frozen# +996#Rough Wind# +997#Great Nature# +998#Iron# +999#Steel# +1000#Star Crumb# +1001#Star Dust# +1002#Iron Ore# +1003#Coal# +1004#Chivalry Emblem# +1005#Hammer of Blacksmith# +1006#Old Magic Book# +1007#Necklace of Wisdom# +1008#Necklace of Oblivion# +1009#Hand of God# +1010#Phracon# +1011#Emveretarcon# +1012#Frill# +1013#Rainbow Shell# +1014#Ant Jaw# +1015#Tongue# +1016#Rat Tail# +1017#Mole Whiskers# +1018#Mole Claw# +1019#Trunk# +1020#Black Hair# +1021#Dokkaebi Horn# +1022#Nine Tails# +1023#Fish Tail# +1024#Squid Ink# +1025#Cobweb# +1026#Acorn# +1027#Porcupine Quill# +1028#Mane# +1029#Tiger Skin# +1030#Tiger's Footskin# +1031#Mantis Scythe# +1032#Maneater Blossom# +1033#Maneater Root# +1034#Blue Hair# +1035#Dragon Canine# +1036#Dragon Scale# +1037#Dragon Tail# +1038#Little Evil Horn# +1039#Little Evil Wing# +1040#Elder Pixie's Moustache# +1041#Lantern# +1042#Bug Leg# +1043#Orc Claw# +1044#Zenorc's Fang# +1045#Cultish Mask# +1046#Scorpion Nipper# +1047#Dead Medusa# +1048#Horrendous Hair# +1049#Skirt of Virgin# +1050#Tendon# +1051#Detonator# +1052#Single Cell# +1053#Ancient Tooth# +1054#Ancient Lips# +1055#Earthworm Peeling# +1056#Grit# +1057#Moth Dust# +1058#Moth Wings# +1059#Fabric# +1060#Golden Hair# +1061#Witch Starsand# +1062#Jack o' Pumpkin# +1063#Fang# +1064#Reins# +1065#Trap# +1066#Fine-grained Trunk# +1067#Solid Trunk# +1068#Barren Trunk# +1069#Orange Net Mushroom# +1070#Orange Gooey Mushroom# +1071#Unknown Test Tube# +1072#Delivery Message# +1073#Voucher# +1074#Voucher# +1075#Voucher# +1076#Voucher# +1077#Voucher# +1078#Voucher# +1079#Voucher# +1080#Voucher# +1081#Delivery Box# +1082#Delivery Box# +1083#Delivery Box# +1084#Kafra Pass# +1085#Unknown Test Tube# +1086#Unknown Test Tube# +1087#Unknown Test Tube# +1088#Morocc Solution# +1089#Payon Solution# +1090#Unknown Test Tube# +1091#Delivery Box# +1092#Empty Test Tube# +1093#Empty Potion Bottle# +1094#Short Daenggie# +1095#Needle of Alarm# +1096#Round Shell# +1097#Worn Out Page# +1098#Manacles# +1099#Worn-out Prison Uniform# +1101#Sword# +1102#Sword# +1103#Sword# +1104#Falchion# +1105#Falchion# +1106#Falchion# +1107#Blade# +1108#Blade# +1109#Blade# +1110#Rapier# +1111#Rapier# +1112#Rapier# +1113#Scimitar# +1114#Scimitar# +1115#Scimitar# +1116#Katana# +1117#Katana# +1118#Katana# +1119#Tsurugi# +1120#Tsurugi# +1121#Tsurugi# +1122#Ring Pommel Saber# +1123#Haedong Gum# +1124#Orcish Sword# +1125#Ring Pommel Saber# +1126#Saber# +1127#Saber# +1128#Haedong Gum# +1129#Flamberge# +1130#Nagan# +1131#Ice Falchion# +1132#Edge# +1133#Fire Brand# +1134#Scissor Sword# +1135#Cutlass# +1136#Solar Sword# +1137#Excalibur# +1138#Mysteltainn# +1139#Tirfing# +1140#Byeollungum# +1141#Immaterial Sword# +1142#Jewel Sword# +1143#Gaia Sword# +1144#Sashimi# +1145#Holy Avenger# +1146#Town Sword# +1147#Town Sword# +1148#Star Dust Blade# +1149#Flamberge# +1151#Slayer# +1152#Slayer# +1153#USlayer# +1154#Bastard Sword# +1155#Bastard Sword# +1156#Bastard Sword# +1157#Two-Handed Sword# +1158#Two-Handed Sword# +1159#Two-Handed Sword# +1160#Broad Sword# +1161#Balmung# +1162#Broad Sword# +1163#Claymore# +1164#Muramasa# +1165#Masamune# +1166#Dragon Slayer# +1167#Schweizersabel# +1168#Zweihander# +1169#Executioner# +1170#Katzbalger# +1171#Zweihander# +1172#Claymore# +1173#Muramasa# +1174#Executioner# +1175#Atroce Weapon# +1176#Muscle Cutter# +1177#Muramash# +1178#Schweizersabel# +1179#Executioner# +1180#Dragon Slayer# +1181#Tae Goo Lyeon# +1182#Bloody Eater# +1183#Brave Assaulter's Katzbalger# +1184#Valorous Assaulter's Katzbalger# +1185#Violet Fear# +1186#Death Guidance# +1187#Glorious Claymore# +1188#Veteran Sword# +1189#Krasnaya# +1190#Claymore# +1191#Alca Bringer# +1192#Eden Slayer I# +1193#Eden Slayer II# +1194#Executioner# +1196#Chrome Metal Two-Handed Sword# +1197#Eden Slayer III# +1198#Hairtail# +1201#Knife# +1202#Knife# +1203#Knife# +1204#Cutter# +1205#Cutter# +1206#Cutter# +1207#Main Gauche# +1208#Main Gauche# +1209#Main Gauche# +1210#Dirk# +1211#Dirk# +1212#Dirk# +1213#Dagger# +1214#Dagger# +1215#Dagger# +1216#Stiletto# +1217#Stiletto# +1218#Stiletto# +1219#Gladius# +1220#Gladius# +1221#Gladius# +1222#Damascus# +1223#Fortune Sword# +1224#Swordbreaker# +1225#Mailbreaker# +1226#Damascus# +1227#Weeder Knife# +1228#Combat Knife# +1229#Kitchen Knife# +1230#Ice pick# +1231#Bazerald# +1232#Assassin Dagger# +1233#Exorciser# +1234#Moonlight Sword# +1235#Azoth# +1236#Sucsamad# +1237#Grimtooth# +1238#Zeny Knife# +1239#Poison Knife# +1240#Princess Knife# +1241#Cursed Dagger# +1242#Dagger of Counter# +1243#Novice Main-Gauche# +1244#Holy Dagger# +1245#Cinquedea# +1246#Cinquedea# +1247#Kindle Dagger# +1248#Obsidian Dagger# +1249#Fisherman's Dagger# +1250#Jur# +1251#Jur# +1252#Katar# +1253#Katar# +1254#Jamadhar# +1255#Jamadhar# +1256#Katar of Cold Icicle# +1257#Katar of Dusty Thornbush# +1258#Katar of Raging Blaze# +1259#Katar of Piercing Wind# +1260#Sharpened Leg Bone of Ghoul# +1261#Infiltrator# +1262#Loki's Nail# +1263#Unholy Touch# +1264#Various Jur# +1265#Bloody Roar# +1266#Infiltrator# +1267#Infiltrator# +1268#Wild Beast Claw# +1269#Inverse Scale# +1270#Drill Katar# +1271#Bloody Tears# +1272#Scratcher# +1273#Bloody Roar# +1274#Unholy Touch# +1275#Katar of Cold Icicle# +1276#Katar of Dusty Thornbush# +1277#Katar of Raging Blaze# +1278#Katar of Piercing Wind# +1279#Brave Carnage Katar# +1280#Valorous Carnage Katar# +1281#Glorious Bloody Roar# +1282#Glorious Jamadhar# +1283#Katar of Speed# +1284#Krishna# +1285#Chakram# +1286#Jamadhar# +1287#Durga# +1288#Bloody Fear# +1289#Eden Katar I# +1290#Agent Katar# +1291#Guillotine Katar# +1292#Upgrade Katar# +1293#Vellum Jamadhar# +1294#Vellum Scale# +1295#Bloody Tears# +1296#Metal Katar# +1297#Inverse Scale# +1298#Katar of Shiver# +1299#TE WoE Katar# +1300#Cleaver# +1301#Axe# +1302#Axe# +1303#Axe# +1304#Orcish Axe# +1305#Cleaver# +1306#War Axe# +1307#Windhawk# +1308#Golden Axe# +1309#Orcish Axe# +1310#Glorious Cleaver# +1311#Vecer Axe# +1312#Orcish Axe# +1313#Traveler's Axe# +1314#Tomahawk# +1315#Light Epsilon# +1317#Academy Axe# +1318#Dofle Axe# +1319#TE WoE Axe# +1320#Diva Axe# +1321#Dofle Axe# +1322#Blue Axe# +1323#Ru Gold Axe# +1324#War Axe# +1325#Mirage Axe# +1326#Illusion War Axe# +1328#Brute Axe# +1331#Abyss Axe# +1333#Golden Wrench# +1336#Guardian Knight Axe# +1351#Battle Axe# +1352#Battle Axe# +1353#Battle Axe# +1354#Hammer# +1355#Hammer# +1356#Hammer# +1357#Buster# +1358#Buster# +1359#Buster# +1360#Two-Handed Axe# +1361#Two-Handed Axe# +1362#Two-Handed Axe# +1363#Bloody Axe# +1364#Great Axe# +1365#Sabbath# +1366#Light Epsilon# +1367#Slaughter# +1368#Tomahawk# +1369#Guillotine# +1370#Doom Slayer# +1371#Doom Slayer# +1372#Light Epsilon# +1373#Refined Bloody Axe# +1374#Tomahawk# +1375#Berdysz Axe# +1376#Heart Breaker# +1377#Hurricane Fury# +1378#Refined Great Axe# +1379#Valorous Insane Battle Axe# +1380#Brave Insane Battle Axe# +1381#Novice Battle Axe# +1382#Glorious Two-Handed Axe# +1383#Holy Celestial Axe# +1384#Veteran Axe# +1385#Bradium Stone Hammer# +1386#Doom Slayer# +1387#Giant Axe# +1388#Two-Handed Axe# +1389#Tomahawk# +1390#Light Epsilon# +1391#Eden Two-Handed Axe I# +1392#UYgnus Stale# +1393#End Sektura# +1394#Upgrade Two-Handed Axe# +1395#Vellum Buster# +1396#Vellum Guillotine# +1397#Bradium Stone Hammer# +1398#[Event] Metal Two-Handed Axe# +1399#TE WoE Two-Handed Axe# +1400#Vicious Mind Spear# +1401#Javelin# +1402#Javelin# +1403#Javelin# +1404#Spear# +1405#Spear# +1406#Spear# +1407#Pike# +1408#Pike# +1409#Pike# +1410#Lance# +1411#Lance# +1412#Lance# +1413#Gungnir# +1414#Gelerdria# +1415#Brocca# +1416#Tjungkuletti# +1417#Pole Axe# +1418#Gungnir# +1419#Pole Axe# +1420#Long Horn# +1421#Battle Hook# +1422#Hunting Spear# +1423#Pole XO# +1424#Refined Brocca# +1425#Assaulter Spear# +1426#Glorious Spear# +1427#Spear of Excellent# +1428#Long Horn# +1429#Hunting Spear# +1430#Pike# +1431#Pole Axe# +1432#Pole Axe# +1433#Imperial Spear# +1434#Eden Spear I# +1435#Cannon Spear# +1436#Vellum Spear# +1437#TE WoE Pike# +1438#Thanos Spear# +1440#Battle Hook# +1441#Blue Spear# +1442#Ru Gold Spear# +1443#Crimson Spear# +1444#Thunder Lance# +1445#Rental Warrior Spear# +1446#Requiem Spear# +1447#Poisonous Violence Spear# +1448#Warrior Spear# +1449#Gelerdria# +1450#Vicious Mind Lance# +1451#Guisarme# +1452#Guisarme# +1453#Guisarme# +1454#Glaive# +1455#Glaive# +1456#Glaive# +1457#Partizan# +1458#Partizan# +1459#Partizan# +1460#Trident# +1461#Trident# +1462#Trident# +1463#Halberd# +1464#Halberd# +1465#Halberd# +1466#Crescent Scythe# +1467#Bill Guisarme# +1468#Zephyrus# +1469#Longinus's Spear# +1470#Brionac# +1471#Hellfire# +1472#Soul Staff# +1473#Wizardry Staff# +1474#Gae Bolg# +1475#Equestrian's Spear# +1476#Crescent Scythe# +1477#Spectral Spear# +1478#Ahlspiess# +1479#Spectral Spear# +1480#Gae Bolg# +1481#Zephyrus# +1482#Assaulter Lance# +1483#Ivory Lance# +1484#Cardo# +1485#Battle Fork# +1486#Glorious Lance# +1487#Lance# +1488#Ahlspiess# +1489#Marlin# +1490#Giant Lance# +1491#Upgrade Two-Handed Spear# +1492#Vellum Glaive# +1493#Metal Lance# +1494#Undine Spear# +1495#TE WoE Lance# +1496#Thanos Two-Handed Spear# +1497#Hellfire# +1498#Crimson Lance# +1499#Requiem Lance# +1501#Club# +1502#Club# +1503#Club# +1504#Mace# +1505#Mace# +1506#Mace# +1507#Smasher# +1508#Smasher# +1509#Smasher# +1510#Flail# +1511#Flail# +1512#Flail# +1513#Morning Star# +1514#Morning Star# +1515#Morning Star# +1516#Sword Mace# +1517#Sword Mace# +1518#Sword Mace# +1519#Chain# +1520#Chain# +1521#Chain# +1522#Stunner# +1523#Spike# +1524#Golden Mace# +1525#Long Mace# +1526#Slash# +1527#Quadrille# +1528#Grand Cross# +1529#Iron Driver# +1530#Mjolnir# +1531#Wrench# +1532#Stunner# +1533#Warrior's Balmung# +1534#Wrench# +1535#Hollgrehenn's Hammer# +1536#Good Morning Star# +1537#Refined Quadrille# +1538#Spike# +1539#Golden Mace# +1540#Grand Cross# +1541#Nemesis# +1542#Valorous Battlefield Morning Star# +1543#Brave Battlefield Morning Star# +1544#Lunakaligo# +1545#Novice Mace# +1546#Glorious Morning Star# +1547#Mace of Madness# +1548#Veteran Hammer# +1549#ile Bunker# +1550#Book# +1551#Bible# +1552#Tablet# +1553#Book of Billows# +1554#Book of Mother Earth# +1555#Book of Blazing Sun# +1556#Book of Gust of Wind# +1557#Book of Apocalypse# +1558#Girl's Diary# +1559#Legacy of Dragon# +1560#Sage's Diary# +1561#Hardcover Book# +1562#Battlefield Textbook# +1563#Sage's Diary# +1564#Encyclopedia# +1565#Death Note# +1566#Diary of Great Basil# +1567#Refined Hardcover Book# +1568#Book of Billows# +1569#Book of Mother Earth# +1570#Book of Blazing Sun# +1571#Book of Gust of Wind# +1572#Principles of Magic# +1573#Ancient Magic# +1574#Brave Battle Strategy Book# +1575#Valorous Battle Strategy Book# +1576#Glorious Tablet# +1577#Glorious Apocalypse# +1578#Book of Prayer# +1579#Book of The Dead# +1580#Giant Encyclopedia# +1581#Diary of Great Sage# +1582#Diary of Great Sage# +1583#Eden Group Dictionary I# +1584#Chilly Spell Book# +1585#Upgrade Book# +1586#Vellum Bible# +1587#Vellum Encyclopedia# +1588#Metal Book# +1589#Legacy of Dragon# +1590#Snake Encyclopedia# +1591#TE WoE Book# +1592#Genealogy of Thunder God# +1593#Book of Fate# +1594#Genealogy of Flame God# +1595#Genealogy of Ice God# +1596#Genealogy of Earth God# +1598#Snake Encyclopedia# +1599#Angra manyu# +1600#Vicious Mind Rod# +1601#Rod# +1602#Rod# +1603#Rod# +1604#Wand# +1605#Wand# +1606#Wand# +1607#Staff# +1608#Staff# +1609#Staff# +1610#Arc Wand# +1611#Arc Wand# +1612#Arc Wand# +1613#Mighty Staff# +1614#Wand of Occult# +1615#Evil Bone Wand# +1616#Wing Staff# +1617#Rod# +1618#Rod# +1619#Rod# +1620#Rod# +1621#Hypnotist's Staff# +1622#Hypnotist's Staff# +1623#Mighty Staff# +1624#Lich's Bone Wand# +1625#Healing Staff# +1626#Piercing Staff# +1627#Staffy# +1628#Refined Survivor's Rod# +1629#Gentleman Staff# +1630#Release of Wish# +1631#Holy Stick# +1632#Warlock's Magic Wand# +1633#Warlock's Battle Wand# +1634#Strong Recovery Wand# +1635#Speedy Recovery Wand# +1636#Thorn Staff of Darkness# +1637#Eraser# +1638#Staff of Healing# +1639#Novice Rod# +1640#Glorious Arc Wand# +1641#Glorious Healing Wand# +1642#Staff of Darkness# +1643#Ancient Tree Wood Cane# +1644#Staff of Piercing# +1645#Lich's Bone Wand# +1646#La'cryma Stick# +1647#Croce Staff# +1648#Staff of Bordeaux# +1649#Lapine Staff# +1650#Eden Staff I# +1651#Eden Staff II# +1652#Traveler's Staff# +1653#Staff of Healing# +1654#Mental Stick# +1657#Wand of Affection# +1658#Eden Staff III# +1659#Light of Recovery# +1660#Wand of Affection II# +1661#Mental Destroyer# +1662#Evil Bone Wand# +1663#Staff of Bordeaux# +1664#Thorny Staff of Darkness# +1665#Staff of Piercing# +1666#Staff of Healing# +1667#TE WoE Staff# +1668#Sword Stick# +1669#Thanos Staff# +1670#RWC Memory Staff# +1671#Evil Slayer Vanquisher Staff# +1672#Safety Rod# +1675#Gentleman Staff# +1676#Baculum Daemonicum# +1677#Blue Wand# +1678#Ru Gold Wand# +1679#Lapine Staff# +1680#Crimson Rod# +1681#Sprout Foxtail Wand# +1682#Shadow Staff# +1683#Enriched Foxtail Wand# +1684#Long Foxtail Wand# +1685#Sitting Dragontail Foxtail Wand# +1686#Large Foxtail Wand# +1687#Novice Foxtail Wand# +1688#Thunder Wand# +1689#Rental Hunting Staff# +1690#Marvelous Foxtail Wand# +1691#Wondrous Foxtail Wand# +1692#Magic Foxtail Wand# +1693#Magic Yellow Foxtail Wand# +1694#Foxtail Model# +1695#Fine Foxtail Model# +1696#Exquisite Foxtail Model# +1697#Exquisite Yellow Foxtail Model# +1698#Requiem Wand# +1699#Eden Foxtail I# +1701#Bow# +1702#Bow# +1703#Bow# +1704#Composite Bow# +1705#Composite Bow# +1706#Composite Bow# +1707#Great Bow# +1708#Great Bow# +1709#Great Bow# +1710#Cross Bow# +1711#Cross Bow# +1712#Cross Bow# +1713#Arbalest# +1714#Gakkung# +1715#Arbalest# +1716#Gakkung# +1718#Hunter Bow# +1719#Roguemaster's Bow# +1720#Rudra Bow# +1721#Repeating Crossbow# +1722#Ballista# +1723#Luna Bow# +1724#Dragon Wing# +1725#Minstrel Bow# +1726#Hunter Bow# +1727#Ballista# +1728#Ballista# +1729#Rudra Bow# +1730#Burning Bow# +1731#Frozen Bow# +1732#Earth Bow# +1733#Gust Bow# +1734#Orc Archer Bow# +1735#Kkakkung# +1736#Double Bound# +1737#Ixion Wings# +1738#Valorous Battle Crossbow# +1739#Brave Battle Crossbow# +1740#Nepenthes Bow# +1741#Cursed Lyre# +1742#Novice Composite Bow# +1743#Glorious Hunter Bow# +1744#Bow of Evil# +1745#Falken Blitz# +1746#Elven Bow# +1747#Eden Bow I# +1748#Eden Bow II# +1749#Traveler's Bow# +1750#Arrow# +1751#Silver Arrow# +1752#Fire Arrow# +1753#Steel Arrow# +1754#Crystal Arrow# +1755#Arrow of Wind# +1756#Stone Arrow# +1757#Immaterial Arrow# +1758#Stun Arrow# +1759#Frozen Arrow# +1760#Flash Arrow# +1761#Cursed Arrow# +1762#Rusty Arrow# +1763#Poison Arrow# +1764#Sharp Arrow# +1765#Oridecon Arrow# +1766#Arrow of Counter Evil# +1767#Arrow of Shadow# +1768#Sleep Arrow# +1769#Silence Arrow# +1770#Iron Arrow# +1771#Venom Knife# +1772#Holy Arrow# +1773#Elven Arrow# +1774#Hunting Arrow# +1775#Siege Arrow S# +1776#Siege Arrow A# +1800#Vicious Mind Fist# +1801#Waghnak# +1802#Waghnak# +1803#Knuckle Dusters# +1804#Knuckle Dusters# +1805#Studded Knuckles# +1806#Studded Knuckles# +1807#Fist# +1808#Fist# +1809#Claw# +1810#Claw# +1811#Finger# +1812#Finger# +1813#Kaiser Knuckle# +1814#Berserk# +1815#Hatii Claw# +1816#Berserk# +1817#Kaiser Knuckle# +1818#Magma Fist# +1819#Icicle Fist# +1820#Electric Fist# +1821#Seismic Fist# +1822#Combo Battle Gloves# +1823#Valorous Battle Fist# +1824#Brave Battle Fist# +1825#Horn of Hillslion# +1826#Glorious Claw# +1827#Glorious Fist# +1828#Monk Knuckle# +1829#Fist# +1830#Sura's Rampage# +1831#Eden Knuckle I# +1832#Vellum Claw# +1833#Claw of Flash# +1834#TE WoE Fist# +1835#Spartacus# +1836#Thanos Knuckle# +1837#Iron Nail# +1839#Crimson Knuckle# +1840#Requiem Knuckle# +1841#Claw of Flash# +1842#Diva Claw# +1843#Mirage Claw# +1844#Vicious Mind Fist# +1845#Trial Sura's Knuckle# +1846#Illusion Combo Battle Gloves# +1847#Iron Nail# +1848#Beginner Sura's Knuckle# +1861#Abyss Claw# +1862#Burning Knuckle-OS# +1864#Sealed Iron Nail# +1865#Raging Dragon Fist# +1866#Fighting God's Bandage# +1867#Safety Knuckle# +1870#Royal Knuckle# +1900#Vicious Mind Violin# +1901#Violin# +1902#Violin# +1903#Mandolin# +1904#Mandolin# +1905#Lute# +1906#Lute# +1907#Guitar# +1908#Guitar# +1909#Harp# +1910#Harp# +1911#Gumoongoh# +1912#Gumoongoh# +1913#Electric Guitar# +1914#Burning Passion Guitar# +1915#Loner's Guitar# +1916#Green Acre Guitar# +1917#Gentle Breeze Guitar# +1918#Oriental Lute# +1919#Base Guitar# +1920#Berserk Guitar# +1921#Gun Moon Gom# +1922#Oriental Lute# +1923#Valorous Battlefield Guitar# +1924#Brave Battlefield Guitar# +1925#Cello# +1926#Harp of Nepenthes# +1927#Glorious Guitar# +1928#Berserk Guitar# +1929#Guitar# +1930#Green Whistle# +1931#Eden Guitar I# +1932#TE WoE Guitar# +1933#Thanos Violin# +1934#Contrabass# +1935#New Oz's Ukulele# +1936#Blue Violin# +1937#Ru Gold Violin# +1938#Infinity Violin# +1939#Crimson Violin# +1940#Conch# +1941#Union Violin# +1942#Requiem Violin# +1943#Erhu# +1944#Hippie Guitar# +1945#Diva Violin# +1946#Mirage Violin# +1947#Vicious Mind Violin# +1948#Guitar of Nature# +1950#Rope# +1951#Rope# +1952#Whip# +1953#Whip# +1954#Wire Whip# +1955#Wire Whip# +1956#Rante Whip# +1957#Rante Whip# +1958#Tail Whip# +1959#Tail Whip# +1960#Whip# +1961#Whip# +1962#Lariat Whip# +1963#Rapture Rose# +1964#Chemeti Whip# +1965#Red Flame Whip# +1966#Icicle Whip# +1967#Gaia Whip# +1968#Skipping Rope# +1969#Blade Whip# +1970#Queen's Whip# +1971#Electric Wire# +1972#Electric Eel# +1973#Sea Witch's Foot# +1974#Carrot Whip# +1975#Whip of The Queen# +1976#Queen's Whip# +1977#Valorous Battle Lariat# +1978#Brave Battle Lariat# +1979#Stem of Nepenthes# +1980#Whip of Balance# +1981#Glorious Lariat# +1982#Phenomena Whip# +1983#Rante Whip# +1984#Stem Whip# +1985#Rosevine# +1986#Eden Whip I# +1987#TE WoE Rope# +1988#Thanos Whip# +1989#Rhythmic Gymnastics Ribbon# +1990#Aigu's Floral Mic# +1991#Blue Whip# +1992#Ru Gold Whip# +1993#Barbed Wire# +1994#Infinity Wire# +1995#Crimson Wire# +1996#Vicious Mind Wire# +1997#Union Whip# +1998#Requiem Blade Whip# +1999#Bell of Vampire# +2000#Staff of Destruction# +2001#Divine Cross# +2002#Glorious Destruction Staff# +2003#Staff of Destruction# +2004#Kronos# +2005#Dea Staff# +2006#Guardian of Light Wand# +2007#Goldenrod Staff# +2008#Aqua Staff# +2009#Crimson Staff# +2010#Forest Staff# +2011#Goldenrod Staff II# +2012#Aqua Staff II# +2013#Crimson Staff II# +2014#Forest Staff II# +2015#Upgrade Two-Handed Staff# +2016#Vellum Arc Wand# +2017#Divine Cross# +2018#[Event] Metal Staff# +2019#TE WoE Two-Handed Staff# +2020#Jormungand# +2021#Ganbantein# +2022#Staff of Geffen# +2023#Thanos Two-Handed Staff# +2024#Infinity Staff# +2025#Crimson Staff# +2026#Vicious Mind Staff# +2027#Sunflower Boy# +2028#Iron Staff# +2029#Devil God's Staff# +2030#Union Two-Handed Staff# +2031#Two-Handed Cat Wand - Fish Flag# +2032#Requiem Wizard Staff# +2033#Enhanced Metal Staff# +2034#Avenger Wizard Staff# +2035#Diva Staff# +2036#Mirage Staff# +2037#Vicious Mind Staff# +2038#Sunflower Boy# +2039#Illusion Wizardry Staff# +2040#Trial Warlock's Staff# +2041#Witch's Thunder Flame Wand# +2042#Neev Wizardy Staff# +2043#Neev Arc Wand# +2044#Neev Holy Stick# +2045#Neev Divine Cross# +2046#Beginner Warlock's Staff# +2048#Iron Staff# +2049#Blue Flame Staff# +2051#Illusion Survivor's Staff# +2053#Abyss Staff# +2054#Sealed Iron Staff# +2055#Staff of Miracle# +2056#Gravitation Staff# +2057#Adorare Staff# +2058#Detecting Staff# +2060#Royal Magician Staff# +2101#Guard# +2102#Guard# +2103#Buckler# +2104#Buckler# +2105#Shield# +2106#Shield# +2107#Mirror Shield# +2108#Mirror Shield# +2109#Memory Book# +2110#Holy Guard# +2111#Herald of God# +2112#Novice Guard# +2113#Novice Shield# +2114#Stone Buckler# +2115#Valkyrie Shield# +2116#Angelic Guard# +2117#Arm Guard# +2118#Arm Guard# +2119#Advanced Arm Guard# +2120#Advanced Arm Guard# +2121#Memory Book# +2122#Platinum Shield# +2123#Orlean's Server# +2124#Thorny Buckler# +2125#Strong Shield# +2126#Old Shield# +2127#Lion's Slipper# +2128#Herald of God# +2129#Exorcism Bible# +2130#Cross Shield# +2131#Magic Bible Vol.1# +2132#Shelter Resistance# +2133#Tournament Shield# +2134#Shield of Naga# +2135#Shadow Guard# +2136#Cracked Buckler# +2137#Neo Valkyrie Shield# +2138#Bradium Shield# +2139#Flame Thrower# +2140#Energy Rune Guard# +2141#Freya's Spiritual Shield# +2142#Freya's Spiritual Shield# +2143#Freya's Spiritual Shield# +2144#Freya's Spiritual Shield# +2145#Time Keeper Shield# +2146#Silver Guard# +2147#Round Buckler# +2148#Rosa Shield# +2149#Upgrade Guard# +2150#Upgrade Buckler# +2151#Upgrade Shield# +2152#Anti Demon Shield# +2153#Imperial Guard# +2154#Toy Shield# +2156#Bible of Promise Vol.1# +2157#Insecticide# +2158#L'Amour Shield# +2159#Sharel Shield# +2160#Giant Shield# +2161#Geffenia Water Book# +2162#Bible of Promise Vol.2# +2163#Froid Shield# +2164#Sombre Shield# +2165#Sol Shield# +2166#Devil Bible# +2167#Poison Shield# +2168#Immuned Shield# +2169#Kalasag# +2170#Kalasag(Bayani)# +2171#Fox Armguard# +2172#Wolf Armguard# +2173#Crescent Armguard# +2174#Lumiere Shield# +2175#Esprit Shield# +2176#Dark Book# +2177#Shield Of Death# +2178#TE WoE Buckler# +2179#TE WoE Shield# +2180#TE WoE Magic Guard# +2181#Hervor# +2182#Hervor Alvitr# +2183#Modified Angelic Guard# +2184#Bunker shield# +2185#Magic Reflector# +2186#Revised Encyclopedia# +2187#Gray Shield# +2188#Svalinn# +2189#Mad Bunny# +2190#Ancient Shield of Aeon# +2191#Solomon Magic Book# +2192#Rose of Eden# +2193#Shield of Fallen Angel# +2194#Levain Shield# +2195#Lien Shield# +2196#White Gold Shield# +2197#Iron Shield# +2198#Lapine Shield# +2199#Ahura Mazdah# +2201#Sunglasses# +2202#Sunglasses# +2203#Glasses# +2204#Glasses# +2205#Diver Goggles# +2206#Wedding Veil# +2207#Fancy Flower# +2208#Ribbon# +2209#Ribbon# +2210#Hairband# +2211#Bandana# +2212#Eye Patch# +2213#Kitty Band# +2214#Bunny Band# +2215#Flower Band# +2216#Biretta# +2217#Biretta# +2218#Flu Mask# +2219#Flu Mask# +2220#Hat# +2221#Hat# +2222#Turban# +2223#Turban# +2224#Goggles# +2225#Goggles# +2226#Cap# +2227#Cap# +2228#Helm# +2229#Helm# +2230#Gemmed Sallet# +2231#Gemmed Sallet# +2232#Circlet# +2233#Circlet# +2234#Tiara# +2235#Crown# +2236#Santa Hat# +2237#Bandit Mask# +2238#Unidentified Mask# +2239#Monocle# +2240#Unidentified Mask# +2241#Grampa Beard# +2242#Purple Glasses# +2243#Geek Glasses# +2244#Big Ribbon# +2245#Sweet Gent# +2246#Golden Gear# +2247#Romantic Gent# +2248#Western Grace# +2249#Coronet# +2250#Cute Ribbon# +2251#Monk Hat# +2252#Wizard Hat# +2253#Sunflower# +2254#Angel Wings# +2255#Evil Wings# +2256#Majestic Goat# +2257#Unicorn Horn# +2258#Spiky Band# +2259#Mini Propeller# +2260#Mini Glasses# +2261#Army Cap# +2262#Clown Nose# +2263#Zorro Masque# +2264#Munak Hat# +2265#Gangster Mask# +2266#Iron Cain# +2267#Cigarette# +2268#Pipe# +2269#Romantic Flower# +2270#Romantic Leaf# +2271#Jack be Dandy# +2272#Stop Post# +2273#Doctor Band# +2274#Ghost Bandana# +2275#Red Bandana# +2276#Angled Glasses# +2277#Nurse Cap# +2278#Mr. Smile# +2279#Bomb Wick# +2280#Sakkat# +2281#Opera Masque# +2282#Halo# +2283#Ear Muffs# +2284#Antlers# +2285#Apple of Archer# +2286#Elven Ears# +2287#Pirate Bandana# +2288#Mr. Scream# +2289#Poo Poo Hat# +2290#Funeral Hat# +2291#Masquerade# +2292#Welding Mask# +2293#Pretend Murdered# +2294#Stellar# +2295#Blinker# +2296#Binoculars# +2297#Goblin Mask# +2298#Green Feeler# +2299#Orc Helm# +2301#Cotton Shirt# +2302#Cotton Shirt# +2303#Jacket# +2304#Jacket# +2305#Adventurer's Suit# +2306#Adventurer's Suit# +2307#Mantle# +2308#Mantle# +2309#Coat# +2310#Coat# +2311#Mink Coat# +2312#Padded Armor# +2313#Padded Armor# +2314#Chain Mail# +2315#Chain Mail# +2316#Full Plate# +2317#Full Plate# +2318#Lord's Clothes# +2319#Glittering Jacket# +2320#Formal Suit# +2321#Silk Robe# +2322#Silk Robe# +2323#Scapulare# +2324#Scapulare# +2325#Saint's Robe# +2326#Saint's Robe# +2327#Holy Robe# +2328#Wooden Mail# +2329#Wooden Mail# +2330#Tights# +2331#Tights# +2332#Silver Robe# +2333#Silver Robe# +2334#Magician Coat# +2335#Thief Clothes# +2336#Thief Clothes# +2337#Ninja Suit# +2338#Wedding Dress# +2339#Pantie# +2340#Novice Breastplate# +2341#Full Plate Armor# +2342#Full Plate Armor# +2343#Robe of Casting# +2344#Lucius's Fierce of Volcano# +2345#Lucius's Fierce of Volcano# +2346#Sapien's Wail of Ocean# +2347#Sapien's Wail of Ocean# +2348#Ebecee's Rage of Typhoon# +2349#Ebecee's Rage of Typhoon# +2350#Claytos's Rupture of Earth# +2351#Claytos's Rupture of Earth# +2352#Tattered Novice Ninja Suit# +2353#Odin's Blessing# +2354#Goibne's Armor# +2355#Angelic Protection# +2356#Blessed Holy Robe# +2357#Valkyrie Armor# +2358#Angel's Dress# +2359#Ninja Suit# +2360#Robe of Casting# +2361#Blue Robe# +2362#Red Robe# +2363#White Robe# +2364#Meteor Plate# +2365#Orlean's Gown# +2366#Divine Cloth# +2367#Sniping Suit# +2368#Golden Armor# +2369#Freya Overcoat# +2370#Used Magician Coat# +2371#Pantie# +2372#Magician Coat# +2373#Holy Robe# +2374#Diabolus Robe# +2375#Diabolus Armor# +2376#Assaulter Plate# +2377#Elite Engineer Armor# +2378#Assassin Robe# +2379#Warlock's Battle Robe# +2380#Medic's Robe# +2381#Elite Archer Suit# +2382#Elite Shooter Suit# +2383#Brynhild# +2384#Spiritual Tunic# +2385#Recuperative Armor# +2386#Chameleon Armor# +2387#Sprint Mail# +2388#Kandura# +2389#Armor of Naga# +2390#Improved Tights# +2391#Life Link# +2392#Old Green Pantie# +2393#Novice Adventurer's Suit# +2394#Glorious Suit# +2395#Glorious Popularized Suit# +2396#Glorious Mass-Production Suit# +2397#Jacket of Incredible Showman# +2398#Sniping Suit# +2399#Dragon Vest# +2401#Sandals# +2402#Sandals# +2403#Shoes# +2404#Shoes# +2405#Boots# +2406#Boots# +2407#Crystal Pumps# +2408#Shackles# +2409#Pointed Shoes# +2410#Sleipnir# +2411#Greaves# +2412#Greaves# +2413#Safety Boots# +2414#Novice Slippers# +2415#Bunny Slippers# +2416#Novice Shoes# +2417#Fricco's Shoes# +2418#Vidar's Boots# +2419#Goibne's Greaves# +2420#Angel's Reincarnation# +2421#Valkyrie Shoes# +2422#High Fashion Sandals# +2423#Variant Shoes# +2424#Tidal Shoes# +2425#Black Leather Boots# +2426#Shadow Walk# +2427#Golden Shoes# +2428#Freya Boots# +2429#Iron Boots# +2430#Iron Boots# +2431#Valley Shoes# +2432#Pointed Shoes# +2433#Diabolus Boots# +2434#Black Leather Boots# +2435#Battle Greaves# +2436#Combat Boots# +2437#Battle Boots# +2438#Paw of Cat# +2439#Refresh Shoes# +2440#Sprint Shoes# +2441#Beach Sandals# +2442#Red Stocking Boots# +2443#Fisher's Boots# +2444#Glorious Shoes# +2445#Glorious Popularized Shoes# +2446#Glorious Mass-Production Shoes# +2447#Army Boots# +2448#Fast shoes# +2449#Variant Shoes# +2450#Vital Tree Shoes# +2451#Freya's Spiritual Sandals# +2452#Freya's Spiritual Sandals# +2453#Freya's Spiritual Sandals# +2454#Freya's Spiritual Sandals# +2455#Time Keeper Boots# +2456#Eden Group Boots I# +2457#Eden Group Boots II# +2458#Eden Group Boots III# +2459#Upgrade Shoes# +2460#Upgrade Boots# +2461#Upgrade Greaves# +2462#Ephemeral Sleipnir# +2463#Feral Boots# +2464#NoFear Shoes# +2465#Dance Shoes# +2466#Training Shoes# +2467#Goldenrod Shoes# +2468#Aqua Shoes# +2469#Crimson Shoes# +2470#Forest Shoes# +2471#Shoes of Affection# +2472#Shoes of Judgement# +2473#Eden Group Boots IV# +2474#Lehmannza Shoes# +2475#Ur Greaves# +2476#Peuz Greaves# +2477#Sapha's Shoes# +2478#Nab's Shoes# +2479#White Wing Boots# +2480#Black Wing Boots# +2481#Rune Boots# +2482#Shoes of Valor# +2483#Siege Greaves# +2484#Siege Boots# +2485#Siege Shoes# +2486#Shadow Walk# +2487#Vital Tree Shoes# +2488#Fricco's Shoes# +2489#Vidar's Boots# +2490#Rune Boots# +2491#Bangungot Boots of Nightmare# +2492#Bangungot Boots of Bayani Nightmare# +2493#Goibne's Greaves# +2494#Crystal Pumps# +2495#Aegir Shoes# +2496#TE WoE Shoes# +2497#TE WoE Boots# +2498#TE WoE Magic Sandals# +2499#Temporal Boots# +2501#Hood# +2502#Hood# +2503#Muffler# +2504#Muffler# +2505#Manteau# +2506#Manteau# +2507#Cape of Ancient Lord# +2508#Ragamuffin Manteau# +2509#Survivor's Manteau# +2510#Somber Novice Hood# +2511#Skeleton Manteau# +2512#Novice Manteau# +2513#Heavenly Wings# +2514#Pauldron# +2515#Eagle Wing# +2516#Falcon Muffler# +2517#Vali's Manteau# +2518#Morpheus's Shawl# +2519#Morrigan's Manteau# +2520#Goibne's Spaulders# +2521#Angelic Cardigan# +2522#Undershirt# +2523#Undershirt# +2524#Valkyrie Manteau# +2525#Cape of Ancient Lord# +2526#Coat of Dragon Scale# +2527#Dragon Breath# +2528#Wool Scarf# +2529#Rider Insignia# +2530#Rider Insignia# +2531#Ulfhedinn# +2532#Mythril Magic Cape# +2533#Freya Cape# +2534#Mufflers# +2535#Survivor's Manteau# +2536#Skin of Ventus# +2537#Diabolus Manteau# +2538#Captain's Manteau# +2539#Commander's Manteau# +2540#Sheriff's Manteau# +2541#Asprika# +2542#Flame Manteau of Nacht Sieger# +2543#Sylphid Manteau# +2544#Leather of Tendrilion# +2545#Musika# +2546#Beach Manteau# +2547#Cheap Undershirt# +2548#Neo Muffler# +2549#Glorious Muffler# +2550#Fisher's Muffler# +2551#Rider Insigna# +2552#Mythril Magic Cape# +2553#Dragon Manteau# +2554#Nidhoggur's Shadow Garb# +2555#Freya's Spiritual Scarf# +2556#Freya's Spiritual Scarf# +2557#Freya's Spiritual Scarf# +2558#Freya's Spiritual Scarf# +2559#Time Keeper Manteau# +2560#[Event] Genesis Manteau I# +2561#Upgrade Hood# +2562#Upgrade Muffler# +2563#Upgrade Manteau# +2564#Feral Tail# +2565#Beach Towel# +2566#Half Asprika# +2568#Loki's Muffler# +2569#Shawl of Affection# +2570#Shawl of Judgement# +2571#Eden Group Manteau II# +2572#Catapult Shoulder# +2573#Archangel's Wings# +2574#Ur Manteau# +2575#Peuz Manteau# +2576#Adventurer's Backpack (Hidding)# +2577#Sapha's Hood# +2578#Nab's Hood# +2579#Magic Stole# +2580#White Wing Manteau# +2581#Black Wing Manteau# +2582#Salvage Cape# +2583#Holy Cape# +2584#Wanderer's Coat# +2585#Muffler of Valor# +2586#Siege Manteau# +2587#Siege Muffler# +2588#Ragamuffin Manteau# +2589#Fallen Angel Wings# +2590#Buwaya Sack Cloth# +2591#Buwaya Sack Cloth(Bayani)# +2592#Manteau of Domovoi# +2593#Froid Manteau# +2594#Wrapping Cloth Manteau# +2595#Sombre Manteau# +2596#Sharel Manteau# +2597#Bloody Muffler# +2598#L'Amour Manteau# +2599#Goibne's Spaulders# +2600#Sheep Sachet# +2601#Ring# +2602#Earring# +2603#Necklace# +2604#Glove# +2605#Brooch# +2606#Unidentified Accessory# +2607#Clip# +2608#Rosary# +2609#Skull Ring# +2610#Gold Ring# +2611#Silver Ring# +2612#Flower Ring# +2613#Diamond Ring# +2614#Eye of Dullahan# +2615#Safety Ring# +2616#Critical Ring# +2617#Celebrant's Mitten# +2618#Matyr's Leash# +2619#Bow Thimble# +2620#Rogue's Treasure# +2621#Ring# +2622#Earring# +2623#Necklace# +2624#Glove# +2625#Brooch# +2626#Rosary# +2627#Belt# +2628#Novice Armlet# +2629#Megingjard# +2630#Brisingamen# +2631#Celebration Ring# +2634#Wedding Ring# +2635#Wedding Ring# +2636#Gold Christmas Ring# +2637#Silver Christmas Ring# +2638#Sacred Incense# +2639#Occult Incense# +2640#Kafra Ring# +2641#Fashion Hip Sack# +2642#Serin's Gold Ring# +2643#Serin's Gold Ring # +2644#The Sign# +2645#Moonlight Ring# +2646#Bunch of Carnation# +2647#Nile Rose# +2648#Morpheus's Ring# +2649#Morpheus's Bracelet# +2650#Morrigane's Belt# +2651#Morrigane's Pendant# +2652#Goddess of Fortune's Cursed Brooch# +2653#Sacrifice Ring# +2654#Shinobi Sash# +2655#Bloodied Shackle Ball# +2656#Armor Charm# +2657#Laboratory Permit# +2658#Nile Rose# +2659#Vesper Core 01# +2660#Vesper Core 02# +2661#Vesper Core 03# +2662#Vesper Core 04# +2663#Gauntlet of Accuracy# +2664#Scarf Belt# +2665#Exorcising Ring# +2666#Lantern of Hope# +2667#Renown Archer's Gloves# +2668#Unidentified Accessory# +2669#Unidentified Accessory# +2670#Unidentified Accessory# +2671#Bow Thimble# +2672#Unidentified Accessory# +2673#Unidentified Accessory# +2674#Unidentified Accessory# +2675#Unidentified Accessory# +2676#Unidentified Accessory# +2677#Spiritual Ring# +2678#Ring of Flame Lord# +2679#Ring of Resonance# +2680#Lesser Elemental Ring# +2681#Unidentified Accessory# +2682#Ring of Water# +2683#Ring of Fire# +2684#Ring of Wind# +2685#Ring of Earth# +2686#Rental Elven Ears# +2687#Rental Steel Flower# +2688#Rental Critical Ring# +2689#Rental Earring# +2690#Rental Ring# +2691#Rental Necklace# +2692#Rental Glove# +2693#Rental Brooch# +2694#Rental Rosary# +2695#Rental Safety Ring# +2696#Rental Vesper Core 01# +2697#Rental Vesper Core 02# +2698#Rental Vesper Core 03# +2699#Rental Vesper Core 04# +2700#Red Silk Seal# +2701#Orleans's Glove# +2702#Bison Horn# +2703#Expert Ring# +2704#Unidentified Accessory# +2705#Unidentified Accessory# +2706#Unidentified Accessory# +2707#GUSLI# +2708#Chinese Handicraft# +2709#5th Anniversary Coin# +2710#Bloody Iron Ball# +2711#Spiritual Ring# +2712#Ragnarok Limited Edition# +2713#Certificate# +2714#Marvelous Pendant# +2715#Skull Ring# +2716#Librarian Glove# +2717#Pocket Watch# +2718#Lunatic Brooch# +2719#Iron Wrist# +2720#Medal of Honor (Swordman)# +2721#Medal of Honor (Thief)# +2722#Medal of Honor (Acolyte)# +2723#Medal of Honor (Mage)# +2724#Medal of Honor (Archer)# +2725#Medal of Honor (Merchant)# +2726#Icarus Wings# +2727#Bowman Scarf# +2728#Cursed Hand# +2729#Diabolus Ring# +2730#Seal of Continental Guard# +2731#Rune Spellstone# +2732#Death Loop# +2733#Medal of Honor (Gunslinger)# +2734#Directive# +2735#Directive# +2736#Navel Ring# +2737#Foot Ring# +2738#Shiny Coin# +2739#Ordinary Coin# +2740#Rusty Coin# +2741#All In One Ring# +2742#Lucky Clip# +2743#Angelic Ring# +2744#Sprint Ring# +2745#Pinguicula Corsage# +2746#Cold Heart# +2747#Black Cat# +2748#Cursed Star# +2749#Linen Glove# +2750#Unidentified Accessory# +2751#Academy Badge# +2752#Unidentified Accessory# +2753#Rental Neutral Ring# +2754#Rental Hallow Ring# +2755#Rental Clamorous Ring# +2756#Rental Chemical Ring# +2757#Rental Insecticide Ring# +2758#Rental Fisher Ring# +2759#Rental Decussate Ring# +2760#Rental Bloody Ring# +2761#Rental Satanic Ring# +2762#Rental Dragon Ring# +2763#Rental Neo Skull Ring# +2764#Small Fishing Rod# +2765#Novice Figure# +2766#Swordman Figure# +2767#Acolyte Figure# +2768#Mage Figure# +2769#Archer Figure# +2770#Thief Figure# +2771#Merchant Figure# +2772#Glorious Ring# +2773#Glorious Popularized Ring# +2774#Glorious Mass-Production Ring# +2775#Lure# +2776#Adventurer's Trusty Towel# +2777#Shaman Ring# +2778#Shaman Earrings# +2779#Dark Knight Belt (Type A)# +2780#Dark Knight Glove (Type A)# +2781#Aumdura's Benefit# +2782#Ring of the Ancient Wise King# +2783#Eye Stone Ring# +2784#Christmas Musicbox# +2785#Unidentified Accessory# +2786#Unidentified Accessory# +2787#Waterdrop Brooch# +2788#Bradium Earring# +2789#Bradium Ring# +2790#Bradium Brooch# +2791#Unidentified Accessory# +2792#Unidentified Accessory# +2793#Unidentified Accessory# +2794#Magic Stone Ring# +2795#Green Apple Ring# +2796#Magical Stone (Splendide)# +2797#Magical Stone (Manuk)# +2798#Will of Exhausted Warrior# +2799#Unidentified Accessory# +2800#Accelerator# +2801#Hovering Booster# +2802#Suicidal Device# +2803#Shape Shifter# +2804#Cooling Device# +2805#Magnetic Field Generator# +2806#Barrier Builder# +2807#Repair Kit# +2808#Camouflage Generator# +2809#High Quality Cooler# +2810#Special Cooler# +2811#Freya's Spiritual Bracelet# +2812#Freya's Spiritual Bracelet# +2813#Freya's Spiritual Bracelet# +2814#Freya's Spiritual Bracelet# +2815#Unidentified Accessory# +2816#Unidentified Accessory# +2817#Unidentified Accessory# +2818#Unidentified Accessory# +2819#Swordman Manual# +2820#Thief Manual# +2821#Acolyte Manual# +2822#Archer Manual# +2823#Merchant Manual# +2824#Mage Manual# +2825#Shaman Earrings# +2826#Dark Knight Belt (Type B)# +2827#Dark Knight Glove (Type B)# +2828#Upgrade Clip# +2829#Greed Clip# +2830#Ephemeral Megingjard# +2831#Ephemeral Brisingamen# +2832#Unidentified Accessory# +2833#Odin's Recall# +2834#All In One Ring# +2835#Rental Critical Ring# +2836#Rental Glove# +2837#Rental Safety Ring# +2838#Rental Necklace# +2839#Rental Ring# +2840#Rental Rosary# +2841#Unidentified Accessory# +2842#Unidentified Accessory# +2843#Golden Bell# +2844#Light of El Dicastes# +2845#NoFear Belt# +2853#Telekinetic Orb# +2854#Alchemy Glove# +2855#Whikebain's Black Tail# +2856#Half Megin# +2857#Half Brysing# +2858#Pendant of Guardian# +2859#Golden Rod Orb# +2860#Aqua Orb# +2861#Crimson Orb# +2862#Forest Orb# +2863#Unidentified Accessory# +2864#Light of Cure# +2865#Seal of Cathedral# +2866#Ring of Archbishop# +2870#Unidentified Accessory# +2871#Unidentified Accessory# +2872#G Honor Certificate# +2873#Cat Hand Glove# +2874#Buffalo Horn# +2875#Unidentified Accessory# +2876#Unidentified Accessory# +2877#Unidentified Accessory# +2878#Unidentified Accessory# +2879#Unidentified Accessory# +2880#Unidentified Accessory# +2881#Orleans's Necklace# +2882#Unidentified Accessory# +2883#Ur's Seal# +2884#Peuz's Seal# +2885#Unidentified Accessory# +2886#Sapha Ring# +2887#Nab Ring# +2888#Unidentified Accessory# +2889#Unidentified Accessory# +2890#White Wing Brooch# +2891#Black Wing Brooch# +2892#Assassin Handcuffs# +2893#Unidentified Accessory# +2894#Glove of Shura# +2895#Unidentified Accessory# +2896#Unidentified Accessory# +2897#Unidentified Accessory# +2898#Black Rosary# +2899#Sound Amplifier# +2900#Unidentified Accessory# +2901#Unidentified Accessory# +2902#Unidentified Accessory# +2903#Unidentified Accessory# +2904#Naqsi# +2905#Unidentified Accessory# +2906#Unidentified Accessory# +2907#Buwaya Agimat Tattoo# +2908#Unidentified Accessory# +2909#Unidentified Accessory# +2910#Bakonawa Agimat Tattoo# +2911#Bangungot Agimat Tattoo# +2912#Unidentified Accessory# +2913#Thief Handcuffs# +2914#Left Eye Of An Wizard# +2915#Ettlang Keepsake# +2916#Fairy Wing# +2917#Str Glove# +2918#Int Glove# +2919#Agi Glove# +2920#Vit Glove# +2921#Dex Glove# +2922#Luk Glove# +2923#Str Glove # +2924#Int Glove # +2925#Agi Glove # +2926#Vit Glove # +2927#Dex Glove # +2928#Luk Glove # +2929#Unidentified Accessory# +2930#Unidentified Accessory# +2931#Unidentified Accessory# +2932#Unidentified Accessory# +2933#Unidentified Accessory# +2934#Unidentified Accessory# +2935#Sprint Glove# +2936#Recovery Ring# +2937#Unidentified Accessory# +2938#Unidentified Accessory# +2939#Unidentified Accessory# +2940#Ninja Manual# +2941#Gunslinger Manual# +2942#Taekwon Manual# +2943#Unidentified Accessory# +2944#TE Protection Ring# +2945#TE Rage Ring# +2946#TE Defiance Ring# +2947#Unidentified Accessory# +2948#Demons Wing# +2949#Silversmith Bracelet# +2950#Rune Ring# +2951#Kvasir Ring (Blue)# +2952#Kvasir Ring (Red)# +2953#Kvasir Ring (Green)# +2954#Kvasir Ring (Brown)# +2955#Unidentified Accessory# +2956#Advanced Safety Ring# +2957#Advanced Ring Of Flame Lord# +2958#Advanced Ring Of Resonance# +2959#Fidelity Necklace# +2960#Unidentified Accessory# +2961#Unidentified Accessory# +2962#Unidentified Accessory# +2963#Physical Enhancer Ring# +2964#Magic Intensifier Ring# +2965#Unidentified Accessory# +2966#RWC 2012 Ring# +2967#Chambered RWC 2012 Ring# +2968#RWC 2012 Pendant# +2969#Chambered RWC 2012 Pendant# +2970#Unidentified Accessory# +2971#Pocket Watch# +2972#Unidentified Accessory# +2973#Unidentified Accessory# +2974#Unidentified Accessory# +2975#Unidentified Accessory# +2976#Red Lantern# +2977#Hurt Mind# +2978#Kind Heart# +2979#Strawberry Decoration# +2980#Evil Spirit Glove# +2981#Hero Ring# +2982#Unidentified Accessory# +2983#Unidentified Accessory# +2984#Saehrimnir Gloves# +2985#Gyges's Ring# +2986#Unidentified Accessory# +2987#Unidentified Accessory# +2988#Hero Ring Of Newoz# +2989#Floral Bracelet Of Aigu# +2990#Pendant of Harmony# +2991#Pendant of Chaos# +2992#Pendant of Maelstorm# +2993#Unidentified Accessory# +2994#Water Crystal Stone# +2995#Supplement Part Dex# +2996#Upgrade Part - Gun Barrel# +2997#Unidentified Accessory# +2998#Unidentified Accessory# +2999#Unidentified Accessory# +3629#Brisingamen Token# +3630#Sleipnir Token# +3633#Mjolnir Token# +3634#Megingjord Token# +3737#Brownie Point# +4001#Poring Card# +4002#Fabre Card# +4003#Pupa Card# +4004#Drops Card# +4005#Santa Poring Card# +4006#Lunatic Card# +4007#Pecopeco Egg Card# +4008#Picky Card# +4009#Chonchon Card# +4010#Willow Card# +4011#Picky Egg Card# +4012#Thiefbug Egg Card# +4013#Andre Egg Card# +4014#Roda Frog Card# +4015#Condor Card# +4016#Thief Bug Card# +4017#Savage Bebe Card# +4018#Andre Larva Card# +4019#Hornet Card# +4020#Familiar Card# +4021#Rocker Card# +4022#Spore Card# +4023#Baby Desert Wolf Card# +4024#Plankton Card# +4025#Skeleton Card# +4026#Female Thiefbug Card# +4027#Kukre Card# +4028#Tarou Card# +4029#Wolf Card# +4030#Mandragora Card# +4031#Pecopeco Card# +4032#Ambernite Card# +4033#Poporing Card# +4034#Wormtail Card# +4035#Hydra Card# +4036#Muka Card# +4037#Snake Card# +4038#Zombie Card# +4039#Stainer Card# +4040#Creamy Card# +4041#Coco Card# +4042#Steel Chonchon Card# +4043#Andre Card# +4044#Smokie Card# +4045#Horn Card# +4046#Martin Card# +4047#Ghostring Card# +4048#Poison Spore Card# +4049#Vadon Card# +4050#Male Thiefbug Card# +4051#Yoyo Card# +4052#Elder Willow Card# +4053#Vitata Card# +4054#Angelring Card# +4055#Marina Card# +4056#Dustiness Card# +4057#Metaller Card# +4058#Thara Frog Card# +4059#Soldier Andre Card# +4060#Goblin Card# +4061#Cornutus Card# +4062#Anacondaq Card# +4063#Caramel Card# +4064#Zerom Card# +4065#Kaho Card# +4066#Orc Warrior Card# +4067#Megalodon Card# +4068#Scorpion Card# +4069#Drainliar Card# +4070#Eggyra Card# +4071#Orc Zombie Card# +4072#Golem Card# +4073#Pirate Skel Card# +4074#Bigfoot Card# +4075#Argos Card# +4076#Magnolia Card# +4077#Phen Card# +4078#Savage Card# +4079#Mantis Card# +4080#Flora Card# +4081#Hode Card# +4082#Desert Wolf Card# +4083#Rafflesia Card# +4084#Marine Sphere Card# +4085#Orc Skeleton Card# +4086#Soldier Skeleton Card# +4087#Giearth Card# +4088#Frilldora Card# +4089#Swordfish Card# +4090#Munak Card# +4091#Kobold Card# +4092#Skel Worker Card# +4093#Obeaune Card# +4094#Archer Skeleton Card# +4095#Marse Card# +4096#Zenorc Card# +4097#Matyr Card# +4098#Dokkaebi Card# +4099#Pasana Card# +4100#Sohee Card# +4101#Sandman Card# +4102#Whisper Card# +4103#Horong Card# +4104#Requiem Card# +4105#Marc Card# +4106#Mummy Card# +4107#Verit Card# +4108#Myst Card# +4109#Jakk Card# +4110#Ghoul Card# +4111#Strouf Card# +4112#Marduk Card# +4113#Marionette Card# +4114#Argiope Card# +4115#Hunter Fly Card# +4116#Isis Card# +4117#Sidewinder Card# +4118#Earth Petite Card# +4119#Bathory Card# +4120#Sky Petite Card# +4121#Phreeoni Card# +4122#Deviruchi Card# +4123#Eddga Card# +4124#Medusa Card# +4125#Deviace Card# +4126#Minorous Card# +4127#Nightmare Card# +4128#Golden Thiefbug Card# +4129#Baphomet Jr. Card# +4130#Scorpion King Card# +4131#Moonlight Flower Card# +4132#Mistress Card# +4133#Raydric Card# +4134#Dracula Card# +4135#Orc Lord Card# +4136#Khalitzburg Card# +4137#Drake Card# +4138#Anubis Card# +4139#Joker Card# +4140#Abysmal Knight Card# +4141#Evil Druid Card# +4142#Doppelganger Card# +4143#Orc Hero Card# +4144#Osiris Card# +4145#Beelzebub Card# +4146#Maya Card# +4147#Baphomet Card# +4148#Pharaoh Card# +4149#Gargoyle Card# +4150#Goat Card# +4151#Gajomart Card# +4152#Galapago Card# +4153#Crab Card# +4154#Dumpling Kid Card# +4155#Goblin Leader Card# +4156#Goblin Steamrider Card# +4157#Goblin Archer Card# +4158#Sky Deleter Card# +4159#Nine Tail Card# +4160#Firelock Soldier Card# +4161#Grand Peco Card# +4162#Grizzly Card# +4163#Gryphon Card# +4164#Gullinbursti Card# +4165#Gig Card# +4166#Nightmare Terror Card# +4167#Nereid Card# +4168#Dark Lord Card# +4169#Dark Illusion Card# +4170#Dark Frame Card# +4171#Dark Priest Card# +4172#The Paper Card# +4173#Demon Fungus Card# +4174#Devilring Card# +4175#Poisonous Toad Card# +4176#Dullahan Card# +4177#Dryad Card# +4178#Dragon Tail Card# +4179#Dragonfly Card# +4180#Driller Card# +4181#Disguise Card# +4182#Diabolic Card# +4183#Vagabond Wolf Card# +4184#Lava Golem Card# +4185#Rideword Card# +4186#Raggler Card# +4187#Raydric Archer Card# +4188#Leib Olmai Card# +4189#Wraith Dead Card# +4190#Wraith Card# +4191#Loli Ruri Card# +4192#Rotar Zairo Card# +4193#Lude Card# +4194#Rybio Card# +4195#Leaf Cat Card# +4196#Marin Card# +4197#Mastering Card# +4198#Maya Purple Card# +4199#Merman Card# +4200#Megalith Card# +4201#Majoruros Card# +4202#Mao Guai Card# +4203#Mutant Dragonoid Card# +4204#Mini Demon Card# +4205#Mimic Card# +4206#Myst Case Card# +4207#Mysteltainn Card# +4208#Miyabi Doll Card# +4209#Violy Card# +4210#Wanderer Card# +4211#Vocal Card# +4212#Bongun Card# +4213#Brilight Card# +4214#Bloody Murderer Card# +4215#Blazzer Card# +4216#Sasquatch Card# +4217#Enchanted Peach Tree Card# +4218#Succubus Card# +4219#Sage Worm Card# +4220#Solider Card# +4221#Skeleton General Card# +4222#Skel Prisoner Card# +4223#Stalactic Golem Card# +4224#Stem Worm Card# +4225#Stone Shooter Card# +4226#Sting Card# +4227#Spring Rabbit Card# +4228#Sleeper Card# +4229#Clock Tower Manager Card# +4230#Shinobi Card# +4231#Mi Gao Card# +4232#Hermit Plant Card# +4233#Baby Leopard Card# +4234#Anolian Card# +4235#Christmas Cookie Card# +4236#Amon Ra Card# +4237#Owl Duke Card# +4238#Owl Baron Card# +4239#Iron Fist Card# +4240#Arclouze Card# +4241#Arc Angelring Card# +4242#Apocalipse Card# +4243#Antonio Card# +4244#Alarm Card# +4245#Am Mut Card# +4246#Assaulter Card# +4247#Aster Card# +4248#Ancient Mummy Card# +4249#Ancient Worm Card# +4250#Executioner Card# +4251#Elder Card# +4252#Alligator Card# +4253#Alice Card# +4254#Ogretooth Card# +4255#Orc Lady Card# +4256#Orc Archer Card# +4257#Wild Rose Card# +4258#Evil Nymph Card# +4259#Wooden Golem Card# +4260#Wootan Shooter Card# +4261#Wootan Fighter Card# +4262#Cloud Hermit Card# +4263#Incantation Samurai Card# +4264#Wind Ghost Card# +4265#Jing Guai Card# +4266#Eclipse Card# +4267#Explosion Card# +4268#Injustice Card# +4269#Incubus Card# +4270#Giant Spider Card# +4271#Giant Hornet Card# +4272#Zhu Po Long Card# +4273#Shell Fish Card# +4274#Zombie Master Card# +4275#Zombie Prisoner Card# +4276#Lord of The Dead Card# +4277#Zealotus Card# +4278#Gibbet Card# +4279#Earth Deleter Card# +4280#Geographer Card# +4281#Zipper Bear Card# +4282#Tengu Card# +4283#Greatest General Card# +4284#Chepet Card# +4285#Choco Card# +4286#Karakasa Card# +4287#Kapha Card# +4288#Carat Card# +4289#Caterpillar Card# +4290#Cat O' Nine Tails Card# +4291#Kobold Leader Card# +4292#Kobold Archer Card# +4293#Cookie Card# +4294#Quve Card# +4295#Kraben Card# +4296#Cramp Card# +4297#Cruiser Card# +4298#Creamy Fear Card# +4299#Clock Card# +4300#Chimera Card# +4301#Killer Mantis Card# +4302#Taogun Ka Card# +4303#Giant Whisper Card# +4304#Tamruan Card# +4305#Turtle General Card# +4306#Toad Card# +4307#Beetle King Card# +4308#Tri Joint Card# +4309#Parasite Card# +4310#Panzer Goblin Card# +4311#Permeter Card# +4312#Fur Seal Card# +4313#Punk Card# +4314#Penomena Card# +4315#Pest Card# +4316#False Angel Card# +4317#Mobster Card# +4318#Stormy Knight Card# +4319#Freezer Card# +4320#Bloody Knight Card# +4321#Hylozoist Card# +4322#High Orc Card# +4323#Hatii Bebe Card# +4324#Hatii Card# +4325#Harpy Card# +4326#Sea-Otter Card# +4327#Bloody Butterfly Card# +4328#Yao Jun Card# +4329#Phendark Card# +4330#Dark Snake Lord Card# +4331#Heater Card# +4332#Waste Stove Card# +4333#Venomous Card# +4334#Noxious Card# +4335#Pitman Card# +4336#Ungoliant Card# +4337#Porcellio Card# +4338#Obsidian Card# +4339#Mineral Card# +4340#Teddy Bear Card# +4341#Metaling Card# +4342#RSX-0806 Card# +4343#Holden Card# +4344#Anopheles Card# +4345#Hill Wind Card# +4346#Egnigem Cenia Card# +4347#Armeyer Dinze Card# +4348#Wickebine Tres Card# +4349#Errende Ebecee Card# +4350#Laurell Weinder Card# +4351#Kavach Icarus Card# +4352#Boss Egnigem Card# +4353#Remover Card# +4354#Gemini-S58 Card# +4355#Gremlin Card# +4356#Beholder Card# +4357#Lord Knight Card# +4358#Seyren Windsor Card# +4359#Assassin Cross Card# +4360#Eremes Guile Card# +4361#Mastersmith Card# +4362#Howard Alt-Eisen Card# +4363#High Priest Card# +4364#Margaretha Sorin Card# +4365#High Wizard Card# +4366#Kathryne Keyron Card# +4367#Sniper Card# +4368#Cecil Damon Card# +4369#Venatu Card# +4370#Dimik Card# +4371#Archdam Card# +4372#White Lady Card# +4373#Green Maiden Card# +4374#Vesper Card# +4375#Orc Baby Card# +4376#Lady Tanee Card# +4377#Grove Card# +4378#Gold Acidus Card# +4379#Blue Acidus Card# +4380#Red Ferus Card# +4381#Green Ferus Card# +4382#Yellow Novus Card# +4383#Red Novus Card# +4384#Hydrolancer Card# +4385#Dragon Egg Card# +4386#Detardeurus Card# +4387#Ancient Mimic Card# +4388#Death Word Card# +4389#Plasma Card# +4390#Breeze Card# +4391#Baroness of Retribution Card# +4392#Dame of Sentinel Card# +4393#Mistress of Shelter Card# +4394#Lady Solace Card# +4395#Maero of Thanatos Card# +4396#Odium of Thanatos Card# +4397#Despero of Thanatos Card# +4398#Dolor of Thanatos Card# +4399#Memory of Thanatos Card# +4400#Aliza Card# +4401#Alicel Card# +4402#Aliot Card# +4403#Kiel-D-01 Card# +4404#Skogul Card# +4405#Frus Card# +4406#Skeggiold Card# +4407#Randgris Card# +4408#Gloom Under Night Card# +4409#Agav Card# +4410#Echio Card# +4411#Vanberk Card# +4412#Isilla Card# +4413#Hodremlin Card# +4414#Seeker Card# +4415#Snowier Card# +4416#Siroma Card# +4417#Ice Titan Card# +4418#Gazeti Card# +4419#Ktullanux Card# +4420#Muscipular Card# +4421#Drosera Card# +4422#Roween Card# +4423#Galion Card# +4424#Stapo Card# +4425#Atroce Card# +4426#Byorgue Card# +4427#Sword Guardian Card# +4428#Bow Guardian Card# +4429#Salamander Card# +4430#Ifrit Card# +4431#Kasa Card# +4432#Magmaring Card# +4433#Imp Card# +4434#Knocker Card# +4435#Zombie Slaughter Card# +4436#Ragged Zombie Card# +4437#Hell Poodle Card# +4438#Banshee Card# +4439#Flame Skull Card# +4440#Necromancer Card# +4441#Fallen Bishop Card# +4442#Tatacho Card# +4443#Aqua Elemental Card# +4444#Draco Card# +4445#Luciola Vespa Card# +4446#Enhanced Skeleton Card# +4447#Centipede Card# +4448#Cornus Card# +4449#Dark Shadow Card# +4450#Banshee Master Card# +4451#Entweihen Crothen Card# +4452#Centipede Larva Card# +4453#Hillslion Card# +4454#Fake Valkyrie Card# +4455#Fake Valkyrie Card# +4456#Nidhoggur Shadow Card# +4457#Nacht Seiger Card# +4458#Duneyrr Card# +4459#Rata Card# +4460#Rhyncho Card# +4461#Phylla Card# +4462#Hardrock Mammoth Card# +4463#Tendrillion Card# +4464#Aunoe Card# +4465#Fanat Card# +4466#Beholder Master Card# +4467#Heavy Metalring Card# +4468#Dark Pinguicula Card# +4469#Naga Card# +4470#Nepenthes Card# +4471#Draco Egg Card# +4472#Bradium Golem Card# +4473#Ancient Tree Card# +4474#Zakudam Card# +4475#Cobalt Mineral Card# +4476#Pinguicula Card# +4477#Hell Apocalypse Card# +4478#Val'khiri Card# +4479#Val'khiri Card# +4480#Sealed Kiel Card# +4481#Sealed Ktullanux Card# +4482#Sealed B Ygnizem Card# +4483#Sealed Dracula Card# +4484#Sealed Mistress Card# +4485#Sealed Gloom Card# +4486#Sealed Beelzebub Card# +4487#Sealed Ifrit Card# +4488#Sealed Dark Lord Card# +4489#Sealed Pharaoh Card# +4490#Sealed Moonlight Flower Card# +4491#Sealed Sniper Card# +4492#Sealed Orc Hero Card# +4493#Sealed Taogun Ka Card# +4494#Sealed Turtle General Card# +4495#Sealed Amon Ra Card# +4496#Sealed Drake Card# +4497#Sealed Stormy Knight Card# +4498#Sealed Lady Tanee Card# +4499#Sealed Incantation Samurai Card# +4500#Sealed Orc Lord Card# +4501#Sealed High Priest Card# +4502#Sealed MasterSmith Card# +4503#Sealed Vesper Card# +4504#Sealed Eddga Card# +4505#Scaraba Card# +4506#Dolomedes Card# +4507#Queen Scaraba Card# +4508#Gold Scaraba Card# +4509#Gold Queen Scaraba Card# +4510#Miming Card# +4511#Little Fatum Card# +4512#Parus Card# +4513#Angra Mantis Card# +4514#Pom Spider Card# +4515#Rafflesia Alnoldi Card# +4516#Comodo Card# +4517#Cendrawasih Card# +4518#Banaspaty Card# +4519#Butoijo Card# +4520#Leak Card# +4521#Sedora Card# +4522#Sropho Card# +4523#Pot Dofle Card# +4524#King Dramoh Card# +4525#Kraken Card# +4526#Weird Coelacanth Card# +4527#Dark Coelacanth Card# +4528#Mutant Coelacanth Card# +4529#Violent Coelacanth Card# +4530#Siorava Card# +4531#Red Eruma Card# +4532#Wild Rider Card# +4533#Octopus Card# +4534#Giant Octopus Card# +4535#Sealed Randgris Card# +4536#Sealed Atroce Card# +4537#Sealed Phreeoni Card# +4538#Sealed White Lady Card# +4539#Sealed Fallen Bishop Card# +4540#Sealed Lord of The Death Card# +4541#Sealed High Wizard Card# +4542#Sealed Detardeurus Card# +4543#Sealed Hatii Card# +4544#Sealed Dark Snake Lord Card# +4545#Novice Poring Card# +4546#Val'khiri Card# +4547#Enhanced Byorgue Card# +4548#Enhanced Salamander Card# +4549#Upgrade Maya Purple Card# +4550#Upgrade Bow Guardian Card# +4551#Enhanced Necromancer Card# +4552#Manny Card# +4553#Sid Card# +4554#Diego Card# +4555#Scrat Card# +4556#Fenrir Card# +4557#Weakened Fenrir Card# +4558#Chun Tree Card# +4559#Lord Morocc Card# +4560#Clown Card# +4561#Professor Card# +4562#Champion Card# +4563#Creator Card# +4564#Stalker Card# +4565#Paladin Card# +4566#Gypsy Card# +4567#Alphoccio Card# +4568#Celia Card# +4569#Chen Card# +4570#Flamel Card# +4571#Gertie Card# +4572#Randel Card# +4573#Trentini Card# +4574#Daehyon Card# +4575#Soheon Card# +4576#Gioia Card# +4577#Elvira Card# +4578#Pyuriel Card# +4579#Warrior Lola Card# +4580#Guardian Kades Card# +4581#Rudo Card# +4582#Bungisngis Card# +4583#Engkanto Card# +4584#Manananggal Card# +4585#Mangkukulam Card# +4586#Tikbalang Card# +4587#Tiyanak Card# +4588#Wakwak Card# +4589#Jejeling Card# +4590#Bangungot Card# +4591#Bakonawa Card# +4592#Buwaya Card# +4593#Menblatt Card# +4594#Petal Card# +4595#Cenere Card# +4596#Antique Book Card# +4597#Lichtern Blue Card# +4598#Lichtern Yellow Card# +4599#Lichtern Red Card# +4600#Lichtern Green Card# +4601#Amdarais Card# +4602#Realized Amdarais Card# +4603#Corruption Root Card# +4604#Realized Corruption Root Card# +4605#Agony of Royal Knight Card# +4606#Grudge of Royal Knight Card# +4607#Faithful Manager Card# +4608#White Knight Card# +4609#Khalitzburg Knight Card# +4610#Sarah Card# +4611#RO Girl Card - Amis# +4612#RO Girl Card - Mia# +4613#RO Girl Card - Xiao Fan# +4614#RO Girl Card - Xiaoyu# +4615#RO Girl Card - Xiaoyan# +4616#RO Girl Card - Xin Yue# +4617#RO Girl Card - Yiyi# +4618#RO Girl Card - Catcy# +4619#RO Girl Card - Paipai# +4620#RO Girl Card - Yeppy# +4621#RO Girl Card - Zi ning# +4622#RO Girl Card - Ceng Tian# +4623#11th Anniversary Card# +4625#Timeholder Card# +4626#Big Ben Card# +4627#Big Bell Card# +4628#Neo Punk Card# +4629#Arc Elder Card# +4630#Time Keeper Card# +4631#Owl Viscount Card# +4632#Owl Marquees Card# +4633#Enhanced Archer Skeleton Card# +4634#Enhanced Soldier Skeleton Card# +4635#Enhanced Amdarais Card# +4636#Bijou Card# +4637#Immortal Corps Card# +4638#Watcher Card# +4639#Taffy Card# +4640#Frozen Wolf Card# +4641#Zombie Guard Card# +4642#Infinite Toad Card# +4643#Infinite Vagabond Wolf Card# +4644#Infinite Vocal Card# +4645#Infinite Eclipse Card# +4646#Infinite Chimera Card# +4647#Infinite Osiris Card# +4648#Infinite Eddga Card# +4649#Infinite Phreeoni Card# +4650#Infinite Orc Hero Card# +4651#Infinite Taogun Ka Card# +4652#Nightmare Amon Ra Card# +4653#Nightmare Arclouse Card# +4654#Nightmare Mimic Card# +4655#Nightmare Minotaur Card# +4656#Nightmare Mummy Card# +4657#Nightmare Ancient Mummy Card# +4658#Nightmare Verit Card# +4659#Eggring Card# +4660#Scout Basilisk Card# +4661#Charge Basilisk Card# +4662#Big Eggring Card# +4663#Leaf Lunatic Card# +4664#Grass Fabre Card# +4665#Wild Honet Card# +4666#Sweet Roda Frog Card# +4667#Hunter Wolf Card# +4668#Trance Spore Card# +4669#Jungle Mandragora Card# +4670#Fruit Pom Spider Card# +4671#Sorcerer Celia Card# +4672#Sura Chen Card# +4673#Minstrel Alphoccio Card# +4674#Guillotine Cross Eremes Card# +4675#Archbishop Margaretha Card# +4676#Ranger Cecil Card# +4677#Mechanic Howard Card# +4678#Warlock Kathryne Card# +4679#Rune Knight Seyren Card# +4680#Royal Guard Randel Card# +4681#Genetic Flamel Card# +4682#Shadow Chaser Gertie Card# +4683#Wanderer Trentini Card# +4684#True Eremes Guile Card# +4685#True Margaretha Sorin Card# +4686#True Kathryne Keyron Card# +4687#True Cecil Damon Card# +4688#True Howard Alt-Eisen Card# +4689#True Seyren Windsor Card# +4690#True Randel Lawrence Card# +4691#True Flamel Emure Card# +4692#True Celia Aldea Card# +4693#True Chen Liu Card# +4694#True Gertie Wi Card# +4695#True Trentini Card# +4696#True Alphoccio Basil Card# +4697#Charleston Card# +4698#Step Card# +4699#Lock Step Card# +4700#STR+1# +4701#STR+2# +4702#STR+3# +4703#STR+4# +4704#STR+5# +4705#STR+6# +4706#STR+7# +4707#STR+8# +4708#STR+9# +4709#STR+10# +4710#INT+1# +4711#INT+2# +4712#INT+3# +4713#INT+4# +4714#INT+5# +4715#INT+6# +4716#INT+7# +4717#INT+8# +4718#INT+9# +4719#INT+10# +4720#DEX+1# +4721#DEX+2# +4722#DEX+3# +4723#DEX+4# +4724#DEX+5# +4725#DEX+6# +4726#DEX+7# +4727#DEX+8# +4728#DEX+9# +4729#DEX+10# +4730#AGI+1# +4731#AGI+2# +4732#AGI+3# +4733#AGI+4# +4734#AGI+5# +4735#AGI+6# +4736#AGI+7# +4737#AGI+8# +4738#AGI+9# +4739#AGI+10# +4740#VIT+1# +4741#VIT+2# +4742#VIT+3# +4743#VIT+4# +4744#VIT+5# +4745#VIT+6# +4746#VIT+7# +4747#VIT+8# +4748#VIT+9# +4749#VIT+10# +4750#LUK+1# +4751#LUK+2# +4752#LUK+3# +4753#LUK+4# +4754#LUK+5# +4755#LUK+6# +4756#LUK+7# +4757#LUK+8# +4758#LUK+9# +4759#LUK+10# +4760#MATK Lv1# +4761#MATK Lv2# +4762#FLEE+6# +4763#FLEE+12# +4764#CRI+5# +4765#CRI+7# +4766#ATK+2%# +4767#ATK+3%# +4768#STR+1# +4769#STR+2# +4770#STR+3# +4771#INT+1# +4772#INT+2# +4773#INT+3# +4774#VIT+1# +4775#VIT+2# +4776#VIT+3# +4777#AGI+1# +4778#AGI+2# +4779#AGI+3# +4780#DEX+1# +4781#DEX+2# +4782#DEX+3# +4783#LUK+1# +4784#LUK+2# +4785#LUK+3# +4786#MDEF+2# +4787#MDEF+4# +4788#MDEF+6# +4789#MDEF+8# +4790#MDEF+10# +4791#DEF+3# +4792#DEF+6# +4793#DEF+9# +4794#DEF+12# +4795#HP+100# +4796#HP+200# +4797#HP+300# +4798#HP+400# +4799#HP+500# +4800#SP+50# +4801#SP+100# +4802#SP+150# +4803#Cure Lv1# +4804#Basilica Lv1# +4805#Archbishop Lv1# +4806#MATK Lv3# +4807#ASPD+1# +4808#Fighting Spirit Lv4# +4809#Fighting Spirit Lv3# +4810#Fighting Spirit Lv2# +4811#Fighting Spirit Lv1# +4812#Spell Lv4# +4813#Spell Lv3# +4814#Spell Lv2# +4815#Spell Lv1# +4816#Sharp Lv3# +4817#Sharp Lv2# +4818#Sharp Lv1# +4819#ATK+1%# +4820#Fighting Spirit Lv5# +4821#Fighting Spirit Lv6# +4822#Fighting Spirit Lv7# +4823#Fighting Spirit Lv8# +4824#Fighting Spirit Lv9# +4825#Fighting Spirit Lv10# +4826#Spell Lv5# +4827#Spell Lv6# +4828#Spell Lv7# +4829#Spell Lv8# +4830#Spell Lv9# +4831#Spell Lv10# +4832#Expert Archer Lv1# +4833#Expert Archer Lv2# +4834#Expert Archer Lv3# +4835#Expert Archer Lv4# +4836#Expert Archer Lv5# +4837#Expert Archer Lv6# +4838#Expert Archer Lv7# +4839#Expert Archer Lv8# +4840#Expert Archer Lv9# +4841#Expert Archer Lv10# +4842#ASPD+2# +4843#Sharp Lv4# +4844#Sharp Lv5# +4845#Cobble Stone# +4846#Fully Loved Stone# +4847#Spelled Stone# +4848#Immune Lv1# +4849#Cranial Lv1# +4850#Archbishop Lv2# +4851#Archbishop Lv3# +4852#Archbishop Lv4# +4853#Special STR# +4854#Special AGI# +4855#Special VIT# +4856#Special INT# +4857#Special DEX# +4858#Special LUK# +4859#FLEE+1# +4860#FLEE+3# +4861#MaxHP+1%# +4862#MaxHP+2%# +4863#Fatal Lv1# +4864#Fatal Lv2# +4865#Fatal Lv3# +4866#Fatal Lv4# +4867#MaxHP+3%# +4868#MaxHP+4%# +4869#After Attack Delay Lv1# +4870#SP+25# +4871#SP+75# +4872#After Attack Delay Lv2# +4873#After Attack Delay Lv3# +4874#Beryl Spring# +4875#Bear's Power# +4876#Runaway Magic# +4877#Speed of Light# +4878#Muscle Fool# +4879#Hawk Eye# +4880#Lucky Day# +4881#After Attack Delay Lv4# +4882#ATK+1%# +4883#MATK+1%# +4884#HIT+1# +4885#Spell Lv1# +4886#Spell Lv2# +4887#Spell Lv3# +4888#Spell Lv4# +4889#Spell Lv5# +4890#MDEF+1# +4891#MDEF+3# +4892#MDEF+5# +4893#DEF+15# +4894#ATK+4%# +4895#ATK+5%# +4896#MATK+2%# +4897#MATK+3%# +4898#MATK+4%# +4899#MATK+5%# +4900#MaxHP+5%# +4901#MDEF+7# +4902#DEF+18# +4903#DEF+21# +4904#ATK+6%# +4905#ATK+7%# +4906#MATK+6%# +4907#MATK+7%# +4908#Demon's Essence STR 1# +4909#Demon's Essence STR 2# +4910#Demon's Essence STR 3# +4911#Demon's Essence INT 1# +4912#Demon's Essence INT 2# +4913#Demon's Essence INT 3# +4914#Demon's Essence AGI 1# +4915#Demon's Essence AGI 2# +4916#Demon's Essence AGI 3# +4917#Demon's Essence VIT 1# +4918#Demon's Essence VIT 2# +4919#Demon's Essence VIT 3# +4920#Demon's Essence DEX 1# +4921#Demon's Essence DEX 2# +4922#Demon's Essence DEX 3# +4923#Demon's Essence LUK 1# +4924#Demon's Essence LUK 2# +4925#Demon's Essence LUK 3# +4926#Critical Lv1# +4927#MaxHP50# +4928#SP+10# +4929#MaxSP+1%# +4930#Increases Recovery# +4931#Healing 10# +4932#SP Recovery 1# +4933#Neutral Resistance Lv1# +4934#Neutral Resistance Lv2# +4935#Neutral Resistance Lv3# +4936#Large Attack 1# +4937#Medium Attack 1# +4938#Small Attack 1# +4939#Critical Lv2# +4940#Critical Lv3# +4941#Critical Lv4# +4942#Parrying Lv1# +4943#Parrying Lv2# +4944#Parrying Lv3# +4945#Saving Lv1# +4946#Saving Lv2# +4947#Saving Lv3# +4948#AfterSkillDelay Lv1# +4949#AfterSkillDelay Lv2# +4950#AfterSkillDelay Lv3# +4951#Darkness Drop# +4952#Fire Drop# +4953#Water Drop# +4954#Tree Drop# +4955#Light Drop# +4956#Recovery Drop# +4957#Power of Fox# +4958#Gemini# +4959#Sagittarius# +4960#Aquarius# +4961#Aries# +4962#Cancer# +4963#Taurus# +4964#Capricorn# +4965#Pisces# +4966#Scorpio# +4967#Leo# +4968#Virgo# +4969#Libra# +4970#Fire Property Reactor# +4971#Water Property Reactor# +4972#Earth Property Reactor# +4973#Wind Property Reactor# +4974#Fire Resistance Reactor# +4975#Water Resistance Reactor# +4976#Earth Resistance Reactor# +4977#Wind Resistance Reactor# +4978#Recovery Reactor 101# +4979#Recovery Reactor 102# +4980#Recovery Reactor 201# +4981#Recovery Reactor 202# +4982#Supportive Reactor STR# +4983#Supportive Reactor INT# +4984#Supportive Reactor DEF# +4985#Supportive Reactor Perfect# +4986#Supportive Reactor Attack# +4987#Supportive Reactor Magic# +4988#Supportive Reactor MaxHP# +4989#Supportive Reactor MaxSP# +4990#Supportive Reactor Frozen# +4991#Supportive Reactor ASPD# +4992#HP Absorb 1# +4993#SP Absorb 1# +4994#Neev of STR Lv1# +4995#Neev of STR Lv2# +4996#Neev of STR Lv3# +4997#Neev of AGI Lv1# +4998#Neev of AGI Lv2# +4999#Neev of AGI Lv3# +5001#Headset# +5002#Jewel Crown# +5003#Joker Jester# +5004#Oxygen Mask# +5005#Gas Mask# +5006#Machoman's Glasses# +5007#Grand Circlet# +5008#Puppy Love# +5009#Safety Helmet# +5010#Indian Fillet# +5011#Antenna# +5012#Ph.D Hat# +5013#Lord Kaho's Horn# +5014#Fin Helm# +5015#Egg Shell# +5016#Boy's Cap# +5017#Bone Helm# +5018#Feather Bonnet# +5019#Corsair# +5020#Kafra Headband# +5021#Bankruptcy of Heart# +5022#Hat of the Sun God# +5023#Parcel Hat# +5024#Cake Hat# +5025#Helm of Angel# +5026#Chef Hat# +5027#Mage Hat# +5028#Candle# +5029#Spore Hat# +5030#Panda Hat# +5031#Mine Helmet# +5032#Sunday Hat# +5033#Raccoon Hat# +5034#Bulb Headband# +5035#Poring Hat# +5036#Cross Hat# +5037#Fruit Peel# +5038#Deviruchi Hat# +5039#Rainbow Eggshell# +5040#Blush# +5041#Heart Hairpin# +5042#Bao Bao# +5043#Opera Phantom Mask# +5044#Devil Wings# +5045#Magician Hat# +5046#Bongun Hat# +5047#Fashionable Glasses# +5048#Cresent Hairpin# +5049#Striped Hairband# +5050#Mysterious Fruit Peel# +5051#Pussy Cat Bell# +5052#Blue Hairband# +5053#Sphinx Hat# +5054#Assassin Mask# +5055#Novice False Eggshell# +5056#Fruit of Love# +5057#Black Cat Ears# +5058#Drooping Cat# +5059#Teddybear Hat# +5060#Party Hat# +5061#Flower Hairpin# +5062#Straw Hat# +5063#Bandage# +5064#Smokie Leaf# +5065#Blue Fish# +5066#Succubus Horn# +5067#Sombrero# +5068#Evil Wing Ears# +5069#Kitsune Mask# +5070#Hot-blooded Headband# +5071#Indian Headband# +5072#Incubus Horn# +5073#Model Training Hat# +5074#Angel Wing Ears# +5075#Cowboy Hat# +5076#Beanie# +5077#Tulip Hairpin# +5078#Sea-Otter Hat# +5079#X Hairpin# +5080#Crown of Ancient Queen# +5081#Crown of Mistress# +5082#Decorative Mushroom# +5083#Red Ribbon# +5084#Lazy Smokie# +5085#Small Ribbons# +5086#Alarm Mask# +5087#Poker Face# +5088#Surprised Mask# +5089#Annoyed Mask# +5090#Goblin Leader Mask# +5091#Decorative Golden Bell# +5092#Coif# +5093#Coif# +5094#Helmet of Orc Hero# +5095#Helmet of Orc Hero# +5096#Assassin Mask# +5097#Holiday Hat# +5098#Tiger Mask# +5099#Neko Mimi# +5100#Sales Banner# +5101#Takius Blindfold# +5102#Blank Eyes# +5103#Sunflower Hairpin# +5104#Dark Blinder# +5105#Costume Cake Hat# +5106#G10 Anniversary Hat# +5107#Crunch Toast# +5108#Renown Detective's Cap# +5109#Red Bonnet# +5110#Baby Pacifier# +5111#Galapago Cap# +5112#Super Novice Hat# +5113#Angry Snarl# +5114#Bucket Hat# +5115#Winter Hat# +5116#Banana Hat# +5117#Mystic Rose# +5118#Puppy Headband# +5119#Super Novice Hat# +5120#Bucket Hat# +5121#Zealotus Mask# +5122#Magni's Cap# +5123#Ulle's Cap# +5124#Fricca's Circlet# +5125#Angel's Kiss# +5126#Morpheus's Bandana# +5127#Morrigan's Helm# +5128#Goibne's Helm# +5129#Bird Nest# +5130#Lion Mask# +5131#Close Helmet# +5132#Angelring Hat# +5133#Sheep Hat# +5134#Pumpkin-Head# +5135#Cyclop's Eye# +5136#Antonio's Santa Hat# +5137#Alice Doll# +5138#Magic Eyes# +5139#Hibiscus# +5140#Charming Ribbon# +5141#Marionette Doll# +5142#Crescent Helm# +5143#Kabuki Mask# +5144#Gambler Hat# +5145#Carnival Joker Jester# +5146#Elephant Hat# +5147#Baseball Cap# +5148#Phrygian Cap# +5149#Silver Tiara# +5150#Joker Jester# +5151#Note Headphone# +5152#Chinese Crown# +5153#Angelring Hairpin# +5154#Papa Sunglasses# +5155#Papa Beard# +5156#Papa Mask# +5157#Orc Helm# +5158#Monk Hat# +5159#Golden Gear# +5160#Majestic Goat# +5161#Spiky Band# +5162#Bone Helm# +5163#Corsair# +5164#Tiara# +5165#Crown# +5166#Sphinx Hat# +5167#Munak Hat# +5168#Bongun Hat# +5169#Bride Mask# +5170#Feather Beret# +5171#Valkyrie Helm# +5172#Beret# +5173#Magistrate Hat# +5174#Ayam# +5175#Censor Bar# +5176#Hahoe Mask# +5177#Mythical Lion Mask# +5178#Candle# +5179#Golden Tiara# +5180#Holiday Hat# +5181#Helm of Darkness# +5182#Puppy Hat# +5183#Bird Nest Hat# +5184#Captain's Hat# +5185#Laurel Wreath# +5186#Geographer Band# +5187#Twin Red Ribbon# +5188#Wandering Minstrel Hat# +5189#Autumn Leaves# +5190#Independence Memorial Hat# +5191#Black Ribbon# +5192#Yellow Ribbon# +5193#Green Ribbon# +5194#Pink Ribbon# +5195#Red Ribbon# +5196#Orange Ribbon# +5197#White Ribbon# +5198#Evolved Drooping Bunny# +5199#Baseball Cap# +5200#Coppola# +5201#Party Hat# +5202#Fantastic Pumpkin-Head# +5203#Smiling Mask# +5204#Rudolph's Nose# +5205#Emperor's Laurel Crown# +5206#Romantic White Flower# +5207#Angel Blessing# +5208#Rideword Hat# +5209#Yellow Baseball Cap# +5210#Flapping Angel Wings# +5211#Dress Hat# +5212#Satellite Hairband# +5213#Black Bunny Band# +5214#Moonlight Flower Hat# +5215#Evolved Angel Wings# +5216#Evolved Evil Wings# +5217#Evolved Majestic Goat# +5218#Evolved Bunny Band# +5219#Evolved Drooping Kitty# +5220#Evolved Pipe# +5221#Evolved Pair of Red Ribbon# +5222#Evolved Blue Fish# +5223#Evolved Big Golden Bell# +5224#Evolved Orc Hero Helm# +5225#Holy Marcher Hat# +5226#Mini Propeller# +5227#Red Deviruchi Hat# +5228#Gray Deviruchi Hat# +5229#Brown Deviruchi Hat# +5230#Gray Drooping Kitty# +5231#Brown Drooping Kitty# +5232#Pink Drooping Kitty# +5233#Blue Drooping Kitty# +5234#Yellow Drooping Kitty# +5235#Brown Beanie# +5236#Blue Beanie# +5237#Pink Beanie# +5238#Red Mage Hat# +5239#Gray Magician Hat# +5240#Brown Magician Hat# +5241#Blue Magician Hat# +5242#Yellow Magician Hat# +5243#Shafka# +5244#Elven Blindfold# +5245#Elven Sunglasses# +5246#Angelic Helm# +5247#Satanic Helm# +5248#Robotic Blindfold# +5249#Human Blindfold# +5250#Robotic Ears# +5251#Round Ears# +5252#Drooping Ninetail# +5253#Lif Doll Hat# +5254#Devilring Hat# +5255#Triple Poring Hat# +5256#Valkyrie Feather Band# +5257#Soulless Ring# +5258#Afro Wig# +5259#Elephant Hat# +5260#Cookie Hat# +5261#Silver Tiara# +5262#Golden Tiara# +5263#Pagdayaw# +5264#Australian Flag Hat# +5265#Apple of Archer# +5266#Bunny Band# +5267#Sakkat# +5268#Grand Circlet# +5269#Flapping Angel Wings# +5270#Autumn Leaves# +5271#Phoenix Crown# +5272#Tongue Mask# +5273#Happy Wig# +5274#Shiny Wig# +5275#Marvelous Wig# +5276#Fantastic Wig# +5277#Yellow Bandana# +5278#Yellow Ribbon# +5279#Refined Drooping Cat# +5280#Majestic Goat# +5281#Refined Deviruchi Hat# +5282#Baseball Cap# +5283#Chick Hat# +5284#Water Lily Crown# +5285#Vane Hairpin# +5286#Pecopeco Hairband# +5287#Vacation Hat# +5288#Red Glasses# +5289#Vanilmirth Hat# +5290#Drooping Bunny# +5291#Kettle Hat# +5292#Dragon Skull# +5293#Ramen Hat# +5294#Whisper Mask# +5295#Golden Bandana# +5296#Drooping Nine Tail# +5297#Soul Wing# +5298#Dokkaebi's Wig# +5299#Pagdayaw# +5300#Bullock Helm# +5301#Victory Hairband# +5302#Water Lily Hat# +5303#Flower Crown# +5304#Cap of Blindness# +5305#Pirate Dagger# +5306#Freya Crown# +5307#Tropical Fruit Hat# +5308#Brazilian Flag Hat# +5309#Mohawk Mask# +5310#Shining Electric Bulb Hairband# +5311#Large Hisbiscus# +5312#Ayothaya King's Hat# +5313#Diadem# +5314#Hockey Mask# +5315#Observer# +5316#Umbrella Hat# +5317#Fisherman Hat# +5318#Poring Party Hat# +5319#Arc Angeling Hat# +5320#Champion Wreath# +5321#Indonesian Bandana# +5322#Scarf# +5323#Mistress Crown# +5324#Little Angel Doll# +5325#Robo Eye# +5326#Masquerade C# +5327#Refined Helmet of Orc Hero# +5328#Costume Evil Wing Ears# +5329#Costume: Dark Blindfold# +5330#Drooping Kitty# +5331#Corsair# +5332#Loki Mask# +5333#Radio Antenna# +5334#Flapping Angelring# +5335#Jumping Poring# +5336#Guildsman Recruiter Hat# +5337#Party Recruiter Hat# +5338#Battlefield Recruiter Hat# +5339#Friend Recruiter Hat# +5340#Defolty Doll Hat# +5341#Glaris Doll Hat# +5342#Sorin Doll Hat# +5343#Telling Doll Hat# +5344#Bennit Doll Hat# +5345#W Doll Hat# +5346#Gf Recruiter Hat# +5347#Ph.D Hat# +5348#Big Ribbon# +5349#Boy's Cap# +5350#Pirate Bandana# +5351#Sunflower# +5352#Poporing Hat# +5353#Hat of The Sun God# +5354#Songkok# +5355#Selendang# +5356#Festival Pumpkin Hat# +5357#Wings of Victory# +5358#Peco Ears# +5359#Captain's Hat# +5360#Whikebain's Black Cat Ears# +5361#Gangster Scarf# +5362#Ninja Scroll# +5363#Abysmal Knight Helm# +5364#Evil Snake Lord Hat# +5365#Magnolia Hat# +5366#King's Hat# +5367#Yao Jun Hat# +5368#Wings of Light# +5369#Wings of Darkness# +5370#Orchid Hairband# +5371#Judge Hat# +5372#Koneko Hat# +5373#Dark Randgris Helm# +5374#Gigantic Majestic Goat# +5375#Large Orc Hero Helm# +5376#Flying Evil Wings# +5377#Gentleman's Pipe# +5378#Bunny Ears Hat# +5379#Balloon Hat# +5380#Fish Head Hat# +5381#Santa Poring Hat# +5382#Bell Ribbon# +5383#Hunting Cap# +5384#Twin Pom Santa Hat# +5385#Yoyo Hat# +5386#New Year's Hat# +5387#Neko Mimi Kafra# +5388#Snake Head# +5389#Angel Spirit# +5390#Twin Pom Blue Santa Hat# +5391#Toast# +5392#Louyang NewYear Hat# +5393#Valentine Hat# +5394#Chewing Gum# +5395#Tiraya Bonnet# +5396#Jasper Crest# +5397#Scuba Mask# +5398#Bone Head# +5399#Mandragora Cap# +5400#Fox Hat# +5401#Black Frame Glasses# +5402#Mischievous Fairy# +5403#Fish In Mouth# +5404#Blue Ribbon# +5405#Filir Hat# +5406#Academy Freshman Hat# +5407#Academy Completion Hat# +5408#Old Bandana# +5409#Purple Cowboy Hat# +5410#Brown Paperbag Hat# +5411#White Snake Hat# +5412#Lollipop# +5413#Popcorn Hat# +5414#Campfire Hat# +5415#Poring Cake Hat# +5416#Beer Cap# +5417#Crown Parrot# +5418#Soldier Hat# +5419#Unidentified Mask# +5420#Mask of Ifrit# +5421#Ifrit's Ears# +5422#Linguistic Book Hat# +5423#I LOVE CHINA# +5424#Fanta Orange Can Hat# +5425#Fanta Grape Can Hat# +5426#Karada Meguricha Hat# +5427#Black Tea Kochakaden Hat# +5428#RWC Anniversary Bread Envelope# +5429#Dokkaebi Hat# +5430#Flame Crown# +5431#Chicken Hat# +5432#bRO 4th Anniversary Hat# +5433#Golden Wreath# +5434#Coca-Cola Can# +5435#Red Sombrero Hat# +5436#Bride's Corolla# +5437#Fairy Flower# +5438#Cute Green Ribbon# +5439#Cute Red Ribbon# +5440#Cute Blue Ribbon# +5441#Cute White Ribbon# +5442#Necktie# +5443#Statue of Baby Angel# +5444#Hair Brush# +5445#Candy Cane In Mouth# +5446#Catfoot Hairpin# +5447#Frog Hat# +5448#Indifferent Solo Hat# +5449#Angry Solo Hat# +5450#Solar Hat# +5451#Gold Dragon Helm# +5452#Silver Dragon Helm# +5453#Copper Dragon Helm# +5454#Puppy Hat# +5455#Decorative Geographer# +5456#Summer Hat# +5457#Moon Rabbit Hat# +5458#Pinwheel Cap# +5459#Drooping Bunny# +5460#Evolved Dragon Skull Hat# +5461#Evolved Whisper Mask# +5462#Spiked Scarf# +5463#Rainbow Scarf# +5464#Zaha Doll Hat# +5465#Hat of Fortune# +5466#Wind's Guide# +5467#Dragon Helm# +5468#Parade Hat# +5469#Musketeer Hat# +5470#Darkness Eyes# +5471#Reginrev's Wings# +5472#Red White Cap# +5473#Crab Nipper Hat# +5474#AFK Hat# +5475#Gozarian Mask# +5476#Grand Peco Headdress# +5477#Brazilian Flag Hat# +5478#Classic Hat# +5479#Shaman's Hair Ornament# +5480#Bijofnil Wings# +5481#Hermode Cap# +5482#Dark Knight Mask# +5483#Odin Mask# +5484#Holidays Hat# +5485#Tiger Face# +5486#Anniversary Hat# +5487#Poring Cake Hat# +5488#Twin Pom Santa Hat# +5489#Love Daddy Hat# +5490#Anubis Helm# +5491#Bandit Hat# +5492#Student Cap# +5493#Ulle's Cap# +5494#Sphinx Hat# +5495#Power of Thor# +5496#Dice Hat# +5497#King Tiger Doll Hat# +5498#Vagabond Wolf King Helmet# +5499#Pizza Hat# +5500#Ice Cream Hat# +5501#Pirate's Pride# +5502#Necromancer's Hood# +5503#Rabbit Magic Hat# +5504#RO 5th Wedding Anniversary# +5505#Ashura Fairy Hat# +5506#Blue Pajamas Hat# +5507#Pink Pajamas Hat# +5508#Shark Hat# +5509#Sting Hat# +5510#Shower Cap# +5511#Samambaia# +5512#Aquarius Diadem# +5513#Aquarius Crown# +5514#Pisces Diadem# +5515#Pisces Crown# +5516#Hawk Eyes# +5517#Hawk Eyes# +5518#Gigantic Majestic Goat# +5519#Peacock Feather# +5520#Rabbit Earmuffs# +5521#Costume: Angry Snarl# +5522#Fanta Zero Lemon Hat# +5523#Sakura Mist Hat# +5524#Sakura Milk Tea Hat# +5525#First Leaf Tea Hat# +5526#Lady Tanee Doll# +5527#Lunatic Hat# +5528#Frog Prince Hat# +5529#Devil's Bone Helm# +5530#Raven Cap# +5531#Baby Dragon Hat# +5532#Pirate Dagger# +5533#Emperor Wreath# +5534#Fox Hat# +5535#Side Cap# +5536#Spare Card# +5537#Coati Hat# +5538#Tucan Hat# +5539#Jaguar Hat# +5540#Freya's Spiritual Circlet# +5541#Freya's Spiritual Circlet# +5542#Freya's Spiritual Circlet# +5543#Freya's Spiritual Circlet# +5544#Time Keeper Hat# +5545#Aries Diadem# +5546#Aries Crown# +5547#RJC Flower Hairband# +5548#Scarlet Rose# +5549#Taurus Diadem# +5550#Taurus Crown# +5551#Sacreg Egg Hat# +5552#Festival Grand Circlet# +5553#Festival Bunny Band# +5554#Octopus Hat# +5555#Leaf Cat Hat# +5556#Fur Seal Hat# +5557#Wild Rose Hat# +5558#Luxury Hat# +5559#Pure White Cloth# +5560#Horned Helm# +5561#Rabbit Magic Hat# +5562#Love of Truth# +5563#Dolor Hat# +5564#Crown of Deceit# +5565#Unidentified Mask# +5566#Tiger Arhet Mask# +5567#Sinulog Hat# +5568#Rabbit Bonnet# +5569#Gemini Diadem# +5570#Gemini Crown# +5571#Rasta Wig# +5572#Savage Babe Hat# +5573#Dokkaebi Horn# +5574#Well-Chewed Pencil# +5575#Rice Ball Hat# +5576#Unidentified Mask# +5577#Dark Knight Mask# +5578#Voyage Hat# +5579#Wanderer's Sakkat# +5580#Red Beret# +5581#Cancer Diadem# +5582#Cancer Crown# +5583#[Event] Genesis Hat I# +5584#Majestic Devil Horns# +5585#Rune Hairband# +5586#Mosquito Coil# +5587#Mosquito Coil For 1 Use# +5588#Leo Crown# +5589#Leo Diadem# +5590#Poring Cake Hat# +5591#Desert Prince# +5592#Sigrun's Wings# +5593#Rabbit Bonnet# +5594#Donut In Mouth# +5595#Eye of Juno# +5596#Four Leaf Clover in Mouth# +5597#Bubble Gum in Mouth# +5598#Virgo Crown# +5599#Virgo Diadem# +5600#Brazil Twin Ribbon# +5601#Banana Beret# +5602#Jaguar Face# +5603#RWC Statue(Winner)# +5604#RWC Statue(2nd)# +5605#RWC Statue(3rd)# +5606#Compu Me Helm# +5607#Lyria Doll Hat# +5608#Dorothy Doll Hat# +5609#Qing Headdress# +5610#Ice Ear Wing# +5611#Turtle Hat# +5612#Blue Drooping Cat# +5613#Flapping Angel Wings# +5614#Evolved Pipe# +5615#Evolved Pair of Red Ribbon# +5616#Evolved Blue Fish# +5617#Hibiscus# +5618#Neko Mimi# +5619#Evolved Bunny Band# +5620#Evolved Majestic Goat# +5621#Sheep Hat# +5622#Mini Propeller# +5623#Alice Doll# +5624#Red Glasses# +5625#Chick Hat# +5626#Gray Deviruchi Hat# +5627#Vane Hairpin# +5628#Pecopeco Hairband# +5629#Vacation Hat# +5630#Charming Ribbon# +5631#Water Lily Crown# +5632#Vanilmirth Hat# +5633#Drooping Bunny# +5634#Kettle Hat# +5635#Dragon Skull# +5636#Ramen Hat# +5637#Pink Beanie# +5638#Puppy Hat# +5639#Magic Eyes# +5640#Jumping Poring# +5641#Robo Eye# +5642#Yellow Magician Hat# +5643#Crescent Helm# +5644#Tiger Mask# +5645#Fantastic Wig# +5646#Whisper Mask# +5647#Bunny Band# +5648#Centimental Flower# +5649#Apple of Archer# +5650#Elven Ears# +5651#Rental Brooch# +5652#Majestic Goat# +5653#Darkness Helm# +5654#Red Marching Hat# +5655#Dark Snake Lord Hat# +5656#Scooter Helm# +5657#Peace Pipe# +5658#Imp Hat# +5659#Sleeper Hat# +5660#Gryphon Hat# +5661#Red Pirate Bandana# +5662#Libra Crown# +5663#Libra Diadem# +5664#Filir's Pinions# +5665#Shaman Hat# +5666#Crown Cap# +5667#Skull Hood# +5668#Mysterious Pumpkin Hat# +5669#Poring Party Hat# +5670#Anniversary Thief Hat# +5671#Drooping Incarnation of Morocc# +5672#Southern Cross# +5673#Hometown Sakura# +5674#Piggie Bank# +5675#Poring Letter# +5676#Scorpio Crown# +5677#Scorpio Diadem# +5678#Musical Note Headband# +5679#Engineer Cap# +5680#Hawk Eye# +5681#Green Ribbon# +5682#Triangle Rune Cap# +5683#Majestic Goat Model# +5684#Jewel Crown# +5685#Knight's Army Cap# +5686#Feather Bonnet# +5687#Orc Helm# +5688#2009 Love Dad# +5689#Queen Ants Crown# +5690#Red Wing Hat# +5691#Sailor's Bandana# +5692#Sea Cat Hat# +5693#NoFear Underwear# +5694#NoFear Headband# +5737#Cactus Hat# +5738#Snowman Hat# +5739#Sagittarius Crown# +5740#Sagittarius Diadem# +5741#Eternal Egg Skin Hat# +5742#Rudolf Santa Hat# +5743#Orange Hat# +5744#Capricorn Crown# +5745#Capricorn Diadem# +5746#Rune Circlet# +5747#Mitra# +5748#Sniper Goggle# +5749#Driver Band# +5750#Shadow Handicraft# +5751#Minstrel Song's Hat# +5752#Midas Whisper# +5753#Magic Stone Hat# +5754#Blazing Soul# +5755#Silent Executor# +5756#Wind Whisper# +5757#Dip Schmidt Helm# +5758#Dying Swan# +5759#Noah's Hat# +5760#Driver Band# +5761#Sloth Hat# +5762#Duneyrr Hat# +5763#Red Bunny Band# +5764#Love Rabbit Hood# +5765#Pitch Black Ribbon# +5766#Amistr Cap# +5767#Samurai Mask# +5768#Sakura Coronet# +5769#Golden Statue of Angel# +5770#Splash Hat# +5771#Family Hat# +5772#Blood Admiral's Hat# +5773#Navy Blue Beret# +5774#Scallywag's Hat# +5775#Chocolate Donut# +5776#Blazin Sun# +5777#Remover Hat# +5778#Blue Arara Hat# +5779#Drooping Boto# +5780#Tendrilion Hat# +5781#Persica# +5782#Legionaire Helm# +5783#Yellow Bunny Band# +5784#Pink Bunny Band# +5785#Green Bunny Band# +5786#Unidentified Ribbon# +5788#3D Glasses# +5789#Thanatos Odium Mask# +5790#Mother's Kindness# +5791#Tenkaippin Ramen# +5792#Fish Pin# +5793#Unidentified Ribbon# +5794#Unidentified Ribbon# +5795#Red Dress Hat# +5796#Unidentified Mask# +5797#Unidentified Mask# +5798#Unidentified Mask# +5799#Unidentified Mask# +5800#Blush of Groom# +5801#Ribbon Of Bride# +5802#Upgrade Elephant Hat# +5803#Love Flower Hat# +5804#Pirate Eye Bandage# +5805#Victorious Coronet# +5806#Poet Natalia's Hat# +5807#Octoberfest Cap# +5808#Dark Basilium# +5809#Boom Boom Hat# +5810#Ph.D Hat# +5811#Santa's Beard# +5812#Hat of Water Expert# +5813#Red Ph.D Hat# +5814#2011 Pagdayaw# +5815#Classic Hat# +5816#Purple Cowboy Hat# +5817#Valentine Token# +5818#Carnival Hat# +5819#Carnival Circlet# +5820#Unidentified Ribbon# +5821#Golden Tulip Hairpin# +5822#Love Chick Hat# +5823#Unidentified Ribbon# +5824#April Fool's Hat# +5825#Unidentified Accessory# +5826#Valkyrie Helm# +5827#Book Hat# +5828#Unidentified Accessory# +5829#Ordinary Armor# +5830#Siege Sakkat# +5831#Siege Big Ribbon# +5832#Siege Vane Hairpin# +5833#Siege Picnic Hat# +5834#Siege Crown# +5835#Siege Tiara# +5836#Siege Boy's Cap# +5837#Unidentified Glasses# +5838#Unidentified Helmet# +5839#Unidentified Ribbon# +5840#Unidentified Ribbon# +5841#Shaman Hat# +5845#Buzzy BOL Board# +5846#Unidentified Mask# +5847#Fools Day Hat# +5848#Bandit Disguise# +5849#Doctor Hairband# +5850#Golden Savage Hat# +5851#Crown of Summer# +5852#Easter Egg Shell# +5855#Fish Rod# +5856#World Cup Hat of Passion# +5857#World Cup Hat of Fight# +5858#World Cup Hat of Victory# +5859#World Cup Hat of Honor# +5860#Siege Army Cap# +5861#Siege Kafra Band# +5862#Siege Sweet Gent# +5863#Siege Zoro Mask# +5864#Unidentified Hairband# +5865#Unidentified Ribbon# +5866#Crimson Cherry Blossom# +5867#Sleeping Cat# +5868#Unidentified Ribbon# +5869#Mimic Egg Shell# +5870#Bunny Egg Shell# +5871#Picky Egg Shell# +5872#Carnation Wreath# +5873#Helmet of Siegfried# +5874#Circlet of Kriemhild# +5875#Diadem of Brynhild# +5876#Star-Spangled Bandana# +5877#Merica Hat# +5878#Miracle Blue Rose# +5879#Poring Sunglasses J# +5880#Cheering Whistle J# +5881#Weissbier Hat# +5888#Wedding Veil# +5889#Large Orc Hero Helm# +5890#Unidentified Hat# +5891#Black Cat Hat# +5896#Tart Hat# +5897#Ascendant Crown# +5898#Autumn Headband# +5899#Black Ribbon# +5900#Divine Guard Hat# +5901#Focus Beret# +5902#Harvester Hat# +5903#Deadman Bandana# +5904#Inconspicuous Hat# +5905#Lyrica Hat# +5906#Oni Horns# +5907#Sea Captain Hat# +5908#Magician Decoration# +5909#Costume Valkyrie Circlet# +5910#Male Poring Earrings# +5911#Unidentified Hairband# +5912#Costume Servant Deviling# +5913#Unidentified Mask# +5914#Unidentified Ribbon# +5915#Costume Angel Veil# +5916#Exorcist Glasses# +5917#Yellow Scarf# +5918#Gambler's Seal# +5919#Camellia Hairpin# +5920#Medical Boots# +5921#Monster Fish Gills# +5924#Dragon Knight Eye Patch# +5925#Flower Poring Hat# +5926#Unidentified Ribbon# +5927#Unidentified Ribbon# +5928#Unidentified Ribbon# +5929#Unidentified Ribbon# +5930#Magical Feather# +5931#Nifleheim Bunny Hat# +5932#Bird Cage of Paradise# +5933#Crow Tengu Mask# +5934#Unidentified Ribbon# +5935#Unidentified Mask# +5936#Unidentified Ribbon# +5937#Flight Hat# +5938#Octopus Hat# +5940#Boitata Hat# +5941#Joystick Hat# +5942#Lovegame Hat# +5943#Silk Hat of Owl Viscount# +5944#Thief Bandana# +5945#Well-Chewed Pencil (Red)# +5946#Wind-Up Key# +5947#Modified Rabbit Ears Eggshell Hat# +5948#Loki Assassin Mask# +5949#Bra Hat# +5950#Rental Ignis Cap# +5951#Rental Evil Snake Lord's Hat# +5952#Rental Captain's Hat# +5953#Rental Benevolent Guardian# +5954#Rental Crown of Aura Quartz# +5955#Rental Chick Hat# +5956#Rental Magic Eyes# +5957#Rental Rose Casque# +5958#Rental Rabbit Ears Knit Cap# +5959#Unidentified Hat# +5960#Rental Amistr Cap# +5961#Rental Moonlight Flower Hat# +5963#Wing Headphone# +5965#Riot Chip# +5966#Kardui Ear# +5967#Flying Galapago# +5968#Divine Angel Nurse Cap# +5969#Queen Anne's Revenge# +5970#Rune Helm# +5971#Moon Eyepatch# +5972#Chatty Parrot# +5973#Ancient Elven Ear# +5974#Unicorn Helm# +5975#Stahl Von Kaiser 61 II# +5976#Gift of Izlude# +5977#Unidentified Mask# +5978#Toy Syringe# +5979#Unidentified Ribbon# +5980#Costume Classical Feather Hat# +5981#Costume Flapping Devil Wings# +5982#Unidentified Mask# +5983#Unidentified Mask# +5985#Unidentified Mask# +5986#Wickebine's Black Cat Ears# +5987#Unidentified Helmet# +5988#Unidentified Hat# +5989#Unidentified Hat# +5990#Unidentified Hat# +5991#Unidentified Hat# +5992#Unidentified Mask# +5993#Unidentified Hat# +5994#Unidentified Hat# +5995#Unidentified Hat# +5996#Unidentified Hat# +5997#Unidentified Hat# +5998#Unidentified Helmet# +5999#Unidentified Hat# +6000#Ashes of Darkness# +6001#Essence of Fire# +6002#Token of Apostle# +6003#Pendant of Spirit# +6004#Cursed Baphomet Doll# +6005#NewYear Ricecake# +6006#Delivery Ricecake Box# +6007#Octopus Rice Cake Soup# +6008#Wood# +6009#Big Fan of Magic# +6010#Hoe# +6011#Blue B Card# +6012#Blue C Card# +6013#Blue J Card# +6015#Blue M Card# +6016#Blue Q Card# +6017#Blue T Card# +6018#Blue V Card# +6019#Blue Z Card# +6020#Fur# +6021#Peaked Hat# +6022#Hard Skin# +6023#Mystic Horn# +6024#17Carat Diamond# +6025#Towel of Memory# +6026#Written Oath of Marriage# +6027#Crystal of Feardom# +6028#Sealed Scroll# +6029#Morocc Tracing Log# +6030#Glittering Paper# +6031#Glittering Paper# +6032#Horn of Hillslion# +6033#Horn of Tendrilion# +6034#Weird Part# +6035#Decaying Stem# +6036#Meeting Invitation# +6037#Messy File# +6038#Neat Report# +6039#Piece of Fish# +6040#Part of a Report# +6041#Strong Vine# +6042#Ordinary Branch# +6043#Letter from Lugen# +6044#Letter from Otto# +6045#Supply Box# +6046#Clothing Dye Coupon# +6047#Original Clothing Dye Coupon# +6048#Unidentified Mineral# +6049#Marlin# +6050#Mercenary Contract# +6051#Gray Hollow# +6052#Ornament Hairpin# +6053#Circle Step# +6054#Number 6 Card# +6055#Character Week Card# +6056#Character Year Card# +6057#Character Lee Card# +6058#Character Ben Card# +6059#Character Project Card# +6060#Moon Viewing Ticket# +6061#Invitation Letter# +6062#Letter Moon Cake# +6063#Letter Moon Cake# +6064#Letter Moon Cake# +6065#Letter Moon Cake# +6066#Letter Moon Cake# +6067#Letter Moon Cake# +6068#Leather Rabbit# +6070#Shaman's Document# +6071#Broken Sword# +6072#Bijofnil Feather# +6073#Dragon's Mane# +6074#Bazett's Order# +6075#Crystalized Teardrop# +6076#Portable Toolbox# +6077#Rough Mineral# +6078#Stone Fragment# +6079#Flower of Alfheim# +6080#Manuk Coin# +6081#Splendide Coin# +6082#Spirit of Alfheim# +6083#Doll Capsule# +6084#Bradium Fragments# +6085#Shaggy Muffler# +6086#Withered Flower# +6087#Spiritual Crystal# +6088#Spiritual Crystal# +6089#Dark Piece# +6090#Refined Bradium# +6091#Dark Red Scale Piece# +6092#Piece of Singing Crystal# +6093#Draco's Egg# +6094#Traditional Cookie# +6095#Flavored Alcohol# +6096#Fish With Blue Back# +6097#Pumpkin Pie# +6098#Small Snow Flower# +6099#Grilled Rice Cake# +6100#Damp Darkness# +6101#Attendance Card# +6102#Report on Splendide# +6103#Report on Manuk# +6104#Big Scell# +6105#Morning Dew# +6106#Well Ripened Berry# +6107#Sunset on The Rock# +6108#Apple Pudding# +6109#Plant Neutrient# +6110#Vital Flower# +6111#Mystic Stone# +6112#Fresh Plant# +6113#Vital Flower# +6114#Flame Gemstone# +6115#Bun# +6116#Cute Pet Succubus Exchange Coupon# +6117#Cute Pet Imp Exchange Coupon# +6118#Cute Pet Green Maiden Exchange Coupon# +6119#Cow Leather# +6120#Face Paint# +6121#Makeover Brush# +6122#Paint Brush# +6123#Surface Paint# +6124#Wolf Flute# +6125#Lucky Box# +6126#Summer Happy Box# +6127#Purification Stone# +6128#Antidote# +6129#Cute Pet Nightmare Terror Exchange Coupon# +6130#Cute Pet Lori Ruri Exchange Coupon# +6131#Cute Pet Goblin Leader Exchange Coupon# +6132#Cute Pet Incubus Exchange Coupon# +6133#Cute Pet Miyabi Ningyo Exchange Coupon# +6134#Cute Pet Giant Whisper Exchange Coupon# +6135#Cute Pet Evil Nymph Exchange Coupon# +6136#Cute Pet Medusa Exchange Coupon# +6137#Cute Pet Stone Shooter Exchange Coupon# +6138#Cute Pet Marionette Exchange Coupon# +6139#Cute Pet Leaf Cat Exchange Coupon# +6140#Cute Pet Dullahan Exchange Coupon# +6141#Cute Pet Shinobi Exchange Coupon# +6142#Cute Pet Golem Exchange Coupon# +6143#Cute Pet Civil Servant Exchange Coupon# +6144#Regrettable Tears# +6145#Vulcan Bullet# +6146#Mado Gear Fuel# +6147#Liquid Condensed Bullet# +6148#Eternal Chocolate# +6149#Rustic Chocolate# +6150#Key of The Mansion# +6151#Large Bradium Fragment# +6152#Glittering Crystal# +6153#Special Exchange Coupon# +6154#Broken Horn Pipe# +6155#Member Card# +6156#A Report To Be Approved# +6157#Cute Pet Poring Exchange Coupon# +6158#Cute Pet Drops Exchange Coupon# +6159#Cute Pet Poporing Exchange Coupon# +6160#Cute Pet Lunatic Exchange Coupon# +6161#Cute Pet Picky Exchange Coupon# +6162#Cute Pet Pecopeco Exchange Coupon# +6163#Cute Pet Savage Babe Exchange Coupon# +6164#Cute Pet Spore Exchange Coupon# +6165#Cute Pet Poison Spore Exchange Coupon# +6166#Cute Pet Chonchon Exchange Coupon# +6167#Cute Pet Steel Chonchon Exchange Coupon# +6168#Cute Pet Petite Exchange Coupon# +6169#Cute Pet Deviruchi Exchange Coupon# +6170#Cute Pet Isis Exchange Coupon# +6171#Cute Pet Smokie Exchange Coupon# +6172#Cute Pet Dokkaebi Exchange Coupon# +6173#Cute Pet Baby Desert Wolf Exchange Coupon# +6174#Cute Pet Yoyo Exchange Coupon# +6175#Cute Pet Sohee Exchange Coupon# +6176#Cute Pet Rocker Exchange Coupon# +6177#Cute Pet Hunter Fly Exchange Coupon# +6178#Cute Pet Orc Warrior Exchange Coupon# +6179#Cute Pet Bapho Jr. Exchange Coupon# +6180#Cute Pet Munak Exchange Coupon# +6181#Cute Pet Bongun Exchange Coupon# +6182#Cute Pet Christmas Goblin Exchange Coupon# +6183#Cute Pet Rice Cake Exchange Coupon# +6184#Cute Pet Zherlthsh Exchange Coupon# +6185#Cute Pet Alice Exchange Coupon# +6186#Monkey Wrench# +6187#Blank Card# +6188#Slotting Advertisement# +6189#Old Spell Book(Fire Bolt)# +6190#Old Spell Book(Cold Bolt)# +6191#Old Spell Book(Lightning Bolt)# +6192#Old Spell Book(Storm Gust)# +6193#Old Spell Book(Lord of Vermilion)# +6194#Old Spell Book(Meteor Storm)# +6195#Old Spell Book(Comet)# +6196#Old Spell Book(Tetra Vortex)# +6197#Old Spell Book(Thunderstorm)# +6198#Old Spell Book(Jupitel Thunder)# +6199#Old Spell Book(Water Ball)# +6200#Spell Book(Heaven's Drive)# +6201#Old Spell Book(Earth Spike)# +6202#Old Spell Book(Earth Strain)# +6203#Old Spell Book(Chain Lightning)# +6204#Old Spell Book(Crimson Rock)# +6205#Old Spell Book(Drain Life)# +6206#I Love You# +6207#Thanks# +6208#Respect# +6209#Knight of Honor# +6210#Thorn Plant Seed# +6211#Blood Sucker Plant Seed# +6212#Bomb Mushroom Spore# +6213#Explosive Powder# +6214#Smoke Powder# +6215#Tear Gas# +6216#Oil Bottle# +6217#Mandragora Flowerpot# +6218#Dieshin's Delivery Box# +6219#Eden Group Token# +6220#Mysterious Dyestuff# +6221#Mystic Hydra Ball# +6222#Shining Beads# +6223#Carnium# +6224#Bradium# +6225#HD Carnium# +6226#HD Bradium# +6227#Magic Orc Stone# +6228#Safe to 9 Weapon Certificate# +6229#Safe to 8 Weapon Certificate# +6230#Safe to 7 Weapon Certificate# +6231#Safe to 6 Weapon Certificate# +6232#Safe to 9 Armor Certificate# +6233#Safe to 8 Armor Certificate# +6234#Safe to 7 Armor Certificate# +6235#Safe to 6 Armor Certificate# +6236#Blue 7 Card# +6237#Guarana Fruit# +6238#Safe to 11 Weapon Certificate# +6239#Safe to 11 Armor Certificate# +6240#HD Oridecon# +6241#HD Elunium# +6242#Midgard Coin# +6243#WPS Point Token# +6244#Gun Powder# +6245#Black Powder# +6246#Yellow Powder# +6247#White Powder# +6248#Chowder Jar# +6249#Savage Meat# +6250#Cooking Skewer# +6251#Black Charcoal# +6252#Blood of Wolf# +6253#Cold Ice# +6254#Beef Head# +6255#Large Cookpot# +6256#Ice Piece# +6257#Ice Crystal# +6258#Comodo Tropical Fruit# +6259#Drosera Tentacle# +6260#Petite's Tail# +6261#Fine Noodle# +6262#Cool Gravy# +6263#Coconut Fruit# +6264#Melon# +6265#Pineapple# +6266#Key of Deception# +6267#Key of Illusion# +6268#Key of Pleasure# +6269#Master's Brush# +6270#Picture of Maestro Song# +6271#Receipt# +6272#Seed For Experiemnt# +6273#Seed For Experiemnt# +6274#Saint's Clothing Piece# +6275#King's Shield# +6276#Clear Reagent# +6277#Red Reagent# +6278#Black Reagent# +6279#How To Make An Apple Bomb# +6280#How To Make A Pineapple Bomb# +6281#How To Make A Coconut Fruit Bomb# +6282#How To Make A Melon Bomb# +6283#How To Make A Banana Bomb# +6284#How To Grow Plant Genes# +6285#How To Make High Quality Potion# +6286#Gym Pass# +6287#Omni Clothing Dye# +6288#Summer Happy Box# +6289#Mysterious Dyestuff# +6290#Hairstyle Coupon# +6291#Enriched Elunium# +6292#Enriched Oridecon# +6293#Token of Siegfried# +6294#Marriage Covenant# +6295#Original Clothing Dye Coupon# +6296#Reservist Notice# +6297#Bottle Throw# +6298#Crushed Pumpkin# +6299#Worn Fabric Piece# +6300#Lottery Card# +6301#Spare Lottery Card# +6302#GM Max Bond# +6304#Sapha Certification# +6305#Frozen Piece of Skin# +6306#Clotted Bloodstain# +6307#Strange Magic Stone# +6308#Unknown Relic# +6316#[Event] Token of Siegfried# +6319#Small Bradium# +6320#Premium Reset Stone# +6321#Rake Horn Helm# +6322#Antler Helm# +6323#Twin Horn Helm# +6324#Single Horn Helm# +6325#White Spider Limb# +6326#Piece of Queen's Wing# +6327#(Limited)HD Bradium# +6328#January Calendar# +6329#February Calendar# +6330#March Calendar# +6331#April Calendar# +6332#May Calendar# +6333#June Calendar# +6334#July Calendar# +6335#August Calendar# +6336#September Calendar# +6337#October Calendar# +6338#November Calendar# +6339#December Calendar# +6340#Faded Music(Green)# +6341#Faded Music(Red)# +6342#Faded Music(Purple)# +6343#Faded Music(Blue)# +6344#Muscle Knights Summertime Guide# +6345#Love Lump# +6347#Paper Goodness# +6348#Paper Goodness# +6349#Paper Goodness# +6350#Paper Goodness# +6351#Paper Goodness# +6352#Paper Goodness# +6353#Paper Goodness# +6354#Paper Goodness# +6355#Paper Goodness# +6356#Paper Goodness# +6357#Fail Fortune Cookie# +6358#Free Coupon Cache# +6359#Coupon Guidebook# +6360#Scarlet Point# +6361#Indigo Point# +6362#Yellow Wish Point# +6363#Lime Green Point# +6364#GvG Coin# +6365#Arena Coin# +6366#Turbo Track Coin# +6367#Kafra Coin# +6368#Endless Coin# +6369#Amatsu Pearl (A)# +6370#Amatsu Pearl(Ma)# +6371#Amatsu Pearl (Tsu)# +6372#Amatsu Pearl (Large)# +6373#Amatsu Pearl (Spring)# +6374#Amatsu Pearl (Festival)# +6375#Amatsu Pearl (!)# +6376#KVM Badge# +6377#Bulk Buyer Shop License# +6378#Token of Victory War# +6379#Card Coin# +6380#Mora Coin# +6381#Field Shovel# +6382#Urn# +6383#Lope's Clue# +6384#Lope's Ring# +6385#Research Tool Bag# +6386#Bath Water Sample# +6387#Tooth Sample# +6388#Scale Sample# +6389#Sample of Puddle Research# +6390#Small Pocket# +6391#Splendid Supply Kit# +6392#Bradium Box# +6393#Round Feather# +6394#Golden Feather# +6395#Fairy's Magic Power# +6396#Spiritual Auger# +6397#GM Event Entry Ticket# +6398#Cat Hand Warehouse Promotional Flyer# +6399#Marketing Team Ticket# +6400#Crumpled Greeting Card# +6401#Palm Oils# +6402#Palm Oil Fruit# +6403#Comodo Leather# +6404#Keris Hilt# +6405#Cendrawasih Feather# +6406#Noble Sendrawash's Feather# +6407#Cryolite Fragment# +6408#Raw Crystal Stone# +6409#Raw Crystal Stone Mass# +6410#Kartu Lebaran# +6411#Ripe Watermelon# +6412#Special Medal# +6413#Heart of Pact# +6414#Laganta Card# +6415#Strange Embryo# +6416#Cute Pet Wanderman Exchange Coupon# +6417#Silvervine Fruit# +6418#A Class Coin# +6419#B Class Coin# +6420#C Class Coin# +6421#D Class Coin# +6422#E Class Coin# +6423#Seagod's Anger# +6424#Spirit Piece# +6425#Halloween Certificate# +6426#Poor Can# +6427#Poor Can Sack# +6428#Adventure Card A# +6429#Adventure Card B# +6430#Fragment of Picture# +6431#Bucket# +6432#Full Bucket# +6433#Cleaning Brush# +6434#Fixing Kit# +6435#Fresh Fruit# +6436#Seagod's Protection# +6437#Scaraba Perfume# +6438#Blessed Oridecon# +6439#Blessed Elunium# +6440#Ordinary Lubricant# +6441#Premium Lubricant# +6442#Octopus Hunting Stick# +6443#Silit Pong# +6444#Emperium G# +6446#Green Paper# +6447#Red Paper# +6448#White Paper# +6449#Casual Diary# +6450#Honest Diary# +6451#Unidentified Fish# +6452#Etoille's Ring# +6453#Undelivered Gift# +6454#Santa Bag# +6455#Taini Exchange Ticket# +6456#Safe to 5 Weapon Certificate# +6457#Safe to 5 Armor Certificate# +6458#Card Ibeu# +6459#God of Fortune Package# +6460#God of Fortune Box# +6461#Dream Come True# +6462#Good Luck# +6463#New Wonderland Legend# +6464#Hate Crate# +6465#Guardian Coin# +6469#Will of Warrior# +6470#Blood Thirst# +6471#Ghost Chill# +6472#HolyMom Blaze# +6473#Spring Bead(Bean Cherry Blossom)# +6474#Spring Bead(Clove Cherry Blossom)# +6475#Spring Bead(Cold Scarlet Cherry Blossom)# +6476#Spring Bead(Deep Mountain Cherry Blossom)# +6477#Spring Bead(Village Cherry Blossom)# +6478#Spring Bead(Mountain Cherry Blossom)# +6479#Spring Bead(Edo Higan)# +6480#Poring Silver# +6481#Sacred Rock Shard# +6482#Ancient City Key# +6483#Dream Scroll# +6484#Heroic Desocketing Book# +6485#Blue 2 Card# +6486#Blue 0 Card# +6487#Blue 1 Card# +6488#Thanks Invest Ticket# +6489#Cat Hand Investment Certificate# +6490#Piece of Magic Clay# +6491#Magic Clay# +6492#Lump of Magic Clay# +6493#Makibishi# +6494#Kafra Coin# +6495#Eden Merit Badge# +6496#Tikbalang's Thick Spine# +6497#Lesser Agimat# +6498#Jejellopy# +6499#Ancient Grudge# +6500#Sharpened Bamboo# +6501#Salt Bag# +6502#Silver Cross# +6503#Spiritual Protection# +6504#Cast-Iron Caldron# +6505#Purified Spirit Bone# +6506#Offering Bouquet# +6507#Evil Spirit Bone# +6508#Silver Bracelet# +6509#Mysterious Flower# +6510#Elegant Flower# +6511#Beautiful Flower# +6512#Fire Amulet# +6513#Ice Amulet# +6514#Wind Amulet# +6515#Earth Amulet# +6516#Bakonawa Doll# +6517#Bangungot Doll# +6518#Buwaya Doll# +6519#Collected Sample# +6520#Lost Belongings# +6521#King's Token# +6522#King's Token# +6523#Piece of Bakonawa's Spirit# +6524#Piece of Bangungot's Spirit# +6525#Piece of Buwaya's Spirit# +6526#Happy Word Card# +6527#Enjoy Word Card# +6528#Light Word Card# +6529#Middle Word Card# +6530#Autumn Word Card# +6531#King's Token# +6532#Honey Rice Cake# +6535#Piece of Red Fabric# +6536#Star Shape Decoration# +6537#Sky Tuesday# +6538#Blank Card# +6539#Old Left Lapine# +6540#Golden Leaf# +6541#Avant Research Data# +6542#Star Shape Mushroom# +6543#Level 110 Breakthrough Coin# +6544#Level 120 Breakthrough Coin# +6545#Firm Hair# +6546#Younger Bro Letter# +6547#Stained Research Book# +6548#Piece of Lapine Wing# +6549#Courtesy Ticket# +6550#Proof of Domovoei Breeder# +6552#Mail Package# +6553#Leaf Made Wood# +6554#Seed Box# +6555#Birthday Candle# +6556#Premium Headphone Exchange Coupon# +6557#Fancy Fairy Wing# +6558#Pile of Acorn# +6559#Eye Drops# +6560#Leaf Bookmark# +6561#Dustball# +6562#Tiny Mouse Tail# +6563#Weeds# +6564#Captive Hatchling# +6566#Fierce Cacao 99 Recipe# +6567#Chocolate Drink Recipe# +6568#Nipper Shrimp# +6569#Antenna of Shrimp# +6570#Opalescent Fabric# +6571#Large Buttons# +6572#Fragments of Pot Octopus# +6573#Deep Sea Water# +6574#Antenna Discharge# +6575#Numenume Liquid# +6576#Eyes of The Kraken# +6577#Head of The Kraken# +6578#Leg of The Kraken# +6579#Ancient Rope# +6580#Jormungand's Flower# +6581#Holy Amulet# +6582#Magical Watch# +6584#Safe to 12 Weapon Certificate# +6585#Safe to 12 Armor Certificate# +6586#Captured Book# +6587#Amatsu Bead (B)# +6588#Amatsu Pearl (A)# +6589#Fragments of Flame# +6590#Delivery Ticket# +6591#Wanderman Egg Coupon# +6592#Small Wooden Box# +6593#Criatura Hair Coupon# +6594#Magic Bronze Bullion# +6595#Velund's Hammer# +6596#Velund's Anvil# +6597#Velund's Bracelet# +6598#Jormungand's Rib# +6599#Spirit of Hugin# +6600#Spirit of Munin# +6601#Chisel of Giant# +6602#Secret of Rune# +6603#Skin of Hraesvelg# +6604#Essence of Rune# +6605#Muspellium# +6606#Cute Cart Remodel Coupon# +6607#Temporal Crystal# +6608#Coagulated Spell# +6609#Glast Decayed Nail# +6610#Glast Horrendous Mouth# +6611#Colorful Key# +6612#Gold Coin Basket# +6613#Colorful Brooch# +6614#Ancient Relic# +6615#Siege Guild Coin# +6616#Limited Manny Card# +6617#Limited Sid Card# +6618#Limited Diego Card# +6619#Limited Scrat Card# +6620#Powder of Maryokukai# +6621#Fragments of Maryokukai# +6622#Pearl of Maryokukai# +6623#Rough Energy Crystal# +6624#Purified Energy Crystal# +6625#High Energy Crystal# +6626#Genie Powder# +6627#Genie Lamp# +6628#Flash Light# +6629#Strange Lantern# +6630#Wish Box# +6635#Adamantine Blessing# +6636#STR Stone (Upper)# +6637#INT Stone (Upper)# +6638#AGI Stone (Upper)# +6639#DEX Stone (Upper)# +6640#VIT Stone (Upper)# +6641#LUK Stone (Upper)# +6642#ATK Stone (Middle)# +6643#MATK Stone (Middle)# +6644#HIT Stone (Lower)# +6645#FLEE Stone (Lower)# +6648#Old Crown# +6649#Broken Horn# +6650#Old Ring# +6651#Rusty Bracelet# +6652#Old Photo Album# +6653#Old Pill# +6654#Needle And Thread# +6655#Hard Pumpkin# +6656#Controlling Amulet# +6657#Jack Memories# +6658#Halloween Coin# +6665#RWC Initializer Ticket# +6668#Stolen Document# +6669#Emerald Leaf# +6670#Tree Log# +6671#Geffen Magic Tournament Coin# +6672#Gray Shard# +6673#Ticket to Bossnia# +6674#Beautiful Colorful Nipper# +6675#[HAPPY] Cake# +6676#[BIRTHDAY] Cake# +6677#[10TH] Cake# +6678#Philip's blood# +6679#Isabella's Blood# +6680#Magical Apple# +6681#XMAS Cookie# +6682#Bag of Selling Goods# +6683#Dried Flower# +6684#Heroic Token# +6685#Morocc Merit Certificate# +6686#Brick# +6687#Long Rope# +6688#Wood# +6689#Burning Bug Shell# +6690#Delicious Stem# +6691#Burning Feather# +6692#Patrol Journal# +6693#Blessed Stone# +6694#Monster's Blood# +6695#Tooth Rock of Fire Golem# +6696#Burning Frill# +6697#Costume Exchange Coupon# +6698#Hatchet# +6699#Divine Silence# +6700#White Snake Scale# +6701#Dwarf's Treasure# +6702#The Glands of Dwarf# +6703#Warrior's Tears# +6704#Warrior's Wrath# +6705#Warrior's Token# +6706#Guardian Flower# +6707#Jeremy Beauty Coupon# +6708#Mana Crystal# +6709#Crisp Silk# +6710#Bundled Snake# +6711#Valentine Egg# +6712#Love Wand# +6713#Soul of Ahat# +6714#Soul of Shnayim# +6715#Darklord Soulpiece# +6716#Critical Stone(Upper)# +6717#Stamina Stone(Mid)# +6718#Magical Stone(Lower)# +6719#Tooth of Jitterbug# +6720#Status Reset Book# +6721#Status Reset Book# +6722#Delicious Clam Flesh# +6723#Delicious Canned Food# +6724#Savage Box# +6725#Grand Peco Box# +6726#Desert Wolf Box# +6727#Arranged Photo Album# +6728#Scarlet Wing Key# +6729#Scarlet Key# +6730#Green Claw Key# +6731#Yellow Fang Key# +6732#Monster Coin# +6733#Tingly Feather# +6740#Recovery Stone (Upper)# +6741#Recovery Skill Stone (Upper)# +6742#Recovery Stone (Middle)# +6743#HP Stone (Middle)# +6744#SP Stone (Middle)# +6745#Recovery Stone (Lower)# +6746#Iron Workpiece# +6747#Iron Workpiece# +6748#Excavator Report# +6749#Power Control Device# +6750#Broken Engine# +6751#Dented Iron Plate# +6752#Charleston Component# +6753#Doom Token# +6754#Gathered Herb# +6755#Contaminated Magic# +6756#Enriched Energy# +6757#Memory Record# +6758#Proboscis Elephant Egg Exchange Voucher# +6759#Golden Ape Pet Egg Exchange Voucher# +6760#QQ Lion Pet Egg Exchange Voucher# +6761#Fat Rhino Pet Egg Exchange Voucher# +6762#Canned Banana# +6763#Spicy Rice Cake# +6764#Fort Hot Dog# +6765#Ferris Wheel Biscuit# +6766#Tickets Ice Kingdom# +6767#Summer Festival Coins# +6768#Shaved Ice For Red Beans# +6769#Sweet Bread# +6770#Shark# +6771#Tuna# +6772#Octopus# +6773#Snapper# +6774#Piranha# +6775#Salmon# +6776#Eel# +6777#Carp# +6778#Squid# +6779#Mackerel# +6780#Crucian Carp# +6781#Living Earthworm# +6782#Fresh Lobster# +6783#Bonbasu Ticket# +6784#Squid Skewer# +6785#Source of Fantasy# +6786#Squid Barbecue# +6787#Long Firewood# +6788#Rose Knife# +6789#Customized Plates# +6790#Large Stone (Upper)# +6791#Medium Stone (Upper)# +6792#Small Stone (Upper)# +6793#Musical Instrument Parts# +6794#Ceremonial Instrument# +6795#Ticket Special RO2# +6796#Kartu Nama RO2# +6797#11th Anniversary Coin# +6798#Glorious Weapon Exchange Ticket# +6799#Glorious Armor Exchange Ticket# +6800#Glorious Accessory Exchange Ticket# +6801#Monster Coin# +6802#Bato# +6803#Fragment of Gigantes# +6804#Organic Pumpkin# +6805#Inorganic Pumpkin# +6806#Water Magic Stone# +6807#Fire Magic Stone# +6808#Wind Magic Stone# +6809#Earth Magic Stone# +6810#Holy Magic Stone# +6811#Dark Magic Stone# +6812#Elemental Drop# +6813#Kafra Ticket# +6814#Swordman Soul# +6815#Merchant Soul# +6816#Thief Soul# +6817#Magician Soul# +6818#Archer Soul# +6819#Acolyte Soul# +6820#Energy Fragment# +6821#Single Union Badge# +6822#Chun'e Egg Exchange Ticket# +6823#Chun'e Egg(Peach) Exchange Ticket# +6824#Laboratory Memory Record# +6825#Air Cleaner Box# +6826#Fresh Grape# +6827#Complete Machine Part# +6828#Gravity Safety Device# +6829#Aura Seven Refining Force# +6830#Parrot Cone# +6832#Mysterious Part# +6833#(Limited) Token of Siegfried# +6834#Legendary Fur# +6835#Legendary Mane# +6836#Talisman of Soul# +6837#Piece of Mouse Soul# +6838#Secret Orders of Prophet K# +6839#Gold Chocolate# +6840#Silver Chocolate# +6841#Bronze Chocolate# +6842#Large Jewelry# +6843#Thin Ring# +6844#Mild Stone# +6845#Natural Fertilizer# +6846#(Limited)Gym Membership Card# +6847#Tiny Box# +6848#Light Box# +6849#Quest Completion Certificate# +6850#Suspicious Box# +6851#Suspicious Document# +6852#Super Neutralizer# +6853#Gratitude Bouquet# +6854#Captured Novus# +6855#Captured Tatacho# +6856#Manuscript Written by Pilgrim# +6857#Solid Stone# +6858#Captured Lude# +6859#Captured Wanderman# +6860#Piece of Cow Soul# +6861#Luxury Oil# +6862#Piece of Tiger Soul# +6863#Strong Piece of Tiger Soul# +6864#Safe to 19 Weapon Certificate# +6865#Safe to 19 Armor Certificate# +6866#Piece of Rabbit Soul# +6867#Big Bugbox# +6868#Medium Bugbox# +6869#Dust# +6870#Safe to 13 Weapon Certificate# +6871#Safe to 14 Weapon Certificate# +6872#Safe to 15 Weapon Certificate# +6873#Safe to 16 Weapon Certificate# +6874#Safe to 17 Weapon Certificate# +6875#Safe to 18 Weapon Certificate# +6876#Safe to 13 Armor Certificate# +6877#Safe to 14 Armor Certificate# +6878#Safe to 15 Armor Certificate# +6879#Safe to 16 Armor Certificate# +6880#Safe to 17 Armor Certificate# +6881#Safe to 18 Armor Certificate# +6882#Special Bait# +6883#Pet Snow Bunny Exchange Ticket# +6884#Pet Tikbalang Exchange Ticket# +6885#Piece of Dragon Soul# +6886#Strong Piece of Dragon Soul# +6887#Topalit Exchange Ticket# +6888#Amelit Exchange Ticket# +6889#Mislit Exchange Ticket# +6890#Tamadora Exchange Ticket# +6891#Magic Stone# +6892#Invasion Plan# +6893#Human Cooking Book# +6894#Champion Bedge# +6895#Processed Ancient Rune# +6896#Processed Mystic Rune# +6897#Blue Whale# +6898#Whale# +6899#Giant Octopus# +6900#Giant Squid# +6901#Sturgeon# +6902#King Shrimp# +6903#King Earthworm# +6904#Piece of Snake Soul# +6905#Shattered Magic Stone# +6906#(Limited)HD Carnium# +6907#Piece of Horse Soul# +6908#ASPD Stone (Garment)# +6909#Silvervine Cat Fruit# +6910#(Limited)Enriched Oridecon# +6911#(Limited)Enriched Eluminium# +6912#Piece of Sheep Soul# +6913#Sacred Rosary# +6914#Black Soul# +6915#Captured Soul# +6916#Piece of Monkey Soul# +6917#Piece of Chicken Soul# +6918#Fox Quest Ticket# +6919#Token of Honor# +6920#Rune Magic Powder# +6921#Dehumidifier# +6922#Sandpaper# +6923#Bright Light# +6924#Red Eye# +6925#Prisoner's Letter# +6926#Rune Midgard History Book# +6927#Ocean Contained Stone# +6928#Poring Scourer# +6929#Seal Stamped Letter# +6930#Sample of New Project Item# +6931#Top Secret Document# +6932#Rare Tome# +6933#Party Invitation# +6934#Fabulous Cuisine# +6935#Luxury Plate# +6936#Frozen Core# +6937#Malranghan shell# +6938#Large Porcupine Quills# +6939#Old Belt# +6940#Moving Dark Matter# +6941#Piece of Valkyrie Power# +6942#Will of Master# +6943#Attack Stone(Upper)# +6944#MATK Stone (Upper)# +6945#Strength Stone(Mid)# +6946#Intelligence Stone(Mid)# +6947#Agility Stone(Mid)# +6948#Dexterity Stone(Mid)# +6949#Vitality Stone(Mid)# +6950#Lucky Stone(Mid)# +6951#HP Stone(Lower)# +6952#Ultimate Refining Ticket# +6953#Controller Mall Mantle Ticket# +6954#Piece of Dog Soul# +6955#Piece of Pig Soul# +6956#Captured Sheep# +6957#Soft Wool# +6958#Lamb Horn# +6959#Costume Change Ticket# +6960#Air Fortress Key# +6961#Large Iron Scrap# +6962#Old Fuel Tank# +6963#HP Absorbtion Stone (Garment)# +6964#SP Absorption Stone (Garment)# +6965#Fire Property Reactor# +6966#Water Property Reactor# +6967#Earth Property Reactor# +6968#Wind Property Reactor# +6969#Fire Resistance Reactor# +6970#Water Resistance Reactor# +6971#Earth Resistance Reactor# +6972#Wind Resistance Reactor# +6973#Recovery Reactor 101# +6974#Recovery Reactor 102# +6975#Recovery Reactor 201# +6976#Recovery Reactor 202# +6977#Supportive Reactor STR# +6978#Supportive Reactor INT# +6979#Supportive Reactor DEF# +6980#Supportive Reactor Perfect# +6981#Supportive Reactor Attack# +6982#Supportive Reactor Magic# +6983#Supportive Reactor MaxHP# +6984#Supportive Reactor MaxSP# +6985#Supportive Reactor Frozen# +6986#Supportive Reactor ASPD# +6987#Barrier Reinforced Coin# +6988#Barrier Reinforced Token(Bronze)# +6989#Barrier Reinforced Token(Silver)# +6990#Barrier Reinforced Token(Gold)# +6991#Barrier Reinforced Token(Rainbow)# +6993#Safe to +10 Weapon Refine Ticket# +6994#Safe to +10 Armor Refine Ticket# +6995#Warm Stone# +6996#Rabbit Doll# +6997#Old Arrow# +6998#Special Quest Ticket# +6999#HP Absorp Stone(Upper)# +7000#Event Stone Coin# +7001#Mould Powder# +7002#Ogre Tooth# +7003#Anolian Skin# +7004#Mud Lump# +7005#Skull# +7006#Wing of Red Bat# +7007#Claw of Rat# +7008#Stiff Horn# +7009#Glitter Shell# +7010#Tail of Steel Scorpion# +7011#Claw of Monkey# +7012#Tough Scalelike Stem# +7013#Coral Reef# +7014#Old Portrait# +7015#Bookclip in Memory# +7016#Spoon Stub# +7017#Executioner's Mitten# +7018#Young Twig# +7019#Loki's Whispers# +7020#Mother's Nightmare# +7021#Foolishness of the Blind# +7022#Old Hilt# +7023#Blade Lost in Darkness# +7024#Bloody Edge# +7025#Lucifer's Lament# +7026#Key of Clock Tower# +7027#Key of Underground# +7028#Invite for Duel# +7029#Admission for Duel# +7030#Claw of Desert Wolf# +7031#Old Frying Pan# +7032#Piece of Egg Shell# +7033#Poison Spore# +7034#Red Stocking# +7035#Matchstick# +7036#Fang of Hatii# +7037#Coupon# +7038#Yarn# +7039#Newbie Tag# +7040#Megaphone# +7041#Fine Grit# +7042#Leather Bag of Infinity# +7043#Fine Sand# +7044#Vigorgra# +7045#Magic Paint# +7046#Cart Parts# +7047#Alice's Apron# +7048#Talon of Griffon# +7049#Stone# +7050#Cotton Mat# +7051#Silk Mat# +7052#Wasted Magazine# +7053#Cyfar# +7054#Brigan# +7055#Animal Excrement# +7056#Kafra Employee Paystub# +7057#Gjallar# +7058#Gleipnir# +7059#Free Ticket for Kafra Storage# +7060#Free Ticket for Kafra Transportation# +7061#Free Ticket for the Cart Service# +7062#Broken Turtle Shell# +7063#Soft Feather# +7064#Wing of Dragonfly# +7065#Sea-otter Fur# +7066#Ice Cubic# +7067#Stone Fragment# +7068#Burnt Tree# +7069#Destroyed Armor# +7070#Broken Shell# +7071#Tattered Clothes# +7072#Old Shuriken# +7073#Freya's Jewel# +7074#Thor's Guntlet# +7075#Iron Maiden# +7076#Wheel of the Unknown# +7077#Silver Ornament# +7078#Wrath of Valkyrie# +7079#Feather of Angel Wing# +7080#Tread of Cat# +7081#Woman's Moustache# +7082#Root of Stone# +7083#Spirit of Fish# +7084#Sputum of Bird# +7085#Sinew of Bear# +7086#Emblem of the Sun God# +7087#Breath of Spirit# +7088#Snow Crystal# +7089#Omen of Tempest# +7090#Ripple# +7091#Billow# +7092#Drifting Air# +7093#Cogwheel# +7094#Fragment# +7095#Metal Fragment# +7096#Lava# +7097#Burning Heart# +7098#Live Coal# +7099#Worn-out Magic Scroll# +7100#Sharp Leaf# +7101#PecoPeco Feather# +7102#Nightmare# +7103#Unknown Liquid Bottle# +7104#False Angel Wing# +7105#False Heaven Ring# +7106#Antelope Horn# +7107#Antelope Skin# +7108#Broken Shield Piece# +7109#Shining Spear Edge# +7110#Broken Sword# +7111#Slick Paper# +7112#Sharp Paper# +7113#Broken Pharaoh Emblem# +7114#Mask of Tutankhamen# +7115#Harpy Feather# +7116#Harpy Talon# +7117#Torn Magic Book# +7118#Torn Scroll# +7119#Bacillus# +7120#Burning Horseshoe# +7121#Honey Pot# +7122#Burning Har# +7123#Dragon Skin# +7124#Sand Clump# +7125#Scorpion Claws# +7126#Large Jellopy# +7127#Alcohol Creation Gude# +7128#Fire Bottle Creation Guide# +7129#Acid Bottle Creation Guide# +7130#Plant Bottle Creation Guide# +7131#Marine Sphere Creation Guide# +7132#Glistening Coat Creation Guide# +7133#Slim Potion Creation Guide# +7134#Medicine Bowl# +7135#Fire Bottle# +7136#Acid Bottle# +7137#Plant Bottle# +7138#Marine Sphere Bottle# +7139#Glistening Coat# +7140#Seed of Life# +7141#Yggdrasil Dew# +7142#Embryo# +7143#Glass Tube# +7144#Potion Creation Guide# +7145#Ragnarok T-shirt# +7146#Vacation Ticket# +7147#Jasmine# +7148#Mother's Letter# +7149#Yellow Plate# +7150#Piece of Bamboo# +7151#Oil Paper# +7152#Glossy Hair# +7153#Worn-out Kimono# +7154#Poisonous Powder# +7155#Poisonous Toad Skin# +7156#Broken Shuriken# +7157#Dark Mask# +7158#Broken Liquor Jar# +7159#Tengu Nose# +7160#Feudal Lord Permit# +7161#Black Bear Skin# +7162#Cloud Crumb# +7163#Hard Feeler# +7164#Solid Peach# +7165#Transparent Celestial Robe# +7166#Soft Silk# +7167#Strange Steel Piece# +7168#Giant Butterfly Wing# +7169#Taeguk Plate# +7170#Tuxedo# +7171#Leopard Skin# +7172#Leopard Claw# +7173#iROGM02's Backpack# +7174#Wrapping Lace# +7175#Wrapping Paper# +7176#Royal Certificate# +7177#Crumb of Sobbing Starlight# +7178#Sobbing Starlight# +7179#Proof of Donation# +7180#Hahn Sukbong's Recommendation# +7181#Receipt# +7182#Cacao# +7183#Letter from Sister# +7184#Piano Key# +7185#Quiz Entry# +7186#Thin Trunk# +7187#Festival Mask# +7188#Brown Root# +7189#Wooden Heart# +7190#Solid Husk# +7191#Lamp# +7192#Vane# +7193#Sprout# +7194#Soft Blade of Grass# +7195#Slingshot# +7196#Shoulder Protector# +7197#Tough Vines# +7198#Huge Leaf# +7199#13th Anniversary Coin# +7200#Elastic Band# +7201#Log# +7202#Pincher of Beetle# +7203#Strong Branch# +7204#Gunpowder# +7205#Piece of Black Cloth# +7206#Black Cat Doll# +7207#Old Manteau# +7208#Rusty Kitchen Knife# +7209#Helm of Dullahan# +7210#Armor Piece of Dullahan# +7211#Rosetta Stone Piece# +7212#Hung Doll# +7213#Needle Packet# +7214#Bat Cage# +7215#Broken Needle# +7216#Red Muffler# +7217#Spool# +7218#Decomposed Rope# +7219#Striped Sock# +7220#Ectoplasm# +7221#Tangled Chains# +7222#Wooden Gnarl# +7223#Contorted Self-Portrait# +7224#Stone of Sage# +7225#Pumpkin Lantern# +7226#Pellet# +7227#TCG Card# +7228#Gold Bullion# +7229#Silver Bullion# +7230#Platinum Bullion# +7231#Gold Ore# +7232#Silver Ore# +7233#Mythril Ore# +7234#Spirit of Guild# +7235#Spirit of Charge# +7236#Spirit of Protection# +7237#Spirit of Association# +7238#Spirit of Coordination# +7239#Spirit of Advance# +7240#Spirit of Trust# +7241#Spirit of Union# +7242#Spirit of Combination# +7243#Spirit of Cooperation# +7244#Spirit of Union# +7245#Spirit of Friendship# +7246#Spirit of Peace# +7247#Spirit of Determination# +7248#Spirit of Honor# +7249#Spirit of Service# +7250#Spirit of Glory# +7251#Spirit of Victory# +7252#Herb Medicine# +7253#Golden Korean Flag# +7254#Digital Picture Printing Coupon# +7255#Mystic Orb# +7256#Mystic Orb# +7257#Mystic Orb# +7258#Mystic Orb# +7259#Mystic Orb# +7260#Mystic Orb# +7261#Mystic Orb# +7262#Folding Fan of Cat Ghost# +7263#Cat's Eye# +7264#Dry Sand# +7265#Dragon Horn# +7266#Denture from Dragon Mask# +7267#Tiger Panty# +7268#Little Ghost Doll# +7269#Pinafore# +7270#Nursing Bottle# +7271#Novice Figure# +7272#Rice Ball Doll# +7273#RWC Necklace# +7274#Translated Ancient Language# +7275#Record of Ancient Language# +7276#Doodled Message# +7277#Munak Doll# +7278#Letter to Wife# +7279#Vita500 Lid# +7280#1st Quiz Entry# +7281#2nd Quiz Entry# +7282#3rd Quiz Entry# +7283#4th Quiz Entry# +7284#5th Quiz Entry# +7285#Holy Threads# +7286#Red Chile# +7287#Holier Threads# +7288#Engagement Ring# +7289#Peridot# +7290#Phlogopite# +7291#Agate# +7292#Muscovite# +7293#Rose Quartz# +7294#Turquoise# +7295#Citrin# +7296#Pyroxene# +7297#Biotite# +7298#Fig Leaf# +7299#Straw Basket# +7300#Gemstone# +7301#Tassel# +7302#Krathong# +7303#Straw Rice Bag# +7304#Witch's Spell Scroll# +7305#Symbol of the Nine Realms# +7306#Piece of Spirit# +7307#Spiritual Whispers# +7308#Witch's Tonic# +7309#Crow Wing# +7310#Free Ticket for Peco Ride# +7311#Free Airship Ticket# +7312#Jubilee# +7313#Witch's Medal# +7314#The Sign# +7315#Dark Crystal Fragment# +7316#Insect Leg# +7317#Rusty Screw# +7318#Old Pick# +7319#Used Iron Plate# +7320#Dust Pollutant# +7321#Crystal Fragment# +7322#Toxic Gas# +7323#Battered Kettle# +7324#Deep Sea Kraken's Leg# +7325#Flexible Tube# +7326#Fluorescent Liquid# +7327#Flashlight# +7328#Legend of Songkran# +7329#Old Bronze Key# +7330#Mystic Orb# +7331#Heaven Flower# +7332#Complete Tablet# +7333#Prontera Tablet# +7334#Payon Tablet# +7335#Morocc Tablet# +7336#Geffen Tablet# +7337#Eye of Hellion# +7338#One-way Ticket# +7339#Commemorative Travel Card# +7340#Will of the Darkness# +7341#Old Pendant# +7342#File Folder# +7343#Sealed File Folder# +7344#Shinokas Case File# +7345#Handcuffs# +7346#Ymir's Heart Piece# +7347#Research Chart# +7348#Membership Card# +7349#Archive Permit# +7350#Pass# +7351#Friend's Diary# +7352#Transparent Plate# +7353#Transparent Plate# +7354#Transparent Plate# +7355#Transparent Plate# +7356#Crest Piece 1# +7357#Crest Piece 2# +7358#Crest Piece 3# +7359#Crest Piece 4# +7360#RO Festival Invitation# +7361#Lotto Ball 01# +7362#Lotto Ball 02# +7363#Lotto Ball 03# +7364#Lotto Ball 04# +7365#Lotto Ball 05# +7366#Lotto Ball 06# +7367#Lotto Ball 07# +7368#Lotto Ball 08# +7369#Lotto Ball 09# +7370#Lotto Ball 10# +7371#Lotto Ball 11# +7372#Lotto Ball 12# +7373#Lotto Ball 13# +7374#Lotto Ball 14# +7375#Lotto Ball 15# +7376#Lotto Ball 16# +7377#Lotto Ball 17# +7378#Lotto Ball 18# +7379#Lotto Ball 19# +7380#Lotto Ball 20# +7381#Lotto Ball 21# +7382#Lotto Ball 22# +7383#Lotto Ball 23# +7384#Lotto Ball 24# +7385#Lotto Ball 25# +7386#Lotto Ball 26# +7387#Lotto Ball 27# +7388#Lotto Ball 28# +7389#Lotto Ball 29# +7390#Lotto Ball 30# +7391#Lotto Ball 31# +7392#Lotto Ball 32# +7393#Lotto Ball 33# +7394#Lotto Ball 34# +7395#Lotto Ball 35# +7396#Lotto Ball 36# +7397#Lotto Ball 37# +7398#Lotto Ball 38# +7399#Selamat# +7400#Hari# +7401#Kemerdekaan# +7402#Republik# +7403#Indonesia# +7404#Ke-60# +7405#Crushed Can# +7406#Yuebing# +7407#Yuebing# +7408#Yuebing# +7409#Yuebing# +7410#Yuebing# +7411#Yuebing# +7412#Yuebing# +7413#Yuebing# +7414#Yuebing# +7415#Summoning Stone# +7416#Letter of Recommendation# +7417#Written Request(A)# +7418#Written Request(B)# +7419#Embryo Creation Guide# +7420#Skull# +7421#Red Key# +7422#Yellow Key# +7423#Blue Key# +7424#Green Key# +7425#Black Key# +7426#Red Charm Stone# +7427#Yellow Charm Stone# +7428#Blue Charm Stone# +7429#Green Charm Stone# +7430#Black Charm Stone# +7431#Pile of Books# +7432#Leather Pouch# +7433#Blank Scroll# +7434#Elemental Potion Creation Guide# +7435#Golden Ornament# +7436#Fragment of Agony# +7437#Fragment of Misery# +7438#Fragment of Hatred# +7439#Fragment of Despair# +7440#Red Feather# +7441#Blue Feather# +7442#Cursed Seal# +7443#Three-Headed Dragon's Head# +7444#Treasure Box# +7445#Green Bijou# +7446#Blue Bijou# +7447#Red Bijou# +7448#Yellow Bijou# +7449#Bloody Page# +7450#Skeletal Armor Piece# +7451#Fire Dragon Scale# +7452#Yellow Spice# +7453#Sweet Sauce# +7454#Savory Sauce# +7455#Spicy Sauce# +7456#Red Spice# +7457#Cooking Oil# +7458#Fortune Horn# +7459#Idul Fitri Card# +7460#Niflheim Express Ticket# +7461#Blue A Card# +7462#Blue E Card# +7463#Blue F Card# +7464#Blue H Card# +7465#Blue L Card# +7466#Blue N Card# +7467#Blue O Card# +7468#Blue P Card# +7469#Blue U Card# +7470#Blue W Card# +7471#Blue Y Card# +7472#Level 1 Cookbook# +7473#Level 2 Cookbook# +7474#Level 3 Cookbook# +7475#Level 4 Cookbook# +7476#Level 5 Cookbook# +7477#Level 6 Cookbook# +7478#Level 7 Cookbook# +7479#Level 8 Cookbook# +7480#Level 9 Cookbook# +7481#Level 10 Cookbook# +7482#Pot# +7483#Key of the Seal# +7484#Warrior's Symbol# +7485#Cloud General# +7486#Wind General# +7487#Culinary Wine# +7488#Delivery Package# +7489#Cottage Key# +7490#Letter to Elly# +7491#Steel Box# +7492#Yellow Keycard# +7493#Golden Key# +7494#Luxurious Button# +7495#Blue Keycard# +7496#Red Keycard# +7497#Metal Fragment# +7498#Rosimier Mansion Keys# +7499#Family Portrait# +7500#Woman's Portrait# +7501#K.H's Letter# +7502#James's Note# +7503#Man's Portrait# +7504#Power Device# +7505#Toy Key# +7506#Black Keycard# +7507#Solid Iron Piece# +7508#Allysia's Ring# +7509#Luxurious Keycard# +7510#Valhala's Flower# +7511#Rune of the Darkness# +7512#Burnt Part# +7513#Pocket Watch# +7514#Monster Ticket# +7515#Prize Medal# +7516#Green Keycard# +7517#Gold Coin# +7518#Women's Medal# +7519#Lottery Envelope# +7520#Become Rich# +7521#Flame Stone# +7522#Ice Stone# +7523#Wind Stone# +7524#Shadow Orb# +7525#Summer Ticket# +7526#Manuscript Paper# +7527#Book About True Life# +7528#Lottery Ticket# +7529#Stolen Sandal# +7530#Travel Brochurer Amatsu# +7531#Travel Brochurer Kunlun# +7532#Travel Brochurer Louyang# +7533#Travel Brochurer Ayothaya# +7534#Amatsu Completed Photo Album# +7535#Kunlun Completed Photo Album# +7536#Louyang Completed Photo Album# +7537#Ayothaya Completed Photo Album# +7538#Sand for Work# +7539#Poring Coin# +7540#Lotto Ball 39# +7541#Lotto Ball 40# +7542#Lotto Ball 41# +7543#Lotto Ball 42# +7544#Lotto Ball 43# +7545#Lotto Ball 44# +7546#Lotto Ball 45# +7547#Football# +7548#Soccer Shoes# +7549#Brazilian Flag# +7550#13 June Ticket# +7551#18 June Ticket# +7552#22 June Ticket# +7553#Water Lily# +7554#Striped Candle# +7555#Green Incense# +7556#Longing Heart# +7557#Invitation Letter# +7558#Invitation Ticket# +7559#Key to the Secret Garden# +7560#Longing Heart# +7561#Glacial Heart# +7562#Ice Scale# +7563#Bloody Rune# +7564#Rotten Meat# +7565#Sticky Poison# +7566#Will of Red Darkness# +7567#Suspicious Hat# +7568#White Mask# +7569#Wind Hammer# +7570#Temple Lottery Ticket# +7571#Bruspetti's Diary# +7572#Ashy Necklace# +7573#Sparkling Necklace# +7574#Freezing Snow Powder# +7575#Red Jewel# +7576#Blue Jewel# +7577#Yellow Jewel# +7578#Countermagic Crystal# +7579#Silk Handkerchief of Zhi Nu# +7580#Black Bead# +7581#Celebration Document# +7582#Jewel of Destruction# +7583#Heart of Evil# +7584#Guardian's First Proof# +7585#Guardian's Second Proof# +7586#Guardian's Third Proof# +7587#Guardian's Fourth Proof# +7588#IPOD Coupon# +7589#Lettered Moon Snack 01# +7590#Lettered Moon Snack 02# +7591#Lettered Moon Snack 03# +7592#Lettered Moon Snack 04# +7593#Lettered Moon Snack 05# +7594#Sonia's Letter# +7595#Unique Sword# +7596#Unique Shield# +7597#Magic Stone# +7598#Blue I Card# +7599#Blue D Card# +7600#Blue K Card# +7601#Blue S Card# +7602#Blue R Card# +7603#RO Party Invitation Ticket# +7604#Flour# +7605#Chicken Egg# +7606#Token of the Ox# +7607#Neck of Demon Dragon# +7608#Midgard Premium Ticket# +7609#Pumpkin Mojo# +7610#Food Exchange Ticket# +7611#Symbol of Fox# +7612#Heart of Queen Fox# +7613#Small Rice Cake Dough# +7614#Wrapping Paper# +7615#MVP Voucher# +7616#Miniboss Voucher# +7617#Monster Voucher# +7618#Monster Crystal# +7619#Enriched Elunium# +7620#Enriched Oridecon# +7621#Token of Siegfried# +7622#Hairstyle Coupon# +7623#Ticket of Identification# +7624#Chinese Card 23# +7625#Operator's special reward# +7626#Bubble Gum Token# +7627#Sage Key# +7628#Woman Key# +7629#Pink Gift Box# +7630#Clean Beach Broom# +7631#Garbage Residue# +7632#Terrible Report Card# +7633#Heavensent Report Card# +7634#Father Rose# +7635#Scent Bag# +7636#Mystic Vial# +7637#Father Gift Box# +7638#Green Box# +7639#Red Box# +7640#Butterfly Hairclip# +7641#Cure Box# +7642#Bloody Coin# +7643#Bloody Letter# +7644#Unsent Letter# +7646#RO Lucky Bookmark# +7647#Lucky Coin# +7648#Snake Lucky Bookmark# +7649#Prosperous Lucky Bookmark# +7650#Essence of Blacksmith God# +7651#Mystery Egg# +7654#RO Consumption Voucher# +7655#Kafra Voucher# +7656#Exquisite Wrapping Paper# +7657#Ordinary Wrapping Paper# +7659#White Carnation# +7660#Yellow Carnation# +7661#Pink Carnation# +7662#Red Carnation# +7663#Full Metal Jacket# +7664#Projection Landmine# +7665#Dragon Tail Missile# +7666#TimeTravel Scroll# +7667#Abandoned Machine# +7668#Clean Bandage# +7669#Rubbing Alchohol# +7670#Sour Grass# +7671#187 Firstaid Kit# +7672#Relief Food# +7673#Costume Mission Coin# +7674#Mysterious Ingredient# +7677#Supply Receipt# +7678#Moonlight# +7683#Ghee Coin# +7684#Natsumi Coin# +7685#Sweet and Sour Melon# +7689#Barrier Reinforced Token# +7690#Special Exchange Coupons# +7696#Rubylit Exchange Ticket# +7698#Sapphilit Exchange Ticket# +7700#Emelit Exchange Ticket# +7701#Dragon Soul# +7702#Special Cogwheel# +7703#Piece of Cogwheel# +7704#Broken Thermometer# +7705#Note of Geologist# +7706#Broken Carrot Juice# +7707#Broken Banana Juice# +7708#Broken Apple Juice# +7709#Broken Grape Juice# +7710#Black Gemstone# +7711#Event Ticket# +7712#Nokia 5500# +7713#Blue A(2) Card# +7714#Blue R(2) Card# +7715#Hand-made Chocolate Recipe# +7716#Chocolate Strawberry Recipe# +7717#Chocolate Tart Recipe# +7718#Cacao Bean# +7719#Blue G Card# +7720#Gold Coin# +7721#Treasure Box# +7722#Debt Note# +7723#Diamond of Ruin# +7724#Forbidden Secret Art# +7725#Unlucky Emerald# +7726#Token of King# +7727#HP Doctor Ticket# +7728#SP Doctor Ticket# +7729#Rok Star Badge# +7730#Mission Ticket 1# +7731#Mission Ticket 2# +7732#Mission Ticket 3# +7733#Mission Ticket 4# +7734#Mission Ticket 5# +7735#Mission Ticket 6# +7736#Mission Ticket 7# +7737#Mission Ticket 8# +7738#Mission Ticket 9# +7739#Mission Ticket 10# +7740#Mission Ticket 11# +7741#Mission Ticket 12# +7742#Kaong# +7743#Gulaman# +7744#Leche Flan# +7745#Ube Jam# +7746#Sago# +7747#Langka# +7748#Sweet Beans# +7749#Sweet Bananas# +7750#Macapuno# +7751#Old White Cloth# +7752#Clattering Skull# +7753#Broken Farming Utensil# +7754#Broken Crown# +7755#Research Note# +7756#Sealed Book# +7757#Mythril# +7758#Star Crystal# +7759#Geologist's Report# +7760#Yaga's Magic Book# +7761#Magic Gourd Bottle# +7762#Yaga's Pestle# +7763#Sticky Herb# +7764#High Strength Adhesives# +7765#Baba Yaga's Secret Medicine# +7766#Bok Choy# +7767#Green Maiden Cake# +7768#Frozen Squid# +7769#Egg Yolk# +7770#Sweet Rice# +7771#Lotus Leaf# +7772#String# +7773#War Badge# +7774#Green Maiden Ticket# +7775#Spring Rabbit Ticket# +7776#Gym Pass# +7777#Sealed Golden Box# +7778#Sealed Silver Box# +7779#Golden Key# +7780#Silver Key# +7781#Engrave Treasure Box# +7782#Moscovia Poporing Key# +7783#12.0 Poring Key# +7784#Free Coupon 1# +7785#Free Coupon 2# +7786#Free Coupon 3# +7787#Free Coupon 4# +7788#Free Coupon 5# +7789#Free Coupon 6# +7790#Free Coupon 7# +7791#Free Coupon 8# +7792#Old Testament# +7793#Golden Apple# +7794#The Crow of Destiny# +7795#Mammi's Photo Album# +7796#Author's Autograph# +7797#Author's Memo# +7798#Fragment of Darkness# +7799#Crystal of Darkness# +7800#Golden Charm Apple# +7801#Girl's Letter# +7802#Signature Notebook# +7803#Novice Battle Manual# +7804#Octopig's Leg# +7805#Brown Jenoss's Family Ring# +7806#God Anvil# +7807#God Mineral# +7808#God Hammer# +7809#God Furnace# +7810#Symbol of Richness# +7811#Anvil# +7812#Symbol of Bravery# +7813#Red Jenoss's Family Ring# +7814#Green Jenoss's Family Ring# +7815#Blue Jenoss's Family Ring# +7816#Symbol of Faith# +7817#Symbol of Peace# +7818#Jessur's Necklace# +7819#Nokia5300# +7820#Piece of Morocc Skin# +7821#Green Apple# +7822#Whole Barbecue# +7823#Meat Veg Skewer# +7824#Spirit Liquor# +7825#Heroic Stone# +7826#Continental Guard Paper# +7827#Mineral Evals# +7828#Bravery Badge# +7829#Valor Badge# +7830#Goddess Tear# +7831#Valkyrie's Token# +7832#Brynhild Armor Piece# +7833#Hero Remains# +7834#Andvari's Ring# +7835#Dusk Glow# +7836#Dawn Essence# +7837#Cold Moonlight# +7838#Hazy Starlight# +7839#Crystal Key# +7840#Valkyrie's Gift# +7841#Stained Piece of Paper# +7842#Torn Piece of Paper# +7843#Old Piece of Paper# +7844#Burnt Pieces of Paper# +7845#Copy of Spotted Paper# +7846#Copy of Torn Paper# +7847#Copy of Old Paper# +7848#Copy of Burnt Paper# +7849#Soul Crystal# +7850#Wooden Block# +7851#Wii Raffle Ticket# +7852#Divx Player Raffle Ticket# +7853#iPod nano Raffle Ticket# +7854#Comodo Festival Ticket# +7855#Heart# +7857#Hand-made Kitty Doll# +7858#Dragonball Yellow# +7859#Game Ticket# +7860#Peeps# +7861#Jelly Bean# +7862#Marshmallow# +7863#Special Gold# +7864#Stolen Cacao# +7865#Gold Pouch# +7866#Certificate# +7867#Sesame Bag# +7868#맑은 물# +7869#Rice Pouch# +7870#Corn# +7871#Bean Bag# +7872#Herb# +7873#MVP Monster Scroll# +7874#Create Monster Scroll# +7875#Pirate Treasure# +7876#Golden Key# +7877#Red Ring# +7878#Lusalka's Hair# +7879#Golden Thread# +7880#Baba Yaga's Silver Spoon# +7881#Mistery Magic Book# +7882#Sharp Branch# +7883#Wooden Flute# +7884#Jade Plate# +7885#Sacred Arrow# +7886#Bean Paste# +7887#Dried Fruit Box# +7888#Bag of Nuts# +7889#Chicken Feed# +7891#Mug# +7892#Charcoal# +7893#Sulphur# +7894#Nitrogen Acid# +7895#Rama5 Book# +7896#Loykrathong Book# +7897#Constitution Book# +7898#VV Strong Balmung# +7899#Dagger of Psychic# +7900#Jonathan Family Ring# +7901#Jillberriel Family Ring# +7902#Jessur Family Ring# +7903#Jenoss Family Ring# +7904#Piano Key# +7905#Rok Star Badge# +7906#Poppy Wreath# +7907#Thread of the goddess# +7908#Louise's Beauty Coupon# +7909#Stolen Cookie# +7910#Stolen Candy# +7911#Yulia's Hat# +7912#Portable Snowman Machine# +7913#Battle Test Certificate# +7914#Ancient Language Document# +7915#Bronze Coin# +7916#Silver Coin# +7917#Magic Potion# +7918#Fragment of Memory# +7919#Festival Ticket# +7920#Hero's Weapon# +7921#Essence of Dragon# +7922#RWC Event Ticket# +7923#Krathong# +7924#Gold Paper# +7925#Powerful Dimensional Essence# +7926#Hong# +7927#Candle# +7928#Brazil National Flag# +7929#Gold Coin# +7930#Devil's Cattle Ring# +7931#Poison Kit# +7932#Poison Herb Nerium# +7933#Poison Herb Rantana# +7934#Poison Herb Makulata# +7935#Poison Herb Seratum# +7936#Poison Herb Scopolia# +7937#Poison Herb Amoena# +7938#Light Granule# +7939#Elder Branch# +7940#Special Alloy Trap# +7941#Halloween Ticket# +7942#Chico Cesar Letter# +7943#Caskinya# +7944#Sealed Box# +7945#Universal Amulet# +7946#Gold Ring of Valentine# +7947#Silver Ring of Valentine# +7948#Box# +7949#Woven Wool# +7950#Ayothaya Fest Ticket# +7951#Golden Tulip Flower# +7952#Gift of Romeo# +7953#Gift of Juliet# +7954#Summer Festival Ticket# +7955#Lost Card1# +7956#Lost Card2# +7957#Lost Card3# +7958#Lost Card4# +7959#UP Coin# +7960#Ancient Coin# +7961#Weapon Exchange Ticket# +7962#Treasure Map 1# +7963#Treasure Map 2# +7964#Treasure Map 3# +7965#Treasure Map 4# +7966#Piece of Weird Parchment 1# +7967#Piece of Weird Parchment 2# +7968#Piece of Weird Parchment 3# +7969#Piece of Weird Parchment 4# +7970#First Chapter of Letter Piece# +7971#Second Chapter of Letter Piece# +7972#Oath Day Letter# +7973#Eternal Egg# +7974#Misty's Illusion Piece# +7975#Cupid's Chocolate# +7976#Geffen Magic Coin# +7977#Mercenary Badge# +7978#Chinese Card 1# +7979#Chinese Card 2# +7980#Chinese Card 3# +7981#Chinese Card 4# +7982#Chinese Card 5# +7983#Chinese Card 6# +7984#Chinese Card 7# +7985#Chinese Card 8# +7986#Chinese Card 9# +7987#Chinese Card 10# +7988#Chinese Card 11# +7989#Chinese Card 12# +7990#Chinese Card 13# +7991#Chinese Card 14# +7992#Chinese Card 15# +7993#Chinese Card 16# +7994#Chinese Card 17# +7995#Chinese Card 18# +7996#Chinese Card 19# +7997#Chinese Card 20# +7998#Chinese Card 21# +7999#Chinese Card 22# +9001#[UC] Poring Egg# +9002#[UC] Drops Egg# +9003#[UC] Poporing Egg# +9004#[UC] Lunatic Egg# +9005#[UC] Picky Egg# +9006#[UC] Chonchon Egg# +9007#Steel Chonchon Egg# +9008#Hunter Fly Egg# +9009#Savage Bebe Egg# +9010#[UC] Baby Desert Wolf Egg# +9011#[UC] Rocker Egg# +9012#[UC] Spore Egg# +9013#Poison Spore Egg# +9014#[UC] PecoPeco Egg# +9015#Smokie Egg# +9016#Yoyo Egg# +9017#[R] Orc Warrior Egg# +9018#Munak Egg# +9019#Dokkaebi Egg# +9020#[R] Sohee Egg# +9021#[R] Isis Egg# +9022#[R] Green Petite Egg# +9023#[R] Deviruchi Egg# +9024#[R] Baphomet Jr. Egg# +9025#[R] Bongun Egg# +9026#Zealotus Egg# +9027#[R] Alice Egg# +9028#Hard Rice Cake Egg# +9029#X-mas Goblin Egg# +9030#Green Maiden Egg# +9031#Spring Rabbit Egg# +9032#Knife Goblin Egg# +9033#Flail Goblin Egg# +9034#Hammer Goblin Egg# +9035#Red Deleter Egg# +9036#Diabolic Egg# +9037#Wanderer Egg# +9038#New Year Doll Egg# +9039#Bacsojin Egg# +9040#Civil Servant Egg# +9041#Leaf Cat Egg# +9042#Loli Ruri Egg# +9043#Marionette Egg# +9044#Shinobi Egg# +9045#Whisper Egg# +9046#Goblin Leader Egg# +9047#Wicked Nymph Egg# +9048#Miyabi Ningyo Egg# +9049#Dullahan Egg# +9050#Medusa Egg# +9051#Stone Shooter Egg# +9052#[R] Incubus Egg# +9053#Golem Egg# +9054#Nightmare Terror Egg# +9055#[R] Succubus Egg# +9056#Imp Egg# +9057#Taini Egg# +9058#Christmas Snow Rabbit Egg# +9059#Tikbalang Egg# +9060#Domovoi Egg# +9061#Marin Egg# +9062#[Free] Baby Poring Egg# +9063#Chun Tree Egg# +9064#Elephant Pet Egg# +9065#King Kong Pet Egg# +9066#QQ Lion Pet Egg# +9067#Rhino Pet Egg# +9068#Blue Unicorn Egg# +9069#Mastering Egg# +9070#Savage Egg# +9071#Grand Peco Egg# +9073#[Not Available] Orc Lord Egg# +9074#Rubylit Egg# +9075#Sapphilit Egg# +9076#Emelit Egg# +9077#Topalit Egg# +9078#Amerit Egg# +9079#Mythlit Egg# +9080#Tamadora Egg# +9087#High Orc Egg# +9088#[E] Angeling Egg# +9089#Am Mut Egg# +9090#Little Isis Egg# +9091#Choco Egg# +9092#Eggring Egg# +9093#Hyegun Egg# +9094#Leaf Lunatic Egg# +9095#Nine Tails Egg# +9096#[E] Cat o' Nine Tails Egg# +9097#Diabolic Egg# +9098#Earth Deleter Egg# +9099#Teddy Bear Egg# +9100#Gremlin Egg# +9101#[Event] Scatleton Crate# +9102#Mummy Egg# +9103#Willow Egg# +9104#Roween Egg# +9105#Hodremlin Egg# +9106#Metaller Egg# +9107#Ancient Mummy Egg# +9108#Abandoned Teddy Bear Egg# +9109#Sweet Drops Egg# +9111#Phreeoni Egg# +9112#[Not Available] Moonlight Flower Egg# +9113#Skelion Egg# +9115#Bacsojin Egg# +9116#Rigid Nightmare Terror Egg# +9117#Contaminated Wanderer Egg# +9118#Eliot Egg# +9119#Alicel Egg# +9120#Aliza Egg# +9121#Orc Hero Egg# +9122#Gloom Under Night Egg# +9123#Child Admin Beta Egg# +9124#Child Admin Alpha Egg# +9125#Wandering Duck Doll Egg# +9126#Kiel-D-01 Egg# +9128#Dark Priest Egg# +9129#Desert Wolf Egg# +9130#Chaos Baphomet Jr. Egg# +9131#Flame Golem Egg# +9137#Baphoment Egg# +9138#Familiar Egg# +9139#Dark Illusion Egg# +9140#Blue Moon Loli Ruri Egg# +9141#Wild Rose Egg# +9159#[E] Chimera Egg# +9160#[E] Dark Illusion Egg# +9161#[E] Ghostring Egg# +9162#[E] Gryphon Egg# +9163#[E] Hydro Egg# +9164#[E] Maya Purple Egg# +9165#[E] Mutant Dragon Egg# +9166#[E] Owl Baron Egg# +9167#[Not Available] Doppelganger Egg# +9168#[Not Available] Maya Egg# +9169#[Not Available] Baphomet Egg# +9170#[Not Available] Mistress Egg# +9171#[Not Available] Eddga Egg# +9172#[Not Available] Osiris Egg# +9173#[Not Available] Dark Lord Egg# +9174#[Not Available] Stormy Knight Egg# +9175#[Event] [UC] Poring Egg# +9176#[Event] [UC] Drops Egg# +9177#[Event] [UC] Poporing Egg# +9178#[Event] [UC] Lunatic Egg# +9179#[Event] [UC] Picky Egg# +9180#[Event] [UC] Chonchon Egg# +9181#[Event] [UC] Baby Desert Wolf Egg# +9182#[Event] [UC] Rocker Egg# +9183#[Event] [UC] Spore Egg# +9184#[Event] [UC] PecoPeco Egg# +9185#[Event] [R] Orc Warrior Egg# +9186#[Event] [R] Sohee Egg# +9187#[Event] [R] Isis Egg# +9188#[Event] [R] Green Petite Egg# +9189#[Event] [R] Deviruchi Egg# +9190#[Event] [R] Baphomet Jr. Egg# +9191#[Event] [R] Bongun Egg# +9192#[Event] [R] Alice Egg# +9193#[Event] [R] Incubus Egg# +9194#[Event] [R] Succubus Egg# +9195#[Event] [E] Angeling Egg# +9196#[Event] [E] Cat o' Nine Tails Egg# +9197#[Event] [E] Chimera Egg# +9198#[Event] [E] Dark Illusion Egg# +9199#[Event] [E] Ghostring Egg# +9200#[Event] [E] Gryphon Egg# +9201#[Event] [E] Hydro Egg# +9202#[Event] [E] Maya Purple Egg# +9203#[Event] [E] Mutant Dragon Egg# +9204#[Event] [E] Owl Baron Egg# +9205#[Event] Luna Egg# +9206#[Event] Crystal Egg# +9207#[Not for Sale] Pet Ultraman Chibi# +9208#[Event] Imp Egg# +9209#Nose Bamboo Pet Egg# +9210#[UC] Savage Babe Egg# +9211#[R] Smokie Egg# +9212#[E] Zealotus Egg# +9213#[Not Available] Dracula Egg# +9214#[UC] Snake Egg# +9215#[R] Side Winder Egg# +9216#[E] Medusa Egg# +9217#[L] Evil Snake Lord# +9218#[UC] Ambernite Egg# +9219#[R] Cornutus Egg# +9220#[E] Assulter Egg# +9221#[Not Available] Turtle General Egg# +9222#[UC] False Angel Egg# +9223#[R] Dame of Sentinel Egg# +9224#[E] Arc Angeling Egg# +9225#[Not Available] Valkyrie Randgris Egg# +9226#[UC] Muka Egg# +9227#[R] Alligator Egg# +9238#[E] Mavka Egg# +9240#[R] Parasite Egg# +9244#[Event] Malicious Pitaya Egg# +9245#[Event] Spiritual Pitaya Egg# +9510#Costume Enchant Stone Box 17# +9514#Physical Modification Permit# +9515#Einbeck Weapon Box# +9517#Untouched Gemstone# +9523#Metal Refining Ticket# +9529#Magical Modification Permit# +9530#300 Points Costume Box# +9539#[Event] Blue Potion Box(10)# +9550#Gemstone of Time# +9551#Seal of Time Key# +9553#Infinite Cat Hand Ticket Box(7 Days)# +9569#Festival Noodles# +9581#Sealed Wet Card# +9582#Colorful Flower Branches# +9585#Small Flower Branches# +9586#2019 Superstar R Ticket Box# +9587#[Event] Three Master Package (20)# +9588#[Event] Brilliant Protection Box(20)# +9589#[Event] Almighty Box (10)# +9590#[Event] Power Booster Box (10)# +9610#[Event] Mysterious Life Potion# +9785#Frozen Refine Box# +9827#Malangdo# +9897#Shiny Doll Button# +9932#Royal Secret Box# +9933#Troi Hunting 9 Refinement Package# +9934#Trois Hunting Physical Craft Kit# +9935#Trois Hunting Magical Craft Kit# +9991#[Event] Boarding Halter 7D Box# +9999#Sweets Snack Pack# +10001#Skull Helmet# +10002#Monster Oxygen Mask# +10003#Transparent Head Protector# +10004#Pacifier# +10005#Wig# +10006#Queen's Hair Ornament# +10007#Silk Ribbon# +10008#Punisher# +10009#Flower# +10010#Battered Pot# +10011#Stellar Hairpin# +10012#Tiny Egg Shell# +10013#Poring Pet Backpack# +10014#Rocker Glasses# +10015#Green Lace# +10016#Golden Bell# +10017#Bark Shorts# +10018#Monkey Circlet# +10019#Red Scarf# +10020#Grave Keeper's Sword# +10021#Unidentified Helmet# +10022#Golden Earring# +10023#Green Lucky Bag# +10024#Fashionable Glasses# +10025#Star Hairband# +10026#Exotic Tassel# +10027#Spirit Chain# +10028#Nice Badge# +10029#Jade Ornament# +10030#Summer Fan # +10031#Ring of Death# +10032#Queen's Coronet# +10033#Afro Hair# +10034#Ball Mask# +10035#Windup Spring# +10036#Hell Horn# +10037#Black Butterfly Mask# +10038#Horn Barrier# +10039#Unidentified Garment# +10040#Red Bell Necklace# +10042#Dark Mane# +10043#Little Headdress Beta# +10044#Little Headdress Alpha# +10045#Unidentified Accessory# +10564#Fire Armor Scroll Box(30)# +10565#Water Armor Scroll Box(30)# +10566#Wind Armor Scroll Box(30)# +10567#Earth Armor Scroll Box(30)# +10625#Modified Hero's Weapon Refine Hammer Package V# +11000#History Book of Prontera# +11001#Adventure Story Vol.1# +11002#Chef King Orlean Vol.1# +11003#Kafra Legend Vol.1# +11004#Old Book# +11005#Rune Royal Family Book# +11006#Blood Flower Vol.1# +11007#Blood Flower Vol.2# +11008#Biographical Dictionary Copy Edition# +11009#Adventure Story Vol.2# +11010#Catalogue# +11011#Varmundt's Note# +11012#Expedition Report# +11013#Expedition Report Vol1# +11014#Expedition Report Vol2# +11015#Expedition Report Vol3# +11016#Expedition Report Vol4# +11018#Splendide Selling Item# +11019#Manuk Selling Item# +11020#Japanese Book 1# +11021#Japanese Book 2# +11022#Mix Cooking Cook Book# +11023#Explosive Health Increase Research Book# +11024#Energy Drink Recipe# +11025#Swordman's Book# +11028#Thief's Book# +11031#Archer's Book# +11034#Acolyte's Book# +11037#Magician's Book# +11040#Merchant's Book# +11043#Taekwon's Book# +11046#Ninja's Book# +11049#Gunslinger's Book# +11052#Super Novice's Book# +11055#Basic Adventure Book# +11056#Spiritualism Guide# +11057#February Sweets# +11058#Novice Combination Scroll# +11061#List Exchange of Token of Honor# +11064#Advanced Elemental Arts Guide# +11500#Light Yellow Potion# +11501#Light White Potion# +11502#Slim Blue Potion# +11503#Siege White Potion# +11504#Siege Blue Potion# +11505#Iris# +11506#Fanta Orange# +11507#Fanta Grape# +11508#Karada Meguricha# +11509#Black Tea Kochakaden# +11510#Coca Cola Zero# +11511#Diet Coca Cola# +11512#Coca Cola# +11513#Neck Protection Candy# +11514#Enriched Slim Potion# +11515#Coconut# +11516#Asai Fruit# +11517#Purification Potion# +11518#Novice Blue Potion# +11519#Beef Toast# +11520#Mora Mandarin# +11521#Pingui Berry Juice# +11522#Red Raffle Sap# +11523#Yellow Raffle Sap# +11524#White Raffle Sap# +11525#Mora Hip Tea# +11526#Rafflecino# +11527#Baklava# +11528#Kanafeh# +11530#Jujube# +11531#Coffee# +11532#Nasi Goreng# +11533#Satay# +11534#Coconut Juice# +11535#Almond Chocolate# +11536#Cat's Ship Biscuit# +11537#Weevil Bug Worm# +11538#Fresh Octopus Legs# +11539#Handmade Chocolate# +11540#Shy Handmade Chocolate# +11541#Mid Handmade Chocolate# +11542#Handmade Chocolate by Jonda Staff# +11543#Kaito Anniversary Handmade Chocolate# +11544#Huck Handmade Chocolate# +11545#Rune Handmade Chocolate# +11546#Pope Handmade Chocolate# +11547#Siege Violet Potion# +11548#Siege White Potion# +11549#Siege Blue Potion# +11550#Pumpkin Cake# +11551#Savory Herb Salad# +11552#Apple Carrot Salad# +11553#Casual Stew# +11554#Golden Roasted Apple# +11555#RG Red Potion# +11556#RG Blue Potion# +11557#TE White Potion# +11558#TE White Slim Potion# +11559#Peeled Magic Shell# +11560#Sashimi Magic Shell# +11561#Scapular Magic Shell# +11562#Pie Fruit# +11563#Hot Tea# +11564#Sweet Pastry# +11565#[Event] White Potion# +11566#[Event] Yellow Potion# +11567#[Event] Novice Potion# +11568#[Event] Red Slim Potion# +11569#[Event] Orange Potion# +11570#[Event] Red Potion# +11571#[Event] Green Potion# +11572#[Event] Blue Potion# +11573#[Event] White Slim Potion# +11574#[Event] Yellow Slim Potion# +11575#[Event] Lucky Cookie# +11576#[Event] Lucky Candy Cane# +11577#[Event] Rice Ball# +11578#[Event] Candy Cane# +11579#[Event] Lucky Candy# +11580#[Event] Candy# +11581#[Event] Piece of Cake# +11582#[Event] Well-baked Cookie# +11583#[Event] Chocolate Drink# +11584#[Event] White Chocolate# +11585#[Event] Hand-made Chocolate# +11586#[Event] Handmade White Chocolate# +11587#[Event] Chocolate# +11588#Fresh Strawberries# +11589#Cold Snow Cone# +11590#Skewer No.5# +11592#Trans-Red Candy# +11593#Trans-Blue Candy# +11594#Trans-Yellow Candy# +11595#Trans-Green Candy# +11596#Blood in Skull# +11597#Iron Worm# +11598#Bittersweet Cocoa Beans# +11599#Superstar Potion# +11600#Shining Holy Water# +11601#Delicious Sardine# +11602#Catnip Fruit# +11603#[Gift] Mastela Fruit# +11604#[Event] Royal Jelly# +11605#Cookie Bat# +11606#[Event] White Slim Potion# +11607#Sweet Crepe# +11608#Chocolate Egg# +11609#Yummy Cookie Egg# +11610#Sweet Melon# +11611#Pop Corn# +11612#Aromatic Pop Corn# +11613#Harvest Festival Commemorative Sweets# +11614#Freshly Squeezed Milk# +11615#Sweet Potato# +11616#Delicious Meat# +11617#Silvervine Chocolate Ball# +11620#Bear Rope# +11621#Red Syrup# +11622#Yellow Syrup# +11623#White Syrup# +11624#Blue Syrup# +11625#Aromatic Pop Corn# +11629#Acorn Chocolate Ball# +11630#Lunch Box# +11701#Girl's Bouquet# +11702#Moon Cookie# +11703#Mysterious Blood# +11704#Ketupat# +11705#Child Potion# +11706#Steak# +11707#Roast Beef# +11708#Fore Flank Sirloin# +11709#Fanta Zero Lemon# +11710#Sakura Mist# +11711#Sakura Milk Tea# +11712#First Leaf Tea# +11713#Julia's Candy# +11714#Ma'moul# +11715#Fruit Salad# +11716#Shepherd Salad# +11717#Yogurt# +11718#Sushi Kebab# +11719#Bisket Dessert# +11720#Kinder Bueno# +11723#Piece of Green Crystal# +11724#Misty's Homemade Chocolate# +11725#Jedd's Handmade Chocolate# +11726#Niren's Handmade Chocolate# +11727#Natsumi's Homemade Chocolate# +11728#Ghee's Homemade Chocolate# +11729#Nidhoggur's Homemade Chocolate# +11730#Loki's Homemade Chocolate# +11735#Gold Cantaloupe# +11736#Prontera Army Potion# +11737#Sate# +11740#Soul Drink# +12000#Level 5 Frost Diver# +12001#Level 3 Heal# +12002#Level 5 Heal# +12003#Level 1 Teleport# +12004#Quiver# +12005#Iron Arrow Quiver# +12006#Steel Arrow Quiver# +12007#Oridecon Arrow Quiver# +12008#Fire Arrow Quiver# +12009#Silver Arrow Quiver# +12010#Wind Arrow Quiver# +12011#Stone Arrow Quiver# +12012#Crystal Arrow Quiver# +12013#Shadow Arrow Quiver# +12014#Immaterial Arrow Quiver# +12015#Rusty Arrow Quiver# +12016#Speed Potion# +12017#Slow Potion# +12018#Firecracker# +12019#Holy Egg# +12020#Cursed Water# +12021#Pork# +12022#Galbi# +12023#Wrapped Box# +12024#Red Pouch# +12025#Dano Festival Egg# +12026#Dano Festival Egg# +12027#Giggling Box# +12028#Box of Thunder# +12029#Box of Gloom# +12030#Box of Resentment# +12031#Box of Drowsiness# +12032#Box of Storms# +12033#Box of Sunlight# +12034#Box of Panting# +12035#Lotto Box 01# +12036#Lotto Box 02# +12037#Lotto Box 03# +12038#Lotto Box 04# +12039#Lotto Box 05# +12040#Stone of Sage# +12041#Fried Grasshopper Legs# +12042#Seasoned Sticky Webfoot# +12043#Bomber Steak# +12044#Herb Marinade Beef# +12045#Lutie Lady's Pancake# +12046#Grape Juice Herbal Tea# +12047#Autumn Red Tea# +12048#Honey Herbal Tea# +12049#Morocc Fruit Wine# +12050#Mastela Fruit Wine# +12051#Steamed Crab Nippers# +12052#Assorted Seafood# +12053#Clam Soup# +12054#Seasoned Jellyfish# +12055#Spicy Fried Bao# +12056#Frog Egg Squid Ink Soup# +12057#Smooth Noodle# +12058#Tentacle Cheese Gratin# +12059#Lutie Cold Noodle# +12060#Steamed Bat Wing in Pumpkin# +12061#Honey Grape Juice# +12062#Chocolate Mousse Cake# +12063#Fruit Mix# +12064#Cream Sandwich# +12065#Green Salad# +12066#Fried Monkey Tails# +12067#Mixed Juice# +12068#Fried Sweet Potato# +12069#Steamed Ancient Lips# +12070#Fried Scorpion Tails# +12071#Shiny Marinade Beef# +12072#Whole Roast# +12073#Bearfoot Special# +12074#Tendon Satay# +12075#Steamed Tongue# +12076#Red Mushroom Wine# +12077#Special Royal Jelly Herbal Tea# +12078#Royal Family Tea# +12079#Tristram 12# +12080#Dragon Breath Cocktail# +12081#Awfully Bitter Bracer# +12082#Sumptuous Feast# +12083#Giant Burito# +12084#Ascending Dragon Soup# +12085#Stew of Immortality# +12086#Chile Shrimp Gratin# +12087#Steamed Alligator with Vegetable# +12088#Incredibly Spicy Curry# +12089#Special Meat Stew# +12090#Steamed Desert Scorpions# +12091#Peach Cake# +12092#Soul Haunted Bread# +12093#Special Toast# +12094#Heavenly Fruit Juice# +12095#Hwergelmir's Tonic# +12096#Lucky Soup# +12097#Assorted Shish Kebob# +12098#Strawberry Flavored Rice Ball# +12099#Blood Flavored Soda# +12100#Cooked Nine Tail's Tails# +12101#Citron# +12102#Grilled Skewer# +12103#Bloody Branch# +12104#Random Quiver# +12105#Taming Gift Set# +12106#Jewelry Box# +12107#Wrapped Mask# +12108#Scroll Package# +12109#Poring Box# +12110#First Aid Kit# +12111#Bundle of Food# +12112#Tropical Sograt# +12113#Vermilion on the Beach# +12114#Fire Elemental Converter# +12115#Water Elemental Converter# +12116#Earth Elemental Converter# +12117#Wind Elemental Converter# +12118#Fireproof Potion# +12119#Coldproof Potion# +12120#Earthproof Potion# +12121#Thunderproof Potion# +12122#Sesame Pastry# +12123#Honey Pastry# +12124#Rainbow Cake# +12125#Outdoor Cooking Kit# +12126#Home Cooking Kit# +12127#Professional Cooking Kit# +12128#Royal Cooking Kit# +12129#Fantastic Cooking Kit# +12130#Cookie Bag# +12131#Lucky Potion# +12132#Santa's Bag# +12133#Vanilla Icecream# +12134#Red Envelope# +12135#Green Ale# +12136#Women's Bundle# +12137#First Stage Prize# +12138#Second Stage Prize# +12139#Third Stage Prize# +12140#Fourth Stage Prize# +12141#Fifth Stage Prize# +12142#Book of Magic# +12143#Coca-Cola# +12144#Lightning Sphere Pack# +12145#Blind Sphere Pack# +12146#Poison Sphere Pack# +12147#Freezing Sphere Pack# +12148#Flare Sphere Pack# +12149#Ammo Case# +12150#Blood Ammo Case# +12151#Silver Ammo Case# +12152#Special Present# +12153#Bowman Scroll 1# +12154#Bowman Scroll 2# +12155#Bowman Scroll 3# +12156#Bowman Scroll 4# +12157#Bowman Scroll 5# +12158#Bowman Scroll 6# +12159#Bowman Scroll 7# +12160#Bowman Scroll 8# +12161#Bowman Scroll 9# +12162#Bowman Scroll 10# +12163#Fencer Scroll 1# +12164#Fencer Scroll 2# +12165#Fencer Scroll 3# +12166#Fencer Scroll 4# +12167#Fencer Scroll 5# +12168#Fencer Scroll 6# +12169#Fencer Scroll 7# +12170#Fencer Scroll 8# +12171#Fencer Scroll 9# +12172#Fencer Scroll 10# +12173#Spearman Scroll 1# +12174#Spearman Scroll 2# +12175#Spearman Scroll 3# +12176#Spearman Scroll 4# +12177#Spearman Scroll 5# +12178#Spearman Scroll 6# +12179#Spearman Scroll 7# +12180#Spearman Scroll 8# +12181#Spearman Scroll 9# +12182#Spearman Scroll 10# +12183#Holy Arrow Quiver# +12184#Mercenary Red Potion# +12185#Mercenary Blue Potion# +12186#Old Red Box# +12187#Old Green Box# +12188#Grace Moon Cake# +12189#Old Red Box 2# +12190#Moon Cake# +12191#Special Moon Cake# +12192#Pumpkin Pie# +12193#Pretzel# +12194#Hometown Gift# +12195#Plain Rice Cake# +12196#Hearty Rice Cake# +12197#Salty Rice Cake# +12198#Lucky Rice Cake# +12199#Scroll of Magic# +12200#X-mas Cake# +12201#Commonplace Red Box# +12202#Steamed Tongue# +12203#Steamed Desert Scorpions# +12204#Dragon Breath Cocktail# +12205#Hwergelmir's Tonic# +12206#Cooked Nine Tail's Tails# +12207#Stew of Immortality# +12208#Battle Manual# +12209#Life Insurance# +12210#Bubble Gum# +12211#Kafra Card# +12212#Giant Fly Wing# +12213#Neuralizer# +12214#Convex Mirror# +12215#Level 10 Blessing Scroll# +12216#Level 10 Increase Agility Scroll# +12217#Level 5 Aspersio Scroll# +12218#Level 5 Assumptio Scroll# +12219#Level 10 Wind Walk Scroll# +12220#Level 5 Adrenaline Rush Scroll# +12221#Megaphone# +12223#Sweet Macaron Cake# +12224#Sweet Strawberry Parfait# +12225#Sweet Candy Cane# +12232#Ginger Bread# +12233#Kvass# +12234#Fierce Cacao 99%# +12235#Chocolate Strawberry# +12236#Chocolate Tart# +12237#Junky Chocolate# +12238#New Year Rice Cake# +12239#New Year Rice Cake# +12240#Old Yellow Box# +12241#Mercenary Concentration Potion# +12242#Mercenary Awakening Potion# +12243#Mercenary Berserk Potion# +12244#Old Gift Box# +12245#Green Ale# +12246#Mystical Card Album# +12247#Halo-Halo# +12248#Fancy Ball Box# +12249#Payment Statement for Kafra Employee# +12250#Steamed Tongue 60# +12251#Steamed Desert Scorpions 60# +12252#Dragon Breath Cocktail 60# +12253#Hwergelmir's Tonic 60# +12254#Cooked Nine Tail's Tails 60# +12255#Stew of Immortality 60# +12256#PRO Gfit Box# +12257#Cold Medicine# +12258#Bombring Capsule# +12259#Miracle Tonic# +12260#Cool Summer Outfit# +12261#Miracle Medicine# +12262#Authoritative Badge# +12263#[Event] Battle Manual# +12264#[Event] Bubble Gum# +12265#[Event] Life Insurrance# +12266#Sesame Pastry# +12267#Honey Pastry# +12268#Rainbow Cake# +12269#Tasty Pink Ration# +12270#Tasty White Ration# +12271#Military Ration A# +12272#Military Ration B# +12273#Military Ration C# +12274#Daehwandan# +12275#Taecheongdan# +12276#Mimic Summon Book# +12277#Disguise Summon Book# +12278#Alice Summon Book# +12279#Undead Elemental Scroll# +12280#Holy Elemental Scroll# +12281#Event Treasure Box# +12282#Pearl Bag# +12283#Pearl Bag50# +12284#aRO Special Pills# +12286#Masquerade Ball Box2# +12287#Love Angel Magic Powder# +12288#Squirrel Magic Powder# +12289#Gogo Magic Powder# +12290#Mysterious Can# +12291#Mysterious PET Bottle# +12292#Unripe Yggdrasilberry# +12293#Dried Yggdrasilberry# +12294#PC Cafe Coin Box 1# +12295#PC Cafe Coin Box 2# +12296#PC Cafe Coin Box 3# +12297#PC Cafe Coin Box 4# +12298#SP Consumption Reduction Potion# +12299#Mega Resist Potion# +12300#Wild Rose Contract# +12301#Doppelganger Contract# +12302#Egnigem Cenia Contract# +12303#Blessing of Water# +12304#Diary Magic Powder# +12305#Mini Heart Magic Powder# +12306#Freshman Magic Powder# +12307#Kid Magic Powder# +12308#Magic Magic Powder# +12309#JJangu Magic Powder# +12310#Spray of Flowers# +12311#Huge Spray of Flowers# +12312#Thick Battle Manual# +12313#Guardian Angel# +12314#Adventurer Returns Support Box# +12315#Goddess of Blessing# +12316#Angel's Blessing# +12317#Snow Powder# +12318#Small Heart# +12319#Rune Strawberry Cake# +12320#Schwartzwald Pine Jubilee# +12321#Arunafeltz Desert Sandwich# +12322#Chocolate Pie# +12323#[Event] Novice Fly Wing# +12324#[Event] Novice Butterfly Wing# +12325#[Event] Novice Magnifier# +12326#Firecracker# +12327#Lucky Charm# +12328#Charm of Happiness# +12329#Support Game Master# +12330#Support Game Master# +12331#Ginseng# +12332#Fruit Juice# +12333#Ancilla# +12334#Treasure Edition Helm Box# +12335#Delicious Grilled Skewer# +12336#Grilled Mushroom# +12337#Grilled Sausages# +12338#Grilled Corn# +12339#Treasure Edition Box# +12340#Chewy Rice Powder# +12341#Special Alloy Trap Box# +12342#Manuk's Opportunity# +12343#Manuk's Courage# +12344#Pinguicula's Fruit Jam# +12345#Luciola's Honey Jam# +12346#Unripe Acorn# +12347#Acorn Jelly# +12348#Manuk's Faith# +12349#Cornus' Tears# +12350#Angelring Potion# +12351#Shouting Megaphone# +12352#Dungeon Teleport Scroll 3# +12353#Small Water Bottle# +12354#Buche De Noel# +12355#Xmas Gift# +12356#Louise Costume Box# +12357#Gingerbread Cookie# +12358#Fan of Wind# +12359#Very Soft Plant# +12360#Very Red Juice# +12361#Delicious Shaved Ice# +12362#Kuloren# +12363#Ghost Coffin# +12364#Staff of Leader# +12365#Charming Lotus# +12366#Gril Doll# +12367#Luxury Whisky Bottle# +12368#Splendid Mirror# +12369#Coconut Oil# +12370#Gril's Naivety# +12371#Magical Lithography# +12372#Hell Contract# +12373#Boy's Pure Heart# +12374#Ice Fireworks# +12375#Akaraje# +12376#Mysterious Can Mackerel Flavor# +12377#Mysterious PET Bottle Ocean Flavor# +12378#Rice Cake Soup# +12379#Pope Cookie# +12380#Job Change Flute# +12381#Ancient Language Scroll# +12382#Ancient Language Scroll# +12383#Vulcan Bullet Magazine# +12384#Rainbow Ruby# +12385#Rainbow Ruby# +12386#Rainbow Ruby# +12387#Rainbow Ruby# +12388#Trial Rhydo Runestone# +12389#Trial Pertz Runestone# +12390#Trial Verkana Runestone# +12391#Lucky Egg# +12392#Repair A# +12393#Repair B# +12394#Repair C# +12395#Tantan Noodle# +12396#Gift Box?# +12397#Gift Box?# +12398#PC Cafe Gift Box# +12399#Castle Treasure Chest# +12400#Water of Blessing# +12402#29 Fruit# +12403#Lucky Egg II# +12404#Energizing Potion# +12405#Unripe Yggdrasil Seed# +12406#Psychic Armor Scroll# +12407#PC Cafe Coupon Box# +12408#Hydra Ball# +12409#1st Class Pork Belly# +12410#Thick Pork Belly# +12411#HE Battle Manual# +12412#HE Bubble Gum# +12413#PC Cafe Coupon Box# +12414#Guarana Candy# +12415#Siege Teleport Scroll Silver# +12416#Lucky Egg III# +12417#Boost500# +12418#Full SwingK# +12419#Mana +# +12420#Muramura(M)# +12421#Falmons(F)# +12422#HP Increase Potion(Small)# +12423#HP Increase Potion(Medium)# +12424#HP Increase Potion(Large)# +12425#SP Increase Potion(Small)# +12426#SP Increase Potion(Medium)# +12427#SP Increase Potion(Large)# +12428#Enriched White PotionZ# +12429#Savage BBQ# +12430#Warg Blood Cocktail# +12431#Minor Brisket# +12432#Siroma Icetea# +12433#Drosera Herb Stew# +12434#Petite Tail Noodle# +12435#Black Thing# +12436#Vitata500# +12437#Enrich Celermine Juice# +12438#Giant Fly Wing# +12439#Battle Manual# +12440#Insurance# +12441#Bubble Gum# +12442#Kafra Card# +12443#Neuralizer# +12444#WoE Teleport Scroll# +12445#Steamed Tongue# +12446#Steamed Desert Scorpions# +12447#Dragon Breath Cocktail# +12448#Hwergelmir's Tonic# +12449#Nine Tail# +12450#Stew of Immortality# +12451#Yellow Butterfly Wing# +12452#Green Butterfly Wing# +12453#Red Butterfly Wing# +12454#Blue Butterfly Wing# +12455#Dungeon Teleport Scroll# +12456#Greed Scroll# +12457#Glass of Illusion# +12458#Abrasive# +12459#Medium Life Potion# +12460#Small Life Potion# +12461#Regeneration Potion# +12462#Big Magic Defense Potion# +12463#Small Magic Defense Potion# +12464#Big Defense Potion# +12465#Small Defense Potion# +12466#Level 10 Blessing Scroll# +12467#Level 10 Increase Agility Scroll# +12468#Level 5 Aspersio Scroll# +12469#Level 5 Assumptio Scroll# +12470#Level 10 Wind Walk Scroll# +12471#Level 5 Adrenaline Rush Scroll# +12472#Convex Mirror# +12473#RWC Reception Participant Memorial Box# +12474#RWC Final Participant Memorial Box# +12475#Cure Free# +12476#PC Cafe Coupon Box# +12477#Gift Package# +12478#Box of Opportunity# +12479#Caracas Ring Box# +12480#Attendance 3day Box# +12481#Attendance 7day Box# +12482#Attendance 10day Box# +12483#Attendance 15day Box# +12484#Attendance 20day Box# +12485#Attendance 25day Box# +12486#Gold PC Cafe 1etc Box# +12487#PC Cafe Leaf Clover Box# +12488#Valkyrie Mercenary Scroll# +12489#Ticket Gift Box II# +12490#Christmas Music Box# +12491#Curious Snowball# +12492#Wrinkled Sheaf of Paper# +12493#Lucky Egg IV# +12497#[Event] Bubble Gum# +12501#[Event] Steamed Tongue# +12502#[Event] Steamed Scorpion# +12503#[Event] Dragon Breath Cocktail# +12504#[Event] Hwergelmir's Tonic# +12505#[Event] Cooked Nine Tail's Tail# +12506#[Event] Stew of Immortality# +12507#[Event] Yellow Butterfly Wing# +12508#[Event] Green Butterfly Wing# +12509#[Event] Red Butterfly Wing# +12510#[Event] Blue Butterfly Wing# +12514#[Event] Abrasive# +12515#[Event] Medium Life Potion# +12516#[Event] Small Life Potion# +12522#[Event] Level 10 Blessing Scroll# +12523#[Event] Level 10 Increase Agility Scroll# +12529#White Slim Potion Box# +12530#Mastela Fruit Box# +12531#White Potion Box# +12532#Royal Jelly Box# +12533#Blue Herb Box# +12534#Yggdrasil Seed Box# +12535#Yggdrasil Berry Box# +12536#Octopus Rice Cake Soup# +12537#Gift Basket# +12538#Firecracker Basket# +12539#Fancy Box# +12540#Operator Warp Box# +12541#Fortune Cookie# +12542#Fortune Cookie# +12543#Fortune Cookie# +12544#Strange Branch# +12545#Fortune Egg# +12546#Suspicious Dishes# +12547#Treasure Box# +12548#Black Market Bulk Buyer Shop License# +12549#White Slim Potion Box(100)# +12550#Poison Bottle 10 Box# +12553#Brisingamen Keep Box# +12554#Asprika Piece Box# +12555#Brynhild Piece Box# +12556#Sleipnir Keep Box# +12557#Mjolnir Keep Box# +12558#Megingjord Keep Box# +12559#Tenkaippin Chunky# +12560#Tenkaippin Crisp# +12561#Mysterious Seed# +12562#Bubble Gum+# +12563#Battle Manual 75%# +12564#3D Glasses Box# +12565#Cheering Scarf Box# +12566#Cheering Scarf II Box# +12567#Cheering Scarf Box# +12568#Cheering Scarf Box# +12569#Cheering Scarf Box# +12570#Cheering Scarf Box# +12571#Cheering Scarf Box# +12572#Cheering Scarf Box# +12573#Fruit Basket# +12574#Mora Berry# +12575#Elf's Arrow Quiver# +12576#Hunting Arrow Quiver# +12577#Fortune Egg# +12578#Rapid Life Potion# +12579#Valkyrie Ring Box# +12580#Window Shopper Catalog# +12581#Bargain Hunter's Catalog# +12582#Siege Supply Box# +12583#Public Relations Box# +12584#Development Team Box# +12585#Marketing Team Box# +12586#Operation Team Box# +12587#A Summer Night's Box# +12588#A Summer Night's Box# +12589#A Summer Night's Box# +12590#Coin Holder# +12591#Black Market Catalog# +12595#Incarnation of Morocc Doll Box# +12596#Magic Candy# +12599#Kurma# +12600#Treasure Chest Summon Book# +12601#Cold Watermelon Juice# +12602#Special Box I# +12603#Special Box II# +12604#Special Box III# +12605#Special Box IV# +12606#Special Box V# +12607#Delicious Lollipop Box# +12608#Colorful Box II# +12609#Old Ore Box# +12610#Mysterious Egg# +12611#Mobile Eden Scroll# +12612#Shabby Coin Bag# +12613#Premium Coin Bag# +12614#Normal Coin Bag# +12615#Poor Coin Bag# +12616#S Grade Coin Bag# +12617#A Grade Coin Bag# +12618#B Grade Coin Bag# +12619#C Grade Coin Bag# +12620#D Grade Coin Bag# +12621#E Grade Coin Bag# +12622#Boarding Halter# +12623#High Weapon Box# +12624#Delicious Jelly# +12625#Sapha Certification Bag# +12626#Wanderman Scroll# +12627#Wicked Nymph Scroll# +12628#Kasa Scroll# +12629#Salamander Scroll# +12630#Teddy Bear Scroll# +12631#Kurusa Stone A(1hour)# +12632#Kurusa Stone B# +12633#Malang Cat Can# +12634#Kurusa Stone A(24hours)# +12635#Kurusa Stone A(7days)# +12636#Malangdo Special Can# +12637#Gong Bug Pocket# +12638#Dried Squid Box# +12639#Flying Fish Box# +12640#Starfish Box# +12641#Lucky Egg VIII# +12642#Mastela Fruit Box(100)# +12643#E Coin Pack50# +12644#PC Cafe Coupon BoxIV# +12645#Sacred Scroll# +12646#Flame-Grilled Octopus# +12647#Ink Ball# +12648#Comprehensive Potion Set# +12649#Level 70 Bounty# +12650#Level 90 Bounty# +12651#Level 110 Bounty# +12652#Level 130 Bounty# +12653#Level 150 Bounty# +12654#Fortune EggIX# +12658#Transformation Scroll(Deviruchi)# +12659#Transformation Scroll(Raydric Archer)# +12660#Transformation Scroll(Mavka)# +12661#Transformation Scroll(Marduk)# +12662#Transformation Scroll(Banshee)# +12663#Transformation Scroll(Poring)# +12664#Transformation Scroll(Golem)# +12672#New Beginning Box# +12673#Safe to 7 Chance Box# +12674#God Material Box# +12675#Siege Weapon Supply Box# +12676#Siege Violet Potion Box# +12677#Siege Arrow Quiver S# +12678#Siege Arrow Quiver A# +12679#Siege White Potion Box# +12680#Siege Blue Potion Box# +12681#Lemon Nestea# +12682#Black Nestea# +12683#WoE Violet Potion 200pc Box# +12684#ASPD Enchanced Potion# +12685#Gryphon Egg Scroll# +12690#Headgear Card Album# +12691#Armor Card Album# +12692#Shield Card Album# +12693#Garment Card Album# +12694#Shoes Card Album# +12695#Accessory Card Album# +12696#RWC Celebration Firecracker# +12697#RWC Celebration Firecracker# +12698#Weapon Card Album# +12699#Tikbalang Belt# +12700#Inside-out Shirt# +12701#Old Blue Box# +12702#Old Navy Box# +12703#Holy Egg# +12704#Elixir of Life# +12705#Noble Nameplate# +12706#Lucky Cookie# +12707#Lucky Cookie# +12708#Lucky Cookie# +12709#Old Candy# +12710#Old Pudding# +12711#Pretzel# +12712#Green Beer# +12713#Monster Extract# +12714#Easter Scroll# +12715#Black Treasure Chest# +12716#Indian Rice Cake# +12717#Paralysis# +12718#Leech End# +12719#Oblivion Curse# +12720#Death Hurt# +12721#Toxin# +12722#Pyrexia# +12723#Magic Mushroom# +12724#Venom Bleed# +12725#Nosiege Runestone# +12726#Rhydo Runestone# +12727#Verkana Runestone# +12728#Isia Runestone# +12729#Asir Runestone# +12730#Urj Runestone# +12731#Turisus Runestone# +12732#Pertz Runestone# +12733#Hagalas Runestone# +12734#Quality Rough Runestone# +12735#Ancient Rough Runestone# +12736#Mystic Rough Runestone# +12737#General Rough Runestone# +12738#Rare Rough Runestone# +12739#Snow Flower# +12740#Amplification Scroll# +12741#Intellect Amplification Scroll# +12742#Valentine Gift Box# +12743#Valentine Gift Box# +12744#Chocolate Box# +12745#Vivid Notation# +12746#Buster Scroll# +12747#Royal Scroll# +12748#Immune Scroll# +12749#Mystic Scroll# +12750#Battle Scroll# +12751#Armor Scroll# +12752#Prayer Scroll# +12753#Soul Scroll# +12754#New Year Dumplings# +12760#Green Bubble Gum# +12761#Yellow Bubble Gum# +12762#Orange Bubble Gum# +12763#Red Bubble Gum# +12764#Augustus Commercial Box# +12765#Summer Night Box# +12766#[Event] JOB Battle Manual# +12767#World Cup Hat of Passion Box# +12768#World Cup Hat of Fight Box# +12769#World Cup Hat of Victory Box# +12770#World Cup Hat of Honor Box# +12771#World Cup Hat of Passion Box 2# +12772#World Cup Hat of Fight Box 2# +12773#World Cup Hat of Victory Box 2# +12774#Empty Potion Bottle# +12775#Greater Agimat of Ancient Spirit# +12778#Bapho Jr Scroll# +12779#Galapago Scroll# +12784#Glitter Parfait# +12785#Dragon Egg# +12786#Character Position Change Coupon# +12787#Diabolic Scroll# +12788#Digital Firework# +12789#Fruit Platter# +12790#Name Change Coupon# +12791#Combat Pill# +12792#Luxury Battle Medicine# +12793#Battle Medicine Box# +12794#Luxury Battle Medicine Box# +12795#2011 RWC Scroll# +12796#Red Booster# +12797#Wish Maiden Scroll# +12798#Zealotus Scroll# +12799#PC Cafe Coupon Box V# +12800#Ktullanux Scroll# +12801#Eddga Scroll# +12802#Guardian of Time Box# +12803#Novice Support Box# +12804#Crew Egg# +12805#Mystic Powder# +12806#Scaraba Summoning Scroll# +12807#Mercenary Summoning Bundle# +12808#Mother's Gentle Heart Box# +12809#Level Up box# +12810#Event Gift Box# +12811#GM Event Gift Box# +12812#Snow Flip# +12813#Peony Mommy# +12814#Slapping Herb# +12815#Yggdrasil Dust# +12816#Old Ore Box# +12817#Old Card Album# +12818#Advanced Weapon Box# +12819#Zherlthsh Exchange Ticket Box# +12820#Nine Tail Summon Scroll# +12821#Loli Ruri Summon Scroll# +12822#Songpyun Box(50)# +12823#Sedora Summon Scroll# +12824#Deviruchi Summon Scroll# +12825#Flip Seed# +12826#Wind Type Scroll# +12827#Sofiel Aqua Scroll# +12828#Aeon Firesong Scroll# +12829#Geheimnis Terra Scroll# +12830#Ancient Tree Wooden Box# +12831#Potion Box# +12832#Mysterious Life Potion# +12833#Union of Organization# +12834#Nucleus of Undead# +12835#Heart of Girl# +12836#RJC2014 Book Card# +12837#Wooden Chest# +12838#Iron Chest# +12839#Copper Chest# +12840#Silver Chest# +12841#Gold Chest# +12842#Platinum Chest# +12843#Pearl Chest# +12844#Diamond Chest# +12845#Amatsu Butterfly Wing# +12846#Little Unripe Apple# +12847#Old Equipment Box# +12848#Falcon Flute# +12849#Combination Kit# +12850#Heaven Scroll# +12851#Vocation Scroll# +12852#Wisdom Scroll# +12853#Patron Scroll# +12854#Abundant Eggplant Flower# +12855#Pope Scroll# +12856#RG Golden Apple Slice# +12857#RG Golden Apple# +12858#RG Kvasir# +12860#Mommy Day Cake# +12863#Treasure Chest Summoned II# +12871#Mysterious Egg II# +12872#Limited Battle Manual# +12873#TE Potion Box# +12874#Frost Giant's Blood# +12875#Golem's Core# +12876#Fairy's Tear(Stun)# +12877#Fairy's Tear(Stone Curse)# +12878#Fairy's Tear(Freezing)# +12879#Fairy's Tear(Sleep)# +12880#Fairy's Tear(Curse)# +12881#Fairy's Tear(Silence)# +12882#Fairy's Tear(Darkness)# +12883#Almighty# +12884#Unlimited Concentration Potion# +12885#Unlimited Awakening Potion# +12886#Unlimited Berserk Potion# +12887#Unlimited Fly Wing# +12888#Siege Support Box# +12889#Weapon Box(Spear)# +12890#Weapon Box(Mace)# +12891#Weapon Box(Dagger)# +12892#Weapon Box(Axe)# +12893#Weapon Box(Bow)# +12894#Weapon Box(Sword)# +12895#Weapon Box(Knuckle)# +12896#Weapon Box(Book)# +12897#Weapon Box(Guitar)# +12898#Weapon Box(Whip)# +12899#Weapon Box(Staff)# +12900#Battle Manual Box(10)# +12901#Insurance Package Box(10)# +12902#Bubble Gum Box(10)# +12903#Steamed Tongue Box(10)# +12904#Steamed Desert Scorpions Box(10)# +12905#Dragon Breath Cocktail Box(10)# +12906#Hwergelmir's Tonic Box(10)# +12907#Cooked Nine Tail's Tails Box(10)# +12908#Stew of Immortality Box(10)# +12909#Kafra Card Box(10)# +12910#Giant Fly Wing Box(10)# +12911#Neuralizer Box# +12912#Convex Mirror Box(10)# +12913#Blessing Scroll Box(10)# +12914#Increase Agility Scroll Box(10)# +12915#Aspersio Scroll Box(10)# +12916#Assumptio Scroll Box(10)# +12917#Wind Walk Scroll Box(10)# +12918#Adrenaline Rush Scroll Box(10)# +12919#Megaphone Box(10)# +12920#Enriched Elunium Box(10)# +12921#Enriched Oridecon Box(10)# +12922#Token of Siegfried Box(10)# +12923#Pet Egg Scroll Box# +12924#Pet Egg Scroll Box# +12925#Kafra Item Mall Prize Package# +12926#Pet Egg Scroll# +12927#Aspersio Scroll Box# +12928#Sacred Scroll# +12929#Pet Egg Box 3# +12930#Pet Egg Box 4# +12931#펫 알 스크롤 상자# +12932#펫 알 스크롤# +12933#펫 알 스크롤# +12934#펫 알 스크롤# +12935#Infiltrator Box# +12936#Muramasa Box# +12937#Excalibur Box# +12938#Combat Knife Box# +12939#Dagger of Counter Box# +12940#Kaiser Knuckle Box# +12941#Poll Axe Box# +12942#Mighty Staff Box# +12943#Light Epsilon Box# +12944#Ballista Box# +12945#Sage's Diary Box# +12946#Asura Box# +12947#Apple of Archer Box# +12948#Bunny Band Box# +12949#Sakkat Box# +12950#Grand Circlet Box# +12951#Elven Ears Box# +12952#Steel Flower Box# +12953#Critical Ring Box# +12954#Earring Box# +12955#Ring Box# +12956#Necklace Box# +12957#Glove Box# +12958#Brooch Box# +12959#Rosary Box# +12960#Safety Ring Box# +12961#Vesper Core 01 Box# +12962#Vesper Core 02 Box# +12963#Vesper Core 03 Box# +12964#Vesper Core 04 Box# +12965#Emergency Call Scroll Level 1 Box# +12966#Emergency Call Scroll Level 2 Box# +12967#Emergency Call Scroll Level 3 Box# +12968#Emergency Call Scroll Level 1# +12969#Emergency Call Scroll Level 2# +12970#Emergency Call Scroll Level 3# +12971#Teleport Scroll Box# +12972#Teleport Scroll Box# +12973#Teleport Scroll Box# +12974#Teleport Scroll Box# +12975#Teleport Scroll Box# +12976#Teleport Scroll Box# +12977#Teleport Scroll# +12978#Teleport Scroll# +12979#Teleport Scroll# +12980#Teleport Scroll# +12981#Teleport Scroll# +12982#Teleport Scroll# +12983#Pet Egg Scroll Box# +12984#Pet Egg Scroll Box# +12985#Pet Egg Scroll Box# +12986#Pet Egg Scroll Box# +12987#Pet Egg Scroll Box# +12988#Pet Egg Scroll Box# +12989#Dangerous Pet Egg Scroll# +12990#Sacred Pet Egg Scroll# +12991#Perforated Pet Egg Scroll# +12992#Unclear Pet Egg Scroll# +12993#Colorful Pet Egg Scroll# +12994#Beautiful Pet Egg Scroll# +12995#White Herb Box# +12996#Blue Herb Box# +12997#Elunium Box# +12998#Oridecon Box# +12999#Dead Branch Box# +13000#Jujube Dagger# +13001#Dragon Killer# +13002#Ginnungagap# +13003#Cowardice Blade# +13004#Cowardice Blade# +13005#Angelic Wing Dagger# +13006#Khukri# +13007#Jitte# +13008#Jitte# +13009#Kamaitachi# +13010#Asura# +13011#Asura# +13012#Murasame# +13013#Murasame# +13014#Hakujin# +13015#Hakujin# +13016#Poison Knife# +13017#Ice Pick# +13018#Sucsamad# +13019#Ginnungagap# +13020#One-Handed Sword# +13021#Rental Combat Knife# +13022#Rental Dagger of Counter# +13023#Rental Asura# +13024#Unidentified Dagger# +13025#Unidentified Dagger# +13026#Moonlight Dagger# +13027#Scalpel# +13028#Tooth Blade# +13029#Unidentified Dagger# +13030#Dragon Killer# +13031#Swordbreaker# +13032#Mailbreaker# +13033#Assassin Dagger# +13034#Desert Twilight# +13035#Sandstorm# +13036#Brave Damascus# +13037#Valorous Damascus# +13038#Dagger of Hunter# +13039#Ivory Knife# +13040#Novice Cutter# +13041#Novice Main Gauche# +13042#Glorious Gladius# +13043#Unidentified Dagger# +13044#Unidentified Dagger# +13045#Unidentified Dagger# +13046#Krieg# +13047#Weihna# +13048#Unidentified Dagger# +13049#Unidentified Dagger# +13050#Eden Dagger I# +13051#Eden Dagger II# +13052#Unidentified Dagger# +13053#Rental Moonlight Sword# +13054#Combat Knife# +13055#Asura# +13056#Counter Dagger# +13061#Black Wing# +13062#Ancient Dagger# +13066#Eden Group Dagger III# +13067#Keris# +13068#Saurel# +13069#Aztoe Nail# +13070#Scarletto Nail# +13071#Unidentified Dagger# +13072#Bellum Damascus# +13073#Unidentified Dagger# +13074#Ninja Cutter# +13075#Kurenai# +13076#Raksasa Dagger# +13077#Unidentified Dagger# +13078#Mikatsuki# +13079#Metal Dagger# +13080#Unidentified Dagger# +13081#Unidentified Dagger# +13082#Unidentified Dagger# +13083#TE WoE Knife# +13084#Unidentified Dagger# +13085#Volcano Knife# +13086#Goldsmithing Dagger# +13087#Unidentified Dagger# +13088#Krishnagar# +13089#Faceworm Leg# +13090#Faceworm Queen Leg# +13091#Unidentified Dagger# +13092#RWC Memory Knife# +13093#Thanatos Dagger# +13094#Evil Slayer Stabber Dagger# +13097#Ru Blue Dagger# +13098#Ru Blue Ashura# +13099#Ru Blue Knife# +13100#Six Shooter# +13101#Six Shooter# +13102#Crimson Bolt# +13103#Crimson Bolt# +13104#Garrison# +13105#Garrison# +13106#Gold Lux# +13107#Wasteland's Outlaw# +13108#Brave Revolver# +13109#Unidentified Revolver# +13110#Glorious Pistol# +13111#Unidentified Revolver# +13112#Eden Revolver I# +13113#Eden Revolver II# +13114#Eden Group Revolver III# +13115#Unidentified Revolver# +13116#Novice Revolver# +13117#TE WoE Grenade# +13118#Fading Flame# +13119#Freedom Flame# +13120#Heaven's Feather & Hell's Fire# +13121#Unidentified Revolver# +13122#Altair & Ares# +13123#Unidentified Revolver# +13124#Altair & Ares# +13125#Metal Revolver# +13126#Unidentified Revolver# +13127#Crimson Revolver# +13128#Vicious Mind Revolver# +13129#Unidentified Revolver# +13130#Unidentified Revolver# +13131#Unidentified Revolver# +13132#Unidentified Revolver# +13133#Unidentified Revolver# +13134#Unidentified Revolver# +13135#Unidentified Revolver# +13136#Probation Revolver# +13137#Unidentified Revolver# +13138#Dark Rose# +13139#Unidentified Revolver# +13140#Unidentified Revolver# +13141#Unidentified Revolver# +13142#Unidentified Revolver# +13143#Unidentified Revolver# +13144#Unidentified Revolver# +13146#Unidentified Revolver# +13147#Unidentified Revolver# +13150#Branch# +13151#Cyclone# +13152#Cyclone# +13153#Dusk# +13154#Rolling Stone# +13155#Black Rose# +13156#Gate Keeper# +13157#Drifter# +13158#Butcher# +13159#Butcher# +13160#Destroyer# +13161#Destroyer# +13162#Inferno# +13163#Long Barrel# +13164#Long Barrel# +13165#Jungle Carbine# +13166#Jungle Carbine# +13167#Gate Keeper-DD# +13168#Thunder P# +13169#Thunder P# +13170#Lever Action Rifle# +13171#Valorous Rifle# +13172#Brave Gatling Gun# +13173#Valorous Shotgun# +13174#Valorous Grenade Launcher# +13175#Unidentified Rifle# +13176#Glorious Rifle# +13177#Glorious Gatling Gun# +13178#Glorious Shotgun# +13179#Glorious Grenade Launcher# +13180#Novice Rifle# +13181#Novice Shotgun# +13182#Novice Gatling# +13183#Novice Grenade Launcher# +13184#TE WoE Rifle# +13185#TE WoE Gatling# +13186#TE WoE Shotgun# +13187#TE WoE Grenade# +13188#Unidentified Rifle# +13189#Color Scope# +13190#R.A.G.203# +13191#Unidentified Rifle# +13192#Death Fire# +13193#Rolling Thunder# +13194#Peace Breaker# +13195#R.A.G.203# +13196#Peace Breaker# +13197#Minigun# +13198#Tempest# +13199#Tempest# +13200#Bullet# +13201#Old Silver Bullet# +13202#Old Bloody Shell# +13203#Old Flare Sphere# +13204#Old Lightning Sphere# +13205#Old Poison Sphere# +13206#Old Blind Sphere# +13207#Old Freezing Sphere# +13208#GongBug# +13210#Slug Shot L# +13211#Slug Shot M# +13212#Slug Shot H# +13213#Slug Shot SH# +13214#Slug Shot XH# +13215#Armor-Piercing Bullet# +13216#Blazing Bullet# +13217#Freezing Bullet# +13218#Lightning Bullet# +13219#Magic Stone Bullet# +13220#Purifying Bullet# +13221#Silver Bullet# +13222#Bloody Shell# +13223#Incendiary Grenade# +13224#Lightning Grenade# +13225#Poison Grenade# +13226#Flash Grenade# +13227#Cryo Grenade# +13228#Flare Bullet# +13229#Lightning Bullet# +13230#Ice Bullet# +13231#Poison Bullet# +13232#Blinding Bullet# +13250#Shuriken# +13251#Nimbus Shuriken# +13252#Flash Shuriken# +13253#Sharp Leaf Shuriken# +13254#Thorn Needle Shuriken# +13255#Icicle Kunai# +13256#Black Earth Kunai# +13257#High Wind Kunai# +13258#Heat Wave Kunai# +13259#Fell Poison Kunai# +13260#Apple Bomb# +13261#Coconut Bomb# +13262#Melon Bomb# +13263#Pineapple Bomb# +13264#Banana Bomb# +13265#Black Lump# +13266#Black Hard Lump# +13267#Very Hard Lump# +13268#Mysterious Powder# +13269#Throwing Boost500# +13270#Throwing Full SwingK# +13271#Throwing Mana Plus# +13272#Throwing Cure Free# +13273#Throwing Muramura(M)# +13274#Throwing Falmons(F)# +13275#Throwing HP Increase Potion(Small)# +13276#Throwing HP Increase Potion(Medium)# +13277#Throwing HP Increase Potion(Large)# +13278#Throwing SP Increase Potion(Small)# +13279#Throwing SP Increase Potion(Medium)# +13280#Throwing SP Increase Potion(Large)# +13281#Throwing Enriched White PotionZ# +13282#Throwing Vitata500# +13283#Throwing Enrich Celermine Juice# +13284#Throwing Savage BBQ# +13285#Throwing Warg Blood Cocktail# +13286#Throwing Minor Brisket# +13287#Throwing Siroma Icetea# +13288#Throwing Drosera Herb Stew# +13289#Throwing Petite Tail Noodle# +13290#Throwing Black Thing# +13291#Starfish# +13292#Dried Squid# +13293#Flying Fish# +13294#Explosive Kunai# +13295#Light Shuriken# +13300#Huuma Wing Shuriken# +13301#Huuma Giant Wheel Shuriken# +13302#Huuma Giant Wheel Shuriken# +13303#Huuma Blaze Shuriken# +13304#Huuma Calm Mind# +13305#Brave Huuma Front Shuriken# +13306#Valorous Huuma Front Shuriken# +13307#Glorious Shuriken# +13308#Unidentified Huuma Shuriken# +13309#Unidentified Huuma Shuriken# +13310#Eden Group Huuma Shuriken I# +13311#Huuma Shadow# +13312#Huuma Job Test# +13313#Huuma Swirling Petal# +13314#Huuma Fluttering Snow# +13315#Huuma Thunderstorm# +13316#Upg Huuma Shuriken# +13317#TE WoE Huuma# +13318#Unidentified Huuma Shuriken# +13319#Unidentified Huuma Shuriken# +13320#Unidentified Huuma Shuriken# +13322#Metal Huuma Shuriken# +13323#Unidentified Huuma Shuriken# +13324#Unidentified Huuma Shuriken# +13325#Unidentified Huuma Shuriken# +13326#Unidentified Huuma Shuriken# +13327#Crimson Huuma Shuriken# +13328#Vicious Mind Huuma Shuriken# +13329#Unidentified Huuma Shuriken# +13330#Unidentified Huuma Shuriken# +13331#Unidentified Huuma Shuriken# +13332#Huuma Shuriken of Dancing Petals# +13333#Unidentified Huuma Shuriken# +13334#Unidentified Huuma Shuriken# +13335#Unidentified Huuma Shuriken# +13336#Unidentified Huuma Shuriken# +13337#Illusion Huuma Fluttering Snow# +13338#Illusion Wing Shuriken# +13339#Unidentified Huuma Shuriken# +13340#Unidentified Huuma Shuriken# +13341#Unidentified Huuma Shuriken# +13342#Unidentified Huuma Shuriken# +13343#Unidentified Huuma Shuriken# +13345#Huuma Shuriken Clear# +13346#Grinder Huuma Shuriken# +13347#Unidentified Huuma Shuriken# +13400#Cutlus# +13401#Excalibur# +13402#Cutlas# +13403#Solar Sword# +13404#Platinum Shotel# +13405#Curved Sword# +13406#Unidentified Sword# +13407#Unidentified Sword# +13408#Unidentified Sword# +13409#Unidentified Sword# +13410#Valorous Gladiator Blade# +13411#Brave Gladiator Blade# +13412#Twin Edge of Naght Sieger# +13413#Twin Edge of Naght Sieger# +13414#Elemental Sword# +13415#Novice Falchion# +13416#Glorious Flamberge# +13417#Glorious Rapier# +13418#Glorious Holy Avenger# +13419#Unidentified Sword# +13420#Unidentified Sword# +13421#Ruber# +13422#Unidentified Sword# +13423#Eden Sabre I# +13424#Eden Sabre II# +13425#Unidentified Sword# +13426#Rental Cutlas# +13427#Rental Solar Sword# +13428#Unidentified Sword# +13431#Chrome Metal Sword# +13433#Unidentified Sword# +13434#Eden Group Saber III# +13435#Unidentified Sword# +13436#Unidentified Sword# +13437#Unidentified Sword# +13438#Unidentified Sword# +13439#TE WoE Sword# +13440#Ceremonial Sword# +13441#Thanatos Sword# +13442#Old Parasol# +13444#Pala# +13446#Unidentified Sword# +13447#Unidentified Sword# +13448#Unidentified Sword# +13449#Unidentified Sword# +13450#Unidentified Sword# +13451#Ru Blue Sword# +13452#Ru Gold Sword# +13453#Unidentified Sword# +13454#Crimson Sabre# +13455#Vicious Mind Sabre# +13456#Unidentified Sword# +13457#Unidentified Dagger# +13458#Unidentified Sword# +13459#Unidentified Sword# +13460#Sealed Magic Sword# +13461#Sealed Evil Sword# +13462#Sealed Maximum Sword# +13463#Unidentified Sword# +13464#Unidentified Sword# +13465#Unidentified Sword# +13466#Unidentified Sword# +13467#Unidentified Sword# +13468#Unidentified Sword# +13469#Illusion Immaterial Sword# +13470#Unidentified Sword# +13471#Unidentified Sword# +13472#Unidentified Sword# +13473#Unidentified Sword# +13483#Unidentified Sword# +13485#Red Lotus Sword# +13492#Unidentified Sword# +13493#Cannon Rapier-OS# +13495#Unidentified Sword# +13500#Life Insurrance Box# +13501#Experience Scroll Box# +13502#Refined Drooping Cat Box# +13503#Magestic Goat Box# +13504#Refined Deviruchi Hat Box# +13505#Executioner Box# +13506#Refined Bloody Axe Box# +13507#Tomahawk Box# +13508#Rudra Bow Box# +13509#Cutlas Box# +13510#Solar Sword Box# +13511#Swordbreaker Box# +13512#Mailbreaker Box# +13513#Moonlight Sword Box# +13514#Wrench Box# +13515#Grape Box# +13516#Royal Jelly Box# +13517#Yggdrasil Berry Box# +13518#Weapon Card Scroll Box# +13519#Armor Card Scroll Box# +13520#Helmet Card Scroll Box# +13521#Garment Card Scroll Box# +13522#Shield Card Scroll Box# +13523#Shoes Card Scroll Box# +13524#Accessory Card Scroll Box# +13525#Zeny Pet Egg Scroll Box# +13526#Pet Egg Scroll Box 12# +13527#Pet Egg Scroll Box 13# +13528#Pet Egg Scroll Box 14# +13529#Pet Egg Scroll Box 15# +13530#Pet Egg Scroll Box 16# +13531#Light Red Potion Box# +13532#Light Orange Potion Box# +13533#Light Yellow Potion Box# +13534#Light White Potion Box# +13535#Light Concentration Potion Box# +13536#Light Awakening Potion Box# +13537#Light Berserk Potion Box# +13538#Meteor Storm Scroll Box# +13539#Storm Gust Scroll Box# +13540#Lord of Vermilion Scroll Box# +13541#Lex Aeterna Scroll Box# +13542#Magnificat Scroll Box# +13543#Chemical Protection Helm Scroll Box# +13544#Chemical Protection Shield Scroll Box# +13545#Chemical Protection Armor Scroll Box# +13546#Chemical Protection Weapon Scroll Box# +13547#Repair Weapon Scroll Box# +13548#Big Bun Box# +13549#Pill Box# +13550#Fish Slice Box# +13551#Chewy Ricecake Box# +13552#Pastry Box# +13553#Dungeon Teleport Scroll Box(5)# +13554#Weapon Card Scroll Box# +13555#Weapon Card Scroll Box# +13556#Armor Card Scroll Box# +13557#Accessory Card Scroll Box# +13558#Weapon Card Scroll# +13559#Armor Card Scroll# +13560#Helmet Card Scroll# +13561#Garment Card Scroll# +13562#Shield Card Scroll# +13563#Shoes Card Scroll# +13564#Accessory Card Scroll# +13565#Weapon Card Scroll# +13566#Weapon Card Scroll# +13567#Armor Card Scroll# +13568#Accessory Card Scroll# +13569#PVP Teleport Scroll Box# +13570#Giant Fly Wing Box(50)# +13571#Giant Fly Wing Box(100)# +13572#Hwergelmir's Tonic Box(30)# +13573#Hwergelmir's Tonic Box(50)# +13574#Cooked Nine Tail's Tails Box(30)# +13575#Cooked Nine Tail's Tails Box(50)# +13576#Increase Agility Scroll Box(30)# +13577#Increase Agility Scroll Box(50)# +13578#Stew of Immortality Box(30)# +13579#Stew of Immortality Box(50)# +13580#Life Insurance Box(30)# +13581#Life Insurrance Box(50)# +13582#Convex Mirror Box(5)# +13583#Convex Mirror Box(30)# +13584#Blessing Scroll Box(30)# +13585#Blessing Scroll Box(50)# +13586#Adrenaline Rush Scroll Box(30)# +13587#Adrenaline Rush Scroll Box(50)# +13588#Assumptio Scroll Box(30)# +13589#Assumptio Scroll Box(50)# +13590#Aspersio Scroll Box(30)# +13591#Aspersio Scroll Box(50)# +13592#Steamed Desert Scorpions Box(30)# +13593#Steamed Desert Scorpions Box(50)# +13594#Wind Walk Scroll Box(30)# +13595#Wind Walk Scroll Box(50)# +13596#Dragon Breath Cocktail Box(30)# +13597#Dragon Breath Cocktail Box(50)# +13598#Battle Manual Box# +13599#Battle Manual Box(5)# +13600#Token of Siegfried Box(5)# +13601#Token of Siegfried Box(20)# +13602#Kafra Card Box(30)# +13603#Kafra Card Box(50)# +13604#Steamed Tongue Box(30)# +13605#Steamed Tongue Box(50)# +13606#Bubble Gum Box# +13607#Bubble Gum Box(5)# +13608#Megaphone Box# +13609#Megaphone Box(5)# +13610#Enriched Elunium Box(5)# +13611#Enriched Oridecon Box(5)# +13612#Arrest Handcuffs Box# +13613#Super Pet Egg Box 1# +13614#Super Pet Egg Box 2# +13615#Super Pet Egg Box 3# +13616#Super Pet Egg Box 4# +13617#Super Pet Egg 1# +13618#Super Pet Egg 2# +13619#Super Pet Egg 3# +13620#Super Pet Egg 4# +13621#Greed Scroll Box(30)# +13622#Greed Scroll Box(50)# +13623#Greed Scroll 100pc Box# +13624#Evasion Scroll Box# +13625#Concentration Scroll Box# +13626#Super Card Pet Egg Box 1# +13627#Super Card Pet Egg Box 2# +13628#Super Card Pet Egg Box 3# +13629#Super Card Pet Egg Box 4# +13630#Super Card Pet Egg 1# +13631#Super Card Pet Egg 2# +13632#Super Card Pet Egg 3# +13633#Super Card Pet Egg 4# +13634#Vigorgra Package Vol 1# +13635#Vigorgra Package Vol 2# +13636#Vigorgra Package Vol 3# +13637#Vigorgra Package Vol 4# +13638#Vigorgra Package Vol 5# +13639#Vigorgra Package Vol 6# +13640#Vigorgra Package Vol 7# +13641#Vigorgra Package Vol 8# +13642#Start your Journey Pack# +13643#Vigorgra Package Vol 10# +13644#Vigorgra Package Vol 11# +13645#Vigorgra Package Vol 12# +13646#Refined Infiltrator Box# +13647#Refined Muramasa Box# +13648#Refined Excalibur Box# +13649#Refined Combat Knife Box# +13650#Refined Dagger of Counter Box# +13651#Refined Kaiser Knuckle Box# +13652#Refined Pole Axe Box# +13653#Refined Mighty Staff Box# +13654#Refined Light Epsilon Box# +13655#Refined Ballista Box# +13656#Refined Sage's Diary Box# +13657#Refined Ashura Box# +13658#Refined Apple of Archer Box# +13659#Refined Bunny Band Box# +13660#Refined Sakkat Box# +13661#Refined Grand Circlet Box# +13662#Refined Elven Ears Box# +13663#Refined Romantic Flower Box# +13664#Refined Critical Ring Box# +13665#Refined Earring Box# +13666#Refined Ring Box# +13667#Refined Necklace Box# +13668#Refined Glove Box# +13669#Refined Brooch Box# +13670#Refined Rosary Box# +13671#Refined Safety Ring Box# +13672#Refined Vesper Core 01 Box# +13673#Refined Vesper Core 02 Box# +13674#Refined Vesper Core 03 Box# +13675#Refined Vesper Core 04 Box# +13676#Refined Drooping Cat Box# +13677#Refined Majestic Goat Box# +13678#Refined Deviruchi Hat Box# +13679#Refined Executioner Box# +13680#Bloody Axe Box# +13681#Tomahawk Box# +13682#Bow of Rudra Box# +13683#Cutlass Box# +13684#Refined Solar Sword Box# +13685#Sword Breaker Box# +13686#Mail Breaker Box# +13687#Moon Sword Box# +13688#Refined Wrench Box# +13689#Bok Choy Box# +13690#Green Maiden Cake Box# +13691#Freya's Clothes Box# +13692#Freya's Boots Box# +13693#Freya's Manteau Box# +13694#Freya Crown Box# +13695#Basic Battle Manual Box# +13696#Greater Battle Manual Box# +13697#Blessing Scroll Box(10)# +13698#Increase Agility Scroll Box(10)# +13699#Wind Walk Scroll Box(10)# +13700#Adrenaline Rush Scroll Box(10)# +13701#Pet Egg Scroll# +13702#Pet Egg Scroll# +13703#Pet Egg Scroll# +13704#Super Pet Egg# +13705#Super Pet Egg# +13706#Super Pet Egg# +13707#Super Pet Egg# +13708#Pet Egg Scroll E# +13709#BRO Package Box# +13710#Gym Pass Box# +13711#Small Life Potion Box(10)# +13712#Small Life Potion Box(30)# +13713#Small Life Potion Box(50)# +13714#Medium Life Potion Box(10)# +13715#Medium Life Potion Box(30)# +13716#Medium Life Potion Box(50)# +13717#Abrasive Box(5)# +13718#Abrasive Box(10)# +13719#Regeneration Potion Box(5)# +13720#Regeneration Box(10)# +13721#Dungeon Teleport Scroll Box(10)# +13722#Pecopeco Hairband Box# +13723#Red Glasses Box# +13724#Whisper Mask Box# +13725#Ramen Hat Box# +13726#Golden Box# +13727#Silver Box# +13728#Golden Key Box(1)# +13729#Golden Key Box(5)# +13730#Silver Key Box(1)# +13731#Silver Key Box(5)# +13734#Peco Peco Hairband Box# +13735#Red Glasses Box# +13736#Whisper Mask Box# +13737#Ramen Hat Box# +13738#Glass of Illusion Box(5)# +13739#Glass of Illusion Box(10)# +13740#Shadow Armor Scroll Box(5)# +13741#Shadow Armor Scroll Box(10)# +13742#Shadow Armor Scroll Box(30)# +13743#Holy Armor Scroll Box(5)# +13744#Holy Armor Scroll Box(10)# +13745#Holy Armor Scroll Box(30)# +13746#Small Defense Potion Box(10)# +13747#Small Defense Potion Box(30)# +13748#Small Defense Potion Box(50)# +13749#Big Defense Potion Box(10)# +13750#Big Defense Potion Box(30)# +13751#Big Defense Potion Box(50)# +13752#Small Magic Defense Potion Box(10)# +13753#Small Magic Defense Potion Box(30)# +13754#Small Magic Defense Potion Box(50)# +13755#Big Magic Defense Potion Box(10)# +13756#Big Magic Defense Potion Box(30)# +13757#Big Magic Defense Potion Box(50)# +13758#300% Battle Manual Box# +13759#Blue Herb Box# +13760#Honey Box# +13761#Empty Bottle Box# +13762#Royal Jelly Box# +13763#Premium Anniversary Coin Box# +13764#Novice Battle Manual Box# +13765#Fully Closed Certificate# +13766#Nagan Box# +13767#Refined Brocca Box# +13768#Refined Survivor's Rod Box# +13769#Refined Quadrille Box# +13770#Refined Great Axe Box# +13771#Bloody Roar Box# +13772#Refined Hardcover Book Box# +13773#Fire Brand Box# +13774#Immaterial Sword Box# +13775#Refined Unholy Touch Box# +13776#Refined Survivor's Manteau Box# +13777#Butterfly Mask Box# +13778#Refined Helmet of Orc Hero Box# +13779#Evil Wing Ears Box# +13780#Refined Dark Blinder Box# +13781#Refined Drooping Cat Box# +13782#Corsair Box# +13783#Bloody Iron Ball Box# +13784#Refined Spiritual Ring Box# +13785#Nagan Box# +13786#Refined Brocca Box# +13787#Refined Survivor's Rod Box# +13788#Refined Quadrille Box# +13789#Refined Great Axe Box# +13790#Bloody Roar Box# +13791#Hardcover Box# +13792#Fire Brand Box# +13793#Immaterial Sword Box# +13794#Unholy Touch Box# +13795#Refined Survivor's Manteau Box# +13796#Butterfly Mask Box# +13797#Refined Helmet of Orc Hero Box# +13798#Refined Wing of Diablo Box# +13799#Refined Dark Blinder Box# +13800#Refined Drooping Cat Box# +13801#Refined Corsair Box# +13802#Bloody Iron Ball Box# +13803#Refined Spiritual Ring Box# +13804#I Love You Firecracker Box# +13805#Whiteday Firecracker Box# +13806#Valentine's Day Firecracker Box# +13807#Birthday Firecracker Box# +13808#Xmas Firecracker Box# +13809#Blue Gemstone Box# +13810#Blue Potion Box# +13811#Food Box Vol 1# +13812#Food Box Vol 2# +13813#Food Box Vol 3# +13814#Healing Box# +13815#Knife Goblin Taming Box# +13816#Flail Goblin Taming Box# +13817#Hammer Goblin Taming Box# +13818#Red Deleter Taming Box# +13819#Diabolic Taming Box# +13820#Wanderer Taming Box# +13821#Green Apple Box# +13822#Barbeque Box# +13823#Meat Skewer Box# +13824#Spirit Liquor Box# +13825#Old Green Box# +13826#Power Box 1# +13827#Power Box 2# +13828#Resist Box 1# +13829#Resist Box 2# +13830#Stat Boost 1# +13831#Stat Boost 2# +13832#Stat Boost 3# +13833#Stat Boost 4# +13834#Dungeon Teleport Scroll II Box(5)# +13835#Dungeon Teleport Scroll II Box(10)# +13836#Steamed Tongue Box# +13837#Steamed Desert Scorpions Box# +13838#Dragon Breath Cocktail Box# +13839#Hwergelmir's Tonic Box# +13840#Cooked Nine Tail's Tails Box# +13841#Stew of Immortality Box# +13842#Payment Statement for Kafra Employee Box# +13843#Battle Manual Box# +13844#Heroic Stone Box# +13845#Mystery Travel Sack A# +13846#Mystery Travel Sack B# +13847#Mystery Travel Sack C# +13848#Mystery Travel Sack D# +13849#Yellow Butterfly Wing Box(5)# +13850#Yellow Butterfly Wing Box(10)# +13851#Green Butterfly Wing Box(5)# +13852#Green Butterfly Wing Box(10)# +13853#Red Butterfly Wing Box(5)# +13854#Red Butterfly Wing Box(10)# +13855#Blue Butterfly Wing Box(5)# +13856#Blue Butterfly Wing Box(10)# +13857#Toktok Candy Box(5)# +13858#Toktok Candy Box(10)# +13859#Directive Envelope A# +13860#Directive Envelope B# +13861#Small Battle Manual Box# +13862#Welcome to Midgard Pack# +13863#Repair Weapon Scroll Box(10)# +13864#Headgear Box# +13865#Observer Box# +13866#Flapping Angel Wing Box# +13867#Neko Mimi Box# +13868#Moonlight Flower Hat Box# +13869#Chick Hat Box# +13870#New Style Coupon Box# +13871#Magician Card Box# +13872#Acolyte Card Box# +13873#Archer Card Box# +13874#Swordman Card Box# +13875#Thief Card Box# +13876#Merchant Card Box# +13877#Clock Tower Card Box# +13878#Geffenia Card Box# +13879#Owl Card Box# +13880#Ghost Card Box# +13881#Nightmare Card Box# +13882#Curse Card Box# +13883#Sleep Card Box# +13884#Freeze Card Box# +13885#Stun Card Box# +13886#Silence Card Box# +13887#Blind Card Box# +13888#Chaos Card Box# +13889#Elunium Box# +13890#Oridecon Box# +13891#Fire Converter Box# +13892#Water Converter Box# +13893#Wind Converter Box# +13894#Earth Converter Box# +13895#Starter Pack# +13896#Mimic Summon Box(5)# +13897#Disguise Summon Box(5)# +13898#Alice Summon Box(5)# +13899#Mimic Summon Box(10)# +13900#Disguise Summon Box(10)# +13901#Alice Summon Box(10)# +13902#Fish Head Hat Box# +13903#Santa Poring Hat Box# +13904#Bell Ribbon Box# +13905#Hardcore Set Box# +13906#Kitty Set Box# +13907#Softcore Set Box# +13908#Class Set Card Album# +13909#MVP Hunting Box# +13910#Brewing Set Box# +13911#Sweet Pet Scroll# +13912#Party Blessing Box# +13913#Party Increase Agility Box(10)# +13914#Party Assumptio Box(10)# +13915#Love Angel Magic Powder Box# +13916#Squirrel Magic Powder Box# +13917#Gogo Magic Powder Box# +13918#Koneko Hat Box# +13919#Gigantic Majestic Goat Box# +13920#Satanic Chain Box# +13921#Antique Smoking Pipe Box# +13922#Bunny Ears Hat Box# +13923#Dark Randgris Helm Box# +13924#Large Orc Hero Helm Box# +13925#Mouse Scroll# +13926#Crusader Card Box# +13927#Alchemist Card Box# +13928#Rogue Card Box# +13929#BardDancer Card Box# +13930#Sage Card Box# +13931#Monk Card Box# +13932#Sylph Box# +13933#Undine Box# +13934#Salamander Box# +13935#Soul Box# +13936#Gnome Box# +13937#Robo Eye Box# +13938#Maiden's Twin Ribbon Box# +13939#Diadem Box# +13940#WoE Teleport Scroll 100 Box# +13941#Valentine Scroll# +13942#Love Angel Magic Powder Box 30 Days# +13943#Squirrel Magic Powder Box 30 Days# +13944#Gogo Magic Powder Box 30 Days# +13945#Sword Package# +13946#Magician Package# +13947#Acolyte Package# +13948#Archer Package# +13949#Merchant Package# +13950#Thief Package# +13951#Western Outlaw Box# +13952#Lever Action Rifle Box# +13953#All in One Ring Box# +13954#Spiritual Tunic Box# +13955#Recuvative Armor Box# +13956#Shell of Resistance Box# +13957#Silf Manteau Box# +13958#Refresh Shoes Box# +13959#Crunch Toast Box# +13960#Identification Box# +13961#Mochi Box# +13962#Defolty Doll Hat Box# +13963#Glaris Doll Hat Box# +13964#Sorin Doll Hat Box# +13965#Telling Doll Hat Box# +13966#Vinit Doll Hat Box# +13967#W Doll Hat Box# +13968#Bubble Gum Box# +13969#Lucky Clip Box# +13970#Iron Box# +13971#Steel Box# +13972#Coal Box# +13973#Poison Bottle Box(30)# +13974#Fisherman Scroll# +13975#Diary Magic Powder Box# +13976#Mini Heart Magic Powder Box# +13977#Freshman Magic Powder Box# +13978#Kid Magic Powder Box# +13979#Magic Magic Powder Box# +13980#Jangu Magic Powder Box# +13981#Diary Magic Powder Box 30 Days# +13982#Mini Heart Magic Powder Box 30 Days# +13983#Freshman Magic Powder Box 30 Days# +13984#Kid Magic Powder Box 30 Days# +13985#Magic Magic Powder Box 30 Days# +13986#JJangu Magic Powder Box 30 Days# +13987#Rough Oridecon Box(5)# +13988#Rough Oridecon Box(50)# +13989#Acid Bomb Box(10)# +13990#Job Battle Manual Box(10)# +13991#Tiger Mask Box# +13992#Neko Mimi Box# +13993#Alice Hat Box# +13994#Old Blue Box# +13995#Old Blue Box# +13996#Big Bun Box(100)# +13997#Big Bun Box(500)# +13998#Giant Fly Wing Box 500# +13999#Pill Box(100)# +14000#Pill Box(500)# +14001#Recruit Siege Supply Box# +14002#Advanced WoE Supply Box# +14003#Elite Siege Supply Box# +14004#Poison Bottle Box(10)# +14005#Poison Bottle Box(5)# +14006#Evolved Drooping Cat Box# +14007#Evolved Rabbits Headband Box# +14008#Evolved Helmet of Orc Hero Box# +14009#Love Angel Magic Powder Box# +14010#Squillroll Magic Powder Box# +14011#Gogo Magic Powder Box# +14012#Love Angel Magic Powder Box 30 Days# +14013#Squillroll Magic Powder Box 30 Days# +14014#Gogo Magic Powder Box 30 Days# +14015#Western Outlaw Box# +14016#Lever Action Rifle Box# +14017#All in One Ring Box# +14018#Spiritual Tunic Box# +14019#Recuvative Armor Box# +14020#Shell of Resistance Box# +14021#Silf Manteau Box# +14022#Refresh Shoes Box# +14023#Crunch Toast Box# +14024#Robo Eye Box# +14025#Maiden's Twin Ribbon Box# +14026#Diadem Box# +14027#Fish Head Hat Box# +14028#SantaPoring Cap Box# +14029#Bell Ribbon Box# +14030#Mimic Summoning Box(5)# +14031#Disguise Summoning Box(5)# +14032#Alice Summoning Box(5)# +14033#Mimic Summoning Box(10)# +14034#Disguise Summoning Box(10)# +14035#Alice Summoning Box(10)# +14036#New Style Box# +14037#Repair Weapon Scroll Box# +14038#Repair Weapon Scroll Box(10)# +14039#Hockey Mask Box# +14040#Observer Box# +14041#Yellow Butterfly Wing Box(5)# +14042#Yellow Butterfly Wing Box(10)# +14043#Green Butterfly Wing Box(5)# +14044#Green Butterfly Wing Box(10)# +14045#Red Butterfly Wing Box(5)# +14046#Red Butterfly Wing Box(10)# +14047#Blue Butterfly Wing Box(5)# +14048#Blue Butterfly Wing Box(10)# +14049#Candy Box(5)# +14050#Candy Box(10)# +14051#Dungeon Teleport Scroll II Box(5)# +14052#Dungeon Teleport Scroll II Box(10)# +14053#Little Angel Doll Box# +14054#Triple Porings Hat Box# +14055#Nagan Box# +14056#Refined Brocca Box# +14057#Refined Survivor's Rod Box# +14058#Refined Quadrille Box# +14059#Refined Great Axe Box# +14060#Refined Bloody Roar Box# +14061#Refined Hardcover Book Box# +14062#Fire Brand Box# +14063#Immaterial Sword Box# +14064#Refined Unholy Touch Box# +14065#Refined Survivor's Manteau Box# +14066#Butterfly Mask Box# +14067#Refined Helmet of Orc Hero Box# +14068#Refined Wing of Diablo Box# +14069#Refined Dark Blinder Box# +14070#Refined Drooping Cat Box# +14071#Refined Corsair Box# +14072#Refined Bloody Iron Ball Box# +14073#Refined Spiritual Ring Box# +14074#Wine Glass of Illusion Box(5)# +14075#Glass of Illusion Box(10)# +14076#Scroll of Shadow Armor Box(5)# +14077#Scroll of Shadow Armor Box(10)# +14078#Scroll of Shadow Armor Box(30)# +14079#Scroll of Holy Armor Box(5)# +14080#Scroll of Holy Armor Box(10)# +14081#Scroll of Holy Armor Box(30)# +14082#Small Defense Potion Box(10)# +14083#Small Physical Defense Potion Box(30)# +14084#Small Physical Defense Potion Box(50)# +14085#Big Defense Potion Box(10)# +14086#Large Physical Defense Potion Box(30)# +14087#Large Physical Defense Potion Box(50)# +14088#Small Magic Defense Potion Box(10)# +14089#Small Magical Defense Potion Box(30)# +14090#Small Magical Defense Potion Box(50)# +14091#Big Magic Defense Potion Box(10)# +14092#Large Magical Defense Potion Box(30)# +14093#Large Magical Defense Potion Box(50)# +14094#Flapping Angel Wings Box# +14095#Neko Mimi Box# +14096#Moonlight Flower Hat Box# +14097#Chick Hat Box# +14098#Pecopeco Hairband Box# +14099#Red Glasses Box# +14100#Whisper Mask Box# +14101#Ramen Hat Box# +14102#Dungeon Teleport Scroll Box(5)# +14103#Gym Membership Card Box# +14104#Small Life Potion Box(10)# +14105#Small Life Potion Box(30)# +14106#Small Life Potion Box(50)# +14107#Medium Life Potion Box(10)# +14108#Medium Life Potion Box(30)# +14109#Medium Life Potion Box(50)# +14110#Abrasive Box(5)# +14111#Abrasive Box(10)# +14112#Regeneration Potion Box(5)# +14113#Regeneration Potion Box(10)# +14114#Dungeon Teleport Scroll Box(10)# +14115#Refined Infiltrator Box# +14116#Refined Muramasa Box# +14117#Refined Excalibur Box# +14118#Combat Knife Box# +14119#Counter Dagger Box# +14120#Refined Kaiser Knuckle Box# +14121#Refined Mighty Staff Box# +14122#Light Epsilon Box# +14123#Refined Ballista Box# +14124#Diary of Great Sage# +14125#Asura Box# +14126#Apple of Archer Box# +14127#Bunny Band Box# +14128#Refined Sakkat Box# +14129#Refined Grand Circlet Box# +14130#Elven Ears Box# +14131#Steel Flower Box# +14132#Critical Ring Box# +14133#Earring Box# +14134#Ring Box# +14135#Necklace Box# +14136#Glove Box# +14137#Brooch Box# +14138#Rosary Box# +14139#Safety Ring Box# +14140#Refined Vesper Core 01 Box# +14141#Refined Vesper Core 02 Box# +14142#Refined Vesper Core 03 Box# +14143#Refined Vesper Core 04 Box# +14144#1 Hour Package Vol 1# +14145#1 Hour Package Vol 2# +14146#1 Hour Package Vol 3# +14147#1 Hour Package Vol 4# +14148#1 Hour Package Vol 5# +14149#1 Hour Package Vol 6# +14150#2 Hours Package Vol 1# +14151#2 Hours Package Vol 2# +14152#2 Hours Package Vol 3# +14153#2 Hours Package Vol 4# +14154#2 Hours Package Vol 5# +14155#2 Hours Package Vol 6# +14156#Battle Manual Box# +14157#Insurance Package# +14158#Bubble Gum Box# +14159#Steamed Tongue Box(10)# +14160#Steamed Desert Scorpions Box(10)# +14161#Dragon Breath Cocktail Box(10)# +14162#Hwergelmir's Tonic Box(10)# +14163#Nine Tail Dish Box(10)# +14164#Stew of Immortality Box(10)# +14165#Kafra Card Box(10)# +14166#Giant Fly Wing Box# +14167#Neuralizer Box# +14168#Convex Mirror Box# +14169#Blessing Scroll Box(10)# +14170#Increase Agility Scroll Box(10)# +14171#Aspersio Scroll Box(10)# +14172#Assumptio Scroll Box(10)# +14173#Wind Walk Scroll Box(10)# +14174#Adrenaline Rush Scroll Box(10)# +14175#Megaphone Box(10)# +14176#Enriched Elunium Box(50)# +14177#Enriched Oridecon Box(10)# +14178#Token of Siegfried Box(10)# +14179#Giant Fly Wing Box(50)# +14180#Giant Fly Wing Box(100)# +14181#Hwergelmir's Tonic Box(30)# +14182#Hwergelmir's Tonic Box(50)# +14183#Cooked Nine Tail's Tails Box(30)# +14184#Cooked Nine Tail's Tails Box(50)# +14185#Increase Agility Scroll Box(30)# +14186#Increase Agility Scroll Box(50)# +14187#Stew of Immortality Box(30)# +14188#Stew of Immortality Box(50)# +14189#Life Insurance Box(30)# +14190#Life Insurrance Box(50)# +14191#Convex Mirror Box(5)# +14192#Convex Mirror Box(30)# +14193#Blessing Scroll Box(30)# +14194#Blessing Scroll Box(50)# +14195#Adrenaline Rush Scroll Box(30)# +14196#Adrenaline Rush Scroll Box(50)# +14197#Level 5 Assumptio Scroll Box(30)# +14198#Level 5 Assumptio Scroll Box(50)# +14199#Aspersio Scroll Box(30)# +14200#Aspersio Scroll Box(50)# +14201#Steamed Desert Scorpions Box(30)# +14202#Steamed Desert Scorpions Box(50)# +14203#Wind Walk Scroll Box(30)# +14204#Wind Walk Scroll Box(50)# +14205#Dragon Breath Cocktail Box(30)# +14206#Dragon Breath Cocktail Box(50)# +14207#Battle Manual Box# +14208#Battle Manual Box(5)# +14209#Token of Siegfried Box(5)# +14210#Token of Siegfried Box(20)# +14211#Kafra Card Box(30)# +14212#Kafra Card Box(50)# +14213#Steamed Tongue Box(30)# +14214#Steamed Tongue Box(50)# +14215#Bubble Gum Box# +14216#Bubble Gum Box(5)# +14217#Megaphone Box# +14218#Megaphone Box(5)# +14219#Enriched Elunium Box(5)# +14220#Enriched Oridecon Box(5)# +14221#Mystical Amplification Scroll(10)# +14222#Mystical Amplification Scroll(30)# +14223#Mystical Amplification Box(50)# +14224#Quagmire Scroll Box(10)# +14225#Quagmire Scroll Box(30)# +14226#Quagmire Scroll Box(50)# +14227#Staff of Healing Box# +14228#Fraxinus Box# +14229#Cherry Blossom Scroll# +14230#Note Headphones Box# +14231#Novice Breastplate Boxes# +14232#Yggdrasilberry10 Box# +14233#Dead Branch Box(10)# +14234#Dead Branch25 Box# +14235#Battle Manual Box[2]# +14236#Steamed Tongue 60 Box# +14237#Steamed Desert Scorpions 60 Box# +14238#Stew of Immortality 60 Box# +14239#Dragon Breath Cocktail 60 Box# +14240#Hwergelmir's Tonic 60 Box# +14241#Nine Tail Dish 60 Box# +14242#Beholder Ring Box# +14243#Hallow Ring Box# +14244#Clamorous Ring Box# +14245#Chemical Ring Box# +14246#Insecticide Ring Box# +14247#Fisher Ring Box# +14248#Decussate Ring Box# +14249#Bloody Ring Box# +14250#Satanic Ring Box# +14251#Dragon Ring Box# +14252#Neutral Ring Box2# +14253#Hallow Ring Box2# +14254#Clamorous Ring Box2# +14255#Chemical Ring Box2# +14256#Insecticide Ring Box2# +14257#Fisher Ring Box2# +14258#Decussate Ring Box2# +14259#Bloody Ring Box2# +14260#Satanic Ring Box2# +14261#Dragon Ring Box2# +14262#Diary Magic Powder Box# +14263#Mini Heart Magic Powder Box# +14264#Freshman Magic Powder Box# +14265#Kid Magic Powder Box# +14266#Magic Magic Powder Box# +14267#JJangu Magic Powder Box# +14268#Diary Magic Powder Box(1 month)# +14269#Mini Heart Magic Powder Box(1 month)# +14270#Freshman Magic Powder Box(1 month)# +14271#Kid Magic Powder Box(1 month)# +14272#Magic Magic Powder Box(1 month)# +14273#JJangu Magic Powder Box(1 month)# +14274#Mystical Amplification Scroll Box(10)# +14275#Mystical Amplification Scroll Box(30)# +14276#Mystical Amplification Scroll Box(50)# +14277#Quagmire Scroll Box(10)# +14278#Quagmire Scroll Box(30)# +14279#Quagmire Scroll Box(50)# +14280#Staff of Healing Box# +14281#Fraxinus Box# +14282#Emperium Box# +14283#Written Oath of Marriage Box# +14284#Neo Muffler Box# +14285#Neo Valkyrie Shield Box# +14286#Neo Skull Ring Box# +14287#Barricade Repair Kit# +14288#Guardian Stone Repair Kit# +14289#New Clothing Dye Coupon Box# +14290#Original Clothing Dye Coupon Box# +14291#Clothing Dye Coupon Box# +14292#Clothing Dye Coupon Box II# +14293#Mercenary Contract Box# +14294#Mercenary Contract Box(5)# +14295#Mercenary Contract Box(10)# +14296#Angel Scroll# +14297#Devil Scroll# +14298#Surprise Scroll# +14299#Leaves of Grass Box# +14300#Mask of Ifrit Box# +14301#Ear of Ifrit Box# +14302#Filir Hat Box# +14303#Angel Spirit Box# +14304#Scuba Mask Box# +14305#Neko Mimi Kafra Band Box# +14306#RWC Special Scroll# +14307#RWC Limited Scroll# +14308#Ardor Scroll# +14309#Gangster Scarf Box# +14310#Ninja's Scroll Box# +14311#Angel Spirit Box# +14312#Gangster Scarf Box# +14313#Ninja's Scroll Box# +14314#Phreeoni Scroll Box# +14315#Ghostring Scroll Box# +14316#Love Scroll# +14317#White Lady Scroll# +14318#Antenna Box# +14319#Tiraya Bonnet Box# +14320#Balloon Hat Box# +14321#Holy Sabre Box# +14322#Book of Prayer Box# +14323#Phenomena Whip Box# +14324#Staff of Darkness Box# +14325#Monk Knuckle Box# +14326#Mace of Madness Box# +14327#Spear of Excellent Box# +14328#Bow of Evil Box# +14329#Katar of Speed Box# +14330#Sharpshooter Revolver Box# +14331#Guild Member Hat Box# +14332#Party Member Hat Box# +14333#Boyfriend Hat Box# +14334#Friend Hat Box# +14335#Girlfriend Hat Box# +14336#Holy Marcher Hat Box# +14337#Guild Member Hat Box# +14338#Party Member Hat Box# +14339#Boyfriend Hat Box# +14340#Friend Hat Box# +14341#Girlfriend Hat Box# +14342#Holy Marcher Hat Box# +14343#Spiked Scarf Box# +14344#Rainbow Scarf Box# +14345#Animal Scroll# +14346#Brazilian Flag Hat Box# +14347#Greed Scroll Box(20)# +14348#Greed Scroll Box(50)# +14349#Mental Potion Box(20)# +14350#Mental Potion Box(50)# +14351#Tyr's Blessing Box(20)# +14352#Tyr's Blessing Box(50)# +14353#Greed Scroll Box(20)# +14354#Greed Scroll Box(50)# +14355#Mental Potion Box(20)# +14356#Mental Potion Box(50)# +14357#Tyr's Blessing Box(20)# +14358#Tyr's Blessing Box(50)# +14359#Taogun Ka Scroll Box# +14360#Mistress Scroll Box# +14361#Orc Hero Scroll Box# +14362#Orc Lord Scroll Box# +14363#Heart Scroll# +14364#JOB Battle Manual Box# +14365#JOB Battle Manual Box(5)# +14366#JOB Battle Manual Box(10)# +14367#JOB Battle Manual Box# +14368#JOB Battle Manual Box(5)# +14369#JOB Battle Manual Box(10)# +14370#Goddess of Blessing Box# +14371#Angel of Blessing Box# +14372#Snow Powder Box# +14373#Small Hearts Box# +14374#Extravagant Firework Box# +14375#Celestial Axe Box# +14376#Angelring Potion Box# +14377#Shout Megaphone Box# +14378#Dungeon Teleport Scroll 3 Box# +14379#Love Daddy Box# +14380#Anubis Headgear Box# +14381#Staff of Piercing Box# +14382#Lich's Bone Wand Box# +14383#Long Horn Box# +14384#Hunting Spear Box# +14385#Book of the Dead Box# +14386#Staff of Destruction Box# +14387#Crest of the Rider Box# +14388#Mythril Magic Manteau Box# +14389#Sniping Suit Box# +14390#Orlean's Glove Box# +14391#Spiritual Ring Box# +14392#Variant Shoes Box# +14393#Universal Amulet Box# +14394#Cute Santa Hat Box# +14395#Captain Hat Box# +14396#Red Minstrel Hat Box# +14397#Bonus Box 01# +14398#Bonus Box 02# +14399#Bonus Box 03# +14400#Bonus Box 04# +14401#Bonus Box 05# +14402#Bonus Box 06# +14403#Bonus Box 07# +14404#Bonus Box 08# +14405#Bonus Box 09# +14406#Bonus Box 10# +14407#Xmas Scroll# +14408#Solar Scroll# +14409#Twin Pompom By JB Box# +14410#Ship Captain Hat Box# +14411#Red Minstrel Hat Box# +14412#Bonus Box 01# +14413#Bonus Box 02# +14414#Bonus Box 03# +14415#Bonus Box 04# +14416#Bonus Box 05# +14417#Bonus Box 06# +14418#Bonus Box 07# +14419#Bonus Box 08# +14420#Bonus Box 09# +14421#Bonus Box 10# +14422#Shaman's Document Box# +14423#Broken Sword Box# +14424#Bijofnil Feather Box# +14425#Pagdayaw Box# +14426#Fortune Sword Box# +14427#Ice Pick Box# +14428#Kamaitachi Box# +14429#Spirited Guitar Box# +14430#Doom Slayer Box# +14431#Huuma Blaze Shuriken Box# +14432#Odin's Blessing Box# +14433#Ring of Flame Lord Box# +14434#Ring of Resonance Box# +14435#Student Cap Box# +14436#Ulle's Cap Box# +14437#Sphinx Hat Box# +14438#Red Lotus Sword Box# +14439#Power of Thor Box# +14440#Dice Hat Box# +14441#Tiger King Doll Hat Box# +14442#Vagabond Wolf King Helmet Box# +14443#Pizza Hat Box# +14444#Ice Cream Hat Box# +14447#Scallywag's Hat Box# +14448#Necromancer's Hood Box# +14449#Huginn's First Egg# +14450#Huginn's Second Egg# +14451#Huginn's Third Egg# +14452#Huginn's Fourth Egg# +14453#Huginn's Fifth Egg# +14454#Huginn's Sixth Egg# +14455#Munin's First Egg# +14456#Munin's Second Egg# +14457#Munin's Third Egg# +14458#Munin's Fourth Egg# +14459#Rabbit Magic Hat Box# +14460#Chinese Wedding Veil Box# +14461#Asara Fairy Hat Box# +14462#Dark Randgris Helm Box# +14463#Purple Cowboy Hat Box# +14464#Dark Randgris Helm Box# +14465#Purple Cowboy Hat Box# +14466#Valentine's Emblem Box# +14467#Carnival Hat Box# +14468#Carnival Circlet Box# +14469#Cow Tail Scroll# +14470#Nightmare Terror Exchange Coupon Box# +14471#Loli Ruri Exchange Coupon Box# +14472#Goblin Leader Exchange Coupon Box# +14473#Incubus Exchange Coupon Box# +14474#Miyabi Doll Exchange Coupon Box# +14475#Giant Whisper Exchange Coupon Box# +14476#Evil Nymph Exchange Coupon Box# +14477#Medusa Exchange Coupon Box# +14478#Stone Shooter Exchange Coupon Box# +14479#Marionette Exchange Coupon Box# +14480#Leaf Cat Exchange Coupon Box# +14481#Dullahan Exchange Coupon Box# +14482#Shinobi Exchange Coupon Box# +14483#Golem Exchange Coupon Box# +14484#Civil Servant Exchange Coupon Box# +14485#Academy Badge Box# +14486#Clergyman Grad Hat Box# +14487#Magician Grad Hat Box# +14488#Blue Pajamas Hat Box# +14489#Pink Pajamas Hat Box# +14490#Shark Hat Box# +14491#Sting Hat Box# +14492#Shark Hat Box# +14493#Sting Hat Box# +14494#Samambaia Box# +14495#Aquarius Diadem Box# +14496#Aquarius Crown Box# +14497#Pisces Diadem Box# +14498#Pisces Crown Box# +14499#Peacock Feather Box# +14500#Life Insurrance Certificate# +14501#Shadow Shield Box# +14503#Garden Party Gift# +14504#Speed Amplifier Circuit# +14505#1 Hour Dungeon Ticket# +14506#Dungeon Ticket# +14507#Red Egg# +14508#Zeny Pet Egg Scroll# +14509#Light Concentration Potion# +14510#Light Awakening Potion# +14511#Light Berserk Potion# +14512#Meteor Storm Scroll# +14513#Storm Gust Scroll# +14514#Lord of Vermilion Scroll# +14515#Lex Aeterna Scroll# +14516#Magnificat Scroll# +14517#Chemical Protection Helm Scroll# +14518#Chemical Protection Shield Scroll# +14519#Chemical Protection Armor Scroll# +14520#Chemical Protection Weapon Scroll# +14521#Repair Weapon Scroll# +14522#Big Bun# +14523#Pill# +14524#Superb Fish Slice# +14525#Chewy Ricecake# +14526#Pastry# +14527#Dungeon Teleport Scroll# +14528#PVP Teleport Scroll# +14529#Greed Scroll# +14530#Evasion Scroll# +14531#Concentration Scroll# +14532#Basic Battle Manual# +14533#[Event] Advanced Battle Manual# +14534#Small Life Potion# +14535#Medium Life Potion# +14536#Abrasive# +14537#Regeneration Potion# +14538#Glass of Illusion# +14539#Shadow Armor Scroll# +14540#Holy Armor Scroll# +14541#Small Defense Potion# +14542#Big Defense Potion# +14543#Small Magic Defense Potion# +14544#Big Magic Defense Potion# +14545#Battle Manual X3# +14546#I Love You Firecracker# +14547#Whiteday Firecracker# +14548#Valentine's Day Firecracker# +14549#Birthday Firecracker# +14550#Xmas Firecracker# +14551#Fried Grasshopper Legs# +14552#Seasoned Sticky Webfoot# +14553#Bomber Steak# +14554#Grape Juice Herbal Tea# +14555#Autumn Red Tea# +14556#Honey Herbal Tea# +14557#Steamed Crab Nippers# +14558#Assorted Seafood# +14559#Clam Soup# +14560#Frog Egg Squid Ink Soup# +14561#Smooth Noodle# +14562#Tentacle Cheese Gratin# +14563#Honey Grape Juice# +14564#Chocolate Mousse Cake# +14565#Fruit Mix# +14566#Fried Monkey Tails# +14567#Mixed Juice# +14568#Fried Sweet Potato# +14569#Knife Goblin Ring# +14570#Flail Goblin Ring# +14571#Hammer Goblin Ring# +14572#Holy Marble# +14573#Red Burning Stone# +14574#Wanderer's Skull# +14575#Lutie Lady's Pancake# +14576#Mastela Fruit Wine# +14577#Spicy Fried Bao# +14578#Steamed Bat Wing in Pumpkin# +14579#Green Salad# +14580#Fried Scorpion Tails# +14581#Dungeon Teleport Scroll II# +14582#Yellow Butterfly Wing# +14583#Green Butterfly Wing# +14584#Red Butterfly Wing# +14585#Blue Butterfly Wing# +14586#Sparkling Candy# +14587#Repair Weapon Scroll# +14588#Party Blessing Scroll# +14589#Party Increase Agility Scroll# +14590#Party Assumptio Scroll# +14591#WoE Teleport Scroll# +14592#Job Battle Manual# +14593#Mystical Amplification Scroll# +14594#Quagmire scroll# +14595#Unsealed Magic Spell# +14596#Pierre's Treasurebox# +14597#Phreeoni Scroll# +14598#Ghostring Scroll# +14599#Greed Scroll# +14600#Mental Potion# +14601#Blessing of Tyr# +14602#Taogun Ka Scroll# +14603#Mistress Scroll# +14604#Orc Hero Scroll# +14605#Orc Lord Scroll# +14606#JOB Battle Manual# +14607#Luxurious Western Food# +14608#Manchu-Han Imperial Feast# +14609#Spoiled Cuisine# +14610#Luxury Christmas Box# +14611#Medium Defense Potion# +14612#Medium Magic Defense Potion# +14613#2012 RWC Egg# +14614#Special Defense Potion# +14615#Green Egg# +14616#STR Biscuit Stick# +14617#VIT Biscuit Stick# +14618#AGI Biscuit Stick# +14619#INT Biscuit Stick# +14620#DEX Biscuit Stick# +14621#LUK Biscuit Stick# +14623#Golden Treasure Box# +14624#Blue Scroll# +14625#Buddah Scroll# +14626#Indigo Scroll# +14627#Christmas Scroll# +14628#Costume Festival Box# +14629#Costume Enchant Stone Box# +14630#Evil Incarnation# +14643#Violet Scroll# +14644#Super Pet Egg# +14645#Beelzebub's Wing# +14646#Orlean's Full Course# +14649#Golden Egg Scroll# +14663#Sealed Dark Lord Scroll# +14664#Bi Hwang Scroll# +14665#Scroll of Love# +14666#Scroll of Wealth# +14667#Scroll of Health# +14672#Steel Fighter (20Lv) Egg# +14673#Steel Fighter (25Lv) Scroll# +14674#Cup Of Boza# +14675#Shadow Stat Box# +14676#RJC2013 Card Book# +14679#Article Sealed Storm Scroll# +14680#Cup Of Mintlemon# +14681#Costume Enchant Stone Box2# +14682#Sealed Beelzebub Scroll# +14689#Sealed Kiel-D-01 Scroll# +14690#Carnival Surprise Egg# +14691#Canned Banana Box# +14692#Spicy Rice Cake Box# +14693#Hot Dog Fort Box# +14694#Ferris Wheel Biscuit Box# +14695#Costume Enchant Stone Box3# +14696#Sealed Gloom Under Night Scroll# +14704#Gemstone Shadow Box# +14705#Sealed Fallen Bishop Hibram Scroll# +14706#Pirate Eyepatch Box# +14713#Sealed Ifrit Scroll# +14714#Elemental Drop Box# +14717#2013 RWC Scroll# +14718#Sealed Turtle General Scroll# +14723#(Limited)Neuralizer I# +14724#(Limited)Neuralizer II# +14725#Sealed Bacsojin Scroll# +14726#Grid Shadow Box# +14727#Heal Shadow Box# +14728#Hiding Shadow Box# +14729#Cloaking Shadow Box# +14730#Costume Festival Box II# +14731#Teleport Shadow Box# +14732#Steal Shadow Box# +14733#Sealed Pharaoh Scroll# +14735#Costama Partners# +14739#Sealed General Egnigem Cenia Scroll# +14740#Sealed Vesper Scroll# +14745#Hong Running Egg# +14746#Strongman Costume Box# +14747#Food Costume Box# +14748#Elven Fashion Box# +14758#Safe To Refine Scroll# +14759#Shadow Armor Weapon box# +14765#Limited JOB Battle Manual# +14766#Power Booster# +14771#Garden Festival Gift# +14780#Soul Plunger Scroll# +14781#Happy Balloon Scroll# +14799#[3Hours]Battle Manual & Bubble Gum# +14806#Sales Booth Part-time Voucher# +14807#Buying Store Part-time Voucher# +14826#Dungeon Travel Ticket# +14902#Zonda's Pass# +14903#Zonda's Pass Box(1 Day)# +14904#Zonda's Pass Box(10 Days)# +14905#Zonda's Pass Box(30 Days)# +14908#[Event] Korea Rice Cake# +15000#Bone Plate# +15001#Unidentified Armor# +15002#Rune Plate# +15003#Unidentified Armor# +15004#Unidentified Armor# +15005#Unidentified Armor# +15006#Unidentified Armor# +15007#Unidentified Armor# +15008#Unidentified Armor# +15009#[Event] Genesis Armor I# +15010#Eden Group Uniform II# +15011#Eden Group Uniform III# +15012#Puente Robe# +15013#Claire Suits# +15014#Ebone Armor# +15015#Upgrade Adventure Suit# +15016#Upgrade Coat# +15017#Upgrade Saint Robe# +15018#Upgrade Tight# +15019#Upgrade Thief Clothes# +15020#Upgrade Mail# +15021#Upgrade Formal Suit# +15022#Unidentified Armor# +15023#Unidentified Armor# +15024#Army Padding# +15025#Golden Rod Robe# +15026#Aqua Robe# +15027#Crimson Robe# +15028#Forest Robe# +15029#Robe Of Affection# +15030#Robe of Judgement# +15031#Eden Group Armor# +15032#Tidung# +15033#Tutorial Mantle# +15034#Tutorial Mantle# +15036#Ur's Plate# +15037#Peuz's Plate# +15038#Sapha's Cloth# +15039#Nab's Cloth# +15040#Prisoner's Uniform# +15041#Boitata Armor# +15042#White Wing Suit# +15043#Black Wing Suit# +15044#Green Operation Coat# +15045#Unidentified Armor# +15046#WoE Plate# +15047#WoE Suits# +15048#WoE Robe# +15049#Unidentified Armor# +15050#Unidentified Armor# +15051#Bakonawa Scale Armor# +15052#Bakonawa Scale Armor(Bayani)# +15053#Special Ninja Suit# +15054#Ninja Scale Armor# +15055#Tenebris Latitantes# +15056#Special Ninja Suit# +15057#Unidentified Armor# +15058#Unidentified Armor# +15060#Unidentified Armor# +15061#Egir Armor# +15062#TE WoE Coat# +15063#TE WoE Mail# +15064#TE WoE Magic Coat# +15065#Amesha Spenta# +15066#Engraved Armor# +15067#Rune Suit# +15068#Advanced Angelic Protection# +15069#Unidentified Armor# +15070#Unidentified Armor# +15071#Valkyrian Robe# +15072#Nectar Suit# +15073#Anti-magic Suit# +15074#Geffen Magic Robe# +15075#Unidentified Armor# +15076#Unidentified Armor# +15077#Unidentified Armor# +15078#Unidentified Armor# +15079#Unidentified Armor# +15080#Unidentified Armor# +15081#Unidentified Armor# +15082#Unidentified Armor# +15083#Unidentified Armor# +15084#Unidentified Armor# +15085#Unidentified Armor# +15086#Unidentified Armor# +15087#Azure Dragon Armor# +15088#School Uniform# +15089#Lounge Suit# +15090#Armor Of Gray# +15091#Robe Of Gray# +15092#Unidentified Armor# +15093#Hero Plate# +15094#Hero Magic Coat# +15095#Hero Judgement Shawl# +15096#Hero Trade Mail# +15097#Hero Hidden Cloth# +15098#Hero Target Suit# +15099#Unidentified Armor# +15100#Frozen Breastplate# +15101#Harden Breastplate# +15102#Hunter Mail# +15103#Kirin Armor# +15104#Fisherman's Mail# +15105#Kaftan# +15106#Engineer Mail# +15107#Entomologist Mail# +15108#Venomous Insect Armor# +15109#Unidentified Armor# +15110#Supplement Part Str# +15111#Upgrade Part - Plate# +15112#Military Mail# +15113#Exorcist Mail# +15114#Unidentified Armor# +15115#Unidentified Armor# +15116#Airship¡®s Armor# +15117#Felrock¡®s Armor# +15118#PRO 10th Armor# +15119#PRO 10th Robe# +15120#PRO 10th Shoes# +15121#Sarah's Battle Robe# +15122#Botany Mail# +15123#Unidentified Armor# +15124#Holy Father Mail# +15125#Female Diver's Suit# +15126#Doram Suit# +15127#Unidentified Hairband# +15128#Excelion Suit# +15129#Luxurious Doram Suit# +15130#Dragon Mail# +15132#Unidentified Armor# +15133#Unidentified Armor# +15134#Vicious Cloth# +15135#Dragon Cloth# +15136#Unidentified Armor# +15137#Unidentified Armor# +15138#Egir Armour# +15139#Shepherd Clothes# +15140#Natural Clothes# +15141#Unidentified Armor# +15142#Orca Clothes# +15143#Vermin Cloth# +15144#Agriculture Clothes# +15145#Evil Dragon Armor# +15146#Flattery Robe# +15147#Abusive Robe# +15148#Unidentified Armor# +15149#Unidentified Armor# +15150#White Shirt# +15151#White Eco Shirt# +15152#Unidentified Armor# +15153#Unidentified Armor# +15154#Unidentified Armor# +15155#Unidentified Armor# +15156#Elegant Doram Suit# +15157#Unidentified Armor# +15158#Unidentified Armor# +15159#Unidentified Armor# +15160#Unidentified Armor# +15161#Unidentified Armor# +15162#Unidentified Armor# +15163#Agenda Robe# +15164#Consultation Robe# +15165#Pure White Marching Hat# +15166#Rosary's Necklace# +15167#Unidentified Armor# +15169#Kardui Robe# +15170#Unidentified Armor# +15171#Unidentified Armor# +15172#Unidentified Armor# +15173#Unidentified Armor# +15174#Surfer Swimsuit# +15175#Fire Dragon Armor# +15176#Vigilante Suit# +15177#Elemental Robe# +15178#Golden Ninja Suit# +15179#Mine Worker's Vest# +15180#Hippie Clothes# +15181#Unidentified Armor# +15182#Unidentified Armor# +15183#Unidentified Armor# +15184#Unidentified Armor# +15185#Unidentified Armor# +15186#Unidentified Armor# +15187#Unidentified Armor# +15188#Unidentified Armor# +15189#Fallen Warrior Armor# +15190#Unidentified Armor# +15191#Unidentified Armor# +15192#Unidentified Armor# +15193#Unidentified Armor# +15194#Unidentified Armor# +15195#Illusion Puente Robe# +15196#Sea Dragon Armor# +15204#Abyss Dress# +15205#Medical Scrubs# +15208#Unidentified Armor# +15209#Drakes Coat# +15210#[Rental] Surfer Swimsuit# +15212#YSF01 Plate# +15213#Unidentified Armor# +15237#Unidentified Armor# +15241#Unidentified Armor# +15242#Unidentified Armor# +15243#Unidentified Armor# +15244#Unidentified Armor# +15245#Unidentified Armor# +15246#True Hunting Mail# +15247#Short-term Hunting Mail# +15249#Antonio's Coat# +15250#Unidentified Armor# +15273#Unidentified Armor# +15274#Unidentified Armor# +15275#Unidentified Armor# +15276#Unidentified Armor# +15277#Unidentified Armor# +15278#Overwelm Str Armor# +15279#Overwelm Int Armor# +15280#Unidentified Shadow Armor# +15282#Unidentified Armor# +15283#Mighty Black Threaded Armor# +15343#Supplement Part Str# +15344#Upgrade Part - Plate# +15346#Overwelm Luk Armor# +15347#Overwelm Vit Armor# +15348#Unidentified Armor# +15349#Unidentified Armor# +15352#Nature Dress# +15353#Overwelm Agi Armor# +15354#Overwelm Dex Armor# +15374#Unidentified Armor# +15375#Unidentified Armor# +15376#Illusion Armor Type A# +15377#Illusion Armor Type B# +15378#Lava Leather Armor# +15379#Lava Leather Suits# +15380#Lava Leather Robe# +15381#Unidentified Armor# +15383#Unidentified Armor# +15384#Ritual Robe# +15386#Unidentified Armor# +15387#Unidentified Armor# +15388#Unidentified Armor# +15389#Unidentified Garment# +15390#Regia Hunting Mail# +15391#Red Dragon Plate# +15392#Green Dragon Plate# +15393#Gold Dragon Plate# +15394#Purple Dragon Plate# +15395#Blue Dragon Plate# +15396#Silver Dragon Plate# +15397#Soutane of Strength# +15398#Soutane of Agility# +15399#Soutane of Vitality# +15400#Soutane of Dexterity# +15401#Soutane of intelligence# +15402#Soutane of Luck# +15405#Fafnir Scale# +15410#High Adventurer Suit# +15420#Icefall Dress# +15840#Costume Bio Protector# +15843#Unidentified Hat# +15851#Ribbon# +15858#Costume Choco Banana# +15877#Unidentified Hat# +15881#Unidentified Hat# +15882#Rhythm Hairband# +15889#Costume Boitata Cap# +16000#Erde# +16001#Red Square Bag# +16002#Unidentified Mace# +16003#Carga Mace# +16004#Eden Mace I# +16005#Eden Mace II# +16006#Unidentified Mace# +16007#Ephemeral Mjolnir# +16008#Rental Wrench# +16010#Red Ether Bag# +16013#Mace of Judgement# +16014#Eden Group Mace3# +16015#Cat Club# +16016#Tuna# +16017#Bloody Cross# +16018#Empowered Mace of Judgement# +16019#Unidentified Mace# +16020#Bellum Stunner# +16021#Bellum Flail# +16022#Nemesis# +16023#Metal Mace# +16024#Quadrille# +16025#TE WoE Mace# +16026#RWC Memory Mace# +16027#Evil Slayer Destroyer Hammer# +16028#Thanatos Hammer# +16029#Noble Cross# +16030#Pile Bunker S# +16031#Pile Bunker P# +16032#Pile Bunker T# +16033#Robot's Arm# +16036#Ru Blue Mace# +16037#Ru Gold Mace# +16038#Unidentified Mace# +16039#Spoon# +16040#Crimson Mace# +16041#Vicious Mind Mace# +16042#Unidentified Mace# +16043#Unidentified Mace# +16044#Unidentified Mace# +16045#Unidentified Mace# +16046#Unidentified Mace# +16047#Unidentified Mace# +16048#Unidentified Mace# +16049#Unidentified Mace# +16050#Unidentified Mace# +16051#Valkyrie Hammer# +16052#Unidentified Mace# +16053#Unidentified Mace# +16054#Unidentified Mace# +16055#Unidentified Mace# +16056#Unidentified Mace# +16057#Unidentified Mace# +16058#Unidentified Mace# +16059#Unidentified Mace# +16060#Liquor Bottle# +16061#Unidentified Mace# +16062#Unidentified Mace# +16063#Illusion Long Mace# +16064#Unidentified Mace# +16065#Illusion Iron Driver# +16066#Unidentified Mace# +16075#Unidentified Mace# +16076#Unidentified Mace# +16082#Unidentified Mace# +16087#Unidentified Mace# +16088#Saphir Hall-OS# +16089#Ultio-OS# +16092#Unidentified Mace# +16093#Unidentified Mace# +16094#Unidentified Mace# +16095#Unidentified Mace# +16096#Unidentified Mace# +16099#Rubber Hammer# +16100#Angry Mouth Box# +16101#Lucky Box# +16102#Claymore Box# +16103#Jamadhar Box# +16104#Two-Handed Axe Box# +16105#Lance Box# +16106#Huuma Giant Wheel Shuriken Box# +16107#Orcish Axe Box# +16108#Spike Box# +16109#Giant Encyclopedia Box# +16110#Fist Box# +16111#Guitar Box# +16112#Rante Whip Box# +16113#Damascus Box# +16114#Flamberge Box# +16115#Stunner Box# +16116#Lucky Box# +16117#Claymore Box# +16118#Jamadhar Box# +16119#Two-Handed Axe Box# +16120#Lance Box# +16121#Huuma Giant Wheel Shuriken Box# +16122#Orcish Axe Box# +16123#Pike Box# +16124#Giant Encyclopedia Box# +16125#Fist Box# +16126#Guitar Box# +16127#Rante Whip Box# +16128#Damascus Box# +16129#Flamberge Box# +16130#Stunner Box# +16131#Lady Tanee Doll Box# +16132#Lunatic Hat Box# +16133#Sunshine Staff Box# +16134#Frog Prince Hat Box# +16135#Satan's Bone Hat Box# +16136#Goddess of Blessing Box# +16137#Angel of Blessing Box# +16138#Snow Powder Box# +16139#Small Hearts Box# +16140#Extravagant Firework Box# +16141#Gold Earring Box# +16142#Green Jewel Bag Box# +16143#Fashion Glasses Box# +16144#Hairband of Stars Box# +16145#Tassel for Durumagi Box# +16146#Pet Soul Ring Box# +16147#Beautiful Badges Box# +16148#Jade Trinket Box# +16149#Summer Fan Box# +16150#Ring of Death Box# +16151#Queen's Coronet Box# +16152#Afro Box# +16153#Masked Ball Box# +16154#Spring Box# +16155#Horn of Hell Box# +16156#Poring Exchange Ticket Box# +16157#Drops Exchange Ticket Box# +16158#Poporing Exchange Ticket Box# +16159#Lunatic Exchange Ticket Box# +16160#Picky Exchange Ticket Box# +16161#Peco Peco Exchange Ticket Box# +16162#Savage Babe Exchange Ticket Box# +16163#Spore Exchange Ticket Box# +16164#Poison Spore Exchange Ticket Box# +16165#Chonchon Exchange Ticket Box# +16166#Steel Chonchon Exchange Ticket Box# +16167#Sky Petite Exchange Ticket Box# +16168#Deviruchi Exchange Ticket Box# +16169#Isis Exchange Ticket Box# +16170#Smokie Exchange Ticket Box# +16171#Dokkaebi Exchange Ticket Box# +16172#Baby Desert Wolf Exchange Ticket Box# +16173#Yoyo Exchange Ticket Box# +16174#Sohee Exchange Ticket Box# +16175#Rocker Exchange Ticket Box# +16176#Hunter Fly Exchange Ticket Box# +16177#Orc Warrior Exchange Ticket Box# +16178#Bapho Jr. Exchange Ticket Box# +16179#Munak Exchange Ticket Box# +16180#Bongun Exchange Ticket Box# +16181#Christmas Goblin Exchange Ticket Box# +16182#Rice Cake Exchange Ticket Box# +16183#Zherlthsh Exchange Ticket Box# +16184#Alice Exchange Ticket Box# +16185#Raven Cap Box# +16186#Baby Dragon Hat Box# +16187#Angry Mouth Box# +16188#Magic Rabbit Hat Box# +16189#Side Cap Box# +16190#Magic Rabbit Hat Box# +16191#Side Cap Box# +16192#Quati Hat Box# +16193#Tucan Hat Box# +16194#Jaguar Hat Box# +16195#Halloween Scroll# +16196#Freya's Spiritual Shield Box# +16197#Freya's Spiritual Shield Box# +16198#Freya's Spiritual Shield Box# +16199#Freya's Spiritual Shield Box# +16200#Freya's Spiritual Robe Box# +16201#Freya's Spiritual Robe Box# +16202#Freya's Spiritual Robe Box# +16203#Freya's Spiritual Robe Box# +16204#Freya's Spiritual Scarf Box# +16205#Freya's Spiritual Scarf Box# +16206#Freya's Spiritual Scarf Box# +16207#Freya's Spiritual Scarf Box# +16208#Freya's Spiritual Sandals Box# +16209#Freya's Spiritual Sandals Box# +16210#Freya's Spiritual Sandals Box# +16211#Freya's Spiritual Sandals Box# +16212#Freya's Spiritual Circlet Box# +16213#Freya's Spiritual Circlet Box# +16214#Freya's Spiritual Circlet Box# +16215#Freya's Spiritual Circlet Box# +16216#Freya's Spiritual Bracelet Box# +16217#Freya's Spiritual Bracelet Box# +16218#Freya's Spiritual Bracelet Box# +16219#Freya's Spiritual Bracelet Box# +16220#Marionette Accessory Box# +16221#Whisper Accessory Box# +16222#Incubus Accessory Box# +16223#Marionette Accessory Box# +16224#Whisper Accessory Box# +16225#Incubus Accessory Box# +16226#Aries Diadem Box# +16227#Aries Crown Box# +16228#RJC Flower Hairband Box# +16229#Crimson Rose Box# +16230#Taurus Diadem Box# +16231#Taurus Crown Box# +16232#Hairband of Reginleif Box# +16233#Festival Grand Circlet Box# +16234#Festival Bunny Band Box# +16235#Octopus Hat Box# +16236#Leaf Cat Hat Box# +16237#Fur Seal Hat Box# +16238#Wild Rose Hat Box# +16239#Saci's Hat Box# +16240#Whikebain's Black Ears Box# +16241#Chicken Hat Box# +16242#Whikebine's Black Cat Ears Box# +16243#Chicken Hat Box Box# +16244#Dolor Hat Box# +16245#Taiwan April Scroll# +16246#Crown of Deceit Box# +16247#Dragon Arhat Mask Box# +16248#Tiger Arhat Mask Box# +16249#Knight's Gift Box# +16250#Valkyrie's Gift Box# +16251#Gemini Diadem Box# +16252#Gemini Crown Box# +16253#Rabbit Scroll# +16254#Energizing Potion Box# +16255#Energizing Potion Box# +16256#Rag DS Helm Box# +16257#Disbelief Scroll# +16258#HD Bradium Box(5)# +16259#HD Carnium Box(5)# +16260#HD Bradium Box(10)# +16261#HD Carnium Box(10)# +16262#HD Bradium Box(5)# +16263#HD Carnium Box(5)# +16264#HD Bradium Box(10)# +16265#HD Carnium Box(10)# +16266#Red Beret Box# +16267#HE Battle Manual Box# +16268#HE Bubble Gum Box# +16269#Cancer Diadem Box# +16270#Cancer Crown Box# +16271#Hockey Mask Box# +16272#Observer Box# +16273#All in One Ring Box# +16274#Spiritual Tunic Box# +16275#Recuvative Armor Box# +16276#Shell of Resistance Box# +16277#Silf Manteau Box# +16278#Refresh Shoes Box# +16279#Crunch Toast Box# +16280#Western Outlaw Box# +16281#Lever Action Rifle Box# +16282#Staff of Healing Box# +16283#Fraxinus Box# +16284#Guild Member Hat Box# +16285#Party Member Hat Box# +16286#Boyfriend Hat Box# +16287#Girlfriend Hat Box# +16288#Friend Hat Box# +16289#Claymore Box# +16290#Two-Handed Axe Box# +16291#Lance Box# +16292#Jamadhar Box# +16293#Huuma Giant Wheel Shuriken Box# +16294#Orcish Axe Box# +16295#Spike Box# +16296#Giant Encyclopedia Box# +16297#Fist Box# +16298#Guitar Box# +16299#Rante Whip Box# +16300#Damascus Box# +16301#Flamberge Box# +16302#Stunner Box# +16303#Angry Mouth Box# +16304#Devilring Incarnation Scroll# +16305#Upgrade Guard Box# +16306#Reinforcement Guard Box# +16307#Upgrade Buckler Box# +16308#Reinforcement Buckler Box# +16309#Upgrade Shield Box# +16310#Reinforcement Shield Box# +16311#Upgrade Shoes Box# +16312#Reinforcement Shoes Box# +16313#Upgrade Boots Box# +16314#Reinforcement Boots Box# +16315#Upgrade Greave Box# +16316#Reinforcement Greaves Box# +16317#Upgrade Hood Box# +16318#Reinforcement Hood Box# +16319#Upgrade Muffler Box# +16320#Reinforcement Muffler Box# +16321#Upgrade Manteau Box# +16322#Reinforcement Manteau Box# +16323#Upgrade Clip Box# +16324#Reinforcement Clip Box# +16325#Rune Hairband Box# +16326#Rune Cloth Circlet Box# +16327#Upgrade Adventure Suit Box# +16328#Reinforcement Adventure Suit Box# +16329#Upgrade Coat Box# +16330#Reinforcement Coat Box# +16331#Upgrade Saint Robe Box# +16332#Reinforcement Saint Robe Box# +16333#Upgrade Tights Box# +16334#Reinforcement Tight Box# +16335#Upgrade Thief Cloth Box# +16336#Reinforcement Thief Clothes Box# +16337#Upgrade Mail Box# +16338#Reinforcement Mail Box# +16339#Upgrade Formal Dress Box# +16340#Reinforcement Formal Suit Box# +16341#Greed Clip Box# +16343#Leo Crown Box# +16344#Leo Diadem Box# +16345#Leo Crown Box# +16346#Leo Diadem Box# +16347#Shooting Star Box# +16348#Bloody Spear Box# +16349#Ahlspiess Box# +16350#Healing of Staff Box# +16351#Anti Demon Shield# +16352#Shooting Star Box# +16353#Bloody Spear Box# +16354#Ahlspiess Box# +16355#Healing of Staff Box# +16356#Anti Demon Shield Box# +16357#Satanic Bone Helm Box# +16358#Mobile Pet Random Box# +16359#7th Years Random Box# +16360#Desert Prince Box# +16361#Desert Prince Box# +16362#Sigrun's Wings Box# +16363#Sigrun's Wings Box# +16364#Sleipnir R Box# +16365#Megingjord R Box# +16366#Brisingamen R Box# +16367#Mjolnir R Box# +16368#Virgo Crown Box# +16369#Freya Ring R Box# +16370#Freya Ring R Box# +16371#Unidentified Scroll# +16372#Four Leaf Clover Box# +16373#Four Leaf Clover in Mouth R Box# +16374#Bubble Gum In Mouth Box# +16375#Chewing Bubble Gum R Box# +16376#Odin's Recall 7days Box# +16377#Odin's Recall 30days Box# +16378#Siege Teleport Scroll Gold 30Box# +16379#Siege Teleport Scroll II Box(10)# +16380#Siege Teleport Scroll II Box(30)# +16381#Siege Teleport Scroll Box(10)# +16382#Siege Map Teleport Scroll Box(30)# +16383#Siege Map Teleport Scroll II(10)# +16384#Siege Map Teleport Scroll II(30)# +16385#Four Leaf Clover in Mouth Box II# +16386#Four Leaf Clover in Mouth R Box III# +16387#Four Leaf Clover in Mouth R Box II# +16388#Four Leaf Clover in Mouth R Box III# +16389#Chewing Bubble Gum R Box II# +16390#Chewing Bubble Gum R Box III# +16391#Chewing Bubble Gum R Box II# +16392#Chewing Bubble Gum R Box III# +16393#HD Oridecon Box(5)# +16394#HD Oridecon Box(10)# +16395#HD Elunium Box(5)# +16396#HD Elunium Box(10)# +16397#Virgo Diadem Box# +16398#Virgo Crown Box# +16399#Virgo Diadem Box# +16400#Purified Oridecon Box(5)# +16401#Purified Oridecon Box(10)# +16402#Purified Eluminium Box(5)# +16403#Purified Eluminium Box(10)# +16405#Midgard Coin Box# +16406#Midgard Coin Box# +16407#Freya Ring R Box# +16408#Freya Ring R Box# +16409#Chrysanthemum Scroll# +16410#Qing Headdress Box# +16412#Ice Ear Wing Box# +16414#Turtle Hat Box# +16415#Turtle Hat Box# +16416#Taurus Diadem Box# +16417#Taurus Crwon Box# +16418#Giant Fly Wing Box 500# +16419#Greed Scroll Box(30)# +16420#Adventurer Pack# +16421#Marriage Covenant Box# +16422#Majestic Goat Box# +16424#Executioner Box# +16425#Cutlas Box# +16426#Moonlight Sword Box# +16427#Spanner Box# +16428#Solar Sword Box# +16429#Tomahawk Box# +16430#Bow of Rudra Box# +16431#Pole Axe Box# +16432#Battle Manual Package Box(A)# +16433#Battle Manual Package Box(A)# +16434#Battle Manual Package Box(B)# +16435#Battle Manual Package Box(B)# +16436#Libra Crown Box# +16437#Libra Crown Box# +16438#Libra Diadem Box# +16439#Libra Diadem Box# +16440#Filir Wings Box# +16441#Filir Wings Box# +16442#Shaman Hat Box# +16443#Shaman Hat Box# +16444#Crown Cap Box# +16445#Crown Cap Box# +16446#Pegasus Scroll# +16447#Scorpio Crown Box# +16448#Scorpio Diadem Box# +16449#Scorpio Crown Box# +16450#Scorpio Diadem Box# +16451#Crow Hat Box# +16452#Rage of Luster Box# +16453#Triangle Rune Cap Box# +16454#Rage of Luster Box# +16455#Triangle Rune Cap Box# +16456#Bride's Ribbon Scroll# +16457#Bough Scroll# +16458#2009 Love Dad Box# +16459#Ant Queen Crown Box# +16460#Ant Queen Crown Box# +16461#Red Wing Hat Box# +16462#Red Wing Hat Box# +16463#NoFear Belt Box# +16464#NoFear Shoes Box# +16465#NoFear Underwear Box# +16466#Egg of Light Scroll# +16467#Christmas Card Box# +16468#Christmas Card Box# +16469#Christmas Card Box# +16470#Christmas Card Box# +16481#[Event] Small Life Potion Box(10)# +16483#[Event] Abrasive Box(10)# +16492#Bunny Band Box# +16504#[Event] Bubble Gum Box(10)# +16505#[Event] Steamed Tongue Box(10)# +16506#[Event] Steamed Desert Scorpions Box(10)# +16507#[Event] Dragon Breath Cocktail Box(10)# +16508#[Event] Hwergelmir's Tonic Box(10)# +16509#[Event] Cooked Nine Tail's Tails Box(10)# +16510#[Event] Stew of Immortality Box(10)# +16514#[Event] Blessing Scroll Box(10)# +16515#[Event] Increase Agility Scroll Box(10)# +16543#Snowman Hat Box# +16544#Snowman Hat Box# +16554#Elven Sunglasses Box# +16555#Premium Reset Stone Box# +16556#Premium Reset Stone Box# +16563#Superior BattleManual Box# +16564#Dragon Scroll# +16565#Capricon Crown Box# +16566#Capricon Crown Box# +16567#Capricon Diadem Box# +16568#Capricon Diadem Box# +16569#Swimming Scroll# +16570#Muscle Knights Travel Box# +16573#Skull Hood Box# +16574#Skull Hood Box# +16575#2011 Pagdayaw Box# +16576#Kyatsume's Mirror Scroll# +16578#Steam Scroll# +16579#Phoenix Scroll# +16580#Lacma Box# +16581#Lacma Box# +16582#Red Bunny Band Box# +16584#Sloth Hat Box# +16585#Sloth Hat Box# +16586#Duneyrr Hat Box# +16587#Duneyrr Hat Box# +16588#Thoughtful Hat Box# +16589#Thoughtful Hat Box# +16590#Thoughtful Hat Box# +16591#Summer Scroll 2# +16592#Family Hat Box# +16593#Family Hat Box# +16596#Helm of Abyss Box# +16597#Helm of Abyss Box# +16598#Energizing Potion Box II# +16599#Energizing Potion Box II# +16601#Blue Arara Hat Box# +16602#Blue Arara Hat Box# +16603#Drooping Boto Box# +16604#Drooping Boto Box# +16605#Tendrilion Hat Box# +16606#Tendrilion Hat Box# +16607#Bubble Gum(2pc) Box# +16608#Bubble Gum(4pc) Box# +16615#Charming Ribbon Box# +16616#Charming Ribbon Box# +16619#Yellow Bunnyband Box# +16620#Yellow Bunnyband Box# +16621#Pink Bunnyband Box# +16622#Pink Bunnyband Box# +16623#Green Bunnyband Box# +16624#Green Bunnyband Box# +16625#Half Asprika Box# +16626#Half Megingjord Box# +16627#Half Brisingamen Box# +16628#Half Brynhild Box# +16629#Grand Peco Headdress Box# +16630#Grand Peco Headdress Box# +16631#Aributa Scroll# +16632#Closed Mind Box# +16633#Bubble Gum+ Box# +16634#Spiked Scarf BoxII# +16635#Rainbow Scarf BoxII# +16636#Spiked Scarf BoxIII# +16637#Rainbow Scarf BoxIII# +16638#Life Ribbon Box# +16639#Life Ribbon BoxII# +16640#Life Ribbon BoxIII# +16641#Spiked Scarf Box# +16642#Rainbow Scarf Box# +16643#Spiked Scarf BoxII# +16644#Rainbow Scarf BoxII# +16645#Spiked Scarf BoxIII# +16646#Rainbow Scarf BoxIII# +16647#Life Ribbon Box# +16648#Life Ribbon BoxII# +16649#Life Ribbon BoxIII# +16650#Gemini Diadem Box# +16651#Gemini Crown Box# +16652#Flame Scroll# +16653#75% Battle Manual Box(10)# +16655#Rapid Life Potion Box(10)# +16656#Rapid Life Potion Box(10)# +16657#Rapid Life Potion Box(10)# +16658#Rapid Life Potion Box(10)# +16659#Zodiac Diadem Pack# +16660#Spiritual Auger Box# +16661#Spiritual Auger Box# +16662#Aries Diadem Box# +16663#Aries Crown Box# +16666#Magic Candy Box(10)# +16667#Magic Candy Box(10)# +16671#Magic Candy Box(10)# +16672#Magic Candy Box(10)# +16673#Libra Scroll# +16674#New Insurance Box# +16675#Splash Scroll# +16676#Zodiac Crown Pack# +16677#Bargain Hunter's Catalog Box(10)# +16678#Bargain Hunter's Catalog Box(50)# +16679#Bargain Hunter's Catalog Box(10)# +16680#Bargain Hunter's Catalog Box(50)# +16681#BR Independence Scrol# +16682#Boarding Halter Box# +16683#Boarding Halter 30days Box# +16689#Garuda Hat Box# +16690#Garuda Hat Box# +16692#Alice Hat Box# +16693#Crescent Helm Box# +16694#Crescent Helm Box# +16695#Dragon Skull Box# +16696#Dragon Skull Box# +16697#Drooping Bunny Box# +16698#Drooping Bunny Box# +16699#Evolved Blue Fish Box# +16700#Evolved Blue Fish Box# +16701#Evolved Pair of Red Ribbon Box# +16702#Evolved Pair of Red Ribbon Box# +16703#Evolved Pipe Box# +16704#Evolved Pipe Box# +16705#Hibiscus Box# +16706#Hibiscus Box# +16707#Jumping Poring Box# +16708#Jumping Poring Box# +16709#Kettle Hat Box# +16710#Kettle Hat Box# +16711#Magic Eyes Box# +16712#Magic Eyes Box# +16713#Mini Propeller Box# +16714#Mini Propeller Box# +16715#Puppy Hat Box# +16716#Puppy Hat Box# +16717#Sheep Hat Box# +16718#Sheep Hat Box# +16719#Tiger Mask Box# +16720#Vacation Hat Box# +16721#Vacation Hat Box# +16722#Vane Hairpin Box# +16723#Vane Hairpin Box# +16724#Vanilmirth Hat Box# +16725#Vanilmirth Hat Box# +16726#Water Lily Crown Box# +16727#Water Lily Crown Box# +16728#Pink Beanie Hat# +16729#Pink Beanie Hat# +16730#Green Ribbon Box# +16731#Green Ribbon Box# +16732#Gray Deviruchi Hat Box# +16733#Gray Deviruchi Hat Box# +16734#Blue Drooping Cat Box# +16735#Blue Drooping Cat Box# +16736#Fantastic Wig Box# +16737#Fantastic Wig Box# +16738#Yellow Magician Hat Box# +16739#Yellow Magician Hat Box# +16740#Seagod's Protection Box# +16741#Hairtail 1hour Box# +16742#Hairtail 7days Box# +16743#Marlin 1hour Box# +16744#Marlin 7days Box# +16745#Saurel 1hour Box# +16746#Saurel 7days Box# +16747#Tuna 1hour Box# +16748#Tuna 7days Box# +16749#Malang Snow Crab 1hour Box# +16750#Malang Snow Crab 7days Box# +16751#Spotty Eel 1hour Box# +16752#Spotty Eel 7days Box# +16753#Blessed Oridecon Box# +16754#F Blessed Oridecon Box# +16755#Blessed Elunium Box# +16756#F Blessed Elunium Box# +16757#Halloween Scroll# +16758#Umbala Spirit Box# +16759#Umbala Spirit Box# +16760#Umbala Spirit Box# +16761#Umbala Spirit Box# +16762#Umbala Spirit 7days Box# +16763#Seagod's Protection Box2# +16764#Seagod's Protection Box3# +16765#Octopus Hstick Box# +16766#Octopus Hstick Box2# +16767#Octopus Hstick Box3# +16768#Neuralizer Box# +16769#Neuralizer Box# +16770#Silvervine Box(10)# +16771#Silvervine Box(40)# +16774#Asgard Scroll# +16776#Bargain Hunter's Catalog Box(10)# +16777#Bargain Hunter's Catalog Box(50)# +16778#Steamed Tongue Box(10)# +16779#Steamed Tongue Box(50)# +16780#Steamed Desert Scorpions Box(10)# +16781#Steamed Desert Scorpions Box(50)# +16782#Stew of Immortality Box(10)# +16783#Stew of Immortality Box(50)# +16784#Dragon Breath Cocktail Box(10)# +16785#Dragon Breath Cocktail Box(50)# +16786#Hwergelmir's Tonic Box(10)# +16787#Hwergelmir's Tonic Box(50)# +16788#Cooked Nine Tail's Tails Box(10)# +16789#Cooked Nine Tail's Tails Box(50)# +16790#Life Insurrance Certificate Box(10)# +16791#Life Insurrance Certificate Box(50)# +16792#Kafra Card Box(10)# +16793#Kafra Card Box(50)# +16794#Giant Fly Wing Box(10)# +16795#Giant Fly Wing Box(100)# +16796#Token of Siegfried Box(5)# +16797#Token of Siegfried Box(20)# +16798#Convex Mirror Box(5)# +16799#Convex Mirror Box(30)# +16800#Blessing Scroll Box(10)# +16801#Blessing Scroll Box(50)# +16802#Increase Agility Scroll Box(10)# +16803#Increase Agility Scroll Box(50)# +16804#Adrenaline Rush Scroll Box(10)# +16805#Adrenaline Rush Scroll Box(50)# +16806#Aspersio Scroll Box(10)# +16807#Aspersio Scroll Box(50)# +16808#Battle Manual Box# +16809#Battle Manual Box(10)# +16810#Bubble Gum Box# +16811#Bubble Gum Box(10)# +16812#Megaphone Box# +16813#Megaphone Box(10)# +16814#Enriched Elunium Box(10)# +16815#Enriched Elunium Box(5)# +16816#Enriched Oridecon Box(10)# +16817#Enriched Oridecon Box(5)# +16818#Neuralizer Box# +16819#Abrasive Box(5)# +16820#Abrasive Box(10)# +16821#Dungeon Teleport Scroll Box(5)# +16822#Dungeon Teleport Scroll Box(10)# +16823#Gym Pass Box# +16824#Regeneration Potion Box(5)# +16825#Regeneration Potion Box(10)# +16827#Small Life Potion Box(10)# +16828#Small Life Potion Box(50)# +16829#Medium Life Potion Box(10)# +16830#Medium Life Potion Box(50)# +16831#Glass of Illusion Box(5)# +16832#Glass of Illusion Box(10)# +16833#Shadow Armor Scroll Box(5)# +16834#Shadow Armor Scroll Box(30)# +16835#Holy Armor Scroll Box(5)# +16836#Holy Armor Scroll Box(30)# +16837#Dungeon Teleport Scroll II Box(5)# +16838#Dungeon Teleport Scroll II Box(10)# +16839#Toktok Candy Box(5)# +16840#Toktok Candy Box(10)# +16841#Weapon Repair Scroll Box(5)# +16842#Weapon Repair Scroll Box(10)# +16843#Hairstyle Coupon Box# +16844#Alice Summon Book Box(5)# +16845#Alice Summon Book Box(10)# +16846#Mimic Summon Book Box(5)# +16847#Mimic Summon Book Box(10)# +16848#Disguise Summon Book Box(5)# +16849#Disguise Summon Book Box(10)# +16850#Mystical Amplification Scroll Box(10)# +16851#Mystical Amplification Scroll Box(50)# +16852#Quake Scroll Box(10)# +16853#Quake Scroll Box(50)# +16854#Clothing Dye Coupon Box# +16855#Original Clothing Dye Coupon Box# +16856#Greed Scroll Box(20)# +16857#Greed Scroll Box(50)# +16858#Mental Potion Box(20)# +16859#Mental Potion Box(50)# +16860#Tyr's Blessing Box(20)# +16861#Tyr's Blessing Box(50)# +16862#JOB Battle Manual Box# +16863#JOB Battle Manual Box(10)# +16864#Siege Map Teleport Box(10)# +16865#Siege Map Teleport Box(30)# +16866#Siege Map Teleport II Box(10)# +16867#Siege Map Teleport II Box(30)# +16868#HD Bradium Box(5)# +16869#HD Bradium Box(10)# +16870#HD Cranium Box(5)# +16871#HD Cranium Box(10)# +16872#HD Oridecon Box(5)# +16873#HD Oridecon Box(10)# +16874#HD Elunium Box(5)# +16875#HD Elunium Box(10)# +16876#Rapid Life Potion Box(10)# +16877#Magic Candy Box(10)# +16878#Umbala Spirit Box# +16879#Muramasa Box# +16880#Excalibur Box# +16881#Combat Knife Box# +16882#Dagger of Counter Box# +16883#Mighty Staff Box# +16884#Light Epsilon Box# +16885#Ballista Box# +16886#Sage's Diary Box# +16887#Ashura Box# +16888#Brooch Box# +16889#Safety Ring Box# +16890#Pecopeco Headband Box# +16891#Nagan Box# +16892#Brocca Box# +16893#Quadrille Box# +16894#Fire Brand Box# +16895#Butterfly Mask Box# +16896#Orc Hero's Helm Box# +16897#Drooping Kitty Box# +16898#Bloody Iron Ball Box# +16899#Hockey Mask Box# +16900#Observer Box# +16901#All in One Ring Box# +16902#Spiritual Tunic Box# +16903#Recuperative Armor Box# +16904#Shelter Resistance Box# +16905#Sylphid Manteau Box# +16906#Refresh Shoes Box# +16907#Wasteland's Outlaw Box# +16908#Lever Action Rifle Box# +16909#Claymore Box# +16910#Jamadhar Box# +16911#Two-Handed Axe Box# +16912#Lance Box# +16913#Orcish Axe Box# +16914#Giant Encyclopedia Box# +16915#Fist Box# +16916#Guitar Box# +16917#Damascus Box# +16918#Flamberge Box# +16919#Stunner Box# +16920#Written Oath of Marriage Box# +16921#Shooting Star Box# +16922#Bloody Fear Box# +16923#Staff of Healing Box# +16924#Four Leaf Clover Box# +16925#Four Leaf Clover Box II# +16926#Four Leaf Clover BoxIII# +16927#Chewing Gum Box# +16928#Chewing Gum Gum Box II# +16929#Chewing Gum Gum Box III# +16930#Spiked Scarf Box# +16931#Spiked Scarf Box II# +16932#Spiked Scarf Box III# +16933#Rainbow Scarf Box# +16934#Rainbow Scarf Box II# +16935#Rainbow Scarf Box III# +16936#Life Ribbon Box# +16937#Life Ribbon Box II# +16938#Life Ribbon Box III# +16939#Love Angel Magic Powder Box# +16940#Love Angel Magic Powder Box(30 days)# +16941#Squirrel Magic Powder Box# +16942#Squirrel Magic Powder (30 days)# +16943#Diary Magic Powder Box# +16944#Diary Magic Powder Box(30 days)# +16945#Mini Heart Magic Powder Box# +16946#Mini Heart Magic Powder Box(30 days)# +16947#Freshman Powder Box# +16948#Freshman Powder Box(30 days)# +16949#Freshman Powder Box# +16950#Freshman Powder Box(30 days)# +16951#Magic Magic Powder Box# +16952#Magic Magic Powder Box(30 days)# +16953#JJangu Magic Powder Box# +16954#JJangu Magic Powder Box(30 days)# +16955#Upgrade Guard Box# +16956#Upgrade Buckler Box# +16957#Upgrade Shield Box# +16958#Upgrade Shoes Box# +16959#Upgrade Boots Box# +16960#Upgrade Greaves Box# +16961#Upgrade Hood Box# +16962#Upgrade Muffler Box# +16963#Upgrade Manteau Box# +16964#Upgrade Clip Box# +16965#Upgrade Adventure Suit Box# +16966#Upgrade Coat Box# +16967#Upgrade Saint Robe Box# +16968#Upgrade Tight Box# +16969#Upgrade Thief Clothes Box# +16970#Upgrade Mail Box# +16971#Upgrade Formal Suit Box# +16972#Weather Report Box# +16973#Costume Yellow Hat Box# +16974#Costume Old-Timey Box# +16975#Costume Singing Bird Box# +16976#Costume Chicken Box# +16977#Costume Mini Crown Box# +16978#Foxtail Box# +16979#Silvervine Box(4)# +16992#Butterfly Wing Box(Small)# +16993#Butterfly Wing Box(50)# +16995#Old Hat Box# +16998#Archangel Wing Box# +16999#Adventure's Backpack Box# +17000#Wanderman Scroll Box(5)# +17001#Wanderman Scroll Box(10)# +17002#Wicked Nymph Scroll Box(5)# +17003#Wicked Nymph Scroll Box(10)# +17004#Kasa Scroll Box(5)# +17005#Kasa Scroll Box(10)# +17006#Salamander Scroll Box(5)# +17007#Salamander Scroll Box(10)# +17008#Teddy Bear Scroll Box(5)# +17009#Teddy Bear Scroll Box(10)# +17013#Malang Woe Encard Box# +17014#Costume Butterfly Ears Box# +17015#Costume Bolt Ears Box# +17024#Lovely Aquarius Scroll# +17026#Boitata Scroll# +17027#Enriched Ores Box# +17030#St Patrick's Hat Box# +17035#Energetic Pisces Scroll# +17036#Energetic Pisces Scroll Box(10)# +17037#Transform Scroll(Deviruchi)10pcs Box# +17038#Transform Scroll(R Archer)10pcs Box# +17039#Transform Scroll(Mavka)10pcs Box# +17040#Transform Scroll(Marduk)10pcs Box# +17041#Transform Scroll(Banshee)10pcs Box# +17042#Transform Scroll(Poring)10pcs Box# +17043#Transform Scroll(Golem)10pcs Box# +17044#Green Ribbon Box# +17045#Judge Hat Box# +17046#Attendance Costume Box# +17052#HolyMom Blaze Box# +17053#Butterfly Wing Color Box# +17065#Taurus Crown Box# +17066#Poison Bottle Box(50)# +17067#Poison Bottle Box(100)# +17068#Acid Bomb Box(50)# +17069#Acid Bomb Box(100)# +17070#Acid Bomb Box(500)# +17071#Superb Fish Box(50)# +17072#Superb Fish Box(100)# +17073#Superb Fish Box(500)# +17074#Empty Bottle Box(10)# +17075#Empty Bottle Box(100)# +17076#Empty Bottle Box(500)# +17081#Yggdrasil Crown Box# +17084#Upgrade Katar Box# +17085#Upgrade Two-Handed Axe Box# +17086#Upgrade Two-Handed Spear Box# +17087#Upgrade Book Box# +17088#Upgrade Two-Handed Staff Box# +17089#Upgrade Dagger Box# +17090#Upgrade Revolver Box# +17091#Upgrade Mace Box# +17092#Upgrade Bow Box# +17093#Upgrade Two-Handed Sword Box# +17094#Upgrade Katar Box# +17095#Upgrade Two-Handed Axe Box# +17096#Upgrade Two-Handed Spear Box# +17097#Upgrade Book Box# +17098#Upgrade Two-Handed Staff Box# +17099#Upgrade Dagger Box# +17100#Upgrade Revolver Box# +17101#Upgrade Mace Box# +17102#Upgrade Bow Box# +17103#Upgrade Two-Handed Sword Box# +17104#HD Oridecon Box(50)# +17105#HD Elunium Box(50)# +17106#Heavy Lifter Box# +17107#Gemini Crown Scroll# +17108#Gemini Crown Scroll Box(10)# +17110#Aquarius Scroll# +17114#Ancient Horns Box# +17115#Sprout Hat Box# +17116#Mercury Riser Box# +17117#Aries Scroll# +17118#ASPD Enchanced Potion Box# +17120#Taurus Scroll# +17121#Starry Scroll# +17122#Immuned Shield Box# +17123#Black Devil's Mask Box# +17124#Cat Ears Beret Box# +17125#Red Pom Hat Box# +17126#ASPD Enchanced Potion Box# +17135#Monster Transformation Set A# +17136#Monster Transformation Set B# +17137#Monster Transformation Set C# +17138#Cancer Scroll# +17140#Leo Scroll# +17141#Virgo Scroll# +17142#Libra Scrol# +17143#Scorpius Scroll# +17144#Assorted Cuisine Set# +17145#Assorted Cooking Box# +17146#Depressed Alice Doll Box# +17147#Ribbon Chef Hat Box# +17153#Red Booster Box# +17154#Red Booster Box# +17155#Upgrade Huuma Shuriken Box# +17157#Vital Flower Box# +17158#Flame Gemstone Box# +17159#Name Change Box# +17160#Name Change Card Box# +17161#Domovoy Breeder Proof Box# +17162#Boarding Halter Box(7 Days)# +17163#Mystic Powder Box# +17164#Mystic Powder Box# +17165#Takoyaki Pack (50 pieces)# +17166#Arc Angeling Hat Box# +17171#Battle Manual Box(10)# +17172#JOB Battle Manual Box(10)# +17173#Global Hat Festival Box# +17174#Global Festival Packages (5)# +17175#Global Hat Festival Box# +17176#Boarding Halter Box (3 Days)# +17177#Assorted Cooking Box [Trail]# +17178#Mysterious Life Potion Box(Undead)# +17179#Mysterious Life Potion Box(50)# +17180#Mysterious Life Potion Box(Girl)# +17182#Fallen Angel Wings Box# +17183#Magical Watch Box# +17184#3rd Job Change Ticket Box# +17193#Refining Ore Box II# +17194#RG Red Potion Box# +17195#RG Blue Potion Box# +17196#RG Golden Apple Slice Box# +17197#RG Golden Apple Box# +17198#RG Golden Potion Box# +17200#RG Noble Hat Box# +17201#RG Soft Sheep Hat Box# +17202#Bacsojin Doll Hat Box# +17205#Poring's Special Box# +17206#Limited Battle Manual Box# +17209#Anael's Rainbow Scroll# +17210#Charming Red Scroll# +17211#Sweet Fenris Scroll# +17212#Colourful Yellow Scroll# +17213#Old Yellow Box# +17214#Magical Book Box# +17215#Magical Book Box# +17216#Takoyaki Pack (150 pieces)# +17217#Donut Box(50 pieces)# +17218#Donut Box(150 pieces)# +17219#Magical Apple Box# +17220#Special Quest Ticket Box# +17224#Almighty Box# +17229#[Event] Unlimited Fly Wing Box (7 Days)# +17231#Refining Ore Box# +17232#Safe to 7 Certificate Box# +17241#Amistr Cap Box# +17243#Classic Egg# +17244#Event Almighty Box# +17245#Lucky Free Scroll# +17246#HD Elunium Box(30)# +17247#HD Oridecon Box(30)# +17249#Classic II Egg# +17250#Classic III Egg# +17251#Unlimited Fly Wing Box(3 Days)# +17252#RWC Rally Box# +17253#RWC Initializer Ticket Box# +17254#RWC Initializer 5 Ticket Box# +17256#Angel School Gift Box# +17257#Devil School Gift Box# +17258#Battle Armor Treasure Chest# +17259#Battle Boots Treasure Chest# +17260#Battle Boots Mithril Treasure Chest# +17261#Battle Armor Mithril Treasure Chest# +17262#Special Defense Potion Box# +17263#3 days Infinite Concentration Potion Box# +17264#3 days Infinite Awakening Potion Box# +17265#3 days Infinite Berserk Potion Box# +17266#Battle Manual Limited Package# +17267#Collection Egg# +17268#Anniversary Egg# +17269#Xmas Party Egg# +17270#STR Biscuit Stick Box# +17271#VIT Biscuit Stick Box# +17272#AGI Biscuit Stick Box# +17273#INT Biscuit Stick Box# +17274#DEX Biscuit Stick Box# +17275#LUK Biscuit Stick Box# +17276#Magical Flower Box# +17277#Unlimited Box# +17278#Unlimited Set of 10 boxes# +17279#Unlimited Set of 20 Boxes# +17280#New Year Egg# +17281#Refining Ore Box IV# +17282#Refining Ore Box IV (10)# +17283#Refining Ore Box IV (20 Sets)# +17284#Event: Change the name box# +17285#Event: Beauty Voucher Box# +17286#Event: Clothes Dye Coupon Box# +17287#Event: Clothes Dye Coupon Box II# +17288#Customization Box# +17289#Beelzebub's Wing Box# +17290#Orlean's Full Course box# +17291#Girls Selection Egg# +17292#Shadow Box# +17293#Physical Shadow Package# +17294#Magical Shadow Package# +17295#Boys Selection Egg# +17296#Character Position Change Box# +17298#Cheer Up Package# +17299#Cheer Up Package (10)# +17300#Holy Darkness Egg# +17301#June Bride Egg# +17302#Shadow Box II Box# +17303#Shadow Box II Set# +17304#Neuralizer Box(3)# +17305#Spring Party Egg# +17306#Reset Status Book Box# +17312#Essence of Blacksmith God Box# +17313#Essence of Blacksmith God Box(2)# +17314#Infinite Giant Fly Wing Box# +17315#Lucky Silvervine Fruit Box(10)# +17316#Lucky Silvervine Fruit Box(110)# +17321#Three Master Package# +17322#Three Master Package(10)# +17323#Shinobi Egg# +17324#Burning Egg# +17325#Horror Egg# +17327#CostumeBox1# +17328#CostumeBox2# +17329#CostumeBox3# +17330#CostumeBox4# +17331#Event Almighty Box# +17332#Event Almighty Box(100)# +17333#Star-Spangled Bandana Box# +17334#'Merica Hat Box# +17335#Mysterious Ingredient Box# +17336#Jeremy's Beauty Coupon Box# +17338#Ore Box V# +17339#Ore Box V(10)# +17341#Physical Weapon Shadow Box# +17346#Battle Assistance Box# +17366#Safe to 7 Sale Box# +17368#Resist Spell Power Pendant Shadow Box# +17370#Costume: Man's Pride Box# +17371#Costume: Charleston's Antenna Box# +17375#Safeguard Shadow Shield Box# +17378#Homers Shadow Shield Box# +17379#Dragoon Shadow Shield Box# +17380#Satanic Shadow Shield Box# +17381#Frame Guard Shadow Shield Box# +17382#Requiem Shadow Shield Box# +17383#Cadi Shadow Shield Box# +17384#Bloody Shadow Shoes Box# +17385#Liberation Shadow Shoes Box# +17386#Chemical Shadow Shoes Box# +17387#Clamorous Shadow Shoes Box# +17388#Insecticide Shadow Shoes Box# +17389#Fisher Shadow Shoes Box# +17390#Seraphim Shadow Shoes Box# +17391#Beholder Shadow Shoes Box# +17392#Divine Shadow Shoes Box# +17393#Dragoon Shadow Shoes Box# +17394#[Event] Old Headgear Box# +17395#_______________________# +17428#Moon Rabbit Egg# +17429#11 Anniversary Shadow Box# +17430#11 Anniversary Shadow Package# +17432#Lucky Silvervine Fruit Box II(10)# +17433#Lucky Silvervine Fruit Box II(110)# +17434#Halloween Egg# +17436#Gothic Egg# +17437#Powerful Resilience Potion Box 10# +17438#Three Master Package II# +17439#Three Master Package II(10)# +17440#Name Change Card Box# +17441#Halter Lead Box# +17442#Emperium G Box# +17443#Reinforcement Buckler Box# +17444#RWC2013 Egg# +17448#Toy Box Egg# +17449#Set Bar Cookies# +17455#Premium Battle Manual Box# +17456#Support Package II# +17457#Support Package II(10)# +17461#Frozen Egg# +17462#Wing II Egg# +17463#Special Quest Shiitake Box# +17465#Refine Ore Box VI# +17466#Refine Ore Box VI(10)# +17467#(Event) Token of Siegfried Box(50)# +17468#(Limited)Neuralizer II Box(3)# +17469#(Limited)Neuralizer I Box# +17470#Helm Collection Egg# +17472#Support Package III# +17473#Support Package III(10)# +17474#Infinite Giant Fly Wing Box V# +17475#(Limited)Gym Membership Card Box(10)# +17476#Girls Selection II Egg# +17477#Unlimited Box II# +17478#Unlimited Box II(10)# +17481#Flower Garden Egg# +17483#Three Master Package III# +17484#Three Master Package III(10)# +17491#Refine Ore Box VII# +17492#Refine Ore Box VII(10)# +17493#Wing Egg# +17495#Lucky Silvervine Fruit Box III(10)# +17496#Lucky Silvervine Fruit Box III(110)# +17497#Seaside Egg# +17498#Three Master Package IV# +17499#Three Master Package IV (10)# +17500#Monsters Egg# +17501#Cheer Up Package IV# +17502#Cheer Up Package IV (10)# +17506#Autumn Party Egg# +17507#Silvervine Cat Fruit Box(4)# +17508#Silvervine Cat Fruit Box(10)# +17509#Silvervine Cat Fruit Box(40)# +17510#Refining Ore Box VIII# +17511#Refining Ore Box VIII (10)# +17512#(Limited)HD Elunium Box(30)# +17513#(Limited)HD Oridecon Box(30)# +17514#Halloween II Egg# +17515#Unlimited Box III# +17516#Unlimited Box III (10)# +17517#Animals Egg# +17518#Famitsu Quest Ticket Box# +17520#Limited Battle Manual Box# +17521#Three Master Package V# +17522#Three Master Package V(10)# +17523#Mystic Egg# +17524#Limited Power Booster Box# +17525#Limited Power Booster Box(100)# +17527#Silvervine Cat Fruit Box(200)# +17528#Frozen II Egg# +17544#Refining Ore Box IX# +17545#Refining Ore Box IX (10)# +17546#Girls Selection III Egg# +17547#(Limited)2015 Neutralizer Rod Box# +17548#(Limited)2015 Reset stats coupon# +17549#(Limited)30 HD Bradium Box# +17550#(Limited)30 HD Cranium Box# +17551#Animals II Egg# +17567#Event Almighty Box# +17568#Event Almighty Box(100)# +17569#Dungeon Ticket Box(1 Hours)# +17570#Dungeon Ticket Box(3 Hours)# +17571#School Egg# +17573#Lucky Silvervine Cat Fruit Box(10)# +17574#Lucky Silvervine Cat Fruit Box(100)# +17575#Edward Zonda Owner Box# +17576#Elysee Zonda Owner Box# +17581#Monsters II Egg# +17582#Three Master Package IV# +17583#Three Master Package IV (10)# +17585#Cyber Egg# +17586#Refining Ore Box X# +17587#Refining Ore Box X (10)# +17589#Seaside II Egg# +17590#Edward Zonda Owner EX Box# +17591#Elysee Zonda Owner EX Box# +17592#Cheer Up Package V# +17593#Cheer Up Package V (10)# +17596#Costume Hair Collection(Blue Red Yellow Green)# +17597#Costume Hair Collection(Black White Crimson Purple)# +17599#Infinite Greed Scroll Box(1 hour)# +17600#Infinite Cat's Hand Ticket Box(1 day)# +17601#Unlimited Box IV# +17602#Unlimited Box IV (10)# +17608#Infinite Giant Fly Wing Box 1Day# +17609#Refine Ore Box XI# +17610#Refine Ore Box XI(10)# +17611#Steampunk Egg# +17612#Meow Badge Gift Box# +17616#Three Master Package VII# +17617#Three Master Package VII (10)# +17619#Ultimate Refinement Ticket Box# +17620#Event Ticket Box# +17621#Campaign Quest Ticket Box# +17622#Plalock Refining Force Box# +17623#[2017] Ultimate Refining Ticket Box# +17624#Luxury Oil Box# +17625#Tiny Ticket Box# +17626#[2017] Plarock Refining Force Box# +17627#[15th] Reprint Egg Seal Box# +17629#Spellflow Shadow Pack# +17630#Shadow Physical-Magical Box# +17631#Almighty Plus Box# +17632#Almighty Plus Box(10)# +17634#Costume Change Ticket Box# +17635#Holy Darkness II Egg# +17638#Characters Egg# +17639#Limited Power Booster Box 2# +17640#Limited Power Booster Box 2 (100)# +17641#New Year II Egg# +17646#Limited Boarding Halter Box# +17650#Refining Ore Box XII# +17651#Refining Ore Box XII (10)# +17661#Gothic II Egg# +17662#Cheer Up Plus Package# +17663#Cheer Up Plus Package (10)# +17664#2012 Selection Egg# +17668#Three Master Package VIII# +17669#Three Master Package VIII (10)# +17670#Flower Garden II Egg# +17672#Ultimate Box V# +17673#Ultimate Box V (10)# +17675#Refining Ore Box XIII# +17676#Refining Ore Box XIII (10)# +17677#HD Refining Ore Box# +17678#Animals III Egg# +17679#[Gunslinger] Magical Soul Box# +17680#[Gunslinger] Proof of Rebellion Box# +17682#Luck Egg A16# +17683#Lucky Silvervine Cat Fruit Box II (10)# +17684#Lucky Silvervine Cat Fruit Box II (100)# +17687#Girls Selection IV Egg# +17689#Premium Buff Box# +17690#Cheer Up Plus Package II# +17691#Cheer Up Plus Package II (10)# +17693#Monsters III Egg# +17696#Girls Selection Egg# +17697#Holy Darkness Egg# +17698#June Bride Egg# +17699#Horror Egg# +17700#Moon Rabbit Egg# +17701#Gothic Egg# +17702#Seaside Egg# +17703#Monsters Egg# +17704#Autumn Party Egg# +17705#Frozen II Egg# +17706#Animals II Egg# +17707#Cyber Egg# +17709#Costume Amistr Bag Box# +17710#Costume Hair Collection(Blue Red Yellow Green)# +17711#Costume Hair Collection(Black White Purple Crimson)# +17712#Three Master Package IX# +17713#Three Master Package IX (10)# +17715#Emil Chronicle Online Egg# +17716#Refining Ore Box XIV# +17717#Refining Ore Box XIV (10)# +17718#HD Refining Ore Box II# +17723#Sales Stall Albanian Pass Box(1 hour)# +17724#Purchase Stall Albanian Pass Box(1 hour)# +17726#Almighty Plus Box II# +17727#Almighty Plus Box II (10)# +17728#HD Oridecon 100 Box# +17729#HD Elunium 100 Box# +17730#Enriched Oridecon 100 Box# +17731#Enriched Elunium 100 Box# +17732#HD Carnium 100 Box# +17733#HD Bradium 100 Box# +17735#Horror II Egg# +17741#Maerchen Egg# +17742#Defense Scroll Box# +17743#Defense Scroll Box(10)# +17748#Limited Power Booster 3# +17749#Limited Power Booster 3 (100)# +17750#Characters II Egg# +17756#HD Refine Ore Box# +17759#Refine Ore XV Box(10)# +17760#Refine Ore XV Box# +17761#HD Refine Ore Box III# +17762#Mofu Mofu Egg# +17763#Bloody Branch Box(20)# +17764#Cheer Up Plus Package III# +17765#Cheer Up Plus Package III (10)# +17766#Infinite Cat's Hand Ticket Box(7 days)# +17767#Costama Gothic III# +17774#Almighty Plus Box III# +17775#Almighty Plus Box III (10)# +17776#Three Master Package X# +17777#Three Master Package X (10)# +17780#Special Cat Can (Tuna) Box# +17781#Costama Hair Collection III (Blue, Red, Yellow, Green)# +17782#Costama Hair Collection III (Black, White, Red, Purple)# +17783#Unlimited Box VI (10)# +17784#Unlimited Box VI# +17785#Costama Variation# +17789#Costama Animals IV# +17792#Refining Ore Box XVI# +17793#Refining Ore Box XVI (10)# +17794#HD Refining Ore Box IV# +17795#HD Refine Ore Box II# +17796#Costama Variatons II (Blue, Red, Yellow, Green)# +17797#Costama Variatons II (Black, White, Red, Purple)# +17799#Defense Scroll Box II# +17800#Defense Scroll Box II (10)# +17803#Costama Girls Selection V# +17808#Costama Holy Darkness III# +17809#Costama Classic# +17810#Costama ClassicII# +17811#Costama ClassicIII# +17812#Costama Collection# +17813#Costama Anniversary# +17814#Costama XmasParty# +17815#Costama NewYear# +17816#Costama Boys Selection# +17817#Costama Spring Party# +17818#Costama Shinobi# +17819#Costama Burning# +17820#Costama Halloween# +17821#Costama RWC2013# +17822#Costama Toy Box# +17823#Costama Frozen# +17824#Costama Helm Collection# +17825#Costama Girls Selection II# +17826#Costama Flower Garden# +17827#Costama Partners# +17828#Costama Wing# +17829#Costama Halloween II# +17830#Costama Animals# +17831#Costama Mystic# +17832#Three Master Package XI# +17833#Three Master Package XI (10)# +17835#Costama Monsters IV# +17836#Costama Boys Selection II# +17881#2017 Ragnarok RTC Participaton Box# +17882#Refining Ore Box XVII (10)# +17883#Refining Ore Box XVII# +17884#HD Refining Ore Box V# +17885#HD Refine Ore Box III# +17886#Infinity Box# +17887#Infinity Box(10)# +17888#[Event] Kafra Card Box(10)# +17889#Costama Halloween III# +17894#New Cheer Up Package# +17895#New Cheer Up Package (10)# +17899#Costama Mystic II# +17901#Limited Power Booster IV (100)# +17902#Limited Power Booster IV# +17904#[2018] Reprinted Egg Stickers# +17905#[2018] Ultimate Refining Ticket Box# +17906#[2018] Luxury Oil Box# +17907#[2018 Summer] Plalock Refining Force Box# +17914#G-STAR 2017 Ragnarok Memorial Box# +17920#Tool Dealer Bell Box# +17921#Kafra Storage Bell Box# +17922#Costama Frozen III# +17923#Refining Ore Box XVIII# +17924#Refining Ore Box XVIII (10)# +17925#HD Refining Ore Box VI# +17926#HD Refine Ore Box IV# +17934#Costama Gothic & Lolita# +17935#New Three Master Package# +17936#New Three Master Package (10)# +17940#Lucky Silvervine Cat Fruit Box III (10)# +17941#Lucky Silvervine Cat Fruit Box III (100)# +17942#Costama Spring Party II# +17944#Almighty Plus Box IV# +17945#Almighty Plus Box IV (10)# +17948#Refining Ore Box XIX (10)# +17949#Refining Ore Box XIX# +17950#HD Refining Ore Box VII# +17951#HD Refine Ore Box V# +17952#Costama Animals V# +17958#Costama Girls Selection VI# +17959#Defense Scroll Box III# +17960#Defense Scroll Box III (10)# +17961#Three Master Package XII# +17962#Three Master Package XII (10)# +17963#Costama Monsters V# +17964#Costama Variations III# +17965#Costama Holy Darkness IV# +17966#Costama Cyber II# +17967#Infinity Box II# +17968#Infinity 박스II (10)# +17969#Cheer Up Package (10)# +17970#Cheer Up Package# +17971#Three Master Package (10)# +17972#Three Master Package# +17973#Almighty Package (10)# +17974#Almighty Package# +17975#Refining Ore Box(10)# +17976#Refining Ore Box# +17977#HD Refining Ore Box# +17978#HD Refine Ore Box# +17979#Limited Power Booster Box(10)# +17980#Limited Power Booster Box# +17981#Infinity Box(10)# +17982#Infinity Box# +17983#Defense Scroll Box(10)# +17984#Defense Scroll Box# +17985#Unlimited Box(10)# +17986#Unlimited Box# +17999#Inventory Expansion Voucher Box(1)# +18000#Cannon Ball# +18001#Holy Cannon Ball# +18002#Dark Cannon Ball# +18003#Soul Cannon Ball# +18004#Iron Cannon Ball# +18005#Ice Cannon Ball# +18006#Lightning Cannon Ball# +18007#Stone Cannon Ball# +18008#Flare Cannon Ball# +18009#Poisoning Cannon Ball# +18100#Unidentified Bow# +18101#Rental Bow Of Rudra# +18103#Mystic Bow# +18106#Eden Group Bow3# +18107#Malang Snow Crab# +18108#Brindle Eel# +18109#Catapult# +18110#Big Crossbow# +18111#Creeper Bow# +18112#Unidentified Bow# +18113#Bellum Arbalest# +18114#Bellum Crossbow# +18115#Unidentified Bow# +18116#Metal Bow# +18117#Unidentified Bow# +18118#TE WoE Bow# +18119#Thanatos Bow# +18120#Evil Slayer Piercer Bow# +18121#Vicious Mind Bow# +18122#Gigantic Bow# +18123#Bow Of Storm# +18125#Unidentified Bow# +18126#Ru Blue Bow# +18127#Ru Gold Bow# +18128#Unidentified Bow# +18129#Ixion Wing# +18130#Crimson Bow# +18131#Unidentified Bow# +18132#Unidentified Bow# +18133#Unidentified Bow# +18134#Unidentified Bow# +18135#Unidentified Bow# +18136#Unidentified Bow# +18137#Unidentified Bow# +18138#Unidentified Bow# +18139#Unidentified Bow# +18140#Unidentified Bow# +18141#Unidentified Bow# +18142#Unidentified Bow# +18143#Unidentified Bow# +18144#Unidentified Bow# +18145#Vigilante Bow# +18146#Unidentified Bow# +18147#Unidentified Bow# +18148#Unidentified Bow# +18149#Illusion Ballista# +18150#Unidentified Bow# +18151#Unidentified Bow# +18152#Unidentified Bow# +18153#Unidentified Bow# +18154#Unidentified Bow# +18155#Unidentified Bow# +18163#Unidentified Bow# +18164#Royal Bow# +18165#Unidentified Bow# +18166#Unidentified Bow# +18170#Narcissus Bow# +18171#Unidentified Bow# +18174#Unidentified Bow# +18177#Unidentified Bow# +18178#Virtual Bow-OS# +18179#MH-P89-OS# +18180#AC-B44-OS# +18182#Unidentified Bow# +18183#Unidentified Bow# +18184#Unidentified Bow# +18185#Unidentified Bow# +18186#Unidentified Bow# +18187#Unidentified Bow# +18188#Unidentified Bow# +18190#Bolt Shooter# +18191#Unidentified Bow# +18198#Unidentified Bow# +18500#Unidentified Mask# +18501#Unidentified Mask# +18502#Unidentified Mask# +18503#Unidentified Ribbon# +18504#Unidentified Helmet# +18505#Umbala Spirit# +18506#Unidentified Hat# +18507#Elven Ears# +18508#Garuda Hat# +18509#RWC 2010 Indonesia# +18510#Unidentified Hairband# +18511#Unidentified Glasses# +18512#Unidentified Hairband# +18513#Unidentified Hat# +18514#Eden Group Hat II# +18515#Unidentified Helmet# +18516#Unidentified Helmet# +18517#Unidentified Helmet# +18518#Costume Angel Wing Ears# +18519#Unidentified Glasses# +18520#Jaty Crown# +18521#Lucky Clover# +18522#Evil Marching Hat# +18523#Super Scell# +18524#Unidentified Mask# +18525#Watermelon Hat# +18526#Yummy Lollipop# +18527#Gloomy Pumpkin Hat# +18528#Unidentified Hat# +18529#Unidentified Hat# +18530#Unidentified Mask# +18531#Unidentified Helmet# +18532#Heart Ribbon Hairband# +18533#Unidentified Hat# +18534#Unidentified Mask# +18535#Unidentified Hat# +18536#Foxtail# +18537#Malangdo Hat# +18538#Spirit Whispers# +18539#Skull Cap# +18540#Demon Mask# +18541#Little Feather Hat# +18542#Benevolent Guardian# +18543#Witch Hat# +18546#Unidentified Mask# +18547#Unidentified Hairband# +18548#Unidentified Hat# +18549#Unidentified Ribbon# +18550#Unidentified Hairband# +18551#Galaxy Circlet# +18552#Unidentified Hat# +18553#Christmas Tree Hat# +18554#Unidentified Hat# +18555#Unidentified Helmet# +18556#Angel's Symbol# +18557#Devil's Symbol# +18558#Sinsuncho Hat# +18559#Unidentified Glasses# +18560#Unidentified Mask# +18561#Unidentified Hat# +18562#Unidentified Hat# +18563#Heart Wing Hairband# +18564#Love Piece# +18565#St Patrick's Hat# +18566#Unidentified Mask# +18567#Unidentified Ribbon# +18568#Unidentified Hat# +18569#Unidentified Hat# +18570#Ancient Gold Deco# +18571#Lucky Hat# +18572#Unidentified Hat# +18573#Unidentified Hat# +18574#Lord of Death# +18575#Wunderkammer# +18576#Yin Yang Earrings# +18577#Unidentified Glasses# +18578#Unidentified Helmet# +18579#Unidentified Hat# +18580#Yggdrasil Crown# +18581#Red Tiger Mask# +18582#Blue Tiger Mask# +18583#Navy Drooping Kitty# +18584#Brown Drooping Kitty# +18585#Orange Bunny Band# +18586#Violet Bunny Band# +18587#Blue Bunny Band# +18588#Silvah Bunny Band# +18589#Strawberry Hat# +18590#Gemma Hairband# +18591#Mini Glasses# +18592#Unidentified Hat# +18593#Fancy Mini Crown# +18594#Unidentified Hat# +18595#Ancient Horns# +18596#Sprout Hat# +18597#Mercury Riser# +18598#Unidentified Hat# +18599#Black Devil's Mask# +18600#Cat Ear Beret# +18601#Red Pom Band# +18602#Watermelon Slice# +18603#Black Devil's Mask# +18604#Falcon Mask# +18605#Dark Age# +18606#Tear Drop# +18607#Blush# +18608#Small Ribbons# +18609#Dark Blinder# +18610#Unidentified Hat# +18611#Black Frame Glasses# +18612#White Musang Hat# +18613#Black Musang Hat# +18614#Grim Reaper# +18615#Injured Eyepatch# +18616#Long Tongue# +18617#Onigiri# +18618#Rockabilly Hair# +18619#Thief Bandana# +18620#Heart Eyepatch# +18621#Mobster's Disguise# +18622#Unidentified Hat# +18623#Unidentified Hat# +18624#Unidentified Hat# +18625#Unidentified Hat# +18626#Chewy Gelato# +18627#Dried Leaf# +18628#Tare Brownie# +18629#B Desert Wolf Hat# +18630#Drooping Alicel# +18631#Unidentified Hat# +18632#Yellow Poring Hairpin# +18633#Pink Poring Hairpin# +18634#Green Poring Hairpin# +18635#Blue Poring Hairpin# +18636#Ribbon of Bride# +18637#Ancient Admiral Helm# +18638#Citron Hat# +18639#Naval Officer Hat# +18640#Starfish Headband# +18641#Ribbon Magic Hat# +18642#Scissorhand Model# +18643#Rockhand Model# +18644#Paperhand Model# +18645#Sailor Hat# +18646#Cow Hat# +18647#Stunning Star Eyepatch# +18648#Tongue Charm# +18649#Lude Mask# +18650#RWC Shouting Mouth# +18651#Ignis Cap# +18652#Vanargand Helm# +18653#Deviruchi Headphone# +18654#Unidentified Hat# +18655#Goedo Monocle# +18656#Witch's Pumpkin Hat# +18657#Pegasus Ear Wing# +18658#Holy Santa Beard# +18659#Boitata Hat# +18660#Indian Feather Headband# +18661#Trident Helmet# +18662#Antler Fedora# +18663#Sunglasses Baseball Hat# +18664#Stunner Shades# +18665#Orange In Mouth# +18666#CD in Mouth# +18667#Cat Lace Hairband# +18668#Droopy Turtle Hat# +18669#Cowhide Hat# +18670#Handkerchief In Mouth# +18671#Rudolf Hairband# +18672#Unidentified Hat# +18673#Chibi Pope# +18674#Planewing Hat# +18675#Green Apple Hat# +18676#Hexagon Spectacles# +18677#Cherry Twig In Mouth # +18678#Leek In Mouth# +18679#Abacus In Mouth# +18680#Frog Hat# +18681#Puppy Ears Hat# +18682#Teardrop# +18683#Carrot In Mouth# +18684#Showy High Cap# +18685#Stardust Hairband# +18690#Sirt Evil Eye# +18691#Black Dragon's Ascension# +18692#Mike Hat# +18693#Sleeping Kitty Cat# +18694#Red Hood# +18695#Phoenix Crown# +18696#Orange Hat# +18697#Magda's Syringe# +18698#Cheesy Snack In Mouth# +18699#Starving Fish Hat# +18700#Rabbit Ribbon# +18701#Ancient Civil Man# +18702#Shaving Cream# +18703#Unidentified Mask# +18704#Drosera Hairpin# +18705#Unidentified Hat# +18706#Can Hat# +18707#Maneater Flower Hat# +18708#Candy Hat# +18709#Black Knitted Hat# +18710#Unidentified Mask# +18711#Electric Sunglass# +18712#Fan In Mouth# +18713#Monkey On Fur Hat# +18714#Hippo Hat# +18715#Unidentified Hat# +18716#Strawberry In Mouth# +18717#Unidentified Hat# +18718#Rose Hairband# +18719#Unidentified Hat# +18720#Magical Booster# +18721#Unidentified Hat# +18722#Unidentified Glasses# +18723#Unidentified Hat# +18724#Unidentified Hat# +18725#Unidentified Hat# +18726#Unidentified Hat# +18727#Sedora Hat# +18728#Egir Helm# +18729#RWC2012 MVP Hat# +18730#Criatura Academy Hat# +18731#Valkyrie Randgris Helm# +18732#TE WoE Cap# +18733#TE WoE Bone Helm# +18734#TE WoE Magic eyes# +18735#Unidentified Ribbon# +18736#Unknown request# +18737#Fortier Masque# +18738#Boys White Hat# +18739#Carnation Hairband# +18740#White Phoenix Hair# +18741#Costume Will O Wisp# +18742#Costume Moon and Stars# +18743#Costume Spirit Of Chung E# +18744#Twilight# +18745#Choco Stick In Mouth# +18746#Chilly Breath# +18747#Eyes Of Ifrit# +18748#Gold Ingot Poring Hat# +18749#Majoruros Horn# +18750#Poker Card In Mouth# +18751#Unidentified Mask# +18752#Cursed Book# +18753#Rice Dumpling Hat# +18754#Blood Sucker# +18755#Feather Beret# +18756#Black Shiba Inu Hat# +18757#Unidentified Hat# +18758#Unidentified Hat# +18759#Wood Goblin's Nose# +18760#Improved Mage Hat# +18761#Improved Magician Hat# +18762#Improved Kitsune Mask# +18763#Improved Joker Jester# +18764#Improved Bunny Band# +18765#Enhanced Corsair# +18766#Enhanced Helm of Angel# +18767#Enhanced Hat of the Sun God# +18768#Enhanced Bone Helm# +18769#Improved Munak Hat# +18770#Improved Bongun Hat# +18771#Improved Opera Phantom Mask# +18772#Advanced Binoculars# +18773#Advanced Fin Helm# +18774#Advanced Assassin Mask# +18775#Advanced Welding Mask# +18776#Advanced Angel's Kiss# +18777#Unidentified Hairband# +18778#Unidentified Hairband# +18779#RWC Champ Crown First Place# +18780#RWC Champ Crown Second Place# +18781#RWC Champ Crown Third Place# +18782#Butterfly Wing Ear# +18783#Unidentified Hat# +18784#Unidentified Helmet# +18785#King Poring Hat# +18786#Anemos Mask# +18787#Goal Tender Mask# +18788#Unidentified Glasses# +18789#Unidentified Hat# +18790#Unidentified Hat# +18791#Shrine Maiden Hat# +18792#Unidentified Hat# +18793#Magician's Night Cap# +18794#Ordinary Black Magician Hat# +18795#Night Sparrow Hat# +18796#RWC Champ Crown Fourth Place# +18797#Blue Angel Hairband# +18798#Pink Angel Hairband# +18799#Nero Mask# +18800#Unidentified Mask# +18801#Unidentified Hairband# +18802#Poring Fedora Hat# +18803#Unidentified Hat# +18804#Thornbush Hairband# +18805#Eclipse Hat# +18806#Black Rabbit Hat# +18807#White Citron Hat# +18808#Wing Style Spectacle# +18809#Unidentified Hairband# +18810#Shadowmancer's Helm# +18811#Unidentified Hairband# +18812#Unidentified Hairband# +18813#New Wave Sunglasses# +18814#Angel School Cap# +18815#Devil School Cap# +18816#Evoked Angel School Cap# +18817#Evoked Devil School Cap# +18818#Red Pencil In Mouth# +18819#Blue Pencil In Mouth# +18820#Helmet Of Gray# +18821#RWC Commemorative Pin# +18822#Flame Wing Ear# +18823#Imperial Feather# +18824#Mask Of Bankrupt# +18825#Money Lost Spirit# +18826#Unidentified Hat# +18827#Valkyrie Circlet# +18828#Unidentified Hat# +18829#Unidentified Hat# +18830#Unidentified Hat# +18831#Unidentified Hat# +18832#Rolf Von Gigue the 666th# +18833#Marin Crown# +18834#Sakura Hairband# +18835#Unidentified Hat# +18836#Unidentified Hat# +18837#Cheering Whistle# +18838#Angeling Woolly Hat# +18839#Poring Sunglasses# +18840#Unidentified Hat# +18841#Small Poring Band# +18842#Hat Of Girl# +18843#Small Deviling Hat# +18844#Blue Poring Bubble# +18845#Banshee Master Kiss# +18846#Unidentified Helmet# +18847#Unidentified Hat# +18848#Lush Rose# +18849#Celine's Ribbon# +18850#Polar Bear Cap# +18851#Valentine Heart Hairband# +18852#Tasty Strawberry Hat# +18853#Tasty Strawberry Hat# +18854#Golden Valentine Heart Hairband# +18855#Aviator Hat# +18856#White Drooping Eddga Hat# +18857#Curupira Hat# +18858#Odacious Angeling Balloon# +18859#Angeling Bubble# +18860#Unidentified Hat# +18861#Zaha Doll Hat# +18862#Chiu Armor# +18863#Exorcist Robe# +18864#Earth Goddess Flower# +18865#Unidentified Helmet# +18866#Owlduke Silk Hat# +18867#Vajra# +18868#Assassin's Skull Mask# +18869#Unidentified Mask# +18870#Unidentified Mask# +18871#Unidentified Mask# +18872#Unidentified Hairband# +18873#Sweet Valentine# +18874#Monocle# +18875#Unidentified Hat# +18876#Unidentified Shield# +18877#Baron's Evil Eye# +18878#Palace Guard Cap# +18879#Unidentified Hat# +18880#Evil Snake Lord Hat# +18881#Unidentified Hat# +18882#Kannam On Head# +18883#Black Witch Hat# +18884#Unidentified Helmet# +18885#Jejecap# +18886#Rainbow Long Octopus# +18887#Aqua Bunny Band# +18888#Maroon Bunny Band# +18889#Golden Bunny Band# +18890#Gray Bunny Band# +18891#Husky Hat# +18892#UFO Poring Hat# +18893#Dragon Claw Helm# +18894#Rainbow Star# +18895#Heavenly Dark Flame# +18896#Pterios Fins# +18897#Sky Crown# +18898#Yggdrasil Herald Crown# +18899#Unidentified Ribbon# +18900#Weisswurst# +18901#Seppl Hat# +18903#Frozen Land Rose# +18904#Man's Pride# +18905#Unidentified Ribbon# +18906#Unidentified Ribbon# +18907#Clinging Panda# +18908#Isabella Red Ear# +18909#Isabella Brown Ear# +18910#Isabella Blue Ear# +18911#Red Flower Hat# +18912#Bell Pigeon# +18913#Gossip Raven# +18914#Baby Deviling# +18915#Blood Butterfly Ears# +18916#Bear Balloon# +18917#99 Love Balloons# +18918#Long Octopus Balloon# +18919#Jakk's Castle Bat# +18920#Unidentified Hat# +18921#Costume Tarnished Lamp# +18922#Unidentified Hat# +18923#Unidentified Hairband# +18924#Gentleman Fez# +18925#God of Winds Fan# +18926#Unidentified Ribbon# +18929#Elephant Model Hat# +18930#Gorilla Model Hat# +18931#Lion Model Hat# +18932#Rhino Model Hat# +18933#Mechanical Plant Hat# +18934#Unidentified Hairband# +18935#There is Something# +18936#Unidentified Mask# +18937#Memory of Lovers# +18938#Astro Circle# +18939#Unidentified Hat# +18940#Unidentified Hat# +18941#Unidentified Hat# +18942#Unidentified Hat# +18943#Unidentified Hat# +18944#Deviruchi Balloon# +18945#Super Cute Doll Hat# +18946#Very Cute Doll Hat# +18947#Unidentified Mask# +18948#Unidentified Mask# +18949#Unidentified Mask# +18950#Unidentified Hat# +18951#Unidentified Helmet# +18952#Unidentified Hat# +18953#PRO 10th Cap# +18954#Unidentified Hat# +18955#Pirate's Folly# +18956#Chocolate Bomb# +18959#Old Pink Poo Hat# +18961#Lunatic Smelting Hat# +18962#Panda Balloon# +18963#Happy Parrot# +18964#Crown Of Saint# +18965#Shaving Foam# +18967#Jinn Poring Balloon# +18968#Jinn Marin Balloon# +18969#Unidentified Hat# +18970#Unidentified Hat# +18971#Old Rune Circlet# +18972#Old Mitra# +18973#Old Driver Band (Red)# +18974#Old Driver Band (Yellow)# +18975#Old Shadow Handicraft# +18976#Old Maestro Song's Hat# +18977#Hairband# +18978#Old Magic Stone Hat# +18979#Old Blazing Soul# +18980#Old Wind Whisper# +18981#Old Dying Swan# +18982#Old Bone Circlet# +18983#Old Casket of Protection# +18984#Old Camouflage Bunny Hood# +18985#Unidentified Mask# +18986#Happy Parrot# +18987#Midgard Serpent Hat# +18988#Unidentified Helmet# +18989#Unidentified Helmet# +18990#Unidentified Helmet# +18991#RWC?친ㄷ?# +18992#New Year Hairpin# +18993#Flower Hat# +18994#Dark Veil# +18995#Unidentified Hat# +18996#Ribbon Of Lady# +18997#Runaway Chip# +18998#Unidentified Hat# +18999#Unidentified Hat# +19000#Unidentified Hat# +19001#Classic Apple of Archer 2 Week Rental Box# +19002#Classic Asura 2 Week Rental Box# +19003#Classic Rudra Bow 2 Week Rental Box# +19004#Classic Brooch 2 Week Rental Box# +19005#Party Balloon# +19006#Classic Combat Knife 2 Week Rental Box# +19007#Classic Counter Dagger 2 Week Rental Box# +19008#Classic Critical Ring 2 Week Rental Box# +19009#Classic Cutlas 2 Week Rental Box# +19010#Baby Dragon Hat# +19011#Classic Earring 2 Week Rental Box# +19012#Classic Elven Ear 2 Week Rental Box# +19013#LuBu Helmet# +19014#Gravekeeper's Blinker# +19015#Classic Light Epsilon 2 Week Rental Box# +19018#Classic Ring 2 Week Rental Box# +19019#Classic Rosary 2 Week Rental Box# +19020#Survivor's Circlet# +19021#Classic Pole Axe 2 Week Rental Box# +19022#Classic Safety Ring 2 Week Rental Box# +19023#Classic Steel Flower 2 Week Rental Box# +19024#Feathers of Protection# +19025#Classic Spanner 2 Week Rental Box# +19026#Egir Helm# +19027#10 Type Glasses# +19028#Classic Silf Manteau 2 Week Rental Box# +19029#Classic Shell of Resistance 2 Week Rental Box# +19030#Red Beret# +19031#Classic Unholy Touch 2 Week Rental Box# +19032#Classic Whip of Balance 2 Week Rental Box# +19033#Classic Cello 2 Week Rental Box# +19034#Classic Dex Survival Rod 2 Week Rental Box# +19035#(null)# +19036#Brabery Hat# +19037#(null)# +19038#12th Anniversary Crown# +19039#12th Anniversary Elven Ears# +19040#Unidentified Hat# +19041#Unidentified Ribbon# +19042#Maneater Flower Hairpin# +19043#Unidentified Helmet# +19044#Unidentified Helmet# +19045#Unidentified Hat# +19046#Unidentified Garment# +19047#Unidentified Hat# +19048#Elemental Tights# +19049#Unidentified Hat# +19050#Unidentified Hat# +19051#Unidentified Hat# +19052#Unidentified Ribbon# +19053#Unidentified Hat# +19079#Celestial Woman's Flower# +19080#Unidentified Mask# +19081#Faceworm Egg Shell# +19082#Bio Protector# +19083#Mask of Hero# +19084#Parfaille Vigilante Hat# +19085#Unidentified Ribbon# +19086#Unidentified Glasses# +19087#Unidentified Glasses# +19088#Unidentified Glasses# +19089#Unidentified Hairband# +19090#Unidentified Mask# +19091#Unidentified Mask# +19092#Unidentified Glasses# +19093#Unidentified Glasses# +19094#Unidentified Mask# +19095#Happy Balloon# +19096#Unidentified Hat# +19097#Unidentified Ribbon# +19098#Unidentified Hat# +19099#Unidentified Hat# +19100#Unidentified Helmet# +19101#Glast Heim Spectator# +19102#Pale Moon Hat# +19103#Classic New Hairstyle Coupon Box# +19104#Yellow Dragon Skywing# +19105#Classic Max Weight up Scroll 10 Box# +19106#Classic Marriage License Box# +19107#Classic Enriched Oridecon 10 Box# +19108#Wild Poring Rider# +19109#Classic Magical Stone Box# +19110#Classic Neuralizer Box# +19111#Classic Dungeon Teleport 1 10 Box# +19112#Tengu Scroll# +19113#Gemini-S58 Eyes# +19114#Sting Silk Ribbon# +19115#Republic Hat# +19116#Red Baby Dragon Hat# +19117#Poring Sunglasses# +19118#Poring Sunglasses+# +19119#Unidentified Hat# +19120#Unidentified Helmet# +19121#Unidentified Hat# +19122#Unidentified Hat# +19123#Unidentified Hat# +19124#Unidentified Hat# +19125#Cylinder Hairband# +19126#Unidentified Hairband# +19127#Unidentified Mask# +19128#Unidentified Glasses# +19129#Unidentified Hat# +19130#Unidentified Hat# +19131#Unidentified Hat# +19132#Unidentified Glasses# +19133#Hairband# +19134#Unidentified Hairband# +19135#Spirit of Chung E# +19136#Spirit of Chung E# +19137#Strawberry Mouth Guard# +19138#Seraphim Coronet# +19139#Survivor's Orb# +19140#Unidentified Hat# +19141#Maero Mask# +19142#Unidentified Hat# +19143#Poring Balloon# +19144#Unidentified Hat# +19145#Unidentified Mask# +19146#Marin Balloon# +19147#Drops Balloon# +19148#Santa Poring Balloon# +19149#Poporing Balloon# +19150#Metalring Balloon# +19151#Devilring Balloon# +19152#Angelring Balloon# +19153#Ghostring Balloon# +19154#Arch Angelring Balloon# +19155#Unidentified Glasses# +19156#Lunar Rainbow# +19157#Unidentified Hat# +19158#Unidentified Glasses# +19159#Unidentified Helmet# +19160#Unidentified Hat# +19161#Unidentified Hat# +19162#Scuba Mask# +19163#Catherina Von Blood# +19164#Unidentified Hat# +19165#Unidentified Hat# +19166#Unidentified Hat# +19167#Unidentified Hat# +19168#Unidentified Hairband# +19169#Unidentified Hat# +19170#Guardian Processor# +19171#Magician Knit Hat# +19172#Pope Osuwari Head# +19173#Floating Ice# +19174#Unidentified Helmet# +19175#Unidentified Hat# +19176#Unidentified Helmet# +19177#Unidentified Helmet# +19178#Unidentified Helmet# +19179#Unidentified Hat# +19180#Unidentified Helmet# +19181#New Wave Sunglasses# +19184#Unidentified Ribbon# +19185#Unidentified Helmet# +19186#Unidentified Helmet# +19187#Unidentified Helmet# +19188#Unidentified Helmet# +19189#Unidentified Hat# +19190#Unidentified Hat# +19191#Unidentified Hat# +19192#Unidentified Hat# +19193#Unidentified Hat# +19194#Unidentified Hat# +19195#Unidentified Hat# +19196#Unidentified Hat# +19197#Unidentified Hat# +19198#Unidentified Hat# +19199#Unidentified Hat# +19200#Unidentified Hat# +19201#Classic Battle Manual 10 Box# +19202#Classic Bubble Gum 10 Box# +19203#Classic Rune Butterfly Wing 10 Box# +19204#Classic Giant Flywing 50 Box# +19205#Classic Kafra Card 10 Box# +19209#Illusion Nurse Cap# +19210#Illusion Apple of Archer# +19211#Unidentified Hairband# +19212#Malangdo Pirate Hat# +19213#Unidentified Hat# +19214#Unidentified Hat# +19215#Unidentified Hat# +19218#Unidentified Glasses# +19219#Unidentified Hat# +19221#Golden Angel Hairband# +19223#Illusion Cap# +19224#Unidentified Hat# +19225#Unidentified Hat# +19226#Unidentified Hat# +19227#Unidentified Hat# +19228#Unidentified Hat# +19229#Unidentified Hat# +19230#Unidentified Hat# +19231#Unidentified Hat# +19232#Unidentified Helmet# +19233#Unidentified Hat# +19234#Unidentified Hat# +19235#Unidentified Hat# +19236#Unidentified Hat# +19237#Unidentified Hat# +19238#Poring Village Green Onion# +19239#Poring Village Carrot# +19240#Unidentified Ribbon# +19241#Magical Booster# +19242#Unidentified Hairband# +19243#Unidentified Ribbon# +19244#Rosary Necklace# +19245#Crimson Booster# +19246#Royal Guard Necklace# +19247#Illusion Fancy Flower# +19249#Spell Circuit# +19256#Unidentified Hat# +19262#Unidentified Hat# +19263#General Helm# +19264#Golden Fish Hat# +19265#Unidentified Hat# +19266#Unidentified Helmet# +19267#Unidentified Ribbon# +19268#Giant Snake Breath# +19269#Happy Flapping Angel Wings# +19272#Unidentified Hat# +19273#Unidentified Hat# +19274#Openair Headset# +19275#[Rental] Scuba Mask# +19277#Soda In Mouth# +19279#Unidentified Hat# +19280#Unidentified Hat# +19281#Unidentified Armor# +19282#Unidentified Armor# +19283#Unidentified Hat# +19284#Unidentified Glasses# +19285#Siegfried's Helmet# +19288#Costume Giant's Helm# +19289#Costume Moon Eyepatch# +19290#Costume Elder Devil Horn# +19291#Costume Shiba Inu# +19292#Costume Smokie Knit Cap# +19293#Costume Under Rimmed Glasses# +19294#Costume Cyber Cat Ear Headphones (Red)# +19296#Fancy Feather Hat# +19299#Tree Sprout# +19300#Ruff Officer# +19302#Unidentified Hat# +19303#Unidentified Hat# +19304#Unidentified Hat# +19306#Heart Card in Mouth# +19307#Unidentified Ribbon# +19308#Amistr Beret# +19310#Unidentified Hat# +19311#Unidentified Helmet# +19312#Unidentified Ribbon# +19313#Unidentified Ribbon# +19314#Royal Mantle# +19324#Unidentified Hat# +19325#Unidentified Hat# +19326#Book of Soyga# +19327#Seraphim Feather# +19329#Devil's Hand# +19330#Unidentified Helmet# +19335#Sweets BongBong# +19337#Safety Glasses# +19338#Clover Silk Hat# +19339#Egg Crispinette# +19340#Saint Egg Shell# +19341#Devil Egg Shell# +19342#Bull Hat# +19343#Circlet of Phoenix# +19344#Unidentified Hat# +19347#Unidentified Helmet# +19348#Unidentified Helmet# +19349#Unidentified Hat# +19350#Unidentified Hat# +19351#Unidentified Hat# +19352#Unidentified Hat# +19364#Engineer's Cap# +19366#Unidentified Helmet# +19367#Unidentified Helmet# +19379#Striking Hat# +19380#Floating Ball# +19381#Cloth of Protection# +19382#Pop Popcorn Hat# +19385#Special Royal Jelly Herbal Tea# +19386#Soul Haunted Bread# +19387#Experimental Goat Cap# +19389#Bearfoot Special# +19390#Incredibly Spicy Curry# +19391#Eyes Of Illusion# +19394#Giant Burito# +19395#Tendon Satay# +19396#Special Meat Stew# +19397#Tristram 12# +19402#Classic Chick Hat Box# +19404#Classic Kettle Hat Box# +19407#Work Cap# +19409#Black Feather# +19411#Classic Parade Hat Box# +19415#White Bird Rose# +19424#Master's Head# +19425#Master's Head# +19426#King Of Spirit Circlet# +19428#Unidentified Hat# +19429#Zarathustra# +19433#Unidentified Hat# +19436#Vesper Headgear# +19439#Unidentified Ribbon# +19446#Unidentified Ribbon# +19451#Unidentified Hat# +19452#Unidentified Hat# +19453#Jejecap Type J# +19457#Lovely Heart Hat# +19459#Lunatic on Shoulder# +19464#Costume Melonbread Cap# +19465#Unidentified Hat# +19466#Unidentified Hat# +19469#Sacred Crown# +19472#Unidentified Hat# +19474#Unidentified Hat# +19475#Unidentified Hat# +19476#Unidentified Hat# +19477#Unidentified Hat# +19478#Unidentified Hat# +19479#Unidentified Hat# +19480#Unidentified Hat# +19481#Unidentified Hat# +19482#Unidentified Hat# +19483#Unidentified Hat# +19484#Unidentified Hat# +19485#Unidentified Hat# +19486#Unidentified Hat# +19487#Unidentified Hat# +19488#Unidentified Hat# +19489#Unidentified Hat# +19490#Unidentified Hat# +19491#Unidentified Hat# +19492#Unidentified Hat# +19495#Diabolus Wing# +19500#Unidentified Mask# +19501#Unidentified Helmet# +19502#Costume Goggles# +19503#Unidentified Hat# +19504#Unidentified Glasses# +19505#Unidentified Mask# +19506#Unidentified Hairband# +19507#Costume Shining Sun# +19508#Unidentified Helmet# +19509#Costume Butterfly Ears# +19510#Costume Bolt Ears# +19511#Heart Eyepatch# +19512#Unidentified Glasses# +19513#Costume Chicken Beak# +19514#Costume Old Timey Mustache# +19515#Costume Yellow Hat# +19516#Costume Singing Bird# +19517#Costume Rooster's Comb# +19518#Costume Rainbow# +19519#Costume Lightning Cloud# +19520#Costume Rain Cloud# +19521#Costume Old Timey Derby# +19522#Costume Mini Crown# +19523#Unidentified Hairband# +19524#Unidentified Hairband# +19525#Costume Jack be Dandy# +19526#Costume Helm# +19527#Costume Spiky Band# +19528#Costume Iron Cain# +19529#Costume Angel Wing# +19530#Unidentified Hat# +19531#Unidentified Mask# +19532#Unidentified Hairband# +19533#Costume Spore Hat# +19534#Unidentified Mask# +19535#Costume Sinsuncho Hat# +19536#Costume: Rose Corsage# +19537#Costume Gryphon Hat# +19538#Costume Full Moon# +19539#Costume: Reginleif Hairband# +19540#Costume: Rabbit Earmuffs# +19541#Costume: White Romantic Flower# +19542#Costume Devil Whisper# +19543#Costume Oliver Wolf Hood# +19544#Costume Drooping Cat Crew# +19545#Costume Boy's Cap# +19546#Costume Valkyrie Helm# +19547#Costume Deviruchi Cap# +19548#Costume Frog Cap# +19549#Costume Magestic Goat# +19550#Costume Blush# +19551#Costume Elven Ears# +19552#Costume Sentimental Flower# +19553#Costume Assassin Mask # +19554#Costume Hahoe Mask# +19555#Costume Crescent Helm# +19556#Costume Kabuki Mask# +19557#Unidentified Hat# +19558#Unidentified Hat# +19559#Unidentified Hat# +19560#Unidentified Hat# +19561#Unidentified Hat# +19562#Unidentified Hat# +19563#Unidentified Mask# +19564#Unidentified Mask# +19565#Unidentified Hat# +19566#Costume Samurai Mask# +19567#Unidentified Hat# +19568#Unidentified Helmet# +19569#Sprout Hat# +19570#Unidentified Helmet# +19571#Unidentified Hat# +19572#Unidentified Hat# +19573#Costume Heart Wing Hairband# +19574#Costume Lord of Death# +19575#Unidentified Hairband# +19576#Unidentified Hairband# +19577#Costume 10th Anniversary Poring Hat# +19578#Unidentified Helmet# +19579#Unidentified Hat# +19580#Costume Sphinx Helm# +19581#Adventurer's Cap# +19582#Costume Cowboy Hat# +19583#Costume Zorro Mask# +19584#Costume Pirate Dagger# +19585#c Feather Beret# +19586#Unidentified Hairband# +19587#Costume King Poring Hat# +19588#Unidentified Hat# +19589#Costume: Fallen Angel# +19590#Unidentified Hairband# +19591#Unidentified Hairband# +19592#Unidentified Hat# +19593#Unidentified Hat# +19594#Unidentified Hat# +19595#Unidentified Hat# +19596#Unidentified Hairband# +19597#Costume Magic Eyes# +19598#Costume: Wondering Wolf Helm# +19599#Costume Imp Hat# +19600#Costume Drooping Kiehl Doll# +19601#Costume Drooping Aliot Doll# +19602#Classic Hunting Cap Box# +19603#Classic Koneko Hat Box# +19604#Brawler's Supply Crate# +19605#Spellcaster's Supply Crate# +19606#Sharpshooter's Supply Crate# +19607#Costume Love Chick Hat# +19608#Costume Chick Hat# +19609#Unidentified Glasses# +19610#Unidentified Mask# +19611#Unidentified Ribbon# +19612#Unidentified Helmet# +19613#Unidentified Hairband# +19614#Unidentified Hat# +19615#Unidentified Mask# +19616#Costume Wickebine's Black Cat Ears# +19617#Costume Puppy Headband# +19618#Costume Kitsune Mask# +19619#Costume Corsair# +19620#Costume: Detective hat# +19621#Costume Evil Wing Ears# +19622#Costume Crescent Hairpin# +19623#Costume Bijofnil Wings# +19624#Costume Blank Eyes# +19625#Costume Bunny Band# +19626#Unidentified Hat# +19627#Costume Satellite Hairband# +19628#Unidentified Helmet# +19629#Costume Tiara# +19630#Costume Crown# +19631#Unidentified Hat# +19632#Unidentified Hat# +19633#Unidentified Hairband# +19634#Costume Flu Mask# +19635#Unidentified Helmet# +19636#Costume Rudolph's Nose# +19637#Unidentified Hat# +19638#Unidentified Mask# +19639#Unidentified Hat# +19640#Unidentified Hat# +19641#Unidentified Hat# +19642#Unidentified Hat# +19643#Costume Wickebine Ears# +19644#Unidentified Ribbon# +19645#Unidentified Helmet# +19646#Unidentified Hat# +19647#Unidentified Hat# +19648#Unidentified Hat# +19649#Costume White Kitten Ears# +19650#Costume Rainbow Feather Decoration# +19651#C RWC Shouting Mouth# +19652#Costume: Rabbit Magic Hat# +19653#placeholder# +19654#Costume Captain Carocc's Hat# +19655#placeholder# +19656#Creative Convention Hat# +19657#placeholder# +19658#placeholder# +19659#Costume Brown Beanie# +19660#Costume Coppola's Hat# +19661#Costume Sweet Bonnet# +19662#Unidentified Hat# +19663#Unidentified Hat# +19664#Unidentified Hairband# +19665#Unidentified Hat# +19666#Unidentified Hat# +19667#Costume Helm of Dragoon# +19668#Costume Wind Mildstone# +19669#Costume Reginleif Wings# +19670#Costume Southern Cross# +19671#Costume Piggy Bank# +19672#Costume Poring Letter# +19673#Costume Love Guard# +19674#Costume Evil Mask# +19675#Costume Jumping Poring# +19676#Costume Rainbow Poring Hat# +19677#Costume Soulless Wing# +19678#Costume Bell Ribbon# +19679#Costume Blank Eyes# +19680#Costume Tongue Mask# +19681#Costume Silver Tiara# +19682#Costume Santa Poring Hat# +19683#Sweets Candy# +19684#Costume Happy Wig# +19685#Costume Santa Poring Hat# +19686#C Santa Hairband# +19687#Costume Lush Rose# +19688#Costume Katusa# +19689#Costume Ati Atihan# +19690#Costume Dark Snake Lord Hat# +19691#Costume Blue Ribbon# +19692#Costume Peace Pipe# +19693#Costume Triple Poring Hat# +19694#Costume Vane Hairpin# +19695#Costume Kettle Hat# +19696#Costume: Mochiring Hat# +19697#Costume Rudolf Santa Hat# +19698#Unidentified Hat# +19699#Unidentified Hat# +19700#Unidentified Helmet# +19701#Costume Red Bonnet# +19702#Costume Santa's Hat# +19703#Unidentified Helmet# +19704#Unidentified Helmet# +19705#Unidentified Helmet# +19706#Unidentified Hat# +19707#Costume Polar Bear Cap# +19708#Unidentified Hairband# +19709#Costume Yellow Ribbon# +19710#Costume Wings of Victory# +19711#Unidentified Hairband# +19712#Costume Little Angel Doll# +19713#Costume Lucky Clover# +19714#Costume Lady Tanee Doll# +19715#Costume Scarf# +19716#Costume Alice Doll# +19717#Costume Pink Ribbon# +19718#Costume Gothic Headdress# +19719#Unidentified Helmet# +19720#Unidentified Hat# +19721#Costume Darkness Helm# +19722#Costume Black Glasses# +19723#Costume Sacred Torch Coronet# +19724#Costume Pavianne Doll Hat# +19725#Costume: Bread Bag2# +19726#Costume Scarlet Rose# +19727#Costume Deviling Hat# +19728#Costume: Tare Zonda# +19729#Costume Neko Mimi Kafra# +19730#Unidentified Hairband# +19731#Unidentified Hairband# +19732#Unidentified Mask# +19733#Unidentified Hat# +19734#Unidentified Glasses# +19735#Unidentified Helmet# +19736#Unidentified Mask# +19737#Unidentified Hat# +19738#Unidentified Hat# +19739#Costume Sleeping Kitty Hat# +19740#Unidentified Hat# +19741#Unidentified Helmet# +19742#Unidentified Hairband# +19743#Costume Anubis Helm# +19744#Costume Black Tail Ribbon# +19745#Costume Holy Marching Hat# +19746#Costume: Cap Of Blindness# +19747#Costume Thanatos Despero Mask# +19748#Costume Diadem# +19749#Costume Angel's Blessing# +19750#Costume Saint Frill Ribbon# +19751#Costume Light Darkness Crown# +19752#Costume Shelter Wing Ears# +19753#Costume Hat of Fortune# +19754#Costume Good Wedding Veil# +19755#Costume YinYang Earring# +19756#Costume Holy Mother Love# +19757#Costume Water Lily Crown# +19758#Costume King Frog Hat# +19759#Costume Umbrella Hat# +19760#Costume Rainbow Veil# +19761#Costume White Lily# +19762#Costume Happy Peace Proof# +19763#Unidentified Hat# +19764#Unidentified Mask# +19765#Unidentified Ribbon# +19766#Unidentified Hat# +19767#Costume Home Cherry Blossom# +19768#Costume Sakura Coronet# +19769#Costume Mischievous Fairy# +19770#Costume: Japan Winecup# +19771#Costume Butterfly Hairpin# +19772#Costume Honeybee Hat# +19773#Costume Angeling Hairpin# +19774#Costume Emperor Wreath# +19775#Costume Marvelous Wig# +19776#Costume Tomboy Fairy# +19777#Unidentified Hat# +19778#King Berry# +19779#Unidentified Hat# +19780#Costume Lunatic Knit Hat# +19781#Costume: Angel Wing Ears# +19782#Unidentified Hat# +19783#Costume Granpa Stache# +19784#Unidentified Helmet# +19785#Costume Crunch Toast# +19786#Unidentified Helmet# +19787#Costume Devoted Eyes# +19788#Costume Heart Eyepatch# +19789#Costume Sweet Gents# +19790#Costume Wedding Veil# +19791#Unidentified Mask# +19792#Unidentified Mask# +19793#Costume Goblin Mask# +19794#Unidentified Mask# +19795#Unidentified Helmet# +19796#Unidentified Helmet# +19797#Unidentified Helmet# +19798#(null)# +19799#Unidentified Helmet# +19800#Costume Carnation Hairband# +19801#Costume Fox Hat# +19802#Costume Drooping Nine Tail# +19803#Costume Pinwheel Hat# +19804#Costume Red Vane Hairpin# +19805#Costume Taboo Curse Scroll# +19806#Costume Full Bloom Hairpin# +19807#Costume Majestic Helmet# +19808#Costume Blazing Sun# +19809#Costume Purple Cowboy Hat# +19810#Costume Ifrit's Ear# +19811#Costume Beer Cap# +19812#Costume Large Hibiscus# +19813#Costume Icecream Hat# +19814#Costume Shiny Wig# +19815#Costume Lolita Ten Gallon Hat# +19816#Pecopeco Cap Costume# +19817#Costume Ifrit's Breath# +19818#Costume: Droop Morocc Minion# +19819#Costume Necromancer Hood# +19820#Unidentified Hat# +19821#Costume Hyegun Hat# +19822#Costume Yellow Bandana# +19823#Costume Kitsune Mask Hood# +19824#Costume Evil Druid Hat# +19825#Costume: Vicious Stop Bandage# +19826#Costume Ice Wing Ears# +19827#Costume Amistr Cap# +19828#Costume Fedora# +19829#Costume Straw Hat# +19830#Costume Sunglasses# +19831#Costume Filir Hat# +19832#Costume Poring Hat# +19833#Costume Fillet# +19834#Costume Baseball Cap# +19835#Costume Lif Doll Hat# +19836#Costume Gigantic Magestic Goat# +19837#Costume Asara Fairy Hat# +19838#Costume Fox Hat# +19839#Costume Vanilmirth Hat# +19840#Costume Hat of the Sun God# +19841#Costume Dragonhelm Copper# +19842#Costume Puppy Hat# +19843#Unidentified Hairband# +19844#Unidentified Hat# +19845#Unidentified Hat# +19846#Unidentified Mask# +19847#Unidentified Hat# +19848#Costume Angeling Hat# +19849#Unidentified Hat# +19850#Unidentified Hat# +19851#Unidentified Hat# +19852#Unidentified Hat# +19853#Unidentified Ribbon# +19854#Unidentified Hat# +19855#Unidentified Hat# +19856#Costume Red Bean Shaved Ice Hat# +19857#Unidentified Ribbon# +19858#Unidentified Ribbon# +19859#Unidentified Hat# +19860#Costume Criatura Academy Hat# +19861#Unidentified Hairband# +19862#Unidentified Helmet# +19863#Unidentified Helmet# +19864#Unidentified Hat# +19865#Unidentified Hat# +19866#Unidentified Hat# +19867#Unidentified Hat# +19868#Unidentified Hat# +19869#Unidentified Hat# +19870#Unidentified Hat# +19871#Costume Musical Decoration# +19872#Unidentified Mask# +19873#Costume Carnival Hat# +19874#Costume Carnival Circlet# +19875#Costume: Love Rabbit Hood# +19876#Costume Rabbit Ear Hat# +19877#Costume: Eyes Of Darkness# +19878#Costume Drooping Bunny# +19879#Costume Black Bunny Band# +19880#Costume Gold Tiara# +19881#Costume: Pretty Rabbit Hood# +19882#Costume Flowerpot Mask# +19883#Costume: Piamette Hood# +19884#Costume Vanargand Helm# +19885#Unidentified Glasses# +19886#Costume Luxury Sunglasses# +19887#Unidentified Glasses# +19888#Unidentified Glasses# +19889#Unidentified Hat# +19890#Unidentified Hat# +19891#Unidentified Hat# +19892#Costume: Night Sparrow Hat# +19893#Costume Ordinary Black Magician Hat# +19894#Costume Shrine Maiden Hat# +19895#Costume: Magician's Night Cap# +19896#Costume pRO 10th Cap# +19897#Unidentified Helmet# +19898#Unidentified Helmet# +19899#Unidentified Helmet# +19900#Cool Pirate Eyepatch# +19901#Unidentified Helmet# +19902#Unidentified Mask# +19903#Costume Witch's Pumpkin Hat# +19904#Costume Skull cap# +19905#Costume Secret Bandana# +19906#Costume 24 Bolt# +19907#Costume Beautiful Phantom Mask# +19908#Costume National flag hat# +19909#Costume White Baby demom hat# +19910#Costume Halloween hat# +19911#Costume Triangle roof hat# +19912#Costume Cat Eyes# +19913#Unidentified Hat# +19914#Costume Ferlock's Hat# +19915#Costume Little Devil's Horn# +19916#Unidentified Hat# +19917#Costume Gloomy Pumpkin Hat# +19918#Costume Lude Mask# +19919#Costume Quve Mask# +19920#Costume: Whisper Mask# +19921#Unidentified Hat# +19922#Costume: Noah Hat# +19923#Costume Dark Age# +19924#Costume Odin Mask# +19925#Costume: One Eyed Glasses# +19926#Costume Ribbon Black# +19927#Costume Drooping Gray Kitty# +19928#Costume Gothic Heartwing Hairband# +19929#Costume Classic Ribbon# +19930#Costume Angel Mini Silk Hat# +19931#Unidentified Hat# +19932#Unidentified Hat# +19934#Unidentified Hat# +19935#Unidentified Hat# +19936#Costume Gigantic Water Cap# +19937#Unidentified Hat# +19938#Unidentified Hat# +19939#Costume Antler# +19940#Unidentified Mask# +19941#Unidentified Hat# +19942#Unidentified Hairband# +19943#Unidentified Hat# +19944#Unidentified Helmet# +19945#Unidentified Helmet# +19946#Unidentified Hat# +19947#Unidentified Mask# +19948#Unidentified Hat# +19949#Unidentified Hat# +19950#Unidentified Helmet# +19951#placeholder# +19952#placeholder# +19953#Costume Parade Hat# +19954#Costume 3D Glasses# +19955#Costume Christmas Tree Hat# +19956#placeholder# +19957#placeholder# +19958#Costume Choir Hat# +19959#Costume Drooping Argiope# +19960#placeholder# +19961#Costume Rune Circlet# +19962#Costume Mitra# +19963#Costume Driver Band# +19964#Costume Driver Band (Yellow)# +19965#Costume Shadow Handicraft# +19966#Costume Maestro Song's Hat# +19967#Costume Midas Whisper# +19968#Costume Magic Stone Hat# +19969#Costume Blazing Soul# +19970#Costume Wind Whisper# +19971#Costume Dying Swan# +19972#Costume Casket of Protection# +19973#Costume Bone Circlet# +19974#Costume Camouflage Bunny Hood# +19975#Unidentified Hat# +19976#Costume Cat Santa Hat# +19977#Costume Golden Exclamation# +19978#Costume Silver Exclamation# +19979#Costume Golden Question# +19980#Costume Silver Question# +19981#Unidentified Ribbon# +19982#Costume Santa Hat# +19983#Unidentified Ribbon# +19984#Costume Cold Protection Hat# +19985#Costume Aura Quartz Crown# +19986#Costume Lunatic Hat# +19987#Costume Blue Beanie# +19988#Costume Elder Crown# +19989#Costume Mouton Life# +19990#Costume Eclipse Knit Hat# +19991#Costume Galanthus Guard# +19992#Costume Chilly Breath# +19993#Unidentified Mask# +19994#Costume saLUsalo Hat# +19995#Costume Flower Blossom# +19996#Costume Horse King# +19997#Costume Bomb Hat# +19998#Costume Dragon Turtle Hat# +19999#Unidentified Hat# +20000#Unidentified Hat# +20001#Hardened Coat# +20002#Whip of Balance# +20003#Cello# +20004#Unidentified Helmet# +20005#Costume Pegasus Wing Ears# +20006#Costume Dark Knight Mask# +20007#Costume Bullock Helm# +20008#Costume General Helmet# +20009#Costume Dragon Skull# +20010#Costume Rainbow Wing Ears# +20011#Costume Lightning Speed# +20012#Costume Double Horn Helm# +20013#Unidentified Hat# +20014#Costume Lincoln Hat# +20015#Costume Lincoln Beard# +20016#Costume: Cool Dinner Hat# +20017#Unidentified Hat# +20018#Costume Long Wolf Ears# +20019#Costume: Beret Of Artist# +20020#Unidentified Hat# +20021#Greenish Shoes# +20022#Soul Shoes# +20023#Unidentified Hat# +20024#Unidentified Ribbon# +20025#Unidentified Hat# +20026#Unidentified Hat# +20027#Unidentified Hat# +20028#Unidentified Hat# +20029#Unidentified Mask# +20030#Unidentified Mask# +20031#Costume Bunny Headdress# +20032#Mocked Muffler# +20033#Unidentified Hat# +20034#Costume Castle Bat# +20035#Costume Miracle Blue Rose# +20036#Costume Crown of the Sword Master# +20037#Costume Owlduke Silk Hat# +20038#Costume Haunted Armor Helm# +20039#Costume Butterfly Wing Ears# +20040#Costume Rose Crown# +20041#Costume Earth Goddess Flower# +20042#Costume Hermode Cap# +20043#Costume Red Cherry Blossom# +20044#Costume Carmen Miranda's Hat# +20045#Costume Samambaia# +20046#Costume Blue Rose Decoration# +20047#Costume Cherry Blossom Pray# +20048#Costume Wind of the Prairie# +20049#Unidentified Ribbon# +20050#Unidentified Hat# +20051#Stop Post# +20052#Unidentified Hat# +20053#Unidentified Hat# +20054#(null)# +20055#Unidentified Hairband# +20056#Unidentified Hairband# +20057#Unidentified Hat# +20058#Hiarband# +20059#Unidentified Mask# +20060#Unidentified Helmet# +20061#Unidentified Mask# +20062#Unidentified Hat# +20063#Unidentified Helmet# +20064#Giant Flywing 2500 Box# +20065#Unidentified Hairband# +20066#Unidentified Hairband# +20067#Unidentified Hairband# +20068#Unidentified Hairband# +20069#Unidentified Hairband# +20070#Costume Alpaca Hood# +20071#Costume Warg in Mouth# +20073#Unidentified Hairband# +20074#Unidentified Hat# +20075#Unidentified Hat# +20076#Unidentified Hairband# +20077#Unidentified Glasses# +20078#Unidentified Hat# +20079#Unidentified Hairband# +20080#Unidentified Hat# +20081#Unidentified Helmet# +20082#Unidentified Hat# +20083#Unidentified Hat# +20084#Unidentified Hat# +20085#Costume Green Clover Hat# +20086#Unidentified Hat# +20087#Unidentified Hat# +20088#Unidentified Hat# +20089#Unidentified Hat# +20090#Costume Egg Shell# +20091#(null)# +20092#Sale Sign# +20093#Unidentified Hat# +20094#Costume Green Ribbon Headband# +20095#Costume Red Ribbon Headband# +20096#Costume Blue Ribbon Headband# +20097#Costume White Ribbon Headband# +20098#Unidentified Hairband# +20099#Costume Ljosalfar# +20100#Costume Volume Feather Hat# +20101#Unidentified Hairband# +20102#Unidentified Hat# +20103#Unidentified Hat# +20104#Unidentified Hat# +20105#Unidentified Hat# +20106#Costume Classic Hat# +20107#Unidentified Mask# +20108#Unidentified Glasses# +20109#Unidentified Hat# +20110#Unidentified Hat# +20111#Unidentified Hat# +20112#Unidentified Hat# +20113#Costume Star Reading Hat# +20114#Unidentified Hat# +20115#Unidentified Glasses# +20116#Unidentified Hat# +20117#Unidentified Hat# +20118#Unidentified Hat# +20119#Unidentified Hat# +20120#Unidentified Hat# +20121#Rental Underneath Saber# +20122#Rental Underneath Gladius# +20123#Rental Underneath Chain# +20124#Rental Underneath Book# +20125#Rental Underneath Hypnotist's Staff# +20126#Rental Underneath Knuckle Duster# +20127#Rental Underneath Lute# +20128#Rental Underneath Wire# +20129#Rental Underneath Bastard Sword# +20130#Costume Whisper Tall Hat# +20131#Rental Underneath HammerAxe# +20132#Costume Test Subject Aura# +20133#Costume Poring Mascot# +20134#Rental Underneath Crossbow# +20135#Costume: 12th Anniversary Crown# +20136#Costume: 12th Anniversary ElvenEars# +20137#Rental Underneath Drifter# +20138#Rental Underneath Destroyer# +20139#Rental Underneath Thunder P# +20140#Unidentified Ribbon# +20141#Unidentified Glasses# +20142#Unidentified Glasses# +20143#Unidentified Mask# +20144#Unidentified Glasses# +20145#Costume Robo Eye# +20146#Costume Nero Mask# +20147#Costume Pigeon on Shoulder# +20148#Unidentified Hat# +20149#Unidentified Glasses# +20150#Unidentified Mask# +20151#Unidentified Hat# +20152#Costume Straw Rice Bag# +20153#Costume Monochrome Cap# +20154#Costume Falling Leaves# +20155#Costume Lady's Feather Hat# +20156#Costume Fan in Mouth# +20157#Unidentified Hat# +20158#Unidentified Helmet# +20159#Unidentified Hairband# +20160#Costume Fried Egg Hat# +20161#Rental Saharic Saber# +20162#Rental Saharic Gladius# +20163#Rental Saharic Chain# +20164#Costume Duneyrr Helm# +20165#Rental Saharic Hypnotist's Staff# +20166#Rental Saharic Knuckle Duster# +20167#Rental Saharic Lute# +20168#Rental Saharic Wire# +20169#Rental Saharic Bastard Sword# +20170#Rental Saharic Jur# +20171#Costume Sepia Cap# +20172#Costume Pumpkin Head# +20173#Costume Lude Hood# +20174#Rental Saharic Crossbow# +20175#Costume Diabolic Headphones# +20176#Rental Saharic Cyclone# +20177#Rental Saharic Drifter# +20178#Rental Saharic Destroyer# +20179#Rental Saharic Thunder P# +20180#Unidentified Hat# +20181#Unidentified Hat# +20182#Unidentified Hat# +20183#Costume Floating Ghost# +20184#Unidentified Hat# +20185#Unidentified Glasses# +20186#Unidentified Hat# +20187#Unidentified Helmet# +20188#Unidentified Helmet# +20189#Unidentified Helmet# +20190#Costume Chicken Hat# +20191#Costume Black Cat Ears Beret# +20192#Unidentified Mask# +20193#Unidentified Mask# +20194#Costume Lion Mask# +20195#Costume Scratching Cat# +20196#Costume Leopard Ear Hat# +20197#Costume:Amistr Beret# +20198#Unidentified Hat# +20199#Costume Evil Marcher Hat# +20200#Costume Rabbit Head Dress# +20201#Costume Banshee Master Kiss# +20202#Costume Deviruchi Balloon# +20203#Unidentified Hat# +20204#Costume Hunting Cap# +20205#Flower# +20206#Unidentified Hat# +20207#Costume Striped Headband# +20208#Unidentified Hat# +20209#Unidentified Hat# +20210#Unidentified Hat# +20211#Unidentified Hat# +20212#Unidentified Hat# +20213#Unidentified Glasses# +20214#Unidentified Hat# +20215#Unidentified Glasses# +20216#Unidentified Hat# +20217#Costume Veil# +20218#Costume Spell Circuit# +20219#(null)# +20220#Unidentified Hat# +20221#Unidentified Glasses# +20222#Costume Blue Christmas Cheer# +20223#Unidentified Mask# +20224#Unidentified Hat# +20225#Unidentified Hat# +20226#Hair Brush# +20227#Costume Husky Hat# +20228#Unidentified Hat# +20229#Unidentified Hairband# +20230#Costume Bankruptcy Mask# +20231#Costume Snowman Hat# +20232#Costume Celine Ribbon# +20233#Costume Golden Angel# +20234#Costume Baphomet Hat# +20235#Costume Frozen Lands Rose# +20236#Costume Archangeling Hat# +20237#Costume Pink Wool Hat# +20238#Costume Blue Drooping Cat# +20239#Costume Large Ribbon Muffler (Orange)# +20240#Costume Present of Snow# +20241#Costume Eclipse Hat# +20242#Costume Snowysnow Hat# +20243#Costume Mint Chocolate Bonnet# +20244#Unidentified Mask# +20245#Unidentified Ribbon# +20246#Costume Time Decor# +20247#Costume Black Hand of Destiny# +20248#Unidentified Hat# +20249#Unidentified Hat# +20250#Unidentified Hat# +20251#Unidentified Hat# +20252#Unidentified Hairband# +20253#Unidentified Hat# +20254#Unidentified Ribbon# +20255#Costume Love Cheeks# +20256#Unidentified Hat# +20257#Unidentified Hat# +20258#Unidentified Hairband# +20259#Unidentified Mask# +20260#Unidentified Ribbon# +20261#Unidentified Hairband# +20262#Unidentified Hairband# +20263#Unidentified Hairband# +20264#Unidentified Mask# +20265#Unidentified Hat# +20266#Costume Secret Zipper# +20267#Unidentified Hat# +20268#Costume Sleep Eclipse Family# +20269#Unidentified Hat# +20270#Unidentified Hat# +20271#Unidentified Hat# +20272#Unidentified Hat# +20273#Costume Soft Sheep Hat# +20274#Unidentified Hat# +20275#Unidentified Hairband# +20276#Unidentified Hairband# +20277#Unidentified Hat# +20278#Costume Man's Pride# +20279#Costume Whistle# +20280#Costume Chewed Pencil# +20281#Costume: Kindergartener's Hat# +20282#Costume White Boy's Cap# +20283#Costume Overprotector# +20284#Costume Cherry Blossom Hat# +20285#Costume Fluttering Cherry Blossom# +20286#Costume Under Rimmed Glasses (Red)# +20287#Costume Man's Golden Pride# +20288#Costume Bijou Hat# +20289#Unidentified Ribbon# +20290#Unidentified Hat# +20291#Unidentified Hat# +20292#Unidentified Hat# +20293#Costume Sleeper Hat# +20294#Costume: Maximilian Von Babe XXIX# +20295#Costume Poring Sunglasses# +20296#Costume Yoyo Hat# +20297#Costume Cactus Hat# +20298#Costume Happy Droopy Lunatic Ear# +20299#Costume Face Crasher# +20300#Costume Hill Wind Mask# +20301#Costume Golden Savage Hat# +20302#Costume Beelzebub's Crown# +20303#Unidentified Hat# +20304#Unidentified Hat# +20305#Unidentified Mask# +20306#Costume Artist's Hat# +20307#Unidentified Hat# +20311#Costume Magical Booster# +20312#Costume Baron's Evil Eye# +20313#Costume Disk In Mouth# +20314#Costume New Wave Sunglasses# +20315#Costume Analyzing Eye# +20316#Costume Cherub's Winged Helm# +20317#Costume Cyber Cat Ear Headphones# +20318#Costume Charleston's Antenna# +20319#Costume: Crimson Booster# +20320#Unidentified Hairband# +20321#Classic Underneath Saber 2 Week Rental Box# +20322#Classic Underneath Gladius 2 Week Rental Box# +20323#Classic Underneath Chain 2 Week Rental Box# +20324#Classic Underneath Book 2 Week Rental Box# +20325#Classic Underneath Hypnotist's Staff 2 Week Rental Box# +20326#Classic Underneath Knuckle Duster 2 Week Rental Box# +20327#Classic Underneath Lute 2 Week Rental Box# +20328#Classic Underneath Wire 2 Week Rental Box# +20329#Costume: Very Cute Doll Hat# +20330#Costume Sombrero# +20331#Classic Underneath HammerAxe 2 Week Rental Box# +20332#Classic Underneath Trident 2 Week Rental Box# +20333#Classic Underneath Huuma Giant Wheel 2 Week Rental Box# +20334#Classic Underneath Crossbow 2 Week Rental Box# +20335#Classic Underneath Garrison 2 Week Rental Box# +20338#Classic Underneath Destroyer 2 Week Rental Box# +20339#Classic Underneath Thunder P 2 Week Rental Box# +20340#Costume Ponytail (Black)# +20341#Costume Cowlick (Black)# +20342#Costume Twin Ponytail (Black)# +20343#Unidentified Hat# +20344#Costume Happy Balloon# +20345#Unidentified Helmet# +20346#Unidentified Helmet# +20347#Unidentified Hat# +20348#Unidentified Hat# +20349#Costume Flying Galapago# +20350#Costume Cowlick (Yellow)# +20351#Costume Cowlick (Green)# +20352#Costume Cowlick (Purple)# +20353#Costume Cowlick (Red)# +20354#Costume Cowlick (Orange)# +20355#Costume Cowlick (Blue)# +20356#Costume Cowlick (White)# +20357#Costume Ponytail (Yellow)# +20358#Costume Ponytail (Green)# +20359#Costume Ponytail (Purple)# +20360#Costume Ponytail (Red)# +20361#Costume Ponytail (Orange)# +20362#Costume Ponytail (Blue)# +20363#Costume Ponytail (White)# +20364#Costume Twin Ponytail (Yellow)# +20365#Costume Twin Ponytail (Green)# +20366#Costume Twin Ponytail (Purple)# +20367#Costume Twin Ponytail (Red)# +20368#Costume Twin Ponytail (Orange)# +20369#Costume Twin Ponytail (Blue)# +20370#Costume Twin Ponytail (White)# +20371#Costume Special Kafra Hat# +20372#(null)# +20373#(null)# +20374#(null)# +20375#(null)# +20376#(null)# +20377#Costume Flying Helmet# +20378#Costume Sky Helm# +20379#(null)# +20380#Unidentified Hat# +20381#Costume Steampunk Hat# +20382#Unidentified Hat# +20383#Unidentified Hat# +20384#Unidentified Hat# +20386#Unidentified Hat# +20387#Unidentified Ribbon# +20388#Unidentified Hat# +20389#Unidentified Ribbon# +20390#Unidentified Ribbon# +20391#Costume Silent Executor# +20392#Costume Sniper Goggle# +20393#Costume Dip Schmidt Helm# +20394#Unidentified Hat# +20395#Unidentified Hat# +20396#Unidentified Hat# +20397#Costume Jakk# +20398#Costume Niflheim Bunny Hat# +20399#Costume Crow Tengu Mask# +20400#Unidentified Ribbon# +20401#Unidentified Ribbon# +20402#Unidentified Hat# +20403#Unidentified Helmet# +20404#Unidentified Hat# +20405#Costume Eremes' Scarf# +20406#Unidentified Ribbon# +20407#Costume Test Subject Aura (Red)# +20408#Unidentified Hairband# +20409#Unidentified Hairband# +20410#Unidentified Helmet# +20411#Unidentified Hat# +20412#Unidentified Hat# +20413#Unidentified Hairband# +20414#Unidentified Helmet# +20415#Unidentified Helmet# +20416#Unidentified Ribbon# +20417#Unidentified Ribbon# +20418#Unidentified Ribbon# +20419#Unidentified Ribbon# +20420#Unidentified Ribbon# +20421#Unidentified Ribbon# +20422#Unidentified Ribbon# +20423#Unidentified Ribbon# +20424#Unidentified Ribbon# +20425#Unidentified Ribbon# +20426#Unidentified Ribbon# +20427#Unidentified Ribbon# +20428#Unidentified Ribbon# +20429#Unidentified Ribbon# +20430#Costume Loyal Servant of Morroc# +20431#Unidentified Hairband# +20432#Unidentified Helmet# +20433#Unidentified Hat# +20434#Costume Drooping Gunslinger# +20435#Unidentified Hairband# +20436#Unidentified Hat# +20437#Unidentified Hairband# +20438#Unidentified Mask# +20439#Unidentified Ribbon# +20440#Tone of Gold# +20441#Unidentified Hairband# +20442#Unidentified Hairband# +20443#Unidentified Helmet# +20444#Unidentified Hat# +20445#Candle# +20446#Unidentified Hat# +20447#Unidentified Hairband# +20448#Unidentified Ribbon# +20449#Costume Black and White Temptation# +20450#Costume Gram Peony# +20451#Costume Night Sky of Memory# +20452#Unidentified Hairband# +20453#Costume Wrapping Cloth# +20454#Costume Crown of Ancient Queen# +20455#Costume Republic Hat# +20456#Costume Combat Vestige# +20457#Costume Fluttering Feather# +20458#Costume Wild Poring Rider# +20459#Costume Valhalla Idol# +20460#Unidentified Hairband# +20461#Unidentified Ribbon# +20462#Unidentified Hat# +20463#Unidentified Hat# +20464#Unidentified Ribbon# +20465#Unidentified Glasses# +20466#Unidentified Ribbon# +20467#Unidentified Hat# +20468#Costume Harum Beret# +20469#Unidentified Helmet# +20470#Sweets Chocolate Hat# +20471#Unidentified Ribbon# +20472#Unidentified Helmet# +20473#Unidentified Helmet# +20474#Unidentified Hat# +20475#Unidentified Ribbon# +20476#Unidentified Ribbon# +20477#Unidentified Hat# +20478#Unidentified Hat# +20479#Unidentified Hat# +20480#Unidentified Ribbon# +20481#Unidentified Mask# +20482#Unidentified Hat# +20483#Unidentified Ribbon# +20484#Unidentified Hat# +20485#Unidentified Hat# +20486#Unidentified Ribbon# +20487#Unidentified Ribbon# +20488#Unidentified Ribbon# +20489#Unidentified Hat# +20490#Costume Full Bloom Hairpin (Blue)# +20491#Costume Laser of Eagle# +20492#Unidentified Ribbon# +20493#Unidentified Hat# +20494#Unidentified Hat# +20495#Costume Coati Hat# +20496#Costume Black Shiba Inu Hat# +20497#Costume Umbala Spirit# +20498#Costume Elephant Hat# +20499#Costume Cat Ear Hat# +20500#Costume Archangel Wing# +20502#Unidentified Garment# +20504#Unidentified Garment# +20506#Unidentified Garment# +20507#Costume Poring Bag# +20508#Unidentified Hairband# +20509#Unidentified Garment# +20510#Unidentified Garment# +20511#Unidentified Garment# +20512#Costume Heroic Backpack# +20514#Costume Sword of Thanatos# +20515#Costume Magic Circle# +20516#Unidentified Garment# +20517#Unidentified Garment# +20519#Costume Full Bloom Cherry Tree# +20520#Unidentified Garment# +20522#Unidentified Garment# +20524#Costume: Shining Angel Wings# +20525#Unidentified Garment# +20526#Unidentified Garment# +20528#Unidentified Garment# +20530#Unidentified Garment# +20532#Unidentified Garment# +20533#Unidentified Garment# +20534#Costume Big White Cat# +20535#Costume Digital Space# +20538#Costume Magic Circle Rainbow# +20541#Costume Angel's Ribboned Wings# +20543#Costume Halloween Poring Bag# +20546#Unidentified Garment# +20547#Costume Whisper's Blessing# +20548#Unidentified Garment# +20570#Costume Love Candy Pack# +20571#Costume Valkyrie Wings# +20572#Wing of Heart# +20574#Costume Garment# +20575#Costume Backpack (Black)# +20576#Unidentified Garment# +20577#Costume Balloon Wing# +20578#Unidentified Garment# +20579#Unidentified Garment# +20582#Costume Bear Backpack# +20584#Costume Fox Tail# +20586#Costume Loli Ruri's Moon# +20588#Unidentified Garment# +20589#Costume One Wing# +20590#Costume Evil Druid Cross# +20591#Costume Bow on Back# +20592#Unidentified Garment# +20593#Costume Frozen Crystal Wings# +20594#Costume Big Ribbon Manteau# +20595#Costume Novice Red Backpack# +20597#Unidentified Garment# +20598#Unidentified Garment# +20599#Costume Sakura Wings# +20602#Costume Seraphim Wings# +20603# Costume Ulysses Wings# +20604#Costume Blessed Veil# +20605#Costume Leaf Umbrella# +20607#Costume Baldr Wing# +20613#Unidentified Garment# +20615#Unidentified Garment# +20616#Unidentified Garment# +20700#Egir Manteau# +20701#Sol Manteau# +20702#Manteau# +20703#TE WoE Cloak# +20704#TE WoE Magic Cloak# +20705#Lumiere Manteau# +20706#Amistr Bag# +20707#Kirin Wing# +20708#Unidentified Garment# +20709#Mana Mantle# +20710#Advanced Angelic Cardigan# +20711#Unidentified Garment# +20712#Valkyrie Cape# +20713#Unidentified Garment# +20714#Assassin's Muffler# +20715#Unidentified Garment# +20716#Unidentified Garment# +20717#Giant Faceworm Snake Skin# +20718#Giant Faceworm Snake Skin# +20719#Unidentified Garment# +20720#Unidentified Garment# +20721#Cloak Of Gray# +20722#Unidentified Garment# +20723#Unidentified Garment# +20724#Unidentified Garment# +20725#Ribbon Piamat# +20726#Fire Dragon's Coat# +20727#Unidentified Garment# +20728#Water Dragon Coat# +20729#Wind Dragon Coat# +20730#Loyalists Hood# +20731#Unidentified Garment# +20732#Supplement Part Con# +20733#Upgrade Part - Engine# +20734#Manteau Of Leafwind# +20735#Manteau Of Flame Heart# +20736#Unidentified Garment# +20737#Unidentified Garment# +20738#Unidentified Garment# +20739#Unidentified Garment# +20740#Unidentified Garment# +20741#Unidentified Garment# +20742#Unidentified Garment# +20743#Airship's Cloak# +20744#Felrock's Cloak# +20745#Manteau Of Mistic Froz# +20746#Costume Rudra's Grace# +20747#Manteau Great Nature# +20748#Fallen Warrior Manteau# +20749#Fallen Warrior Manteau# +20750#Unidentified Garment# +20751#Unidentified Garment# +20752#Golden Wing# +20753#Lian Robe# +20754#Unidentified Garment# +20755#Unidentified Garment# +20756#Egir Manteau# +20757#placeholder# +20758#placeholder# +20759#Unidentified Garment# +20760#Unidentified Garment# +20761#Costume Happiness Wings# +20762#Costume GreatDevil Wing# +20763#Costume Amistr Bag# +20764#Unidentified Garment# +20765#Unidentified Garment# +20766#Unidentified Garment# +20767#Unidentified Garment# +20768#Unidentified Garment# +20769#Unidentified Garment# +20770#Unidentified Garment# +20771#Unidentified Garment# +20772#Unidentified Garment# +20773#Excelion Wing# +20774#King of Void's Garment# +20775#Unidentified Garment# +20776#Unidentified Garment# +20777#Unidentified Garment# +20778#Red Lotus Stole# +20779#Unidentified Garment# +20780#Unidentified Garment# +20781#Unidentified Garment# +20782#Unidentified Garment# +20783#Hero Manteau# +20784#Unidentified Garment# +20785#Unidentified Garment# +20786#Unidentified Garment# +20787#Unidentified Garment# +20788#Doram Manteau# +20789#Luxurious Doram Manteau# +20790#Elegant Doram Manteau# +20791#Unidentified Garment# +20792#Unidentified Garment# +20793#Unidentified Garment# +20794#Unidentified Garment# +20795#Unidentified Garment# +20796#Unidentified Garment# +20797#Etran's Undershirt# +20798#Unidentified Ribbon# +20799#Elemental Towel# +20800#Enforcer Cape# +20801#Unidentified Garment# +20802#Teleport Amistr Bag# +20803#Heal Amistr Bag# +20804#Greed Amistr Bag# +20805#Increase AGI Amistr Bag# +20806#Magnum Break Amistr Bag# +20807#Endure Amistr Bag# +20808#Sight Amistr Bag# +20809#Improve Concentration Amistr Bag# +20811#Hiding Amistr Bag# +20812#Kirin Wing# +20813#Survivor's Manteau# +20814#Wakwak Manteau# +20815#Seraphim Robe# +20816#Yoichi's Muffler# +20817#Unidentified Garment# +20818#Unidentified Garment# +20819#Oxygen Tank# +20820#Elemental Cape# +20821#Golden Scarf# +20822#Mine Worker's Backpack# +20823#Unidentified Garment# +20824#Unidentified Garment# +20825#Unidentified Garment# +20826#Angel feather# +20827#Unidentified Garment# +20828#Unidentified Garment# +20829#Unidentified Garment# +20830#Unidentified Garment# +20831#Adventurer's Spirit# +20832#Unidentified Garment# +20834#Drifter's Cape# +20835#Unidentified Garment# +20836#Skin of Lindwyrm# +20837#Skin of Gwiber# +20838#Illusion Muffler# +20840#Illusion Ancient Cape# +20841#Golden Angel Wings# +20842#Unidentified Garment# +20843#Unidentified Garment# +20844#Unidentified Garment# +20845#Skin of Malach# +20846#Temporal Manteau# +20847#Illusion Survivor's Manteau# +20852#Unidentified Garment# +20853#Unidentified Garment# +20854#Medical Cape# +20855#[Rental] Oxygen Tank# +20856#YSF01 Manteau# +20857#Unidentified Garment# +20858#Unidentified Garment# +20859#Phreeoni Wings# +20860#Battle Surcoat# +20861#Sword Wing J# +20863#Menblatt Wing Manteau# +20899#Unidentified Garment# +20900#Unidentified Garment# +20901#Unidentified Garment# +20902#True Hunting Manteau# +20903#Short-term Hunting Manteau# +20906#Unidentified Garment# +20907#Unidentified Garment# +20915#Unidentified Garment# +20916#Unidentified Garment# +20917#Unidentified Garment# +20918#Angeling Poring Wing# +20922#Leviathan Muffler# +20923#Unidentified Garment# +20924#Unidentified Garment# +20925#Commander Manteau# +20931#Prism Rangers Scarf# +20932#Old Morroc Shawl# +20933#Illusion Engine Wing Type A# +20934#Illusion Engine Wing Type B# +20935#Lava Leather Manteau# +20936#Lava Leather Muffler# +20937#Lava Leather Hood# +20939#Unidentified Garment# +20940#Violet Halo# +20941#Phoenix Muffler# +20942#Manteau Of Guardsman# +20943#Geffen Magic Muffler# +20944#Anti Magic Manteau# +20945#Regia Hunting Manteau# +20946#Dragon Scale Hood# +20947#Clergy's Manteau# +20948#Unidentified Garment# +20949#Skin of Ladon# +20952#Mysterious Muffler# +20953#High Adventurer Hood# +20955#Christmas Guardian Tree# +20963#Temporal Str Manteau# +20964#Temporal Agi Manteau# +20965#Temporal Vit Manteau# +20966#Temporal Int Manteau# +20967#Temporal Dex Manteau# +20968#Temporal Luk Manteau# +20988#Costume Mechanical Butterfly# +20990#Costume Rotating Gears# +20992#Costume Fairy Wing of Eden# +21000#Unidentified Sword# +21001#Bellum Claymore# +21002#Bellum Katzbalger# +21003#Muramasa# +21004#Unidentified Sword# +21005#Metal Two Handed Sword# +21006#TE WoE TwoHand Sword# +21007#Heavy Sword# +21008#Unidentified Sword# +21009#Thanatos Great Sword# +21010#Evil Slayer Sword# +21011#Gigant Blade# +21012#Unidentified Sword# +21013#Unidentified Sword# +21014#Unidentified Sword# +21015#Crimson Twohand Sword# +21016#Vicious Mind Two-Handed Sword# +21017#Unidentified Sword# +21018#Lindy Hop# +21019#Unidentified Sword# +21020#Unidentified Sword# +21021#Unidentified Sword# +21022#Unidentified Sword# +21023#Unidentified Sword# +21024#Unidentified Sword# +21025#Unidentified Sword# +21026#Unidentified Sword# +21027#Unidentified Sword# +21028#Unidentified Sword# +21029#Unidentified Sword# +21030#Unidentified Sword# +21031#Unidentified Sword# +21037#Unidentified Sword# +21038#Oriental Sword# +21039#Two handed Sword of Kingdom# +21046#Unidentified Sword# +21047#Beam Claymore-OS# +21049#Unidentified Sword# +21050#Unidentified Sword# +21051#Unidentified Sword# +21052#Unidentified Sword# +21054#Claw Sword# +21055#Unidentified Sword# +21058#Awakened Dragonic Slayer# +21063#Unidentified Sword# +21202#Costume Eat Coin# +21205#Nut Cracker# +21206#Costume Nut Cracker# +21207#Costume Bull Head# +21300#Unidentified Hat# +22000#Temporal Str Boots# +22001#Temporal Int Boots# +22002#Temporal Agi Boots# +22003#Temporal Vit Boots# +22004#Temporal Dex Boots# +22005#Temporal Luk Boots# +22006#Temporal Str Boots# +22007#Temporal Vit Boots# +22008#Temporal Dex Boots# +22009#Temporal Int Boots# +22010#Temporal Agi Boots# +22011#Temporal Luk Boots# +22012#Mana Boots# +22013#Unidentified Hat# +22014#Enhanced Variant Shoes# +22015#Advanced Angel's Reincarnation# +22016#Assassin's Shoes# +22017#Fisherman's Shoes# +22018#Unidentified Shoes# +22019#Unidentified Shoes# +22020#Unidentified Shoes# +22021#Unidentified Shoes# +22022#Unidentified Shoes# +22023#Unidentified Shoes# +22024#Unidentified Shoes# +22025#Unidentified Shoes# +22026#Unidentified Shoes# +22027#Unidentified Shoes# +22028#Unidentified Shoes# +22029#Unidentified Shoes# +22030#Unidentified Shoes# +22031#Unidentified Shoes# +22032#Exorcist's Shoes# +22033#Boots of Gray# +22034#Unidentified Shoes# +22035#Hero Nependess Shoes# +22036#Hero Silverleather Boots# +22037#Hero Ungoliant Boots# +22038#Unidentified Shoes# +22039#Unidentified Shoes# +22040#Unidentified Shoes# +22041#Unidentified Shoes# +22042#Talaria Shoes# +22043#Supplement Part Agi# +22044#Upgrade Part - Booster# +22045#Unidentified Shoes# +22046#Airship's Boots# +22047#Felrock's Boots# +22048#Unidentified Shoes# +22049#Sol Shoes# +22050#Gardener Shoes# +22051#Lamor Shoes# +22052#Gravekeeper Shoes# +22053#Unidentified Shoes# +22054#Unidentified Shoes# +22055#Sharel Shoes# +22056#Fallen Angel Shoes# +22057#Flow Shoes# +22058#Dragon Trainer Shoes# +22059#Egir Shoes# +22060#Hunter Shoes# +22061#Lumiere Shoes# +22062#Mechanic's Shoes# +22063#Unidentified Shoes# +22064#Thorny Shoes# +22065#Unidentified Shoes# +22066#Unidentified Shoes# +22067#Witch Shoes# +22068#Unidentified Shoes# +22069#Lian Shoes# +22070#Unidentified Shoes# +22071#Unidentified Shoes# +22072#Unidentified Shoes# +22073#Unidentified Shoes# +22074#Unidentified Shoes# +22075#Unidentified Shoes# +22076#Wooden Slippers# +22077#Red Eco Boots# +22078#Unidentified Shoes# +22079#Unidentified Shoes# +22080#Unidentified Shoes# +22081#Unidentified Shoes# +22082#Unidentified Shoes# +22083#Doram Shoes# +22084#Luxurious Doram Shoes# +22085#Elegant Doram Shoes# +22086#Unidentified Shoes# +22087#Unidentified Shoes# +22088#Unidentified Shoes# +22089#Unidentified Shoes# +22090#Unidentified Shoes# +22091#Fisherman's Shoes# +22092## +22093#Exorcist's Shoes# +22094#Gardener Shoes# +22095#Gravekeeper Shoes# +22096#Fallen Angel Shoes# +22097#Dragon Trainer Shoes# +22098#Unidentified Shoes# +22099#Mechanic Shoes# +22100#Unidentified Shoes# +22101#Angel Poring Shoes# +22102#Unidentified Shoes# +22103#Excelion Leg# +22104#Pororoca Shoes# +22105#Unidentified Shoes# +22106#Giant Boots# +22107#Modified Strength Boots# +22108#Modified Intelligence Boots# +22109#Modified Agility Boots# +22110#Modified Vitality Boots# +22111#Modified Dexterity Boots# +22112#Modified Luck Boots# +22113#Modified Strength Boots# +22114#Modified Intelligence Boots# +22115#Modified Agility Boots# +22116#Modified Vitality Boots# +22117#Modified Dexterity Boots# +22118#Modified Luck Boots# +22119#Unidentified Shoes# +22120#Shoes Of Punishment# +22121#Unidentified Shoes# +22122#Unidentified Shoes# +22123#Unidentified Shoes# +22124#Unidentified Shoes# +22125#Unidentified Shoes# +22126#Unidentified Shoes# +22127#Unidentified Shoes# +22128#Unidentified Shoes# +22129#Unidentified Shoes# +22130#Unidentified Shoes# +22131#Spurred Boots# +22132#Unidentified Shoes# +22133#Illusion Shoes# +22134#Enforcer Shoes# +22138#Devil Worshipper Shoes# +22140#Unidentified Shoes# +22141#YSF01 Greaves# +22142#Unidentified Shoes# +22143#Unidentified Shoes# +22145#Tengu Shoes# +22168#True Hunting Boots# +22169#Short-term Hunting Boots# +22170#Survivor's Shoes# +22171#Ancient Hero Boots# +22172#Gray Wing Boots# +22173#Unidentified Shoes# +22174#Scaraba High Heels# +22178#Unidentified Shoes# +22183#Unidentified Shoes# +22184#Unidentified Shoes# +22185#Unidentified Shoes# +22186#Unidentified Shoes# +22187#Unidentified Shoes# +22189#Pilgrim Shoes# +22190#Unidentified Shoes# +22192#Unidentified Shoes# +22193#Unidentified Shoes# +22195#Booster Shoes# +22196#Illusion Leg Type A# +22197#Illusion Leg Type B# +22198#Traveler Shoes# +22199#Lava Leather Boots# +22200#Lava Leather Shoes# +22201#Lava Leather Sandles# +22203#Unidentified Shoes# +22204#Unidentified Shoes# +22206#Regia Hunting Boots# +22207#Imperial Boots# +22208#Dragon Scale Boots# +22209#Clergy's Boots# +22210#Fluffy Fish Shoes# +22215#High Adventurer's Sandals# +22234#Frontier Boots# +22238#Great Hero's Boots# +22506#Fresh Magical Shellfish# +22507#Worn-Out-Scroll# +22508#Eden Group Token# +22509#Rainbow Event Treasure Box# +22510#King Wolf Scroll# +22511#Fenrir's Power Card# +22513#King of Gift Box# +22514#Candy Holder# +22515#Twisted Time Key# +22516#Dark Red Lump# +22517#Loki Summoning Scroll# +22519#Freeze Buff# +22520#Anti-Freeze Buff# +22521#ROVerse Levelup Pack (80)# +22522#Level-Up Box(100)# +22523#Level-Up Box(120)# +22524#Level-Up Box(130)# +22525#Level-Up Box(140)# +22526#Level-Up Box(150)# +22527#Level-Up Box(160)# +22528#Pet Exchange Ticket Box# +22529#Shadow Thump Box# +22533#New Year Gift Box# +22534#Closed Mind Box# +22535#Scroll Summoning Workers(Male)# +22536#Scroll Summoning Workers(Female)# +22537#Prize of Hero# +22538#Hanbok Pocket# +22539#Special Box of Cooked Dishes# +22540#Lux Anima Runestone# +22541#PC Cafe Coupon Box VI# +22542#[Event] Concentration Potion# +22543#[Event] Berserk Potion# +22544#[Event] Awakening Potion# +22545#[Event] Speed Potion# +22546#[Event] Slow Potion# +22547#[Event] Anodyne# +22548#[Event] Cursed Water# +22549#[Event] Poison Bottle# +22550#[Event] Sweets Pocket# +22551#[Event] Teacake# +22552#[Event] Fried Pastry# +22553#[Event] Rainbow Cake# +22554#[Event] First Aid Box# +22555#Gourmet Chocolate# +22556#Luxury Chocolate# +22557#Masterpieces of Artisan Chocolate# +22558#Red Gift Bag# +22559#Wild Snake Berry# +22566#Frost Crystal# +22567#Expedition Prize Box# +22568#Nydhogg Summon Scroll# +22569#New Year Gift# +22570#Human Resist Potion# +22571#Easter Egg# +22589#Savage Ora Ora# +22590#Grand Peco Ora Ora# +22591#Desert Wolf Ora Ora# +22592#Happy Call Box# +22594#Devoted Eyes Box# +22595#Blessed Armor Ore Gift Box# +22596#Blessed Weapon Ore Gift Box# +22597#Orc Lord Scroll Gift Box# +22598#Enriched Oridecon Gift Box# +22599#Enriched Elunium Gift Box# +22600#Alice Summon Book Gift Box# +22601#Teddy Bear Scroll Gift Box# +22602#Salamander Scroll Gift Box# +22603#Kasa Scroll Gift Box# +22604#Wicked Nymph Scroll Gift Box# +22605#Ginger Bread# +22607#Isis Merc Scroll# +22610#New Beginning Box# +22611#Packing Envelope# +22612#Corrupt Reagents# +22613#Contaminated Reagents# +22614#Premium Manual# +22615#Egg Balancing# +22616#Zongzi Sachet# +22617#Clear Box S# +22618#Clear Box A# +22619#Ghost Scroll# +22620#Box of Memories# +22621#Barbecued Squid# +22622#Christmas Gift Box# +22623#New Start Box# +22624#Riesen Bretzel# +22625#Oktoberfest Bag# +22626#January Gift Box# +22627#February Gift Box# +22648#Angel Ring Package# +22649#Devil Ring Package# +22652#Brilliant Hat Box# +22653#Wet Card Album# +22654#Golden Seal Card# +22655#Kanda Fun Gift Box# +22656#Supply Box# +22657#Honey Songpyun# +22658#Steamed Cow Ribs# +22659#Steamed Pork Ribs# +22660#Sealed Envelope# +22667#World Battle Special Box# +22668#Old Pudding Box# +22669#Halloween Witch's Box# +22670#Invitation of Darkness# +22671#March Gift Box# +22672#April Gift Box# +22673#May Gift Box# +22674#June Gift Box# +22675#Mysterious Scroll# +22676#Hangul Day Event Box# +22679#Chest of Death# +22680#Yellow Crystal Fragment# +22681#Blue Crystal Fragment# +22682#Red Crystal Fragment# +22685#Lonely Christmas Gifts# +22686#Lonely Christmas Cookies# +22687#Fragment of Vicious Mind# +22691#Record Fragment# +22692#Record Fragment# +22693#Record Fragment# +22694#Record Fragment# +22695#Record Fragment# +22696#W Ticket Box(2 pieces)# +22698#Barrier Reinforced Token# +22699#Test Reagent# +22700#Jumping Support Box# +22701#Pegasus Cotton Candy# +22702#STR Reduction Potion# +22703#AGI Reduction Potion# +22704#VIT Reduction Potion# +22705#INT Reduction Potion# +22706#DEX Reduction Potion# +22707#LUK Reduction Potion# +22708#Exciting Box# +22709#Small Relief Potion# +22710#Medium Relief Potion# +22711#Large Relief Potion# +22712#Condensed Relief Potion# +22717#Wanderer Ball# +22718#Lude Ball# +22719#Tatacho Ball# +22720#Novus Ball# +22721#? Box# +22722#Handmade Cookie# +22723#Takoyaki# +22733#Special Dungeon Entry Ticket Box# +22734#Revolution Quiz Box# +22735#Sealed Moonlight Flower Scroll# +22736#July Gift Box# +22737#Blood Ammo Case# +22738#Silver Ammo Case# +22739#Lightning Grenade Pack# +22740#Flash Grenade Pack# +22741#Poison Grenade Pack# +22742#Cryo Grenade Pack# +22743#Incendiary Grenade Pack# +22744#Armor-Piercing Ammo Case# +22745#Blazing Bullet Ammo Case# +22746#Freezing Bullet Ammo Case# +22747#Lightning Bullet Ammo Case# +22748#Magic Stone Bullet Ammo Case# +22749#Purifying Bullet Ammo Case# +22750#Transformation Scroll(Horn Scaraba)# +22751#Transformation Scroll(Wanderer)# +22752#Transformation Scroll(Gazeti)# +22753#Transformation Scroll(Kobold Archer)# +22754#Transformation Scroll(Necromancer)# +22755#Transformation Scroll(Wind Ghost)# +22756#August Gift Box# +22757#Collection of Scrolls Magical Transformation# +22758#Collection of Scrolls Shooting Transformation# +22759#Collection of Scrolls Attack Speed Transformation# +22760#Argiope Capture Box# +22761#Luciola Vespa Capture Box# +22762#Centipede Capture Box# +22764#Pet Exchange Ticket Box# +22770#Grilled Shark Skewer# +22771#Grilled Tuna Skewer# +22772#Grilled Snapper Skewer# +22773#Grilled Piranha Skewer# +22774#Grilled Salmon Skewer# +22775#Grilled Eel Skewer# +22776#Grilled Carp Skewer# +22777#Gift Buff Set# +22778#Gold Egg# +22779#Silver Egg# +22780#Star Egg# +22781#PC Cafe Normal Box# +22782#PC Cafe Wooden Box# +22783#PC Cafe Golden Box# +22784#PC Cafe Platinum Box# +22802#Safe to 6 Certificate Box# +22808#Special Gift Box# +22812#Sealed Dracula Scroll# +22813#Bearer's Shadow Box# +22814#Cat Hand Ticket# +22816#True Mysterious Life Potion# +22817#True Small Life Potion# +22818#True Medium Life Potion# +22819#True Almighty# +22820#True Enhanced ASPD Potion# +22821#True Red Booster# +22822#Summer Vacation Costumes# +22823#Sealed Sniper Scroll# +22825#Heidam Fellow# +22826#Costume Enchant Stone Box 4# +22827#Shadow Cube# +22828#Sealed Seal Scroll# +22829#Sealed Seal Card# +22836#15th Anniversary Memorial Card# +22837#Time Integer# +22838#Pumpkin Candy Holder# +22839#Happy Box# +22841#Pumpkin Candy# +22842#Sealed Dracula Scroll II# +22843#Superstar Snack# +22844#Sealed Dracula Card Album# +22845#Sealed Fortune Egg# +22846#Sealed Dracula Card# +22847#Prontera Badge# +22848#Prison Key# +22849#Prontera Time Crystal# +22850#January Gift Box# +22851#February Gift Box# +22852#March Gift Box# +22853#April Gift Box# +22854#May Gift Box# +22855#June Gift Box# +22856#July Gift Box# +22857#August Gift Box# +22858#September Gift Box# +22859#October Gift Box# +22860#November Gift Box# +22861#December Gift Box# +22868#Costume Enchant Stone Box 5# +22869#Lucky Roulette Ticket# +22870#Xmas Packages# +22871#Ultimate Refinement Ticket Box# +22873#Sealed Beelzebub Scroll II# +22874#Sealed Beelzebub Card Album# +22875#Sealed Beelzebub Card# +22876#Old Money Pocket# +22881#Hunting Rope# +22882#Chocolate Rice Cake Soup# +22883#September Gift Box# +22884#October Gift Box# +22885#November Gift Box# +22886#December Gift Box# +22887#Gold PC Cafe Box# +22888#New Year's Scroll# +22893#New Year's Shadow Cube# +22894#(Limited)2015 Neutralizer Rod# +22895#(Limited)2015 Reset Coupon# +22896#(Limited)Old Reset stats coupon# +22899#City Center Map# +22900#Nakagayokunaru# +22901#Mysterious Blue Box# +22902#Sealed Seal Scroll II# +22905#Costume Enchant Stone Box6# +22906#Sealed Seal Scroll III# +22907#Edward Zonda Owner# +22908#Elysee Zonda Owner# +22909#Safe to 5 Weapon Certificate# +22910#Safe to 6 Weapon Certificate# +22911#Safe to 7 Weapon Certificate# +22912#Safe to 8 Weapon Certificate# +22913#Safe to 9 Weapon Certificate# +22914#Bubble Gum 24h# +22915#Safe to 11 Weapon Certificate# +22916#Safe to 12 Weapon Certificate# +22917#Safe to 13 Weapon Certificate# +22918#Safe to 14 Weapon Certificate# +22919#Safe to 15 Weapon Certificate# +22920#Safe to 16 Weapon Certificate# +22921#Safe to 17 Weapon Certificate# +22922#Safe to 18 Weapon Certificate# +22923#Safe to 19 Weapon Certificate# +22924#Safe to 5 Armor Certificate# +22925#Safe to 6 Armor Certificate# +22926#Safe to 7 Armor Certificate# +22927#Safe to 8 Armor Certificate# +22928#Safe to 9 Armor Certificate# +22929#Job Battle Manual 24h# +22930#Safe to 11 Armor Certificate# +22931#Safe to 12 Armor Certificate# +22932#Safe to 13 Armor Certificate# +22933#Safe to 14 Armor Certificate# +22934#Safe to 15 Armor Certificate# +22935#Safe to 16 Armor Certificate# +22936#Safe to 17 Armor Certificate# +22937#Safe to 18 Armor Certificate# +22938#Safe to 19 Armor Certificate# +22943#Safe to 10 Armor Certificate# +22944#Safe to 10 Weapon Certificate# +22945#Cherry Blossom Cake# +22946#Stats Reduction Scroll# +22947#STR Reduction Potion Box# +22948#AGI Reduction Potion Box# +22949#VIT Reduction Potion Box# +22950#INT Reduction Potion Box# +22951#DEX Reduction Potion Box# +22952#LUK Reduction Potion Box# +22953#Costume Enchant Stone Box7# +22954#Level Up Box(Lv1)# +22955#Level Up Box(Lv10)# +22956#Level Up Box(Lv30)# +22957#Level Up Box(Lv45)# +22958#Level Up Box(Lv55)# +22959#Level Up Box(Lv65)# +22960#Level Up Box(Lv72)# +22961#Level Up Box(Lv79)# +22962#Level Up Box(Lv85)# +22963#Level Up Box(Lv90)# +22964#Level Up Box(Lv93)# +22965#Level Up Box(Lv95)# +22966#Level Up Box(Lv96)# +22967#Level Up Box(Lv97)# +22968#Level Up Box(Lv98)# +22969#Level Up Box(Lv99)# +22970#Scent of Lounge# +22971#Mad Bunny Scroll# +22972#Sealed Hat Box# +22973#Shadow Cube(Weapon)# +22974#Shadow Cube(Armor)# +22975#Shadow Cube(Shield)# +22976#Shadow Cube(Shoes)# +22977#Shadow Cube(Pendant)# +22978#Shadow Cube(Earring)# +22979#[Event] Battle Manual & Bubble Gum# +22980#Return to Infinity Dungeon Scroll# +22981#Gear Induction Beacon# +22982#Edward Zonda Owner EX# +22983#Elysee Zonda Owner EX# +22984#Kalugna Milk# +22985#Basil# +22986#RJC Cookie# +22987#RJC2015 Card Book# +22988#Sealed Hat Box II# +22989#Improved PC Cafe Normal Box# +22991#Football Cake# +22996#[Event] Neutralizer# +22997#Infinite Greed Scroll# +22998#Infinite Cat Hand Ticket# +22999#[Event] Transformation Scroll Bundle# +23001#Costume Enchant Stone Box8# +23007#Improved PC Cafe Wooden Box# +23008#Bubble Gum 24 Hours# +23010#Battle Manual 24 Hours# +23011#Insurance Certificate 24 Hours# +23012#[Event] Small Mana Potion# +23013#Improved PC Cafe Golden Box# +23014#Improved PC Cafe Platinum Box# +23015#Red Slim Potion Box# +23016#Grudge Fragment# +23021#15th Anniversary Box# +23022#Cross Event Box# +23023#Infinite Giant Flywing# +23024#Piamette Scroll# +23025#Pope Mercenary Summoner# +23026#Casual Pope Mercenary Summoner# +23027#Dandelion Ring# +23028#Capture Rope# +23029#Ponytail Gift Box# +23030#Straight Pony Gift Box# +23031#Loose Wave Twintail Gift Box# +23032#Status Reduction Potion Box# +23033#Invisible Box# +23034#Invisible Scroll# +23035#Special Dungeon Entry Ticket Box# +23036#Pope Mercenary Summoner# +23037#Casual Pope Mercenary Summoner# +23038#[Event] White Slim Potion Box# +23039#[Event] Mastela Fruit Box# +23040#[Event] White Potion Box# +23041#[Event] Royal Jelly Box# +23042#[Event] Yggdrasil Seed# +23043#[Event] Yggdrasil Seed Box# +23044#Elvira Candy# +23045#Mont Blanc Cake# +23046#[Event] Mystic Powder# +23047#[Event] Tyr's Blessing# +23048#[Event] Regeneration Potion# +23049#[Event] Tok Tok Candy# +23050#[Event] Magic Candy# +23051#Liberty Cap Scroll# +23052#Liberty Statue Hat Box# +23058#Costume Enchant Stone Box 9# +23059#Face Paint Box# +23060#Surface Paint Box# +23061#Sharp Quiver# +23062#Cooking Open Memorial Box# +23063#Frozen Dream# +23069#2015 Special Scroll# +23070#2015 Special Box# +23071#Devil Package# +23072#Angel Scroll# +23073#Angel Poring Boots Box# +23074#December Gift Box# +23075#November Gift Box# +23076#Enhanced Potion SS# +23077#Enhanced Potion SC# +23078#Enhanced Potion AC# +23079#Strawberry Cream Cake# +23080#Crystal of Grudge# +23081#Heat Wave Kunai Summon Scroll# +23082#Icicle Kunai Summon Scroll# +23083#High Wind Kunai Summon Scroll# +23084#Black Earth Kunai Summon Scroll# +23085#Fell Poison Kunai Summon Scroll# +23086#Costume Enchant Stone Box10# +23087#Small Leather Bag# +23094#[Event] Glass of Illusion# +23095#Poring Scroll# +23096#MOBI Support Box# +23097#Greater Time Guardian Box# +23098#Shadow Assortment Box# +23100#Dropping Rebel Scroll# +23106#Amistr Scroll# +23107#Amistr Box# +23113#Flora Egg# +23114#Lucky Gift Box# +23115#Class Shadow Cube# +23116#Shadow Scroll# +23119#Soul Scroll# +23120#Sealed Hat Box III# +23122#Carved Egg# +23123#Flare Bullet Case# +23124#Lightning Bullet Case# +23125#Ice Bullet Case# +23126#Poison Bullet Case# +23127#Blinding Bullet Case# +23128#Kachua Weapon# +23129#Kachua Garment# +23130#Kachua Armor# +23131#Kachua Shoes# +23132#Kachua Shield# +23133#Kachua Helm# +23134#Balloon Scroll# +23135#Poring Capsule# +23136#Buttefly Wing Box# +23137#Rebellion Jumping Support Box# +23138#Stone Jewel# +23139#Drowsy Jewel# +23140#Freezing Jewel# +23141#Heavy Jewel# +23142#Minor Growth Elixir# +23143#Minor Job Elixir# +23144#Minor Growth Box# +23145#Minor Job Box# +23146#Angel Package# +23147#Demon Package# +23148#Premium Service Box(2 Days)# +23149#Premium Service Box(3 Days)# +23150#Lapine's Thump Box# +23151#Costume Enchant Stone Thump Box# +23152#Collection Thump Box# +23153#Pet Egg Thump Box# +23154#Silvervine Cat Costume Thump Box# +23159#Poison Bottle Pack# +23160#Shadow Cube# +23161#Gunslinger Box# +23162#Gunslinger Scroll# +23163#Lucky Cube# +23164#Granpa Speed potion# +23165#Premium Service Staff# +23166#Prontera Military Pill# +23167#July Green Scroll# +23168#Mini Fan Box# +23169#Alchemist Box# +23170#Fan Remodeling Kit# +23171#Sealed Gloom Under Night Card# +23172#Sealed Pharaoh Card# +23173#Sealed Kiel-D-01 Card# +23174#Costume Enchant Stone Box11# +23175#Clothing Repair Kit# +23176#Kafra Scroll# +23177#[Event] Kafra Card# +23178#Kafra Box# +23179#[ECO] Tiny Alma's Thoughts# +23180#[ECO] The feelings of Briking RX1 and Alma# +23181#[ECO] Salamander Alma's Thoughts# +23182#[ECO] Momo Alma's Thoughts# +23183#[ECO] Minnie de Arma's Thoughts# +23184#Hero Button# +23187#Sap Jelly# +23188#Broken Part# +23189#Small Doll Needle# +23190#Mid-Autumn Festival Special Gift Box# +23191#Varetyr Spear Scroll# +23192#Diamond Dust Scroll# +23193#Crimson Rock Scroll# +23194#Sienna Execrate Scroll# +23195#Sigrun Scroll# +23198#Premium Wooden Box# +23199#Premium Golden Box# +23200#Premium Platinum Box# +23201#Premium Normal Box# +23202#Mulled Wine# +23203#Small Mana Potion# +23204#Brilliant Protection Scroll# +23205#New Hat Scroll II# +23206#New Hat Box II# +23207#Premium Service Box (30 Days)# +23209#Premium Service Box(1 Day)# +23210#Premium Service Box(4 Days)# +23211#Premium Service Box(5 Days)# +23212#Premium Service Box(6 Days)# +23213#Premium Service Box(7 Days)# +23214#Premium Service Box(8 Days)# +23215#Premium Service Box(9 Days)# +23216#Premium Service Box(10 Days)# +23217#2016 Special Scroll# +23218#2016 Special Box# +23219#Dragon Horn# +23220#Call of Nemesis# +23221#[Event] DEX Biscuit Stick# +23222#[Event] LUK Biscuit Stick# +23223#[Event] STR Biscuit Stick# +23224#[Event] VIT Biscuit Stick# +23225#[Event] AGI Biscuit Stick# +23226#[Event] INT Biscuit Stick# +23227#Biscuit Stick (2)# +23228#Hazy Moon Pastry# +23229#Fallen Angel's Wings Scroll# +23234#Mysterious Medal Crane# +23235#Mad Bunny Scroll II# +23236#Class Shadow Box(Weapon)# +23237#Class Shadow Box(Armor)# +23238#Class Shadow Box(Shoes)# +23239#Class Shadow Box(Shield)# +23240#Class Shadow Box(Pendant)# +23241#Class Shadow Box(Earing)# +23242#Assorted Fried Chicken# +23243#Fried Chicken# +23245#Lapine Scroll# +23246#[Limited] Lapine's Thump Box# +23247#Status Shadow Thump Box# +23248#Gemstone Shadow Thump Box# +23249#Bearer's Shadow Thump Box# +23250#Compose Shadow Thump Box# +23251#Rose Bundle A# +23252#Orleans Bundle A# +23253#Black Shiba Inu Bundle A# +23254#Valkyrie Bundle A# +23255#Kardui Bundle A# +23256#Miracle Bandage# +23257#Dew of Old Tree# +23258#Stinky Rotten Meat# +23259#Strawberry Cream Cupcake# +23260#Parfait Fruit# +23261#Chewy Macaron# +23262#Tango Hair Gift Box# +23263#Roll Twin Gift Box# +23264#Long Pony Gift Box# +23267#ROVerse Level-Up Pack (1)# +23268#ROVerse Level-Up Pack (10)# +23269#ROVerse Level-Up Pack (20)# +23270#ROVerse Level-Up Pack (30)# +23271#ROVerse Level-Up Pack (40)# +23272#ROVerse Level-Up Pack (50)# +23273#ROVerse Level-Up Pack (60)# +23274#ROVerse Level-Up Pack (70)# +23275#ROVerse Levelup Pack (90)# +23276#Level-Up Box(175)# +23277#Mado Emergency Gear# +23278#Help me Shorty# +23280#Novice Fly Wing# +23281#Race Shadow Thump Box# +23282#Biscuit Stick (2)# +23283#Love Scroll# +23284#Premium Taming Gift Set# +23285#Candy Pouch Box(Physical)# +23286#Candy Pouch Box(Ranged)# +23287#Candy Pouch Box(Magic)# +23288#Compressed Fly Wing# +23289#Candy Pouch Blessing Scroll(Physical)# +23290#Candy Pouch Blessing Scroll(Ranged)# +23291#Candy Pouch Blessing Scroll(Magic)# +23296#D. Burger# +23297#Lovely Egg Box# +23298#Coordinate Egg# +23299#Costume Enchant Stone Box12# +23300#Automatic Projector# +23301#Prototype Warp Button# +23302#Poring Treasure Box# +23303#Infinite Cat Hand Ticket Box(1 Day)# +23304#Unlimited Fly Wing Box (1 Day)# +23305#Cat Scroll# +23307#[Event] Brilliant Protection Scroll# +23308#Magic Booster Remote Control# +23309#Magical Booster Box# +23310#Cat Headdress Gift Basket# +23311#Magic Cat Hand# +23312#Chemical Bag# +23317#[Event] Cherry Blossom Cake# +23318#Shadow Scroll II# +23320#Melon Juice# +23321#Sweet Melon Juice# +23322#Melon Parfait# +23323#Infinite Fly Wing Box(3 Days)# +23324#Stability Shadow Thump Box# +23325#Beginner Level Up Package# +23328#Asha Bahishta# +23329#Unlimited Fly Wing Box (5 Days)# +23330#Infinite Giant Fly Wing Box(1 Day)# +23331#Infinite Fly Wing Box(1 Week)# +23332#May's Golden Scroll# +23333#New Hat Box III# +23334#Exchange Shadow Thump Box# +23335#Material Shadow Cube# +23336#Mysterious Medal Piggy Bank# +23338#[Event] Fly Wing# +23340#[Event] Megaphone# +23342#Part Time Sales(Novice) 1day Employment Envelope# +23343#Part Time Sales(Normal) 1day Employment Envelope# +23344#Part Time Sales(Expert) 1day Employment Envelope# +23345#Part-time Student Buyer(Novice) 1day Employment Envelope# +23346#Part-time Student Buyer(Normal) 1day Employment Envelope# +23347#Part-time Student Buyer(Expert) 1day Employment Envelope# +23348#Part-time Student Sales(Novice) Employment Certificate# +23349#Part-time Student Sales(Normal) Employment Certificate# +23350#Part-time Student Sales(Expert) Employment Certificate# +23351#Part-time Student Buyer(Novice) Employment Certificate# +23352#Part-time Student Buyer(Normal) Employment Certificate# +23353#Part-time Student Buyer(Expert) Employment Certificate# +23354#Part Time Sales(Novice) 3days Employment Envelope# +23355#Part Time Sales(Normal) 3days Employment Envelope# +23356#Part Time Sales(Expert) 3days Employment Envelope# +23357#Part-time Student Buyer(Novice) 3days Employment Envelope# +23358#Part-time Student Buyer(Normal) 3days Employment Envelope# +23359#Part-time Student Buyer(Expert) 3days Employment Envelope# +23360#RBMuscle15mg# +23361#Antitoxic Serum# +23362#Pork Potato# +23363#Watermelon Pudding# +23364#Critatura Pope Cookie# +23365#Critatura Souvenir Box# +23367#Tomato Noodle# +23368#Special Catalog Silver# +23372#Rebellion's Box# +23374#Fire Armor Scroll# +23375#Water Armor Scroll# +23376#Wind Armor Scroll# +23377#Earth Armor Scroll# +23383#Warlord's Scroll# +23405#July Green Scroll II# +23436#Hollgrehenn's Shadow Refine Hammer# +23438#New Shadow Cube# +23440#Sentimental Scroll# +23444#July Payment Event Special Box# +23445#Hometown Food# +23446#Wild Boar Trap# +23473#Infinity Scroll# +23474#Infinity Shadow Thump Box# +23475#Infinity Drink# +23484#First Aid Box(5)# +23485#First Aid Box(10)# +23486#First Aid Box(15)# +23487#First Aid Box(20)# +23488#First Aid Box(25)# +23489#First Aid Box(30)# +23490#First Aid Box(35)# +23491#First Aid Box(40)# +23492#First Aid Box(45)# +23493#First Aid Box(50)# +23494#First Aid Box(55)# +23495#First Aid Box(60)# +23496#First Aid Box(65)# +23497#First Aid Box(70)# +23498#First Aid Box(75)# +23499#First Aid Box(80)# +23500#First Aid Box(85)# +23501#First Aid Box(90)# +23502#First Aid Box(95)# +23503#[Event] Red Potion Box(20)# +23504#[Event] Orange Potion Box(20)# +23505#[Event] Yellow Potion Box(20)# +23506#[Event] White Potion Box(20)# +23524#Costume Enchant Stone Box 13# +23533#Roses of Choice# +23537#Bloody Scroll# +23538#Cursed Knight's Shield Box# +23545#Silver Statue# +23546#Cursed Blood# +23547#Gold Statue# +23548#Ice Candy# +23549#Snow Cookie# +23550#Winter Cookie# +23551#Festie Cookie# +23552#Flora Cookie# +23553#Snowflake Gift Box# +23554#Snow Flower Card Envelop# +23556#Hunter's Feast# +23575#Adventurer Support Box(1)# +23576#Adventurer Support Box(15)# +23577#Adventurer Support Box(30)# +23578#Adventurer Support Box(45)# +23579#Adventurer Support Box(60)# +23580#Adventurer Support Box(75)# +23581#Adventurer Support Box(90)# +23582#[Event] Infinite Fly Wing Box(7 Days)# +23583#Beginner's Armor Box# +23584#Beginner's Shadow Box# +23585#Beginner Support Box(100)# +23586#Beginner Support Box(110)# +23587#Beginner Support Box(120)# +23618#2017 Special Scroll# +23619#2017 Special Box# +23629#Costume Enchant Stone Box 14# +23647#Tool Dealer Bell# +23648#Kafra Storage Bell# +23650#Ice Scroll# +23660#DOG Vial-Z# +23661#2018 New Year Scroll# +23662#New Year Shadow Cube 2018# +23663#2018 Material Shadow Cube# +23664#[Limited] Lapine's Thump Box 2018# +23665#Physical Magical Thump Box# +23666#Immune Athena Thump Box# +23667#Hard Champion Thump Box# +23668#Kingbird Ancient Thump Box# +23669#Critical Hit Thump Box# +23674#Sweets Festival Box# +23675#Geffen Magic Armor Scroll# +23676#Gray Abrasive(Physical)# +23677#Gray Abrasive(Magic)# +23678#Gray Abrasive(Ranged)# +23679#Geffen Magic Accessory Order Sheet# +23682#Costume Enchant Stone Box 15# +23683#Lucky Bag# +23684#Ghost of Illusion# +23700#New Year Scroll# +23705#Canned Lasagna# +23706#Charleston Upgrade Parts(Physical)# +23707#Charleston Upgrade Parts(Ranged)# +23708#February Special Box# +23710#Spring's Scroll# +23711#Trap Box# +23718#Spring Scroll# +23719#Sealed Seal Card II# +23720#Shadow Random Option Thump Box# +23723#Melon Bread# +23724#Memorial Egg# +23743#Festival Celebration Canned Food# +23744#Cream Noodle# +23751#[Event] Premium Buff Box# +23752#Gift of Apology# +23754#Apology Ring Box# +23761#Premium Taming Gift Set II# +23763#Mysterious Egg III# +23764#A gift with an Apple Heart# +23765#May's Rainbow Scroll# +23766#Temporal Armor Box# +23767#Strong Helmet Box# +23770#Costume Enchant Stone Box 16# +23771#Mysterious Plastic Bag# +23772#OS Weapon Box# +23773#Weapon Modification Device Box(Physical)# +23774#Weapon Modification Device Box(Magic)# +23775#Modification Module Box# +23776#Weapon Modification Device(Physical)# +23777#Advanced Weapon Modification Device(Physical)# +23778#Highly Advanced Weapon Modification Device(Physical)# +23779#Weapon Modification Device(Magic)# +23780#Advanced Weapon Modification Device(Magic)# +23781#Highly Advanced Weapon Modification Device(Magic)# +23784#Sweet Candy Box# +23804#Soul Plunger Scroll II# +23805#Soul Hat Box# +23806#Ancient Hero's Weapon Box# +23815#Lava Essence# +23817#Mysterious Combination Scroll Bundle# +23818#Large Orc Hero's Helm Combination Scroll# +23819#Crimson Rose Combination Scroll# +23820#Grand Peco Headdress Combination Scroll# +23821#Moonlight Flower Hat Combination Scroll# +23822#8Way Wings of Purgatory Combination Scroll# +23823#Drooping Neko Crew Combination Scroll# +23824#World Cup Hat of Honor Combination Scroll# +23825#Evil Marching Hat Combination Scroll# +23826#Vagabond Wolf King Helmet Combination Scroll# +23827#Status Shadow Combination Scroll# +23828#Elegant Shadow Combination Scroll# +23829#Tension Shadow Combination Scroll# +23830#Restore Shadow Combination Scroll# +23831#sHealing Shadow Combination Scroll# +23832#Amistr Cap Combination Scroll# +23833#Tiger King Doll Hat Combination Scroll# +23834#Bacsojin Doll Hat Combination Scroll# +23835#Candy Pouch Bag Combination Scroll# +23836#Gold Fish Head Hat Combination Scroll# +23837#Survivor's Combination Scroll# +23838#Toy Syringe Combination Scroll# +23839#Blue Rear Ribbon Combination Scroll# +23840#Magical Booster Combination Scroll# +23841#Rosario Necklace Combination Scroll# +23842#Elemental Crown Combination Scroll# +23843#Palace Guard Cap Combination Scroll# +23844#Bandit's Bandana Combination Scroll# +23845#Fallen Angel Blessing Combination Scroll# +23846#Rabbit Magic hat Combination Scroll# +23847#Anubis Helm Combination Scroll# +23848#Imp Hat Combination Scroll# +23849#Red Marching Hat Combination Scroll# +23850#Mask of Ifrit Combination Scroll# +23851#Drooping Incarnation of Morocc Combination Scroll# +23852#Samambaia Combination Scroll# +23853#Chick Hat Combination Scroll# +23854#Class Shadow Combination Scroll# +23855#Spell Shadow Combination Scroll# +23856#Size Shadow Combination Scroll# +23857#Race Shadow Combination Scroll# +23858#Stability Shadow Combination Scroll# +23859#Special Shadow Combination Scroll# +23860#Physical Shadow Combination Scroll# +23861#Magical Shadow Combination Scroll# +23862#EXP Shadow Combination Scroll# +23863#Mad Bunny Combination Scroll# +23864#Archangel's Wings Combination Scroll# +23865#Smokey's Transformation Leaf Combination Scroll# +23866#Ears of Ifrit Combination Scroll# +23867#Heart Wings Hairband Combination Scroll# +23868#Sigrun's Wings Combination Scroll# +23869#Cat Headdress Combination Scroll# +23870#Noble Mask Combination Scroll# +23871#Gemstone Shadow Combination Scroll# +23872#Bearer's Shadow Combination Scroll# +23873#Hasty Shadow Combination Scroll# +23874#Critical Shadow Combination Scroll# +23875#Mortal Blow Shadow Combination Scroll# +23876#Fallen Angel Wings Combination Scroll# +23877#Adventurer's Backpack Combination Scroll# +23878#Star and Soul Scroll# +23879#Spell Circuit Combination Scroll# +23880#New Wave Sunglasses Combination Scroll# +23881#Gigant Snake's Breath Combination Scroll# +23882#Judge Hat Combination Scroll# +23883#Dog Officer Combination Scroll# +23884#Classical Feather Hat Combination Scroll# +23885#Amistr Beret Combination Scroll# +23886#General's Helm Combination Scroll# +23887#Cursed Knight's Shield Combination Scroll# +23888#Penetration Shadow Combination Scroll# +23889#Tempest Shadow Combination Scroll# +23890#Blitz Shadow Combination Scroll# +23891#Reload Shadow Combination Scroll# +23892#Force&Spirit Shadow Combination Scroll# +23893#Infinity Shadow Combination Scroll# +23894#Wickebine's Black Cat Ears Combination Scroll# +23896#Recertification Thank You Box# +23897#2018 Jumping Reservation Appreciation Box# +23898#[Event] Power Booster# +23899#[Event] Almighty# +23900#Temporal Transcendence Box# +23901#Level-Up Box(110)# +23905#March Event Reward Box# +23906#April Event Reward Box# +23907#Melon Festival Reward Box# +23913#Class Enchant Stone Box# +23914#Kachua's Secret Box# +23919#Kachua's Secret Key# +23921#Event Prize Box# +23922#Candy Pouch Box# +23923#Poring Sunglasses Box# +23924#Sigrun Shadow Box# +23925#Mad Bunny Box# +23926#Shadow 9 Refine Hammer# +23949#Level Achievement Box# +23952#Silit Pong Box# +23962#Reinforced Malangdo Cat Can# +23967#September Costume Enchant Stone Thump Box# +23981#Swirling Dragon Power# +23985#Dragon Treasure# +23986#Odin Relics# +23992#Experimental Weapon Box# +23993#Bio Lab Material Box# +23994#Bio Reactor Box# +24000#Unidentified Shadow Armor# +24001#Unidentified Shadow Weapon# +24002#Unidentified Shadow Shield# +24003#Unidentified Shadow Shoes# +24004#Unidentified Shadow Earring# +24005#Unidentified Shadow Pendant# +24006#Unidentified Shadow Armor# +24007#Unidentified Shadow Weapon# +24008#Unidentified Shadow Shield# +24009#Unidentified Shadow Shoes# +24010#Unidentified Shadow Earring# +24011#Unidentified Shadow Pendant# +24012#Shadow Weapon# +24013#Shadow Armor# +24014#Shadow Shoes# +24015#Shadow Shield# +24016#Shadow Earring# +24017#Shadow Pendant# +24018#Physical Shadow Earring# +24019#Physical Shadow Weapon# +24020#Physical Shadow Pendant# +24021#Magical Shadow Earring# +24022#Magical Shadow Weapon# +24023#Magical Shadow Pendant# +24024#Breeze Shadow Armor# +24025#Champion Shadow Shoes# +24026#Athena Shadow Shield# +24027#Immune Shadow Armor# +24028#Hard Shadow Armor# +24029#Ancient Shadow Armor# +24030#Critical Shadow Armor# +24031#Kingbird's Shadow Weapon# +24032#Critical Shadow Weapon# +24033#Healing Shadow Weapon# +24034#Lucky Shadow Weapon# +24035#Power Shadow Earring# +24036#Intelligent Shadow Pendant# +24037#Dexterous Shadow Armor# +24038#Vital Shadow Shoes# +24039#Athletic Shadow Shield# +24040#Lucky Shadow Armor# +24041#Power Shadow Pendant# +24042#Intelligent Shadow Earring# +24043#Dexterous Shadow Weapon# +24044#Vital Shadow Shield# +24045#Athletic Shadow Shoes# +24046#Resist Spell Power Shadow Pendant# +24047#Rapid Shadow Pendant# +24048#Caster Shadow Pendant# +24049#Hard Shadow Earring# +24050#Wise Shadow Earring# +24051#Athena Shadow Earring# +24052#Cranial Shadow Shield# +24053#Safeguard Shadow Shield# +24054#Brutal Shadow Shield# +24055#Gargantua Shadow Shield# +24056#Homer's Shadow Shield# +24057#Dragoon Shadow Shield# +24058#Satanic Shadow Shield# +24059#Flameguard Shadow Shield# +24060#Requiem Shadow Shield# +24061#Cadi Shadow Shield# +24062#Bloody Shadow Shoes# +24063#Liberation Shadow Shoes# +24064#Chemical Shadow Shoes# +24065#Clamorous Shadow Shoes# +24066#Insecticide Shadow Shoes# +24067#Fisher Shadow Shoes# +24068#Seraphim Shadow Shoes# +24069#Beholder Shadow Shoes# +24070#Divine Shadow Shoes# +24071#Dragoon Shadow Shoes# +24072#Large Shadow Armor# +24073#Medium Shadow Armor# +24074#Small Shadow Armor# +24075#Large Shadow Weapon# +24076#Medium Shadow Weapon# +24077#Small Shadow Weapon# +24078#Shadow Spiritual Weapon # +24079#Unidentified Shadow Earring# +24080#Unidentified Shadow Pendant# +24081#Malicious Shadow Armor# +24082#Malicious Shadow Shoes# +24083#Malicious Shadow Shield# +24084#Gemstone Shadow Armor# +24085#Gemstone Shadow Shoes# +24086#Gemstone Shadow Shield# +24087#Gemstone Shadow Weapon# +24088#Gemstone Shadow Earring# +24089#Gemstone Shadow Pendant# +24090#Stability Shadow Shield# +24091#Plasterer's Shadow Armor# +24092#Unidentified Shadow Shoes# +24093#Shadow Insomniac Armor # +24094#Unidentified Shadow Shoes# +24095#Peerless Shadow Armor# +24096#Unidentified Shadow Shoes# +24097#Shadow Adurate Armor # +24098#Unidentified Shadow Shoes# +24099#Unfreezing Shadow Weapon# +24100#Unfreezing Shadow Earring# +24101#Unfreezing Shadow Pendant# +24102#Unidentified Shadow Earring# +24103#Unidentified Shadow Pendant# +24104#Neutral Shadow Weapon# +24105#Unidentified Shadow Earring# +24106#Unidentified Shadow Pendant# +24107#Unidentified Shadow Earring# +24108#Unidentified Shadow Pendant# +24109#Unidentified Shadow Earring# +24110#Shadow Caster Weapon # +24111#Spellflow Shadow Shoes# +24112#Spellflow Shadow Armor# +24113#Spellflow Shadow Shield# +24114#Shadow Greed Armor # +24115#Unidentified Shadow Shoes# +24116#Unidentified Shadow Shield# +24117#Shadow Greed Weapon # +24118#Unidentified Shadow Earring# +24119#Unidentified Shadow Pendant# +24120#Shadow Heal Armor # +24121#Unidentified Shadow Shoes# +24122#Unidentified Shadow Shield# +24123#Shadow Heal Weapon # +24124#Unidentified Shadow Earring# +24125#Unidentified Shadow Pendant# +24126#Shadow Hiding Armor # +24127#Unidentified Shadow Shoes# +24128#Unidentified Shadow Shield# +24129#Shadow Hiding Weapon # +24130#Unidentified Shadow Earring# +24131#Unidentified Shadow Pendant# +24132#Cloaking Shadow Armor# +24133#Unidentified Shadow Shoes# +24134#Unidentified Shadow Shield# +24135#Cloaking Shadow Weapon# +24136#Unidentified Shadow Earring# +24137#Unidentified Shadow Pendant# +24138#Teleport Shadow Armor# +24139#Unidentified Shadow Shoes# +24140#Unidentified Shadow Shield# +24141#Teleport Shadow Weapon# +24142#Unidentified Shadow Earring# +24143#Unidentified Shadow Pendant# +24144#Steal Shadow Armor# +24145#Unidentified Shadow Shoes# +24146#Unidentified Shadow Shield# +24147#Steal Shadow Weapon# +24148#Unidentified Shadow Earring# +24149#Unidentified Shadow Pendant# +24150#Unidentified Shadow Earring# +24151#Unidentified Shadow Pendant# +24152#Solid Shadow Weapon# +24153#Unidentified Shadow Earring# +24154#Shadow Immortal Armor # +24155#Unidentified Shadow Pendant# +24156#Shadow Executioner Weapon # +24157#Shadow Exorcist Weapon # +24158#Shadow Hunting Weapon # +24159#Shadow Insect_Net Weapon # +24160#Shadow Fishing Weapon # +24161#Shadow Dragon_Killer Weapon # +24162#Shadow Corrupt Weapon # +24163#Vibration Shadow Weapon# +24164#Shadow Holy_Water Weapon # +24165#Scissors Shadow Weapon# +24166#Penetration Shadow Earring# +24167#Penetration Shadow Pendant# +24168#Tempest Shadow Earring# +24169#Tempest Shadow Pendant# +24170#Shadow Magic Executioner Weapon # +24171#Shadow Magic Exorcist Weapon # +24172#Shadow Magic Hunting Weapon # +24173#Shadow Magic Insect_Net Weapon # +24174#Shadow Magic Fishing Weapon # +24175#Shadow Magic Dragon_K Weapon # +24176#Shadow Magic Corrupt Weapon # +24177#Shadow Magic Vibration Weapon # +24178#Shadow Magic Holy_Water Weapon # +24179#Shadow Magic ScissorShadow Weapon # +24180#Bearer's Shadow Armor# +24181#Bearer's Shadow Shoes# +24182#Bearer's Shadow Shield# +24183#Bearer's Shadow Weapon# +24184#Bearer's Shadow Earring# +24185#Bearer's Shadow Pendant# +24186#Basis Shadow Armor# +24187#Hallowed Shadow Armor# +24188#Saharic Shadow Armor# +24189#Underneath Shadow Armor# +24190#Flame Shadow Armor# +24191#Windy Shadow Armor# +24192#Envenom Shadow Armor# +24193#Damned Shadow Armor# +24194#Geist Shadow Armor# +24195#Divine Shadow Armor# +24196#Hasty Shadow Shoes# +24197#Hasty Shadow Armor# +24198#Basis Shadow Shield# +24199#Hallowed Shadow Shield# +24200#Saharic Shadow Shield# +24201#Underneath Shadow Shield# +24202#Flame Shadow Shield# +24203#Windy Shadow Shield# +24204#Envenom Shadow Shield# +24205#Damned Shadow Shield# +24206#Geist Shadow Shield# +24207#Divine Shadow Shield# +24208#Unidentified Shadow Shoes# +24209#Unidentified Shadow Shield# +24210#Beginner's Shadow Shoes# +24211#Beginner's Shadow Shield# +24212#Rookie's Shadow Shoes# +24213#Rookie's Shadow Shield# +24214#Advanced Shadow Shoes# +24215#Advanced Shadow Shield# +24216#Shadow Attack Armor # +24217#Unidentified Shadow Earring# +24218#Unidentified Shadow Pendant# +24219#Shadow ColdBolt Armor # +24220#Shadow FireBolt Armor # +24221#Lightning Bolt Shadow Armor# +24222#Shadow EarthSpike Armor # +24223#Shadow Enhance_Force Weapon # +24224#Shadow Force Weapon # +24225#Unidentified Shadow Earring# +24226#Unidentified Shadow Pendant# +24227#Shadow Enhance_Spirit Weapon # +24228#Spirit Shadow Weapon# +24229#Unidentified Shadow Earring# +24230#Unidentified Shadow Pendant# +24231#Blitz Shadow Shoes# +24232#Blitz Shadow Shield# +24233#Shadow Exceed Weapon # +24234#Unidentified Shadow Earring# +24235#Unidentified Shadow Pendant# +24236#Unidentified Shadow Earring# +24237#Unidentified Shadow Pendant# +24238#Unidentified Shadow Earring# +24239#Unidentified Shadow Pendant# +24240#Unidentified Shadow Shoes# +24241#Unidentified Shadow Shield# +24242#Shadow Caster Armor # +24243#Reload Shoes Shadow# +24244#Reload Shield Shadow# +24245#Reload Shadow Armor# +24246#Swordman Shadow Earring# +24247#Merchant Shadow Earring# +24248#Acolyte Shadow Earring# +24249#Magician Shadow Earring# +24250#Swordman Shadow Pendant# +24251#Merchant Shadow Pendant# +24252#Acolyte Shadow Pendant# +24253#Thief Shadow Pendant# +24254#Magician Shadow Pendant# +24255#Archer Shadow Pendant# +24256#Knight Shadow Shoes# +24257#Crusader Shadow Shoes# +24258#Blacksmith Shadow Shoes# +24259#Alchemist Shadow Shoes# +24260#Priest Shadow Shoes# +24261#Monk Shadow Shoes# +24262#Assassin Shadow Shoes# +24263#Rogue Shadow Shoes# +24264#Wizard Shadow Shoes# +24265#Sage Shadow Shoes# +24266#Hunter Shadow Shoes# +24267#Bard Shadow Shoes# +24268#Dancer Shadow Shoes# +24269#Knight Shadow Armor# +24270#Crusader Shadow Armor# +24271#Blacksmith Shadow Armor# +24272#Alchemist Shadow Armor# +24273#Priest Shadow Armor# +24274#Monk Shadow Armor# +24275#Assassin Shadow Armor# +24276#Rogue Shadow Armor# +24277#Wizard Shadow Armor# +24278#Sage Shadow Armor# +24279#Hunter Shadow Armor# +24280#Bard Armor Shadow# +24281#Dancer Armor Shadow# +24282#Super Novice Shadow Weapon# +24283#Gunslinger Shadow Weapon# +24284#Taekwon Shadow Weapon# +24285#Ninja Weapon Shadow# +24286#Doram magical Weapon Shadow# +24287#Doram physical Weapon Shadow# +24288#Rune Knight Weapon Shadow# +24289#Royal Guard Weapon Shadow# +24290#Mechanic Weapon Shadow# +24291#Geneticist Weapon Shadow# +24292#Arch Bishop Weapon Shadow# +24293#Sura Weapon Shadow# +24294#Guillotine Cross Weapon Shadow# +24295#Shadow Chaser Weapon Shadow# +24296#Warlock Weapon Shadow# +24297#Sorcerer Weapon Shadow# +24298#Ranger Weapon Shadow# +24299#Maestro Weapon Shadow# +24300#Wanderer Weapon Shadow# +24301#Rune Knight Shield Shadow# +24302#Royal Guard Shield Shadow# +24303#Mechanic Shield Shadow# +24304#Geneticist Shield Shadow# +24305#Arch Bishop Shield Shadow# +24306#Sura Shield Shadow# +24307#Guillotine Cross Shield Shadow# +24308#Shadow Chaser Shield Shadow# +24309#Warlock Shield Shadow# +24310#Sorcerer Shield Shadow# +24311#Ranger Shield Shadow# +24312#Maestro Shield Shadow# +24313#Wanderer Shield Shadow# +24314#Ninja Shield Shadow# +24315#Taekwon Shield Shadow# +24316#Doram Physical Shield Shadow# +24317#Doram Magical Shadow Shield# +24318#Super Novice Shadow Shield# +24319#Gunslinger Shadow Shield# +24320#Unidentified Shadow Shoes# +24321#Unidentified Shadow Pendant# +24322#Gemstone Shadow Earring II# +24323#Unidentified Shadow Shield# +24324#Unidentified Shadow Armor# +24325#Unidentified Shadow Armor# +24326#Unidentified Shadow Armor# +24327#Unidentified Shadow Shield# +24328#Unidentified Shadow Weapon# +24329#Unidentified Shadow Weapon# +24330#Unidentified Shadow Armor# +24331#Unidentified Shadow Armor# +24332#Unidentified Shadow Shield# +24333#Unidentified Shadow Shoes# +24334#Unidentified Shadow Armor# +24335#Gemstone Shadow Weapon II# +24336#Gemstone Shadow Shield II# +24337#Unidentified Shadow Armor# +24338#Unidentified Shadow Shoes# +24339#Almighty Shadow Earring# +24340#Almighty Shadow Pendant# +24341#All Race Shadow Shoes# +24342#All Race Shadow Shield# +24343#Unidentified Shadow Weapon# +24344#Unidentified Shadow Armor# +24345#Unidentified Shadow Shield# +24346#Unidentified Shadow Shoes# +24347#Unidentified Shadow Armor# +24348#Unidentified Shadow Armor# +24349#Unidentified Shadow Armor# +24350#Unidentified Shadow Armor# +24351#Unidentified Shadow Armor# +24352#Unidentified Shadow Armor# +24353#Unidentified Shadow Shoes# +24354#Unidentified Shadow Armor# +24355#Unidentified Shadow Shoes# +24356#Unidentified Shadow Weapon# +24357#Unidentified Shadow Earring# +24358#Unidentified Shadow Weapon# +24359#Unidentified Shadow Pendant# +24360#Tension Shadow Weapon# +24361#Tension Shadow Earring# +24362#Tension Shadow Pendant# +24363#Elegant Shadow Weapon# +24364#Elegant Shadow Earring# +24365#Elegant Shadow Pendant# +24366#Unidentified Shadow Shield# +24367#Unidentified Shadow Shoes# +24368#Unidentified Shadow Earring# +24369#Unidentified Shadow Pendant# +24370#Unidentified Shadow Weapon# +24371#Unidentified Shadow Earring# +24372#Unidentified Shadow Pendant# +24373#Unidentified Shadow Shoes# +24374#Unidentified Shadow Shield# +24375#Unidentified Shadow Armor# +24376#Unidentified Shadow Armor# +24377#Unidentified Shadow Armor# +24378#Unidentified Shadow Armor# +24379#Unidentified Shadow Armor# +24380#Sentimental Shadow Weapon# +24381#Sentimental Shadow Earring# +24382#Sentimental Shadow Pendant# +24383#Enchanting Shadow Weapon# +24384#Enchanting Shadow Earring# +24385#Enchanting Shadow Pendant# +24386#Unidentified Shadow Weapon# +24387#Unidentified Shadow Armor# +24388#Unidentified Shadow Shield# +24389#Unidentified Shadow Shoes# +24390#Unidentified Shadow Weapon# +24391#Unidentified Shadow Earring# +24392#Unidentified Shadow Pendant# +24393#Unidentified Shadow Shoes# +24394#Unidentified Shadow Shield# +24395#Unidentified Shadow Armor# +24396#Unidentified Shadow Shoes# +24397#Unidentified Shadow Shield# +24398#Unidentified Shadow Armor# +24399#Unidentified Shadow Shield# +24400#Unidentified Shadow Shoes# +24401#Unidentified Shadow Armor# +24402#Rebellion Shadow Armor# +24403#Kagerou Shadow Armor# +24404#Oboro Shadow Armor# +24405#Rebellion Shadow Shoes# +24406#Kagerou Shadow Shoes# +24407#Oboro Shadow Shoes# +24408#Doram Physical Shadow Armor# +24409#Doram Physical Shadow Shoes# +24410#Doram Magical Shadow Armor# +24411#Doram Magical Shadow Shoes# +24412#Unidentified Shadow Armor# +24413#Unidentified Shadow Shoes# +24414#Unidentified Shadow Armor# +24415#Unidentified Shadow Shoes# +24416#Shadow Transcendental Time Weapon# +24417#Shadow Transcendental Time Armor# +24418#Shadow Transcendental Time Shield# +24419#Shadow Transcendental Time Shoes# +24420#Shadow Transcendental Time Earring# +24421#Shadow Transcendental Time Pendant# +24423#Unidentified Shadow Weapon# +24424#Unidentified Shadow Armor# +24425#Perfect Size Shadow Weapon# +24426#Perfect Size Shadow Armor# +24427#Magic Exorcist Corrupt Shadow Weapon# +24428#Magic Vibration Dragon Killer Shadow Weapon# +24429#Magic Scissors Hunting Shadow Weapon# +24430#Magic Fishing Insect Shadow Weapon# +24431#Magic Executioner Holy Water Shadow Weapon# +24432#Unidentified Shadow Weapon# +24433#Unidentified Shadow Armor# +24434#Executioner Holy Water Shadow Weapon# +24435#Fishing Insect Shadow Weapon# +24436#Scissors Hunting Shadow Weapon# +24437#Vibration Dragon Killer Shadow Weapon# +24438#Exorcist Corrupt Shadow Weapon# +24439#Unidentified Shadow Weapon# +24440#Sonic Armor Shadow# +24441#Sonic Shield Shadow# +24442#Sonic Shoes Shadow# +24443#Ignition Shadow Weapon# +24444#Ignition Shadow Pendant# +24445#Ignition Shadow Earring# +24446#Unidentified Shadow Armor# +24447#Unidentified Shadow Shield# +24448#Unidentified Shadow Shoes# +24449#Firebreath Weapon Shadow# +24450#Firebreath Pendant Shadow# +24451#Firebreath Earring Shadow# +24452#Unidentified Shadow Armor# +24453#Unidentified Shadow Shield# +24454#Unidentified Shadow Shoes# +24455#Aimed Shadow Weapon# +24456#Aimed Shadow Pendant# +24457#Aimed Shadow Earring# +24458#Arrow Shadow Armor# +24459#Arrow Shadow Shield# +24460#Arrow Shadow Shoes# +24461#Shooting Shadow Weapon# +24462#Shooting Shadow Pendant# +24463#Shooting Shadow Earrings# +24464#Unidentified Shadow Armor# +24465#Unidentified Shadow Shield# +24466#Unidentified Shadow Shoes# +24467#Unidentified Shadow Weapon# +24468#Unidentified Shadow Pendant# +24469#Unidentified Shadow Earring# +24470#Unidentified Shadow Armor# +24471#Unidentified Shadow Shield# +24472#Unidentified Shadow Shoes# +24473#Unidentified Shadow Weapon# +24474#Unidentified Shadow Pendant# +24475#Unidentified Shadow Earring# +24476#Unidentified Shadow Armor# +24477#Unidentified Shadow Shield# +24478#Unidentified Shadow Shoes# +24479#Skyblow Shadow Weapon# +24480#Skyblow Shadow Pendant# +24481#Skyblow Shadow Earring# +24482#Unidentified Shadow Armor# +24483#Unidentified Shadow Shield# +24484#Unidentified Shadow Shoes# +24485#Unidentified Shadow Weapon# +24486#Unidentified Shadow Pendant# +24487#Unidentified Shadow Earring# +24488#Duple Shadow Armor# +24489#Duple Shadow Shield# +24490#Duple Shadow Shoes# +24491#Unidentified Shadow Weapon# +24492#Unidentified Shadow Pendant# +24493#Unidentified Shadow Earring# +24494#Unidentified Shadow Armor# +24495#Unidentified Shadow Shield# +24496#Unidentified Shadow Shoes# +24497#Magnus Shadow Weapon# +24498#Magnus Shadow Pendant# +24499#Magnus Shadow Earrings# +24500#Rainstorm Shadow Armor# +24501#Rainstorm Shadow Shield# +24502#Rainstorm Shadow Shoes# +24503#Arrow Vulcan Shadow Weapon# +24504#Arrow Vulcan Shadow Pendant# +24505#Arrow Vulcan Shadow Earrings# +24506#Unidentified Shadow Armor# +24507#Unidentified Shadow Shield# +24508#Unidentified Shadow Shoes# +24509#Reverberation Shadow Weapon# +24510#Reverberation Shadow Pendant# +24511#Reverberation Shadow Earring# +24512#Unidentified Shadow Armor# +24513#Unidentified Shadow Shield# +24514#Unidentified Shadow Shoes# +24515#Unidentified Shadow Weapon# +24516#Unidentified Shadow Pendant# +24517#Unidentified Shadow Earring# +24518#Crimson Shadow Armor# +24519#Crimson Shadow Shield# +24520#Crimson Shadow Shoes # +24521#Chain Shadow Weapon# +24522#Chain Shadow Pendant# +24523#Chain Shadow Earring# +24524#Triangle Shadow Armor# +24525#Triangle Shadow Shield# +24526#Triangle Shadow Shoes# +24527#Shadowspell Shadow Weapon# +24528#Shadowspell Shadow Pendant# +24529#Shadowspell Shadow Earring# +24530#Unidentified Shadow Armor# +24531#Unidentified Shadow Shield# +24532#Unidentified Shadow Shoes# +24533#Feint Shadow Weapon# +24534#Feint Shadow Pendant# +24535#Feint Shadow Earrings# +24536#Rolling Shadow Armor# +24537#Rolling Shadow Shield# +24538#Rolling Shadow Shoes# +24539#Unidentified Shadow Weapon# +24540#Unidentified Shadow Pendant# +24541#Unidentified Shadow Earring# +24542#Unidentified Shadow Armor# +24543#Unidentified Shadow Shield# +24544#Unidentified Shadow Shoes# +24545#Ripperslasher Shadow Weapon# +24546#Ripperslasher Shadow Pendant# +24547#Ripperslasher Shadow Earring# +24548#Dust Shadow Armor# +24549#Dust Shadow Shield# +24550#Dust Shadow Shoes# +24551#Unidentified Shadow Weapon# +24552#Unidentified Shadow Pendant# +24553#Unidentified Shadow Earring# +24554#Psychic Shadow Armor# +24555#Psychic Shadow Shield# +24556#Psychic Shadow Shoes# +24557#Varetyr Shadow Weapon# +24558#Varetyr Shadow Pendant# +24559#Varetyr Shadow Earring# +24560#Cart Tornado Shadow Armor# +24561#Cart Tornado Shadow Shield# +24562#Cart Tornado Shadow Shoes# +24563#Cart Cannon Shadow Weapon# +24564#Cart Cannon Shadow Pendant# +24565#Cart Cannon Shadow Earrings# +24566#Spore Bomb Shadow Armor# +24567#Spore Bomb Shadow Shield# +24568#Spore Bomb Shadow Shoes# +24569#Unidentified Shadow Weapon# +24570#Unidentified Shadow Pendant# +24571#Unidentified Shadow Earring# +24572#Unidentified Shadow Armor# +24573#Unidentified Shadow Shield# +24574#Unidentified Shadow Shoes# +24575#Unidentified Shadow Weapon# +24576#Unidentified Shadow Pendant# +24577#Unidentified Shadow Earring# +24578#Vanishing Cannon Shadow Armor# +24579#Vanishing Cannon Shadow Shield# +24580#Vanishing Cannon Shadow Shoes# +24581#Genesis Shadow Weapon# +24582#Genesis Shadow Pendant# +24583#Genesis Shadow Earrings# +24584#Unidentified Shadow Armor# +24585#Unidentified Shadow Shield# +24586#Unidentified Shadow Shoes# +24587#Unidentified Shadow Accessory# +24588#Unidentified Shadow Accessory# +24589#Unidentified Shadow Weapon# +24590#Unidentified Shadow Weapon# +24591#Unidentified Shadow Weapon# +24592#Unidentified Shadow Weapon# +24593#Unidentified Shadow Weapon# +24594#Unidentified Shadow Weapon# +24595#Unidentified Shadow Weapon# +24596#Unidentified Shadow Weapon# +24597#Unidentified Shadow Weapon# +24598#Unidentified Shadow Shadow Shadow Weapon# +24599#Unidentified Shadow Weapon# +24600#Unidentified Shadow Weapon# +24601#Unidentified Shadow Weapon# +24602#Unidentified Shadow Shield# +24603#Unidentified Shadow Armor# +24604#Unidentified Shadow Earring# +24605#Unidentified Shadow Pendant# +24606#Unidentified Shadow Shoes# +24607#Unidentified Shadow Weapon# +24608#Unidentified Shadow Shield# +24609#Unidentified Shadow Armor# +24610#Unidentified Shadow Earring# +24611#Unidentified Shadow Pendant# +24612#Unidentified Shadow Shoes# +24613#Unidentified Shadow Weapon# +24614#Unidentified Shadow Shield# +24615#Unidentified Shadow Armor# +24616#Unidentified Shadow Shield# +24617#Unidentified Shadow Armor# +24618#Unidentified Shadow Shoes# +24619#Unidentified Shadow Weapon# +24620#Unidentified Shadow Pendant# +24621#Unidentified Shadow Earring# +24622#Unidentified Shadow Weapon# +24623#Unidentified Shadow Shield# +24624#Unidentified Shadow Armor# +24625#Unidentified Shadow Earring# +24626#Unidentified Shadow Pendant# +24627#Unidentified Shadow Shoes# +24628#Unidentified Shadow Weapon# +24629#Unidentified Shadow Shield# +24630#Unidentified Shadow Armor# +24631#Unidentified Shadow Earring# +24632#Unidentified Shadow Pendant# +24633#Unidentified Shadow Shoes# +24634#Unidentified Weapon# +24635#Unidentified Shield# +24636#Unidentified Armor# +24637#Unidentified Accessory# +24638#Unidentified Accessory# +24639#Unidentified Shoes# +24640#Unidentified Weapon# +24641#Unidentified Shield# +24642#Unidentified Armor# +24643#Unidentified Accessory# +24644#Unidentified Accessory# +24645#Unidentified Shoes# +24646#Unidentified Shadow Weapon# +24647#Unidentified Shadow Shield# +24648#Unidentified Shadow Armor# +24649#Unidentified Shadow Earring# +24650#Unidentified Shadow Pendant# +24651#Unidentified Shadow Shoes# +24652#Unidentified Shadow Weapon# +24653#Unidentified Shadow Shield# +24654#Unidentified Shadow Armor# +24655#Unidentified Shadow Weapon# +24656#Unidentified Shadow Shield# +24657#Unidentified Shadow Armor# +24658#Unidentified Shadow Earring# +24659#Unidentified Shadow Pendant# +24660#Unidentified Shadow Shoes# +24661#Unidentified Shadow Earring# +24662#Unidentified Shadow Pendant# +24663#Unidentified Shadow Armor# +24664#Unidentified Shadow Shoes# +24665#Unidentified Shadow Earring# +24666#Unidentified Shadow Shoes# +24667#Unidentified Shadow Armor# +24668#Unidentified Shadow Pendant# +24669#Unidentified Shadow Armor# +24670#Unidentified Shadow Shoes# +24671#Unidentified Shadow Pendant# +24672#Unidentified Shadow Earring# +24673#Unidentified Shadow Weapon# +24674#Unidentified Shadow Shield# +24675#Unidentified Shadow Armor# +24676#Unidentified Shadow Shoes# +24677#Unidentified Shadow Earring# +24678#Unidentified Shadow Pendant# +24679#Unidentified Shadow Armor# +24680#Unidentified Shadow Shoes# +24681#Unidentified Shadow Earring# +24682#Unidentified Shadow Pendant# +24683#Unidentified Shadow Shield# +24685#Unidentified Shadow Shield# +24686#Unidentified Shadow Weapon# +24687#Unidentified Shadow Weapon# +24688#Unidentified Shadow Shield# +24689#Unidentified Shadow Armor# +24690#Unidentified Shadow Shoes# +24691#Unidentified Shadow Earring# +24692#Unidentified Shadow Pendant# +24693#Unidentified Shadow Shield# +24694#Unidentified Shadow Armor# +24695#Unidentified Shadow Shoes# +24696#Unidentified Shadow Earring# +24697#Unidentified Shadow Pendant# +24698#Unidentified Shadow Weapon# +24699#Unidentified Shadow Weapon# +24700#Unidentified Shadow Weapon# +24701#Unidentified Shadow Weapon# +24702#Unidentified Shadow Weapon# +24703#Unidentified Shadow Weapon# +24704#Unidentified Shadow Weapon# +24705#Unidentified Shadow Weapon# +24706#Unidentified Shadow Weapon# +24707#Unidentified Shadow Weapon# +24708#Unidentified Shadow Weapon# +24709#Unidentified Shadow Weapon# +24710#Unidentified Shadow Weapon# +24711#Unidentified Shadow Weapon# +24712#Unidentified Shadow Weapon# +24713#Unidentified Shadow Weapon# +24714#Unidentified Shadow Weapon# +24715#Unidentified Shadow Weapon# +24722#Unidentified Shadow Shield# +24723#Unidentified Shadow Armor# +24724#Unidentified Shadow Shoes# +24725#Unidentified Shadow Weapon# +24726#Unidentified Shadow Pendant# +24727#Unidentified Shadoe Earring# +24728#Unidentified Shadow Armor# +24729#Unidentified Shadow Shoes# +24730#Unidentified Shadow Earring# +24731#Unidentified Shadow Pendant# +24732#Unidentified Shadow Shield# +24733#Unidentified Shadow Shield# +24734#Unidentified Shadow Weapon# +24735#Unidentified Shadow Shield# +24736#Unidentified Shadow Weapon# +24737#Unidentified Shadow Shield# +24738#Unidentified Shadow Weapon# +24739#Unidentified Shadow Weapon# +24740#Unidentified Shadow Weapon# +24741#Unidentified Shadow Weapon# +24742#Unidentified Shadow Weapon# +24743#Unidentified Shadow Weapon# +24744#Unidentified Shadow Weapon# +24745#Unidentified Shadow Weapon# +24746#Unidentified Shadow Shield# +24747#Unidentified Shadow Armor# +24748#Unidentified Shadow Shoes# +24749#Unidentified Shadow Earring# +24750#Unidentified Shadow Pendant# +24751#Unidentified Shadow Weapon# +24752#Unidentified Shadow Shield# +24753#Unidentified Shadow Weapon# +24754#Unidentified Shadow Shield# +24755#Unidentified Shadow Weapon# +24756#Unidentified Shadow Shield# +24757#Unidentified Shadow Weapon# +24758#Unidentified Shadow Shield# +24759#Unidentified Shadow Weapon# +24760#Unidentified Shadow Shield# +24761#Unidentified Shadow Weapon# +24762#Unidentified Shadow Shield# +24763#Unidentified Shadow Shoes# +24764#Unidentified Shadow Armor# +24765#Unidentified Shadow Pendant# +24766#Unidentified Shadow Earring# +24767#Unidentified Shadow Shield# +24768#Unidentified Shadow Weapon# +25000#SP Absorb Stone(Upper)# +25001#Defense Stone(Mid)# +25002#LUK Exchange Stone(Mid)# +25003#STR Exchange Stone(Mid)# +25004#AGI Convert Stone(Mid)# +25005#INT Convert Stone(Mid)# +25006#VIT Exchange Stone(Mid)# +25007#DEX Convert Stone(Mid)# +25008#VIT Convert Stone(Lower)# +25009#AGI Exchange Stone(Lower)# +25010#DEX Exchange Stone(Lower)# +25011#LUK Convert Stone(Lower)# +25012#STR Convert Stone(Lower)# +25013#INT Exchange Stone(Lower)# +25014#Mabang Stone(Lower)# +25015#Experience Stone(Lower)# +25016#Attack Stone(Lower)# +25017#MATK Stone(Lower)# +25018#Weapon Exchange Ticket# +25019#Armor Exchange Ticket# +25020#Graduation Certificate# +25022#Beginner's Manual 3# +25023#Beginner's Manual 1# +25024#Beginner's Manual 2# +25025#Beginner's Manual 4# +25038#Broken Trap# +25039#Capture Trap# +25040#Piece of Knowledge# +25041#Soul Plunger# +25042#Piece of Mysterious Egg# +25043#Thorny Vine Flute# +25044#Solid Thorny Vine# +25045#Luxury Cloth Piece# +25046#Boarding Permit# +25047#Kalugna# +25048#Hearty Lunch Box# +25049#Basil Rock# +25050#RJC Coin# +25051#Token of Union# +25052#Energy # +25053#Energy # +25054#Energy # +25055#Frozen Bomb# +25056#Watermelon Heart# +25057#Unknown Cantaloupe# +25058#Twinkle Effect(Upper)# +25059#Ghost Effect(Mid)# +25060#Critical Stone(Mid)# +25061#Range Stone(Mid)# +25062#Greed Stone(Lower)# +25063#Stamina Stone(Lower)# +25064#Magic Stone(Lower)# +25065#Detox Stone(Lower)# +25066#Recovery Stone(Lower)# +25067#Cast Stone(Garment)# +25068#ASPD Stone(Upper)# +25069#Reload Stone(Upper)# +25070#Reload Stone(Mid)# +25071#Reload Stone(Lower)# +25072#Kyrie Stone(Lower)# +25073#Old Papyrus# +25074#Old Coin# +25075#Admiral's Sword# +25076#Coursera# +25077#Knight Supply# +25078#Ha Soju# +25079#Last Breath# +25080#Fox Bead# +25081#Special Quest Shiitake# +25082#Hero Power Crystal# +25083#Silky Hair of Rabbit# +25084#Captured Rabbit# +25085#Rabbit's Hair# +25086#Ribbon for Gift wrapping# +25087#Old Doll# +25088#Dream Fragment# +25089#Ornament Wings Gift# +25090#Mana Fragment # +25091#Mana Fragment # +25092#Mana Fragment # +25093#Mana Fragment # +25094#Mana Fragment # +25095#Mana Fragment # +25096#Mana Fragment # +25097#LoVA Collaboration Ticket# +25098#Realm Map# +25099#Realm Map# +25100#Realm Map# +25101#Realm Map# +25102#Realm Map# +25103#Realm Map# +25104#Realm Map# +25105#Realm Map# +25106#Realm Map# +25107#Realm Map# +25108#Realm Map# +25109#Realm Map# +25110#Realm Map# +25111#Realm Map# +25112#Realm Map# +25113#Realm Map# +25114#Realm Map# +25115#Realm Map# +25116#Realm Map# +25117#Realm Map# +25118#Realm Map# +25119#Realm Map# +25120#Realm Map# +25121#Realm Map# +25122#Realm Map# +25123#Realm Map# +25124#Cursed Fragment# +25125#Cursed Proof of the Orc Hero# +25126#Orc Magic Crystal# +25127#Tranquil Energy Fragment# +25128#Weak Energy Fragment# +25129#Unstable Energy Fragment# +25130#Ominous Energy Fragment# +25131#Fallen Energy Fragment# +25132#Pumpkin Decoration# +25133#Seasoned White Stem# +25134#Garden Tour Lottery# +25135#[Event] Spiritual Auger# +25136#Electric Effect(Mid)# +25137#Green Flare Effect(Lower)# +25138#Shrink Effect(Mid)# +25139#Item Appraisal Stone(Lower)# +25140#Resurrection Stone(Lower)# +25141#Exp Stone(Mid)# +25142#Doram Token# +25143#Stuffed Doll Gift# +25144#Bridge Postured Doll# +25145#Burned Black Demon Doll# +25146#Cold Blooded Queen Doll# +25147#Well Eaten Rabbit Doll# +25148#Cute Starved Demon Doll# +25149#Doll With Warm Shawl# +25150#Hugging Alice Pilow# +25151#Rachel's Revolver# +25152#Tribute Bouquet# +25153#Broken Gun Scrap# +25154#Old Gun Powder# +25155#Schwartzvald Token of Honor# +25156#Chimera Sculpture# +25157#Deciduous Branch# +25158#Jelly Core# +25159#Seal of Heart Hunter# +25160#Borrowed Book# +25161#Homemade Cookie# +25162#Anchovy Cookie# +25163#Arms Shop Flyer# +25164#Fresh Tea Leaf# +25165#Fine Tea# +25166#Shiny Ring# +25167#Old Letter# +25168#Art Medal# +25169#Sticky Mucus# +25170#Minor Cast Stone(Garment)# +25171#Experience Stone(Upper)# +25172#Variable Cast Stone(Upper)# +25173#Variable Cast Stone(Mid)# +25174#Variable Cast Stone(Lower)# +25175#Lex Aeterna Stone(Mid)# +25176#Blue Aura Effect(Mid)# +25177#Shadow Effect(Mid)# +25178#Pink Glow Effect(Mid)# +25179#Star of Blessing# +25180#A pair of Old Rings# +25181#Wooden Rosary# +25182#Assassin Dagger with Glyph# +25183#Bow Thimble Decoration# +25184#Portable Sewing Kit# +25185#Locket Pendant# +25186#Clover Synthetic Roll# +25187#Shotgun Slug# +25188#Girl's Handkerchief# +25189#A-Tolerance Blueprint# +25190#A-Hit Blueprint# +25191#A-FLEE Blueprint# +25192#A-Mdef Blueprint# +25193#S-Atk Blueprint# +25194#S-Matk Blueprint# +25195#S-Avoid Blueprint# +25196#S-MaxHP Blueprint# +25197#S-Quick Blueprint# +25198#S-Cri Blueprint# +25200#Fluffy Cloud# +25201#Miracle Claw# +25202#Magical Soul# +25203#Proof of Treason# +25204#Lost Country Coins (2016S1)# +25205#Shrink Effect(Lower)# +25206#Electric Effect(Upper)# +25207#Enhanced SP Absorb Stone(Upper)# +25208#Enhanced SP Absorb Stone(Garment)# +25209#Enhanced HP Absorb Stone(Garment)# +25210#Enhanced HP Absorb Stone(Upper)# +25211#Red Crystal of Time# +25212#Condensed Demonic Blood# +25213#Collection of Magic Power# +25214#Magical Compass# +25215#Sand of Time# +25216#Gun Petit Premium Ticket# +25217#Gun Petit Premium Ticket Box# +25218#Tree Branch# +25219#Window Paper# +25220#Moonlight Lotus# +25221#Moon Fragrance# +25222#Window Paper with moon pattern# +25223#Eden Coin# +25224#White Body Effect(Mid)# +25225#Crimson Wave(Mid)# +25226#Water Field Effect(Lower)# +25227#Heal Stone(Lower)# +25228#Teleport Stone(Lower)# +25229#Steal Stone(Lower)# +25231#Suspicious Bottle# +25232#Cheap Lubricant# +25233#Cotton Wads# +25234#Colorful Needle# +25235#Crafted Stone# +25236#Seven Star Shard# +25237#Magical Crystal of Labyrinth# +25238#New Type Normal Lubricant# +25239#New Type Advanced Lubricant# +25240#Independent Certificate# +25241#Energy # +25242#Energy # +25243#Energy # +25244#Energy # +25245#Pile of Small Bones# +25246#Mix Juice Pack# +25247#Purple ore# +25248#Purple Ore Box# +25249#Buffalo Bandit Mane# +25250#Rockridge Coin# +25251#Fermented Grape Juice# +25252#Holly Sprig# +25253#Box of Sugar# +25254#Firewood# +25256#Hazy Dream Fragment# +25257#Bloody Love Letter# +25258#Broken Arrow# +25259#Recruitment Leaflet# +25260#Purple Ore Fragment# +25261#Torn Paper# +25262#Well-dried Clover# +25263#Short Bat Hair# +25264#Cluster of Nightmares# +25265#Shining Spore# +25266#Dried Yggdrasil Leaf# +25267#Suspicious Pentacle# +25268#Sticky Blood# +25269#Mushroom Sap# +25270#Wavy Mane# +25271#Illusion Stone# +25272#Illusion Gemstone# +25273#Mysterious Medal# +25274#Racing Audit Ticket# +25276#Clean Bone# +25277#Poisonous Powder# +25278#Robber Scarf# +25279#Crude Ammo# +25280#Broken Shotgun# +25281#Crude Scimitar# +25282#Old Revolver# +25283#Brown Scarf# +25284#Swamp Bug Shell# +25285#Brown Rat Tail# +25286#Octopus# +25287#Mystical Feather# +25290#Sweets Festival Coin# +25291#Product Chocolate# +25292#Stolen Cacao Beans# +25293#Penguin Statue# +25294#Clover Ticket# +25295#Happy Three Leaf Clover# +25296#Something Fatal# +25297#Frozen Stone# +25298#Soul Gemstone# +25299#Snowball# +25300#Ktullanux's Eye# +25302#Double Attack Stone(Garment)# +25303#Critical Stone(Garment)# +25304#Critical Stone(Upper)# +25305#Critical Stone(Lower)# +25306#Variable Casting Stone(Garment)# +25307#Late Lang Monster Ticket# +25308#Special Cat Can(Tuna)# +25309#Dry Twig# +25311#Black Soul Piece# +25312#Pretty Old Doll# +25313#Old Turtle Shell# +25314#Logbook# +25315#Piece of Turtle Shell# +25316#Old Metal Piece# +25318#Sweet Peel# +25319#Cold Box# +25320#Suspicious Melon# +25340#Golden Corn# +25341#Eagle Bead# +25342#Healthy Herb# +25344#Flat and Round Stones# +25345#Justice Card Fragment# +25346#Star Card Fragment# +25347#Moderation Card Fragment# +25348#Tank Card Fragment# +25349#Grim Reaper Card Fragment# +25350#Hermit Card Fragment# +25351#Emperor Card Fragment# +25352#Moon Card Fragment# +25353#Lover Card Fragment# +25354#Pope Card Fragment# +25355#Devil Card Fragment# +25356#Power Card Fragment# +25357#Cursed Magic Stone# +25358#Data Recovery Card# +25359#Little old Box# +25360#Receipt# +25361#Lost Country Coins (2017S1)# +25362#Bell Parts# +25363#Royal Flower# +25364#Royal Flower Seeds# +25365#Elongated noodles# +25366#Noodle Festival Coin# +25367#Promotional fan# +25374#Mysterious Piece of Stone# +25375#Powerful Soul Essence# +25376#Cuppet Coin# +25377#Luxurious Pet Food# +25378#Tightly Sealed Letter# +25379#Tightly Sealed Letter# +25380#Special Dragon Beard Noodles# +25381#Direct Fire Breath Dumblings# +25382#Dragon Head Cookies# +25383#Beard Candy# +25389#Cancer Fragment# +25390#Caught Wild Boar# +25391#Quality Twig# +25392#Ticket to anywhere# +25393#Delicious Corn# +25394#Lunch Box# +25395#Small Embers# +25396#Study Book (2017)# +25397#Taur's Fragment# +25401#Black Fur# +25404#Lost Country Coins (2017S2)# +25408#Scatleton Memory# +25409#Champion Stone(Upper)# +25410#Champion Stone(Mid)# +25411#Champion Stone(Lower)# +25412#Sura Stone(Garment)# +25413#Sniper Stone(Upper)# +25414#Sniper Stone(Mid)# +25415#Sniper Stone(Lower)# +25416#Ranger Stone(Garment)# +25417#Professor Stone(Upper)# +25418#Professor Stone(Mid)# +25419#Professor Stone(Lower)# +25420#Sorcerer Stone(Garment)# +25421#Decorative Pumpkin# +25422#Dried White Thin Stem# +25425#Magical Snow Flower# +25426#Warm Cotton# +25427#Beginner's Equipment Exchange Voucher# +25428#Beginner's Safe to 7 Weapon Certificate# +25434#Z-Knockback Blueprint# +25435#Z-Immortal Blueprint# +25436#Z-Killgain Blueprint# +25437#Z-Reincarnation Blueprint# +25438#Z-NoDispell Blueprint# +25439#Z-Clairvoyance Blueprint# +25440#Z-CastFixed Blueprint# +25441#Reprint Egg Sticker# +25442#Gemini Fragment# +25443#Sagittarius Fragment# +25444#Happy Stone# +25445#Lord Knight Stone(Upper)# +25446#Lord Knight Stone(Mid)# +25447#Lord Knight Stone(Lower)# +25448#Rune Knight Stone(Garment)# +25449#Genetic Stone(Garment)# +25450#Creator Stone(Upper)# +25451#Creator Stone(Mid)# +25452#Creator Stone(Lower)# +25453#High Wizard Stone(Upper)# +25454#High Wizard Stone(Mid)# +25455#High Wizard Stone(Lower)# +25456#Warlock Stone(Garment)# +25464#World Tour Ticket# +25479#DOG Vial# +25480#New Year's Card 2018# +25481#Nibble Cat Exchange Ticket# +25490#Stalker Stone(Upper)# +25491#Stalker Stone(Mid)# +25492#Stalker Stone(Lower)# +25493#Shadow Chaser Stone(Garment)# +25494#Whitesmith Stone(Upper)# +25495#Whitesmith Stone(Mid)# +25496#Whitesmith Stone(Lower)# +25497#Mechanic Stone(Garment)# +25498#Clown Gypsy Stone(Upper)# +25499#Clown Gypsy Stone(Mid)# +25500#Clown Gypsy Stone(Lower)# +25501#Wanderer Minstrel Stone(Garment)# +25502#Chewy Rice Cake# +25503#Farewell Flower# +25504#Welcome Seal# +25505#Jokers Wild# +25506#Cute Broom# +25507#Colorful Coral# +25508#Orc Lord's Token# +25509#Shiny Round Shell# +25511#Chocolate Plate# +25512#Almond# +25615#Nasarin's Soul Stone# +25616#Green Bear Rope# +25617#Fine Chonchon Doll# +25618#Gothic Porcelain Doll# +25619#Clay Doll# +25622#White Snake's Tear# +25623#Doram Soul# +25624#[Doram] Doram Soul Box# +25625#Special Referral Letter# +25626#[Doram] Special Referral Box# +25627#Gold Card# +25629#Knot Letter# +25631#Fire of Conflict# +25633#Wootan's Token# +25634#Wootan Defender's Shield Piece# +25635#Wootan Warrior's Fur# +25636#Shooting Stone# +25637#Leaf-like Hair# +25638#Megalithic Token# +25639#Fragment of Rock# +25640#Potted Stone# +25641#Hard Mud# +25642#Vulnerable Worm# +25643#Signed Book# +25655#Sweet Coin# +25656#Stamped Notebook# +25657#Though Noodles# +25658#Noodle Sap# +25659#Organic Flour# +25660#Aquarius Fragment# +25661#Surpentarius Fragment# +25662#Big Labyrinth Magic Crystal# +25664#Ribbon Noodles# +25665#Dien's Precious Envelope# +25666#Identification bracelet for specimen# +25668#Broken Weapon# +25669#Mysterious Component# +25670#Modification Module(Defense)# +25671#Modification Module(Magic Defense)# +25672#Modification Module(VIT)# +25673#Modification Module(LUK)# +25674#Modification Module(STR)# +25675#Modification Module(AGI)# +25676#Modification Module(INT)# +25677#Modification Module(DEX)# +25678#Modification Module(HP Recovery)# +25679#Modification Module(SP Recovery)# +25680#Modification Module(Spell)# +25681#Modification Module(Attack Speed)# +25682#Modification Module(Fatal)# +25683#Modification Module(Expert Archer)# +25684#Modification Module(Stamina)# +25685#Modification Module(Spirit)# +25686#Modification Module(Heal)# +25687#Modification Module(Attack Power)# +25688#Modification Module(Magic Power)# +25689#Modification Module(Sharpshooter)# +25690#Modification Module(Swift)# +25691#Modification Module(Caster)# +25692#Modification Module(Critical)# +25693#Modification Module(After Skill Delay)# +25694#Modification Module(Fixed Casting Time)# +25695#Modification Module(Above All)# +25696#Modification Module(Life Drain)# +25697#Modification Module(Soul Drain)# +25698#Modification Module(Magic Healing)# +25699#Modification Module(Magic Soul)# +25700#Modification Module(Unlimited Vital)# +25701#Modification Module(Spell Buster)# +25702#Modification Module(Firing Shot)# +25703#Modification Module(Over Power)# +25704#Modification Module(Fatal Flash)# +25705#Modification Module(Lucky Strike)# +25706#High Priest Stone(Upper)# +25707#High Priest Stone(Mid)# +25708#High Priest Stone(Lower)# +25709#Archbishop Stone(Garment)# +25710#Paladin Stone(Upper)# +25711#Paladin Stone(Mid)# +25712#Paladin Stone(Lower)# +25713#Royal Guard Stone(Garment)# +25714#Assassin Cross Stone(Upper)# +25715#Assassin Cross Stone(Mid)# +25716#Assassin Cross Stone(Lower)# +25717#Guillotine Cross Stone(Garment)# +25719#Libra Fragment# +25720#Scorpio Fragment# +25721#Book of Study# +25723#Cor Core# +25728#Shadowdecon Ore# +25729#Shadowdecon# +25730#Zelunium Ore# +25731#Zelunium# +25733#Episode Quest Clear Coupon# +25734#Sealed Weapon Exchange Ticket# +25735#Ancient Hero's Seal-Year# +25736#Jeremy's Beauty Coupon II# +25738#Booster Ticket# +25739#Curse Eroded Crystal# +25740#Curse Eroded Gemstone# +25759#Green Dragon Orb# +25760#Blue Dragon Orb# +25761#Red Dragon Orb# +25762#Gold Dragon Orb# +25763#Purple Dragon Orb# +25764#Silver Dragon Orb# +25765#Large Dragon Bone# +25766#Small Dragon Bone# +25767#Angel's Dream# +25768#Valkyrie Ingrid's Armor Fragment# +25769#Valkyrie Reginleif's Armor Fragment# +25770#Valkyrie Reginleif's Armor# +25771#Valkyrie Ingrid's Armor# +25772#Delicious Juice# +25773#Snake's Venom# +25774#Mantis Flower# +25775#Fluffy Cloth Piece# +25776#Very Solid Purple Shell# +25777#Mysterious Sap# +25778#Autumn Light Jelly Piece# +25779#Short Binding Rope# +25780#Demonic Essence# +25781#Pretty Little Candle# +25782#Medicinal Bag# +25783#Cold Holy Water# +25784#Small Flashlight# +25786#Somatology Research Document# +25787#Somatology Experimental Fragment# +25791#[Event] Inventory Expansion Voucher# +25792#[Limited] Inventory Expansion Voucher# +25793#Inventory Expansion Voucher# +25797#Sura Stone II(Garment)# +25798#Champion Stone II(Lower)# +25799#Champion Stone II(Mid)# +25800#Champion Stone II(Upper)# +25801#Sorcerer Stone II(Garment)# +25802#Professor Stone II(Lower)# +25803#Professor Stone II(Mid)# +25804#Professor Stone II(Upper)# +25805#Shadow Chaser Stone II(Garment)# +25806#Stalker Stone II(Lower)# +25807#Stalker Stone II(Mid)# +25808#Stalker Stone II(Upper)# +25809#Redium# +25810#Rindium# +25811#Odium# +25812#Purdium# +25813#Whidium# +25814#Dynite# +25815#Hardened Dust# +25816#Broken Trap# +25817#Bizarre Stone Carvings# +25820#Metal Weapon Exchange Ticket# +25840#January Costume Exchange Coupon# +25841#Smooth Noodles# +25842#Soul Reaper Stone(Garment)# +25843#Soul Linker Stone(Upper)# +25844#Soul Linker Stone(Mid)# +25845#Soul Linker Stone(Lower)# +25846#Star Gladiator Stone(Upper)# +25847#Star Gladiator Stone(Mid)# +25848#Star Gladiator Stone(Lower)# +25849#Star Emperor Stone(Garment)# +25850#Ninja Stone(Upper)# +25851#Ninja Stone(Mid)# +25852#Ninja Stone(Lower)# +25853#Kagerou Stone(Garment)# +25854#Oboro Stone(Garment)# +25855#Gunslinger Stone(Upper)# +25856#Gunslinger Stone(Mid)# +25857#Gunslinger Stone(Lower)# +25858#Rebellion Stone(Garment)# +25859#Doram Stone(Upper)# +25860#Doram Stone(Mid)# +25861#Doram Stone(Lower)# +25862#Doram Stone(Garment)# +25863#2019 Superstar R Ticket# +25864#Sealed Temporal Circlet# +25865#Temperal Gemstone# +25866#Temporal Spell# +25867#Temporal Fragment# +25876#Thanksgiving Lottery Ticket# +25892#Deep Sea Shells# +25893#Tail of Deep Sea Fish# +25894#Decayed Deep Sea Fish# +25895#Deep Sea Starfish# +25896#Deep Sea Crab# +25897#Deep Sea Witch's Crown# +25898#Searud's Fishing Rod# +25899#Abyssal Essence# +25920#Armor Enhancment Gemstone(Advanced)# +25921#Aged Cacao Beans# +26000#Unidentified Spear# +26001#Unidentified Spear# +26002#Unidentified Spear# +26003#Unidentified Spear# +26004#Unidentified Spear# +26005#Unidentified Spear# +26006#Unidentified Spear# +26007#Illusion Spectral Spear# +26008#Unidentified Spear# +26015#Unidentified Spear# +26016#Two handed Lnace of Kingdom# +26021#Unidentified Spear# +26100#Paradise Foxtail II# +26101#Paradise Foxtail III# +26102#Unidentified Staff# +26103#Unidentified Staff# +26104#Unidentified Staff# +26105#Unidentified Staff# +26106#Unidentified Staff# +26107#Elder Staff# +26108#Unidentified Staff# +26109#Illusion Staff of Bordeaux# +26110#Candy Cane Rod# +26111#Metal Foxtail# +26112#Unidentified Staff# +26113#Unidentified Staff# +26118#Shadow Staff# +26119#Unidentified Staff# +26120#Unidentified Staff# +26124#Unidentified Staff# +26125#Unidentified Staff# +26126#Unidentified Staff# +26127#Unidentified Staff# +26129#Unidentified Staff# +26130#Unidentified Staff# +26131#Unidentified Staff# +26132#Unidentified Staff# +26133#Unidentified Staff# +26134#Unidentified Staff# +26135#Unidentified Staff# +26136#Unidentified Staff# +26137#Unidentified Staff# +26138#Wand of Flame# +26139#Wand of Ice# +26140#Unidentified Staff# +26141#Unidentified Staff# +26143#Unidentified Staff# +26144#Unidentified Staff# +26149#Unidentified Staff# +26150#Unidentified Staff# +26151#Rutilus Stick-OS # +26152#Unidentified Staff# +26154#Spirit Pendulum# +26155#Meowmeow Foxtail# +26156#Unidentified Staff# +26158#Unidentified Staff# +26159#Unidentified Staff# +26160#Unidentified Staff# +26161#Unidentified Staff# +26162#Welding Wand# +26163#Unidentified Wand# +26164#Electric Fox-OS# +26165#Unidentified Staff# +26166#Unidentified Staff# +26172#Unidentified Staff# +26200#Hippie Rope# +26201#Unidentified Whip# +26202#Unidentified Whip# +26203#Unidentified Whip# +26204#Unidentified Whip# +26206#Unidentified Whip# +26212#Unidentified Whip# +26213#Unidentified Whip# +26215#Safety Whip# +26216#Unidentified Whip# +27000#Mysterious Decorative Tree Card# +27001#Gift Wrapping Chief Card# +27002#Wrapped Box Card# +27003#Factory Guard Soul Card# +27004#Ghost without Present Card# +27005#Unpacked Doll Card# +27006#Abandoned Bear Doll Card# +27007#Celine Kimi Card# +27008#Evil Eye of Amdarais Card# +27009#Evil Eye of Amdarais Card# +27010#Grudge of White Knight Card# +27011#Grudge of Khalitzburg Card# +27012#Kick Step Card# +27013#Kick & Kick Card# +27014#Green Cenere Card# +27015#Repair Robot Turbo Card# +27016#Exploration Rover Turbo Card# +27017#Scrap Robot Card# +27018#GC109 Card# +27019#DR815 Card# +27020#T W O Card# +27021#[ECO]Bricking RX1 Alma Card# +27022#[ECO]Salamander Alma Card# +27023#[ECO]Momo Alma Card# +27024#[ECO]Minnie Doe Alma Card# +27025#Lord of The Dead Card# +27026#Fire Condor Card# +27027#Fire Sandman Card# +27028#Fire Frilldora Card# +27029#Fire Golem Card# +27030#Fulbuk Card# +27031#Labyrinth Baphomet card# +27032#Labyrinth Dracula Card# +27033#Immortal Cursed Knight Card# +27034#Immortal Wind Ghost Card# +27035#S.J Ernest Wolf Card# +27036#Powerful Skeleton Card# +27037#Powerful Archer Skeleton Card# +27038#Powerful Soldier Skeleton Card# +27039#Powerful Amdarais Card# +27040#Bijou Card# +27041#Immortal Corps Card# +27042#Watcher Card# +27043#Tappy Card# +27044#Frozen Wolf Card# +27045#Zombie Guard Card# +27046#Virgo# +27047#Piece of Virgo# +27048#Leo# +27049#Piece of Leo# +27050#Sky Petite & Penomena Card# +27051#Anubis & Teddy Bear Card# +27052#Orc Warrior & Rafflesia Card# +27053#Arnoldi & Bigfoot Card# +27054#Khalitzburg & Thara Frog Card# +27055#Sorcerer Celia(MVP) Card# +27056#Sura Chen(MVP) Card# +27057#Minstrel Alphoccio(MVP) Card# +27058#Guillotine Cross Eremes(MVP) Card# +27059#Archbishop Margaretha(MVP) Card# +27060#Ranger Shecil(MVP) Card# +27061#Mechanic Harword(MVP) Card# +27062#Warlock Kathryne(MVP) Card# +27063#Rune Knight Seyren(MVP) Card# +27064#Royal Guard Randel(MVP) Card# +27065#Genetic Flamel(MVP) Card# +27066#Shadow Chaser Gertie(MVP) Card# +27067#Wanderer Trentini(MVP) Card# +27068#Guillotine Cross Eremes Card (jRO)# +27069#Archbishop Margaretha Card (jRO)# +27070#Warlock Kathryne Card (jRO)# +27071#Ranger Shecil Card (jRO)# +27072#Mechanic Harword Card (jRO)# +27073#Rune Knight Seyren Card (jRO)# +27074#Royal Guard Randel Card (jRO)# +27075#Genetic Flamel Card (jRO)# +27076#Sorcerer Celia Card (jRO)# +27077#Sura Chen Card (jRO)# +27078#Shadow Chaser Gertie Card (jRO)# +27079#Wanderer Trentini Card (jRO)# +27080#Minstrel Alphoccio Card (jRO)# +27081#Furious Moonlight Flower Card# +27082#Furious Nine Tails Card# +27083#Hollow Bongun Card# +27084#Hollow Sohee Card# +27085#Hollow Munak Card# +27086#Hollow Archer Skeleton Card# +27087#Wizard of Veritas Card# +27088#Furious Hero Card# +27089#T W O Card# +27090#DR815 Card# +27091#GC109 Card# +27092#Charleston No.3 Card# +27093#Kick Step Card# +27094#Rock Step Card# +27095#Step Card# +27096#Kick and Kick Card# +27097#Green Cenere Card# +27098#Repair Robot Turbo Card# +27099#Exploration Rover Robot Card# +27100#Scrap Robot Card# +27101#Sweet Nightmare Card# +27102#Matt Drainliar Card# +27103#Restless Dead Card# +27104#Furious Dracula Card# +27105#Bomi Card# +27106#Awaken Pere Card# +27107#Playing Pere Card# +27108#Singing Pere Card# +27109#Jitterbug Card# +27110#Furious Gazeti Card# +27111#Furious Snowier Card# +27112#Furious Ice Titan Card# +27113#Awaken Ktullanux Card# +27114#Ominous Solider Card# +27115#Ominous Permeter Card# +27116#Ominous Heater Card# +27117#Ominous Assaulter Card# +27118#Ominous Freezer Card# +27119#Ominous Turtle General Card# +27120#Iara Card# +27121#Piranha Card# +27122#Curupira Card# +27123#Toucan Card# +27124#Jaguar Card# +27125#Headless Mule Card# +27126#Boitata Card# +27127#Ancient King Groza Card# +27128#Deep Ancient King Groza Card# +27129#Justice Card# +27130#The Star Card# +27131#Temperance Card# +27132#The Chariot Card# +27133#Death Card# +27134#The Hermit Card# +27135#The Emperor Card# +27136#The Moon Card# +27137#The Lovers Card# +27138#The Hierophant Card# +27139#The Devil Card# +27140#Strength Card# +27141#Heart Hunter Evil Card# +27142#Heart Hunter Card# +27143#Venom Kimera Card# +27144#Matter Kimera Card# +27145#Human Kimera Card# +27146#Cutie Card# +27147#Humanoid Chimera Card# +27148#Material Chimera Card# +27149#Heart Hunter Card# +27150#Venom Enchanted Chimera Card# +27151#Evil Card# +27152#Cutie Card# +27155#Cancer# +27156#Taurus# +27157#Wood Goblin Card# +27158#Les Card# +27159#Uzhas Card# +27160#Vavayaga Card# +27161#Mavka Card# +27162#Gopinich Card# +27163#Faceworm Card# +27164#Faceworm Queen Card# +27165#Dark Faceworm Card# +27166#Faceworm Egg Card# +27167#Faceworm Larva Card# +27168#Elder Irene Card# +27169#Payon Soldier Card# +27170#Shotgun Buffalo Bandit Card# +27171#Revolver Buffalo Bandit Card# +27172#Scimitar Buffalo Bandit Card# +27173#Elite Shotgun Buffalo Bandit Card# +27174#Elite Revolver Buffalo Bandit Card# +27175#Elite Scimitar Buffalo Bandit Card# +27176#Brown Rat Card# +27177#Marsh Arclouse Card# +27178#Gaster Card# +27179#Coyote Card# +27180#Spider Tank Card# +27181#Airship Raid Card# +27182#Captain Ferlock Card# +27183#Gigantes Card# +27184#Knight Sakray Card# +27185#Round Rider Card# +27186#Side Rider Card# +27187#Blade Rider Card# +27188#Top Round Rider Card# +27189#Top Side Rider Card# +27190#Coyote Card (jRO)# +27191#Gaster Card (jRO)# +27192#Top Blade Rider Card# +27194#Crab Baraus Card# +27195#Plasma Rat Card# +27196#Nihil M. Heine Card# +27197#Agnes Roegenburgs Card# +27198#Juergen Wigner Card# +27199#Spica Nerious Card# +27200#Nihil Card# +27201#Agnes Card# +27202#Juergen Card# +27203#Spica Card# +27204#Gemini Card# +27205#Sagittarius# +27209#Sealed Queen Scaraba Card# +27211#Sealed Baphomet Card# +27212#Sealed Maya Card# +27213#Sealed Clown Card# +27214#Sealed Professor Card# +27215#Sealed Champion Card# +27216#Sealed Creator Card# +27217#Sealed Stalker Card# +27218#Sealed Paladin Card# +27219#Sealed Gypsy Card# +27220#Sealed General Daehyon Card# +27221#Sealed Gioia Card# +27222#Sealed Fallen Pyuriel Card# +27223#Eggring Card# +27224#Sealed Guardian Kades Card# +27225#Sealed Time Holder Card# +27226#Scout Basilisk Card (jRO)# +27227#Charge Basilisk Card (jRO)# +27228#Big Eggring Card (jRO)# +27229#Leaf Lunatic Card (jRO)# +27230#Grass Fabre Card (jRO)# +27231#Wild Hornet Card (jRO)# +27232#Sweet Roda Frog Card (jRO)# +27233#Hunter Wolf Card (jRO)# +27234#Trance Spore Card (jRO)# +27235#Jungle Mandragora Card (jRO)# +27236#Fruit Pom Spider Card (jRO)# +27237#Face Worm Queen Card (jRO)# +27238#Face Worm Card (jRO)# +27239#Dark Face Worm Card (jRO)# +27240#Face Worm Egg Card (jRO)# +27241#Face Worm Larva Card (jRO)# +27242#Great Elder Irene Card (jRO)# +27243#Payon Soldier & Payon Patrol Card (jRO)# +27244#Pere & Kiss Me Pere Card (jRO)# +27245#Sing Pere & Swing Pere Card (jRO)# +27246#Jitterbug Card (jRO)# +27247#fff Jitterbug Card (jRO)# +27248#Sarah's Phantom Card (jRO)# +27249#Arhi Card# +27250#Dio Anemos Card# +27251#Geffen Gangster Card# +27252#Geffen Bully Card# +27253#Geffen Shoplifter Card# +27254#Paiement Card# +27255#Ordre Card# +27256#Brute Haase Card# +27257#Kuro Akuma Card# +27258#Ipodus Card# +27259#Licheniyes Card# +27260#Odoric Card# +27261#Ju Card# +27262#Dwigh Card# +27263#Fei Kanavian Card# +27264#Evil Shadow Card# +27265#Evil Fanatic Card# +27286#Colorful Teddy Bear Card# +27287#Shiny Teddy Bear Card# +27288#Miner Pitman Card# +27289#Soul Fragment Card# +27290#Vicious Enchanted Obsidian Card# +27291#Ancient Tri Joint Card# +27292#Ancient Stalactic Golem Card# +27293#Ancient Megalith Card# +27294#Ancient Taogun Ka Card# +27295#Ancient Stone Shooter Card# +27296#Ancient Wootan Shooter Card# +27297#Ancient Wootan Fighter Card# +27298#Ancient Wootan Defender Card# +27299#Surpentarius# +27300#Aquarius# +27301#Labyrinth Doppelganger Card# +27302#Libra# +27303#Scorpio# +27304#EA2S Card# +27305#EL A17T Card# +27306#Bellare Card# +27307#Greater Bellare Card# +27308#Sanare Card# +27309#Greater Sanare Card# +27310#Plaga Card# +27311#Variant Plaga Card# +27312#Dolor Card# +27313#Variant Dolor Card# +27314#Venenum Card# +27315#Variant Venenum Card# +27316#Twin Caput Card# +27317#Variant Twin Caput Card# +27318#Miguel Card# +27319#R48-85-BESTIA Card# +27320#E-EA1L Card# +27321#Despair God Morocc Card# +27322#Demon God's Apostle Ahat Card# +27323#Demon God's Apostle Shinaim Card# +27324#Brinaranea Card# +27325#Muspellskoll Card# +27326#Morocc's Servant Card# +27327#Grim Reaper Ankou Card# +27328#Fallen One Card# +27329#Curse Eater King Card# +27330#Kronecker Card# +27331#Kronecker G. Heine Card# +27332#Skier Card# +27333#Skia Nerious Card# +27334#Chaos Baphomet Card# +27335#Chaos Baphomet Jr. Card# +27336#Chaos Sidewinder Card# +27337#Chaos Hunter Fly Card# +27338#Chaos Mantis Card# +27339#Chaos Ghostring Card# +27340#Chaos Killer Mantis Card# +27341#Chaos Poporing Card# +27342#Chaos Stem Worm Card# +27343#Chaos Acolyte Card# +27346#Rigid Muspellskoll Card# +27347#Rigid Kaho Card# +27348#Rigid Lava Golem Card# +27349#Rigid Explosion Card# +27350#Rigid Earth Deleter Card# +27351#Rigid Sky Deleter Card# +27352#Rigid Nightmare Terror Card# +27353#Rigid Blazer Card# +27354#Contaminated Raydric Card# +27355#Contaminated Raydric Archer Card# +27356#Frozen Gargoyle Card# +27357#Contaminated Sting Card# +27358#Prison Breaker Card# +27359#Ice Ghost Card# +27360#Flame Ghost Card# +27361#Contaminated Wanderer Card# +27362#Contaminated Spider Queen Card# +27363#Contaminated Dark Lord Card# +27364#The Fool Card# +27365#Wheel of Fortune Card# +27366#The Hanged Man Card# +27367#World Card# +27381#Himelmez's Phantom Card# +27382#Prime Corruption Root Card# +27383#Amdarais's Phantom Card# +27384#Mutated White Knight Card# +27385#Mutated Khalitzburg Card# +27386#Cursed Raydric Card# +27387#Cursed Raydric Archer Card# +27388#Cursed Servant Card# +27393#Kathryne Card# +27394#Kathryne Wigner Card# +27395#Isaac Card# +27396#Isaac Wagner Card# +28000#Thanatos Katar# +28001#Evil Slayer Ripper Katar# +28003#Unidentified Katar# +28004#Unidentified Katar# +28005#Ru Blue Katar# +28006#Ru Gold Katar# +28007#Crimson Katar# +28008#Vicious Mind Katar# +28009#Unidentified Katar# +28010#Juliette D Rachel# +28011#Unidentified Katar# +28012#Unidentified Katar# +28013#Unidentified Katar# +28014#Unidentified Katar# +28015#Unidentified Katar# +28016#Unidentified Katar# +28017#Unidentified Katar# +28018#Unidentified Katar# +28019#Unidentified Katar# +28020#Unidentified Katar# +28021#Unidentified Katar# +28022#Illusion Infiltrator# +28023#Illusion Sharpened Legbone of Ghoul# +28024#Unidentified Katar# +28026#Unidentified Katar# +28027#Unidentified Katar# +28033#Unidentified Katar# +28037#Unidentified Katar# +28038#Meuchler-OS# +28039#Katar of Shiver# +28040#Unidentified Katar# +28042#Unidentified Katar# +28044#Unidentified Katar# +28045#Bolt Crusher# +28046#Unidentified Katar# +28100#Thanatos Axe# +28101#Tornado Axe# +28103#Ru Blue Axe M# +28104#Ru Gold Axe M# +28105#Unidentified Axe# +28106#Crimson Twohand Axe# +28107#Vicious Mind Two-Handed Axe# +28108#Unidentified Axe# +28109#Unidentified Axe# +28110#Unidentified Axe# +28111#Unidentified Axe# +28112#Unidentified Axe# +28113#Unidentified Axe# +28114#Unidentified Axe# +28115#Unidentified Axe# +28116#Mine Worker's Pickaxe# +28117#Unidentified Axe# +28118#Unidentified Axe# +28119#Unidentified Axe# +28120#Unidentified Axe# +28121#Unidentified Axe# +28122#Unidentified Axe# +28127#Unidentified Axe# +28130#Avenger# +28135#Unidentified Axe# +28136#Blasti-OS# +28137#Unidentified Axe# +28138#Unidentified Axe# +28140#Saw Axe# +28141#Unidentified Axe# +28200#End of Horizon# +28201#Southern Cross# +28202#Southern Cross# +28205#Unidentified Rifle# +28206#Unidentified Rifle# +28207#Unidentified Gatling Gun# +28208#Unidentified Gatling Gun# +28209#Unidentified Shotgun# +28210#Unidentified Shotgun# +28211#Unidentified Shotgun# +28212#Unidentified Grenade Launcher# +28213#Unidentified Grenade Launcher# +28214#Unidentified Rifle# +28215#Probation Rifle# +28216#Probation Gatling Gun# +28217#Probation Grenade Launcher# +28218#Probation Shotgun# +28219#Unidentified Rifle# +28220#Unidentified Gatling Gun# +28221#Unidentified Shotgun# +28222#Unidentified Grenade Launcher# +28223#Finisher# +28224#Dustfire# +28225#Burning Rose# +28226#Avenger# +28227#Unidentified Rifle# +28228#Unidentified Rifle# +28229#Unidentified Gatling Gun# +28230#Unidentified Gatling Gun# +28231#Unidentified Grenade Launcher# +28232#Unidentified Grenade Launcher# +28233#Unidentified Shotgun# +28234#Unidentified Shotgun# +28235#Unidentified Rifle# +28240#Unidentified Rifle# +28241#Unidentified Gatling Gun# +28242#Unidentified Shotgun# +28243#Unidentified Grenade Launcher# +28244#Unidentified Shotgun# +28245#Unidentified Rifle# +28246#Unidentified Gatling Gun# +28247#Unidentified Shotgun# +28248#Unidentified Grenade Launcher# +28249#Unidentified Rifle# +28250#Unidentified Gatling Gun# +28251#Unidentified Shotgun# +28252#Unidentified Grenade Launcher# +28253#HR-S55-OS# +28254#Unidentified Gatling Gun# +28255#Master Soul Rifle# +28256#Demon Slayer Shot Gun# +28257#Golden Rod Launcher# +28258#Avengers Gattling Gun# +28300#Unidentified Accessory# +28301#Unidentified Accessory# +28302#Unidentified Accessory# +28303#Vesper Core 02# +28304#Unidentified Accessory# +28305#Vesper Core 04# +28306#Unidentified Accessory# +28307#Unidentified Accessory# +28308#Unidentified Accessory# +28309#Unidentified Accessory# +28310#Sarah's Left Earring# +28311#Sarah's Right Earring# +28312#Unidentified Accessory# +28313#Unidentified Accessory# +28314#Unidentified Accessory# +28319#Cauda Daemonica# +28320#Assassin's Despair# +28321#Unidentified Accessory# +28322#Unidentified Accessory# +28323#Unidentified Accessory# +28324#Steam Starter Ring# +28325#Unidentified Accessory# +28326#Broken Chip 01# +28327#Broken Chip 02# +28328#Unidentified Accessory# +28329#Unidentified Accessory# +28332#Jewelry Ring# +28333#Unidentified Accessory# +28334#Unidentified Accessory# +28335#Unidentified Accessory# +28336#Unidentified Accessory# +28337#Unidentified Accessory# +28338#Unidentified Accessory# +28339#Unidentified Accessory# +28340#Unidentified Accessory# +28341#Unidentified Accessory# +28342#Critical Anklet# +28346#Unidentified Accessory# +28347#Unidentified Accessory# +28348#Unidentified Accessory# +28349#Unidentified Accessory# +28350#Unidentified Accessory# +28351#Unidentified Accessory# +28352#Unidentified Accessory# +28353#Vesper Gear 02# +28354#City Map# +28355#Shining Holy Water# +28356#Prontera Badge# +28357#Unidentified Accessory# +28358#Cursed Lucky Clover# +28359#Vesper Gear 04# +28360#Unidentified Accessory# +28361#Unidentified Accessory# +28362#Unidentified Accessory# +28363#Unidentified Accessory# +28364#Unidentified Accessory# +28365#Unidentified Accessory# +28366#Unidentified Accessory# +28367#Unidentified Accessory# +28368#Unidentified Accessory# +28369#Unidentified Accessory# +28370#Unidentified Accessory# +28371#Unidentified Accessory# +28372#Imperial Ring# +28373#Unidentified Accessory# +28374#Foxtail Ring# +28375#Unidentified Accessory# +28376#Unidentified Accessory# +28377#Magical Ring# +28378#Unidentified Accessory# +28379#Shadow Ring# +28380#Fresh Grass Necklace# +28381#Cute Grass Necklace# +28382#Charming Grass Necklace# +28383#Unidentified Accessory# +28384#Unidentified Accessory# +28385#Unidentified Accessory# +28386#Fallen Monk Rosary# +28387#Bishop Necklace# +28388#Unidentified Accessory# +28389#Unidentified Accessory# +28390#Unidentified Accessory# +28391#Thief Earring Shadow# +28392#Archer Earring Shadow# +28393#Unidentified Accessory# +28394#Spirit King's Ring# +28395#Unidentified Accessory# +28396#Unidentified Accessory# +28397#Unidentified Accessory# +28398#Unidentified Accessory# +28399#Unidentified Accessory# +28400#Unidentified Accessory# +28401#Unidentified Accessory# +28402#Unidentified Accessory# +28403#Unidentified Accessory# +28404#Unidentified Accessory# +28405#Unidentified Accessory# +28406#Unidentified Accessory# +28407#Unidentified Accessory# +28410#Sapphire Wrist# +28411#Emerald Earrings# +28412#Unidentified Accessory# +28413#Basic Saurel Charm# +28414#Fair Saurel Charm# +28415#Advanced Saurel Charm# +28416#Basic Leaf Charm# +28417#Fair Leaf Charm# +28418#Advanced Leaf Charm# +28419#Basic Bunny Charm# +28420#Fair Bunny Charm# +28421#Advanced Bunny Charm# +28422#Shining Branch Charm# +28423#Fresh Tuna Charm# +28424#Plump Earthworm Charm# +28425#Mercenary Ring Type A# +28426#Mercenary Ring Type B# +28427#Unidentified Accessory# +28428#Unidentified Accessory# +28429#Arquien's Necklace# +28430#Arch Bishop Ring# +28431#Unidentified Accessory# +28432#Unidentified Accessory# +28433#Luminous Blue Stone# +28434#Boxing Gloves# +28435#Unidentified Accessory# +28436#Unidentified Accessory# +28437#Hibram's Gloves# +28438#Fairy Leaf Powder# +28439#Unidentified Accessory# +28440#Unidentified Accessory# +28441#Vigilante Badge# +28442#Hippie Feather# +28443#Unidentified Accessory# +28444#[Event] Genesis Necklace I# +28445#Unidentified Accessory# +28446#Unidentified Accessory# +28447#Unidentified Accessory# +28448#Unidentified Accessory# +28449#Unidentified Accessory# +28450#Unidentified Accessory# +28451#Unidentified Accessory# +28452#Unidentified Accessory# +28453#Unidentified Accessory# +28454#Unidentified Accessory# +28455#Unidentified Accessory# +28456#Unidentified Accessory# +28457#Unidentified Accessory# +28458#Unidentified Accessory# +28459#Unidentified Accessory# +28460#Unidentified Accessory# +28461#Unidentified Accessory# +28462#Unidentified Accessory# +28463#Unidentified Accessory# +28464#Unidentified Accessory# +28465#Unidentified Accessory# +28466#Unidentified Accessory# +28467#Unidentified Accessory# +28468#Unidentified Accessory# +28469#Unidentified Accessory# +28470#Unidentified Accessory# +28471#Unidentified Accessory# +28472#Unidentified Accessory# +28473#Unidentified Accessory# +28474#Unidentified Accessory# +28475#Unidentified Accessory# +28476#Unidentified Accessory# +28477#Unidentified Accessory# +28478#Unidentified Accessory# +28479#Unidentified Accessory# +28480#Unidentified Accessory# +28481#Unidentified Accessory# +28482#Unidentified Accessory# +28483#Royal Guardian Ring# +28484#Rebellion's Scarf# +28485#Shinobi Sash H# +28486#Unidentified Accessory# +28487#Unidentified Accessory# +28488#Unidentified Accessory# +28489#Unidentified Accessory# +28490#Unidentified Accessory# +28491#Hunting Knife# +28492#Thieves' Guide Vol. 1# +28494#Unidentified Accessory# +28495#Sheriff's Left Badge# +28496#Sheriff's Right Badge# +28497#Unidentified Accessory# +28498#Unidentified Accessory# +28499#Unidentified Accessory# +28500#Unidentified Accessory# +28501#Kirin Horn# +28502#Mob Scarf# +28503#Keraunos# +28504#Unidentified Accessory# +28505#Demon God's Ring# +28506#Storm Stone# +28507#Magician's Gloves# +28508#Illusion Skull Ring# +28509#Illusion Ring# +28510#Vampire's Familiar# +28511#Unidentified Accessory# +28513#Celine's Brooch# +28514#Unidentified Accessory# +28517#Unidentified Accessory# +28518#Unidentified Accessory# +28519#Unidentified Accessory# +28520#Egir Ring# +28521#Giant's Protection# +28522#Ring_Of_Fallen# +28523#Ring_Of_Disaster# +28524#Unidentified Accessory# +28525#Unidentified Accessory# +28526#Unidentified Accessory# +28527#Unidentified Accessory# +28528#Unidentified Accessory# +28529#Unidentified Accessory# +28530#Unidentified Accessory# +28531#Blacksmith's Gloves# +28533#Chemical Glove# +28534#Unidentified Accessory# +28535#Unidentified Accessory# +28550#Unidentified Accessory# +28551#Imperial Glove# +28552#Unidentified Accessory# +28554#Unidentified Accessory# +28555#Unidentified Accessory# +28556#Unidentified Accessory# +28557#Unidentified Accessory# +28560#Yin Yang Talisman# +28561#Ring of Hero# +28562#True Hunting Ring# +28563#True Hunting Magical Ring# +28564#Valkyrie Drop# +28565#Perverse Demon Mask # +28566#Unidentified Accessory# +28573#Emerald Ring# +28575#Verus Core# +28576#Unidentified Accessory# +28577#Unidentified Accessory# +28578#Unidentified Accessory# +28579#Unidentified Accessory# +28580#Unidentified Accessory# +28581#Unidentified Accessory# +28582#Unidentified Accessory# +28583#Unidentified Accessory# +28584#Unidentified Accessory# +28585#Unidentified Accessory# +28586#Unidentified Accessory# +28587#Unidentified Accessory# +28588#Unidentified Accessory# +28589#Unidentified Accessory# +28590#Unidentified Accessory# +28591#Unidentified Accessory# +28592#Angel Forging Earrings# +28593#Angel Forging Earrings# +28594#Temporal Ring# +28596#Toy Ring # +28597#Clip# +28598#Supplemental Chip# +28600#Ru Blue Book# +28601#Ru Gold Book# +28602#Unidentified Book# +28603#Unidentified Book# +28604#Crimson Bible# +28605#Vicious Mind Book# +28606#Unidentified Book# +28607#Unidentified Book# +28608#Elemental Origin# +28609#Unidentified Book# +28610#Unidentified Book# +28611#Unidentified Book# +28612#Illusion Book of the Apocalypse# +28613#Unidentified Book# +28614#Unidentified Book# +28615#Unidentified Book# +28616#Unidentified Book# +28618#Book of the Sun God# +28619#Prisoner Diary# +28626#Unidentified Book# +28627#Unidentified Book# +28629#Circuit Board-OS # +28630#Exoricist's Bible# +28631#One Sky One Sun# +28632#Unidentified Book# +28633#Unidentified Book# +28635#Safety Manual# +28636#Unidentified Book# +28700#Ru Gold Dagger# +28701#Ru Gold Knife# +28702#Ru Gold Ashura# +28703#Unidentified Dagger# +28704#Unidentified Dagger# +28705#Crimson Dagger# +28706#Vicious Mind Dagger# +28707#Unidentified Dagger# +28708#Unidentified Dagger# +28709#Unidentified Dagger# +28710#Unidentified Dagger# +28711#Unidentified Dagger# +28712#Unidentified Dagger# +28713#Unidentified Dagger# +28714#Unidentified Dagger# +28715#Unidentified Dagger# +28716#Unidentified Dagger# +28717#Valkyrie Knife# +28718#Unidentified Dagger# +28719#Unidentified Dagger# +28720#Unidentified Dagger# +28721#Monokage# +28722#Unidentified Dagger# +28723#Unidentified Dagger# +28724#Unidentified Dagger# +28725#Illusion Moonlight Dagger# +28726#Unidentified Dagger# +28727#Unidentified Dagger# +28737#Unidentified Dagger# +28738#Unidentified Dagger# +28740#Unidentified Dagger# +28744#Magic Sword# +28745#Unidentified Dagger# +28746#Unidentified Dagger# +28753#Unidentified Dagger# +28755#Kuroiro-OS# +28759#Unidentified Dagger# +28762#Unidentified Dagger# +28763#Sharp Wind Sword# +28764#Fog Dew Sword# +28765#Unidentified Dagger# +28766#Unidentified Dagger# +28767#Unidentified Dagger# +28768#Unidentified Dagger# +28771#Metal Detector Mk47# +28772#Jewel Detector Mk47# +28774#Unidentified Dagger# +28775#Unidentified Dagger# +28776#Unidentified Dagger# +28900#Royal Guard Shield# +28901#Mad Bunny Special# +28902#Mad Bunny Special# +28903#Scutum# +28904#Unidentified Shield# +28905#Unidentified Shield# +28906#Unidentified Shield# +28907#Unidentified Shield# +28908#Unidentified Shield# +28909#Unidentified Shield# +28910#Imuke Upper Shield# +28911#Unidentified Shield# +28912#Unidentified Shield# +28913#Ultralight Magic Shield# +28914#Unidentified Shield# +28915#Unidentified Shield# +28916#Gaia Shield# +28917#Unidentified Shield# +28918#Shield Of Chaos# +28919#Unidentified Shield# +28920#Unidentified Shield# +28921#Anemos Shield# +28922#Illusion Sacred Mission# +28927#Unidentified Shield# +28928#Unidentified Shield# +28929#Happy Shield# +28930#Mad Bunny Guard# +28931#Mad Bunny Buckler# +28932#Mad Bunny Shield# +28940#Unidentified Shield# +28941#Excelion Shield# +28942#Cursed Knight's Shield# +28943#Unidentified Shield# +28945#Bloody Knight's Shield# +28946#Purified Knight's Shield# +28948#Unidentified Shield# +28950#Unidentified Shield# +28951#Nero Shield# +28953#Unidentified Shield# +28956## +29000#Neev of INT Lv1# +29001#Neev of INT Lv2# +29002#Neev of INT Lv3# +29003#Neev of DEX Lv1# +29004#Neev of DEX Lv2# +29005#Neev of DEX Lv3# +29006#Neev of LUK Lv1# +29007#Neev of LUK Lv2# +29008#Neev of LUK Lv3# +29009#Neev of VIT Lv1# +29010#Neev of VIT Lv2# +29011#Neev of VIT Lv3# +29012#High Level# +29013#HPAbsorb3# +29014#STR+3 INT-3# +29015#STR+3 DEX-3# +29016#INT+3 DEX-3# +29017#INT+3 VIT-3# +29018#DEX+3 VIT-3# +29019#DEX+3 AGI-3# +29020#VIT+3 AGI-3# +29021#VIT+3 LUK-3# +29022#AGI+3 LUK-3# +29023#AGI+3 STR-3# +29024#LUK+3 STR-3# +29025#LUK+3 INT-3# +29026#DEF+20# +29027#EXP+2%# +29028#ATK+1%# +29029#ATK+1%(Lower)# +29030#MATK+1%# +29031#MATK+1%(Lower)# +29032#SPAbsorb1# +29033#MDEF+4# +29040#Ghost Effect# +29041#Twinkle Effect# +29042#Energy# +29043#Energy# +29044#Energy# +29045#Hayate# +29046#Greed# +29047#Fatal# +29048#Expert Archer# +29049#HP+100# +29050#SP+50# +29051#Detoxify# +29052#Recovery# +29053#After Skill Delay1 Upper# +29054#After Skill Delay1 Middle# +29055#After Skill Delay1 Lower# +29056#Decreases Fixed Cast# +29057#Kyrie Eleison# +29058#Phantom Pearl of Flying Dragon# +29059#Phantom Pearl of Great Wave Breath Flute# +29060#Phantom Pearl of Universe Origin# +29061#Mettle Lv1# +29062#Mettle Lv2# +29063#Mettle Lv3# +29064#Mettle Lv4# +29065#Mettle Lv5# +29066#Mettle Lv6# +29067#Mettle Lv7# +29068#Mettle Lv8# +29069#Mettle Lv9# +29070#Mettle Lv10# +29071#Magic Essence Lv1# +29072#Magic Essence Lv2# +29073#Magic Essence Lv3# +29074#Magic Essence Lv4# +29075#Magic Essence Lv5# +29076#Magic Essence Lv6# +29077#Magic Essence Lv7# +29078#Magic Essence Lv8# +29079#Magic Essence Lv9# +29080#Magic Essence Lv10# +29081#Acute Lv1# +29082#Acute Lv2# +29083#Acute Lv3# +29084#Acute Lv4# +29085#Acute Lv5# +29086#Acute Lv6# +29087#Acute Lv7# +29088#Acute Lv8# +29089#Acute Lv9# +29090#Acute Lv10# +29091#Master Archer Lv1# +29092#Master Archer Lv2# +29093#Master Archer Lv3# +29094#Master Archer Lv4# +29095#Master Archer Lv5# +29096#Master Archer Lv6# +29097#Master Archer Lv7# +29098#Master Archer Lv8# +29099#Master Archer Lv9# +29100#Master Archer Lv10# +29101#Adamantine Lv1# +29102#Adamantine Lv2# +29103#Adamantine Lv3# +29104#Adamantine Lv4# +29105#Adamantine Lv5# +29106#Adamantine Lv6# +29107#Adamantine Lv7# +29108#Adamantine Lv8# +29109#Adamantinend Lv9# +29110#Adamantine Lv10# +29111#Affection Lv1# +29112#Affection Lv2# +29113#Affection Lv3# +29114#Affection Lv4# +29115#Affection Lv5# +29116#Affection Lv6# +29117#Affection Lv7# +29118#Affection Lv8# +29119#Affection Lv9# +29120#Affection Lv10# +29121#Goddess of Justice A# +29122#Goddess of Justice S# +29123#Goddess of Mercy A# +29124#Goddess of Mercy S# +29125#Goddess of Insight A# +29126#Goddess of Insight S# +29127## +29128## +29129## +29130## +29131## +29132## +29133## +29134#Vicious Mind of Champion# +29135#Sharp Lv1# +29136#Sharp Lv2# +29137#Sharp Lv3# +29138#Sharp Lv4# +29139#Sharp Lv5# +29140#Anger of The Brave# +29141#Roar of Witch# +29142#Electric Effect# +29143#Green Flare Effect# +29144#Shrink Effect# +29145#Experience+2%# +29146#Item Appraisal# +29147#Ressurection# +29148#Leo Stone# +29149#Pisces Stone# +29150#Capricorn Stone# +29151#Aquarius Stone# +29152#Scorpio Stone# +29153#Taurus Stone# +29154#Minor Reduces Fixed Cast# +29155#Lex Aeterna# +29156#Decreases Variable Cast# +29157#Decreases Variable Cast# +29158#Decreases Variable Cast# +29159#Experience+2%# +29160#Blue Aura Effect# +29161#Pink Glow Effect# +29162#Shadow Effect# +29166#A-Tolerance# +29167#A-Hit# +29168#A-Flee# +29169#A-Mdef# +29170#S-Atk# +29171#S-Matk# +29172#S-Avoid# +29173#S-MaxHP# +29174#S-Quick# +29175#S-Cri# +29176#Tenchi# +29177#Dream Blessing1# +29178#Dream Blessing2# +29179#Dream Blessing3# +29180#Dream Blessing4# +29181#Dream Blessing5# +29182#Lethal Frame# +29183#Lethal Undead# +29184#Lethal Beast# +29185#Lethal Plant# +29186#Lethal Insect# +29187#Lethal Fish# +29188#Lethal Demon# +29189#Lethal Human# +29190#Lethal Angel# +29191#Lethal Dragon# +29192#Mortal Normal# +29193#Mortal Water# +29194#Mortal Ground# +29195#Mortal Flame# +29196#Mortal Wind# +29197#Mortal Poison# +29198#Mortal Saint# +29199#Mortal Evil# +29200#Mortal Telekinesis# +29201#Mortal Undead# +29202#Fatal Small# +29203#Fatal Medium# +29204#Fatal Large# +29205#Fatal Nemesis# +29206#Bullseye# +29207#Life Drain# +29208#SPabsorp2# +29209#SPabsorp2# +29210#HPabsorp2 3# +29211#HPabsorp2 3# +29212#HIT +3# +29213#HIT +6# +29214#Burn# +29215#Gale# +29216#Flood# +29217#Clay# +29218#Grudge# +29219#Ua# +29220#Venom# +29221#Desperia# +29222#Sacred# +29223#Suiten# +29224#White Body Effect# +29225#Water Field Effect# +29226#Crimson Wave Effect# +29227#Heal# +29228#Steal# +29229#Teleport# +29230#[ECO]Taini Alma Card# +29231#Energy# +29232#Energy# +29233#Energy# +29234#Energy# +29235#Perfect Dodge+1# +29236#Perfect Dodge+2# +29237#Flee+5# +29238#Flee+10# +29239#HIT+5# +29240#Hit+10# +29241#Cri+10# +29242#Indestructible(Armor)# +29243#Uninterruptable Cast# +29244#PlayerResistance+1%# +29245#PlayerResistance+2%# +29246#PlayerResistance+3%# +29247#PlayerResistance+4%# +29248#PlayerResistance+5%# +29249#Neev of Comfort(Vitality)# +29250#Neev of Comfort(Spirit)# +29251#Neev of Comfort(Life)# +29252#Neev of Comfort(Intelligence)# +29253#Neev of Eternal(Fire)# +29254#Neev of Eternal(Water)# +29255#Neev of Eternal(Wind)# +29256#Neev of Eternal(Earth)# +29257#Neev of Eternal(Shadow)# +29258#Neev of Eternal(Ghost)# +29259#Neev of Eternal(Poison)# +29260#Neev of Wound(Formless Form)# +29261#Neev of Wound(Undead Form)# +29262#Neev of Wound(Brute Form)# +29263#Neev of Wound(Plant Form)# +29264#Neev of Wound(Insect Form)# +29265#Neev of Wound(Fish Form)# +29266#Neev of Wound(Demon Form)# +29267#Neev of Wound(Demi-Human Form)# +29268#Neev of Wound(Angel Form)# +29269#Neev of Wound(Dragon Form)# +29270#Neev of Blood(Strength)# +29271#Neev of Blood(Speed)# +29272#Neev of Blood(Vitality)# +29273#Neev of Blood(Intelligence)# +29274#Neev of Blood(Concentration)# +29275#Neev of Blood(Fortune)# +29276#Neev of Honor(Speed)# +29277#Neev of Honor(Concentration)# +29278#Neev of Honor(Skill)# +29279#Neev of Death(Strength)# +29280#Neev of Death(Intelligence)# +29281#Neev of Death(Physical)# +29282#Neev of Death(Magic)# +29283#Class Reduction 80%# +29285#Ranged Physical Damage Reduction 80%# +29300#Prison# +29302#Water Element(Armor)# +29303#Wind Element(Armor)# +29304#Earth Element(Armor)# +29305#Fire Element(Armor)# +29306#Shadow Element(Armor)# +29307#Holy Element(Armor)# +29308#Undead Element(Armor)# +29309#Poison Element(Armor)# +29310#Racing(Rune Knight) Lv1# +29311#Racing(Rune Knight) Lv2# +29312#Racing(Rune Knight) Lv3# +29313#Racing(Royal Guard) Lv1# +29314#Racing(Royal Guard) Lv2# +29315#Racing(Royal Guard) Lv3# +29316#Racing(Mechanic) Lv1# +29317#Racing(Mechanic) Lv2# +29318#Racing(Mechanic) Lv3# +29319#Racing(Genetic) Lv1# +29320#Racing(Genetic) Lv2# +29321#Racing(Genetic) Lv3# +29322#Racing(Guillotine Cross) Lv1# +29323#Racing(Guillotine Cross) Lv2# +29324#Racing(Guillotine Cross) Lv3# +29325#Racing(Shadow Chaser) Lv1# +29326#Racing(Shadow Chaser) Lv2# +29327#Racing(Shadow Chaser) Lv3# +29328#Racing(Warlock) Lv1# +29329#Racing(Warlock) Lv2# +29330#Racing(Warlock) Lv3# +29331#Racing(Sorcerer) Lv1# +29332#Racing(Sorcerer) Lv2# +29333#Racing(Sorcerer) Lv3# +29334#Racing(Archbishop) Lv1# +29335#Racing(Archbishop) Lv2# +29336#Racing(Archbishop) Lv3# +29337#Racing(Sura) Lv1# +29338#Racing(Sura) Lv2# +29339#Racing(Sura) Lv3# +29340#Racing(Ranger) Lv1# +29341#Racing(Ranger) Lv2# +29342#Racing(Ranger) Lv3# +29343#Racing(Wanderer & Minstrel) Lv1# +29344#Racing(Wanderer & Minstrel) Lv2# +29345#Racing(Wanderer & Minstrel) Lv3# +29346#Racing(Gunslinger) Lv1# +29347#Racing(Gunslinger) Lv2# +29348#Racing(Gunslinger) Lv3# +29349#Racing(Ninja) Lv1# +29350#Racing(Ninja) Lv2# +29351#Racing(Ninja) Lv3# +29352#Racing(Super Novice) Lv1# +29353#Racing(Super Novice) Lv2# +29354#Racing(Super Novice) Lv3# +29355#Racing(Summoner) Lv1# +29356#Racing(Summoner) Lv2# +29357#Racing(Summoner) Lv3# +29358#Variable Cast Reduction# +29359#Fatal(Upper)# +29360#Fatal(Lower)# +29361#Fatal(Garment)# +29362#Double Attack# +29363#Burning Fire# +29366#Strong Blow1# +29367#Strong Blow2# +29368#Strong Blow3# +29369#Strong Blow4# +29370#Strong Blow5# +29371#Liberation of Truth# +29372#Fixed Casting Time - 50%# +29373#Skill Delay - 15%# +29374#SP Cost - 15%# +29375#Player Resistance6# +29376#Player Resistance7# +29377#Player Resistance8# +29378#Player Resistance9# +29379#Player Resistance10# +29380#ATK +5# +29381#MATK +5# +29382#Neev of Honor(Hit)# +29383#Neev of Honor(Flee)# +29384#Neev of Honor(Luk)# +29385#Neev of Death(Dex)# +29386#Neev of Death(Luk)# +29423#Champion Stone(Upper)# +29424#Champion Stone(Mid)# +29425#Champion Stone(Lower)# +29426#Sura Stone(Garment)# +29427#Sura Stone II(Garment)# +29428#Sniper Stone(Upper)# +29429#Sniper Stone(Mid)# +29430#Sniper Stone(Lower)# +29431#Ranger Stone(Garment)# +29432#Professor Stone(Upper)# +29433#Professor Stone(Mid)# +29434#Professor Stone(Lower)# +29435#Sorcerer Stone(Garment)# +29436#Overlord# +29437#Skill Delay - 8%# +29438#Z-Knockback# +29439#Z-Immortal# +29440#Z-Killgain# +29441#Z-Reincarnation# +29442#Z-NoDispell# +29443#Z-Clairvoyance# +29444#Z-CastFixed# +29445#Amplification 1# +29446#Amplification 2# +29447#Amplification 3# +29448#Amplification 4# +29449#Amplification 5# +29450#Lv1# +29451#Lv2# +29452#Lv3# +29453#Lv4# +29454#Lv5# +29455#Lv6# +29456#Lv7# +29457#Lv8# +29458#Lv9# +29459#Lv10# +29460#Lord Knight Stone(Upper)# +29461#Lord Knight Stone(Mid)# +29462#Lord Knight Stone(Lower)# +29463#Rune Knight Stone(Garment)# +29464#Creator Stone(Upper)# +29465#Creator Stone(Mid)# +29466#Creator Stone(Lower)# +29467#Genetic Stone(Garment)# +29468#High Wizard Stone(Upper)# +29469#High Wizard Stone(Mid)# +29470#High Wizard Stone(Lower)# +29471#Warlock Stone(Garment)# +29472## +29473## +29474## +29475## +29476## +29477#Stalker Stone(Upper)# +29478#Stalker Stone(Mid)# +29479#Stalker Stone(Lower)# +29480#Shadow Chaser Stone(Garment)# +29481#Whitesmith Stone(Upper)# +29482#Whitesmith Stone(Mid)# +29483#Whitesmith Stone(Lower)# +29484#Mechanic Stone(Garment)# +29485#Clown Gypsy Stone(Upper)# +29486#Clown Gypsy Stone(Mid)# +29487#Clown Gypsy Stone(Lower)# +29488#Wanderer Minstrel Stone(Garment)# +29509#Grand Master# +29510#Neeve of Wound(Player)# +29511#Q-Player# +29512#Titan# +29513#High Priest Stone(Upper)# +29514#High Priest Stone(Mid)# +29515#High Priest Stone(Lower)# +29516#Archbishop Stone(Garment)# +29517#Paladin Stone(Upper)# +29518#Paladin Stone(Mid)# +29519#Paladin Stone(Lower)# +29520#Royal Guard Stone(Garment)# +29521#Assassin Cross Stone(Upper)# +29522#Assassin Cross Stone(Mid)# +29523#Assassin Cross Stone(Lower)# +29524#Guillotine Cross Stone(Garment)# +29527#Modification Orb(Defense)# +29528#Modification Orb(Magic Defense)# +29529#Modification Orb(HP Recovery)# +29530#Modification Orb(Spirit)# +29531#Modification Orb(Stamina)# +29532#Modification Orb(SP Recovery)# +29533#Modification Orb(Heal)# +29534#Modification Orb(Attack Power)# +29535#Modification Orb(Magic Power)# +29536#Modification Orb(Sharpshooter)# +29537#Modification Orb(Swift)# +29538#Modification Orb(Caster)# +29539#Modification Orb(Critical)# +29540#Modification Orb(After Skill Delay)# +29541#Modification Orb(Fixed Casting Time)# +29542#Modification Orb(Above All)# +29543#Modification Orb(Life Drain)# +29544#Modification Orb(Soul Drain)# +29545#Modification Orb(Magic Healing)# +29546#Modification Orb(Magic Soul)# +29547#Modification Orb(Unlimited Vital)# +29548#Modification Orb(Spell Buster)# +29549#Modification Orb(Firing Shot)# +29550#Modification Orb(Over Power)# +29551#Modification Orb(Fatal Flash)# +29552#Modification Orb(Lucky Strike)# +29579#Racing(Star Gladiator) Lv1# +29580#Racing(Star Gladiator) Lv2# +29581#Racing(Star Gladiator) Lv3# +29582#Racing(Soul Linker) Lv1# +29583#Racing(Soul Linker) Lv2# +29584#Racing(Soul Linker) Lv3# +29585#Arcana# +29587#Flash# +29588#Power# +29589#Celestial# +29590#Divine Power# +29591#Rigid Body# +29592#Hundred Lucks# +29594#Seyren's Memory# +29595#Howard's Memory# +29596#Eremes's Memory# +29598#Catherine's Memory# +29599#Margaretha's Memory# +29600#Cecil's Memory# +29601#Randel's Memory# +29602#Flamel's Memory# +29603#Gertie's Memory# +29604#Celia's Memory# +29605#Chen's Memory# +29606#Trentini's Memory# +29607#Alphoccio Memory# +29611#Champion Stone II(Lower)# +29612#Champion Stone II(Mid)# +29613#Champion Stone II(Upper)# +29614#Sorcerer Stone II(Garment)# +29615#Professor Stone II(Lower)# +29616#Professor Stone II(Mid)# +29617#Professor Stone II(Upper)# +29618#Shadow Chaser Stone II(Garment)# +29619#Stalker Stone II(Lower)# +29620#Stalker Stone II(Mid)# +29621#Stalker Stone II(Upper)# +29651#Soul Linker Stone(Upper)# +29652#Soul Linker Stone(Mid)# +29653#Soul Linker Stone(Lower)# +29654#Soul Reaper Stone(Garment)# +29655#Star Gladiator Stone(Upper)# +29656#Star Gladiator Stone(Mid)# +29657#Star Gladiator Stone(Lower)# +29658#Star Emperor Stone(Garment)# +29659#Ninja Stone(Upper)# +29660#Ninja Stone(Mid)# +29661#Ninja Stone(Lower)# +29662#Kagerou Stone(Garment)# +29663#Oboro Stone(Garment)# +29664#Gunslinger Stone(Upper)# +29665#Gunslinger Stone(Mid)# +29666#Gunslinger Stone(Lower)# +29667#Rebellion Stone(Garment)# +29668#Doram Stone(Upper)# +29669#Doram Stone(Mid)# +29670#Doram Stone(Lower)# +29671#Doram Stone(Garment)# +29672#Temporal Jewel (STR) Lv 1# +29673#Temporal Jewel (STR) Lv 2# +29674#Temporal Jewel (STR) Lv 3# +29675#Temporal Jewel (AGI) Lv 1# +29676#Temporal Jewel (AGI) Lv 2# +29677#Temporal Jewel (AGI) Lv 3# +29678#Temporal Jewel (VIT) Lv 1# +29679#Temporal Jewel (VIT) Lv 2# +29680#Temporal Jewel (VIT) Lv 3# +29681#Temporal Jewel (INT) Lv 1# +29682#Temporal Jewel (INT) Lv 2# +29683#Temporal Jewel (INT) Lv 3# +29684#Temporal Jewel (DEX) Lv 1# +29685#Temporal Jewel (DEX) Lv 2# +29686#Temporal Jewel (DEX) Lv 3# +29687#Temporal Jewel (LUK) Lv 1# +29688#Temporal Jewel (LUK) Lv 2# +29689#Temporal Jewel (LUK) Lv 3# +29706#Unyielding Lv1# +29707#Unyielding Lv2# +29708#Unyielding Lv3# +29709#Unyielding Lv4# +29710#Unyielding Lv5# +29711#Unyielding Lv6# +29712#Unyielding Lv7# +29713#Unyielding Lv8# +29714#Unyielding Lv9# +29715#Unyielding Lv10# +31000#Rudo Card# +31001#Lola Card# +31002#Elvira Card# +31003#Merciless Gioia Card# +31004#Soheon Card# +31005#General Daehyon Card# +31006#[LoVA] Hades Card# +31007#[LoVA] Realization Hades Card# +31008#[LoVA] Lulu Card# +31009#[LoVA] Realization Lulu Card# +31010#[LoVA] Kima Card# +31011#[LoVA] Realization Kima Card# +31012#[LoVA] Bahamut Card# +31013#[LoVA] Realization Bahamut Card# +31014#[LoVA] Ragnarok Card# +31015#[LoVA] Realization Ragnarok Card# +31016#Decorated Evil Tree Card# +31017#Vicious Cookie Card# +31018#Evil Dwelling Box Card# +31019#Creepy Demon Card# +31020#Malicious Baby Ghost Card# +31021#Dancing Marionette Card# +31022#Abandoned Teddy Bear Card# +31023#Celine Kimi Card# +31024#Immortal Cursed Knight Card# +31025#Immortal Wind Ghost Card# +31026#Stephane Jack Earnest Wolf Card# +31027#Costume Pretty Bear# +31028#Costume Black Cat Hoodie# +31029#Costume Pig Nose# +31030#Costume Tiger Face# +31031#Unidentified Hat# +31032#Unidentified Hat# +31033#Unidentified Hat# +31034#Unidentified Hat# +31035#Unidentified Hat# +31036#Unidentified Hat# +31037#Unidentified Hat# +31038#Unidentified Hat# +31039#Unidentified Hat# +31040#Costume Magical Feather# +31041#Costume Kitten Lace Hairband# +31042#Costume Survivor's Circlet# +31043#Costume White Ribbon# +31044#Costume Pink Drooping Kitty# +31045#Costume Blue Rear Ribbon# +31046#Costume White Rose Princess# +31047#Costume First Love Cheeks# +31048#Costume White Lily with Black Ribbon# +31049#Unidentified Hat# +31050#Unidentified Hat# +31051#Unidentified Hat# +31052#Costume Alchemist Mask# +31053#Costume Drooping Eddga# +31054#Costume Sting Hat# +31055#Costume Poring Bubble Pipe# +31056#Costume Exploding Wave (Red)# +31057#Costume Eremes Scarf (Black)# +31058#Costume Chewy Gelato# +31059#Costume Seawater Hat# +31060#Costume Starfish Headband# +31061#Costume Claw Hairpin# +31062#Unidentified Ribbon# +31063#Costume Hair Buns (Blue)# +31064#Costume Hair Buns (Red)# +31065#Costume Hair Buns (Yellow)# +31066#Costume Hair Buns (Green)# +31067#Costume Hair Buns (Black)# +31068#Costume Hair Buns (White)# +31069#Costume Hair Buns (Brown)# +31070#Costume Hair Buns (Purple)# +31071#Unidentified Ribbon# +31072#Unidentified Ribbon# +31073#Unidentified Ribbon# +31074#Unidentified Ribbon# +31075#Unidentified Ribbon# +31076#Unidentified Ribbon# +31077#Unidentified Ribbon# +31078#Unidentified Ribbon# +31079#Unidentified Ribbon# +31080#Unidentified Ribbon# +31081#Unidentified Ribbon# +31082#Unidentified Ribbon# +31083#Unidentified Ribbon# +31084#Unidentified Ribbon# +31085#Unidentified Ribbon# +31086#Unidentified Ribbon# +31087#Costume Dwarf Beard# +31088#Unidentified Hat# +31089#Costume Exploding Wave# +31090#Costume Flapping Angeling# +31091#Costume Show Me The Zeny# +31092#Costume Rabbit Ribbon# +31093#Unidentified Ribbon# +31094#Unidentified Ribbon# +31095#Unidentified Hat# +31096#Unidentified Hat# +31097#Unidentified Hat# +31098#Unidentified Hat# +31099#Unidentified Hat# +31100#Unidentified Hat# +31101#Unidentified Hat# +31102#Unidentified Hat# +31103#Unidentified Hat# +31104#Unidentified Hat# +31105#Unidentified Hat# +31106#Unidentified Hat# +31107#Unidentified Hat# +31113#Unidentified Hat# +31114#Unidentified Helmet# +31117#Costume Hoplite Helmet# +31118#Costume Assassin's Skull Mask# +31119#Costume Blue Magician Hat# +31120#Costume Vampire Familiar# +31121#Costume Bat Stole# +31122#Costume Bloody Vicious Stop Bandage# +31123#Costume Ghostring Tall Hat# +31124#Unidentified Hat# +31125#Costume Queen Anz Revenge# +31126#Unidentified Hat# +31127#Unidentified Hat# +31128#Unidentified Hat# +31129#Unidentified Hat# +31130#Unidentified Hat# +31131#Unidentified Hat# +31132#Costume Christmas Wreath# +31133#Unidentified Hat# +31134#Unidentified Hat# +31135#Unidentified Hat# +31136#Unidentified Hat# +31137#Unidentified Hat# +31138#Unidentified Hat# +31139#Unidentified Hat# +31140#Costume Black Cowboy Hat# +31141#Costume Cactus Flower Corsage# +31142#Unidentified Ribbon# +31143#Costume Water Lantern# +31144#Costume Native Feather Headband# +31145#Unidentified Hat# +31146#Unidentified Hairband# +31147#Unidentified Hat# +31148#Unidentified Hat# +31149#Unidentified Hat# +31150#Unidentified Hat# +31151#Unidentified Hat# +31152#Unidentified Hairband# +31153#Unidentified Hat# +31154#Unidentified Hat# +31155#Costume Spinning Eyes# +31157#Unidentified Hairband# +31158#Costume Squirrel Ear Hat# +31160#Costume Rune Helm# +31161#Costume Tiger Mask# +31162#Costume Shaving Foam# +31163#Costume Sheep Hat# +31164#Costume Brown Stole# +31165#Costume Piggyback# +31166#Costume Teddy Bear Hood# +31167#Costume Happy Droopy Lunatic Ears (Black)# +31168#Costume Mouton Life (Blue)# +31169#Unidentified Hat# +31170#Unidentified Helmet# +31171#Unidentified Hat# +31172#Costume Los Pollos Locos# +31173#Unidentified Hat# +31174#Unidentified Hat# +31175#Unidentified Hat# +31176#Costume: Always Watching# +31177#Costume Tail Hat# +31178#Costume Fire Muffler# +31179#Costume Wolf Masquerade# +31180#Costume King Sura Headband# +31181#Costume Rosary's Necklace# +31182#Costume Side Cap# +31183#Costume Fallen Angel's Blessing# +31184#Costume Eye of the Hawk# +31185#Costume Engineer Cap# +31186#Costume Black Cat# +31187#Costume War Princess Ribbon# +31188#Costume Mono Gothic Bonnet# +31189#Costume Red Cat Ears Cape# +31190#Costume Angel's Black Mini Silk Hat# +31191#Unidentified Hat# +31192#Unidentified Hat# +31193#Unidentified Hat# +31194#Unidentified Hat# +31195#Chocolate Mini Hat# +31196#Unidentified Hat# +31197#Costume Egg Crispinette# +31198#Costume Octopus Hat# +31199#Costume Weird Beard# +31200#Costume Wrapping Ribbon# +31201#Costume Royal Rabbit Crown# +31202#Costume Dog Officer# +31203#Costume Charcoal Stove# +31204#Unidentified Hat# +31205#Unidentified Helmet# +31206#Unidentified Hat# +31207#Costume Dokkebi Mask# +31208#Costume Straight Long (Yellow)# +31209#Costume Straight Long (White)# +31210#Costume Side Pigtail (Blue)# +31211#Costume Side Pigtail (Red)# +31212#Costume Side Pigtail (Yellow)# +31213#Costume Side Pigtail (Green)# +31214#Costume Side Pigtail (Black)# +31215#Costume Side Pigtail (White)# +31216#Costume Side Pigtail (Brown)# +31217#Costume Side Pigtail (Purple)# +31218#Costume Low Pony (Blue)# +31219#Costume Low Pony (Red)# +31220#Costume Low Pony (Yellow)# +31221#Costume Low Pony (Green)# +31222#Costume Low Pony (Black)# +31223#Costume Low Pony (White)# +31224#Costume Low Pony (Brown)# +31225#Costume Low Pony (Purple)# +31226#Costume Long Twin (Blue)# +31227#Costume Long Twin (Red)# +31228#Costume Long Twin (Yellow)# +31229#Costume Long Twin (Green)# +31230#Costume Long Twin (Black)# +31231#Costume Long Twin (White)# +31232#Costume Long Twin (Brown)# +31233#Costume Long Twin (Purple)# +31234#Costume Persica# +31235#Unidentified Hat# +31236#Unidentified Hat# +31237#Unidentified Hat# +31238#Unidentified Hat# +31239#Unidentified Hat# +31240#Unidentified Hat# +31241#Unidentified Hat# +31242#Unidentified Hat# +31243#Unidentified Hat# +31244#Unidentified Hat# +31245#Costume Bell Flower# +31246#Costume Humming Bird# +31247#Costume Hippo Hat# +31248#Costume Isabella Red Ears# +31249#Costume Hopping Rabbit# +31250#Costume Wonderful Beast Ears# +31251#Costume Cat's Mouth# +31252#Costume White Cat Ears Hat# +31253#Unidentified Hat# +31254#Unidentified Hat# +31255#Costume Sweet Melon Helmet# +31256#Costume Jaguar Mask# +31258#Costume Glowing White Blush# +31259#Costume Bubble Archangeling Hairband# +31260#Unidentified Hat# +31261#Costume Soda In Mouth# +31262#Costume Disposable 3D Glasses# +31263#Costume Disposable Popcorn Hat# +31264#Unidentified Hat# +31265#Unidentified Hat# +31266#Unidentified Hat# +31267#Unidentified Hat# +31268#Unidentified Hat# +31269#Unidentified Hat# +31270#Unidentified Hat# +31271#Unidentified Hat# +31272#Unidentified Hat# +31273#Unidentified Hat# +31274#Unidentified Hat# +31275#Unidentified Hat# +31276#Unidentified Hat# +31277#Unidentified Hat# +31278#Unidentified Hat# +31279#Unidentified Hat# +31280#Unidentified Hat# +31281#Unidentified Hat# +31282#Unidentified Hat# +31283#Unidentified Hat# +31284#Unidentified Hat# +31285#Unidentified Hat# +31286#Unidentified Hat# +31287#Unidentified Hat# +31288#Unidentified Hat# +31289#Unidentified Hat# +31290#Unidentified Hat# +31291#Unidentified Hat# +31293#Unidentified Hat# +31294#Unidentified Hat# +31295#Costume Red Wing Hat# +31296#Costume Strawberry in Mouth# +31297#Unidentified Hat# +31298#Costume Eden Group Hat II# +31299#Costume White Rabbit# +31300#Costume Warm Cat Muffler# +31301#Costume Blinking Eyes# +31302#Costume Black Magenta Ribbon# +31303#Costume Memory of the Pasta# +31304#Costume Midsummer Fan# +31306#Unidentified Hat# +31307#Unidentified Hat# +31308#Unidentified Hat# +31309#Unidentified Hat# +31310#Unidentified Hat# +31311#Unidentified Hat# +31312#Unidentified Hat# +31313#Unidentified Hat# +31314#Unidentified Hat# +31315#Unidentified Hat# +31316#Unidentified Hat# +31317#Unidentified Hat# +31318#Costume Gerhard Von Deviruchi 83 Years# +31319#[Rental] Costume Midsummer Fan# +31320#[Rental] Pinwheel Costume# +31321#Unidentified Hat# +31322#Unidentified Hat# +31323#Unidentified Hat# +31324#Costume Kitty DJ# +31325#Costume Queen Scaraba Helm# +31326#Costume Rolf Von Gigue 666# +31327#Costume Wood Goblin Nose# +31328#Costume Faceworm Egg Shell# +31329#Costume Alice Wig# +31330#Costume Fallen Angel Valletta# +31331#Costume Chung E Shinyon Cap# +31332#Costume Black Khalitzburg Knight Helm# +31368#Costume Harvest Festa Hat# +31369#Unidentified Hat# +31370#Unidentified Hat# +31371#Costume Drooping Sorin Doll Hat# +31372#Costume Drooping Roxie# +31373#Unidentified Hat# +31374#Unidentified Hat# +31375#Unidentified Hat# +31376#Unidentified Hat# +31377#Costume Glast Heim Spectator# +31378#Costume Katarina von Blood 60# +31379#Costume Clock Winding Key# +31380#Costume Crow on Shoulder# +31381#Costume Diabolic Lapel# +31382#Costume Punkish Cat Ears# +31383#Costume Volume Low Twin# +31384#Costume Fake Ears# +31385#[Event] Costume Gothic Pumpkin Head# +31387#Costume Jack# +31388#Unidentified Hat# +31389#White Bird Rose# +31390#Costume Let It Snow# +31391#Costume Floating Sage Stone# +31392#Costume Radio Antenna# +31393#Costume Vajra# +31394#Costume White Wizard Hat# +31395#Costume Book of Magic# +31396#Costume Sorcerer Hood# +31397#Costume Sitting Pope# +31398#Costume Blinking Small Eyes# +31399#Costume Darkness Veil# +31400#Unidentified Ribbon# +31401#Unidentified Hat# +31402#Unidentified Hat# +31403#Unidentified Hat# +31404#Unidentified Hat# +31405#Unidentified Hat# +31406#Unidentified Hat# +31407#Unidentified Hat# +31408#Costume Ragnarok Rush Goat# +31409#Unidentified Helmet# +31410#Unidentified Helmet# +31411#Unidentified Helmet# +31412#Unidentified Helmet# +31413#Costume Taurus Crown# +31414#Unidentified Helmet# +31415#Unidentified Hat# +31416#Costume Seraphim Coronet# +31417#Unidentified Hat# +31418#Unidentified Hat# +31420#Costume Shining Santa Poring# +31426#Unidentified Ribbon# +31427#Unidentified Ribbon# +31430#Unidentified Hat# +31431#Unidentified Hat# +31432#Costume Floating Ice# +31433#Costume Astro Circle# +31434#Costume Stormy Cloud# +31435#Costume Magician Knit Hat# +31436#Costume White Drooping Cat# +31437#Costume Baby Penguin# +31438#Costume Fluffy Angel Cape# +31439#Costume Fluffy Heart Earmuffs# +31440#Costume Snow Bear Hood# +31441#Costume Penguin Cap# +31442#Unidentified Mask# +31443#Unidentified Hat# +31444#Unidentified Hat# +31446#Costume Toy Syringe# +31447#Costume Pale Moon Hat# +31448#Costume Sting Silk Ribbon# +31449#Costume Blue Rose Eyepatch# +31450#Costume Lolita Two Side Up# +31451#Costume Blue Frill Ribbon# +31452#Costume White Cat# +31453#Costume Large Ribbon Muffler (Black)# +31454#Unidentified Ribbon# +31455#Costume Super Cute Dog# +31456#Unidentified Helmet# +31457#Unidentified Helmet# +31459#Sweets BongBong# +31460#Unidentified Hat# +31461#Costume Marin Earrings# +31463#Costume Flying Drone# +31464#Unidentified Hat# +31465#Robins Egg Minihat# +31466#Saint Egg Shell# +31467#Devil Egg Shell# +31468#Unidentified Hat# +31469#Unidentified Ribbon# +31470#Costume Tengu Scroll# +31471#Costume Celestial Woman Flower# +31472#Costume Fairy Feathers# +31473#Costume Tipsy# +31474#Costume Straight Long (Black)# +31475#Costume Black Fox Ear Ribbon# +31476#Costume Yellow Cherry Blossom Hat# +31477#Unidentified Ribbon# +31478#Unidentified Ribbon# +31479#Costume Countless Stars# +31480#Unidentified Ribbon# +31481#Unidentified Hat# +31482#Costume Lunatic Muffler# +31483#Unidentified Ribbon# +31484#Unidentified Hat# +31485#Unidentified Hat# +31486#Costume Diver's Goggles# +31487#Costume Eye Bandage# +31488#Costume MVP# +31489#Costume Bouquet Hat# +31490#Costume Poring Muffler# +31491#Costume Orange Tabby Cat# +31492#Costume Cat Ears Cape Brown# +31493#Costume Volume Low Twin (White)# +31494#Unidentified Ribbon# +31495#Unidentified Ribbon# +31496#Unidentified Hat# +31497#Unidentified Glasses# +31498#Unidentified Ribbon# +31504#Costume Large Hungry Fish# +31505#Costume Falcon Mask# +31506#Costume Cat Eared Bandana# +31507#Costume Drooping Yellow Cat# +31508#Costume Isabella's Blue Ear Hat# +31509#Costume Fawn Ears# +31510#Costume Short Haired Cat Ears# +31511#Costume Long Haired Cat Ears# +31512#Costume Tuxedo Rabbit# +31513#Costume Black Rabbit Ears# +31516#Costume Mini Melon# +31517#Unidentified Hat# +31518#Costume Pop Popcorn Hat# +31519#Costume Slurp Slurp Hat# +31520#Unidentified Hat# +31521#Unidentified Hat# +31522#Unidentified Hat# +31523#Unidentified Hat# +31524#Unidentified Hat# +31526#Costume Shaman Hat# +31527#Costume Radiant Rainbow Wings# +31528#Costume Stardust Hairband# +31529#Costume Happy Rabbit Ribbon# +31530#Unidentified Hat# +31531#Lovely Heart Hat# +31533#Costume Warm Black Cat Muffler# +31534#Rainbow Star# +31538#Costume Lovely Feeling# +31540#Costume Red Gemini Eyes# +31541#Costume Drosera Hairpin# +31542#Costume Clay Poring Jar# +31543#Costume Siorava Hat# +31544#Costume Piamette's Curls# +31545#Costume Eremes Scarf (Blue)# +31546#Costume Clockwork Cap# +31547#Costume Poporing Mascot Head# +31548#Unidentified Hat# +31549#Costume Little Aquarium# +31550#Unidentified Hat# +31551#Unidentified Hat# +31552#Unidentified Hat# +31553#Unidentified Hat# +31554#Unidentified Hat# +31555#Unidentified Hat# +31556#Unidentified Hat# +31559#Costume Royal Guard Necklace# +31560#Costume Clergy Nurse Cap# +31561#Costume Heavenly Dark Flame# +31562#Costume Zealotus Doll# +31563#Costume Blue Eye Shadow# +31564#Costume Variant Veil# +31565#Costume Crowned Princess Ribbon# +31566#Costume Stole of Dominion# +31567#Costume Sheep's Horns# +31568#Unidentified Ribbon# +31569#Costume Open Air Headset# +31570#Costume Cyclops Visor# +31571#Costume Guardian Processor# +31572#Costume Mobile Pursuit System# +31573#Costume Mecha Cat Ears# +31574#Costume Cyber Income# +31575#Costume Electric Two Sides Up Hair# +31576#Unidentified Hat# +31577#Unidentified Hat# +31578#Unidentified Mask# +31579#Unidentified Hat# +31580#Costume Autumn Taste# +31581#Unidentified Ribbon# +31582#Unidentified Ribbon# +31583#Unidentified Ribbon# +31585#Unidentified Ribbon# +31586#Costume Poporing Muffler# +31588#Costume Snow Flower# +31589#Unidentified Helmet# +31590#Unidentified Ribbon# +31591#Hairband# +31598#Costume Forest Guide# +31599#Costume Medium Wave# +31600#Costume Kishu Dog# +31601#Costume Under Rimmed Glasses (Blue)# +31602#Costume Rune-Midgarts Glory# +31606#Unidentified Hairband# +31607#Unidentified Hat# +31608#Costume Magicstone of Grace# +31609#Costume Noble Mask# +31610#Costume Yellow Wizardry Hat# +31611#Costume Dark Snake Lord Stole# +31612#Costume Large Sorcerer Crown# +31614#Unidentified Hat# +31615#Costume Geisha Make Up# +31616#Costume Sleep Sheep# +31617#Costume Lady Tanee# +31618#Costume Dancing Butterfly# +31619#Unidentified Ribbon# +31620#Costume Snow Fox# +31621#Unidentified Ribbon# +31622#Unidentified Ribbon# +31623#Unidentified Ribbon# +31624#Unidentified Hat# +31625#Costume Protective Scarf# +31626#Unidentified Hairband# +31628#Costume Dokebi# +31630#Unidentified Hat# +31631#Unidentified Hat# +31632#Unidentified Hat# +31633#Unidentified Hat# +31634#Unidentified Hat# +31635#Costume Flowing Long (Blonde)# +31636#Costume Flowing Long (Silver)# +31637#Costume Straight Long (Blue)# +31638#Costume Straight Long (Red)# +31639#Costume Straight Long (Blonde)# +31640#Costume Straight Long (Green)# +31641#Costume Straight Long (Jet Black)# +31642#Costume Straight Long (Light Purple)# +31643#Costume Straight Long (Brown)# +31644#Costume Straight Long (Purple)# +31645#Costume Side Pony (Blue)# +31646#Costume Side Pony (Red)# +31647#Costume Side Pony (Blonde)# +31648#Costume Side Pony (Green)# +31649#Costume Side Pony (Black)# +31650#Costume Side Pony (White)# +31651#Costume Side Pony (Brown)# +31652#Costume Side Pony (Purple)# +31653#Costume Chignon (Blue)# +31654#Costume Chignon (Red)# +31655#Costume Chignon (Blonde)# +31656#Costume Chignon (Green)# +31657#Costume Chignon (Black)# +31658#Costume Chignon (White)# +31659#Costume Chignon (Brown)# +31660#Costume Chignon (Purple)# +31661#Unidentified Hat# +31662#Unidentified Hat# +31663#Unidentified Hat# +31664#Costume Drooping Ernst Von Wolf 11th# +31667#Costume Poring Beret# +31668#Costume Majorous Horns# +31669#Costume Evolved Whisper Mask# +31670#Costume Miyabi Doll Hair# +31671#Unidentified Ribbon# +31672#Unidentified Ribbon# +31673#Unidentified Mask# +31674#Costume Jitterbug Cap# +31675#Unidentified Hat# +31676#Unidentified Ribbon# +31678#Unidentified Ribbon# +31679#Unidentified Ribbon# +31682#Costume Drooping Elven Ears# +31683#Costume Heart Wing Headband# +31684#Costume Kururinpa Tails# +31685#Costume Fluffy Semi Long# +31686#Costume Desert Wolf Baby# +31687#Costume Alchemist Bag# +31688#Costume Poring on Shoulder# +31689#Unidentified Hat# +31690#Unidentified Hat# +31691#Unidentified Ribbon# +31692#Unidentified Ribbon# +31693#Unidentified Ribbon# +31694#Costume Poring Letter# +31695#Costume Tree Sprout# +31696#Costume Shark Hat# +31697#Costume Bird Nest# +31698#Costume Red Riding Hood# +31699#Costume Smiling Eyes# +31700#Unidentified Ribbon# +31701#Unidentified Ribbon# +31703#Costume Valentine Hat# +31704#Unidentified Hat# +31705#Unidentified Hat# +31706#Unidentified Hat# +31707#Unidentified Hat# +31708#Unidentified Hat# +31709#Unidentified Hat# +31710#Costume Lace Flower Crown# +31711#Costume Jewel Crown# +31712#Costume Oxygen Mask# +31713#Costume Mystical Fruit Hat# +31714#Costume Indian Headband# +31715#Costume Orange Rabbit# +31716#Costume Twinkling Red Eyes# +31717#Costume Medium Wave (Yellow)# +31718#Costume Sky Lantern# +31719#Costume Master of Fire# +31720#Unidentified Hat# +31721#Costume Ancient Resonance# +31723#Unidentified Hat# +31724#Unidentified Hat# +31725#Unidentified Hat# +31726#Unidentified Hat# +31727#Unidentified Hat# +31728#Costume Straw Cloche# +31729#Unidentified Ribbon# +31730#Unidentified Ribbon# +31731#Costume Sweets Party# +31732#Unidentified Ribbon# +31733#Costume Phantom's Mask# +31734#Costume Citrus Colored Ribbon# +31735#Costume Yawata Seal# +31736#Unidentified Ribbon# +31737#Unidentified Ribbon# +31738#Unidentified Ribbon# +31739#Unidentified Ribbon# +31740#Unidentified Ribbon# +31741#Unidentified Ribbon# +31742#Unidentified Ribbon# +31743#Unidentified Ribbon# +31744#Unidentified Ribbon# +31745#Unidentified Ribbon# +31746#Unidentified Ribbon# +31747#Unidentified Ribbon# +31748#Unidentified Ribbon# +31749#Unidentified Ribbon# +31750#Unidentified Ribbon# +31751#Unidentified Ribbon# +31752#Unidentified Ribbon# +31753#Unidentified Ribbon# +31754#Unidentified Ribbon# +31755#Unidentified Ribbon# +31756#Unidentified Ribbon# +31757#Unidentified Ribbon# +31758#Unidentified Ribbon# +31759#Unidentified Ribbon# +31760#Unidentified Ribbon# +31761#Unidentified Ribbon# +31762#Unidentified Ribbon# +31763#Unidentified Ribbon# +31764#Unidentified Ribbon# +31765#Unidentified Hat# +31766#Costume Peony Headdress# +31767#Unidentified Hat# +31768#Unidentified Hat# +31769#Unidentified Hat# +31770#Unidentified Hat# +31771#Unidentified Hat# +31772#Unidentified Hat# +31773#Unidentified Hat# +31774#Unidentified Hat# +31775#Unidentified Hat# +31776#Unidentified Hat# +31777#Unidentified Hat# +31778#Unidentified Hat# +31779#Unidentified Hat# +31780#Unidentified Hat# +31781#Unidentified Ribbon# +31782#Unidentified Ribbon# +31783#Unidentified Ribbon# +31784#Costume Experimental Goat Cap# +31785#Costume Monster Fish Gills# +31786#Costume Red Baby Dragon Hat# +31787#Costume Savage Shoulder Bebe # +31788#Costume Piamette Doll Hair (Silver)# +31789#Costume Turkey Hat# +31790#Unidentified Hat# +31791#Unidentified Hat# +31792#Unidentified Hat# +31793#Costume Seraphim's Feather# +31794#Costume Dog Ear Cap# +31795#Costume Elephant Fairy# +31796#Costume Drooping Boto# +31797#Costume Shih Tzu Hair# +31798#Costume Baby Panda# +31799#Costume Pretty White Bear# +31800#Costume Brazil Twin Ribbon# +31801#Costume Creative Convention Cap# +31802#Costume Creative Convention Chapeau# +31803#Unidentified Ribbon# +31804#Unidentified Hat# +31805#Unidentified Hat# +31806#Unidentified Hat# +31807#Unidentified Hat# +31808#Unidentified Hat# +31809#Unidentified Hat# +31810#Unidentified Hat# +31811#Costume Thief's Hood# +31812#Costume Light Bulb Hairband# +31813#Costume Lunatic On Shoulder# +31814#Costume Lunatic Family Balloon# +31815#Costume Prince of Rabbit# +31816#Costume Three Rabbits Ribbon# +31817#Costume Rabbit Two Sides Up# +31818#Unidentified Hat# +31819#Costume Dullahan Mask# +31823#Unidentified Mask# +31824#Unidentified Mask# +31825#Unidentified Mask# +31826#Unidentified Mask# +31827#Unidentified Ribbon# +31830#Unidentified Mask# +31831#Unidentified Ribbon# +31832#Unidentified Hat# +31833#Unidentified Hat# +31834#Unidentified Hat# +31835#Unidentified Hat# +31836#Unidentified Hat# +31837#Unidentified Hat# +31838#Unidentified Hat# +31839#Unidentified Hat# +31840#Costume DJ Headset# +31841#Unidentified Hat# +31842#Costume Striking Hat# +31843#Costume Heavenly Order# +31844#Costume Mob Scarf# +31845#Costume Palace Guard Cap# +31846#Costume Hair Ribbon Wig# +31847#Costume Blinking Blue Eyes# +31848#Costume Gothic Rose Bonnet# +31849#Unidentified Hat# +31850#Gift of Panagia# +31851#Unidentified Ribbon# +31852#Costume Witch's Cloak# +31853#Unidentified Mask# +31854#Unidentified Mask# +31855#Unidentified Hat# +31856#Costume Airy Twin Tails (Blonde)# +31857#Unidentified Ribbon# +31858#Unidentified Ribbon# +31859#Unidentified Ribbon# +31860#Unidentified Ribbon# +31861#Unidentified Ribbon# +31862#Unidentified Ribbon# +31863#Unidentified Ribbon# +31864#Unidentified Ribbon# +31865#Unidentified Ribbon# +31866#Unidentified Ribbon# +31867#Unidentified Ribbon# +31868#Unidentified Ribbon# +31869#Unidentified Ribbon# +31870#Unidentified Ribbon# +31871#Unidentified Ribbon# +31872#Unidentified Ribbon# +31873#Unidentified Ribbon# +31874#Unidentified Ribbon# +31875#Unidentified Ribbon# +31876#Unidentified Ribbon# +31877#Unidentified Ribbon# +31878#Unidentified Ribbon# +31879#Unidentified Ribbon# +31880#Unidentified Ribbon# +31881#Unidentified Ribbon# +31883#Unidentified Hat# +31884#Unidentified Hat# +31885#Unidentified Ribbon# +31886#Costume Pierced Apple# +31887#Costume Pure Love Muffler# +31888#Unidentified Hat# +31889#Unidentified Hat# +31899#Costume Freyja's Crown# +31902#Costume Cool Shades# +31903#Costume White Snake# +31904#Costume Snow Parade Hat# +31905#Costume Ice Tails# +31906#Costume Cat's Paw Knit Hat# +31907#Costume Cat's Paw Knit Hat (Brown)# +31909#Unidentified Hat# +31911#Costume Little Garden# +31912#Costume Black Veil# +31913#Costume Feathered Black Cap# +31914#Costume Mini Beret Hairband# +31915#Costume Sweet Coronet# +31916#Costume Bow Tie# +31917#Unidentified Garment# +31918#Unidentified Hat# +31919#Unidentified Hat# +31920#Unidentified Hat# +31921#Unidentified Ribbon# +31922#Unidentified Ribbon# +31923#Unidentified Ribbon# +31924#Unidentified Ribbon# +31927#Costume Blue Well Chewed Pencil# +31928#Costume Cylinder Hairband# +31929#Unidentified Hat# +31930#Costume Mic Stand# +31931#Costume Half Rimmed Glasses# +31932#Costume Suit Lapel# +31933#Costume Light Purple Miyabi Doll Hair# +31934#Costume Blinking Purple Eyes# +31936#Costume Honey Donuts# +31937#Costume Unicorn Headdress# +31938#Costume Long Twin Braids# +31939#Unidentified Hairband# +31940#Costume flag mask# +31942#Unidentified Mask# +31943#Costume Tree Frog Hood# +31944#Costume Elegant Wave# +31946#Costume Demon King's Eye# +31947#Costume Dark Horn# +31948#Costume Headband of Illusion's Eyes# +31959#Unidentified Ribbon# +31960#Unidentified Ribbon# +31961#Unidentified Ribbon# +31962#Unidentified Ribbon# +31963#Unidentified Ribbon# +31964#Unidentified Ribbon# +31965#Costume Wave Perm Hair (Red)# +31966#Unidentified Ribbon# +31967#Unidentified Ribbon# +31968#Unidentified Ribbon# +31969#Unidentified Ribbon# +31970#Ponytail Hair(brown)# +31971#Unidentified Ribbon# +31973#Costume Blossom Glasses# +31974#Unidentified Hat# +31975#Unidentified Ribbon# +31976#Unidentified Hat# +32000#Unidentified Spear# +32001#Unidentified Spear# +32002#Unidentified Spear# +32003#Unidentified Spear# +32004#Unidentified Spear# +32005#Illusion Pole Axe# +32006#Unidentified Spear# +32007#Unidentified Spear# +32008#Unidentified Spear# +32012#Unidentified Spear# +32013#Unidentified Spear# +32014#Unidentified Spear# +32017#Unidentified Spear# +32018#Aquatic Spear# +32019#Boost Lance-OS# +32021#Unidentified Spear# +32023#Unidentified Spear# +32024#Unidentified Spear# +32025#Unidentified Spear# +32026#Blocking Spear# +32027#Unidentified Spear# +32100#Unidentified Instrument# +32105#Unidentified Instrument# +32106#Unidentified Whip# +32107#Unidentified Instrument# +32108#Unidentified Instrument# +32110#Safety Lute# +32111#Unidentified Instrument# +32202#Unidentified Accessory# +32203#Accelerator Chip# +32204#Immortal Dog Tag# +32206#Prontera Militia Glove# +32207#Illusion Booster R# +32208#Illusion Booster L# +32209#Illusion Battle Chip R# +32210#Illusion Battle Chip L# +32221#Unidentified Accessory# +32222#Brooch of Hero# +32227#Fenrir Chain# +32228#Unidentified Accessory# +32229#Unidentified Accessory# +32230#Unidentified Accessory# +32231#Unidentified Accessory# +32232#Unidentified Accessory# +32233#Unidentified Accessory# +32234#Unrivaled Ring# +32237#Celine's Brooch Type K# +32238#Unidentified Accessory# +32239#Unidentified Accessory# +32242#Old Detachments Ring# +32246#Unidentified Accessory# +32247#Unidentified Accessory# +32248#Safety Pendant R# +32249#Safety Pendant B# +32250#Safety Epaulet R# +32251#Safety Epaulet B# +32252#High Adventurer's Clip# +32258#Ring of Jupiter# +32263#Shield Ring# +32300#Unidentified Revolver# +32301#Unidentified Revolver# +32302#Crimson Rose# +32303#Bolt Revolver# +32304#Unidentified Revolver# +32350#Unidentified Sword# +32351#Unidentified Sword# +32352#Safety Saber# +32353#Unidentified Sword# +32401#Unidentified Mace# +32402#Unidentified Mace# +32403#Unidentified Mace# +35000#Nose Tea Signature# +35001#Peachy Green Tea With Cream Cheese# +35002#Fire Potion# +100000#IDTest Special# +100002#Payment Promotion Reward Box# +100003#Fantasy Resonance Stone of Illusion# +100004#Fantasy Resonance Stone at Dawn# +100005#True Small Mana Potion# +100006#True Brilliant Protection Scroll# +100007#True Limited Power Booster# +100008#True Infinity Drink# +100009#Joy of Victory# +100010#Perfect Size Shadow Thump Box# +100011#Magic Piercing Shadow Thump Box# +100019#Costume Enchant Stone Box 18# +100020#Don Cristal Chino Box# +100021#Family Crystal Box# +100022#Minions Crystal Box# +100023#Valor of Ancient Heroes# +100024#Time Extension (Account)# +100025#Ancient Hero Wisdom# +100026#Time Extension(Character)# +100029#Booster Pack(1)# +100030#Booster Pack(15)# +100031#Booster Pack(30)# +100032#Booster Pack(45)# +100033#Booster Pack(60)# +100034#Booster Pack(75)# +100035#Booster Pack(90)# +100036#Booster Pack(100)# +100037#Booster Pack(115)# +100038#Booster Pack(130)# +100039#Booster Pack(145)# +100040#Booster Pack(160)# +100041#Booster Pack(175)# +100042#Booster Pack(185)# +100043#Booster Armor Upgrade Package# +100044#Boosting Weapon Upgrade Package# +100045#Starter Armor Box# +100046#Attack Booster Box# +100047#Ranged Booster Box# +100048#Elemental Booster Box# +100049#Default Booster Box# +100050#ROVerse Goal Gift Box# +100051#Booster Promotion Thank you Box# +100052#Costume Enchant Stone Box 19# +100053#Pierced Shadow Thump Box# +100054#Temporal Trancendent Shadow Box# +100058#Hasty Shadow Thump Box# +100060#April Costume Enchant Stone Thump Box# +100061#[Event] Red Booster# +100065#Spell Book(Storm Gust)# +100066#Spell Book(Lord of Vermillion)# +100067#Spell Book(Meteor Storm)# +100068#Spell Book(Drain Life)# +100069#Spell Book(Jack Frost)# +100070#Spell Book(Earth Strain)# +100071#Spell Book(Crimson Rock)# +100072#Spell Book(Chain Lightning)# +100073#Spell Book(Comet)# +100074#Spell Book(Tetra Vortex)# +100075#Level 5 Assorted Cuisine# +100076#Level 6 Assorted Cuisine# +100077#Level 7 Assorted Cuisine# +100078#Level 8 Assorted Cuisine# +100079#Level 9 Assorted Cuisine# +100080#Level 10 Assorted Cuisine# +100081#[Event] Advanced Combat Manual# +100087#[Event] Boarding Halter (30 Days)# +100100#Temporal Manteau Box# +100109#Lapine Thump Box II# +100125#Metal Weapon +7 Refinement Ticket# +100127#17th Anniversary Box# +100128#Noblesses Refine Ticket# +100129#Imperial Refine Ticket# +100130#Grace Refine Ticket# +100131#Imperial Physical Modification Permit (Garment)# +100132#Imperial Magical Modification Permit (Garment)# +100133#Grace Physical Modification Permit (Garment)# +100134#Grace Magical Modification Permit (Garment)# +100135#Imperial Physical Modification Permit (Armor)# +100136#Imperial Magical Modification Permit (Armor)# +100137#Grace Physical Modification Permit (Armor)# +100138#Grace Magical Modification Permit (Armor)# +100142#Stable Dragon Power# +100144#Burning Dragon Power# +100145#Hot Dragon Power# +100147#Bath Agent A# +100148#Bath Agent B# +100149#Bath Agent C# +100150#Aroma Oil# +100151#Skill Shadow Weapon Combination Scroll# +100152#Gold PC Room Sield Box# +100153#Taming Gift Set II# +100158#Emergency Mado Gear(Reinforcement Suit)# +100160#Automatic Module Box# +100161#Epic Module Box# +100162#Physical Automatic Modifier Box# +100163#Magical Automatic Modifier Box# +100164#Normal Automatic Improvement Device (Physical)# +100165#Advanced Automatic Improvement Device (Physical)# +100166#Premium Automatic Improvement Device (Physical)# +100167#Normal Automatic Improvement Device (Magical)# +100168#Advanced Automatic Improvement Device (Magical)# +100169#Premium Automatic Improvement Device (Magical)# +100170#PC Room Mileage Costume Box# +100171#Cannon Ball Box# +100172#Iron Cannon Ball Box# +100173#Soul Cannon Ball Box# +100174#Poison Arrow Quiver# +100176#Dark Cannon Ball Box# +100177#Holy Cannon Ball Box# +100178#Liquid Condensed Bullet Box# +100179#Large Mado Gear Fuel Tank# +100180#Repair A Box# +100181#Repair B Box# +100182#Repair C Box# +100183#Flame Stone Bundle# +100184#Ice Stone Bundle# +100185#Wind Stone Bundle# +100186#Shadow Orb Bundle# +100187#Fire Amulet Bundle# +100188#Ice Amulet Bundle# +100189#Wind Amulet Bundle# +100190#Earth Amulet Bundle# +100191#Explosive Kunai Summon Scroll# +100192#Blue Gemstone Pouch# +100193#Yellow Gemstone Pouch# +100194#Red Gemstone Pouch# +100195#Full Metal Jacket Cartridge# +100196#Projection Landmine Cartridge# +100197#Dragon Tail Missile Cartridge# +100198#Skill Shadow Cube# +100202#Costume Enchant Stone Box 20# +100205#Class Shadow Spellbook (Physical)# +100206#Class Shadow Spellbook (Magical)# +100207#Skill Shadow Spellbook (Physical)# +100208#Skill Shadow Spellbook (Magical)# +100209#Skill Shadow Shield Combination Scroll# +100210#Skill Shadow Pendant Combination Scroll# +100211#Skill Shadow Earring Combination Scroll# +100212#Skill Shadow Shoes Combination Scroll# +100213#Skill Shadow Armor Combination Scroll# +100214#Shadowdecon Gemstone Box# +100215#Zelunium Gemstone Box# +100231#Golden Yesterday# +100232#Red Herb Activator# +100233#Blue Herb Activator# +100251#Illusion Reinforcement Cube# +100252#Automatic Reinforcement Cube# +100253#G STAR Event Box# +100268#Temporal +11 Refinement Cube# +100269#Geffen Magic Tournament +12 Refinement Cube# +100270#Warrior's Helm +12 Refinement Cube# +100271#Ancient Hero's Weapon +9 Refinement Ticket# +100272#Ancient Hero's Boots +9 Refinement Ticket# +100273#Ancient Hero's Boots Remodeling Cube# +100274#Oriental Sword Remodeling Cube# +100275#Dragonic Slayer Remodeling Cube# +100276#Katar of Shiver Remodeling Cube# +100277#Blade Katar Remodeling Cube# +100314#Costume Enchant Stone Box 21# +100316#True Tyr's Blessing# +100317#True Mental Potion# +100319#Himelmez's Wig Box# +100321#OS Weapon +11 Refinement Cube# +100322#Racing Cap +11 Refinement Cube# +100323#Rune Knight Shadow Cube# +100324#Guillotine Cross Shadow Cube# +100325#Archbishop Shadow Cube# +100326#Sura Shadow Cube# +100327#Red Lotus Sword Remodeling Cube# +100328#Slate Sword Remodeling Cube# +100329#Narcissus Bow Remodeling Cube# +100330#Trumpet Shell Remodeling Cube# +100331#Barbed Wire Whip Remodeling Cube# +100332#Chrismas Gift Box# +100333#[Event] Infinity Drink# +100335#Booster Pack(190)# +100336#Booster Pack(200)# +100337#Booster Call# +100338#Booster Weapon Phase 1 Upgrade Package# +100339#Booster Weapon Phase 2 Upgrade Package# +100340#Booster Weapon Upgrade Package# +100341#Illusion (Bound) Upgrade Package# +100342#Growth Potion(Small)# +100343#Growth Potion(Medium)# +100344#Growth Potion(Advanced)# +100345#Growth Potion(Superior)# +100346#Job Potion# +100347#2021 Booster Goal Achievement Gift Box# +100351#Core Combat Manual# +100352#Real Combat Manual# +100354#Automatic Armor +11 Refinement Cube# +100355#Biological Lab Weapon +12 Refinement Cube# +100356#Ranger Shadow Cube# +100357#Warlock Shadow Cube# +100358#Sorcerer Shadow Cube# +100359#Minstrel Shadow Cube# +100360#Avenger Remodeling Cube# +100361#Meteor Striker Remodeling Cube# +100362#Mado Sword Remodeling Cube# +100363#Fatalist Remodeling Cube# +100365#Blazing Magical Power Accessory# +100366#Sunken Magical Power Accessory# +100367#Growth Magical Power Accessory# +100368#Shining Magical Power Accessory# +100371#Homunculus Supplement# +100372#Royal Guard Shadow Cube# +100373#Shadow Chaser Shadow Cube# +100374#Mechanic Shadow Cube# +100375#Genetic Shadow Cube# +100376#Royal Bow Remodeling Cube# +100377#Scarlet Dragon Leather Bow Remodeling Cube# +100378#Shadow Staff Remodeling Cube# +100379#Chilling Cane Remodeling Cube# +100381#+9 Lv3 Weapon Refine Ticket Exchange Hammer# +100382#+10 Lv3 Weapon Refine Ticket Exchange Hammer# +100383#+11 Lv3 Weapon Refine Ticket Exchange Hammer# +100384#+12 Lv3 Weapon Refine Ticket Exchange Hammer# +100385#+9 Lv4 Weapon Refine Ticket Exchange Hammer# +100386#+10 Lv4 Weapon Refine Ticket Exchange Hammer# +100387#+11 Lv4 Weapon Refine Ticket Exchange Hammer# +100388#Iron Nail Remodeling Cube# +100390#Ray Knuckle Remodeling Cube# +100391#Moonlight Refinement Box# +100392#Special Moonlight Refinement Box# +100393#Aquatic Spear Remodeling Cube# +100394#Light Blade Remodeling Cube# +100395#Iron Staff Remodeling Cube# +100396#Blue Crystal Staff Remodeling Cube# +100397#Exorcist's Bible Remodeling Cube# +100398#Saint Mace Remodeling Cube# +100399#Meowmeow Foxtail Remodeling Cube# +100400#Kiri no Tsuyu Remodeling Cube# +100401#Clarity Huuma Shuriken Remodeling Cube# +100402#One Sky One Sun Remodeling Cube# +100403#Spirit Pendulum Remodeling Cube# +100404#Crimson Rose Remodeling Cube# +100405#Master Soul Rifle Remodeling Cube# +100406#Golden Lord Launcher Remodeling Cube# +100407#The Black Remodeling Cube# +100408#Demon Slayer Shot Remodeling Cube# +100412#Great Hero's Bravery# +100413#Great Hero's Wisdom# +100414#Vampire Refinement Box# +100415#Special Vampire Refinement Box# +100416#Special Frozen Refinement Box# +100417#Turtle Island Refinement Box# +100418#Special Turtle Island Refinement Box# +100419#Teddy Bear Refinement Box# +100420#Special Teddy Bear Refinement Box# +100421#Luanda Refinement Box# +100422#Special Luanda Refinement Box# +100423#Labyrinth Refinement Box# +100424#Special Labyrinth Refinement Box# +100425#Underwater Refinement Box# +100426#Special Underwater Refinement Box# +100428#Costume Signon Princess Wave Box# +100433#March Costume Enchant Stone Thump Box# +100436#Temporal Circlet +11 Refine Cube# +100437#Ancient Hero's Weapon Modification Cube# +100442#New Shadow Weapon Cube# +100443#New Shadow Shield Cube# +100444#New Shadow Armor Cube# +100445#New Shadow Shoes Cube# +100446#New Shadow Earring Cube# +100447#New Shadow Pendant Cube# +100452#POW Reduction Potion# +100453#SPL Reduction Potion# +100454#STA Reduction Potion# +100455#WIS Reduction Potion# +100456#CON Reduction Potion# +100457#CRT Reduction Potion# +100460#Purified Growth Elixier# +100462#Contaminated Card Book# +100465#Class Stone (Garment) Box# +100466#Aegir's Power Box# +100467#Aegir's Magical Power Box# +100468#Aegirnian Box# +100469#OS Weapon Helmet Box# +100470#Variety Hat Box# +100475#Purple Special Storage Device# +100476#Magical Beads# +100477#Poenitentia Gladius Set Box# +100478#Poenitentia Asta Set Box# +100479#Sakrai's Wraith# +100480#Condensed Sakrai's Wrath# +100481#Battle Processor Accelerator# +100485#Sakrai's Regret# +100486#Condensed Sakrai's Regret# +100495#Class Stone 2 (Garment) Box# +100496#Class Stone (Upper) Box# +100497#Class Stone 2 (Upper) Box# +100498#Class Stone (Mid) Box# +100499#Class Stone 2 (Mid) Box# +100500#Class Stone (Lower) Box# +100501#Class Stone 2 (Lower) Box# +100502#Costume Enchant Stone Box 22# +100508#Special Growth Potion (Lower)# +100509#Special Growth Potion (Intermediate)# +100510#Special Growth Potion (Advanced)# +100511#Special Growth Potion (Superior)# +100512#Extended Class Skill Shadow Cube# +100515#Kachua's Costume Box# +100516#Eye Cleaner# +100517#Ear Cleaner# +100518#Tonic# +100519#Compressed Fire Extinguisher# +100520#Lucky Water# +100521#Strong Antidote# +100522#High Calorie Chocolate# +100523#Refined Holy Water# +100534#18th Anniversary Box# +100547#Biological Lab Helmet Box# +100553#Young Leaf Scroll# +100569#Special Costume Box# +100570#Special Costume Box+# +100572#Full Penetration Shadow Thump Box# +100573#Ragnarok Inven Event Support Box# +100574#Premium Expierence Pass (1 Hour)# +100575#Premium Drop Rate Pass (1 Hour)# +100576#Premium Death Penalty Reduction Pass (1 Hour)# +100577#Premium Special Offer Pass (1 Hour)# +100579#Pendant Gemstone of Force# +100580#Dark Stone# +100585#Thanatos Necklace Box# +100591#Thanos Weapon Reform Cube (Low Level)# +100592#Thanos Weapon Reform Cube (Intermediate)# +100596#Full Tempest Shadow Thump Box# +100600#New Shadow Thump Box# +100601#Illusion Module Thump Box# +100602#Automatic Module Thump Box# +100603#New Lapine Thump Box# +100616#Donation Participaton Box# +100619#Modified Thanos Refine Hammer# +100620#True Gemstone Shadow Thump Box# +100621#Maximum Mammonth Shadow Thump Box# +100626#Gray Wolf +7 Refinement Box# +100627#Gray Wolf +9 Refinement Box# +100648#Purification Ritual# +100649#Greater Purification Ritual# +100650#High Priest's Courage# +100651#High Priest's Wisdom# +100652#High Priest's Tenacity# +100653#High Priest's Belief# +100655#Cleansing Blueprint Bundle# +100661#Experience Shadow Thump Box# +100684#Biological Lab Helmet +11 Refinement Cube# +100690#Material Shadow Cube II# +100691#Absolve Shadow Thump Box# +100694#Armor Modification Box(Lower)# +100695#Armor Modification Box(Intermediate)# +100699#Twins Refinement Box# +100700#Special Twins Refinement Box# +100706#Will of Ancient Hero# +100707#Mammoth Shadow Box# +100708#Shadow Spellbook Box# +100709#All Shadow Cube# +100710#EXP Overclocker# +100717#Semi-Long Costume Box# +100721#Costume Enchant Stone Box 23# +100722#Booster Modification Stone(Physical)# +100723#Booster Modification Stone(Magical)# +100724#Spring Energy# +100726#Booster Pack(215)# +100727#Booster Pack(230)# +100728#Angel Poring Boots Stone Box# +100742#Patent Ancient Hero's Weapon Box# +100744#Hero's Weapon Modifier(Physical)# +100745#Hero's Weapon Modifier(Magical)# +100746#Weapon Remodeling Box (Lesser)# +100747#Weapon Remodeling Box (Intermediate)# +100748#Weapon Remodeling Box (Advanced)# +100750#Advanced Refinement Certificate Envelope# +100751#Refinement Certificate Envelope# +100752#Special Refinement Cube Box# +100753#Patent Ancient Hero's Cube# +100754#Brilliant Soda# +100783#Auto Spell Shadow Thump Box# +100784#Shadow Exchanger(Weapon to Shield)# +100785#Auto Spell Shadow Box# +100786#Armor Remodeling Box(Advanced)# +100796#Dark Bible# +100810#Broadcast Box# +100816#Summer Vibes# +100817#Thanos Upgrade Box# +100819#Hero's Weapon Modification Box I# +100820#Hero's Weapon Modification Box II# +100821#Modified Hero's Weapon Refine Hammer I# +100822#Modified Hero's Weapon Refine Hammer II# +100823#Lens Craft Stone# +100829#Farfalle# +100830#Creamy Shrimp Pasta# +100831#Feast Noodles# +100832#Tomato Noodles# +100833#Soy Sauce Bibim Noodles# +100834#Hero's Weapon Modification Box III# +100835#Modified Hero's Weapon Refine Hammer III# +100870#Special Costume Enchant Stone Box# +100874#Infinite Giant Fly Wings Daily Box# +100875#Unlimited Fly Wings Box (3 Days)# +100886#Physical Magical Shadow Box# +100887#Clever Shadow Thump Box# +100888#Durable Shadow Thump Box# +100890#Shadow Changer(Armor to Weapon)# +100900#Ice Castle Teleport Wing# +100901#Gray Wolf Village Teleport Wing# +100902#Varmundt Mansion Teleport Wing# +100903#Border Area Cor Teleport Wing# +100904#Military Base Teleport Wing# +100906#[Event] All in One Buff Potion# +100910#Special Dual Enchant Stone Box# +100911#Special Outfit Package# +100913#Kafra Buff(7 Days)# +100914#Kafra Buff(1 Hour)# +100917#Modified Hero's Weapon Refine Hammer IV# +100918#Hero's Weapon Modification Box IV# +100920#Costume Enchant Stone Box 24# +100929#GM Bigfoot Bag# +100933#[Event] Potion Box# +100934#[Event] Buff Scroll Box# +100938#Modified Hero's Weapon Refine Hammer V# +100939#Hero's Weapon Modification Box V# +100943#Thanksgiving Package# +100949#Kafra Buff(1 Day)# +100950#Ragfest Commemorative Box# +100951#Ignition Shadow Cube# +100952#Cold Breath Shadow Cube# +100954#Fire Breath Shadow Cube# +100955#Sonic Shadow Cube# +100956#Banishing Cannon Shadow Cube# +100957#Brand Shadow Cube# +100958#Genesis Shadow Cube# +100959#Chain Press Shadow Cube# +100960#Strain Shadow Cube# +100961#Jack Shadow Cube# +100962#Chain Shadow Cube# +100963#Crimson Shadow Cube# +100964#Grave Shadow Cube# +100965#Dust Shadow Cube# +100966#Varetyr Shadow Cube# +100967#Psychic Shadow Cube# +100968#Vulcan Shadow Cube# +100969#Boomerang Shadow Cube# +100970#Arms Shadow Cube# +100971#Tornado Shadow Cube# +100972#Spore Bomb Shadow Cube# +100973#Cannon Cart Shadow Cube# +100974#Crazy Shadow Cube# +100975#Cart Tornado Shadow Cube# +100976#Duple Shadow Cube# +100977#Magnus Shadow Cube# +100978#Adora Shadow Cube# +100979#Judex Shadow Cube# +100980#Knuckle Arrow Shadow Cube# +100981#Sky Blow Shadow Cube# +100982#Rampage Shadow Cube# +100983#Tiger Cannon Shadow Cube# +100984#Rolling Shadow Cube# +100985#Ripper Slasher Shadow Cube# +100986#Slash Shadow Cube# +100987#Katar Shadow Cube# +100988#Menace Shadow Cube# +100989#Shadowspell Shadow Cube# +100990#Triangle Shadow Cube# +100991#Feint Shadow Cube# +100992#Shooting Shadow Cube# +100994#Arrow Shadow Cube# +100995#Aimed Shadow Cube# +100996#Cluster Shadow Cube# +100997#Rainstorm Shadow Cube# +100998#Metallic Shadow Cube# +100999#Arrow Vulcan Shadow Cube# +101000#Reverberation Shadow Cube# +101001#Moonlight Shadow Cube# +101002#Sunshine Shadow Cube# +101003#Stardust Shadow Cube# +101004#Es Shadow Cube# +101005#Evil Curse Shadow Cube# +101006#Cross Shuriken Shadow Cube# +101007#Kunai Shadow Cube# +101008#Wind Spear Petal Shadow Cube# +101009#First Exploding Draft Shadow Cube# +101010#God Hammer Shadow Cube# +101011#Shatter Buster Shadow Cube# +101012#Tail Dragon Shadow Cube# +101013#Trip Shadow Cube# +101014#Flare Dance Shadow Cube# +101015#Super Magic Shadow Cube# +101016#Super Power Shadow Cube# +101017#Silvervine Shadow Cube# +101018#Catnip Shadow Cube# +101019#Savage Rabbit Shadow Cube# +101020#Picky Rush Shadow Cube# +101021#Rune Knight Shadow Cube# +101022#Royal Guard Shadow Cube# +101023#Warlock Shadow Cube# +101024#Sorcerer Shadow Cube# +101025#Mechanic Shadow Cube# +101026#Genetic Shadow Cube# +101027#Archbishop Shadow Cube# +101028#Sura Shadow Cube# +101029#Guillotine Cross Shadow Cube# +101030#Shadow Chaser Shadow Cube# +101031#Ranger Shadow Cube# +101032#Wanderer Shadow Cube# +101033#Minstrel Shadow Cube# +101034#Star Emperor Shadow Cube# +101035#Soul Reaper Shadow Cube# +101036#Kagerou Shadow Cube# +101037#Oboro Shadow Cube# +101038#Rebellion Shadow Cube# +101039#Super Novice Shadow Cube# +101040#Doram Shadow Cube# +101041#Mammoth Shadow Cube# +101042#Gemstone Shadow Cube# +101043#Penetration Shadow Cube I# +101044#Penetration Shadow Cube II# +101045#Tempest Shadow Cube I# +101046#Tempest Shadow Cube II# +101047#Blacksmith's Blessing Box (3)# +101048#Hollgrehenn's Shadow Refine Hammer Box (3)# +101060#TestA# +101062#TestB# +101067#Varmundt's Rune Box# +101070#Chuseok Event Box# +101074#Sealed Seal Card III# +101075#Sealed Boss Card Thump Box# +101077#Vivatus Weapon Refine Hammer# +101078#Adulter Weapon Modification Box# +101099#Spring Regulator# +101100#Poenitentia Two Swords Set Box# +101101#Poenitentia Firearm Set Box# +101103#Costume Enchant Stone Box 25# +101107#Ice Cannon Ball Box# +101108#Lightning Cannon Ball Box# +101109#Stone Cannon Ball Box# +101110#Flare Cannon Ball Box# +101111#Poisoning Cannon Ball Box# +101112#Kunai Summon Scroll# +101113#Formless Kunai Summon Scroll# +101114#Shadow Kunai Summon Scroll# +101115#Hamaya Kunai Summon Scroll# +101116#Throwing Grenade Box# +101117#Soul Talisman Bundle# +101118#Haze of Pitch Darkness Box# +101119#Haze of Prominence Box# +101120#Haze of Icy Snow Box# +101121#Haze of Mother Earth Box# +101122#Haze of North Wind Box# +101123#RO Live Shop Box# +101124#RO Live Shop Luxury Box# +101128#Royal Reward Box# +101129#Random Costume Box# +101130#Confirmed Costume Box# +101139#Riding Halter Box# +101148#[Security Campaign Reward Box]# +101159#Costume Pigtails Half Up Box# +101161#Snowflake Reward Box# +101162#Rgan Transformation Scroll# +101166#G-Star RO Shop Box# +101167#2021 G-Star Commemorative Box# +101168#[Event] Special Potion# +101169#Exhibition Hall Movement Scroll# +101170#2021 Quiz Reward Box# +101177#Full Temperament Shadow Spellbook# +101178#Reload Shadow Spellbook# +101179#Spell Caster Shadow Spellbook# +101180#Trait Status Shadow Spellbook# +101181#Reload Shadow Thump Box# +101182#Spell Caster Shadow Thump Box# +101183#Snow Flower Manastone Extractor# +101184#Ice Flower Magic Stone Extractor# +101185#Snow Flower Enhancement(Armor)# +101186#Glacier Weapon Enhancement# +101187#Snow Flower Armor +9 Refinement Cube# +101188#Glacier Weapon +9 Refinement Cube# +101189#Modified Hero's Weapon Refine Hammer VI# +101190#Hero's Weapon Modification Box VI# +101194#Heroic Token Egg# +101200#[Security Campaign] Special Energy Drink# +101217#Snow Flower Enhancment(Garment)# +101218#Snow Flower Enhancment(Shoes)# +101219#Snow Flower Enhancment(Accessory A)# +101220#Snow Flower Enhancment(Accessory B)# +101238#[Event] Kafra Buff(7 Days)# +101240#January Event's Reward Box# +101241#Hyul's Special Rice Cake Soup# +101243#Shadow Changer# +101257#Lord Bearer's Shadow Thump Box# +101258#Mega Blitz Shadow Thump Box# +101259#Special Hat Refine Hammer# +101260#Lord Bearer's Shadow Spellbook# +101261#Mega Blitz Shadow Spellbook# +101262#Absorb Shadow Spellbook# +101264#Maximum Mammoth Shadow Spellbook# +101268#Winter Event Costume Basket# +101269#Winter Event Costume Box# +101271#Costume Enchant Stone Box 26# +101276#Seollal Rice Cake Soup# +101306#Poenitentia Weapon Refine Hammer# +101307#Varmundt Armor Refine Hammer# +101308#True Gemstone Shadow Spellbook# +101309#Experience Shadow Spellbook# +101310#Clever Shadow Spellbook# +101311#Infinity Shadow Spellbook# +101314#Helm of Faith Box# +101321#Event Error Reward Box# +101331#Assorted Fruit Trap# +101340#Blacksmith's Blessing Combination Scroll# +101341#Hollgrehenn's Shadow Refine Hammer Combination Scroll# +101342#Powerful Soul Essence Combination Scroll# +101343#Powerful Dimension Essence Combination Scroll# +101344#Enchantment Ticket Combination Scroll# +101345#Beast's Leather Shoes Combination Scroll# +101346#Pirate Captain's Coat Combination Scroll# +101347#Phreeoni Wing Suit Combination Scroll# +101355#OS Weapon Modification Box# +101359#Major Auto Spell Shadow Spellbook# +101360#Hasty Shadow Spellbook# +101361#Durable Shadow Spellbook# +101362#Perfect Size Shadow Spellbook# +101363#Upgraded OS Helmet Refine Hammer# +101364#Upgraded OS Weapon Refine Hammer# +101389#Helm of Faith Refine Hammer# +101390#Clock Tower Basement Refine Hammer# +101391#Scientist's Escape Log# +101399#Enchantment Ticket Envelope# +101404#Fantasy Growth Potion# +101406#Fantasy Job Growth Potion# +101407#Move Scroll(Convenience)# +101408#Move Scroll(Danger Areas)# +101416#Costume Enchant Stone Box 27# +101461#Fantasy Series Greed Scroll Box# +101470#Status Reduction Potion Selection Box# +101471#Alchemist Selection Box# +101482#Freedom Stick Remodeling Cube# +101483#Blessed Knife Remodeling Cube# +101522#Fantasy Series 001# +101523#Fantasy Series 002# +101524#Fantasy Series 003# +101525#Fantasy Series 004# +101542#Full Penetration Shadow Selection Box# +101543#Full Penetration Shadow Earring Box# +101544#Full Penetration Shadow Pendant Box# +101545#Full Penetration Shadow Armor Box# +101546#Full Penetration Shadow Shoes Box# +101547#Full Tempest Shadow Selection Box# +101548#Full Tempest Shadow Earring Box# +101549#Full Tempest Shadow Pendant Box# +101550#Full Tempest Shadow Armor Box# +101551#Full Tempest Shadow Shoes Box# +101552#Durable Shadow Selection Box# +101553#Durable Shadow Weapon Box# +101554#Durable Shadow Shield Box# +101555#Clever Shadow Selection Box# +101556#Clever Shadow Weapon Box# +101557#Clever Shadow Shield Box# +101563#Helmet Selection Box for OS Weapons# +101564#Almighty Shadow Spellbook# +101565#Shadow Spellbook Selection Box# +101567#Gravity Fluffy Gift Box# +103052#[Event] Kafra Buff(3 Day)# +200000#IDTest Cash# +200001#Inventory Expansion Voucher Box (10)# +200002#(Limited) Inventory Expansion Voucher Box (10)# +200003#(Limited) HD Oridecon Box(Blacksmith)(30)# +200004#(Limited) HD Elunium Box(Blacksmith)(30)# +200005#(Limited) HD Bradium Box(Blacksmith)(30)# +200006#(Limited) HD Carnium Box(Blacksmith)(30)# +200031#(Limited) Silvervine Cat Fruit Package I# +200032#(Limited) Three Master Package# +200049#Stoin Coin Package I# +200050#Stoin Coin Package II# +200051#Stoin Coin Package III# +200069#HD Elunium Package# +200070#HD Oridecon Package# +200071#HD Carnium Package# +200072#HD Bradium Package# +200074#(Limited) Battle Manual Package# +200090#(Limited) Mana Potion Box# +200091#(Limited) Silvervine Cat Fruit Package II# +200092#(Limited) Silvervine Cat Fruit Package III# +200093#(Limited) HD Oridecon Box(Hollgrehenn)(30)# +200094#(Limited) HD Elunium Box(Hollgrehenn)(30)# +200108#(Limited) Silvervine Cat Fruit Package (Stone Box 23)# +200109#Limited Refinement Ore Package# +200110#Limited HD Elunium Package# +200111#Limited HD Oridecon Package# +200112#Limited HD Carnium Package# +200113#Limited HD Bradium Package# +200123#Thanos Upgrade Package# +200124#Hero's Weapon Modification Package I# +200125#Hero's Weapon Modification Package II# +200126#Modified Hero's Weapon Refine Hammer Package I# +200127#Modified Hero's Weapon Refine Hammer Package II# +200128#Hero's Weapon Modification Package III# +200129#Modified Hero's Weapon Refine Hammer Package III# +200136#Kafra Buff Box (7 Days)# +200137#Modified Hero's Weapon Refine Hammer Package IV# +200138#Hero's Weapon Modification Package IV# +200140#(Limited) Silvervine Cat Fruit Package(Stone Box 24)# +200141#Hero's Weapon Modification Package V# +200144#Silvervine Costume Mileage Package I# +200145#Silvervine Costume Mileage Package II# +200146#Silvervine Costume Mileage Package III# +200155#(Limited) Silvervine Cat Fruit Package IV# +200163#(Limited) Silvervine Cat Fruit Package(Stone Box 25)# +200168#2021 Promotional Commemorative Package I# +200169#2021 Promotional Commemorative Package II# +200170#Silvervine Costume Mileage Package IV# +200171#Silvervine Costume Mileage Package V# +200172#Silvervine Costume Mileage Package VI# +200174#Modified Hero's Weapon Refine Hammer Package VI# +200175#Hero's Weapon Modification Package VI# +200185#(Limited) Silvervine Cat Fruit Package I(Stone Box 26)# +200186#(Limited) Silvervine Cat Fruit Package II(Stone Box 26)# +200187#(Limited) Silvervine Cat Fruit Package III(Stone Box 26)# +200191#Silvervine Costume Mileage Package I(Stone Box 26)# +200193#Silvervine Costume Mileage Package II(Stone Box 26)# +200194#Silvervine Costume Mileage Package III(Stone Box 26)# +200195#Monthly Supply Package I# +200196#Monthly Supply Package II# +200197#Monthly Supply Package III# +200198#Monthly Premium Buff Package# +200199#Monthly Combat Manual Package# +300000#IDTest Card# +300001#Poisonous Card# +300002#Toxious Card# +300003#White Porcellio Card# +300004#Neo Mineral Card# +300005#Abyssman Card# +300006#Jewelry Ant Card# +300007#Jeweled Ungoliant Card# +300008#Angelgolt Card# +300009#Spectrum Plasma Card# +300010#Arch Plasma Card# +300011#Holy Frus Card# +300012#Holy Skogul Card# +300013#Reginleif Card# +300014#Ingrid Card# +300015#Purple Ferus Card# +300016#Treasure Mimic Card# +300017#Black Acidus Card# +300018#Silver Acidus Card# +300019#Bone Ferus Card# +300020#Bone Acidus Card# +300021#Bone Detardeurus Card# +300076#Broken Guard Beta Card# +300077#Broken Cleaning Robot Omega Card# +300078#Sweetie Card# +300079#Red Pepper Card# +300080#Greater Red Pepper Card# +300081#Research Assistant Bot Card# +300082#Greater Research Assistant Bot Card# +300083#Dried Rafflesia Card# +300084#Greater Dried Rafflesia Card# +300085#Special Alnoldi Card# +300086#Greater Special Alnoldi Card# +300087#Broken Gardener Beta Card# +300088#Greater Broken Gardener Beta Card# +300089#Verporta Card# +300090#Verporte Card# +300091#Papila Card# +300092#Greater Papila Card# +300093#Papila Ruba Card# +300094#Greater Papila Ruba Card# +300095#Papila Cae Card# +300096#Greater Papila Cae Card# +300097#Aries Card# +300098#Greater Aries Card# +300099#Silva Papilia Card# +300100#Grand Papilia Card# +300101#Broken Cleaner Card# +300102#Bath Manager Card# +300103#Azure Princess Card# +300104#Bookworm Card# +300105#Roaming Spellbook Card# +300106#Red Pitaya Card# +300107#Meow Card# +300108#Sewage Venenum Card# +300109#Sewage Cramp Card# +300110#Sewage Waterfall Card# +300111#Elite Bellare Card# +300112#Magic Poison Dolor Card# +300113#Unleashed Magic Card# +300114#Magic Poison Plaga Card# +300115#Magic Poison Sanara Card# +300116#Powerful Magic Card# +300117#Sharp Magic Card# +300118#Boiling Phen Card# +300119#Boiling Swordfish Card# +300120#Boiling Piranha Card# +300121#Boiling Marc Card# +300122#Yellow Pitaya Card# +300123#Purple Pitaya Card# +300124#Blue Pitaya Card# +300125#Green Pitaya Card# +300127#Wolf Card# +300128#Wolf Roegenburgs Card# +300129#Poe Card# +300130#Poe Richard Card# +300131#Reversed Justice Card# +300132#Reversed The Star Card# +300133#Reversed Temperance Card# +300134#Reversed The Chariot Card# +300135#Reversed Death Card# +300136#Reversed The Lovers Card# +300137#Princess Meer Card# +300138#Half Blood Princess Meer Card# +300140#Deep Sea Sropho Card# +300141#Deep Sea Obeaune Card# +300142#Deep Sea Deviace Card# +300143#Deep Sea Marse Card# +300144#Deep Sea Merman Card# +300145#Deep Sea Witch Card# +300146#Deep Sea Sedora Card# +300147#Deep Sea Swordfish Card# +300148#Deep Sea Strouf Card# +300149#Deep Sea Phen Card# +300150#Deep Sea King Dramoh Card# +300151#Deep Sea Kraken Card# +300163#Reversed The Emperor Card# +300164#Reversed Strength Card# +300165#Reversed The Devil Card# +300166#Reversed The Moon Card# +300167#Reversed The Moon Card# +300168#Reversed World Card# +300170#Rotten Wood Card# +300171#Grave Worm Card# +300172#Brain Sucker Card# +300173#Mosquilo Card# +300174#Melted Poring Card# +300175#Unknown Creature Card# +300176#Unidentified Creature Card# +300177#Arena Arhi Card# +300178#Arena Dio Anemos Card# +300179#Arena Shoplifter Card# +300180#Arena Gangster Card# +300181#Arena Bully Card# +300182#Arena Faymont Card# +300183#Arena Ordre Card# +300184#Arena Blut Hase Card# +300185#Arena Kuro Akuma Card# +300186#Arena Ifodes Card# +300187#Arena Odoric Card# +300188#Arena Licheniyes Card# +300189#Arena Ju Card# +300190#Arena Fay Kanavian Card# +300191#Arena Dwigh Card# +300192#Sakrai Card# +300193#Tiara Card# +300211#Ash Toad Card# +300212#Rake Hand Card# +300213#Fire Spark Card# +300214#Hot Molar Card# +300215#Volkering Card# +300216#Lava Toad Card# +300217#Burning Fang Card# +300218#Ash Hopper Card# +300219#Ashring Card# +300220#Gray Wolf Card# +300221#Bushring Card# +300222#Fire Wind Kite Card# +300223#Ghost Wolf Card# +300227#Shulan Card# +300228#Distorted God Card# +300230#Diligent Andre Card# +300231#Diligent Soldier Andre Card# +300232#Diligent Andre Larva Card# +300233#Diligent Deniro Card# +300234#Diligent Piere Card# +300235#Mushy Ant Egg Card# +300236#Gutsy Giearth Card# +300237#Gutsy Familiar Card# +300238#Diligent Vitata Card# +300239#Silent Maya Card# +300240#Gan Ceann Card# +300241#Brutal Murderer Card# +300242#Ghost Cube Card# +300243#Lude Gal Card# +300244#Disguiser Card# +300245#Blue Moon Loli Ruri Card# +300246#Grote Card# +300247#Pierrotzoist Card# +300248#Death Witch Card# +300249#Giant Caput Card# +300250#Dolorian Card# +300251#Plagarion Card# +300252#Deadre Card# +300253#Venedi Card# +300254#Amitera Card# +300255#Litus Card# +300256#Fillia Card# +300257#Vanilaqus Card# +300258#Lavaeter Card# +300259#Fulgor Card# +300260#Napeo Card# +300261#Galensis Card# +300262#The One Card# +300263#Rekenber Guard Card# +300264#Rekenber Senior Guard Card# +300265#Regenschirm Scientist Card# +300266#Unknown Swordsman Card# +300267#Crown Baron Card# +300268#Crow Duke Card# +300269#Eldest Card# +300270#Empathizer Card# +300271#Happiness Giver Card# +300272#Pray Giver Card# +300273#Smile Giver Card# +300274#Anger of Thanatos Card# +300275#Horror of Thanatos Card# +300276#Regret of Thanatos Card# +300277#Resentment of Thanatos Card# +300278#Void Mimic Card# +300279#Book of Death Card# +300280#Broken Memory of Thanatos Card# +300281#R001-Bestia Card# +300292#Extra Joker Card# +300293#Erzsebet Card# +300294#Jennifer Card# +300295#General Orc Card# +300296#Sieglouse Card# +300297#Goblin King Card# +300307#Meyer Card# +300308#Meyer Lugenburg Card# +300309#Helmut Card# +300310#Helmut Lugenburg Card# +300359#Ice Gangu Card# +300360#Shining Seaweed Card# +300361#Ice Straw Card# +300362#Unfrost Flower Card# +300363#Limacina Card# +300364#Calmaring Card# +300365#Primitive Rgan Card# +300366#Lowest Rgan Card# +300367#Lesser Rgan Card# +300368#Intermediate Rgan Card# +300369#Wasted Primitive Rgan Card# +300370#Wasted Intermediate Rgan Card# +300371#Cave Calmaring Card# +300372#Cave Flower Card# +300373#Hallucigenia Baby Card# +300374#Hallucigenia Card# +300375#One Eye Dollocaris Card# +300376#Two Eyes Dollocaris Card# +300377#Ultra Limacina Card# +300378#Simulation Juncea Card# +300379#Modified Senior Rgan Card# +300380#Entangled Intermediate Rgan Card# +300381#Heart Hunter AT Card# +300382#Aquila Card# +310000#Sniper Stone II(Upper)# +310001#Sniper Stone II(Mid)# +310002#Sniper Stone II(Lower)# +310003#Ranger Stone II(Garment)# +310004#Whitesmith Stone II(Upper)# +310005#Whitesmith Stone II(Mid)# +310006#Whitesmith Stone II(Lower)# +310007#Mechanic Stone II(Garment)# +310008#High Priest Stone II(Upper)# +310009#High Priest Stone II(Mid)# +310010#High Priest Stone II(Lower)# +310011#Archbishop Stone II(Garment)# +310012#Death Drive# +310076#STR Blessing# +310077#AGI Blessing# +310078#VIT Blessing# +310079#DEX Blessing# +310080#INT Blessing# +310081#LUK Blessing# +310082#Automatic Modification Orb(Defense)# +310083#Automatic Modification Orb(Magic Defense)# +310084#Automatic Modification Orb(VIT)# +310085#Automatic Modification Orb(LUK)# +310086#Automatic Modification Orb(STR)# +310087#Automatic Modification Orb(AGI)# +310088#Automatic Modification Orb(INT)# +310089#Automatic Modification Orb(DEX)# +310090#Automatic Modification Orb(HP Recovery)# +310091#Automatic Modification Orb(SP Recovery)# +310092#Automatic Modification Orb(Spell)# +310093#Automatic Modification Orb(Attack Speed)# +310094#Automatic Modification Orb(Fatal)# +310095#Automatic Modification Orb(Expert Archer)# +310096#Automatic Modification Orb(Vital)# +310097#Automatic Modification Orb(Mental)# +310098#Automatic Modification Orb(Heal)# +310099#Automatic Modification Orb(Attack Power)# +310100#Automatic Modification Orb(Magic Power)# +310101#Automatic Modification Orb(Shooter)# +310102#Automatic Modification Orb(Fast)# +310103#Automatic Modification Orb(Caster)# +310104#Automatic Modification Orb(Critical)# +310105#Automatic Modification Orb(Magical Force)# +310106#Automatic Modification Orb(Attacker Force)# +310107#Automatic Modification Orb(Range Force)# +310108#Automatic Modification Orb(Critical Force)# +310109#Automatic Modification Orb(Recovery Force)# +310110#Automatic Modification Orb(After Skill Delay)# +310111#Automatic Modification Orb(Fixed Casting)# +310112#Automatic Modification Orb(Above All)# +310113#Automatic Modification Orb(Drain Life)# +310114#Automatic Modification Orb(Drain Soul)# +310115#Automatic Modification Orb(Magic Healing)# +310116#Automatic Modification Orb(Magic Soul)# +310117#Automatic Modification Orb(Power Force)# +310118#Automatic Modification Orb(Robust)# +310119#Automatic Modification Orb(Powerful)# +310120#Automatic Modification Orb(All Force)# +310121#Automatic Orb(Unlimited Vital)# +310122#Automatic Orb(Spell Buster)# +310123#Automatic Orb(Firing Shot)# +310124#Automatic Orb(Over Power)# +310125#Automatic Orb(Fatal Flash)# +310126#Automatic Orb(Lucky Strike)# +310127#Automatic Orb(Dragonic Breath)# +310128#Automatic Orb(Wave Break)# +310129#Automatic Orb(Hundred Spiral)# +310130#Automatic Orb(Drive Press)# +310131#Automatic Orb(Banishing Cannon)# +310132#Automatic Orb(Genesis Pressure)# +310133#Automatic Orb(Boost Cannon)# +310134#Automatic Orb(Cold Flare)# +310135#Automatic Orb(Tornado Swing)# +310136#Automatic Orb(Cannon Tornado)# +310137#Automatic Orb(Crazy Mandragora)# +310138#Automatic Orb(Acid Explosion)# +310139#Automatic Orb(Sonic Impact)# +310140#Automatic Orb(Cutter Slasher)# +310141#Automatic Orb(Berserk Slash)# +310142#Automatic Orb(Fatal Raid)# +310143#Automatic Orb(Shadow Spell)# +310144#Automatic Orb(Angle Shot)# +310145#Automatic Orb(Crimson Strain)# +310146#Automatic Orb(Jack Lightning)# +310147#Automatic Orb(Comet Vortex)# +310148#Automatic Orb(Double Bolt)# +310149#Automatic Orb(Warm Wave)# +310150#Automatic Orb(Diamond Grave)# +310151#Automatic Orb(Magnusmus)# +310152#Automatic Orb(Holy Judex)# +310153#Automatic Orb(Duple Lica)# +310154#Automatic Orb(Tiger Empire)# +310155#Automatic Orb(Rampage Arrow)# +310156#Automatic Orb(Raging Combo)# +310157#Automatic Orb(Cluster)# +310158#Automatic Orb(Breeze Shooting)# +310159#Automatic Orb(Aimed Storm)# +310160#Automatic Orb(Metal Echo)# +310161#Automatic Orb(Reverberation)# +310162#Automatic Orb(Vulcan Severe)# +310163#Automatic Orb(Prominence Burst)# +310164#Automatic Orb(Moon Kick)# +310165#Automatic Orb(Flash Falling)# +310166#Automatic Orb(Eswhoo)# +310167#Automatic Orb(Espa)# +310168#Automatic Orb(Curse Explosion)# +310169#Automatic Orb(Des Hammer Dance)# +310170#Automatic Orb(Fire Howling Tail)# +310171#Automatic Orb(Storm Buster Trip)# +310172#Automatic Orb(Flame Ice Wind)# +310173#Automatic Orb(Cross Slash)# +310174#Automatic Orb(Exploding Flake Wind)# +310175#Automatic Orb(Power of Sea)# +310176#Automatic Orb(Power of Land)# +310177#Automatic Orb(Power of Life)# +310178#Automatic Modification Orb(Mirror Counter)# +310179#Automatic Modification Orb(Reflection Reject)# +310180#Warlock Stone II(Garment)# +310181#High Wizard Stone II(Upper)# +310182#High Wizard Stone II(Mid)# +310183#High Wizard Stone II(Lower)# +310184#Royal Guard Stone II(Garment)# +310185#Paladin Stone II(Upper)# +310186#Paladin Stone II(Mid)# +310187#Paladin Stone II(Lower)# +310188#Guillotine Cross Stone II(Garment)# +310189#Assassin Cross Stone II(Lower)# +310190#Assassin Cross Stone II(Mid)# +310191#Assassin Cross Stone II(Upper)# +310192## +310197#Rage Lv1# +310198#Rage Lv2# +310199#Rage Lv3# +310200#Rage Lv4# +310201#Rage Lv5# +310202#Horror Lv1# +310203#Horror Lv2# +310204#Horror Lv3# +310205#Horror Lv4# +310206#Horror Lv5# +310207#Resentment Lv1# +310208#Resentment Lv2# +310209#Resentment Lv3# +310210#Resentment Lv4# +310211#Resentment Lv5# +310212#Regret Lv1# +310213#Regret Lv2# +310214#Regret Lv3# +310215#Regret Lv4# +310216#Regret Lv5# +310217#Sympathy Lv1# +310218#Sympathy Lv2# +310219#Sympathy Lv3# +310220#Sympathy Lv4# +310221#Sympathy Lv5# +310222#Happiness Lv1# +310223#Happiness Lv2# +310224#Happiness Lv3# +310225#Happiness Lv4# +310226#Happiness Lv5# +310227#Rest Lv1# +310228#Rest Lv2# +310229#Rest Lv3# +310230#Rest Lv4# +310231#Rest Lv5# +310232#Comfort Lv1# +310233#Comfort Lv2# +310234#Comfort Lv3# +310235#Comfort Lv4# +310236#Comfort Lv5# +310237#Disgust Lv1# +310238#Disgust Lv2# +310239#Disgust Lv3# +310240#Disgust Lv4# +310241#Disgust Lv5# +310242#Toleration Lv1# +310243#Toleration Lv2# +310244#Toleration Lv3# +310245#Toleration Lv4# +310246#Toleration Lv5# +310247#Sour Lv1# +310248#Sour Lv2# +310249#Sour Lv3# +310250#Sour Lv4# +310251#Sour Lv5# +310252#Extinction Lv1# +310253#Extinction Lv2# +310254#Extinction Lv3# +310255#Extinction Lv4# +310256#Extinction Lv5# +310257#Rune Knight Stone II(Garment)# +310258#Lord Knight Stone II(Upper)# +310259#Lord Knight Stone II(Mid)# +310260#Lord Knight Stone II(Lower)# +310261#Genetic Stone II(Garment)# +310262#Creator Stone II(Upper)# +310263#Creator Stone II(Mid)# +310264#Creator Stone II(Lower)# +310265#Wanderer Minstrel Stone II(Garment)# +310266#Clown Gypsy Stone II(Upper)# +310267#Clown Gypsy Stone II(Mid)# +310268#Clown Gypsy Stone II(Lower)# +310325#Ranged Stone(Upper)# +310326#Ranged Stone(Lower)# +310327#Melee Stone(Upper)# +310328#Melee Stone(Mid)# +310329#Melee Stone(Lower)# +310330#Ranged Stone(Mid)# +310478#Wolf Orb(STR) Lv1# +310479#Wolf Orb(DEX) Lv1# +310480#Wolf Orb(AGI) Lv1# +310481#Wolf Orb(INT) Lv1# +310482#Wolf Orb(VIT) Lv1# +310483#Wolf Orb(LUK) Lv1# +310484#Wolf Orb(STR) Lv2# +310485#Wolf Orb(DEX) Lv2# +310486#Wolf Orb(AGI) Lv2# +310487#Wolf Orb(INT) Lv2# +310488#Wolf Orb(VIT) Lv2# +310489#Wolf Orb(LUK) Lv2# +310490#Wolf Orb(STR) Lv3# +310491#Wolf Orb(DEX) Lv3# +310492#Wolf Orb(AGI) Lv3# +310493#Wolf Orb(INT) Lv3# +310494#Wolf Orb(VIT) Lv3# +310495#Wolf Orb(LUK) Lv3# +310496#Wolf Orb(Defense) Lv1# +310497#Wolf Orb(Magical Defense) Lv1# +310498#Wolf Orb(Defense) Lv2# +310499#Wolf Orb(Magical Defense) Lv2# +310500#Wolf Orb(Defense) Lv3# +310501#Wolf Orb(Magical Defense) Lv3# +310502#Wolf Orb(Shooter) Lv1# +310503#Wolf Orb(Warrior) Lv1# +310504#Wolf Orb(Mage) Lv1# +310505#Wolf Orb(Shooter) Lv2# +310506#Wolf Orb(Warrior) Lv2# +310507#Wolf Orb(Mage) Lv2# +310508#Wolf Orb(Shooter) Lv3# +310509#Wolf Orb(Warrior) Lv3# +310510#Wolf Orb(마도사) Lv3# +310511#Wolf Orb(Reflection Reject) Lv1# +310512#Wolf Orb(Reflection Reject) Lv2# +310513#Wolf Orb(Reflection Reject) Lv3# +310514#Wolf Orb(Power Force)# +310515#Wolf Orb(After Skill Delay)# +310516#Wolf Orb(Dragon Breath)# +310517#Wolf Orb(Cutter Break)# +310518#Wolf Orb(Hundred Wave)# +310519#Wolf Orb(Brand Drive)# +310520#Wolf Orb(Banishing Cannon)# +310521#Wolf Orb(Genesis Pressure)# +310522#Wolf Orb(Boost Cannon)# +310523#Wolf Orb(Vulcan Boomerang)# +310524#Wolf Orb(Tornado Swing)# +310525#Wolf Orb(Hell Tornado)# +310526#Wolf Orb(Crazy Cannon)# +310527#Wolf Orb(Acid Explosion)# +310528#Wolf Orb(Sonic Impact)# +310529#Wolf Orb(Cutter Slasher)# +310530#Wolf Orb(Soul Slash)# +310531#Wolf Orb(Fatal Raid)# +310532#Wolf Orb(Shadow Spell)# +310533#Wolf Orb(Angle Shot)# +310534#Wolf Orb(Crimson Strain)# +310535#Wolf Orb(Jack Lightning)# +310536#Wolf Orb(Comet Vortex)# +310537#Wolf Orb(Cloud Buster)# +310538#Wolf Orb(Varetyr Wave)# +310539#Wolf Orb(Diamond Grave)# +310540#Wolf Orb(Magnusmus)# +310541#Wolf Orb(Holy Judex)# +310542#Wolf Orb(Melee Duple)# +310543#Wolf Orb(Tiger Empire)# +310544#Wolf Orb(Lightning Blaster)# +310545#Wolf Orb(Hell Arrow)# +310546#Wolf Orb(Cluster)# +310547#Wolf Orb(Breeze Shooting)# +310548#Wolf Orb(Aimed Storm)# +310549#Wolf Orb(Sound Metal)# +310550#Wolf Orb(Reverb)# +310551#Wolf Orb(Vulcanstorm)# +310552#Wolf Orb(Red Flame Explosion)# +310553#Wolf Orb(Moon)# +310554#Wolf Orb(Flash Fall)# +310555#Wolf Orb(Shoo)# +310556#Wolf Orb(Spa)# +310557#Wolf Orb(Curse Explosion)# +310558#Wolf Orb(Death Hammer Dance)# +310559#Wolf Orb(Fire Howling Tail)# +310560#Wolf Orb(Storm Buster Trip)# +310561#Wolf Orb(Chemical Fiber Style)# +310562#Wolf Orb(Crucifixion)# +310563#Wolf Orb(Dreamlike)# +310564#Wolf Orb(Sea Power)# +310565#Wolf Orb(Earth Power)# +310566#Wolf Orb(Power of Life)# +310567#Wolf Orb(Fast) Lv1# +310568#Wolf Orb(Caster) Lv1# +310569#Wolf Orb(Critical) Lv1# +310570#Wolf Orb(Guided Attack) Lv1# +310571#Wolf Orb(Fast) Lv2# +310572#Wolf Orb(Caster) Lv2# +310573#Wolf Orb(Critical) Lv2# +310574#Wolf Orb(Guided Attack) Lv2# +310575#Wolf Orb(Fast) Lv3# +310576#Wolf Orb(Caster) Lv3# +310577#Wolf Orb(Critical) Lv3# +310578#Wolf Orb(Guided Attack) Lv3# +310579#Wolf Orb(Above All) Lv1# +310580#Wolf Orb(Above All) Lv2# +310581#Wolf Orb(Above All) Lv3# +310582#Wolf Orb(Powerful) Lv1# +310583#Wolf Orb(Powerful) Lv2# +310584#Wolf Orb(Powerful) Lv3# +310585#Wolf Orb(Mirror Counter) Lv1# +310586#Wolf Orb(Mirror Counter) Lv2# +310587#Wolf Orb(Mirror Counter) Lv3# +310588#Wolf Orb(Health) Lv1# +310589#Wolf Orb(Mental Power) Lv1# +310590#Wolf Orb(Heal) Lv1# +310591#Wolf Orb(Health) Lv2# +310592#Wolf Orb(Mental Power) Lv2# +310593#Wolf Orb(Heal) Lv2# +310594#Wolf Orb(Health) Lv3# +310595#Wolf Orb(Mental Power) Lv3# +310596#Wolf Orb(Heal) Lv3# +310597#Wolf Orb(Robust) Lv1# +310598#Wolf Orb(Robust) Lv2# +310599#Wolf Orb(Robust) Lv3# +310600#Wolf Orb(Fixed Casting) Lv1# +310601#Wolf Orb(Fixed Casting) Lv2# +310602#Wolf Orb(Fixed Casting) Lv3# +310603#Wolf Orb(Magical Force) Lv1# +310604#Wolf Orb(Physical Force) Lv1# +310605#Wolf Orb(Magical Force) Lv2# +310606#Wolf Orb(Physical Force) Lv2# +310607#Wolf Orb(Magical Force) Lv3# +310608#Wolf Orb(Physical Force) Lv3# +310609#Wolf Orb(Unlimited Vitality)# +310610#Wolf Orb(Spell Buster)# +310611#Wolf Orb(Firing Shot)# +310612#Wolf Orb(Over Power)# +310613#Wolf Orb(Fatal Flash)# +310614#Wolf Orb(Lucky Strike)# +310615#Wolf Orb(After Attack Delay) Lv1# +310616#Wolf Orb(Expert Archer) Lv1# +310617#Wolf Orb(Critical) Lv1# +310618#Wolf Orb(Fighting Spirit) Lv1# +310619#Wolf Orb(Magic Power) Lv1# +310620#Wolf Orb(After Attack Delay) Lv2# +310621#Wolf Orb(Expert Archer) Lv2# +310622#Wolf Orb(Critical) Lv2# +310623#Wolf Orb(Fighting Spirit) Lv2# +310624#Wolf Orb(Magic Power) Lv2# +310625#Wolf Orb(After Attack Delay) Lv3# +310626#Wolf Orb(Expert Archer) Lv3# +310627#Wolf Orb(Critical) Lv3# +310628#Wolf Orb(Fighting Spirit) Lv3# +310629#Wolf Orb(Magic Power) Lv3# +310630#Wolf Orb(After Attack Delay) Lv4# +310631#Wolf Orb(Expert Archer) Lv4# +310632#Wolf Orb(Critical) Lv4# +310633#Wolf Orb(Fighting Spirit) Lv4# +310634#Wolf Orb(Magic Power) Lv4# +310635#Wolf Orb(HP Recovery) Lv1# +310636#Wolf Orb(SP회복량) Lv1# +310637#Wolf Orb(HP Recovery) Lv2# +310638#Wolf Orb(SP Recovery) Lv2# +310639#Wolf Orb(HP Recovery) Lv3# +310640#Wolf Orb(SP Recovery) Lv3# +310641#Wolf Orb(HP Recovery) Lv4# +310642#Wolf Orb(SP Recovery) Lv4# +310643#Wolf Orb(Drain Life)# +310644#Wolf Orb(Drain Soul)# +310645#Wolf Orb(Magic Healing)# +310646#Wolf Orb(Magic Soul)# +310647#Wolf Orb(All Force)# +310654#ASPD+1(Dual)# +310658#Minor Casting Reduction(Dual)# +310659#Variable Casting Time Reduction(Dual)# +310660#Ranged Stone(Dual)# +310661#Melee Stone(Dual)# +310662#HP Absorbtion(Dual)# +310663#SP Absorbtion(Dual)# +310664#Magic Power Stone(Upper)# +310665#Magic Power Stone(Mid)# +310666#Magic Power Stone(Lower)# +310667#Magic Power Stone(Dual)# +310668#Spring Energy(Lv1)# +310669#Spring Energy(Lv2)# +310670#Spring Energy(Lv3)# +310671#Warmth of Spring(Lv1)# +310672#Warmth of Spring(Lv2)# +310673#Warmth of Spring(Lv3)# +310674#Star Cluster of Power Lv1# +310675#Star Cluster of Power Lv2# +310676#Star Cluster of Power Lv3# +310677#Star Cluster of Stamina Lv1# +310678#Star Cluster of Stamina Lv2# +310679#Star Cluster of Stamina Lv3# +310680#Star Cluster of Concentration Lv1# +310681#Star Cluster of Concentration Lv2# +310682#Star Cluster of Concentration Lv3# +310683#Star Cluster of Creative Lv1# +310684#Star Cluster of Creative Lv2# +310685#Star Cluster of Creative Lv3# +310686#Star Cluster of Spell Lv1# +310687#Star Cluster of Spell Lv2# +310688#Star Cluster of Spell Lv3# +310689#Star Cluster of Wisdom Lv1# +310690#Star Cluster of Wisdom Lv2# +310691#Star Cluster of Wisdom Lv3# +310692#Star of Mettle Lv1# +310693#Star of Mettle Lv2# +310694#Star of Mettle Lv3# +310695#Star of Mettle Lv4# +310696#Star of Mettle Lv5# +310697#Star of Master Archer Lv1# +310698#Star of Master Archer Lv2# +310699#Star of Master Archer Lv3# +310700#Star of Master Archer Lv4# +310701#Star of Master Archer Lv5# +310702#Star of Sharp Lv1# +310703#Star of Sharp Lv2# +310704#Star of Sharp Lv3# +310705#Star of Sharp Lv4# +310706#Star of Sharp Lv5# +310707#Star of Spell Lv1# +310708#Star of Spell Lv2# +310709#Star of Spell Lv3# +310710#Star of Spell Lv4# +310711#Star of Spell Lv5# +310712#Star of Speed Lv1# +310713#Star of Speed Lv2# +310714#Star of Speed Lv3# +310715#Star of Speed Lv4# +310716#Star of Speed Lv5# +310717#Star of Vital Lv1# +310718#Star of Vital Lv2# +310719#Star of Vital Lv3# +310720#Star of Vital Lv4# +310721#Star of Vital Lv5# +310722#Star of Spirit Lv1# +310723#Star of Spirit Lv2# +310724#Star of Spirit Lv3# +310725#Star of Spirit Lv4# +310726#Star of Spirit Lv5# +310727#Nebula of Fighting Lv1# +310728#Nebula of Fighting Lv2# +310729#Nebula of Fighting Lv3# +310730#Nebula of Expert Archer Lv1# +310731#Nebula of Expert Archer Lv2# +310732#Nebula of Expert Archer Lv3# +310733#Nebula of Sharp Lv1# +310734#Nebula of Sharp Lv2# +310735#Nebula of Sharp Lv3# +310736#Nebula of Spell Lv1# +310737#Nebula of Spell Lv2# +310738#Nebula of Spell Lv3# +310739#Nebula of Healing Lv1# +310740#Nebula of Healing Lv2# +310741#Nebula of Healing Lv3# +310742#Nebula of Health Lv1# +310743#Nebula of Health Lv2# +310744#Nebula of Health Lv3# +310844#Summer Heat(Lv1)# +310845#Summer Heat(Lv2)# +310846#Summer Heat(Lv3)# +310847#Summer Coolness(Lv1)# +310848#Summer Coolness(Lv2)# +310849#Summer Coolness(Lv3)# +310851#After Skill Delay Lv1# +310852#After Skill Delay Lv2# +310853#After Skill Delay Lv3# +310854#Attack Speed Lv1# +310855#Attack Speed Lv2# +310856#Attack Speed Lv3# +310857#Variable Casting(Physical) Lv1# +310858#Variable Casting(Physical) Lv2# +310859#Variable Casting(Physical) Lv3# +310860#Variable Casting(Magical) Lv3# +310861#Defense Lv1# +310862#Defense Lv2# +310863#Defense Lv3# +310864#Physical Lv1# +310865#Physical Lv2# +310866#Physical Lv3# +310867#Ranged Lv1# +310868#Ranged Lv2# +310869#Ranged Lv3# +310870#Magical Lv1# +310871#Magical Lv2# +310872#Magical Lv3# +310873#HP Lv1# +310874#HP Lv2# +310875#HP Lv3# +310876#Spirit Lv1# +310877#Spirit Lv2# +310878#Spirit Lv3# +310879#Variable Casting(Magical) Lv2# +310880#Variable Casting(Magical) Lv1# +310881#Rune Knight Stone(Upper)# +310882#Rune Knight Stone(Mid)# +310883#Rune Knight Stone(Lower)# +310884#Warlock Stone(Upper)# +310885#Warlock Stone(Mid)# +310886#Warlock Stone(Lower)# +310887#Royal Guard Stone(Upper)# +310888#Royal Guard Stone(Mid)# +310889#Royal Guard Stone(Lower)# +310908#Warrior's Valor# +310909#Swordsman's Sharpness# +310910#Sharpshooter's Will# +310911#Wise Man's Knowledge# +310912#The General's Spirit# +310913#Assassin's Spirit# +310914#Strength# +310915#Fortune# +310916#Hit# +310917#Intellect# +310918#Firmness# +310919#Smartness# +310920#Power of Varmundt Lv1# +310921#Power of Varmundt Lv2# +310922#Power of Varmundt Lv3# +310923#Spell of Varmundt Lv1# +310924#Spell of Varmundt Lv2# +310925#Spell of Varmundt Lv3# +310926#Concentration of Varmundt Lv1# +310927#Concentration of Varmundt Lv2# +310928#Concentration of Varmundt Lv3# +310929#Creative of Varmundt Lv1# +310930#Creative of Varmundt Lv2# +310932#Creative of Varmundt Lv3# +310933#Wisdom of Varmundt Lv1# +310934#Wisdom of Varmundt Lv2# +310935#Wisdom of Varmundt Lv3# +310936#Stamina of Varmundt Lv1# +310937#Stamina of Varmundt Lv2# +310938#Stamina of Varmundt Lv3# +310982#P.ATK Lv1# +310983#P.ATK Lv2# +310984#S.MATK Lv1# +310985#S.MATK Lv2# +310986#ATK Lv1# +310987#ATK Lv2# +310988#MATK Lv1# +310989#MATK Lv2# +310990#MaxHP Lv1# +310991#MaxHP Lv2# +310992#MaxSP Lv1# +310993#MaxSP Lv2# +310994#Formless Blessing# +310995#Undead Blessing# +310996#Brute Blessing# +310997#Plant Blessing# +310998#Insect Blessing# +310999#Fish Blessing# +311000#Demon Blessing# +311001#Demi-Human Blessing# +311002#Angel Blessing# +311003#Dragon Blessing# +311004#Rune Midgart's Blessing# +311005#Wanderer Minstrel Stone(Upper)# +311006#Wanderer Minstrel Stone(Mid)# +311007#Wanderer Minstrel Stone(Lower)# +311008#Genetic Stone(Upper)# +311009#Genetic Stone(Mid)# +311010#Genetic Stone(Lower)# +311011#Sorcerer Stone(Upper)# +311012#Sorcerer Stone(Mid)# +311013#Sorcerer Stone(Lower)# +311014#Reload Stone(Dual)# +311015#Creative Stone(Dual)# +311016#Clockwork(ATK)# +311017#Clockwork(MATK)# +311018#Clockwork(After Attack Delay)# +311019#Clockwork(Variable Casting)# +311020#Clockwork(After Skill Delay)# +311021#Clockwork(POW)# +311022#Clockwork(SPL)# +311023#Clockwork(STA)# +311024#Clockwork(WIS)# +311025#Clockwork(CRT)# +311026#Clockwork(CON)# +311027#Clockwork(P.ATK)# +311028#Clockwork(S.MATK)# +311029#Storm Slash Tuning Device# +311030#Hack and Slasher Tuning Device# +311031#Axe Stomp Tuning Device# +311032#Axe Tornado Tuning Device# +311033#Acidified Zone Tuning Device# +311034#Cart Tornado Tuning Device# +311035#Impact Crater Tuning Device# +311036#Savage Impact Tuning Device# +311037#Frozen Crimson Tuning Device# +311038#Crystal Impact Tuning Device# +311039#Abyss Square Tuning Device# +311040#From the Abyss Tuning Device# +311041#Conflag Lightning Tuning Device# +311042#Psychic Wave Tuning Device# +311043#Gale Storm Tuning Device# +311044#Arrow Storm Tuning Device# +311045#Second Order Tuning Device# +311046#Third Order Tuning Device# +311047#Shield Shooting Tuning Device# +311048#Shield Chain Tuning Device# +311049#Flamen Tuning Device# +311050#Arbitrium Tuning Device# +311051#Noon Blast Tuning Device# +311052#Rising Sun Tuning Device# +311053#Talisman of Four Bearing God Tuning Device# +311054#Talisman of Soul Stealing Tuning Device# +311055#Only One Bullet Tuning Device# +311056#Spiral Shooting Tuning Device# +311057#Double Bowling Bash Tuning Device# +311058#Meteor Storm Tuning Device# +311059#Shadow Dance Tuning Device# +311060#Darkening Cannon Tuning Device# +311061#Rose Shooting Tuning Device# +311062#Severe Rainstorm Tuning Device# +311063#Howling Strike Tuning Device# +311064#Hyunrok Tuning Device# +311076#POW Lv1# +311077#POW Lv2# +311078#WIS Lv1# +311079#WIS Lv2# +311080#SPL Lv1# +311081#SPL Lv2# +311082#STA Lv1# +311083#STA Lv2# +311084#CRT Lv1# +311085#CRT Lv2# +311086#CON Lv1# +311087#CON Lv2# +311088#C.RATE Lv1# +311089#C.RATE Lv2# +311090#H.PLUS Lv1# +311091#H.PLUS Lv2# +311092#Ice Flower Spell(STR)# +311093#Ice Flower Spell(DEX)# +311094#Ice Flower Spell(AGI)# +311095#Ice Flower Spell(INT)# +311096#Ice Flower Spell(VIT)# +311097#Ice Flower Spell(LUK)# +311098#Ice Flower Spell(Physical Defense)# +311099#Ice Flower Spell(Magical Defense)# +311100#Ice Flower Spell(Shooter)# +311101#Ice Flower Spell(Warrior)# +311102#Ice Flower Spell(Magician)# +311103#Ice Flower Spell(Reflection Reject)# +311104#Ice Flower Spell(Power Force)# +311105#Ice Flower Spell(After Skill Delay)# +311106#Ice Flower Spell(Speed)# +311107#Ice Flower Spell(Caster)# +311108#Ice Flower Spell(Critical)# +311109#Ice Flower Spell(Guided Attack)# +311110#Ice Flower Spell(Above All)# +311111#Ice Flower Spell(Powerful)# +311112#Ice Flower Spell(Mirror Counter)# +311113#Ice Flower Spell(Vital)# +311114#Ice Flower Spell(Mental)# +311115#Ice Flower Spell(Heal)# +311116#Ice Flower Spell(Robust)# +311117#Ice Flower Spell(Fixed Casting)# +311118#Ice Flower Spell(Magical Force)# +311119#Ice Flower Spell(Physical Force)# +311120#Ice Flower Spell(Unlimited Vital)# +311121#Ice Flower Spell(Spell Buster)# +311122#Ice Flower Spell(Firing Shot)# +311123#Ice Flower Spell(Over Power)# +311124#Ice Flower Spell(Fatal Flash)# +311125#Ice Flower Spell(Lucky Strike)# +311126#Ice Flower Spell(After Attack Delay)# +311127#Ice Flower Spell(Expert Archer)# +311128#Ice Flower Spell(Fatal)# +311129#Ice Flower Spell(Fighting Spirit)# +311130#Ice Flower Spell(Magic Power)# +311131#Ice Flower Spell(HP Recovery)# +311132#Ice Flower Spell(SP Recovery)# +311133#Ice Flower Spell(Drain Life)# +311134#Ice Flower Spell(Drain Soul)# +311135#Ice Flower Spell(Magic Healing)# +311136#Ice Flower Spell(Magic Soul)# +311137#Ice Flower Spell(All Force)# +311138#Ice Flower Spell(Dragonic Breath)# +311139#Ice Flower Spell(Cutter Break)# +311140#Ice Flower Spell(Hundred Wave)# +311141#Ice Flower Spell(Brand Lit)# +311142#Ice Flower Spell(Banishing Cannon)# +311143#Ice Flower Spell(Genesis Pressure)# +311144#Ice Flower Spell(Boost Cannon)# +311145#Ice Flower Spell(Vulcan Boomerang)# +311146#Ice Flower Spell(Tornado Swing)# +311147#Ice Flower Spell(Hell Tornado)# +311148#Ice Flower Spell(Crazy Cannon)# +311149#Ice Flower Spell(Acid Explosion)# +311150#Ice Flower Spell(Sonic Impact)# +311151#Ice Flower Spell(Cutter Slasher)# +311152#Ice Flower Spell(Berserk Slash)# +311153#Ice Flower Spell(Fatal Attack)# +311154#Ice Flower Spell(Shadow Spell)# +311155#Ice Flower Spell(Angle Shot)# +311156#Ice Flower Spell(Crimson Strain)# +311157#Ice Flower Spell(Jack Lightning)# +311158#Ice Flower Spell(Comet Expansion)# +311159#Ice Flower Spell(Cloud Buster)# +311160#Ice Flower Spell(Varetyr Wave)# +311161#Ice Flower Spell(Diamond Grave)# +311162#Ice Flower Spell(Magnusmus)# +311163#Ice Flower Spell(Holy Judex)# +311164#Ice Flower Spell(Melee Duple)# +311165#Ice Flower Spell(Tiger Empire)# +311166#Ice Flower Spell(Rampage Lightning)# +311167#Ice Flower Spell(Hell Arrow)# +311168#Ice Flower Spell(Aimed Rush)# +311169#Ice Flower Spell(Breeze Shooting)# +311170#Ice Flower Spell(Storm Gale)# +311171#Ice Flower Spell(Sound Metal)# +311172#Ice Flower Spell(Rainstorm)# +311173#Ice Flower Spell(Vulcan Shooting)# +311174#Ice Flower Spell(Prominence Burst)# +311175#Ice Flower Spell(Moon Kick)# +311176#Ice Flower Spell(Flash Falling)# +311177#Ice Flower Spell(Eswhoo)# +311178#Ice Flower Spell(Espa)# +311179#Ice Flower Spell(Curse Explosion)# +311180#Ice Flower Spell(Des Hammer Dance)# +311181#Ice Flower Spell(Fire Howling Tail)# +311182#Ice Flower Spell(Storm Buster Trip)# +311183#Ice Flower Spell(Flame Ice Wind)# +311184#Ice Flower Spell(Cross Petal)# +311185#Ice Flower Spell(Exploding Flake Wind)# +311186#Ice Flower Spell(Power of Life)# +311187#Ice Flower Spell(Power of Land)# +311188#Ice Flower Spell(Power of Savage)# +311189#Ice Flower Spell(Hyper Melee)# +311190#Ice Flower Spell(Hyper Range)# +311191#Ice Flower Spell(Hyper Magic)# +311192#Glacier Flower Spell(Dragonic Breath)# +311193#Glacier Flower Spell(Wind Cutter)# +311194#Glacier Flower Spell(Ignition Break)# +311195#Glacier Flower Spell(Hundred Spear)# +311196#Glacier Flower Spell(Sonic Wave)# +311197#Glacier Flower Spell(Overbrand)# +311198#Glacier Flower Spell(Hesperus Lit)# +311199#Glacier Flower Spell(Banishing Point)# +311200#Glacier Flower Spell(Cannon Spear)# +311201#Glacier Flower Spell(Genesis Ray)# +311202#Glacier Flower Spell(Shield Press)# +311203#Glacier Flower Spell(Earth Drive)# +311204#Glacier Flower Spell(Knuckle Boost)# +311205#Glacier Flower Spell(Arm Cannon)# +311206#Glacier Flower Spell(Axe Tornado)# +311207#Glacier Flower Spell(Power Swing)# +311208#Glacier Flower Spell(Vulcan Arm)# +311209#Glacier Flower Spell(Axe Boomerang)# +311210#Glacier Flower Spell(Cart Tornado)# +311211#Glacier Flower Spell(Cart Cannon)# +311212#Glacier Flower Spell(Spore Explosion)# +311213#Glacier Flower Spell(Crazy Weed)# +311214#Glacier Flower Spell(Cross Ripper Slasher)# +311215#Glacier Flower Spell(Rolling Cutter)# +311216#Glacier Flower Spell(Counter Slash)# +311217#Glacier Flower Spell(Cross Impact)# +311218#Glacier Flower Spell(Fatal Menace)# +311219#Glacier Flower Spell(Triangle Shot)# +311220#Glacier Flower Spell(Feint Bomb)# +311221#Glacier Flower Spell(Shadow Spell)# +311222#Glacier Flower Spell(Elemental Spell)# +311223#Glacier Flower Spell(Soul Expansion)# +311224#Glacier Flower Spell(Comet)# +311225#Glacier Flower Spell(Psychic Wave)# +311226#Glacier Flower Spell(Diamond Dust)# +311227#Glacier Flower Spell(Varetyr Spear)# +311228#Glacier Flower Spell(Earth Grave)# +311229#Glacier Flower Spell(Poison Buster)# +311230#Glacier Flower Spell(Adoramus)# +311231#Glacier Flower Spell(Judex)# +311232#Glacier Flower Spell(Duple Light)# +311233#Glacier Flower Spell(Tiger Cannon)# +311234#Glacier Flower Spell(Rampage Blaster)# +311235#Glacier Flower Spell(Sky Net Blow)# +311236#Glacier Flower Spell(Ride in Lightning)# +311237#Glacier Flower Spell(Knuckle Arrow)# +311238#Glacier Flower Spell(Aimed Bolt)# +311239#Glacier Flower Spell(Arrow Storm)# +311240#Glacier Flower Spell(Warg Strike)# +311241#Glacier Flower Spell(Severe Rainstorm)# +311242#Glacier Flower Spell(Metallic Sound)# +311243#Glacier Flower Spell(Reverberation)# +311244#Glacier Flower Spell(Prominence Burst)# +311245#Glacier Flower Spell(Moon Kick)# +311246#Glacier Flower Spell(Flash Falling)# +311247#Glacier Flower Spell(Espa)# +311248#Glacier Flower Spell(Eswhoo)# +311249#Glacier Flower Spell(Curse Explosion)# +311250#Glacier Flower Spell(Fire Dance)# +311251#Glacier Flower Spell(Hammer of God)# +311252#Glacier Flower Spell(Dragon Tail)# +311253#Glacier Flower Spell(Storm Buster)# +311254#Glacier Flower Spell(Round Trip)# +311255#Glacier Flower Spell(Cross Slash)# +311256#Glacier Flower Spell(Exploding Flake Wind)# +311257#Glacier Flower Spell(Flame Ice Wind)# +311258#Glacier Flower Spell(Splash Explosion)# +311259#Glacier Flower Spell(Swirling Petal)# +311260#Glacier Flower Spell(Silvervine Stem Spear)# +311261#Glacier Flower Spell(Catnip Meteor)# +311262#Glacier Flower Spell(Lunatic Carrot Beat)# +311263#Glacier Flower Spell(Picky Peck)# +311264#Glacier Flower Spell(Spirit of Savage)# +311265#Glacier Flower Spell(Holy Cross)# +311266#Glacier Flower Spell(Back Stab)# +311267#Glacier Flower Spell(Shield Boomerang)# +311268#Glacier Flower Spell(Lord of Vermilion)# +311269#Glacier Flower Spell(Jupital Thunder)# +311270#Glacier Flower Spell(Meteor Storm)# +311271#Glacier Flower Spell(Storm Gust)# +311272#Glacier Flower Spell(Servant Weapon)# +311273#Glacier Flower Spell(Hack and Slasher)# +311274#Glacier Flower Spell(Madness Crusher)# +311275#Glacier Flower Spell(Storm Slash)# +311276#Glacier Flower Spell(Overslash)# +311277#Glacier Flower Spell(Shield Shooting)# +311278#Glacier Flower Spell(Cross Rain)# +311279#Glacier Flower Spell(Axe Stomp)# +311280#Glacier Flower Spell(Acidified Zone)# +311281#Glacier Flower Spell(Savage Impact)# +311282#Glacier Flower Spell(Eternal Slash)# +311283#Glacier Flower Spell(Impact Crater)# +311285#Glacier Flower Spell(Abyss Dagger)# +311286#Glacier Flower Spell(Chain Reaction Shot)# +311287#Glacier Flower Spell(Frenzy Shot)# +311288#Glacier Flower Spell(Abyss Square)# +311289#Glacier Flower Spell(Deft Stab)# +311290#Glacier Flower Spell(Flare Magic)# +311291#Glacier Flower Spell(Crystal Magic)# +311292#Glacier Flower Spell(Storm Magic)# +311293#Glacier Flower Spell(Rock Magic)# +311294#Glacier Flower Spell(Illusion Soul Magic)# +311295#Glacier Flower Spell(Diamond Storm)# +311296#Glacier Flower Spell(Conflagration)# +311297#Glacier Flower Spell(Lightning Land)# +311298#Glacier Flower Spell(Terra Drive)# +311299#Glacier Flower Spell(Venom Swamp)# +311300#Glacier Flower Spell(Framen)# +311301#Glacier Flower Spell(Arbitrium)# +311302#Glacier Flower Spell(Petitio)# +311303#Glacier Flower Spell(Faith)# +311304#Glacier Flower Spell(Judgement)# +311305#Glacier Flower Spell(Extermination)# +311306#Glacier Flower Spell(Explosion Blaster)# +311307#Glacier Flower Spell(Hawk)# +311308#Glacier Flower Spell(Gale Storm)# +311309#Glacier Flower Spell(Crescive Bolt)# +311310#Glacier Flower Spell(Metallic Fury)# +311311#Glacier Flower Spell(Rhythm Shooting)# +311312#Glacier Flower Spell(Rose Blossom)# +311313#Glacier Flower Spell(Sun)# +311314#Glacier Flower Spell(Moon)# +311315#Glacier Flower Spell(Star)# +311316#Glacier Flower Spell(Talisman of Blue Dragon)# +311317#Glacier Flower Spell(Talisman of White Tiger)# +311318#Glacier Flower Spell(Talisman of Red Phoenix)# +311319#Glacier Flower Spell(Talisman of Black Tortoise)# +311320#Glacier Flower Spell(Exorcism of Malicious Soul)# +311321#Glacier Flower Spell(Shadow)# +311322#Glacier Flower Spell(Huuma Shuriken)# +311323#Glacier Flower Spell(Kunai)# +311324#Glacier Flower Spell(Ninja Cannon)# +311325#Glacier Flower Spell(The Vigilante at Night)# +311326#Glacier Flower Spell(Only One Bullet)# +311327#Glacier Flower Spell(Spiral Shooting)# +311328#Glacier Flower Spell(Magazine for One)# +311329#Glacier Flower Spell(Wild Fire)# +311330#Glacier Flower Spell(Grenade)# +311331#Glacier Flower Spell(Chulho)# +311332#Glacier Flower Spell(Hogogong Strike)# +311333#Glacier Flower Spell(Hyunrok Breeze)# +311334#Glacier Flower Spell(Hyunrok Cannon)# +311335#Glacier Flower Spell(Double Bowling Bash)# +311336#Glacier Flower Spell(Mega Sonic Blow)# +311337#Glacier Flower Spell(Shield Chain Rush)# +311338#Glacier Flower Spell(Spiral Pierce Max)# +311339#Glacier Flower Spell(Meteor Thunder)# +311340#Glacier Flower Spell(Hell's Jack)# +311341#Glacier Flower Spell(Napalm Gravitation)# +311342#Glacier Flower Spell(ATK)# +311343#Glacier Flower Spell(MATK)# +311344#Glacier Flower Spell(CRI)# +311345#Glacier Flower Spell(Variable Casting)# +311346#Glacier Flower Spell(Attack Speed)# +311347#Glacier Flower Spell(After Skill Delay)# +311348#Glacier Flower Spell(Physical - Race)# +311349#Glacier Flower Spell(Magical - Race)# +311350#Glacier Flower Spell(Physical - Size)# +311351#Glacier Flower Spell(Magical - Size)# +311352#Glacier Flower Spell(Physical - Element)# +311353#Glacier Flower Spell(Magical - Element)# +311354#Critical Stone(Dual)# +311355#Concentration Stone(Dual)# +311356#Archbishop Stone(Upper)# +311357#Archbishop Stone(Mid)# +311358#Archbishop Stone(Lower)# +311359#Ranger Stone(Upper)# +311360#Ranger Stone(Mid)# +311361#Ranger Stone(Lower)# +311362#Shadow Chaser Stone(Upper)# +311363#Shadow Chaser Stone(Mid)# +311364#Shadow Chaser Stone(Lower)# +311367#Gray Spell(Warrior) Lv1# +311368#Gray Spell(Warrior) Lv2# +311369#Gray Spell(Warrior) Lv3# +311370#Gray Spell(Shooter) Lv1# +311371#Gray Spell(Shooter) Lv2# +311372#Gray Spell(Shooter) Lv3# +311373#Gray Spell(Magic) Lv1# +311374#Gray Spell(Magic) Lv2# +311375#Gray Spell(Magic) Lv3# +311376#Gray Spell(Fighter) Lv1# +311377#Gray Spell(Fighter) Lv2# +311378#Gray Spell(Fighter) Lv3# +311379#The Vigilante at Night Tuning Device# +311380#Magazine for One Tuning Device# +311381#Wild Fire Tuning Device# +311382#Huuma Shuriken - Grasp Tuning Device# +311384#Expert Fighter Lv1# +311385#Expert Fighter Lv2# +311386#Expert Fighter Lv3# +311387#Expert Fighter Lv4# +311388#Expert Fighter Lv5# +311389#Expert Magician Lv1# +311390#Expert Magician Lv2# +311391#Expert Magician Lv3# +311392#Expert Magician Lv4# +311393#Expert Magician Lv5# +311394#After Attack Delay Lv5# +311395#Hit Plus Lv1# +311396#Hit Plus Lv2# +311397#Hit Plus Lv3# +311398#Hit Plus Lv4# +311399#Hit Plus Lv5# +311400#Caster Lv1# +311401#Caster Lv2# +311402#Caster Lv3# +311403#Caster Lv4# +311404#Caster Lv5# +311425#Spell Stone(Dual)# +311426#Spell Magic Attack Stone(Garment)# +311427#Sura Stone(Upper)# +311428#Sura Stone(Mid)# +311429#Sura Stone(Lower)# +311430#Mechanic Stone(Upper)# +311431#Mechanic Stone(Mid)# +311432#Mechanic Stone(Lower)# +311433#Guillotine Cross Stone(Upper)# +311434#Guillotine Cross Stone(Mid)# +311435#Guillotine Cross Stone(Lower)# +311817#Warrior Orb 1Lv# +311818#Warrior Orb 2Lv# +311819#Warrior Orb 3Lv# +312159#Mystery of the Snake God (Def) 2Lv# +312160#Mystery of the Snake God (Def) 3Lv# +312161#Mystery of the Snake God (Def) 4Lv# +312171#Mystery of the Snake God (Atk) 4Lv# +312172#Mystery of the Snake God (Atk) 5Lv# +312173#Mystery of the Snake God (Atk) 6Lv# +312181#Mystery of the Snake God (Matk) 4Lv# +312182#Mystery of the Snake God (Matk) 5Lv# +312183#Mystery of the Snake God (Matk) 6Lv# +400000#Unidentified Ribbon# +400001#Victory Wing Ear# +400002#Victory Wing Ear# +400003#Unidentified Ribbon# +400011#Officer's Hat# +400016#Turkey Hat# +400020#Costume Beachball# +400021#Red Clark Casquette# +400022#Ignis Cap Type K# +400023#The Agony of Thanatos# +400043#Fallen Angel Hairband# +400044#Phantom of Masquerade# +400045#Unidentified Hat# +400046#Costume Pierced Apple# +400049#Stripe Hat# +400053#Unidentified Hat# +400054#Great Magician's Ceremonial Crown# +400055#Unidentified Hat# +400056#Unidentified Ribbon# +400057#Unidentified Hat# +400059#Scorpio Celestial Coronet# +400061#Sagittarius Diadem Type K# +400073#Costume Romantic Rose# +400074#Unidentified Hat# +400076#Unidentified Hat# +400078#Goral Crown# +400079#Unidentified Hat# +400094#Unidentified Hat# +400095#Unidentified Hat# +400097#Unidentified Hat# +400098#Unidentified Hat# +400099#Unidentified Hat# +400115#Costume Angeling Bread Hat# +400116#Unidentified Hat# +400117#Unidentified Hat# +400118#Unidentified Hat# +400119#Unidentified Hat# +400120#Unidentified Hat# +400121#Unidentified Hat# +400124#Costume Majestic Goat of Dawn# +400127#Unidentified Hat# +400128#Unidentified Hat# +400134#Unidentified Hat# +400135#Unidentified Hat# +400137#Unidentified Hat# +400138#Unidentified Hat# +400139#Unidentified Hat# +400140#Unidentified Hat# +400141#Unidentified Hat# +400142#Unidentified Hat# +400145#Unidentified Hat# +400146#Unidentified Hat# +400147#Unidentified Hat# +400148#Unidentified Ribbon# +400149#Unidentified Ribbon# +400150#Unidentified Hat# +400151#Unidentified Hat# +400152#Unidentified Hat# +400153#Unidentified Hat# +400154#Unidentified Hat# +400155#Unidentified Hat# +400156#Unidentified Hat# +400160#Unidentified Hat# +400163#Costume Whale Cap# +400178#Unidentified Helmet# +400179#Unidentified Helmet# +400180#Unidentified Helmet# +400181#Unidentified Helmet# +400188#Unidentified Hairband# +400189#Unidentified Hat# +400190#Unidentified Hat# +400191#Unidentified Hat# +400192#Unidentified Hat# +400197#Costume Sweet Chef Hat# +400198#Unidentified Hat# +400199#Unidentified Hat# +400200#Unidentified Hat# +400201#Unidentified Hat# +400204#Unidentified Ribbon# +400213#Faith of Yggdrasil# +400216#Unidentified Hat# +400217#Unidentified Hat# +400218#Unidentified Hat# +400219#Unidentified Hat# +400225#Costume Fluffy Rabbit Cape# +400226#Unidentified Hat# +400227#Unidentified Hat# +400228#Unidentified Hat# +400229#Unidentified Hat# +400230#Unidentified Hat# +400231#Unidentified Hat# +400232#Unidentified Hat# +400233#Unidentified Hat# +400234#Unidentified Hat# +400235#Unidentified Hat# +400236#Unidentified Hat# +400237#Unidentified Hat# +400238#Unidentified Hat# +400239#Unidentified Hat# +400240#Unidentified Hat# +400241#Unidentified Hat# +400242#Unidentified Hat# +400243#Unidentified Hat# +400244#Unidentified Hat# +400245#Unidentified Hat# +400246#Unidentified Hat# +400253#Costume Macaron Bunny Hat# +400254#Costume Gothic Heart Wing Band# +400261#Unidentified Helmet# +400262#Unidentified Helmet# +400263#Unidentified Hat# +400264#Unidentified Hat# +400265#Unidentified Helmet# +400266#Unidentified Hat# +400267#Unidentified Hat# +400272#Costume Flowers Prayer# +400278#Ribbon# +400280#Unidentified Ribbon# +400305#Unidentified Hat# +400311#Costume Helmet of Light and Darkness# +400343#Costume Fox Bamboo Hat# +400344#Angel Of Happiness# +400418#Nymph Green Sapphire# +400450#Hat# +400478#Red Commando Beret# +400512#Hat of Desert# +410000#Unidentified Hat# +410005#Costume Magic Heir# +410006#Costume Sudden Wealth# +410012#EXP Advisor# +410013#EXP Advisor# +410016#Battle Processor# +410017#Battle Processor# +410018#Unidentified Hat# +410019#Unidentified Hat# +410020#Unidentified Hat# +410029#Unidentified Ribbon# +410047#Ribbon# +410048#Costume Tiger# +410049#Costume Blinking Golden Eyes# +410051#Costume Falling Snow# +410054#Long Ribbon# +410055#Floating Parasol# +410056#Costume Poulet# +410061#Costume Deviruchi Apron# +410062#Carefree Face# +410063#Cherry Ribbon# +410068#Costume Fish Marche# +410069#Unidentified Ribbon# +410079#Deep Blue Sunglasses# +410080#Deep Blue Sunglasses# +410081#Costume Released Ground# +410087#Unidentified Ribbon# +410091#Unidentified Ribbon# +410092#Unidentified Ribbon# +410093#Unidentified Ribbon# +410094#Unidentified Ribbon# +410095#Costume White Cat On Shoulder# +410099#Costume Avenger# +410103#Unidentified Ribbon# +410122#Headgear# +410126#Costume Professor Mini Glasses# +410127#Ribbon# +410131#Unidentified Ribbon# +410132#Unidentified Ribbon# +410145#Unidentified Ribbon# +410146#Unidentified Ribbon# +410147#Unidentified Ribbon# +410148#Unidentified Ribbon# +410149#Unidentified Ribbon# +410157#Ribbon# +410200#Costume Butler Bunny# +410231#Ribbon# +410261#Costume Headgear# +410277#Costume Ragdoll# +410279#Costume Headgear# +410290#Costume Middle Headgear# +420003#CD in Mouth Type K# +420010#Unidentified Ribbon# +420016#Costume Flying Katashiro# +420017#Unidentified Ribbon# +420018#Unidentified Ribbon# +420019#Unidentified Ribbon# +420020#Unidentified Ribbon# +420021#Unidentified Ribbon# +420022#Unidentified Ribbon# +420025#Unidentified Ribbon# +420027#Ribbon# +420029#Unidentified Ribbon# +420030#Falconer Flute# +420031#Ninja's Blue Mask# +420034#Unidentified Ribbon# +420035#Unidentified Ribbon# +420036#Unidentified# +420037#Unidentified Ribbon# +420038#Unidentified Ribbon# +420039#Unidentified Ribbon# +420040#Unidentified Ribbon# +420041#Unidentified Ribbon# +420042#Unidentified Ribbon# +420043#Unidentified Ribbon# +420044#Costume Sailor's White Collar# +420046#Costume Royal Mantle# +420047#Costume Honorable Knight Cloak# +420048#Costume White Coronet# +420050#Hair Bun Wave# +420053#Ribbon# +420055#Unidentified Ribbon# +420057#Unidentified Ribbon# +420058#Unidentified Ribbon# +420059#Unidentified Ribbon# +420060#Unidentified Ribbon# +420061#Unidentified Ribbon# +420062#Unidentified Ribbon# +420066#Unidentified Ribbon# +420067#Costume Hopping Twin Pigtail# +420069#Ribbon# +420071#Costume Feather Stola# +420072#Costume Knitting Low Twin(White)# +420074#Unidentified Ribbon# +420076#Unidentified Ribbon# +420077#Ribbon# +420079#Costume Inner Color Long# +420081#Costume Carrot in Mouth# +420082#Costume Side Roll Pony# +420092#Unidentified Ribbon# +420095#Unidentified Ribbon# +420096#Unidentified Ribbon# +420097#Unidentified Ribbon# +420098#Unidentified Ribbon# +420099#Unidentified Ribbon# +420100#Unidentified Ribbon# +420101#Unidentified Ribbon# +420102#Unidentified Ribbon# +420104#Costume Wild Long Hair# +420107#Costume Twinkle Twin# +420108#Costume Chocolate Bomb# +420109#Costume Charm of Flame Heart# +420113#Unidentified Ribbon# +420114#Unidentified Ribbon# +420115#Unidentified Ribbon# +420116#Unidentified Ribbon# +420117#Unidentified Ribbon# +420118#Unidentified Ribbon# +420119#Unidentified Ribbon# +420120#Unidentified Ribbon# +420121#Unidentified Ribbon# +420122#Unidentified Ribbon# +420123#Unidentified Ribbon# +420124#Unidentified Ribbon# +420125#Unidentified Ribbon# +420126#Unidentified Ribbon# +420127#Unidentified Ribbon# +420128#Unidentified Ribbon# +420152#Costume Master of Light and Darkness# +420248#C_OneEyedJack# +436000#Unidentified Mask# +436001#Unidentified Mask# +436002#Unidentified Mask# +436003#Unidentified Mask# +436004#Unidentified Mask# +436005#Unidentified Mask# +436006#Unidentified Mask# +436007#Unidentified Hat# +436008#Big Tiger Hat# +440000#Unidentified Hat# +440002#Unidentified Hat# +440003#Costume Novice Rabbit Hood# +440006#Unidentified Hat# +440007#Unidentified Hat# +440009#Unidentified Hat# +440010#Unidentified Hat# +450000#IDTest Armor# +450001#Attacker Booster Plate# +450002#Elemental Booster Robe# +450003#Defiant Booster Robe# +450004#Range Booster Suit# +450018#Noblesse Breath Armor# +450019#Noblesse Knight Armor# +450020#Noblesse Spear Armor# +450021#Noblesse Genesis Armor# +450022#Noblesse Sharp Suit# +450023#Noblesse Aim Suit# +450024#Noblesse Severe Suit# +450025#Noblesse Reverberation Suit# +450026#Noblesse Adora Robe# +450027#Noblesse Duple Robe# +450028#Noblesse Tornado Armor# +450029#Noblesse Vulcan Armor# +450030#Noblesse Cart Cannon Suit# +450031#Noblesse Cart Tornado Suit# +450032#Noblesse Rolling Suit# +450033#Noblesse Assassin Suit# +450034#Noblesse Fatal Suit# +450035#Noblesse Stalker Suit# +450036#Noblesse Picky Robe# +450037#Noblesse Catnip Robe# +450038#Noblesse Trip Suit# +450039#Noblesse Fire Rain Suit# +450040#Noblesse Crimson Robe# +450041#Noblesse Frost Robe# +450042#Noblesse Psychic Robe# +450043#Noblesse Dust Robe# +450044#Noblesse Sun Suit# +450045#Noblesse Full Moon Suit# +450046#Noblesse Ninja Suit# +450047#Noblesse Kunai Suit# +450048#Noblesse Eswoo Robe# +450049#Noblesse Curse Robe# +450050#Noblesse Knuckle Suit# +450051#Noblesse Tiger Cannon Suit# +450052#Imperial Breath Armor# +450053#Imperial Knight Armor# +450054#Imperial Spear Armor# +450055#Imperial Genesis Armor# +450056#Imperial Sharp Suit# +450057#Imperial Aim Suit# +450058#Imperial Severe Suit# +450059#Imperial Reverberation Suit# +450060#Imperial Adora Robe# +450061#Imperial Duple Robe# +450062#Imperial Knuckle Suit# +450063#Imperial Tiger Cannon Suit# +450064#Imperial Tornado Armor# +450065#Imperial Vulcan Armor# +450066#Imperial Cart Cannon Suit# +450067#Imperial Cart Tornado Suit# +450068#Imperial Rolling Suit# +450069#Imperial Assassin Suit# +450070#Imperial Fatal Suit# +450071#Imperial Stalker Suit# +450072#Imperial Picky Robe# +450073#Imperial Catnip Robe# +450074#Imperial Trip Suit# +450075#Imperial Fire Rain Suit# +450076#Imperial Crimson Robe# +450077#Imperial Frost Robe# +450078#Imperial Psychic Robe# +450079#Imperial Dust Robe# +450080#Imperial Sun Suit# +450081#Imperial Full Moon Suit# +450082#Imperial Ninja Suit# +450083#Imperial Kunai Suit# +450084#Imperial Eswoo Robe# +450085#Imperial Curse Robe# +450086#Grace Breath Armor# +450087#Grace Knight Armor# +450088#Grace Spear Armor# +450089#Grace Genesis Armor# +450090#Grace Sharp Suit# +450091#Grace Aim Suit# +450092#Grace Severe Suit# +450093#Grace Reverberation Suit# +450094#Grace Adora Robe# +450095#Grace Duple Robe# +450096#Grace Knuckle Suit# +450097#Grace Tiger Cannon Suit# +450098#Grace Tornado Armor# +450099#Grace Vulcan Armor# +450100#Grace Cart Cannon Suit# +450101#Grace Cart Tornado Suit# +450102#Grace Rolling Suit# +450103#Grace Assassin Suit# +450104#Grace Fatal Suit# +450105#Grace Stalker Suit# +450106#Grace Picky Robe# +450107#Grace Catnip Robe# +450108#Grace Trip Suit# +450109#Grace Fire Rain Suit# +450110#Grace Crimson Robe# +450111#Grace Frost Robe# +450112#Grace Psychic Robe# +450113#Grace Dust Robe# +450114#Grace Sun Suit# +450115#Grace Full Moon Suit# +450116#Grace Ninja Suit# +450117#Grace Kunai Suit# +450118#Grace Eswoo Robe# +450119#Grace Curse Robe# +450121#Noblesse Super Novice Suit# +450122#Noblesse Super Novice Robe# +450123#Imperial Super Novice Suit# +450124#Imperial Super Novice Robe# +450125#Grace Super Novice Suit# +450126#Grace Super Novice Robe# +450127#Automatic Armor Type A# +450128#Automatic Armor Type B# +450131#Fallen Angel Armor# +450132#Magical Cloth# +450143#Samael Dress# +450144#Unidentified Armor# +450145#Unidentified Armor# +450146#Unidentified Armor# +450147#Unidentified Armor# +450148#Unidentified Armor# +450149#Unidentified Armor# +450150#Unidentified Armor# +450151#Unidentified Armor# +450164#Unidentified Armor# +450166#Unidentified Armor# +450167#Unidentified Armor# +450168#Unidentified Armor# +450169#Unidentified Armor# +450170#Unidentified Armor# +450171#Unidentified Armor# +450172#Unidentified Armor# +450173#Unidentified Armor# +450174#Unidentified Armor# +450177#Unidentified Armor# +450178#Unidentified Armor# +450179#Celine Dress# +450182#Unidentified Armor# +450183#Unidentified Armor# +450184#Unidentified Armor# +450185#Unidentified Armor# +450186#Unidentified Armor# +450191#Unidentified Armor# +450192#Unidentified Armor# +450198#Unidentified Armor# +450199#Unidentified Armor# +450200#Unidentified Armor# +450201#Unidentified Armor# +450202#Unidentified Armor# +450203#Unidentified Armor# +450206#Unidentified Armor# +450207#Unidentified Armor# +450217#Unidentified Armor# +460005#Unidentified Shield# +460006#Unidentified Shield# +460010#Unidentified Shield# +460012#Unidentified Shield# +460013#Unidentified Shield# +460017#Unidentified Shield# +460018#Unidentified Shield# +460020#Unidentified Shield# +460021#Unidentified Shield# +460022#Unidentified Shield# +470000#Attacker Booster Greaves# +470001#Elemental Booster Shoes# +470002#Defiant Booster Shoes# +470003#Range Booster Boots# +470016#Noblesse Attack Boots# +470017#Noblesse Magic Boots# +470018#Imperial Attack Boots# +470019#Imperial Magic Boots# +470020#Grace Attack Boots# +470021#Grace Magic Boots# +470022#Automatic Leg Type A# +470023#Automatic Leg Type B# +470027#Juggernaut# +470033#Elemental Boots# +470054#Unidentified Shoes# +470055#Unidentified Shoes# +470066#Unidentified Shoes# +470067#Unidentified Shoes# +470068#Unidentified Shoes# +470069#Unidentified Shoes# +470070#Unidentified Shoes# +470071#Unidentified Shoes# +470072#Unidentified Shoes# +470073#Unidentified Shoes# +470074#Unidentified Shoes# +470076#Unidentified Shoes# +470077#Unidentified Shoes# +470087#Unidentified Shoes# +470088#Unidentified Shoes# +470093#Unidentified Shoes# +470094#Unidentified Shoes# +470107#Unidentified Shoes# +470108#Unidentified Shoes# +470109#Unidentified Shoes# +470110#Unidentified Shoes# +470111#Unidentified Shoes# +470115#Unidentified Shoes# +470116#Unidentified Shoes# +470122#Unidentified Shoes# +480000#Attacker Booster Manteau# +480001#Elemental Booster Muffler# +480002#Defiant Booster Muffler# +480003#Range Booster Manteau# +480012#Noblesse Attack Manteau# +480014#Noblesse Magic Manteau# +480016#Imperial Attack Manteau# +480017#Imperial Magic Manteau# +480018#Grace Attack Manteau# +480019#Grace Magic Manteau# +480020#Automatic Engine Wing Type A# +480021#Automatic Engine Wing Type B# +480045#Guardian Soul# +480052#Costume Sakura Ribbon# +480054#Unidentified Garment# +480056#Unidentified Garment# +480058#Unidentified Garment# +480061#Unidentified Garment# +480062#Unidentified Garment# +480063#Unidentified Garment# +480065#Unidentified Garment# +480066#Unidentified Garment# +480067#Unidentified Garment# +480068#Unidentified Garment# +480069#Costume Angel Wings# +480071#Unidentified Garment# +480083#Unidentified Garment# +480090#Unidentified Garment# +480091#Unidentified Garment# +480093#Costume Scepter# +480095#Costume Giant White Rabbit# +480096#Costume Haori Coat# +480097#Costume Snow Powder# +480103#Unidentified Garment# +480104#Unidentified Garment# +480105#Unidentified Garment# +480106#Unidentified Garment# +480107#Costume Kings Twin Sword# +480110#Adventure Cat's Bag# +480118#Unidentified Garment# +480122#Costume Samba Carnival Feather# +480123#Costume Nydhog's Rumor# +480124#Unidentified Garment# +480125#Unidentified Garment# +480126#Costume Giant Shark# +480129#Costume Triple Icecream# +480130#Hood# +480131#Costume Swirling Flame# +480136#Unidentified Garment# +480137#Costume Filir Bag# +480138#Unidentified Garment# +480144#Unidentified Garment# +480145#Unidentified Garment# +480146#Unidentified Garment# +480147#Unidentified Garment# +480148#Unidentified Garment# +480152#Costume Fork Spoon Set# +480159#Unidentified Garment# +480160#Unidentified Garment# +480167#Costume Heart Stick Chocolate# +480174#Unidentified Garment# +480177#Costume Clutch Bouquet# +480193#Enforcer cape# +480197#Unidentified Garment# +480201#Garment# +480207#Hood# +480226#Unidentified Garment# +480411#Costume Garment# +480420#Costume Garment# +480246#Unidentified Garment# +480286#Costume Silver Snake God's Illusion# +480297#Costume Love Bunny Cloak# +480310#Costume Giant Mad Bunny# +480311#Costume Garment# +480316#Unidentified Garment# +480333#Medical Cape# +480360#Costume Giant Shuriken# +480361#Costume Garment# +480368#Costume Garment# +490004#Attacker Booster Ring# +490005#Elemental Booster Earring# +490006#Defiant Booster Earring# +490007#Range Booster Brooch# +490013#Devil Ring# +490014#Noblesse Attack Ring# +490015#Noblesse Magic Ring# +490016#Unidentified Accessory# +490017#Imperial Attack Ring# +490018#Imperial Magic Ring# +490019#Grace Attack Ring# +490020#Grace Magic Ring# +490022#Unidentified Accessory# +490024#Automatic Booster R# +490025#Automatic Booster L# +490026#Automatic Battle Chip R# +490027#Automatic Battle Chip L# +490029#Unidentified Accessory# +490033#Fallen Angel's Tear# +490035#Unidentified Accessory# +490036#Unidentified Accessory# +490038#Sixth Sense Ring# +490044#Unidentified Accessory# +490045#Unidentified Accessory# +490046#Unidentified Accessory# +490047#Unidentified Accessory# +490048#Unidentified Accessory# +490049#Unidentified Accessory# +490050#Unidentified Accessory# +490051#Unidentified Accessory# +490052#Unidentified Accessory# +490053#Unidentified Accessory# +490054#Unidentified Accessory# +490055#Unidentified Accessory# +490056#Unidentified Accessory# +490057#Unidentified Accessory# +490058#Unidentified Accessory# +490059#Unidentified Accessory# +490060#Unidentified Accessory# +490061#Unidentified Accessory# +490062#Unidentified Accessory# +490063#Unidentified Accessory# +490064#Unidentified Accessory# +490065#Unidentified Accessory# +490066#Unidentified Accessory# +490067#Unidentified Accessory# +490069#Unidentified Accessory# +490070#Unidentified Accessory# +490072#Unidentified Accessory# +490073#Unidentified Accessory# +490074#Unidentified Accessory# +490075#Unidentified Accessory# +490076#Ring of Nature# +490077#Unidentified Accessory# +490078#Unidentified Accessory# +490079#Soul Expansion Ring# +490083#Themis Balance# +490087#Unidentified Accessory# +490090#Unidentified Accessory# +490091#Unidentified Accessory# +490092#Unidentified Accessory# +490093#Unidentified Accessory# +490098#Ring of Pazuzu# +490099#Unidentified Accessory# +490100#Unidentified Accessory# +490101#Unidentified Accessory# +490106#Unidentified Accessory# +490107#Unidentified Accessory# +490108#Unidentified Accessory# +490109#Unidentified Accessory# +490120#Unidentified Accessory# +490121#Unidentified Accessory# +490122#Unidentified Accessory# +490123#Unidentified Accessory# +490124#Unidentified Accessory# +490125#Unidentified Accessory# +490126#Unidentified Accessory# +490127#Unidentified Accessory# +490128#Unidentified Accessory# +490129#Unidentified Accessory# +490131#Unidentified Accessory# +490132#Unidentified Accessory# +490133#Unidentified Accessory# +490134#Unidentified Accessory# +490135#Unidentified Accessory# +490136#Unidentified Accessory# +490137#Unidentified Accessory# +490152#Unidentified Accessory# +490153#Unidentified Accessory# +490155#Unidentified Accessory# +490156#Unidentified Accessory# +490159#Unidentified Accessory# +490160#Unidentified Accessory# +490161#Unidentified Accessory# +490162#Unidentified Accessory# +490163#Unidentified Accessory# +490164#Unidentified Accessory# +490165#Unidentified Accessory# +490166#Unidentified Accessory# +490167#Unidentified Accessory# +490171#Unidentified Accessory# +490172#Unidentified Accessory# +490176#Unidentified Accessory# +490177#Unidentified Accessory# +490178#Unidentified Accessory# +490179#Unidentified Accessory# +490180#Unidentified Accessory# +490181#Unidentified Accessory# +490184#Unidentified Accessory# +490185#Unidentified Accessory# +490186#Unidentified Accessory# +490187#Unidentified Accessory# +490188#Unidentified Accessory# +490220#Unidentified Accessory# +490236#Unidentified Accessory# +490267#Shadow Ring# +490282#Kenshi Gauntlet# +490295#Unidentified Accessory# +490351#Assassin Amulet# +490378#Unidentified Accessory# +490399#Boxing Glove# +490537#Unidentified Accessory# +500000#IDTest Weapon# +500001#Booster Sword# +500003#Light Blade# +500004#Slate Sword# +500007#Hypocrisy Machine# +500008#Invidia Bundle# +500013#Awakened Red Lotus Sword# +500014#Awakened Slate Sword# +500015#Unidentified Sword# +500016#Unidentified Sword# +500017#Awakened Light Blade# +500018#Unidentified Sword# +500019#Unidentified Sword# +500020#Unidentified Sword# +500024#Unidentified Sword# +500025#Unidentified Sword# +500026#Unidentified Sword# +500027#Unidentified Sword# +500028#Unidentified Sword# +500030#Unidentified Sword# +500032#Unidentified Sword# +500033#Unidentified Sword# +500034#Unidentified Sword# +500035#Unidentified Sword# +500036#Unidentified Sword# +500037#Unidentified Sword# +500038#Unidentified Sword# +500039#Unidentified Sword# +500040#Unidentified Sword# +500042#Unidentified Sword# +500043#Unidentified Sword# +500044#Unidentified Dagger# +500045#Unidentified Sword# +500046#Unidentified Sword# +500049#Unidentified Sword# +500050#Unidentified Sword# +500051#Unidentified Sword# +510001#Booster Dagger# +510002#Booster Nindo# +510006#Fatalist# +510008#Wrath Rack# +510009#Gula Teeth# +510017#Unidentified Dagger# +510018#Unidentified Dagger# +510019#Awakened Madogum# +510020#Awakened Fatalist# +510021#Unidentified Dagger# +510022#Awakened Kiri no Tsuyu# +510026#Unidentified Dagger# +510027#Unidentified Dagger# +510028#Unidentified Dagger# +510030#Unidentified Dagger# +510032#Unidentified Dagger# +510033#Unidentified Dagger# +510034#Unidentified Dagger# +510035#Unidentified Dagger# +510036#Unidentified Dagger# +510037#Unidentified Dagger# +510038#Unidentified Dagger# +510039#Unidentified Dagger# +510040#Unidentified Dagger# +510041#Unidentified Dagger# +510049#Unidentified Dagger# +510050#Unidentified Dagger# +510051#Unidentified Dagger# +510052#Unidentified Dagger# +510053#Unidentified Dagger# +510054#Unidentified Dagger# +510055#Unidentified Dagger# +510056#Unidentified Dagger# +510057#Unidentified Dagger# +510060#Unidentified Dagger# +510061#Unidentified Dagger# +510062#Unidentified Dagger# +510066#Unidentified Dagger# +510070#Blessed Knife# +510071#Awakened Blessed Knife# +510072#Unidentified Dagger# +510501#[GENESIS] Dagger# +520000#Booster Axe# +520002#Pride Steel# +520008#Unidentified Axe# +520009#Unidentified Axe# +520010#Unidentified Axe# +520011#Unidentified Axe# +520012#Unidentified Axe# +520017#Unidentified Axe# +530000#Booster Spear# +530002#Gluttony Stick# +530005#Unidentified Spear# +530006#Awakened Aquatic Spear# +530009#Unidentified Spear# +530010#Unidentified Spear# +530012#Unidentified Spear# +530013#Unidentified Spear# +530014#Unidentified Spear# +530015#Unidentified Spear# +530017#Unidentified Spear# +530018#Unidentified Spear# +530019#Unidentified Spear# +530023#Unidentified Spear# +530025#Unidentified Spear# +530031#Unidentified Spear# +540000#Booster Spellbook# +540001#Unidentified Book# +540004#Sloth Text# +540005#Sloth Bible# +540009#Unidentified Book# +540010#Awakened One Sky One Sun# +540011#Awakened Exorcist's Bible# +540013#Unidentified Book# +540014#Unidentified Book# +540015#Unidentified Book# +540019#Unidentified Book# +540020#Unidentified Book# +540021#Unidentified Book# +540022#Unidentified Book# +540023#Unidentified Book# +540024#Unidentified Book# +540025#Unidentified Book# +540026#Unidentified Book# +540027#Unidentified Book# +540028#Unidentified Book# +540029#Unidentified Book# +540030#Unidentified Book# +540031#Unidentified Book# +540032#Unidentified Book# +540033#Unidentified Book# +540034#Unidentified Book# +540035#Unidentified Book# +540039#Unidentified Book# +540040#Unidentified Book# +540041#Unidentified Book# +540042#Unidentified Book# +540043#Unidentified Book# +540044#Unidentified Book# +540045#Unidentified Book# +540046#Unidentified Book# +540048#Unidentified Book# +540049#Unidentified Book# +540051#Unidentified Book# +540053#Unidentified Book# +540054#Unidentified Book# +540055#Unidentified Book# +550001#Unidentified Staff# +550002#Booster Foxtail# +550006#Safety Foxtail# +550007#Chilling Cane# +550008#Greed Wand# +550009#Addiction Plant# +550010#Unidentified Staff# +550011#Unidentified Staff# +550012#Awakened Shadow Staff# +550013#Awakened Chilling Cane# +550014#Awakened Meowmeow Foxtail# +550015#Awakened Spirit Pendulum# +550019#Unidentified Staff# +550020#Unidentified Staff# +550023#Unidentified Staff# +550024#Unidentified Staff# +550025#Unidentified Staff# +550026#Unidentified Staff# +550027#Unidentified Staff# +550028#Unidentified Staff# +550029#Unidentified Staff# +550030#Unidentified Staff# +550031#Unidentified Staff# +550032#Unidentified Staff# +550033#Unidentified Staff# +550034#Unidentified Staff# +550035#Unidentified Staff# +550036#Unidentified Staff# +550037#Unidentified Staff# +550038#Unidentified Staff# +550039#Unidentified Staff# +550040#Unidentified Staff# +550041#Unidentified Staff# +550042#Unidentified Staff# +550043#Unidentified Staff# +550044#Unidentified Staff# +550045#Unidentified Staff# +550046#Unidentified Staff# +550050#Unidentified Staff# +550051#Unidentified Staff# +550052#Unidentified Staff# +550053#Unidentified Staff# +550054#Unidentified Staff# +550055#Unidentified Staff# +550056#Unidentified Staff# +550057#Unidentified Staff# +550058#Unidentified Staff# +550059#Unidentified Staff# +550060#Unidentified Staff# +550061#Unidentified Staff# +550062#Unidentified Staff# +550063#Unidentified Staff# +550064#Unidentified Staff# +550065#Unidentified Staff# +550066#Unidentified Staff# +550067#Unidentified Staff# +550068#Unidentified Staff# +550069#Unidentified Staff# +550070#Unidentified Staff# +550075#Unidentified Staff# +550076#Unidentified Staff# +550080#Freedom Stick# +550081#Awakened Freedom Stick# +550082#Unidentified Staff# +550088#Unidentified Staff# +560000#Booster Knuckle# +560002#Ray Knuckle# +560004#Ira Fist# +560006#Unidentified Knuckle# +560007#Unidentified Knuckle# +560008#Awakened Iron Nail# +560009#Awakened Ray Knuckle# +560011#Unidentified Knuckle# +560012#Unidentified Knuckle# +560013#Unidentified Knuckle# +560017#Unidentified Knuckle# +560018#Unidentified Knuckle# +560019#Unidentified Knuckle# +560020#Unidentified Knuckle# +560021#Unidentified Knuckle# +560022#Unidentified Knuckle# +560023#Unidentified Knuckle# +560024#Unidentified Knuckle# +560025#Unidentified Knuckle# +560026#Unidentified Knuckle# +560027#Unidentified Knuckle# +560030#Unidentified Knuckle# +560032#Unidentified Knuckle# +560034#Unidentified Knuckle# +560036#Unidentified Knuckle# +570000#Booster Guitar# +570002#Trumpet Shell# +570005#Pigritia Wave# +570008#Unidentified Instrument# +570009#Awakened Trumpet Shell# +570010#Unidentified Instrument# +570012#Unidentified Instrument# +570013#Unidentified Instrument# +570016#Unidentified Instrument# +570017#Unidentified Instrument# +570018#Unidentified Instrument# +570019#Unidentified Instrument# +570020#Unidentified Instrument# +570021#Unidentified Instrument# +570022#Unidentified Instrument# +570023#Unidentified Instrument# +570024#Unidentified Instrument# +570027#Unidentified Instrument# +570028#Unidentified Instrument# +570029#Unidentified Instrument# +580000#Booster Whip# +580002#Barbed Wire Whip# +580005#Pigritia Spark# +580008#Unidentified Whip# +580009#Awakened Barbed Wire Whip# +580010#Unidentified Whip# +580012#Unidentified Whip# +580013#Unidentified Whip# +580016#Unidentified Whip# +580017#Unidentified Whip# +580018#Unidentified Whip# +580019#Unidentified Whip# +580020#Unidentified Whip# +580021#Unidentified Whip# +580022#Unidentified Whip# +580023#Unidentified Whip# +580024#Unidentified Whip# +580027#Unidentified Whip# +580028#Unidentified Whip# +580030#Unidentified Whip# +590000#Booster Maul# +590002#Meteor Striker# +590003#Saint Mace# +590006#Envy Blunt# +590008#Unidentified Mace# +590009#Unidentified Mace# +590010#Unidentified Mace# +590011#Awakened Meteor Striker# +590012#Awakened Saint Hall# +590015#Unidentified Mace# +590016#Unidentified Axe# +590017#Unidentified Mace# +590020#Unidentified Mace# +590021#Unidentified Mace# +590022#Unidentified Mace# +590023#Unidentified Mace# +590024#Unidentified Mace# +590025#Unidentified Mace# +590026#Unidentified Mace# +590027#Unidentified Mace# +590028#Unidentified Mace# +590029#Unidentified Mace# +590030#Unidentified Mace# +590034#Unidentified Mace# +590036#Unidentified Mace# +590038#Unidentified Mace# +590039#Unidentified Mace# +590043#Unidentified Mace# +590044#Unidentified Mace# +590045#Unidentified Mace# +600000#IDTest Bothhand# +600001#Booster Two Handed Sword# +600004#Undenified Sword# +600008#Undenified Sword# +600009#Awakened Onimaru# +600011#Unidentified Sword# +600012#Unidentified Sword# +600013#Unidentified Sword# +600014#Unidentified Sword# +600016#Unidentified Sword# +600017#Unidentified Sword# +600018#Unidentified Sword# +600020#Unidentified Sword# +600021#Unidentified Sword# +600023#Unidentified Sword# +600024#Unidentified Sword# +600027#Unidentified Sword# +600028#Unidentified Sword# +610000#Booster Katar# +610003#Blade Katar# +610006#Avaritia Metal# +610008#Awakened Shiver Katar# +610009#Awakened Blade Katar# +610012#Unidentified Katar# +610013#Unidentified Katar# +610015#Unidentified Katar# +610016#Unidentified Katar# +610019#Unidentified Katar# +610020#Unidentified Katar# +610021#Unidentified Katar# +610022#Unidentified Katar# +610023#Unidentified Katar# +610024#Unidentified Katar# +610025#Unidentified Katar# +610026#Unidentified Katar# +610027#Unidentified Katar# +610028#Unidentified Katar# +610033#Unidentified Katar# +610034#Unidentified Katar# +610035#Unidentified Katar# +610037#Unidentified Katar# +610039#Unidentified Katar# +620003#Unidentified Axe# +620004#Awakened Avenger# +620005#Unidentified Axe# +620006#Unidentified Axe# +620009#Unidentified Axe# +620010#Unidentified Axe# +620011#Unidentified Axe# +620012#Unidentified Axe# +620015#Unidentified Axe# +620016#Unidentified Axe# +620017#Unidentified Axe# +620018#Unidentified Axe# +630003#Luxuria Pierce# +630006#Unidentified Spear# +630007#Unidentified Spear# +630008#Unidentified Spear# +630009#Unidentified Spear# +630012#Unidentified Spear# +630013#Unidentified Spear# +630014#Unidentified Spear# +630015#Unidentified Spear# +630018#Unidentified Spear# +640000#Booster Staff# +640004#Blue Crystal Staff# +640005#Pride Stone# +640009#Unidentified Staff# +640010#Unidentified Staff# +640011#Awakened Iron Staff# +640012#Awakened Blue Crystal Staff# +640013#Unidentified Staff# +640014#Unidentified Staff# +640015#Unidentified Staff# +640017#Unidentified Staff# +640019#Unidentified Staff# +640020#Unidentified Staff# +640021#Unidentified Staff# +640022#Unidentified Staff# +640023#Unidentified Staff# +640024#Unidentified Staff# +640025#Unidentified Staff# +640026#Unidentified Staff# +640027#Unidentified Staff# +640028#Unidentified Staff# +640031#Unidentified Staff# +640033#Unidentified Staff# +650003#Wrath Wheel# +650004#Awakened Humma Clear# +650008#Unidentified Huuma Shuriken# +650009#Unidentified Huuma Shuriken# +650010#Unidentified Huuma Shuriken# +650011#Unidentified Huuma Shuriken# +650012#Unidentified Huuma Shuriken# +650013#Unidentified Huuma Shuriken# +650017#Unidentified Huuma Shuriken# +650018#Unidentified Huuma Shuriken# +650019#Unidentified Huuma Shuriken# +650020#Unidentified Huuma Shuriken# +650021#Unidentified Huuma Shuriken# +650022#Unidentified Huuma Shuriken# +650024#Unidentified Huuma Shuriken# +650025#Unidentified Huuma Shuriken# +700000#IDTest Bow# +700001#Booster Bow# +700003#Scarlet Dragon Leather Bow# +700007#Superbia String# +700008#Gula Gun# +700009#Pigritia Rhythm# +700013#Awakened Narcis Bow# +700014#Unidentified Bow# +700015#Unidentified Bow# +700016#Unidentified Bow# +700017#Unidentified Bow# +700018#Awakened Royal Bow# +700019#Awakened Scarlet Dragon Bow# +700021#Unidentified Bow# +700022#Unidentified Bow# +700023#Unidentified Bow# +700024#Unidentified Bow# +700025#Unidentified Bow# +700029#Unidentified Bow# +700030#Unidentified Bow# +700031#Unidentified Bow# +700032#Unidentified Bow# +700033#Unidentified Bow# +700034#Unidentified Bow# +700035#Unidentified Bow# +700036#Unidentified Bow# +700037#Unidentified Bow# +700038#Unidentified Bow# +700039#Unidentified Bow# +700040#Unidentified Bow# +700041#Unidentified Bow# +700042#Unidentified Bow# +700043#Unidentified Bow# +700045#Unidentified Bow# +700046#Unidentified Bow# +700049#Unidentified Bow# +700050#Unidentified Bow# +700052#Unidentified Bow# +700054#Unidentified Bow# +700055#Unidentified Bow# +700056#Unidentified Bow# +800000#IDTest Gun# +800002#Awakened Crimson Rose# +800003#Unidentified Revolver# +800004#Unidentified Revolver# +800005#Unidentified Revolver# +800006#Unidentified Revolver# +800008#Unidentified Revolver# +800009#Unidentified Revolver# +800010#Unidentified Revolver# +800011#Unidentified Revolver# +800012#Unidentified Revolver# +800013#Unidentified Revolver# +800014#Unidentified Revolver# +810000#Lust Pointer# +810001#Awakened Master Soul Rifle# +810002#Unidentified Rifle# +810003#Unidentified Rifle# +810005#Unidentified Rifle# +810006#Unidentified Rifle# +810007#Unidentified Rifle# +810008#Unidentified Rifle# +810009#Unidentified Rifle# +810010#Unidentified Rifle# +810013#Unidentified Rifle# +820000#Lust Shatter# +820001#Awakened Demon Slayer Shot# +820002#Unidentified Shotgun# +820004#Unidentified Shotgun# +820005#Unidentified Shotgun# +820006#Unidentified Shotgun# +820007#Unidentified Shotgun# +820008#Unidentified Shotgun# +830000#Booster Gatling# +830001#Lust Crusher# +830002#Awakened The Black# +830003#Unidentified Gatling Gun# +830004#Unidentified Gatling Gun# +830007#Unidentified Gatling Gun# +830008#Unidentified Gatling Gun# +830009#Unidentified Gatling Gun# +830010#Unidentified Gatling Gun# +830011#Unidentified Gatling Gun# +830012#Unidentified Gatling Gun# +830013#Unidentified Gatling Gun# +840000#Lust Boom# +840001#Awakened Golden Road Launcher# +840002#Unidentified Grenade Launcher# +840004#Unidentified Grenade Launcher# +840005#Unidentified Grenade Launcher# +840006#Unidentified Grenade Launcher# +840007#Unidentified Grenade Launcher# +840008#Unidentified Grenade Launcher# +840009#Unidentified Grenade Launcher# +1000000#IDTest event# +1000001#1st Job Change Ticket# +1000002#2nd Job Change Ticket# +1000003#Transcendence Ticket# +1000004#Top Job Tickets# +1000005#Boosting Weapon Voucher# +1000006#Booster Armor Voucher# +1000007#Parfait for children# +1000008#Sniper Stone II(Upper)# +1000009#Sniper Stone II(Mid)# +1000010#Sniper Stone II(Lower)# +1000011#Ranger Stone II(Garment)# +1000012#Whitesmith Stone II(Upper)# +1000013#Whitesmith Stone II(Mid)# +1000014#Whitesmith Stone II(Lower)# +1000015#Mechanic Stone II(Garment)# +1000016#High Priest Stone II(Upper)# +1000017#High Priest Stone II(Mid)# +1000018#High Priest Stone II(Lower)# +1000019#Archbishop Stone II(Garment)# +1000092#Elyumina Radar# +1000093#Red Pitaya Tail# +1000094#Yellow Pitaya Tail# +1000095#Blue Pitaya Tail# +1000096#Green Pitaya Tail# +1000097#Purple Pitaya Tail# +1000098#Boss Pitaya Tail# +1000099#Gardener's Cookies# +1000100#Freezing Trap# +1000101#Automatic Doll Parts# +1000102#Emergency Key# +1000103#Varmeal Ticket# +1000104#Magical Soapstone# +1000105#Automatic Modification Module(Defense)# +1000106#Automatic Modification Module(Magic Defense)# +1000107#Automatic Modification Module(VIT)# +1000108#Automatic Modification Module(LUK)# +1000109#Automatic Modification Module(STR)# +1000110#Automatic Modification Module(AGI)# +1000111#Automatic Modification Module(INT)# +1000112#Automatic Modification Module(DEX)# +1000113#Automatic Modification Module(HP Recovery)# +1000114#Automatic Modification Module(SP Recovery)# +1000115#Automatic Modification Module(Spell)# +1000116#Automatic Modification Module(Attack Speed)# +1000117#Automatic Modification Module(Fatal)# +1000118#Automatic Modification Module(Expert Archer)# +1000119#Automatic Modification Module(Vital)# +1000120#Automatic Modification Module(Mental)# +1000121#Automatic Modification Module(Heal)# +1000122#Automatic Modification Module(Attack Power)# +1000123#Automatic Modification Module(Magic Power)# +1000124#Automatic Modification Module(Shooter)# +1000125#Automatic Modification Module(Fast)# +1000126#Automatic Modification Module(Caster)# +1000127#Automatic Modification Module(Critical)# +1000128#Automatic Modification Module(Magical Force)# +1000129#Automatic Modification Module(Attacker Force)# +1000130#Automatic Modification Module(Range Force)# +1000131#Automatic Modification Module(Critical Force)# +1000132#Automatic Modification Module(Recovery Force)# +1000133#Automatic Modification Module(After Skill Delay)# +1000134#Automatic Modification Module(Fixed Casting)# +1000135#Automatic Modification Module(Above All)# +1000136#Automatic Modification Module(Drain Life)# +1000137#Automatic Modification Module(Drain Soul)# +1000138#Automatic Modification Module(Magic Healing)# +1000139#Automatic Modification Module(Magic Soul)# +1000140#Automatic Modification Module(Power Force)# +1000141#Automatic Modification Module(Robust)# +1000142#Automatic Modification Module(Powerful)# +1000143#Automatic Modification Module(All Force)# +1000144#Automatic Module(Unlimited Vital)# +1000145#Automatic Module(Spell Buster)# +1000146#Automatic Module(Firing Shot)# +1000147#Automatic Module(Over Power)# +1000148#Automatic Module(Fatal Flash)# +1000149#Automatic Module(Lucky Strike)# +1000152#Automatic Module(Dragonic Breath)# +1000153#Automatic Module(Wave Break)# +1000154#Automatic Module(Hundred Spiral)# +1000155#Automatic Module(Drive Press)# +1000156#Automatic Module(Banishing Cannon)# +1000157#Automatic Module(Genesis Pressure)# +1000158#Automatic Module(Boost Cannon)# +1000159#Automatic Module(Cold Flare)# +1000160#Automatic Module(Tornado Swing)# +1000161#Automatic Module(Cannon Tornado)# +1000162#Automatic Module(Crazy Mandragora)# +1000163#Automatic Module(Acid Explosion)# +1000164#Automatic Module(Sonic Impact)# +1000165#Automatic Module(Cutter Slasher)# +1000166#Automatic Module(Berserk Slash)# +1000167#Automatic Module(Fatal Raid)# +1000168#Automatic Module(Shadow Spell)# +1000169#Automatic Module(Angle Shot)# +1000170#Automatic Module(Crimson Strain)# +1000171#Automatic Module(Jack Lightning)# +1000172#Automatic Module(Comet Vortex)# +1000173#Automatic Module(Double Bolt)# +1000174#Automatic Module(Warm Wave)# +1000175#Automatic Module(Diamond Grave)# +1000176#Automatic Module(Magnusmus)# +1000177#Automatic Module(Holy Judex)# +1000178#Automatic Module(Duple Lica)# +1000179#Automatic Module(Tiger Empire)# +1000180#Automatic Module(Rampage Arrow)# +1000181#Automatic Module(Raging Combo)# +1000182#Automatic Module(Cluster)# +1000183#Automatic Module(Breeze Shooting)# +1000184#Automatic Module(Aimed Storm)# +1000185#Automatic Module(Metal Echo)# +1000186#Automatic Module(Reverberation)# +1000187#Automatic Module(Vulcan Severe)# +1000188#Automatic Module(Prominence Burst)# +1000189#Automatic Module(Moon Kick)# +1000190#Automatic Module(Flash Falling)# +1000191#Automatic Module(Eswhoo)# +1000192#Automatic Module(Espa)# +1000193#Automatic Module(Curse Explosion)# +1000194#Automatic Module(Des Hammer Dance)# +1000195#Automatic Module(Fire Howling Tail)# +1000196#Automatic Module(Storm Buster Trip)# +1000197#Automatic Module(Flame Ice Wind)# +1000198#Automatic Module(Cross Slash)# +1000199#Automatic Module(Exploding Flake Wind)# +1000200#Automatic Module(Power of Sea)# +1000201#Automatic Module(Power of Land)# +1000202#Automatic Module(Power of Life)# +1000207#Automatic Modification Module(Mirror Counter)# +1000208#Automatic Modification Module(Reflection Reject)# +1000213#Warlock Stone II(Garment)# +1000214#High Wizard Stone II(Upper)# +1000215#High Wizard Stone II(Mid)# +1000216#High Wizard Stone II(Lower)# +1000217#Royal Guard Stone II(Garment)# +1000218#Paladin Stone II(Upper)# +1000219#Paladin Stone II(Mid)# +1000220#Paladin Stone II(Lower)# +1000221#Guillotine Cross Stone II(Garment)# +1000222#Assassin Cross Stone II(Upper)# +1000223#Assassin Cross Stone II(Mid)# +1000224#Assassin Cross Stone II(Lower)# +1000225#Potato Chips# +1000226#Broken Doll's Core# +1000227#Cloud Cotton# +1000231#Broken Automatic Doll Parts# +1000232#Automatic Doll Communication Chip# +1000235#Elite Hunter Token# +1000243#Fragment of Anger# +1000244#Fragment of Fear# +1000245#Fragment of Resentment# +1000253#Booster Weapon Voucher# +1000254#Booster Coin# +1000255#Fragment of Regret# +1000256#Fragment of Sorrow# +1000257#Piece of Sin# +1000258#Fragment of Empathy# +1000259#Fragment of Happiness# +1000260#Fragment of Rest# +1000261#Fragment of Comfort# +1000262#Fragment of Blessing# +1000263#Fragment of Good Will# +1000268#Gas Mask# +1000269#Sealing Box# +1000270#Mandragora Incubator# +1000271#Piece of Impression# +1000272#Piece of Inspiration# +1000274#[Kachua] Mileage Coupon# +1000275#Beaker# +1000276#Flame Acid Bottle# +1000277#Earth Acid Bottle# +1000278#Gale Acid Bottle# +1000279#Icicle Acid Bottle# +1000280#Advanced Coating Potion# +1000281#Greater Plant Bottle# +1000282#Episode 16 Clear Ticket# +1000283#(Event) Episode 16 Clear Ticket# +1000287#Episode 17 Clear Ticket# +1000288#Episode 18 Clear Ticket# +1000289#Machine Capsule# +1000290#ABR Capsule# +1000291#Lightning Stone# +1000292#Earth Stone# +1000293#Flame Stone# +1000294#Poison Stone# +1000295#Ice Stone# +1000296#Rune Knight Stone II(Garment)# +1000297#Lord Knight Stone II(Upper)# +1000298#Lord Knight Stone II(Mid)# +1000299#Lord Knight Stone II(Lower)# +1000300#Genetic Stone II(Garment)# +1000301#Creator Stone II(Upper)# +1000302#Creator Stone II(Mid)# +1000303#Creator Stone II(Lower)# +1000304#Wanderer Minstrel Stone II(Garment)# +1000305#Clown Gypsy Stone II(Upper)# +1000306#Clown Gypsy Stone II(Mid)# +1000307#Clown Gypsy Stone II(Lower)# +1000311#Hawk Flute# +1000316#Geffen Arena Coin# +1000317#Geffen Arena Certificate# +1000320#Kafra Coin# +1000321#Amber# +1000322#Etel Dust# +1000323#Etel Stone# +1000325#Etel Aquamarine# +1000326#Etel Topaz# +1000327#Etel Amethyst# +1000328#Etel Amber# +1000331#Etherium# +1000332#Etherdeocon# +1000333#Enriched Etherium# +1000334#Enriched Etherdeocon# +1000335#HD Etherium# +1000336#HD Etherdeocon# +1000337#Blessed Etel Dust# +1000346#Guide for 4th Job Change# +1000352#Machine Creation Guide# +1000363#Magical Stone# +1000364#Contaminated Stone# +1000366#Geffen Arena Championship# +1000367#Minneas# +1000368#Etel Bradium# +1000369#HD Etel Bradium# +1000370#Etel Carnium# +1000371#HD Etel Carnium# +1000372#Meteorite Powder# +1000373#Meteorite Fragment# +1000374#Ultra-Low Carbonated Soda# +1000375#Ranged Stone(Upper)# +1000376#Ranged Stone(Lower)# +1000377#Melee Stone (Upper)# +1000378#Melee Stone (Mid)# +1000379#Melee Stone (Lower)# +1000396#Naght Sieger Soul# +1000397#Beteleuse Soul# +1000398#Power Meteorite Powder# +1000399#Stamina Meteorite Powder# +1000400#Agile Meteorite Powder# +1000401#Lucky Meteorite Powder# +1000402#Meteorite Powder of Spell# +1000403#Meteorite Powder of Wisdom# +1000405#Amethyst Fragment# +1000406#Very Unusual Crystal# +1000407#Half Flower# +1000408#Recording Note# +1000409#Document File# +1000410#Water Filter# +1000411#Purified Water# +1000412#Trapped Bird# +1000413#Trapped Lizard# +1000414#Trapped Pear# +1000419#Weapon Enhancement Ore(Lower)# +1000420#Weapon Enhancement Ore(Intermediate)# +1000421#Weapon Enhancement Ore(High)# +1000422#Weapon Enhancement Ore(Superior)# +1000423#Armor Enhancement Ore(Lower)# +1000424#Armor Enhancement Ore(Intermediate)# +1000425#Armor Enhancement Ore(Superior)# +1000426#Accessory Enhancement Ore(Lower)# +1000427#Accessory Enhancement Ore(Intermediate)# +1000428#Accessory Enhancement Ore(High)# +1000429#Accessory Enhancement Ore(Superior)# +1000430#Weapon Upgrade Stone(Lower)# +1000431#Weapon Upgrade Stone(Intermediate)# +1000432#Weapon Upgrade Stone(High)# +1000433#Weapon Upgrade Stone(Superior)# +1000434#Armor Upgrade Stone(Lower)# +1000435#Armor Upgrade Stone(Intermediate)# +1000436#Armor Upgrade Stone(High)# +1000437#Armor Upgrade Stone(Superior)# +1000438#Accessory Upgrade Stone(Lower)# +1000439#Accessory Upgrade Stone(Intermediate)# +1000440#Accessory Upgrade Stone(High)# +1000441#Accessory Upgrade Stone(Superior)# +1000442#Power Meteorite Fragment# +1000443#Stamina Meteorite Fragment# +1000444#Agile Meteorite Fragment# +1000445#Lucky Meteorite Fragment# +1000446#Meteorite Fragment of Spell# +1000447#Meteorite Fragment of Wisdom# +1000471#Villa Basement Key# +1000475#Fides Two-Handed Sword Blueprint# +1000476#Fides Lance Blueprint# +1000477#Fides Guardian Sword Blueprint# +1000478#Fides Guardian Spear Blueprint# +1000479#Fides Axe Blueprint# +1000480#Fides Mace Blueprint# +1000481#Fides Rapier Blueprint# +1000482#Fides Hall Blueprint# +1000483#Fides Chakram Blueprint# +1000484#Fides Katar Blueprint# +1000485#Fides Dagger Blueprint# +1000486#Fides Crossbow Blueprint# +1000487#Fides Two-Handed Staff Blueprint# +1000488#Fides Rod Blueprint# +1000489#Fides Magic Book Blueprint# +1000490#Fides Poison Book Blueprint# +1000491#Fides Bible Blueprint# +1000492#Fides Wand Blueprint# +1000493#Fides Knuckle Blueprint# +1000494#Fides Claw Blueprint# +1000495#Fides Ballista Blueprint# +1000496#Fides Aiming Bow Blueprint# +1000497#Fides Violin Blueprint# +1000498#Fides Chain Rope Blueprint# +1000499#Fides Harp Blueprint# +1000500#Fides Ribbon Blueprint# +1000501#Holy Oil of Purification# +1000502#Holy Water of Purification# +1000503#Sabbatical Handkerchief# +1000504#Dry Sand# +1000505#Opaque Liquid# +1000506#Shell of Awareness# +1000510#Ant Antennae# +1000511#Ant Legs# +1000512#Ant's Jaw# +1000513#Dangerous Acid# +1000514#Gaia's Worn Hat# +1000515#Small Shovel# +1000516#Bat Jawbone# +1000517#Bat Fur# +1000518#Maya's Crown# +1000520#ASPD Stone(Dual)# +1000521#Minor Casting Stone(Dual)# +1000522#Variable Casting Stone(Dual)# +1000523#Ranged Stone(Dual)# +1000524#Melee Stone(Dual)# +1000525#SP Absorbtion Stone(Dual)# +1000526#HP Absorbtion Stone(Dual)# +1000527#Magic Power Stone(Dual)# +1000528#Magic Power Stone(Upper)# +1000529#Magic Power Stone(Mid)# +1000530#Magic Power Stone(Lower)# +1000552#Evil Water# +1000563#Soul Talisman# +1000564#Throwing Grenade# +1000565#Haze of Pitch Darkness# +1000566#Haze of Prominence# +1000567#Haze of Icy Snow# +1000568#Haze of Mother Earth# +1000569#Haze of North Wind# +1000570#Noodle Festival Development Fund Certificate# +1000571#Is it a star button?!# +1000604#Jungkea's Test Tube# +1000605#Red Liquid Test Tube# +1000606#Intermediate Rgan's Eggshell# +1000607#Guardian's Invitation# +1000608#Flower Petals# +1000609#Mad Bunny-LT Enchantment Ticket# +1000610#Rune Knight Stone(Upper)# +1000611#Rune Knight Stone(Mid)# +1000612#Rune Knight Stone(Lower)# +1000613#Warlock Stone(Upper)# +1000614#Warlock Stone(Mid)# +1000615#Warlock Stone(Lower)# +1000616#Royal Guard Stone(Upper)# +1000617#Royal Guard Stone(Mid)# +1000618#Royal Guard Stone(Lower)# +1000635#19th Anniversary Thank You Letter# +1000636#Glade Rune Fragment# +1000637#Fire Rune Fragment# +1000638#Ice Rune Fragment# +1000639#Death Rune Fragment# +1000640#Glade Rune# +1000641#Fire Rune# +1000642#Ice Rune# +1000643#Death Rune# +1000644#Ragfest Stamp Card# +1000645#Hero's Enchantment Ticket# +1000657#Soul Thread# +1000666#Wanderer Minstrel Stone(Upper)# +1000667#Wanderer Minstrel Stone(Mid)# +1000668#Wanderer Minstrel Stone(Lower)# +1000669#Genetic Stone(Upper)# +1000670#Genetic Stone(Middle)# +1000671#Genetic Stone(Lower)# +1000672#Sorcerer Stone(Upper)# +1000673#Sorcerer Stone(Mid)# +1000674#Sorcerer Stone(Lower)# +1000675#Reload Stone(Dual)# +1000676#Creative Stone(Dual)# +1000678#Poring Balloon Enchantment Ticket# +1000680#Lead# +1000681#Clock Gear# +1000682#Tuner# +1000684#4th Expanded Job Change Guide# +1000685#Fides Huuma Shuriken Blueprint# +1000686#Fides Cross-Shaped Huuma Shuriken Blueprint# +1000687#Fides Revolver Blueprint# +1000688#Fides Shotgun Blueprint# +1000689#Fides Rifle Blueprint# +1000690#Fides Gatling Gun Blueprint# +1000691#Fides Launcher Blueprint# +1000692#Fides Moon Book Blueprint# +1000693#Fides Stardust Book Blueprint# +1000694#Fides Soul Stick Blueprint# +1000695#Fides Dark Wand Blueprint# +1000696#Fides Foxtail Wand Blueprint# +1000697#Fides Foxtail Model Blueprint# +1000698#Young Leaf of World Tree Enchantment Ticket# +1000705#Rgan's Magic Core# +1000706#Purified Magic Core# +1000707#Rgan's Low Grade Magic Core# +1000708#Frozen Meat# +1000709#Clean Snow# +1000711#Ice Flower Magic Stone(STR)# +1000712#Ice Flower Magic Stone(DEX)# +1000713#Ice Flower Magic Stone(AGI)# +1000714#Ice Flower Magic Stone(INT)# +1000715#Ice Flower Magic Stone(VIT)# +1000716#Ice Flower Magic Stone(LUK)# +1000717#Ice Flower Magic Stone(Physical Defense)# +1000718#Ice Flower Magic Stone(Magical Defense)# +1000719#Ice Flower Magic Stone(Shooter)# +1000720#Ice Flower Magic Stone(Warrior)# +1000721#Ice Flower Magic Stone(Magician)# +1000722#Ice Flower Magic Stone(Reflection Reject)# +1000723#Ice Flower Magic Stone(Power Force)# +1000724#Ice Flower Magic Stone(After Skill Delay)# +1000725#Ice Flower Magic Stone(Speed)# +1000726#Ice Flower Magic Stone(Caster)# +1000727#Ice Flower Magic Stone(Critical)# +1000728#Ice Flower Magic Stone(Guided Attack)# +1000729#Ice Flower Magic Stone(Above All)# +1000730#Ice Flower Magic Stone(Powerful)# +1000731#Ice Flower Magic Stone(Mirror Counter)# +1000732#Ice Flower Magic Stone(Vital)# +1000733#Ice Flower Magic Stone(Mental)# +1000734#Ice Flower Magic Stone(Heal)# +1000735#Ice Flower Magic Stone(Robust)# +1000736#Ice Flower Magic Stone(Fixed Casting)# +1000737#Ice Flower Magic Stone(Magical Force)# +1000738#Ice Flower Magic Stone(Physical Force)# +1000739#Ice Flower Magic Stone(Unlimited Vital)# +1000740#Ice Flower Magic Stone(Spell Buster)# +1000741#Ice Flower Magic Stone(Firing Shot)# +1000742#Ice Flower Magic Stone(Over Power)# +1000743#Ice Flower Magic Stone(Fatal Flash)# +1000744#Ice Flower Magic Stone(Lucky Strike)# +1000745#Ice Flower Magic Stone(After Attack Delay)# +1000746#Ice Flower Magic Stone(Expert Archer)# +1000747#Ice Flower Magic Stone(Fatal)# +1000748#Ice Flower Magic Stone(Fighting Spirit)# +1000749#Ice Flower Magic Stone(Magic Power)# +1000750#Ice Flower Magic Stone(HP Recovery)# +1000751#Ice Flower Magic Stone(SP Recovery)# +1000752#Ice Flower Magic Stone(Drain Life)# +1000753#Ice Flower Magic Stone(Drain Soul)# +1000754#Ice Flower Magic Stone(Magic Healing)# +1000755#Ice Flower Magic Stone(Magic Soul)# +1000756#Ice Flower Magic Stone(All Force)# +1000757#Ice Flower Magic Stone(Dragonic Breath)# +1000758#Ice Flower Magic Stone(Cutter Break)# +1000759#Ice Flower Magic Stone(Hundred Wave)# +1000760#Ice Flower Magic Stone(Brand Lit)# +1000761#Ice Flower Magic Stone(Banishing Cannon)# +1000762#Ice Flower Magic Stone(Genesis Pressure)# +1000763#Ice Flower Magic Stone(Boost Cannon)# +1000764#Ice Flower Magic Stone(Vulcan Boomerang)# +1000765#Ice Flower Magic Stone(Tornado Swing)# +1000766#Ice Flower Magic Stone(Hell Tornado)# +1000767#Ice Flower Magic Stone(Crazy Cannon)# +1000768#Ice Flower Magic Stone(Acid Explosion)# +1000769#Ice Flower Magic Stone(Sonic Impact)# +1000770#Ice Flower Magic Stone(Cutter Slasher)# +1000771#Ice Flower Magic Stone(Berserk Slash)# +1000772#Ice Flower Magic Stone(Fatal Attack)# +1000773#Ice Flower Magic Stone(Shadow Spell)# +1000774#Ice Flower Magic Stone(Angle Shot)# +1000775#Ice Flower Magic Stone(Crimson Strain)# +1000776#Ice Flower Magic Stone(Jack Lightning)# +1000777#Ice Flower Magic Stone(Comet Expansion)# +1000778#Ice Flower Magic Stone(Cloud Buster)# +1000779#Ice Flower Magic Stone(Varetyr Wave)# +1000780#Ice Flower Magic Stone(Diamond Grave)# +1000781#Ice Flower Magic Stone(Magnusmus)# +1000782#Ice Flower Magic Stone(Holy Judex)# +1000783#Ice Flower Magic Stone(Melee Duple)# +1000784#Ice Flower Magic Stone(Tiger Empire)# +1000785#Ice Flower Magic Stone(Rampage Lightning)# +1000786#Ice Flower Magic Stone(Hell Arrow)# +1000787#Ice Flower Magic Stone(Aimed Rush)# +1000788#Ice Flower Magic Stone(Breeze Shooting)# +1000789#Ice Flower Magic Stone(Storm Gale)# +1000790#Ice Flower Magic Stone(Sound Metal)# +1000791#Ice Flower Magic Stone(Rainstorm)# +1000792#Ice Flower Magic Stone(Vulcan Shooting)# +1000793#Ice Flower Magic Stone(Prominence Burst)# +1000794#Ice Flower Magic Stone(Moon Kick)# +1000795#Ice Flower Magic Stone(Flash Falling)# +1000796#Ice Flower Magic Stone(Eswhoo)# +1000797#Ice Flower Magic Stone(Espa)# +1000798#Ice Flower Magic Stone(Curse Explosion)# +1000799#Ice Flower Magic Stone(Des Hammer Dance)# +1000800#Ice Flower Magic Stone(Fire Howling Tail)# +1000801#Ice Flower Magic Stone(Storm Buster Trip)# +1000802#Ice Flower Magic Stone(Flame Ice Wind)# +1000803#Ice Flower Magic Stone(Cross Petal)# +1000804#Ice Flower Magic Stone(Exploding Flake Wind)# +1000805#Ice Flower Magic Stone(Power of Life)# +1000806#Ice Flower Magic Stone(Power of Land)# +1000807#Ice Flower Magic Stone(Power of Savage)# +1000808#Ice Flower Magic Stone(Hyper Melee)# +1000809#Ice Flower Magic Stone(Hyper Range)# +1000810#Ice Flower Magic Stone(Hyper Magic)# +1000811#Snow Flower Ore# +1000812#Snow Flower Stone# +1000813#Shining Snow Flower Heartstone# +1000814#Brilliant Snow Flower Manastone# +1000822#Rgan's Shell# +1000823#Monstrous Cell# +1000824#Calapy# +1000825#Cacalapy# +1000826#Prickly Shell# +1000827#Slender Claws# +1000828#Transparent Shell# +1000829#Bait Bellflower# +1000830#Thin and Tough Skin# +1000831#Shining Seaweed Stem# +1000832#Frozen Worm Shell# +1000833#Mysterious Ore# +1000834#Sharp Bone Fragment# +1000842#Super Strong Antennae# +1000845#Ledger# +1000846#Ice Snack# +1000850#Helm of Faith Enchantment Ticket# +1000851#Small Brush# +1000852#Soft Hanji# +1000853#Chulho's Portrait# +1000854#Shadow Exchange Ticket# +1000855#Critical Stone(Dual)# +1000856#Concentration Stone(Dual)# +1000857#Archbishop Stone(Upper)# +1000858#Archbishop Stone(Mid)# +1000859#Archbishop Stone(Lower)# +1000860#Ranger Stone(Upper)# +1000861#Ranger Stone(Mid)# +1000862#Ranger Stone(Lower)# +1000863#Shadow Chaser(Upper)# +1000864#Shadow Chaser(Mid)# +1000865#Shadow Chaser(Lower)# +1000874#Enchantment Ticket# +1000882#Electric Effect(Lower)# +1000889#Complex Fruit Juice# +1000897#Donor List Keias 1# +1000898#Donor List Keias 2# +1000899#Donor List Keias 3# +1000900#Donor List Keias 4# +1000901#Donor List Loki 1# +1000902#Donor List Loki 2# +1000903#Donor List Loki 3# +1000904#Donor List Loki 4# +1000905#Donor List Iris 1# +1000906#Donor List Iris 2# +1000907#Donor List Iris 3# +1000908#Donor List Iris 4# +1000909#Donor List Sarah 1# +1000910#Donor List Sarah 2# +1000911#Donor List Sarah 3# +1000912#Donor List Fenrir 1# +1000913#Donor List Fenrir 2# +1000914#Donor List Fenrir 3# +1000915#Donor List Lydia 1# +1000916#Donor List Lydia 2# +1000917#Donor List Baldur 1# +1000918#Donor List Odin 1# +1000919#Donor List Thor 1# +1000920#Donor List Sakray 1# +1000921#Spell Stone(Dual)# +1000922#Special Magic Attack Stone(Garment)# +1000924#Fantasy Book Bookmark# +1000925#Fantasy Book Completion Card# +1000926#Butterfly Sticker# +1000927#Book Reading Tracker# +1000928#Wrist Strap# +1000929#Metal Cube# +1000930#Heart Cookie# +1000931#Mini Cannon Kit# +1000932#Four Leaf Clover Bookmark# +1000933#Small notebook and fountainpen# +1000934#Knight's Badge# +1000935#Orange Chocolate# +1000936#Teapot and Teacup Set# +1000968#Sura Stone(Upper)# +1000969#Sura Stone(Mid)# +1000970#Sura Stone(Lower)# +1000971#Mechanic Stone(Upper)# +1000972#Mechanic Stone(Mid)# +1000973#Mechanic Stone(Lower)# +1000974#Guillotine Cross Stone(Upper)# +1000975#Guillotine Cross Stone(Mid)# +1000976#Guillotine Cross Stone(Lower)# +1000998#White Handkerchief# +1100000#IDTest Heal# +1100003#Concentrated Red Syrup Potion# +1100004#Concentrated Blue Syrup Potion# +1100005#Concentrated Golden Syrup Potion# +1100006#Dried Ice Gangu# +1200000#IDTest Arrow# +1210000#IDTest Cannon# +1220000#IDTest Throw# +1220001#Kunai# +1220002#Formless Kunai# +1220003#Shadow Kunai# +1220004#Hamaya Kunai# +1230000#IDTest Ammo# +1400000#Letter R# +1400001#Letter O# +1400002#Letter L# +1400003#Letter V# +1400004#Letter E# +1400005#Letter M# +1400006#Contribution Coin# +1400007#Guild Hall Coin# +1500000#Developer Tools# +1500001#Stamina Elixir# +1500002#Tester Monster Loot Box# +1500003#Stamina System Core# +1500004#House System Core# +1500005#Crafting Box# +1500006#ROverse Manual Book# +1500007#Automatic Player# +1500008#Hidden Square Reset Pass# +1500009#Golden Cache# +1500010#New Pet Scroll# +1500011#Monster Loot Box I# +1500012#Monster Loot Box II# +1500013#Monster Loot Box III# +1500014#Monster Loot Box IV# +1500015#Monster Loot Box V# +1500016#Monster Loot Box VI# +1500017#Monster Loot Box VII# +1500018#Monster Loot Box VIII# +1500019#Monster Loot Box IX# +1500020#Monster Loot Box X# +1500021#Monster Loot Box XI# +1500022#Monster Loot Box XII# +1500023#Monster Loot Box XIII# +1500031#Guild Dungeon Loot Box# +1500032#Upgrade Crafting# +1500033#Upgrade Crafting Silvervine# +1500101#Miracle Medicine I# +1500102#Miracle Medicine II# +1500103#Miracle Medicine III# +1500104#Miracle Medicine IV# +1500105#Miracle Medicine V# +1500106#Miracle Medicine VI# +1500107#Miracle Medicine VII# +1500108#Miracle Medicine VIII# +1500109#Miracle Medicine IX# +1500110#Miracle Medicine X# +1500111#Miracle Medicine XI# +1500112#Miracle Medicine XII# +1500113#Zeny Pocket - 50000# +1500114#Zeny Pocket - 100000# +1500115#Zeny Pocket - 300000# +1500116#Zeny Pocket - 500000# +1500117#Zeny Pocket - 1000000# +1500118#Zeny Pocket - 5000000# +1500119#Zeny Pocket - 10000000# +1500120#Zeny Pocket - 50000000# +1500121#Zeny Pocket - 100000000# +1500200#Founder Silver Crate# +1500201#Founder Gold Crate# +1500202#Founder Platinum Crate# +1500203#Automatic Player Box 1 Day# +1500204#Automatic Player Box 7 Days# +1500205#Automatic Player Box 14 Days# +1500206#Automatic Player Box 30 Days# +1500207#Airdrop Reward Box# +1500208#[Event ]ROVerse Pre-Register Box# +1500209#[Event] Roverse Assorted Cooking Box# +1500210#[Event] Pre-Register 100000 Box# +1500211#[Event] Pre-Register 300000 Box# +1500212#[Event] Pre-Register 500000 Box# +1500213#[Event] Pre-Register 700000 Box# +1500214#[Event] Pre-Register 1000000 Box# +1500215#Unlimited Fly Wing Box (2Hrs)# +1500216#Pre-Sale Iron Package# +1500217#Pre-Sale Bronze Package# +1500218#Pre-Sale Silver Package# +1500219#Pre-Sale Gold Package# +1500220#Pre-Sale Platinum Package# +1500221#Zeny Box# +1500222#Infinite Giant Fly Wing Box 3 Days# +1500223#Gold Costume Box# +1500224#Platinum Costume Box# +1500225#Memories Headgear Box I# +1500226#Founder Pet Scroll# +1500227#[Event] Unlimited Fly Wing Box (2Hrs)# +1500228#Roverse Ascension Ticket# +1500229#Newbie Starter Package I# +1500230#Newbie Starter Package II# +1500231#Newbie Starter Package III# +1500232#Special Miner Package# +1500233#Special Level 30 Package# +1500234#Special Level 70 Package# +1500235#Special Level 90 Package# +1500236#New Pet Scroll Package# +1500237#[Event] Magnificat Scroll# +1500238#[Event] Magnificat Scroll Box# +1500239#[Event] Stamina Elixir# +1500240#Midnight Meow Scroll# +1500241#Landverse Starter Pack I# +1500242#Landverse Starter Pack II# +1500243#Scholar's Ring Box (3Day)# +1500244#Milestone Reward (10)# +1500245#Milestone Reward (20)# +1500246#Milestone Reward (30)# +1500247#Milestone Reward (40)# +1500248#Milestone Reward (50)# +1500249#Milestone Reward (60)# +1500250#Milestone Reward (70)# +1500251#Milestone Reward (80)# +1500252#Milestone Reward (90)# +1500253#Chewing Gum Box 7Day# +1500254#[Event] Mental Potion# +1500255#Adventurer's Cap# +1500256#Scholar's Ring# +1500257#Top Up Milestone 10 ION Box# +1500258#Top Up Milestone 30 ION Box# +1500259#Top Up Milestone 50 ION Box# +1500260#Top Up Milestone 100 ION Box# +1500261#Top Up Milestone 300 ION Box# +1500262#First Refil I Box# +1500264#First Refil II Box# +1500265#Top Up Milestone 10 ION Box II# +1500266#Top Up Milestone 30 ION Box II# +1500267#Top Up Milestone 50 ION Box II# +1500268#Top Up Milestone 100 ION Box II# +1500269#Top Up Milestone 300 ION Box II# +1500270#Battle Pass Reward Step1# +1500271#Battle Pass Reward Step2# +1500272#Battle Pass Reward Step3# +1500273#Battle Pass Reward Step4# +1500274#Battle Pass Reward Step5# +1500275#Battle Pass Reward Step6# +1500276#Battle Pass Reward Step7# +1500277#Battle Pass Reward Step8# +1500278#Battle Pass Reward Step9# +1500279#Battle Pass Reward Step10# +1500280#Battle Pass Reward Step11# +1500281#Battle Pass Reward Step12# +1500282#Battle Pass Reward Step13# +1500283#Battle Pass Reward Step14# +1500284#Battle Pass Reward Step15# +1500285#Battle Pass Reward Step16# +1500286#Battle Pass Reward Step17# +1500287#Battle Pass Reward Step18# +1500288#Battle Pass Reward Step19# +1500289#Battle Pass Reward Step20# +1500290#Battle Pass Reward Step21# +1500291#Battle Pass Reward Step22# +1500292#Battle Pass Reward Step23# +1500293#Battle Pass Reward Step24# +1500294#Battle Pass Reward Step25# +1500295#Costume Safety Helmet# +1500296#Battlepass SS I# +1500297#Battlepass Crystal# +1500298#Battlepass Crystal Powder# +1500299#Universal Scroll# +1500300#Title - Assassin No.1# +1500301#Title - Hunter No.1# +1500302#Title - Knight No.1# +1500303#Title - Priest No.1# +1500304#Title - Blacksmith No.1# +1500305#Title - Wizard No.1# +1500306#Starter Pack F# +1500307#Step Up Starter Pack F I# +1500308#Step Up Starter Pack F II# +1500309#Step Up Starter Pack F III# +1500310#Step Up Starter Pack F IV# +1500311#Scholar's Ring Box (7Day)# +1500312#C Marie Rose Spirit# +1500313#Pumpkin Mask# +1500314#Pumpkin Candy Scroll# +1500315#[Event] Transformation Scroll(Skelcycle)# +1500316#[Event] C Marie Rose Spirit# +1500317#[Event] Pumpkin Mask# +1500318#[Event] Pumpkin Candy Scroll# +1500319#[Event] Crown of Deceit# +1500320#[Event] Balloon Hat# +1500321#[Event] Gangster Scarf# +1500322#[Event] Fish Head Hat# +1500323#[Event] Hat of Fortune# +1500324#[Event] Vane Hairpin# +1500325#[Event] Water Lily Crown# +1500326#[Event] Power Shadow Earring# +1500327#[Event] Power Shadow Pendant# +1500328#[Event] Dexterous Shadow Armor# +1500329#[Event] Dexterous Shadow Weapon# +1500330#[Event] HE Battle Manual# +1500331#[Event] Trans Scroll Skelcycle Box 7 Day# +1500332#[Event] Trans Scroll Skelcycle Box 1 Day# +1500333#Pumpkin Candy Scroll Package# +1500334#First Refil III Box# +1500335#Top Up Milestone 10 ION Box III# +1500336#Top Up Milestone 30 ION Box III# +1500337#Top Up Milestone 50 ION Box III# +1500338#Top Up Milestone 100 ION Box III# +1500339#Top Up Milestone 300 ION Box III# +1500340#[Nov] Step Spending Box I# +1500341#[Nov] Step Spending Box II# +1500342#Guild Master Rewards box (Guild Lv.5)# +1500343#Guild Master Rewards box (Guild Lv.10)# +1500344#[Event] Elite Siege Supply Box# +1500345#[Event] Siege White Potion# +1500346#[Event] Siege Blue Potion# +1500347#Sword Master 333 Crown# +1500348#[Event] C Golden Angel Wings# +1500349#[Event] C Golden Angel Hairband# +1500350#[Event] All in One Ring Box# +1500351#[Event] All in One Ring# +1500352#[Event] Automatic Player Box 7 Day# +1500353#[Event] Automatic Player# +1500354#[Event] Beholder Ring Box# +1500355#[Event] Beholder Ring# +1500356#[Event] Hallow Ring Box# +1500357#[Event] Hallow Ring# +1500358#[Event] Clamorous Ring Box# +1500359#[Event] Clamorous Ring# +1500360#[Event] Chemical Ring Box# +1500361#[Event] Chemical Ring# +1500362#[Event] Insecticide Ring Box# +1500363#[Event] Insecticide Ring# +1500364#[Event] Fisher Ring Box# +1500365#[Event] Fisher Ring# +1500366#[Event] Decussate Ring Box# +1500367#[Event] Decussate Ring# +1500368#[Event] Bloody Ring Box# +1500369#[Event] Bloody Ring# +1500370#[Event] Satanic Ring Box# +1500371#[Event] Satanic Ring# +1500372#[Event] Dragon Ring Box# +1500373#[Event] Dragon Ring# +1500374#Aquatic Scroll# +1500375#Refine Package# +1500376#WOE White Potion# +1500377#WOE Blue Potion# +1500378#Lovely Bunny Scroll# +1500379#Landverse Enchant Stone Box# +1500380#First Refil IV Box I# +1500381#[Event] Novice Blazing Sun# +1500382#[Event] Novice Blazing Sun Box (30Day)# +1500383#[Dec]Top Up Milestone 10 ION Box# +1500384#[Dec]Top Up Milestone 30 ION Box# +1500385#[Dec]Top Up Milestone 50 ION Box# +1500386#[Dec]Top Up Milestone 100 ION Box# +1500387#[Dec]Top Up Milestone 300 ION Box# +1500388#[Event] HP Increase Potion(Medium)# +1500389#[Event] SP Increase Potion(Medium)# +1500390#First Refil IV Box II# +1500391#[Event] HE Bubble Gum# +1500392#Battle Pass Reward Step1# +1500393#Battle Pass Reward Step2# +1500394#Battle Pass Reward Step3# +1500395#Battle Pass Reward Step4# +1500396#Battle Pass Reward Step5# +1500397#Battle Pass Reward Step6# +1500398#Battle Pass Reward Step7# +1500399#Battle Pass Reward Step8# +1500400#Battle Pass Reward Step9# +1500401#Battle Pass Reward Step10# +1500402#Battle Pass Reward Step11# +1500403#Battle Pass Reward Step12# +1500404#Battle Pass Reward Step13# +1500405#Battle Pass Reward Step14# +1500406#Battle Pass Reward Step15# +1500407#Battle Pass Reward Step16# +1500408#Battle Pass Reward Step17# +1500409#Battle Pass Reward Step18# +1500410#Battle Pass Reward Step19# +1500411#Battle Pass Reward Step20# +1500412#Battle Pass Reward Step21# +1500413#Battle Pass Reward Step22# +1500414#Battle Pass Reward Step23# +1500415#Battle Pass Reward Step24# +1500416#Battle Pass Reward Step25# +1500417#Battle Pass Reward Step26# +1500418#Battle Pass Reward Step27# +1500419#Battle Pass Reward Step28# +1500420#Battle Pass Reward Step29# +1500421#Battle Pass Reward Step30# +1500422#Battle Pass Reward Step31# +1500423#Battle Pass Reward Step32# +1500424#Battle Pass Reward Step33# +1500425#Battle Pass Reward Step34# +1500426#Battle Pass Reward Step35# +1500427#Battle Pass Reward Step36# +1500428#Battle Pass Reward Step37# +1500429#Battle Pass Reward Step38# +1500430#Battle Pass Reward Step39# +1500431#Battle Pass Reward Step40# +1500432#Battle Pass Reward Step41# +1500433#Battle Pass Reward Step42# +1500434#Battle Pass Reward Step43# +1500435#Battle Pass Reward Step44# +1500436#Battle Pass Reward Step45# +1500437#Battle Pass Reward Step46# +1500438#Battle Pass Reward Step47# +1500439#Battle Pass Reward Step48# +1500440#Battle Pass Reward Step49# +1500441#Battle Pass Reward Step50# +1500442#[Event] Almighty# +1500443#Premium Pass Reward Step1# +1500444#Premium Pass Reward Step2# +1500445#Premium Pass Reward Step3# +1500446#Premium Pass Reward Step4# +1500447#Premium Pass Reward Step5# +1500448#Premium Pass Reward Step6# +1500449#Premium Pass Reward Step7# +1500450#Premium Pass Reward Step8# +1500451#Premium Pass Reward Step9# +1500452#Premium Pass Reward Step10# +1500453#Premium Pass Reward Step11# +1500454#Premium Pass Reward Step12# +1500455#Premium Pass Reward Step13# +1500456#Premium Pass Reward Step14# +1500457#Premium Pass Reward Step15# +1500458#Premium Pass Reward Step16# +1500459#Premium Pass Reward Step17# +1500460#Premium Pass Reward Step18# +1500461#Premium Pass Reward Step19# +1500462#Premium Pass Reward Step20# +1500463#Premium Pass Reward Step21# +1500464#Premium Pass Reward Step22# +1500465#Premium Pass Reward Step23# +1500466#Premium Pass Reward Step24# +1500467#Premium Pass Reward Step25# +1500468#C Frosty Fox ear Bell Ribbon# +1500469#[Event] New Pet Scroll# +1500470#C Frosty Ninetail's Tail# +1500471#[Event] Automatic Player Box 30 Days# +1500472#Battle Pass SS II - Quest# +1500473#Battle Pass SS II - Premium# +1500474#Santa Red Box# +1500475#Red Yarn# +1500476#Santa Sock# +1500477#Title - Frostbite# +1500478#2nd Package Box (10)# +1500479#2nd Package Box (20)# +1500480#2nd Package Box (30)# +1500481#2nd Package Box (40)# +1500482#2nd Package Box (50)# +1500483#2nd Package Box (60)# +1500484#2nd Package Box (70)# +1500485#2nd Package Box (80)# +1500486#2nd Package Box (90)# +1500487#2nd Costume Box (99)# +1500488#Hairband# +1500489#Unidentified Garment# +1500490#Starter Pack2-2# +1500491#Title - Starter# +1500492#Weapon Package Box# +1500493#Unidentified Dagger# +1500494#Unidentified Sword# +1500495#Unidentified Sword# +1500496#Sacred Spear# +1500497#Sacred Two-Handed Spear# +1500498#Sacred Axe# +1500499#Sacred Two-Handed Axe# +1500500#VIP Coupon 7 Days# +1500501#VIP Coupon 30 Days# +1500502#VIP Coupon 1 Day# +1500503#Three Master Package New Pets# +1500504#1 Day Unlimited Concentration Potion Box# +1500505#1 Day Unlimited Awakening Potion Box# +1500506#1 Day Unlimited Berserk Potion Box# +1500507#[Event] Job Battle Manual Box(10)# +1500508#[Event] JOB Battle Manual# +1500509#[Event] Orange Potion Box(50)# +1500510#[Event] White Potion Box(50)# +1500511#[Event] CBT Level 60 Rewards# +1500512#[Event] CBT Level 90 Rewards# +1500513#[Event] CBT Bug Slayer Rewards# +1500514#[Event] Stamina Elixir# +1500515#[Event] Hidden Square Reset Pass# +1500516#Unidentified Mace# +1500517#Sacred Wand# +1500518#Sacred Staff# +1500519#Sacred Bow# +1500520#Unidentified Knuckle# +1500521#Sacred Violin# +1500522#Sacred Whip# +1500523#Unidentified Book# +1500524#Unidentified Katar# +1500525#Wolf x ROL Costume Box# +1500526#Unidentified Helmet# +1500527#Unidentified Mask# +1500528#Unidentified Mask# +1500529#Unidentified Mask# +1500530#Unidentified Mask# +1500531#Unidentified Mask# +1500532#Unidentified Mask# +1500533#Flash Deal VI# +1500534#[Dec] Step Spending Box I# +1500535#[Dec] Step Spending Box II# +1500536#X'Mas Scroll# +1500537#[Event] VIP Coupon 30 Days# +1500538#C Cloud Scarf# +1500539#[Event] Transformation Scroll(Rurolph)# +1500540#[Event] Trans Scroll Rurolph Box 14 Day# +1500541#[Event] X'Mas Scroll# +1500542#[Event] Gift of Snow# +1500543#[Event] Captain's Hat# +1500544#Unidentified Glasses# +1500545#Unidentified Mask# +1500546#[Event] Kettle Hat# +1500547#[Event] Snowman Hat# +1500548#[Event] Santa Poring Hat# +1500549#Unidentified Mask# +1500550#Unidentified Shadow Armor# +1500551#Unidentified Shadow Weapon# +1500552#X'Mas Scroll Package# +1500553#Unidentified Garment# +1500554#VIP Stamina Elixir# +1500555#Snowman Decoration Box# +1500556#Title - Monk No.1# +1500557#Title - Rogue No.1# +1500558#Title - Alchemist No.1# +1500559#Title - Bard No.1# +1500560#Title - Sage No.1# +1500561#Title - Crusader No.1# +1500562#Title - Dancer No.1# +1500563#Title - Snowbuilder# +1500564#Title - Nose Artist# +1500565#Title - Chill Chaser# +1500566#Title - Topper Tailor# +1500567#[Event] Premium Reset Stone Box# +1500568#Title - Woodland Sculptor# +1500569#[Event] Neuralizer Box# +1500570#[Event] Weight Box# +1500571#First Refill V Box# +1500572#Top Up Milestone 10 ION Box V# +1500573#Top Up Milestone 30 ION Box V# +1500574#Top Up Milestone 50 ION Box V# +1500575#Top Up Milestone 100 ION Box V# +1500576#Top Up Milestone 300 ION Box V# +1500577#Sleeping Cat Scroll# +1500578#Unidentified Hat# +1500579#Unidentified Ribbon# +1500580#Unidentified Hat# +1500581#[Unlimited] Pet Incubator# +1500582#Ring of Truth Box (7Day)# +1500583#Ring of Truth# +1500584#Aasimar's Ring Box (7Day)# +1500585#Aasimar's Ring# +1500586#[Event] Miracle Medicine I# +1500587#[Event] Miracle Medicine II# +1500588#[Event] Miracle Medicine III# +1500589#[Event] Miracle Medicine IV# +1500590#[Event] Miracle Medicine V# +1500591#[Event] Miracle Medicine VI# +1500592#[Event] Miracle Medicine VII# +1500593#[Event] Miracle Medicine VIII# +1500594#[Event] Miracle Medicine IX# +1500595#[Event] Miracle Medicine X# +1500596#[Event] Miracle Medicine XI# +1500597#[Event] Miracle Medicine XII# +1500598#Aasimar's Ring II Box (7Day)# +1500599#Aasimar's Ring II# +1500600#[Jan] Step Spending Box I# +1500601#[Jan] Step Spending Box II# +1500602#[Jan] Step Spending Box III# +1500603#[Path] Level 10 Blessing Scroll# +1500604#[Path] Level 10 Increase Agility Scroll# +1500605#[Path] Small Life Potion# +1500606#[Path] Medium Life Potion# +1500607#[Path] Mysterious Life Potion# +1500608#[Path] Battle Manual# +1500609#[Path] Bubble Gum# +1500610#[Path] Life Insurance# +1500611#[Path] Battle Manual & Bubble Gum# +1500612#[Path] Chewing Gum Box 7Day# +1500613#[Path] Miracle Medicine I# +1500614#[Path] Miracle Medicine V# +1500615#[Path] Miracle Medicine X# +1500616#[Path] Premium Reset Stone# +1500617#[Path] Neuralizer# +1500618#Title - Path Traveler I# +1500619#Title - Path Traveler II# +1500620#Title - Path Traveler III# +1500621#[Unlimited] Magnifier# +1500622#Ultraseven Scroll# +1500623#[Not for Sale] C Flying Ultraseven# +1500624#[Not for Sale] C Ultraseven Balloon# +1500625#[Not for Sale] C Ultraseven Doll Hat# +1500627#[Not for Sale] Ultraman Playing Skateboard Tranform# +1500628#[Not for Sale] Ultraman Playing Skateboard Tranform (1Day)# +1500629#Lunar New Year Scroll# +1500631#First Refill VI Box# +1500632#First Refill VI Box# +1500633#[Event] Novice Rain Cloud# +1500634#[Event] Novice Rain Cloud Box (14Day)# +1500635#[Feb] Step Spending Box I# +1500636#[Feb] Step Spending Box II# +1500637#[Feb] Step Spending Box III# +1500638#[Feb] Step Spending Box IV# +1500639#[Event] Undead Elemental Scroll# +1500640#[Event] Holy Elemental Scroll# +1500641#[Event] Guyak Pudding# +1500642#Costume Spending Box# +1500643#Top Up Milestone 10 ION Box VI# +1500644#Top Up Milestone 30 ION Box VI# +1500645#Top Up Milestone 50 ION Box VI# +1500646#Top Up Milestone 100 ION Box VI# +1500647#Top Up Milestone 300 ION Box VI# +1500648#Battle Pass Reward Step1# +1500649#Battle Pass Reward Step2# +1500650#Battle Pass Reward Step3# +1500651#Battle Pass Reward Step4# +1500652#Battle Pass Reward Step5# +1500653#Battle Pass Reward Step6# +1500654#Battle Pass Reward Step7# +1500655#Battle Pass Reward Step8# +1500656#Battle Pass Reward Step9# +1500657#Battle Pass Reward Step10# +1500658#Battle Pass Reward Step11# +1500659#Battle Pass Reward Step12# +1500660#Battle Pass Reward Step13# +1500661#Battle Pass Reward Step14# +1500662#Battle Pass Reward Step15# +1500663#Battle Pass Reward Step16# +1500664#Battle Pass Reward Step17# +1500665#Battle Pass Reward Step18# +1500666#Battle Pass Reward Step19# +1500667#Battle Pass Reward Step20# +1500668#Battle Pass Reward Step21# +1500669#Battle Pass Reward Step22# +1500670#Battle Pass Reward Step23# +1500671#Battle Pass Reward Step24# +1500672#Battle Pass Reward Step25# +1500673#Battle Pass Reward Step26# +1500674#Battle Pass Reward Step27# +1500675#Battle Pass Reward Step28# +1500676#Battle Pass Reward Step29# +1500677#Battle Pass Reward Step30# +1500678#Battle Pass Reward Step31# +1500679#Battle Pass Reward Step32# +1500680#Battle Pass Reward Step33# +1500681#Battle Pass Reward Step34# +1500682#Battle Pass Reward Step35# +1500683#Battle Pass Reward Step36# +1500684#Battle Pass Reward Step37# +1500685#Battle Pass Reward Step38# +1500686#Battle Pass Reward Step39# +1500687#Battle Pass Reward Step40# +1500688#Battle Pass Reward Step41# +1500689#Battle Pass Reward Step42# +1500690#Battle Pass Reward Step43# +1500691#Battle Pass Reward Step44# +1500692#Battle Pass Reward Step45# +1500693#Battle Pass Reward Step46# +1500694#Battle Pass Reward Step47# +1500695#Battle Pass Reward Step48# +1500696#Battle Pass Reward Step49# +1500697#Battle Pass Reward Step50# +1500699#Premium Pass Reward Step1# +1500700#Premium Pass Reward Step2# +1500701#Premium Pass Reward Step3# +1500702#Premium Pass Reward Step4# +1500703#Premium Pass Reward Step5# +1500704#Premium Pass Reward Step6# +1500705#Premium Pass Reward Step7# +1500706#Premium Pass Reward Step8# +1500707#Premium Pass Reward Step9# +1500708#Premium Pass Reward Step10# +1500709#Premium Pass Reward Step11# +1500710#Premium Pass Reward Step12# +1500711#Premium Pass Reward Step13# +1500712#Premium Pass Reward Step14# +1500713#Premium Pass Reward Step15# +1500714#Premium Pass Reward Step16# +1500715#Premium Pass Reward Step17# +1500716#Premium Pass Reward Step18# +1500717#Premium Pass Reward Step19# +1500718#Premium Pass Reward Step20# +1500719#Premium Pass Reward Step21# +1500720#Premium Pass Reward Step22# +1500721#Premium Pass Reward Step23# +1500722#Premium Pass Reward Step24# +1500723#Premium Pass Reward Step25# +1500724#Title - Grand Heart# +1500725#Battle Pass SS III - Quest# +1500726#Battle Pass SS III - Premium# +1500727#BP Enchanted Heart# +1500728#BP Big Lovely Heart# +1500729#Valentine Scroll# +1500730#Unidentified Ribbon# +1500731#[Event] - Random Rental Ring Box# +1500732#[Event] Reward King of Midgard# +1500733#[Event] Reward Team Win Midgard# +1500734#[Event] Reward Team Lose Midgard# +1500735#Taipei Game Show Box# +1500736#Step Spending Box Reward 5000Moonstone# +1500737#Step Spending Box Reward 15000Moonstone# +1500738#Step Spending Box Reward 30000Moonstone# +1500739#Unlimited Arrow Box (7Days)# +1500740#Unlimited Silver Arrow Box (7Days)# +1500741#Unlimited Fire Arrow Box (7Days)# +1500742#Unlimited Arrow# +1500743#Unlimited Silver Arrow# +1500744#Unlimited Fire Arrow# +1500745#Ultraman Taro Scroll# +1500746#[Not for Sale] C Flying Ultraman Taro# +1500747#[Not for Sale] C Ultraman Taro Balloon# +1500748#[Not for Sale] C Ultraman Taro Doll Hat# +1500749#[Not for Sale] C Ultraman Balloon# +1500750#[Not for Sale] C Ultraman Taro Doll Bag# +1500751#[Not for Sale] C Ultraseven Doll Bag# +1500752#[Not for Sale] C Ultraman Ace Doll Bag# +1500753#[Not for Sale] C Ultraman Doll Bag# +1500754#[Not for Sale] C Ultraman Mask# +1500755#[Not for Sale] C Ultraseven Mask# +1500756#[Not for Sale] C Ultraman Ace Mask# +1500757#[Not for Sale] C Ultraman Taro Mask# +1500758#Scholar's Ring Box (15Day)# +1500759#Ultraseven Box (14 Days)# +1500760#Ultraman Taro Box (14 Days)# +1500761#[Rental] C Flying Ultraseven Box (14 Days)# +1500762#[Rental] C Ultraseven Balloon Box (14 Days)# +1500763#[Rental] C Ultraseven Doll Hat Box (14 Days)# +1500765#[Rental] C Flying Ultraman Taro Box (14 Days)# +1500766#[Rental] C Ultraman Taro Balloon Box (14 Days)# +1500767#[Rental] C Ultraman Taro Doll Hat Box (14 Days)# +1500769#Ultraseven Scroll Package# +1500770#Ultraman Taro Scroll Package# +1500771#[Event] Ultraseven Scroll# +1500772#[Event] Ultraman Taro Scroll# +1500773#[Event] C Flying Ultraseven# +1500774#[Event] C Ultraseven Balloon# +1500775#[Event] C Ultraseven Doll Hat# +1500776#[Event] C Ultraman Balloon# +1500777#[Event] C Flying Ultraman Taro# +1500778#[Event] C Ultraman Taro Balloon# +1500779#[Event] C Ultraman Taro Doll Hat# +1500781#[Event] Adventurer's Backpack (Hidding)# +1500782#[Event] Angelring Balloon# +1500783#[Event] Arch Angelring Balloon# +1500784#[Ultraman] Enchant Stone Box# +1500785#[Not for Sale] Ultraman Playing Skateboard Tranform (7Day)# +1500786#[Rental] C Flying Ultraseven# +1500787#[Rental] C Ultraseven Balloon# +1500788#[Rental] C Ultraseven Doll Hat# +1500789#[Rental] C Flying Ultraman Taro# +1500790#[Rental] C Ultraman Taro Balloon# +1500791#[Rental] C Ultraman Taro Doll Hat# +1500792#Adventurer's Backpack (Teleport)# +1500793#[Event] Adventurer's Backpack (Teleport)# +1500794#Flash Deal VII# +1500795#First Refill VII Box# +1500796#First Refill VII Box# +1500797#Top Up Milestone 10 ION Box VII# +1500798#Top Up Milestone 30 ION Box VII# +1500799#Top Up Milestone 50 ION Box VII# +1500800#Top Up Milestone 100 ION Box VII# +1500801#Top Up Milestone 300 ION Box VII# +1500802#[Event] True Tyr's Blessing# +1500803#[Event] Big Bun# +1500804#[Event] Pill# +1500805#ROVerse Level-Up Pack (1)# +1500806#ROVerse Level-Up Pack (10)# +1500807#ROVerse Level-Up Pack (20)# +1500808#ROVerse Level-Up Pack (30)# +1500809#ROVerse Level-Up Pack (40)# +1500810#ROVerse Level-Up Pack (50)# +1500811#ROVerse Level-Up Pack (60)# +1500812#ROVerse Level-Up Pack (70)# +1500813#ROVerse Level-Up Pack (80)# +1500814#ROVerse Level-Up Pack (90)# +1500815#[Event] Costume Starter Pack Thief Hat# +1500816#[Event] Beginner Shadow Armor# +1500817#[Event] Beginner Shadow Weapon# +1500818#[Event] Beginner Shadow Shield# +1500819#[Event] Beginner Shadow Shoes# +1500820#[Event] Beginner Shadow Earring# +1500821#[Event] Beginner Shadow Pendant# +1500822#[Event] ROL Beginner Hat# +1500823#[Event] ROL Beginner Armor# +1500824#[Event] ROL Beginner Garment# +1500825#[Event] ROL Beginner Shoes# +1500826#[Event] Scholar's Ring Box (3Day)# +1500827#[Event] Scholar's Ring# +1500828#[Event] Inspector Certificate# +1500829#[Land] Food Basket# +1500830#Robot Ring# +1500831#Rusty Ring# +1500832#Sovereign Diadem# +1500833#Sovereign Mail# +1500834#Sovereign Cloak# +1500835#Sovereign Treads# +1500836#Step Spending Box Reward 5000Moonstone# +1500837#Step Spending Box Reward 15000Moonstone# +1500838#Step Spending Box Reward 30000Moonstone# +1500839#AmistrBag Random Box# +1500840#Unidentified Garment# +1500841#Flash Deal XII (1)# +1500842#Flash Deal XII (2)# +1500843#Ultraseven Scroll Package# +1500844#Ultraman Taro Scroll Package# +1500845#Moscovia Quest Pass# +1500846#Kiel Hyre Quest Pass# +1500847#The Sign Quest Pass# +1500848#Kafra Scroll# +1500849#Philippines item code 1# +1500850#Helm of Hela# +1500851#Eye of Freya# +1500852#Achilles Shield# +1500853#Freya's Spiritual Robe# +1500854#White Tiger Scroll# +1500855#Tower of Tides Supply Box# +1500856#Endless Tower Supply Box# +1500857#Top Up Milestone 10 ION Box VIII# +1500858#Top Up Milestone 30 ION Box VIII# +1500859#Top Up Milestone 50 ION Box VIII# +1500860#Top Up Milestone 100 ION Box VIII# +1500861#Top Up Milestone 300 ION Box VIII# +1500862#[Apr] First Refill Box 10ION# +1500863#[Apr] First Refill Box 30ION# +1500864#Title - The New journey# +1500865#[Event] Scuba Mask box (14 Days)# +1500866#[Event] Scuba Mask# +1500867#Title - Divided# +1500868#Adamantine Blessing Box# +1500869#[Event] Shrine Pocket# +1500870#Godly Material Box# +1500871#[Event] Ninja Palace# +1500872#Mad Bunny Scroll# +1500873#Kiel D-01 Processor# +1500874#Moscovia Crown# +1500875#Light and Darkness box# +1500876#Wings of Light and Darkness# +1500877#[Event] Supply Big Bun& Pill Box# +1500878#Battle Pass Reward Step1# +1500879#Battle Pass Reward Step2# +1500880#Battle Pass Reward Step3# +1500881#Battle Pass Reward Step4# +1500882#Battle Pass Reward Step5# +1500883#Battle Pass Reward Step6# +1500884#Battle Pass Reward Step7# +1500885#Battle Pass Reward Step8# +1500886#Battle Pass Reward Step9# +1500887#Battle Pass Reward Step10# +1500888#Battle Pass Reward Step11# +1500889#Battle Pass Reward Step12# +1500890#Battle Pass Reward Step13# +1500891#Battle Pass Reward Step14# +1500892#Battle Pass Reward Step15# +1500893#Battle Pass Reward Step16# +1500894#Battle Pass Reward Step17# +1500895#Battle Pass Reward Step18# +1500896#Battle Pass Reward Step19# +1500897#Battle Pass Reward Step20# +1500898#Battle Pass Reward Step21# +1500899#Battle Pass Reward Step22# +1500900#Battle Pass Reward Step23# +1500901#Battle Pass Reward Step24# +1500902#Battle Pass Reward Step25# +1500903#Battle Pass Reward Step26# +1500904#Battle Pass Reward Step27# +1500905#Battle Pass Reward Step28# +1500906#Battle Pass Reward Step29# +1500907#Battle Pass Reward Step30# +1500908#Battle Pass Reward Step31# +1500909#Battle Pass Reward Step32# +1500910#Battle Pass Reward Step33# +1500911#Battle Pass Reward Step34# +1500912#Battle Pass Reward Step35# +1500913#Battle Pass Reward Step36# +1500914#Battle Pass Reward Step37# +1500915#Battle Pass Reward Step38# +1500916#Battle Pass Reward Step39# +1500917#Battle Pass Reward Step40# +1500918#Battle Pass Reward Step41# +1500919#Battle Pass Reward Step42# +1500920#Battle Pass Reward Step43# +1500921#Battle Pass Reward Step44# +1500922#Battle Pass Reward Step45# +1500923#Battle Pass Reward Step46# +1500924#Battle Pass Reward Step47# +1500925#Battle Pass Reward Step48# +1500926#Battle Pass Reward Step49# +1500927#Battle Pass Reward Step50# +1500928#Premium Pass Reward Step1# +1500929#Premium Pass Reward Step2# +1500930#Premium Pass Reward Step3# +1500931#Premium Pass Reward Step4# +1500932#Premium Pass Reward Step5# +1500933#Premium Pass Reward Step6# +1500934#Premium Pass Reward Step7# +1500935#Premium Pass Reward Step8# +1500936#Premium Pass Reward Step9# +1500937#Premium Pass Reward Step10# +1500938#Premium Pass Reward Step11# +1500939#Premium Pass Reward Step12# +1500940#Premium Pass Reward Step13# +1500941#Premium Pass Reward Step14# +1500942#Premium Pass Reward Step15# +1500943#Premium Pass Reward Step16# +1500944#Premium Pass Reward Step17# +1500945#Premium Pass Reward Step18# +1500946#Premium Pass Reward Step19# +1500947#Premium Pass Reward Step20# +1500948#Premium Pass Reward Step21# +1500949#Premium Pass Reward Step22# +1500950#Premium Pass Reward Step23# +1500951#Premium Pass Reward Step24# +1500952#Premium Pass Reward Step25# +1500953#Title - Splash Mania# +1500954#Battle Pass SS IV - Quest# +1500955#Battle Pass SS IV - Premium# +1500956#BP Lotus Petal# +1500957#BP Tropical Drink# +1500958#BP Aqua Crystal# +1500959#Guild Master Rewards box (Guild Lv.5)# +1500960#Guild Master Rewards box (Guild Lv.10)# +1500961#Dungeon Explorer Reward# +1500962#Title - Ninja No.1# +1500963#Title - Gunslinger No.1# +1500964#Title - Teakwondo No.1# +1500965#Title - Soul Linker No.1# +1500966#Knight Pass# +1500967#(Prontera) Knight Class pass Lv50# +1500968#(Prontera) Knight Class pass Lv55# +1500969#(Prontera) Knight Class pass Lv60# +1500970#(Prontera) Knight Class pass Lv65# +1500971#(Prontera) Knight Class pass Lv70# +1500972#(Prontera) Knight Class pass Lv75# +1500973#(Prontera) Knight Class pass Lv80# +1500974#(Prontera) Knight Class pass Lv85# +1500975#(Prontera) Knight Class pass Lv90# +1500976#(Prontera) Knight Class pass Lv95# +1500977#Schmidt's Two-hand sword# +1500978#[Event] Medal of Honor (Swordman)# +1500979#Title - Prontera Adventure# +1500980#[Event] Scholar's Ring Box (7ay)# +1500981#(Prontera) Crusader Class pass Lv50# +1500982#(Prontera) Crusader Class pass Lv55# +1500983#(Prontera) Crusader Class pass Lv60# +1500984#(Prontera) Crusader Class pass Lv65# +1500985#(Prontera) Crusader Class pass Lv70# +1500986#(Prontera) Crusader Class pass Lv75# +1500987#(Prontera) Crusader Class pass Lv80# +1500988#(Prontera) Crusader Class pass Lv85# +1500989#(Prontera) Crusader Class pass Lv90# +1500990#(Prontera) Crusader Class pass Lv95# +1500991#Schmidt's Two-hand Spear# +1500992#(Prontera) Blacksmith Class pass Lv50# +1500993#(Prontera) Blacksmith Class pass Lv55# +1500994#(Prontera) Blacksmith Class pass Lv60# +1500995#(Prontera) Blacksmith Class pass Lv65# +1500996#(Prontera) Blacksmith Class pass Lv70# +1500997#(Prontera) Blacksmith Class pass Lv75# +1500998#(Prontera) Blacksmith Class pass Lv80# +1500999#(Prontera) Blacksmith Class pass Lv85# +1501000#(Prontera) Blacksmith Class pass Lv90# +1501001#(Prontera) Blacksmith Class pass Lv95# +1501002#Schmidt's Two-Handed Axe# +1501003#Crusader Pass# +1501004#Blacksmith Pass# +1501005#Alchemist Pass# +1501006#[Event] Medal of Honor (Merchant)# +1501007#(Prontera) Alchemist Class pass Lv70# +1501008#(Prontera) Alchemist Class pass Lv75# +1501009#(Prontera) Alchemist Class pass Lv80# +1501010#(Prontera) Alchemist Class pass Lv85# +1501011#(Prontera) Alchemist Class pass Lv90# +1501012#(Prontera) Alchemist Class pass Lv95# +1501013#Assassin Pass# +1501014#[Event] Medal of Honor (Thief)# +1501015#(Prontera) Assassin Class pass Lv50# +1501016#(Prontera) Assassin Class pass Lv55# +1501017#(Prontera) Assassin Class pass Lv60# +1501018#(Prontera) Assassin Class pass Lv65# +1501019#(Prontera) Assassin Class pass Lv70# +1501020#(Prontera) Assassin Class pass Lv75# +1501021#(Prontera) Assassin Class pass Lv80# +1501022#(Prontera) Assassin Class pass Lv85# +1501023#(Prontera) Assassin Class pass Lv90# +1501024#(Prontera) Assassin Class pass Lv95# +1501025#Schmidt's Katar# +1501026#Rogue Pass# +1501027#Schmidt's Dagger# +1501028#(Prontera) Rogue Class pass Lv50# +1501029#(Prontera) Rogue Class pass Lv55# +1501030#(Prontera) Rogue Class pass Lv60# +1501031#(Prontera) Rogue Class pass Lv65# +1501032#(Prontera) Rogue Class pass Lv70# +1501033#(Prontera) Rogue Class pass Lv75# +1501034#(Prontera) Rogue Class pass Lv80# +1501035#(Prontera) Rogue Class pass Lv85# +1501036#(Prontera) Rogue Class pass Lv90# +1501037#(Prontera) Rogue Class pass Lv95# +1501038#Priest Pass# +1501039#[Event] Medal of Honor (Acolyte)# +1501040#Schmidt's Mace# +1501041#(Prontera) Priest Class pass Lv50# +1501042#(Prontera) Priest Class pass Lv55# +1501043#(Prontera) Priest Class pass Lv60# +1501044#(Prontera) Priest Class pass Lv65# +1501045#(Prontera) Priest Class pass Lv70# +1501046#(Prontera) Priest Class pass Lv75# +1501047#(Prontera) Priest Class pass Lv80# +1501048#(Prontera) Priest Class pass Lv85# +1501049#(Prontera) Priest Class pass Lv90# +1501050#(Prontera) Priest Class pass Lv95# +1501051#Monk Pass# +1501052#Schmidt's Knuckle# +1501053#(Prontera) Monk Class pass Lv50# +1501054#(Prontera) Monk Class pass Lv55# +1501055#(Prontera) Monk Class pass Lv60# +1501056#(Prontera) Monk Class pass Lv65# +1501057#(Prontera) Monk Class pass Lv70# +1501058#(Prontera) Monk Class pass Lv75# +1501059#(Prontera) Monk Class pass Lv80# +1501060#(Prontera) Monk Class pass Lv85# +1501061#(Prontera) Monk Class pass Lv90# +1501062#(Prontera) Monk Class pass Lv95# +1501063#Wizard Pass# +1501064#Schmidt's Staff# +1501065#(Prontera) Wizard Class pass Lv50# +1501066#(Prontera) Wizard Class pass Lv55# +1501067#(Prontera) Wizard Class pass Lv60# +1501068#(Prontera) Wizard Class pass Lv65# +1501069#(Prontera) Wizard Class pass Lv70# +1501070#(Prontera) Wizard Class pass Lv75# +1501071#(Prontera) Wizard Class pass Lv80# +1501072#(Prontera) Wizard Class pass Lv85# +1501073#(Prontera) Wizard Class pass Lv90# +1501074#(Prontera) Wizard Class pass Lv95# +1501075#[Event] Medal of Honor (Mage)# +1501076#(Prontera) Sage Class pass Lv50# +1501077#(Prontera) Sage Class pass Lv55# +1501078#(Prontera) Sage Class pass Lv60# +1501079#(Prontera) Sage Class pass Lv65# +1501080#(Prontera) Sage Class pass Lv70# +1501081#(Prontera) Sage Class pass Lv75# +1501082#(Prontera) Sage Class pass Lv80# +1501083#(Prontera) Sage Class pass Lv85# +1501084#(Prontera) Sage Class pass Lv90# +1501085#(Prontera) Sage Class pass Lv95# +1501086#Sage Pass# +1501087#Schmidt's Book# +1501088#Hunter Pass# +1501089#Schmidt's Bow# +1501090#[Event] Medal of Honor (Archer)# +1501091#(Prontera) Hunter Class pass Lv50# +1501092#(Prontera) Hunter Class pass Lv55# +1501093#(Prontera) Hunter Class pass Lv60# +1501094#(Prontera) Hunter Class pass Lv65# +1501095#(Prontera) Hunter Class pass Lv70# +1501096#(Prontera) Hunter Class pass Lv75# +1501097#(Prontera) Hunter Class pass Lv80# +1501098#(Prontera) Hunter Class pass Lv85# +1501099#(Prontera) Hunter Class pass Lv90# +1501100#(Prontera) Hunter Class pass Lv95# +1501101#(Prontera) Bard Class pass Lv50# +1501102#(Prontera) Bard Class pass Lv55# +1501103#(Prontera) Bard Class pass Lv60# +1501104#(Prontera) Bard Class pass Lv65# +1501105#(Prontera) Bard Class pass Lv70# +1501106#(Prontera) Bard Class pass Lv75# +1501107#(Prontera) Bard Class pass Lv80# +1501108#(Prontera) Bard Class pass Lv85# +1501109#(Prontera) Bard Class pass Lv90# +1501110#(Prontera) Bard Class pass Lv95# +1501111#Bard Pass# +1501112#Schmidt's Guitar# +1501113#Dancer Pass# +1501114#Schmidt's Whip# +1501115#(Prontera) Dancer Class pass Lv50# +1501116#(Prontera) Dancer Class pass Lv55# +1501117#(Prontera) Dancer Class pass Lv60# +1501118#(Prontera) Dancer Class pass Lv65# +1501119#(Prontera) Dancer Class pass Lv70# +1501120#(Prontera) Dancer Class pass Lv75# +1501121#(Prontera) Dancer Class pass Lv80# +1501122#(Prontera) Dancer Class pass Lv85# +1501123#(Prontera) Dancer Class pass Lv90# +1501124#(Prontera) Dancer Class pass Lv95# +1501125#Gunslinger Pass# +1501126#[Event] Medal of Honor (Gunslinger)# +1501127#Schmidt's Revolver# +1501128#(Prontera) Gunslinger Class pass Lv50# +1501129#(Prontera) Gunslinger Class pass Lv55# +1501130#(Prontera) Gunslinger Class pass Lv60# +1501131#(Prontera) Gunslinger Class pass Lv65# +1501132#(Prontera) Gunslinger Class pass Lv70# +1501133#(Prontera) Gunslinger Class pass Lv75# +1501134#(Prontera) Gunslinger Class pass Lv80# +1501135#(Prontera) Gunslinger Class pass Lv85# +1501136#(Prontera) Gunslinger Class pass Lv90# +1501137#(Prontera) Gunslinger Class pass Lv95# +1501138#Ninja Pass# +1501139#Medal of Honor (Ninja)# +1501140#Schmidt's Shuriken# +1501141#(Prontera) Ninja Class pass Lv50# +1501142#(Prontera) Ninja Class pass Lv55# +1501143#(Prontera) Ninja Class pass Lv60# +1501144#(Prontera) Ninja Class pass Lv65# +1501145#(Prontera) Ninja Class pass Lv70# +1501146#(Prontera) Ninja Class pass Lv75# +1501147#(Prontera) Ninja Class pass Lv80# +1501148#(Prontera) Ninja Class pass Lv85# +1501149#(Prontera) Ninja Class pass Lv90# +1501150#(Prontera) Ninja Class pass Lv95# +1501151#Schmidt's Teakwondo Robe# +1501152#Medal of Honor (Taekwondo)# +1501153#Taekwondo Pass# +1501154#(Prontera) Taekwondo Class pass Lv50# +1501155#(Prontera) Taekwondo Class pass Lv55# +1501156#(Prontera) Taekwondo Class pass Lv60# +1501157#(Prontera) Taekwondo Class pass Lv65# +1501158#(Prontera) Taekwondo Class pass Lv70# +1501159#(Prontera) Taekwondo Class pass Lv75# +1501160#(Prontera) Taekwondo Class pass Lv80# +1501161#(Prontera) Taekwondo Class pass Lv85# +1501162#(Prontera) Taekwondo Class pass Lv90# +1501163#(Prontera) Taekwondo Class pass Lv95# +1501164#Schmidt's One-Hand Axe# +1501165#(Prontera) Alchemist Class pass Lv50# +1501166#(Prontera) Alchemist Class pass Lv55# +1501167#(Prontera) Alchemist Class pass Lv60# +1501168#(Prontera) Alchemist Class pass Lv65# +1501169#NOVA Special PASS# +1501170#NOVA Treasure Coupon# +1501171#NOVA Premium Treasure Coupon# +1501172#[Event] Automatic Player Box 14 Days# +1501173#Title - PRONTERA# +1501174#NOVA Space Subscription Coupon 30 Days# +1501175#NOVA Space Subscription Coupon 7 Days# +1501176#Finding Kafra NOVA# +1501177#Step Spending Box Reward 5000Moonstone# +1501178#Step Spending Box Reward 15000Moonstone# +1501179#Step Spending Box Reward 30000Moonstone# +1501180#Glorious Badge# +1501181#[Event] NOVA Space Subscription Coupon 30 Days# +1501182#[Event] NOVA Space Subscription Coupon 7 Days# +1501183#Unidentified Axe# +1501184#Unidentified Bow# +1501185#Unidentified Dagger# +1501186#Unidentified Sword# +1501187#Unidentified Mace# +1501188#Unidentified Katar# +1501189#Thanos Knuckle# +1501190#Thanos Two-Handed Spear# +1501191#Thanos Spear# +1501192#Thanos Staff# +1501193#Unidentified Sword# +1501194#Thanos Two-Handed Staff# +1501195#(Classic) Thanos Violin# +1501196#(Classic) Thanos Whip# +1501197#Unidentified Armor# +1501198#Unidentified Shoes# +1501199#Unidentified Garment# +1501200#Unidentified Helmet# +1501201#Unidentified Armor# +1501202#Gray Shield# +1501203#Unidentified Ribbon# +1501204#[Event] Gunslinger Hideout# +1501205#Schmidt's Weapon +8 Refinement Box# +1501206#[May] First Refill Box 10ION# +1501207#[May] First Refill Box 30ION# +1501208#Unidentified Hat# +1501209#[May] Top Up Milestone 10 ION Box# +1501210#[May] Top Up Milestone 30 ION Box# +1501211#[May] Top Up Milestone 50 ION Box# +1501212#[May] Top Up Milestone 100 ION Box# +1501213#[May] Top Up Milestone 300 ION Box# +1501215#Angel School Cap box (14 Days)# +1501216#Title : Welcome to Midgard# +1501217#Bullet# +1501218#Silver Bullet# +1501219#Icicle Kunai# +1501220#Black Earth Kunai# +1501221#High Wind Kunai# +1501222#Heat Wave Kunai# +1501223#Unlimited Bullet Box (7 Days)# +1501224#Unlimited Silver Bullet Box (7 Days)# +1501225#Unlimited High Wind Kunai Box (7 Days)# +1501226#Unlimited Icicle Kunai Box (7 Days)# +1501227#Unlimited Heat Wave Kunai Box (7 Days)# +1501228#Unlimited Black Earth Kunai Box (7 Days)# +1501229#Life Potion Boost Box# +1501230#Golden Imperial Scroll# +1501231#Golden Gladiator Helm# +1501232#Silver Knight Helm# +1501233#[Land] Jolly Chocolate Drink# +1501234#[Land] Sweet Crepe# +1501235#[Land] Luxurious Western Food# +1501236#[Land] South Pork Ricebowl# +1501237#[Land] Roasted Turkey# +1501238#[Land] Braised ShortRibs# +1501239#[Land] Golden Apple# +1501240#[Event] Fire Elemental Converter# +1501241#[Event] Water Elemental Converter# +1501242#[Event] Earth Elemental Converter# +1501243#[Event] Wind Elemental Converter# +1501244#[Event] Panacea# +1501245#[Event] Strawberry# +1501246#Step Spending Box Reward 5000Moonstone# +1501247#Step Spending Box Reward 15000Moonstone# +1501248#Step Spending Box Reward 30000Moonstone# +1501249#King Pet hat# +1501250#Bow Mastery Scroll# +1501251#Hunting Cap# +1501252#Fancy Feather Hat# +1501253#Super Cute Doll Hat# +1501254#Title - MVP Hunter# +1501255#Title - King of Hunter# +1501256#Title - Ultimate Hunter# +1501257#Title - Heart Hunter# +1501258#Sealed card hutning album# +1501259#Mini Boss Card Album# +1501260#Unidentified Shoes# +1501261#Unidentified Shoes# +1501262#Unidentified Shoes# +1501263#Unidentified Shoes# +1501264#Unidentified Shoes# +1501265#Unidentified Shoes# +1501266#Unidentified Shoes# +1501267#Unidentified Shoes# +1501268#Unidentified Shoes# +1501269#Unidentified Shoes# +1501270#Unidentified Shoes# +1501271#Unidentified Shoes# +1501272#Temporal Boots# +1501273#Bonfire of Camping# +1501274#[Event] Unlimited Fly Wing Box (1 Day)# +1501275#[Event] Egg Shell# +1501276#[June] First Refill Box 10ION# +1501277#[June] First Refill Box 30ION# +1501278#Egg Shell Box (14DAYS)# +1501279#Kafra Ticket Box# +1501280#[June] Top Up Milestone 10 ION Box# +1501281#[June] Top Up Milestone 30 ION Box# +1501282#[June] Top Up Milestone 50 ION Box# +1501283#[June] Top Up Milestone 100 ION Box# +1501284#[June] Top Up Milestone 300 ION Box# +1501285#Title : Old Glastheim Destroyer# +1501286#Title : Old Glastheim Destroyer Box (25 days)# +1501287#Step Spending Box Reward 5000Moonstone# +1501288#Step Spending Box Reward 15000Moonstone# +1501289#Step Spending Box Reward 30000Moonstone# +1501290#Flameburst Candy# +1501291#Festival Red Candy# +1501292#Festival Blue Candy# +1501293#Festival Orange Candy# +1501294#Festival Yellow Candy# +1501295#[Event] Lucky Candy# +1501296#Candy Sorcerer scroll# +1501297#Sorcerer mask# +1501298#Hat of Elemental# +1501299#Bronze Package# +1501300#Silver Package# +1501301#Gold Package# +1501302#Platinum Package# +1501303#Diamond Package# +1501304#Costume random box S# +1501305#Costume random box SS# +1501306#[Event] Booster Box Gold# +1501307#[Event] Booster Box Platinum# +1501308#[Event] Booster Box Diamond# +1501309#Unlimited Fly Wing Box (14 Days)# +1501310#Unlimited Fly Wing Box (7 Days)# +1501311#Title: The Beginner# +1501312#Title: The Protector# +1501313#Title: Guardian of Midgard# +1501314#Title: Uncrowned King# +1501315#Title: King of Midgard# +1501316#Old Hat Box# +1501317#[Event] Adventure ROL Scroll# +1501318#[Event] Bravery Bag# +1501319#[Event] Teleport Amistr Bag# +1501320#Close beta Level up Minestone Box (80)# +1501321#Close beta Level up Minestone Box (90)# +1501322#Close beta Level up Minestone Box (100)# +1501323#Pre-register 10,000 Account Box# +1501324#Pre-register 30,000 Account Box# +1501325#Pre-register 100,000 Account Box# +1501326#Pre-register 200,000 Account Box# +1501327#Pre-register 300,000 Account Box# +1501328#[Event] Basic Pet Scroll (Uncommon - Rare)# +1501329#Beginner Scroll# +1501330#[Event] Ragnarok GGT Anniversary Box# +1501331#[Event] Offline Party ROL Box# +1501332#Close beta Raid Boss Box (1-3)# +1501333#Close beta Raid Boss Box (4-6)# +1501334#Close beta Raid Boss Box (7-9)# +1501335#Close beta Raid Boss Box (10)# +1501336#Close beta Find Bug Box# +1501340#Spirit of merchant Scroll# +1501341#Golden Crown# +1501342#Master Chemicals# +1501343#[Event] Mystery Dragon Egg# +1501344#[Event]Dragon Helm# +1501346#[July] First Refill Box 10ION# +1501347#[July] First Refill Box 30ION# +1501348#[Event] Yggdrasil Leaf# +1501349#[Event] Yggdrasil Leaf (14Days)# +1501350#[July] Top Up Milestone 10 ION Box# +1501351#[July] Top Up Milestone 30 ION Box# +1501352#[July] Top Up Milestone 50 ION Box# +1501353#[July] Top Up Milestone 100 ION Box# +1501354#[July] Top Up Milestone 300 ION Box# +1501355#Title : Welcome to Yggdrasil Rift# +1501356#Inferno Crystal# +1501357#BP Ember Fragment# +1501358#BP Enchanted Flame# +1501359#Battle Pass SS V - Premium# +1501360#Battle Pass SS V - Quest# +1501361#Terra Nova Coin Box# +1501362#Terra Nova Fragment Box# +1501363#King Legacy Crown 2024# +1501364#Battle Pass Reward Step1# +1501365#Battle Pass Reward Step2# +1501366#Battle Pass Reward Step3# +1501367#Battle Pass Reward Step4# +1501368#Battle Pass Reward Step5# +1501369#Battle Pass Reward Step6# +1501370#Battle Pass Reward Step7# +1501371#Battle Pass Reward Step8# +1501372#Battle Pass Reward Step9# +1501373#Battle Pass Reward Step10# +1501374#Battle Pass Reward Step11# +1501375#Battle Pass Reward Step12# +1501376#Battle Pass Reward Step13# +1501377#Battle Pass Reward Step14# +1501378#Battle Pass Reward Step15# +1501379#Battle Pass Reward Step16# +1501380#Battle Pass Reward Step17# +1501381#Battle Pass Reward Step18# +1501382#Battle Pass Reward Step19# +1501383#Battle Pass Reward Step20# +1501384#Battle Pass Reward Step21# +1501385#Battle Pass Reward Step22# +1501386#Battle Pass Reward Step23# +1501387#Battle Pass Reward Step24# +1501388#Battle Pass Reward Step25# +1501389#Battle Pass Reward Step26# +1501390#Battle Pass Reward Step27# +1501391#Battle Pass Reward Step28# +1501392#Battle Pass Reward Step29# +1501393#Battle Pass Reward Step30# +1501394#Battle Pass Reward Step31# +1501395#Battle Pass Reward Step32# +1501396#Battle Pass Reward Step33# +1501397#Battle Pass Reward Step34# +1501398#Battle Pass Reward Step35# +1501399#Battle Pass Reward Step36# +1501400#Battle Pass Reward Step37# +1501401#Battle Pass Reward Step38# +1501402#Battle Pass Reward Step39# +1501403#Battle Pass Reward Step40# +1501404#Battle Pass Reward Step41# +1501405#Battle Pass Reward Step42# +1501406#Battle Pass Reward Step43# +1501407#Battle Pass Reward Step44# +1501408#Battle Pass Reward Step45# +1501409#Battle Pass Reward Step46# +1501410#Battle Pass Reward Step47# +1501411#Battle Pass Reward Step48# +1501412#Battle Pass Reward Step49# +1501413#Battle Pass Reward Step50# +1501414#Premium Pass Reward Step1# +1501415#Premium Pass Reward Step2# +1501416#Premium Pass Reward Step3# +1501417#Premium Pass Reward Step4# +1501418#Premium Pass Reward Step5# +1501419#Premium Pass Reward Step6# +1501420#Premium Pass Reward Step7# +1501421#Premium Pass Reward Step8# +1501422#Premium Pass Reward Step9# +1501423#Premium Pass Reward Step10# +1501424#Premium Pass Reward Step11# +1501425#Premium Pass Reward Step12# +1501426#Premium Pass Reward Step13# +1501427#Premium Pass Reward Step14# +1501428#Premium Pass Reward Step15# +1501429#Premium Pass Reward Step16# +1501430#Premium Pass Reward Step17# +1501431#Premium Pass Reward Step18# +1501432#Premium Pass Reward Step19# +1501433#Premium Pass Reward Step20# +1501434#Premium Pass Reward Step21# +1501435#Premium Pass Reward Step22# +1501436#Premium Pass Reward Step23# +1501437#Premium Pass Reward Step24# +1501438#Premium Pass Reward Step25# +1501439#Premium Pass Reward Step26# +1501440#Premium Pass Reward Step27# +1501441#Premium Pass Reward Step28# +1501442#Premium Pass Reward Step29# +1501443#Premium Pass Reward Step30# +1501444#Premium Pass Reward Step31# +1501445#Premium Pass Reward Step32# +1501446#Premium Pass Reward Step33# +1501447#Premium Pass Reward Step34# +1501448#Premium Pass Reward Step35# +1501449#Premium Pass Reward Step36# +1501450#Premium Pass Reward Step37# +1501451#Premium Pass Reward Step38# +1501452#Premium Pass Reward Step39# +1501453#Premium Pass Reward Step40# +1501454#Premium Pass Reward Step41# +1501455#Premium Pass Reward Step42# +1501456#Premium Pass Reward Step43# +1501457#Premium Pass Reward Step44# +1501458#Premium Pass Reward Step45# +1501459#Premium Pass Reward Step46# +1501460#Premium Pass Reward Step47# +1501461#Premium Pass Reward Step48# +1501462#Premium Pass Reward Step49# +1501463#Premium Pass Reward Step50# +1501464#Title : Fire Emperor# +1501465#Dreadlord Helm# +1501466#Dreadlord Mail# +1501467#Dreadlord Cloak# +1501468#Dreadlord Treads# +1501469#Nightmare Ring# +1501470#Fierce Ring# +1501471#Step Spending Box Reward 5000Moonstone# +1501472#Step Spending Box Reward 15000Moonstone# +1501473#Step Spending Box Reward 30000Moonstone# +1501474#King Hassan Scroll# +1501475#Black Evil Hat# +1501476#Feathered Black Cap# +1501477#Sinister Horn Gear# +1501478#Khalitzburg Helm# +1501479#Dewata Quest Pass# +1501480#Brasilis Quest Pass# +1501481#Holy Sanctum Scroll# +1501482#King of Battle Hat# +1501483#Holy Wing Hat# +1501484#Step Spending Box Reward 5000Moonstone# +1501485#Step Spending Box Reward 15000Moonstone# +1501486#Step Spending Box Reward 30000Moonstone# +1501487#[August] First Refill Box 10ION# +1501488#[August] First Refill Box 30ION# +1501489#[Event] Spare Card# +1501490#[Event] Spare Card (14Days)# +1501491#[August] Top Up Milestone 10 ION Box# +1501492#[August] Top Up Milestone 30 ION Box# +1501493#[August] Top Up Milestone 50 ION Box# +1501494#[August] Top Up Milestone 100 ION Box# +1501495#[August] Top Up Milestone 300 ION Box# +1501496#Cigarette# +1501497#Cigarette Box (21Days)# +1501498#Compensation Tier I# +1501499#Compensation Tier II# +1501500#Compensation Tier III# +1501501#Fairy Angel Scroll# +1501502#Wing Of Bless# +1501503#King Eddga Scroll# +1501504#Adventurer's Backpack (Greed)# +1501505#Rachel Quest Pass# +1501506#[September] First Refill Box 10ION# +1501507#[September] First Refill Box 30ION# +1501508#[Event] Pipe(14Days)# +1501509#[Event] Pipe(14Days)# +1501510#[September] Top Up Milestone 10 ION Box# +1501511#[September] Top Up Milestone 30 ION Box# +1501512#[September] Top Up Milestone 50 ION Box# +1501513#[September] Top Up Milestone 100 ION Box# +1501514#[September] Top Up Milestone 300 ION Box# +1501515#1st ROL Aniversary Scroll# +1501516#Shadow Random Box# +1501518#Fallen Angels Scroll# +1501519#Gang Scarf# +1501520#Step Spending Box Reward 5000Moonstone# +1501521#Step Spending Box Reward 15000Moonstone# +1501522#Step Spending Box Reward 30000Moonstone# +1501523#1st Aniversary ROL Shadow Box# +1501524#Promotion Shadow Pendant# +1501525#Promotion Shadow Earring# +1501527#Beginner of Midgard Box# +1501528#Welcome To New adventure Box# +1501529#Title : Hello New Adventure# +1501530#1st Aniversary Armor Shadow# +1501531#1st Aniversary Shield Shadow# +1501532#1st Aniversary Weapon Shadow# +1501533#1st Aniversary Shoes Shadow# +1501534#Schmidt's Weapon Box# +1501535#Guild Hall Boss Reset Box# +1501536#Guild Hall Boss Reset Ticket# +1501538#The Wisdom Time Keeper Set# +1501539#1st Aniversary Shadow Set# +1501540#Job Change Ticket# +1501541#[Event] Scholar's Ring Box (30Day)# +1555000#Beginner Spirit Summon Scroll# +1555001#[UC] Pet Spirit Guarantee Scroll# +1555002#[R] Pet Spirit Guarantee Scroll# +1555003#[E] Pet Spirit Guarantee Scroll# +1555004#[L] Pet Spirit Guarantee Scroll# +1555100#[UC] Pet's Spirit Fragment# +1555101#[R] Pet's Spirit Fragment# +1555102#[E] Pet's Spirit Fragment# +1555103#[L] Pet's Spirit Fragment# +1555104#Legendary Ore Mirror# +1555105#Rare Ore Mirror# +1555106#Mystical Ore Mirror# +1555107#[Event] White Potion Box(20)# +1555108#[Event] Blue Potion Box(10)# +1555109#[Event] White Potion# +1555110#[Event] Blue Potion# +1555111#Common Pet Combination# +1555112#Rare Pet Combination# +1555113#Epic Pet Combination# +1555114#CBT Streamer Box I# +1555115#Landverse Beginner Equipment Box# +1555116#Novice Potion Box# +1555117#Landverse Beginner Box# +1555118#B Hammer# +1555119#Blessing Ore Mirror# +1555120#Character Slot Expansion Coupon# +1555121#Ultraman Backpack Select Box# +1555122#[Event] Beginner Shadow Box# +1555123#[Event] Beginning Set Box# +1555124#[Event] Metal Weapon Box# +1555125#Teasure Chest# +1555126#BP Choose# +1555127#Kiel Mos Coin Box# +1555128#Rusty Robot Fragment Box# +1570000#Costume Angel Wing Ears# +1570001#Costume Moving Angel Wing# +1570002#Costume Archangel Wing# +1570003#C Angel Flutter# +1570004#Costume Happiness Wings# +1570005#Costume Angel of Happiness# +1570006#Costume Happiness Ears# +1570007#C No.1# +1570008#Costume Fallen Angel Hairband# +1570009#Costume Valentine Hat# +1570010#Unidentified Garment# +1570011#Unidentified Ribbon# +1570012#Unidentified Ribbon# +1570013#Unidentified Ribbon# +1570014#Costume Poring Splash# +1570015#Unidentified Hat# +1570016#Costume Angel Wing Ears# +1570017#Costume Angel Wing# +1570018#Costume Archangel Wing# +1570019#Costume Golden Angel Wing# +1570020#Costume Golden Angel Ears# +1570021#Costume Golden Archangel Wing# +1570022#Costume Legacy Golden Majestic Goat# +1570023#Costume Legacy Golden Crown# +1570024#Costume Legacy Golden Grand Circlet# +1570025#Costume Legacy Golden Spiky Band# +1570026#Costume Legacy Golden Corsair# +1570027#Costume Golden Feathered Elegance# +1570028#Emperor Poring Costume# +1570029#Emperor Wings Costume# +1570030#Costume Deng Deng Hat# +1570031#C Luna ROLC 2024 x 53# +1570032#C Luna ROLC 2024 x 16KONCHOD# +1570033#C Luna ROLC 2024 x CCLASS 7# +1570034#C Luna ROLC 2024 x BULLY# +1570035#C Luna ROLC 2024 x DKB# +1570036#C Luna ROLC 2024 x HI-END# +1570037#C Luna ROLC 2024 x INSIGNIA REGALIA# +1570038#C Luna ROLC 2024 x INTROVERTZ# +1570039#C Luna ROLC 2024 x NESHASTORE# +1570040#C Luna ROLC 2024 x OMEGA# +1570041#C Luna ROLC 2024 x PHOENIX# +1570042#C Luna ROLC 2024 x WHYSO# +1570043#C Luna ROLC 2024 x YUPP# +1570044#C Luna ROLC 2024 x ZIGZAG# +1570045#Costume Ancient Civil Man Hat# +1570046#Costume Cap of Tea# +1570047#Costume: Aura Fruitful# +1570048#Costume Small Deviling Hat# +1570049#Costume Gothic Pumpkin Handicraft# +1570050#Costume ROL Championship Sword# +1570051#ROL Championship Crown# +1570052#Costume ROL Luna Championship# +1570053#Costume ROL Championship Sword Style I +# +1570054#ROL Championship Crown Style I +# +1570055#Costume ROL Luna Championship +# +1570056#ROL Championship Crown Style II +# +1570057#ROL Championship Crown Style III +# +1570058#Costume ROL Championship Sword Style II +# +1570059#Costume ROL Championship Sword Style III +# +1570060#Costume Crimson Essence# +1570061#Costume Scarlet Ears# +1570062#Costume Scarlet Omen# +1570063#[Event] Costume Landverse Welcome# +1570064#[Event] Black Bubble Gum In Mouth# +1570065#[Event] C Golden Tabby Tiger# +1570066#Costume Hongyun Serpent# +1570067#Costume Heart Angel# +1570068#Costume MVP Ancestors Crown# +1570073#[Event] Costume Angel of Happiness# +1570074#[Event] Costume Happiness Ears# +1570075#[Event] Costume Happiness Wings# +1570076#[Event] Costume Golden Angel Wing# +1570077#[Event] Costume Golden Angel Ears# +1570078#[Event] Costume Golden Archangel Wing# +1570079#Costume Golden Cloth Of Protection# +1570082#Costume Headgear# +1570084#Costume Headgear# +1570086#Costume MVP Ancestors Crown# +1570089#Costume Sunforge Nexus Circlet# +1570099#Costume Nova Burst# +1570100#Costume Garment# +1570105#Costume Key of the World# +1570106#Costume Orb of Proof# +1570110#Costume Headgear# +1570114#Costume NOVA Hairpin# +1570115#Costume Kafra NOVA Chibi# +1570116#Costume NOVA Hologram# +1600000#Mining Pickaxe# +1600001#Forbidden Stick# +1600003#Phracon Axe# +1600004#Emveretarcon Axe# +1600005#Gold Axe# +1600006#Oridecon Axe# +1600007#Adamantine Axe# +1600008#Phracon Pickaxe# +1600009#Emveretarcon Pickaxe# +1600010#Gold Pickaxe# +1600011#Oridecon Pickaxe# +1600012#Adamantine Pickaxe# +1600013#Phracon Axe Box# +1600014#Emveretarcon Axe Box# +1600015#Gold Axe Box# +1600016#Oridecon Axe Box# +1600017#Adamantine Axe Box# +1600018#Phracon Pickaxe Box# +1600019#Emveretarcon Pickaxe Box# +1600020#Gold Pickaxe Box# +1600021#Oridecon Pickaxe Box# +1600022#Adamantine Pickaxe Box# +1600023#Golden Pickaxe# +1600024#[Rental] Pickaxe# +1700057#Guild Revenge Ticket# +1702000#Adamantine Fragment# +1702001#Adamantine Fragment Box# +1702002#Adamantine Token# +1702003#Monster Remnant# +1702004#Worn Out Limit Break Scroll# +1702005#Low Level Limit Break Tome# +1702006#Blessed Adamantine Dust# +1702007#Adamantine Blessing Box# +1702008#Evil Cookie# +1702009#Spirit Candy# +1702010#Rotten Pumpkin# +1702011#[Sale] Adamantine Blessing Box# +1702012#Landverse Token# +1702013#Tower of Tides Ticket# +1702014#Daily Quest Pass Ticket# +1702015#Adamantine Heart# +1702016#Ominous Heart# +1702017#Santa's Chisel# +1702018#Snow Flower# +1702019#Santa's Parcel# +1702020#Stolen Gift (Red)# +1702021#Stolen Gift (Blue)# +1702022#[Event] Snowball# +1702023#[Event] Deco: Carrot# +1702024#[Event] Deco: Scarf# +1702025#[Event] Deco: Twig# +1702026#[Event] Deco: Top Hat# +1702027#Polishing Agent# +1702028#Path Token# +1702029#BP Love Fragment# +1702030#Apple Juice [Gift]# +1702031#Fruit Parfait [Gift]# +1702032#Prickly Fruit [Gift]# +1702033#Banana Juice [Gift]# +1702034#Carrot Juice [Gift]# +1702035#Aromatic Flower [Gift]# +1702036#Blue Vital Flower [Gift]# +1702037#Centimental Flower [Gift]# +1702038#Flower [Gift]# +1702039#Witherless Rose [Gift]# +1702040#Pearl [Gift]# +1702041#Amethyst [Gift]# +1702042#Blue Jewel [Gift]# +1702043#Emerald [Gift]# +1702044#Garnet [Gift]# +1702045#Dried Fruit Box [Gift]# +1702046#Hearty Lunch box [Gift]# +1702047#Portable Sewing box [Gift]# +1702048#Summer Happy Box [Gift]# +1702049#Bradium Box [Gift]# +1702050#[Event] Lovely Heart# +1702051#Power# +1702052#Ultraman Instant Dungeon Ticket# +1702053#Gomora Mucus# +1702054#Balton Mucus# +1702055#Cosmos Key# +1702056#OX Token# +1702057#Robot Fragment# +1702058#Rusty Fragment# +1702059#Robot Soul# +1702060#Rusty Soul# +1702061#Soul of Corrosion# +1702062#Kiel Coin# +1702063#Mos Coin# +1702064#Robot Coin# +1702065#Rusty Coin# +1702066#Proof Of Winner# +1702067#Proof Of Hero# +1702068#Flame of Rebirth# +1702069#NOVA Coin# +1702070#NOVA Premium Coin# +1702071#Life Wood Log# +1702072#Life Wood Plank# +1702073#Enchanted Wood Log# +1702074#Enchanted Wood Plank# +1702075#Ancient Wood Log# +1702076#Ancient Wood Plank# +1702077#Umbala Wood Log# +1702078#Umbala Wood Plank# +1702079#Elder Wood Log# +1702080#Elder Wood Plank# +1702081#Phracon Ore# +1702082#Phracon Ingot# +1702083#Emveretarcon Ore# +1702084#Emveretarcon Ingot# +1702085#Gold Ore# +1702086#Gold Ingot# +1702087#Oridecon Ore# +1702088#Oridecon Ingot# +1702089#Adamantine Ore# +1702090#Adamantine Ingot# +1702091#Al De Baran Dungeon Relic I# +1702092#Al De Baran Dungeon Relic II# +1702093#Al De Baran Dungeon Relic III# +1702094#Al De Baran Dungeon Relic IV# +1702095#Amatsu Dungeon Relic I# +1702096#Amatsu Dungeon Relic II# +1702097#Amatsu Dungeon Relic III# +1702098#Ant Hell Dungeon Relic I# +1702099#Ant Hell Dungeon Relic II# +1702100#Ayothaya Dungeon Relic I# +1702101#Ayothaya Dungeon Relic II# +1702102#Beach Dungeon Relic I# +1702103#Beach Dungeon Relic II# +1702104#Beach Dungeon Relic III# +1702105#Clock Tower Dungeon Relic I# +1702106#Clock Tower Dungeon Relic II# +1702107#Clock Tower Dungeon Relic III# +1702108#Clock Tower Dungeon Relic IV# +1702109#Einbech Mine Dungeon Relic I# +1702110#Einbech Mine Dungeon Relic II# +1702111#Geffen Dungeon Relic I# +1702112#Geffen Dungeon Relic II# +1702113#Geffen Dungeon Relic III# +1702114#Geffenia Dungeon Relic I# +1702115#Geffenia Dungeon Relic II# +1702116#Geffenia Dungeon Relic III# +1702117#Geffenia Dungeon Relic IV# +1702118#Gonryun Dungeon Relic I# +1702119#Gonryun Dungeon Relic II# +1702120#Gonryun Dungeon Relic III# +1702121#Entrance to Glast Heim Relic I# +1702122#Glast Heim Castle Relic I# +1702123#Glast Heim Castle Relic II# +1702124#Glast Heim St.Abbey Relic I# +1702125#Glast Heim Churchyard Relic I# +1702126#Glast Heim Dungeon Relic I# +1702127#Glast Heim Dungeon Relic II# +1702128#Glast Heim Underprison Dungeon Relic I# +1702129#Glast Heim Underprison Dungeon Relic II# +1702130#Glast Heim Culvert Dungeon Relic I# +1702131#Glast Heim Culvert Dungeon Relic II# +1702132#Glast Heim Culvert Dungeon Relic III# +1702133#Glast Heim Culvert Dungeon Relic IV# +1702134#Glast Heim Staircase Dungeon Relic I# +1702135#Inside Glast Heim Dungeon Relic I# +1702136#Glast Heim Chivalry Dungeon Relic I# +1702137#Glast Heim Chivalry Dungeon Relic II# +1702138#Sphinx Dungeon Relic I# +1702139#Sphinx Dungeon Relic II# +1702140#Sphinx Dungeon Relic III# +1702141#Sphinx Dungeon Relic IV# +1702142#Sphinx Dungeon Relic V# +1702143#Byalan Island Dungeon Relic I# +1702144#Byalan Island Dungeon Relic II# +1702145#Byalan Island Dungeon Relic III# +1702146#Byalan Island Dungeon Relic IV# +1702147#Byalan Island Dungeon Relic V# +1702148#Juperos Ruins Relic I# +1702149#Juperos Ruins Relic II# +1702150#Juperos Core Relic I# +1702151#Robot Factory Relic I# +1702152#Robot Factory Relic II# +1702153#Ice Cave Dungeon Relic I# +1702154#Lou Yang Dungeon Relic I# +1702155#Lou Yang Dungeon Relic II# +1702156#Lou Yang Dungeon Relic III# +1702157#Magma Dungeon Relic I# +1702158#Magma Dungeon Relic II# +1702159#Mjolnir Dead Pit Dungeon Relic I# +1702160#Mjolnir Dead Pit Dungeon Relic II# +1702161#Mjolnir Dead Pit Dungeon Relic III# +1702162#Pyramid Dungeon Relic I# +1702163#Pyramid Dungeon Relic II# +1702164#Pyramid Dungeon Relic III# +1702165#Pyramid Dungeon Relic IV# +1702166#Pyramid Dungeon Relic V# +1702167#Pyramid Dungeon Relic VI# +1702168#Moscovia Dungeon Relic I# +1702169#Moscovia Dungeon Relic II# +1702170#Moscovia Dungeon Relic III# +1702171#Orc Dungeon Relic I# +1702172#Orc Dungeon Relic II# +1702173#Payon Dungeon Relic I# +1702174#Payon Dungeon Relic II# +1702175#Payon Dungeon Relic III# +1702176#Payon Dungeon Relic IV# +1702177#Payon Dungeon Relic V# +1702178#Labyrinth Forest Relic I# +1702179#Labyrinth Forest Relic II# +1702180#Labyrinth Forest Relic III# +1702181#Ice Cave Dungeon Relic II# +1702182#Prontera Culvert Dungeon Relic I# +1702183#Prontera Culvert Dungeon Relic II# +1702184#Prontera Culvert Dungeon Relic III# +1702185#Prontera Culvert Dungeon Relic IV# +1702186#Holy Ground Dungeon Relic I# +1702187#Holy Ground Dungeon Relic II# +1702188#Holy Ground Dungeon Relic III# +1702189#Holy Ground Dungeon Relic IV# +1702190#Holy Ground Dungeon Relic V# +1702191#Thanatos Tower Dungeon Relic I# +1702192#Thanatos Tower Dungeon Relic II# +1702193#Thanatos Tower Dungeon Relic III# +1702194#Thanatos Tower Dungeon Relic IV# +1702195#Thanatos Tower Dungeon Relic V# +1702196#Thanatos Tower Dungeon Relic VI# +1702197#Thanatos Tower Dungeon Relic VII# +1702198#Thanatos Tower Dungeon Relic VIII# +1702199#Thanatos Tower Dungeon Relic IX# +1702200#Thanatos Tower Dungeon Relic X# +1702201#Thanatos Tower Dungeon Relic XI# +1702202#Thanatos Tower Dungeon Relic XII# +1702203#Sunken Ship Dungeon Relic I# +1702204#Sunken Ship Dungeon Relic II# +1702205#Turtle Island Dungeon Relic I# +1702206#Turtle Island Dungeon Relic II# +1702207#Turtle Island Dungeon Relic III# +1702208#Turtle Island Dungeon Relic IV# +1702209#Turtle Island Dungeon Relic V# +1702210#Toy Factory Dungeon Relic I# +1702211#Toy Factory Dungeon Relic II# +1702212#Umbala Dungeon Relic I# +1702213#Umbala Dungeon Relic II# +1702214#Greenwood Lake Guild Dungeon Relic I# +1702215#Luina Guild Dungeon Relic I# +1702216#Valkyrie Guild Dungeon Relic I# +1702217#Britoniah Guild Dungeon Relic I# +1702218#Ice Cave Dungeon Relic III# +1702219#Nightmare Fragment# +1702220#Fierce Fragment# +1702221#Nightmare Soul# +1702222#Fierce Soul# +1702223#Soul of Abyssal# +1702224#Dew Coin# +1702225#Bra Coin# +1702226#Nightmare Coin# +1702227#Fierce Coin# +1702228#Dewata Dungeon Relic I# +1702229#Dewata Dungeon Relic II# +1702230#Brasilis Dungeon Relic I# +1702231#Brasilis Dungeon Relic II# +1702232#Elixir of Dragon Suppression# +1702233#Card Fragment# +1702234#Mysterious Fragment I# +1702235#Mysterious Fragment II# +1702236#Mysterious Fragment III# +1702237#Mysterious Fragment IV# +1702238#Mysterious Fragment V# +1702239#Abyss Lake Relic I# +1702240#Abyss Lake Relic II# +1702241#Abyss Lake Relic III# +1702242#Odin Temple Relic I# +1702243#Odin Temple Relic II# +1702244#Odin Temple Relic III# +1702245#Thors Volcano Relic I# +1702246#Thors Volcano Relic II# +1702247#Thors Volcano Relic III# +1702248#Abbey Dungeon Relic I# +1702249#Abbey Dungeon Relic II# +1702250#Abbey Dungeon Relic III# +1702251#Bio Laboratory Relic I# +1702252#Bio Laboratory Relic II# +1702253#Bio Laboratory Relic III# +1703000#Lower Weapon Stone# +1703001#High Weapon Stone# +1703011#Arbalest Bow Stone D# +1703012#Arbalest Bow Stone C# +1703013#Arbalest Bow Stone B# +1703014#Arbalest Bow Stone A# +1703015#Arbalest Bow Stone S# +1703021#Arc Wand Stone D# +1703022#Arc Wand Stone C# +1703023#Arc Wand Stone B# +1703024#Arc Wand Stone A# +1703025#Arc Wand Stone S# +1703031#Assassin Dagger Stone D# +1703032#Assassin Dagger Stone C# +1703033#Assassin Dagger Stone B# +1703034#Assassin Dagger Stone A# +1703035#Assassin Dagger Stone S# +1703041#Azoth Stone D# +1703042#Azoth Stone C# +1703043#Azoth Stone B# +1703044#Azoth Stone A# +1703045#Azoth Stone S# +1703051#Ballista Stone D# +1703052#Ballista Stone C# +1703053#Ballista Stone B# +1703054#Ballista Stone A# +1703055#Ballista Stone S# +1703061#Bazerald Stone D# +1703062#Bazerald Stone C# +1703063#Bazerald Stone B# +1703064#Bazerald Stone A# +1703065#Bazerald Stone S# +1703071#Blade Whip Stone D# +1703072#Blade Whip Stone C# +1703073#Blade Whip Stone B# +1703074#Blade Whip Stone A# +1703075#Blade Whip Stone S# +1703081#Wand of Occult Stone D# +1703082#Wand of Occult Stone C# +1703083#Wand of Occult Stone B# +1703084#Wand of Occult Stone A# +1703085#Wand of Occult Stone S# +1703091#Evil Bone Wand Stone D# +1703092#Evil Bone Wand Stone C# +1703093#Evil Bone Wand Stone B# +1703094#Evil Bone Wand Stone A# +1703095#Evil Bone Wand Stone S# +1703101#Book of Billows Stone D# +1703102#Book of Billows Stone C# +1703103#Book of Billows Stone B# +1703104#Book of Billows Stone A# +1703105#Book of Billows Stone S# +1703111#Book of Blazing Sun Stone D# +1703112#Book of Blazing Sun Stone C# +1703113#Book of Blazing Sun Stone B# +1703114#Book of Blazing Sun Stone A# +1703115#Book of Blazing Sun Stone S# +1703121#Book of Gust of Wind Stone D# +1703122#Book of Gust of Wind Stone C# +1703123#Book of Gust of Wind Stone B# +1703124#Book of Gust of Wind Stone A# +1703125#Book of Gust of Wind Stone S# +1703131#Book of Mother Earth Stone D# +1703132#Book of Mother Earth Stone C# +1703133#Book of Mother Earth Stone B# +1703134#Book of Mother Earth Stone A# +1703135#Book of Mother Earth Stone S# +1703141#Book of Apocalypse Stone D# +1703142#Book of Apocalypse Stone C# +1703143#Book of Apocalypse Stone B# +1703144#Book of Apocalypse Stone A# +1703145#Book of Apocalypse Stone S# +1703151#Buster Stone D# +1703152#Buster Stone C# +1703153#Buster Stone B# +1703154#Buster Stone A# +1703155#Buster Stone S# +1703161#Butcher Stone D# +1703162#Butcher Stone C# +1703163#Butcher Stone B# +1703164#Butcher Stone A# +1703165#Butcher Stone S# +1703171#Chemeti Whip Stone D# +1703172#Chemeti Whip Stone C# +1703173#Chemeti Whip Stone B# +1703174#Chemeti Whip Stone A# +1703175#Chemeti Whip Stone S# +1703181#Cinquedea Stone D# +1703182#Cinquedea Stone C# +1703183#Cinquedea Stone B# +1703184#Cinquedea Stone A# +1703185#Cinquedea Stone S# +1703191#Combo Battle Glove Stone D# +1703192#Combo Battle Glove Stone C# +1703193#Combo Battle Glove Stone B# +1703194#Combo Battle Glove Stone A# +1703195#Combo Battle Glove Stone S# +1703201#Dagger of Counter Stone D# +1703202#Dagger of Counter Stone C# +1703203#Dagger of Counter Stone B# +1703204#Dagger of Counter Stone A# +1703205#Dagger of Counter Stone S# +1703211#Crescent Scythe Stone D# +1703212#Crescent Scythe Stone C# +1703213#Crescent Scythe Stone B# +1703214#Crescent Scythe Stone A# +1703215#Crescent Scythe Stone S# +1703221#Crescent Scythe Stone D# +1703222#Crescent Scythe Stone C# +1703223#Crescent Scythe Stone B# +1703224#Crescent Scythe Stone A# +1703225#Crescent Scythe Stone S# +1703231#Cutlass Stone D# +1703232#Cutlass Stone C# +1703233#Cutlass Stone B# +1703234#Cutlass Stone A# +1703235#Cutlass Stone S# +1703241#Damascus Stone D# +1703242#Damascus Stone C# +1703243#Damascus Stone B# +1703244#Damascus Stone A# +1703245#Damascus Stone S# +1703251#Electric Fist Stone D# +1703252#Electric Fist Stone C# +1703253#Electric Fist Stone B# +1703254#Electric Fist Stone A# +1703255#Electric Fist Stone S# +1703261#Encyclopedia Stone D# +1703262#Encyclopedia Stone C# +1703263#Encyclopedia Stone B# +1703264#Encyclopedia Stone A# +1703265#Encyclopedia Stone S# +1703271#Finger Stone D# +1703272#Finger Stone C# +1703273#Finger Stone B# +1703274#Finger Stone A# +1703275#Finger Stone S# +1703281#Fortune Sword Stone D# +1703282#Fortune Sword Stone C# +1703283#Fortune Sword Stone B# +1703284#Fortune Sword Stone A# +1703285#Fortune Sword Stone S# +1703291#Gae Bolg Stone D# +1703292#Gae Bolg Stone C# +1703293#Gae Bolg Stone B# +1703294#Gae Bolg Stone A# +1703295#Gae Bolg Stone S# +1703301#Sharpened Leg Bone of Ghoul Stone D# +1703302#Sharpened Leg Bone of Ghoul Stone C# +1703303#Sharpened Leg Bone of Ghoul Stone B# +1703304#Sharpened Leg Bone of Ghoul Stone A# +1703305#Sharpened Leg Bone of Ghoul Stone S# +1703311#Girl's Diary Stone D# +1703312#Girl's Diary Stone C# +1703313#Girl's Diary Stone B# +1703314#Girl's Diary Stone A# +1703315#Girl's Diary Stone S# +1703321#Gold Lux Stone D# +1703322#Gold Lux Stone C# +1703323#Gold Lux Stone B# +1703324#Gold Lux Stone A# +1703325#Gold Lux Stone S# +1703331#Golden Mace Stone D# +1703332#Golden Mace Stone C# +1703333#Golden Mace Stone B# +1703334#Golden Mace Stone A# +1703335#Golden Mace Stone S# +1703341#Great Axe Stone D# +1703342#Great Axe Stone C# +1703343#Great Axe Stone B# +1703344#Great Axe Stone A# +1703345#Great Axe Stone S# +1703351#Grimtooth Stone D# +1703352#Grimtooth Stone C# +1703353#Grimtooth Stone B# +1703354#Grimtooth Stone A# +1703355#Grimtooth Stone S# +1703361#Guitar Stone D# +1703362#Guitar Stone C# +1703363#Guitar Stone B# +1703364#Guitar Stone A# +1703365#Guitar Stone S# +1703371#Loner's Guitar Stone D# +1703372#Loner's Guitar Stone C# +1703373#Loner's Guitar Stone B# +1703374#Loner's Guitar Stone A# +1703375#Loner's Guitar Stone S# +1703381#Burning Passion Guitar Stone D# +1703382#Burning Passion Guitar Stone C# +1703383#Burning Passion Guitar Stone B# +1703384#Burning Passion Guitar Stone A# +1703385#Burning Passion Guitar Stone S# +1703391#Green Acre Guitar Stone D# +1703392#Green Acre Guitar Stone C# +1703393#Green Acre Guitar Stone B# +1703394#Green Acre Guitar Stone A# +1703395#Green Acre Guitar Stone S# +1703401#Gungnir Stone D# +1703402#Gungnir Stone C# +1703403#Gungnir Stone B# +1703404#Gungnir Stone A# +1703405#Gungnir Stone S# +1703411#Gust Bow Stone D# +1703412#Gust Bow Stone C# +1703413#Gust Bow Stone B# +1703414#Gust Bow Stone A# +1703415#Gust Bow Stone S# +1703421#Haedonggum Stone D# +1703422#Haedonggum Stone C# +1703423#Haedonggum Stone B# +1703424#Haedonggum Stone A# +1703425#Haedonggum Stone S# +1703431#Hakujin Stone D# +1703432#Hakujin Stone C# +1703433#Hakujin Stone B# +1703434#Hakujin Stone A# +1703435#Hakujin Stone S# +1703441#Halberd Stone D# +1703442#Halberd Stone C# +1703443#Halberd Stone B# +1703444#Halberd Stone A# +1703445#Halberd Stone S# +1703451#Hell Fire Stone D# +1703452#Hell Fire Stone C# +1703453#Hell Fire Stone B# +1703454#Hell Fire Stone A# +1703455#Hell Fire Stone S# +1703461#Ice Pick Stone D# +1703462#Ice Pick Stone C# +1703463#Ice Pick Stone B# +1703464#Ice Pick Stone A# +1703465#Ice Pick Stone S# +1703471#Ice Pick Stone D# +1703472#Ice Pick Stone C# +1703473#Ice Pick Stone B# +1703474#Ice Pick Stone A# +1703475#Ice Pick Stone S# +1703481#Huuma Wing Shuriken Stone D# +1703482#Huuma Wing Shuriken Stone C# +1703483#Huuma Wing Shuriken Stone B# +1703484#Huuma Wing Shuriken Stone A# +1703485#Huuma Wing Shuriken Stone S# +1703491#Huuma Calm Mind Stone D# +1703492#Huuma Calm Mind Stone C# +1703493#Huuma Calm Mind Stone B# +1703494#Huuma Calm Mind Stone A# +1703495#Huuma Calm Mind Stone S# +1703501#Huuma Giant Wheel Shuriken Stone D# +1703502#Huuma Giant Wheel Shuriken Stone C# +1703503#Huuma Giant Wheel Shuriken Stone B# +1703504#Huuma Giant Wheel Shuriken Stone A# +1703505#Huuma Giant Wheel Shuriken Stone S# +1703511#Thunderstorm Huuma Shuriken Stone D# +1703512#Thunderstorm Huuma Shuriken Stone C# +1703513#Thunderstorm Huuma Shuriken Stone B# +1703514#Thunderstorm Huuma Shuriken Stone A# +1703515#Thunderstorm Huuma Shuriken Stone S# +1703521#Hypnotist's Staff Stone D# +1703522#Hypnotist's Staff Stone C# +1703523#Hypnotist's Staff Stone B# +1703524#Hypnotist's Staff Stone A# +1703525#Hypnotist's Staff Stone S# +1703531#Immaterial Sword Stone D# +1703532#Immaterial Sword Stone C# +1703533#Immaterial Sword Stone B# +1703534#Immaterial Sword Stone A# +1703535#Immaterial Sword Stone S# +1703541#Infiltrator Stone D# +1703542#Infiltrator Stone C# +1703543#Infiltrator Stone B# +1703544#Infiltrator Stone A# +1703545#Infiltrator Stone S# +1703551#Iron Driver Stone D# +1703552#Iron Driver Stone C# +1703553#Iron Driver Stone B# +1703554#Iron Driver Stone A# +1703555#Iron Driver Stone S# +1703561#Jamadhar Stone D# +1703562#Jamadhar Stone C# +1703563#Jamadhar Stone B# +1703564#Jamadhar Stone A# +1703565#Jamadhar Stone S# +1703571#Skipping Rope Stone D# +1703572#Skipping Rope Stone C# +1703573#Skipping Rope Stone B# +1703574#Skipping Rope Stone A# +1703575#Skipping Rope Stone S# +1703581#Gakkung Bow Stone D# +1703582#Gakkung Bow Stone C# +1703583#Gakkung Bow Stone B# +1703584#Gakkung Bow Stone A# +1703585#Gakkung Bow Stone S# +1703591#Kamaitachi Stone D# +1703592#Kamaitachi Stone C# +1703593#Kamaitachi Stone B# +1703594#Kamaitachi Stone A# +1703595#Kamaitachi Stone S# +1703601#Katar Of Cold Icicle Stone D# +1703602#Katar Of Cold Icicle Stone C# +1703603#Katar Of Cold Icicle Stone B# +1703604#Katar Of Cold Icicle Stone A# +1703605#Katar Of Cold Icicle Stone S# +1703611#Katar Of Raging Blaze Stone D# +1703612#Katar Of Raging Blaze Stone C# +1703613#Katar Of Raging Blaze Stone B# +1703614#Katar Of Raging Blaze Stone A# +1703615#Katar Of Raging Blaze Stone S# +1703621#Katar of Dusty Thornbush Stone D# +1703622#Katar of Dusty Thornbush Stone C# +1703623#Katar of Dusty Thornbush Stone B# +1703624#Katar of Dusty Thornbush Stone A# +1703625#Katar of Dusty Thornbush Stone S# +1703631#Khukri Stone D# +1703632#Khukri Stone C# +1703633#Khukri Stone B# +1703634#Khukri Stone A# +1703635#Khukri Stone S# +1703641#Lance Stone D# +1703642#Lance Stone C# +1703643#Lance Stone B# +1703644#Lance Stone A# +1703645#Lance Stone S# +1703651#Lariat Whip Stone D# +1703652#Lariat Whip Stone C# +1703653#Lariat Whip Stone B# +1703654#Lariat Whip Stone A# +1703655#Lariat Whip Stone S# +1703661#Legacy Of Dragon Stone D# +1703662#Legacy Of Dragon Stone C# +1703663#Legacy Of Dragon Stone B# +1703664#Legacy Of Dragon Stone A# +1703665#Legacy Of Dragon Stone S# +1703671#Long Mace Stone D# +1703672#Long Mace Stone C# +1703673#Long Mace Stone B# +1703674#Long Mace Stone A# +1703675#Long Mace Stone S# +1703681#Masamune Stone D# +1703682#Masamune Stone C# +1703683#Masamune Stone B# +1703684#Masamune Stone A# +1703685#Masamune Stone S# +1703691#Mighty Staff Stone D# +1703692#Mighty Staff Stone C# +1703693#Mighty Staff Stone B# +1703694#Mighty Staff Stone A# +1703695#Mighty Staff Stone S# +1703701#Moonlight Sword Stone D# +1703702#Moonlight Sword Stone C# +1703703#Moonlight Sword Stone B# +1703704#Moonlight Sword Stone A# +1703705#Moonlight Sword Stone S# +1703711#Orc Archer Bow Stone D# +1703712#Orc Archer Bow Stone C# +1703713#Orc Archer Bow Stone B# +1703714#Orc Archer Bow Stone A# +1703715#Orc Archer Bow Stone S# +1703721#Orcish Axe Stone D# +1703722#Orcish Axe Stone C# +1703723#Orcish Axe Stone B# +1703724#Orcish Axe Stone A# +1703725#Orcish Axe Stone S# +1703731#Orcish Sword Stone D# +1703732#Orcish Sword Stone C# +1703733#Orcish Sword Stone B# +1703734#Orcish Sword Stone A# +1703735#Orcish Sword Stone S# +1703741#Oriental Lute Stone D# +1703742#Oriental Lute Stone C# +1703743#Oriental Lute Stone B# +1703744#Oriental Lute Stone A# +1703745#Oriental Lute Stone S# +1703751#Poison Knife Stone D# +1703752#Poison Knife Stone C# +1703753#Poison Knife Stone B# +1703754#Poison Knife Stone A# +1703755#Poison Knife Stone S# +1703761#Pole Axe Stone D# +1703762#Pole Axe Stone C# +1703763#Pole Axe Stone B# +1703764#Pole Axe Stone A# +1703765#Pole Axe Stone S# +1703771#Rante Whip Stone D# +1703772#Rante Whip Stone C# +1703773#Rante Whip Stone B# +1703774#Rante Whip Stone A# +1703775#Rante Whip Stone S# +1703781#Light Epsilon Stone D# +1703782#Light Epsilon Stone C# +1703783#Light Epsilon Stone B# +1703784#Light Epsilon Stone A# +1703785#Light Epsilon Stone S# +1703791#Seismic Fist Stone D# +1703792#Seismic Fist Stone C# +1703793#Seismic Fist Stone B# +1703794#Seismic Fist Stone A# +1703795#Seismic Fist Stone S# +1703801#Solar Sword Stone D# +1703802#Solar Sword Stone C# +1703803#Solar Sword Stone B# +1703804#Solar Sword Stone A# +1703805#Solar Sword Stone S# +1703811#Wrench Stone D# +1703812#Wrench Stone C# +1703813#Wrench Stone B# +1703814#Wrench Stone A# +1703815#Wrench Stone S# +1703821#Spectral Spear Stone D# +1703822#Spectral Spear Stone C# +1703823#Spectral Spear Stone B# +1703824#Spectral Spear Stone A# +1703825#Spectral Spear Stone S# +1703831#Spike Stone D# +1703832#Spike Stone C# +1703833#Spike Stone B# +1703834#Spike Stone A# +1703835#Spike Stone S# +1703841#Survivor's Rod (Dex) Stone D# +1703842#Survivor's Rod (Dex) Stone C# +1703843#Survivor's Rod (Dex) Stone B# +1703844#Survivor's Rod (Dex) Stone A# +1703845#Survivor's Rod (Dex) Stone S# +1703851#Sword Mace Stone D# +1703852#Sword Mace Stone C# +1703853#Sword Mace Stone B# +1703854#Sword Mace Stone A# +1703855#Sword Mace Stone S# +1703861#Tablet Stone D# +1703862#Tablet Stone C# +1703863#Tablet Stone B# +1703864#Tablet Stone A# +1703865#Tablet Stone S# +1703871#Town Sword Stone D# +1703872#Town Sword Stone C# +1703873#Town Sword Stone B# +1703874#Town Sword Stone A# +1703875#Town Sword Stone S# +1703881#Trident Stone D# +1703882#Trident Stone C# +1703883#Trident Stone B# +1703884#Trident Stone A# +1703885#Trident Stone S# +1703891#Tsurugi Stone D# +1703892#Tsurugi Stone C# +1703893#Tsurugi Stone B# +1703894#Tsurugi Stone A# +1703895#Tsurugi Stone S# +1703901#Two Handed Axe Stone D# +1703902#Two Handed Axe Stone C# +1703903#Two Handed Axe Stone B# +1703904#Two Handed Axe Stone A# +1703905#Two Handed Axe Stone S# +1703911#Unholy Touch Stone D# +1703912#Unholy Touch Stone C# +1703913#Unholy Touch Stone B# +1703914#Unholy Touch Stone A# +1703915#Unholy Touch Stone S# +1703921#War Axe Stone D# +1703922#War Axe Stone C# +1703923#War Axe Stone B# +1703924#War Axe Stone A# +1703925#War Axe Stone S# +1703931#Gaia Whip Stone D# +1703932#Gaia Whip Stone C# +1703933#Gaia Whip Stone B# +1703934#Gaia Whip Stone A# +1703935#Gaia Whip Stone S# +1703941#Icicle Whip Stone D# +1703942#Icicle Whip Stone C# +1703943#Icicle Whip Stone B# +1703944#Icicle Whip Stone A# +1703945#Icicle Whip Stone S# +1703951#Wizardry Staff Stone D# +1703952#Wizardry Staff Stone C# +1703953#Wizardry Staff Stone B# +1703954#Wizardry Staff Stone A# +1703955#Wizardry Staff Stone S# +1703961#Zephyrus Stone D# +1703962#Zephyrus Stone C# +1703963#Zephyrus Stone B# +1703964#Zephyrus Stone A# +1703965#Zephyrus Stone S# +1703971#Zweihander Stone D# +1703972#Zweihander Stone C# +1703973#Zweihander Stone B# +1703974#Zweihander Stone A# +1703975#Zweihander Stone S# +1703981#Soul Staff Stone D# +1703982#Soul Staff Stone C# +1703983#Soul Staff Stone B# +1703984#Soul Staff Stone A# +1703985#Soul Staff Stone S# +1703991#Gladius Stone D# +1703992#Gladius Stone C# +1703993#Gladius Stone B# +1703994#Gladius Stone A# +1703995#Gladius Stone S# +1704001#Ahlspiess Stone D# +1704002#Ahlspiess Stone C# +1704003#Ahlspiess Stone B# +1704004#Ahlspiess Stone A# +1704005#Ahlspiess Stone S# +1704011#Katzbalger Stone D# +1704012#Katzbalger Stone C# +1704013#Katzbalger Stone B# +1704014#Katzbalger Stone A# +1704015#Katzbalger Stone S# +1704021#Thunder P Stone D# +1704022#Thunder P Stone C# +1704023#Thunder P Stone B# +1704024#Thunder P Stone A# +1704025#Thunder P Stone S# +1704031#Gate Keeper-DD Stone D# +1704032#Gate Keeper-DD Stone C# +1704033#Gate Keeper-DD Stone B# +1704034#Gate Keeper-DD Stone A# +1704035#Gate Keeper-DD Stone S# +1704041#Slash Stone D# +1704042#Slash Stone C# +1704043#Slash Stone B# +1704044#Slash Stone A# +1704045#Slash Stone S# +1704051#Quadrille Stone D# +1704052#Quadrille Stone C# +1704053#Quadrille Stone B# +1704054#Quadrille Stone A# +1704055#Quadrille Stone S# +1704061#Mail Breaker Stone D# +1704062#Mail Breaker Stone C# +1704063#Mail Breaker Stone B# +1704064#Mail Breaker Stone A# +1704065#Mail Breaker Stone S# +1704071#Sword Breaker Stone D# +1704072#Sword Breaker Stone C# +1704073#Sword Breaker Stone B# +1704074#Sword Breaker Stone A# +1704075#Sword Breaker Stone S# +1704081#Slaughter Stone D# +1704082#Slaughter Stone C# +1704083#Slaughter Stone B# +1704084#Slaughter Stone A# +1704085#Slaughter Stone S# +1704091#Scissor Sword Stone D# +1704092#Scissor Sword Stone C# +1704093#Scissor Sword Stone B# +1704094#Scissor Sword Stone A# +1704095#Scissor Sword Stone S# +1704101#Tirfing Stone D# +1704102#Tirfing Stone C# +1704103#Tirfing Stone B# +1704104#Tirfing Stone A# +1704105#Tirfing Stone S# +1704111#Sabbath Stone D# +1704112#Sabbath Stone C# +1704113#Sabbath Stone B# +1704114#Sabbath Stone A# +1704115#Sabbath Stone S# +1704131#Guillotine Stone D# +1704132#Guillotine Stone C# +1704133#Guillotine Stone B# +1704134#Guillotine Stone A# +1704135#Guillotine Stone S# +1704141#Longinus's Spear Stone D# +1704142#Longinus's Spear Stone C# +1704143#Longinus's Spear Stone B# +1704144#Longinus's Spear Stone A# +1704145#Longinus's Spear Stone S# +1704151#Brionac Stone D# +1704152#Brionac Stone C# +1704153#Brionac Stone B# +1704154#Brionac Stone A# +1704155#Brionac Stone S# +1704161#Berserk Stone D# +1704162#Berserk Stone C# +1704163#Berserk Stone B# +1704164#Berserk Stone A# +1704165#Berserk Stone S# +1704171#Rudra Bow Stone D# +1704172#Rudra Bow Stone C# +1704173#Rudra Bow Stone B# +1704174#Rudra Bow Stone A# +1704175#Rudra Bow Stone S# +1704181#Tjungkuletti Stone D# +1704182#Tjungkuletti Stone C# +1704183#Tjungkuletti Stone B# +1704184#Tjungkuletti Stone A# +1704185#Tjungkuletti Stone S# +1704191#Brocca Stone D# +1704192#Brocca Stone C# +1704193#Brocca Stone B# +1704194#Brocca Stone A# +1704195#Brocca Stone S# +1704201#Edge Stone D# +1704202#Edge Stone C# +1704203#Edge Stone B# +1704204#Edge Stone A# +1704205#Edge Stone S# +1704211#Excalibur Stone D# +1704212#Excalibur Stone C# +1704213#Excalibur Stone B# +1704214#Excalibur Stone A# +1704215#Excalibur Stone S# +1704221#Dragon Slayer Stone D# +1704222#Dragon Slayer Stone C# +1704223#Dragon Slayer Stone B# +1704224#Dragon Slayer Stone A# +1704225#Dragon Slayer Stone S# +1704231#Schweizersabel Stone D# +1704232#Schweizersabel Stone C# +1704233#Schweizersabel Stone B# +1704234#Schweizersabel Stone A# +1704235#Schweizersabel Stone S# +1704241#Byeollungum Stone D# +1704242#Byeollungum Stone C# +1704243#Byeollungum Stone B# +1704244#Byeollungum Stone A# +1704245#Byeollungum Stone S# +1704251#Combat Knife Stone D# +1704252#Combat Knife Stone C# +1704253#Combat Knife Stone B# +1704254#Combat Knife Stone A# +1704255#Combat Knife Stone S# +1704261#Exorciser Stone D# +1704262#Exorciser Stone C# +1704263#Exorciser Stone B# +1704264#Exorciser Stone A# +1704265#Exorciser Stone S# +1704271#Grand Cross Stone D# +1704272#Grand Cross Stone C# +1704273#Grand Cross Stone B# +1704274#Grand Cross Stone A# +1704275#Grand Cross Stone S# +1704281#Mysteltainn Stone D# +1704282#Mysteltainn Stone C# +1704283#Mysteltainn Stone B# +1704284#Mysteltainn Stone A# +1704285#Mysteltainn Stone S# +1704291#Executioner Stone D# +1704292#Executioner Stone C# +1704293#Executioner Stone B# +1704294#Executioner Stone A# +1704295#Executioner Stone S# +1704301#Desert Twilight Stone D# +1704302#Desert Twilight Stone C# +1704303#Desert Twilight Stone B# +1704304#Desert Twilight Stone A# +1704305#Desert Twilight Stone S# +1704311#Zeny Knife Stone D# +1704312#Zeny Knife Stone C# +1704313#Zeny Knife Stone B# +1704314#Zeny Knife Stone A# +1704315#Zeny Knife Stone S# +1704321#Dragon Killer Stone D# +1704322#Dragon Killer Stone C# +1704323#Dragon Killer Stone B# +1704324#Dragon Killer Stone A# +1704325#Dragon Killer Stone S# +1704331#Scalpel Stone D# +1704332#Scalpel Stone C# +1704333#Scalpel Stone B# +1704334#Scalpel Stone A# +1704335#Scalpel Stone S# +1704341#Curved Sword Stone D# +1704342#Curved Sword Stone C# +1704343#Curved Sword Stone B# +1704344#Curved Sword Stone A# +1704345#Curved Sword Stone S# +1704351#Elemental Sword Stone D# +1704352#Elemental Sword Stone C# +1704353#Elemental Sword Stone B# +1704354#Elemental Sword Stone A# +1704355#Elemental Sword Stone S# +1704361#Fireblend Stone D# +1704362#Fireblend Stone C# +1704363#Fireblend Stone B# +1704364#Fireblend Stone A# +1704365#Fireblend Stone S# +1704371#Flamberge Stone D# +1704372#Flamberge Stone C# +1704373#Flamberge Stone B# +1704374#Flamberge Stone A# +1704375#Flamberge Stone S# +1704381#Ice Falchion Stone D# +1704382#Ice Falchion Stone C# +1704383#Ice Falchion Stone B# +1704384#Ice Falchion Stone A# +1704385#Ice Falchion Stone S# +1704391#Saber Stone D# +1704392#Saber Stone C# +1704393#Saber Stone B# +1704394#Saber Stone A# +1704395#Saber Stone S# +1704401#Broad Sword Stone D# +1704402#Broad Sword Stone C# +1704403#Broad Sword Stone B# +1704404#Broad Sword Stone A# +1704405#Broad Sword Stone S# +1704411#Claymore Stone D# +1704412#Claymore Stone C# +1704413#Claymore Stone B# +1704414#Claymore Stone A# +1704415#Claymore Stone S# +1704421#Muramasa Stone D# +1704422#Muramasa Stone C# +1704423#Muramasa Stone B# +1704424#Muramasa Stone A# +1704425#Muramasa Stone S# +1704431#Two-Handed Sword Stone D# +1704432#Two-Handed Sword Stone C# +1704433#Two-Handed Sword Stone B# +1704434#Two-Handed Sword Stone A# +1704435#Two-Handed Sword Stone S# +1704441#Doom Slayer Stone D# +1704442#Doom Slayer Stone C# +1704443#Doom Slayer Stone B# +1704444#Doom Slayer Stone A# +1704445#Doom Slayer Stone S# +1704451#Stunner Stone D# +1704452#Stunner Stone C# +1704453#Stunner Stone B# +1704454#Stunner Stone A# +1704455#Stunner Stone S# +1704461#Gentleman's Staff Stone D# +1704462#Gentleman's Staff Stone C# +1704463#Gentleman's Staff Stone B# +1704464#Gentleman's Staff Stone A# +1704465#Gentleman's Staff Stone S# +1704471#Healing Staff Stone D# +1704472#Healing Staff Stone C# +1704473#Healing Staff Stone B# +1704474#Healing Staff Stone A# +1704475#Healing Staff Stone S# +1704481#Release of Wish Stone D# +1704482#Release of Wish Stone C# +1704483#Release of Wish Stone B# +1704484#Release of Wish Stone A# +1704485#Release of Wish Stone S# +1704491#Burning Bow Stone D# +1704492#Burning Bow Stone C# +1704493#Burning Bow Stone B# +1704494#Burning Bow Stone A# +1704495#Burning Bow Stone S# +1704501#Dragon Wing Stone D# +1704502#Dragon Wing Stone C# +1704503#Dragon Wing Stone B# +1704504#Dragon Wing Stone A# +1704505#Dragon Wing Stone S# +1704511#Earth Bow Stone D# +1704512#Earth Bow Stone C# +1704513#Earth Bow Stone B# +1704514#Earth Bow Stone A# +1704515#Earth Bow Stone S# +1704521#Frozen Bow Stone D# +1704522#Frozen Bow Stone C# +1704523#Frozen Bow Stone B# +1704524#Frozen Bow Stone A# +1704525#Frozen Bow Stone S# +1704531#Claw Stone D# +1704532#Claw Stone C# +1704533#Claw Stone B# +1704534#Claw Stone A# +1704535#Claw Stone S# +1704541#Icicle Fist Stone D# +1704542#Icicle Fist Stone C# +1704543#Icicle Fist Stone B# +1704544#Icicle Fist Stone A# +1704545#Icicle Fist Stone S# +1704551#Gumoongoh Stone D# +1704552#Gumoongoh Stone C# +1704553#Gumoongoh Stone B# +1704554#Gumoongoh Stone A# +1704555#Gumoongoh Stone S# +1704561#Harp Stone D# +1704562#Harp Stone C# +1704563#Harp Stone B# +1704564#Harp Stone A# +1704565#Harp Stone S# +1704571#Tail Whip Stone D# +1704572#Tail Whip Stone C# +1704573#Tail Whip Stone B# +1704574#Tail Whip Stone A# +1704575#Tail Whip Stone S# +1704581#Whip Stone D# +1704582#Whip Stone C# +1704583#Whip Stone B# +1704584#Whip Stone A# +1704585#Whip Stone S# +1704591#Red Flame Whip Stone D# +1704592#Red Flame Whip Stone C# +1704593#Red Flame Whip Stone B# +1704594#Red Flame Whip Stone A# +1704595#Red Flame Whip Stone S# +1704601#Bible Stone D# +1704602#Bible Stone C# +1704603#Bible Stone B# +1704604#Bible Stone A# +1704605#Bible Stone S# +1704611#Katar Stone D# +1704612#Katar Stone C# +1704613#Katar Stone B# +1704614#Katar Stone A# +1704615#Katar Stone S# +1704621#Katar of Piercing Wind Stone D# +1704622#Katar of Piercing Wind Stone C# +1704623#Katar of Piercing Wind Stone B# +1704624#Katar of Piercing Wind Stone A# +1704625#Katar of Piercing Wind Stone S# +1704631#Sage's Diary Stone D# +1704632#Sage's Diary Stone C# +1704633#Sage's Diary Stone B# +1704634#Sage's Diary Stone A# +1704635#Sage's Diary Stone S# +1704641#Hatii Claw Stone D# +1704642#Hatii Claw Stone C# +1704643#Hatii Claw Stone B# +1704644#Hatii Claw Stone A# +1704645#Hatii Claw Stone S# +1704651#Hunter Bow Stone D# +1704652#Hunter Bow Stone C# +1704653#Hunter Bow Stone B# +1704654#Hunter Bow Stone A# +1704655#Hunter Bow Stone S# +1704661#Ginnungagap Stone D# +1704662#Ginnungagap Stone C# +1704663#Ginnungagap Stone B# +1704664#Ginnungagap Stone A# +1704665#Ginnungagap Stone S# +1800000#Ant hell Collection# +1800001#Payon Dungeon (1) Collection# +1800002#Umbala Dungeon collection# +1800003#Beach Dungeon collection# +1900000#[Ultraman] STR Stone (Upper)# +1900001#[Ultraman] INT Stone (Upper)# +1900002#[Ultraman] AGI Stone (Upper)# +1900003#[Ultraman] DEX Stone (Upper)# +1900004#[Ultraman] VIT Stone (Upper)# +1900005#[Ultraman] LUK Stone (Upper)# +1900006#[Ultraman] Recovery Stone (Upper)# +1900007#[Ultraman] Recovery Skill Stone (Upper)# +1900008#[Ultraman] Large Stone (Upper)# +1900009#[Ultraman] Medium Stone (Upper)# +1900010#[Ultraman] Small Stone (Upper)# +1900011#[Ultraman] Attack Stone(Upper)# +1900012#[Ultraman] Magic Stone(Upper)# +1900013#[Ultraman] ATK Stone (Middle)# +1900014#[Ultraman] MATK Stone (Middle)# +1900015#[Ultraman] Recovery Stone (Middle)# +1900016#[Ultraman] HP Stone (Middle)# +1900017#[Ultraman] SP Stone (Middle)# +1900018#[Ultraman] HIT Stone (Lower)# +1900019#[Ultraman] FLEE Stone (Lower)# +1900020#[Ultraman] Recovery Stone (Lower)# +1900021#[Ultraman] ATK Stone(Lower)# +1900022#[Ultraman] MATK Stone(Lower)# +1900023#[Ultraman] ASPD Stone (Garment)# +1900024#[Ultraman] HP Absorbtion Stone (Garment)# +1900025#[Ultraman] SP Restoration Stone (Garment)# +1900026#Increases Recovery# +1900027#Archbishop Lv1# +1900028#Large Attack 2# +1900029#Medium Attack 2# +1900030#Small Attack 2# +1900031#ATK+2%# +1900032#MATK+2%# +1900033#Healing 15# +1900034#MaxHP+2%# +1900035#MaxSP+2%# +1900036#ASPD+2# +1900037#HP Absorb 2# +1900038#SP Absorb 2# +1900039#HIT+2# +1900040#FLEE+2# +1900041#Special Enchant Stone (Special)# +1900042#EXP & DROP 5%# +1900043#Special Enchant Stone 2 (Special)# +1900044#EXP & DROP 5%# +1900045#Minor Fixed Cast Stone# +1900046#Minor Fixed Cast Stone# +2000000#CBT Day 1 Supply Box# +2000001#CBT Day 2 Supply Box# +2000002#CBT Day 3 Supply Box# +2000003#CBT Day 4 Supply Box# +2000004#CBT Day 5 Supply Box# +2000005#CBT Day 6 Supply Box# +2000006#CBT Day 7 Supply Box# +2000007#Bot Vip Package I# +2000008#[Event] Automatic Player Box 30 Days# +2000009#[Event] Automatic Player Box 30 Days# +2000010#[Event] Automatic Player Box 3 Days# +2000011#First Refil Box# +2000012#First Refil Box# +2000013#Strawberry in Mouth# +2000014#Strawberry In Mouth Box# +2000015#Top Up Milestone 30 ION Box# +2000016#Top Up Milestone 50 ION Box# +2000017#Top Up Milestone 100 ION Box# +2000018#Top Up Milestone 300 ION Box# +2000019#Top Up Milestone 450 ION Box# +2000020#Mint Redeem Box# +2000021#[Event] Booster Box Bronze# +2000022#Angeling Eternal Glory# +2000023#AIS Campaign# +2000024#[Event] Automatic Player Box 30 Days# +2000025#Step Spending 15,000 Moonstone Box# +2000026#Step Spending 30,000 Moonstone Box# +2000027#Sp consumtion Box# +2000028#[Event] Unlimited Arrow Box (7Days)# +2000029#[Event] Unlimited Silver Arrow Box (7Days)# +2000030#[Event] Unlimited Fire Arrow Box (7Days)# +2000031#[Event] Small Life Potion Box(10)# +2000032#[Event] Medium Life Potion Box(10)# +2000033#[Event] Mysterious Life Potion Box(10)# +2000034#Black Cat Scroll# +2000035#Enriched Elunium Fragment# +2000036#Enriched Oridecon Fragment# +2000037#Headgear Challenge# +2000038#Weapons Challenge# +2000039#Accessory Box# +2000040#First Refil Box# +2000041#First Refil Box# +2000042#Siege Blue Supply Box# +2000043#Top Up Milestone 30 ION Box# +2000044#Top Up Milestone 50 ION Box# +2000045#Top Up Milestone 100 ION Box# +2000046#Top Up Milestone 300 ION Box# +2000047#Top Up Milestone 450 ION Box# +2000048#Baby Deviling Box (30Days)# +2000049#[Event] Baby Deviling (30Days)# +2000050#Adamantine Box# +2000051#WoE White Potion Box# +2000052#WoE Blue Potion Box# +2000053#Rainbow Heart Scroll# +2000054#Basic Box# +2000055#Silver Box# +2000056#Gold Box# +2000057#Love Mom Special Scroll# +2000058#Premium Nova space Box# +2000059#Adamantine Blessing Box (30)# +2000060#Adamantine Pocket Box (250)# +2000061#Adamantine Pocket Box (1250)# +2000062#Adamantine Pocket Box (2500)# +2000063#Adamantine Pocket Box (12500)# +2000064#Adamantine Pocket Box (25000)# +2000065#Mother's Package Box# +2000066#Monster Balloon Box# +2000067#Step Spending Box Reward 15000Moonstone# +2000068#Step Spending Box Reward 30000Moonstone# +2000069#Elemental Scroll# +2000071#First Refil 10ION Box# +2000072#First Refil 30ION Box# +2000073#Grape Bubble Gum Box (30Days)# +2000074#Grape Bubble Gum (30Days)# +2000075#Top Up Milestone 30 ION Box# +2000076#Top Up Milestone 50 ION Box# +2000077#Top Up Milestone 100 ION Box# +2000078#Top Up Milestone 300 ION Box# +2000079#Top Up Milestone 450 ION Box# +2000080#Special September Scroll# +2000081#TIG Register Box# +2000082#TIG Mission Box# +2000083#Human Eye Patch# +2000084#Angel Scroll# +2000085#Bloody Muffler# +2000086#Shadow Random Box# +2000087#[Event] Premium Service Box (30 Days)# +2000088#Combo Service Pack Box# +2000089#[Event] Gym Pass# +2000090#[Event] 75% Battle Manual Box(10)# +2000091#Shark Addict Hat# +2100001#Poring X Card# +2100002#Fabre X Card# +2100003#Pupa X Card# +2100004#Drops X Card# +2100005#Santa Poring X Card# +2100006#Lunatic X Card# +2100007#Pecopeco Egg X Card# +2100008#Picky X Card# +2100009#Chonchon X Card# +2100010#Willow X Card# +2100011#Picky Egg X Card# +2100012#Thiefbug Egg X Card# +2100013#Andre Egg X Card# +2100014#Roda Frog X Card# +2100015#Condor X Card# +2100016#Thief Bug X Card# +2100017#Savage Bebe X Card# +2100018#Andre Larva X Card# +2100019#Hornet X Card# +2100020#Familiar X Card# +2100021#Rocker X Card# +2100022#Spore X Card# +2100023#Baby Desert Wolf X Card# +2100024#Plankton X Card# +2100025#Skeleton X Card# +2100026#Female Thiefbug X Card# +2100027#Kukre X Card# +2100028#Tarou X Card# +2100029#Wolf X Card# +2100030#Mandragora X Card# +2100031#Pecopeco X Card# +2100032#Ambernite X Card# +2100033#Poporing X Card# +2100034#Wormtail X Card# +2100035#Hydra X Card# +2100036#Muka X Card# +2100037#Snake X Card# +2100038#Zombie X Card# +2100039#Stainer X Card# +2100040#Creamy X Card# +2100041#Coco X Card# +2100042#Steel Chonchon X Card# +2100043#Andre X Card# +2100044#Smokie X Card# +2100045#Horn X Card# +2100046#Martin X Card# +2100047#Ghostring X Card# +2100048#Poison Spore X Card# +2100049#Vadon X Card# +2100050#Male Thiefbug X Card# +2100051#Yoyo X Card# +2100052#Elder Willow X Card# +2100053#Vitata X Card# +2100054#Angelring X Card# +2100055#Marina X Card# +2100056#Dustiness X Card# +2100057#Metaller X Card# +2100058#Thara Frog X Card# +2100059#Soldier Andre X Card# +2100060#Goblin X Card# +2100061#Cornutus X Card# +2100062#Anacondaq X Card# +2100063#Caramel X Card# +2100064#Zerom X Card# +2100065#Kaho X Card# +2100066#Orc Warrior X Card# +2100067#Megalodon X Card# +2100068#Scorpion X Card# +2100069#Drainliar X Card# +2100070#Eggyra X Card# +2100071#Orc Zombie X Card# +2100072#Golem X Card# +2100073#Pirate Skel X Card# +2100074#Bigfoot X Card# +2100075#Argos X Card# +2100076#Magnolia X Card# +2100077#Phen X Card# +2100078#Savage X Card# +2100079#Mantis X Card# +2100080#Flora X Card# +2100081#Hode X Card# +2100082#Desert Wolf X Card# +2100083#Rafflesia X Card# +2100084#Marine Sphere X Card# +2100085#Orc Skeleton X Card# +2100086#Soldier Skeleton X Card# +2100087#Giearth X Card# +2100088#Frilldora X Card# +2100089#Swordfish X Card# +2100090#Munak X Card# +2100091#Kobold X Card# +2100092#Skel Worker X Card# +2100093#Obeaune X Card# +2100094#Archer Skeleton X Card# +2100095#Marse X Card# +2100096#Zenorc X Card# +2100097#Matyr X Card# +2100098#Dokkaebi X Card# +2100099#Pasana X Card# +2100100#Sohee X Card# +2100101#Sandman X Card# +2100102#Whisper X Card# +2100103#Horong X Card# +2100104#Requiem X Card# +2100105#Marc X Card# +2100106#Mummy X Card# +2100107#Verit X Card# +2100108#Myst X Card# +2100109#Jakk X Card# +2100110#Ghoul X Card# +2100111#Strouf X Card# +2100112#Marduk X Card# +2100113#Marionette X Card# +2100114#Argiope X Card# +2100115#Hunter Fly X Card# +2100116#Isis X Card# +2100117#Sidewinder X Card# +2100118#Earth Petite X Card# +2100119#Bathory X Card# +2100120#Sky Petite X Card# +2100121#Phreeoni X Card# +2100122#Deviruchi X Card# +2100123#Eddga X Card# +2100124#Medusa X Card# +2100125#Deviace X Card# +2100126#Minorous X Card# +2100127#Nightmare X Card# +2100128#Golden Thiefbug X Card# +2100129#Baphomet Jr. X Card# +2100130#Scorpion King X Card# +2100131#Moonlight Flower X Card# +2100132#Mistress X Card# +2100133#Raydric X Card# +2100134#Dracula X Card# +2100135#Orc Lord X Card# +2100136#Khalitzburg X Card# +2100137#Drake X Card# +2100138#Anubis X Card# +2100139#Joker X Card# +2100140#Abysmal Knight X Card# +2100141#Evil Druid X Card# +2100142#Doppelganger X Card# +2100143#Orc Hero X Card# +2100144#Osiris X Card# +2100145#Beelzebub X Card# +2100146#Maya X Card# +2100147#Baphomet X Card# +2100148#Pharaoh X Card# +2100149#Gargoyle X Card# +2100150#Goat X Card# +2100151#Gajomart X Card# +2100152#Galapago X Card# +2100153#Crab X Card# +2100154#Dumpling Kid X Card# +2100155#Goblin Leader X Card# +2100156#Goblin Steamrider X Card# +2100157#Goblin Archer X Card# +2100158#Sky Deleter X Card# +2100159#Nine Tail X Card# +2100160#Firelock Soldier X Card# +2100161#Grand Peco X Card# +2100162#Grizzly X Card# +2100163#Gryphon X Card# +2100164#Gullinbursti X Card# +2100165#Gig X Card# +2100166#Nightmare Terror X Card# +2100167#Nereid X Card# +2100168#Dark Lord X Card# +2100169#Dark Illusion X Card# +2100170#Dark Frame X Card# +2100171#Dark Priest X Card# +2100172#The Paper X Card# +2100173#Demon Fungus X Card# +2100174#Devilring X Card# +2100175#Poisonous Toad X Card# +2100176#Dullahan X Card# +2100177#Dryad X Card# +2100178#Dragon Tail X Card# +2100179#Dragonfly X Card# +2100180#Driller X Card# +2100181#Disguise X Card# +2100182#Diabolic X Card# +2100183#Vagabond Wolf X Card# +2100184#Lava Golem X Card# +2100185#Rideword X Card# +2100186#Raggler X Card# +2100187#Raydric Archer X Card# +2100188#Leib Olmai X Card# +2100189#Wraith Dead X Card# +2100190#Wraith X Card# +2100191#Loli Ruri X Card# +2100192#Rotar Zairo X Card# +2100193#Lude X Card# +2100194#Rybio X Card# +2100195#Leaf Cat X Card# +2100196#Marin X Card# +2100197#Mastering X Card# +2100198#Maya Purple X Card# +2100199#Merman X Card# +2100200#Megalith X Card# +2100201#Majoruros X Card# +2100202#Mao Guai X Card# +2100203#Mutant Dragonoid X Card# +2100204#Mini Demon X Card# +2100205#Mimic X Card# +2100206#Myst Case X Card# +2100207#Mysteltainn X Card# +2100208#Miyabi Doll X Card# +2100209#Violy X Card# +2100210#Wanderer X Card# +2100211#Vocal X Card# +2100212#Bongun X Card# +2100213#Brilight X Card# +2100214#Bloody Murderer X Card# +2100215#Blazzer X Card# +2100216#Sasquatch X Card# +2100217#Enchanted Peach Tree X Card# +2100218#Succubus X Card# +2100219#Sage Worm X Card# +2100220#Solider X Card# +2100221#Skeleton General X Card# +2100222#Skel Prisoner X Card# +2100223#Stalactic Golem X Card# +2100224#Stem Worm X Card# +2100225#Stone Shooter X Card# +2100226#Sting X Card# +2100227#Spring Rabbit X Card# +2100228#Sleeper X Card# +2100229#Clock Tower Manager X Card# +2100230#Shinobi X Card# +2100231#Mi Gao X Card# +2100232#Hermit Plant X Card# +2100233#Baby Leopard X Card# +2100234#Anolian X Card# +2100235#Christmas Cookie X Card# +2100236#Amon Ra X Card# +2100237#Owl Duke X Card# +2100238#Owl Baron X Card# +2100239#Iron Fist X Card# +2100240#Arclouze X Card# +2100241#Arc Angelring X Card# +2100242#Apocalipse X Card# +2100243#Antonio X Card# +2100244#Alarm X Card# +2100245#Am Mut X Card# +2100246#Assaulter X Card# +2100247#Aster X Card# +2100248#Ancient Mummy X Card# +2100249#Ancient Worm X Card# +2100250#Executioner X Card# +2100251#Elder X Card# +2100252#Alligator X Card# +2100253#Alice X Card# +2100254#Ogretooth X Card# +2100255#Orc Lady X Card# +2100256#Orc Archer X Card# +2100257#Wild Rose X Card# +2100258#Evil Nymph X Card# +2100259#Wooden Golem X Card# +2100260#Wootan Shooter X Card# +2100261#Wootan Fighter X Card# +2100262#Cloud Hermit X Card# +2100263#Incantation Samurai X Card# +2100264#Wind Ghost X Card# +2100265#Jing Guai X Card# +2100266#Eclipse X Card# +2100267#Explosion X Card# +2100268#Injustice X Card# +2100269#Incubus X Card# +2100270#Giant Spider X Card# +2100271#Giant Hornet X Card# +2100272#Zhu Po Long X Card# +2100273#Shell Fish X Card# +2100274#Zombie Master X Card# +2100275#Zombie Prisoner X Card# +2100276#Lord of The Dead X Card# +2100277#Zealotus X Card# +2100278#Gibbet X Card# +2100279#Earth Deleter X Card# +2100280#Geographer X Card# +2100281#Zipper Bear X Card# +2100282#Tengu X Card# +2100283#Greatest General X Card# +2100284#Chepet X Card# +2100285#Choco X Card# +2100286#Karakasa X Card# +2100287#Kapha X Card# +2100288#Carat X Card# +2100289#Caterpillar X Card# +2100290#Cat O' Nine Tails X Card# +2100291#Kobold Leader X Card# +2100292#Kobold Archer X Card# +2100293#Cookie X Card# +2100294#Quve X Card# +2100295#Kraben X Card# +2100296#Cramp X Card# +2100297#Cruiser X Card# +2100298#Creamy Fear X Card# +2100299#Clock X Card# +2100300#Chimera X Card# +2100301#Killer Mantis X Card# +2100302#Taogun Ka X Card# +2100303#Giant Whisper X Card# +2100304#Tamruan X Card# +2100305#Turtle General X Card# +2100306#Toad X Card# +2100307#Beetle King X Card# +2100308#Tri Joint X Card# +2100309#Parasite X Card# +2100310#Panzer Goblin X Card# +2100311#Permeter X Card# +2100312#Fur Seal X Card# +2100313#Punk X Card# +2100314#Penomena X Card# +2100315#Pest X Card# +2100316#False Angel X Card# +2100317#Mobster X Card# +2100318#Stormy Knight X Card# +2100319#Freezer X Card# +2100320#Bloody Knight X Card# +2100321#Hylozoist X Card# +2100322#High Orc X Card# +2100323#Hatii Bebe X Card# +2100324#Hatii X Card# +2100325#Harpy X Card# +2100326#Sea-Otter X Card# +2100327#Bloody Butterfly X Card# +2100328#Yao Jun X Card# +2100329#Phendark X Card# +2100330#Dark Snake Lord X Card# +2100331#Heater X Card# +2100332#Waste Stove X Card# +2100333#Venomous X Card# +2100334#Noxious X Card# +2100335#Pitman X Card# +2100336#Ungoliant X Card# +2100337#Porcellio X Card# +2100338#Obsidian X Card# +2100339#Mineral X Card# +2100340#Teddy Bear X Card# +2100341#Metaling X Card# +2100342#RSX-0806 X Card# +2100343#Holden X Card# +2100344#Anopheles X Card# +2100345#Hill Wind X Card# +2100346#Egnigem Cenia X Card# +2100347#Armeyer Dinze X Card# +2100348#Wickebine Tres X Card# +2100349#Errende Ebecee X Card# +2100350#Laurell Weinder X Card# +2100351#Kavach Icarus X Card# +2100352#Boss Egnigem X Card# +2100353#Remover X Card# +2100354#Gemini-S58 X Card# +2100355#Gremlin X Card# +2100356#Beholder X Card# +2100357#Lord Knight X Card# +2100358#Seyren Windsor X Card# +2100359#Assassin Cross X Card# +2100360#Eremes Guile X Card# +2100361#Mastersmith X Card# +2100362#Howard Alt-Eisen X Card# +2100363#High Priest X Card# +2100364#Margaretha Sorin X Card# +2100365#High Wizard X Card# +2100366#Kathryne Keyron X Card# +2100367#Sniper X Card# +2100368#Cecil Damon X Card# +2100369#Venatu X Card# +2100370#Dimik X Card# +2100371#Archdam X Card# +2100372#White Lady X Card# +2100373#Green Maiden X Card# +2100374#Vesper X Card# +2100375#Orc Baby X Card# +2100376#Lady Tanee X Card# +2100377#Grove X Card# +2100378#Gold Acidus X Card# +2100379#Blue Acidus X Card# +2100380#Red Ferus X Card# +2100381#Green Ferus X Card# +2100382#Yellow Novus X Card# +2100383#Red Novus X Card# +2100384#Hydrolancer X Card# +2100385#Dragon Egg X Card# +2100386#Detardeurus X Card# +2100387#Ancient Mimic X Card# +2100388#Death Word X Card# +2100389#Plasma X Card# +2100390#Breeze X Card# +2100391#Baroness of Retribution X Card# +2100392#Dame of Sentinel X Card# +2100393#Mistress of Shelter X Card# +2100394#Lady Solace X Card# +2100395#Maero of Thanatos X Card# +2100396#Odium of Thanatos X Card# +2100397#Despero of Thanatos X Card# +2100398#Dolor of Thanatos X Card# +2100399#Memory of Thanatos X Card# +2100400#Aliza X Card# +2100401#Alicel X Card# +2100402#Aliot X Card# +2100403#Kiel-D-01 X Card# +2100404#Skogul X Card# +2100405#Frus X Card# +2100406#Skeggiold X Card# +2100407#Randgris X Card# +2100408#Gloom Under Night X Card# +2100409#Agav X Card# +2100410#Echio X Card# +2100411#Vanberk X Card# +2100412#Isilla X Card# +2100413#Hodremlin X Card# +2100414#Seeker X Card# +2100415#Snowier X Card# +2100416#Siroma X Card# +2100417#Ice Titan X Card# +2100418#Gazeti X Card# +2100419#Ktullanux X Card# +2100420#Muscipular X Card# +2100421#Drosera X Card# +2100422#Roween X Card# +2100423#Galion X Card# +2100424#Stapo X Card# +2200000#[Event] Annivesary Scroll# +2200001#The Darkness Fang Scroll# +2200002#King Eddga Scroll# +2200003#Step Spending Box Reward 15000Moonstone# +2200004#Step Spending Box Reward 30000Moonstone# +2200005#Step Spending Box Reward 45000Moonstone# +2200006#[Event] Regenerate supply Box# +2200007#Landverse Enchant Stone Box 2# +2200008#Landverse Enchant Stone Box 2# +2200009#[Event] Annivesary Scroll Box# +2200010#[Event] Adamantine Blessing Box# +2200011#Starter Pack Box# +2200012#Battle Pass Reward Step1# +2200013#Battle Pass Reward Step2# +2200014#Battle Pass Reward Step3# +2200015#Battle Pass Reward Step4# +2200016#Battle Pass Reward Step5# +2200017#Battle Pass Reward Step6# +2200018#Battle Pass Reward Step7# +2200019#Battle Pass Reward Step8# +2200020#Battle Pass Reward Step9# +2200021#Battle Pass Reward Step10# +2200022#Battle Pass Reward Step11# +2200023#Battle Pass Reward Step12# +2200024#Battle Pass Reward Step13# +2200025#Battle Pass Reward Step14# +2200026#Battle Pass Reward Step15# +2200027#Battle Pass Reward Step16# +2200028#Battle Pass Reward Step17# +2200029#Battle Pass Reward Step18# +2200030#Battle Pass Reward Step19# +2200031#Battle Pass Reward Step20# +2200032#Battle Pass Reward Step21# +2200033#Battle Pass Reward Step22# +2200034#Battle Pass Reward Step23# +2200035#Battle Pass Reward Step24# +2200036#Battle Pass Reward Step25# +2200037#Battle Pass Reward Step26# +2200038#Battle Pass Reward Step27# +2200039#Battle Pass Reward Step28# +2200040#Battle Pass Reward Step29# +2200041#Battle Pass Reward Step30# +2200042#Battle Pass Reward Step31# +2200043#Battle Pass Reward Step32# +2200044#Battle Pass Reward Step33# +2200045#Battle Pass Reward Step34# +2200046#Battle Pass Reward Step35# +2200047#Battle Pass Reward Step36# +2200048#Battle Pass Reward Step37# +2200049#Battle Pass Reward Step38# +2200050#Battle Pass Reward Step39# +2200051#Battle Pass Reward Step40# +2200052#Battle Pass Reward Step41# +2200053#Battle Pass Reward Step42# +2200054#Battle Pass Reward Step43# +2200055#Battle Pass Reward Step44# +2200056#Battle Pass Reward Step45# +2200057#Battle Pass Reward Step46# +2200058#Battle Pass Reward Step47# +2200059#Battle Pass Reward Step48# +2200060#Battle Pass Reward Step49# +2200061#Battle Pass Reward Step50# +2200062#Premium Pass Reward Step1# +2200063#Premium Pass Reward Step2# +2200064#Premium Pass Reward Step3# +2200065#Premium Pass Reward Step4# +2200066#Premium Pass Reward Step5# +2200067#Premium Pass Reward Step6# +2200068#Premium Pass Reward Step7# +2200069#Premium Pass Reward Step8# +2200070#Premium Pass Reward Step9# +2200071#Premium Pass Reward Step10# +2200072#Premium Pass Reward Step11# +2200073#Premium Pass Reward Step12# +2200074#Premium Pass Reward Step13# +2200075#Premium Pass Reward Step14# +2200076#Premium Pass Reward Step15# +2200077#Premium Pass Reward Step16# +2200078#Premium Pass Reward Step17# +2200079#Premium Pass Reward Step18# +2200080#Premium Pass Reward Step19# +2200081#Premium Pass Reward Step20# +2200082#Premium Pass Reward Step21# +2200083#Premium Pass Reward Step22# +2200084#Premium Pass Reward Step23# +2200085#Premium Pass Reward Step24# +2200086#Premium Pass Reward Step25# +2200087#Premium Pass Reward Step26# +2200088#Premium Pass Reward Step27# +2200089#Premium Pass Reward Step28# +2200090#Premium Pass Reward Step29# +2200091#Premium Pass Reward Step30# +2200092#Premium Pass Reward Step31# +2200093#Premium Pass Reward Step32# +2200094#Premium Pass Reward Step33# +2200095#Premium Pass Reward Step34# +2200096#Premium Pass Reward Step35# +2200097#Premium Pass Reward Step36# +2200098#Premium Pass Reward Step37# +2200099#Premium Pass Reward Step38# +2200100#Premium Pass Reward Step39# +2200101#Premium Pass Reward Step40# +2200102#Premium Pass Reward Step41# +2200103#Premium Pass Reward Step42# +2200104#Premium Pass Reward Step43# +2200105#Premium Pass Reward Step44# +2200106#Premium Pass Reward Step45# +2200107#Premium Pass Reward Step46# +2200108#Premium Pass Reward Step47# +2200109#Premium Pass Reward Step48# +2200110#Premium Pass Reward Step49# +2200111#Premium Pass Reward Step50# +2200112#Title - Wind of Heaven# +2200113#[Event] Zephyr Crystal# +2200114#Zephyr Crystal# +2200115#BP Air Fragment# +2200116#BP Fresh Air# +2200117#Battle Pass SS VI - Premium# +2200118#Battle Pass SS VI - Quest# +2200119#Battle Pass Reward Step1# +2200120#Battle Pass Reward Step2# +2200121#Battle Pass Reward Step3# +2200122#Battle Pass Reward Step4# +2200123#Battle Pass Reward Step5# +2200124#Battle Pass Reward Step6# +2200125#Battle Pass Reward Step7# +2200126#Battle Pass Reward Step8# +2200127#Battle Pass Reward Step9# +2200128#Battle Pass Reward Step10# +2200129#Battle Pass Reward Step11# +2200130#Battle Pass Reward Step12# +2200131#Battle Pass Reward Step13# +2200132#Battle Pass Reward Step14# +2200133#Battle Pass Reward Step15# +2200134#Battle Pass Reward Step16# +2200135#Battle Pass Reward Step17# +2200136#Battle Pass Reward Step18# +2200137#Battle Pass Reward Step19# +2200138#Battle Pass Reward Step20# +2200139#Battle Pass Reward Step21# +2200140#Battle Pass Reward Step22# +2200141#Battle Pass Reward Step23# +2200142#Battle Pass Reward Step24# +2200143#Battle Pass Reward Step25# +2200144#Battle Pass Reward Step26# +2200145#Battle Pass Reward Step27# +2200146#Battle Pass Reward Step28# +2200147#Battle Pass Reward Step29# +2200148#Battle Pass Reward Step30# +2200149#Battle Pass Reward Step31# +2200150#Battle Pass Reward Step32# +2200151#Battle Pass Reward Step33# +2200152#Battle Pass Reward Step34# +2200153#Battle Pass Reward Step35# +2200154#Battle Pass Reward Step36# +2200155#Battle Pass Reward Step37# +2200156#Battle Pass Reward Step38# +2200157#Battle Pass Reward Step39# +2200158#Battle Pass Reward Step40# +2200159#Battle Pass Reward Step41# +2200160#Battle Pass Reward Step42# +2200161#Battle Pass Reward Step43# +2200162#Battle Pass Reward Step44# +2200163#Battle Pass Reward Step45# +2200164#Battle Pass Reward Step46# +2200165#Battle Pass Reward Step47# +2200166#Battle Pass Reward Step48# +2200167#Battle Pass Reward Step49# +2200168#Battle Pass Reward Step50# +2200169#Premium Pass Reward Step1# +2200170#Premium Pass Reward Step2# +2200171#Premium Pass Reward Step3# +2200172#Premium Pass Reward Step4# +2200173#Premium Pass Reward Step5# +2200174#Premium Pass Reward Step6# +2200175#Premium Pass Reward Step7# +2200176#Premium Pass Reward Step8# +2200177#Premium Pass Reward Step9# +2200178#Premium Pass Reward Step10# +2200179#Premium Pass Reward Step11# +2200180#Premium Pass Reward Step12# +2200181#Premium Pass Reward Step13# +2200182#Premium Pass Reward Step14# +2200183#Premium Pass Reward Step15# +2200184#Premium Pass Reward Step16# +2200185#Premium Pass Reward Step17# +2200186#Premium Pass Reward Step18# +2200187#Premium Pass Reward Step19# +2200188#Premium Pass Reward Step20# +2200189#Premium Pass Reward Step21# +2200190#Premium Pass Reward Step22# +2200191#Premium Pass Reward Step23# +2200192#Premium Pass Reward Step24# +2200193#Premium Pass Reward Step25# +2200194#Premium Pass Reward Step26# +2200195#Premium Pass Reward Step27# +2200196#Premium Pass Reward Step28# +2200197#Premium Pass Reward Step29# +2200198#Premium Pass Reward Step30# +2200199#Premium Pass Reward Step31# +2200200#Premium Pass Reward Step32# +2200201#Premium Pass Reward Step33# +2200202#Premium Pass Reward Step34# +2200203#Premium Pass Reward Step35# +2200204#Premium Pass Reward Step36# +2200205#Premium Pass Reward Step37# +2200206#Premium Pass Reward Step38# +2200207#Premium Pass Reward Step39# +2200208#Premium Pass Reward Step40# +2200209#Premium Pass Reward Step41# +2200210#Premium Pass Reward Step42# +2200211#Premium Pass Reward Step43# +2200212#Premium Pass Reward Step44# +2200213#Premium Pass Reward Step45# +2200214#Premium Pass Reward Step46# +2200215#Premium Pass Reward Step47# +2200216#Premium Pass Reward Step48# +2200217#Premium Pass Reward Step49# +2200218#Premium Pass Reward Step50# +2200219#Terra Nova Coin Box# +2200220#BP Bronze Treasure# +2200221#BP Silver Treasure# +2200222#BP Gold Treasure# +2200223#Gorgeous Blossom Scroll# +2200224#[October] First Refill Box 10ION# +2200225#[October] First Refill Box 30ION# +2200226#[Event] Happy Balloon (30 Days) Box# +2200227#[October] Top Up Milestone 10 ION Box# +2200228#[October] Top Up Milestone 30 ION Box# +2200229#[October] Top Up Milestone 50 ION Box# +2200230#[October] Top Up Milestone 100 ION Box# +2200231#[October] Top Up Milestone 300 ION Box# +2200232#Welcome Transcendent Class Scroll# +2200233#[Event] Yellow Potion Box 50# +2200234#Top Up Milestone 30 ION Box# +2200235#Top Up Milestone 50 ION Box# +2200236#Top Up Milestone 100 ION Box# +2200237#Top Up Milestone 300 ION Box# +2200238#Top Up Milestone 450 ION Box# +2200239#Special October Scroll# +2200240#Adamantine Blessing Box# +2200241#Freya Goddress Scroll# +2200244#Step Spending Box Reward 5000Moonstone# +2200245#Step Spending Box Reward 15000Moonstone# +2200246#Step Spending Box Reward 30000Moonstone# +2200247#New Pet Box# +2200248#[Event] Rare Lucky Pet Scroll 25%# +2200249#EXP Boosting Box# +2200252#Mandarin Orange Green Tea With Cream Cheese# +2200253#Nose Tea Box Set I# +2200254#Nose Tea Box Set II# +2200255#Elite Siege Supply Box (5)# +2200256#Life Potion Package (5)# +2200257#[Event] Adventure ROL Scroll (5ea)# +2200258#Life Potion Package# +2200259#White Knight Scroll# +2200260#Step Spending Box Reward 15000Moonstone# +2200261#Step Spending Box Reward 30000Moonstone# +2200262#Monster Balloon Box 2# +2200263#[Event] Unlimited Fly Wing Box (14 Day)# +2200264#Document of Sun Moon and Star Scroll# +2200265#Unlimited Document of Sun Moon and Star Scroll# +2200266#[30 Days] Document of Sun Moon and Star Scroll Box# +2200267#Title - Ragnarok Festa# +2200268#Ragnarok Festa Box# +2200269#Luxury Hunting Scroll# +2200270#Title: (*>_>)# +2200271#Title: (๐^_^๐)# +2200272#ROLC2024 Costume Select Box Tier A# +2200273#ROLC2024 Costume Select Box Tier S# +2200274#ROLC2024 Premium Silver Package# +2200275#ROLC2024 Premium Gold Package# +2200276#ROLC2024 Title Package I# +2200277#ROLC2024 Title Package II# +2200278#ROLC2024 Expansion Package# +2200279#[Event] Boarding Halter (14 Days)# +2200280#[Event] Unlimited Fly Wing Box (14 Day)# +2200281#Biscuit Stick Random Box# +2200282#Zodiac Headgears Random Box# +2200283#Costume SSR Random Box# +2200284#Armors Element Random Box# +2200285#Title:ROLC 2024# +2200286#Title:The King ROLC 2024# +2200287#Championship Reward I# +2200288#Championship Reward II# +2200289#Championship Reward III# +2200290#Full Moon Scroll# +2200291#[Event] Romantic Flower (30 Days) Box# +2200292#[November] First Refill Box 10ION# +2200293#[November] First Refill Box 30ION# +2200294#[November] Top Up Milestone 10 ION Box# +2200295#[November] Top Up Milestone 30 ION Box# +2200296#[November] Top Up Milestone 50 ION Box# +2200297#[November] Top Up Milestone 100 ION Box# +2200298#[November] Top Up Milestone 300 ION Box# +2200299#Halloween Scroll# +2200300#ROLC2024 Title Package I (Online)# +2200301#ROLC2024 Title Package II (Online)# +2200302#ROLC2024 Title Package I (Online)# +2200303#ROLC2024 Title Package II (Online)# +2200304#Title: Yggdrasil Rift# +2200305#Title: ROLC2024# +2200306#Fried banana# +2200307#Banana Gummy# +2200308#Dried Banana# +2200309#Luk Chup# +2200310#Foy Thong# +2200311#kanomtan# +2200312#kratongthong# +2200313#Zephyr Crystal Box# +2200314#First Refil 10ION Box# +2200315#First Refil 30ION Box# +2200316#Gentle Marlin Balloon Box (30 Days)# +2200317#Iron Heart Scroll# +2200318#Top Up Milestone 30 ION Box# +2200319#Top Up Milestone 50 ION Box# +2200320#Top Up Milestone 100 ION Box# +2200321#Top Up Milestone 300 ION Box# +2200322#Top Up Milestone 450 ION Box# +2200323#Special November Scroll# +2200325#Special WOE Box# +2200326#Magic Treasure Branch# +2200327#Title:ROLC2024 CHAMPION# +2200328#Mystical Card Album# +2200329#Step Spending Box Reward 15000Moonstone# +2200330#Step Spending Box Reward 30000Moonstone# +2200331#Sakray Package# +2200332#Token of Siegfried Box (50 ea)# +2200333#Darkness Scroll# +2200334#Srinual's Pouch# +2200335#Title:Loy Krathong Day# +2200336#Bronze Coin# +2200337#Silver Coin# +2200338#Gold Coin# +2200339#Step Spending Box Reward 5000Moonstone# +2200340#Step Spending Box Reward 15000Moonstone# +2200341#Step Spending Box Reward 30000Moonstone# +2200343#Tower Defense Gift (Winner)# +2200344#Tower Defense Gift (Loser)# +2200345#Tower Defense Gift (TopKill)# +2200346#Bomb Poring Random Box# +2200347#Special Loot Box# +2200348#Abyssal Depths Scroll# +2200349#Equipment Enchant Stone Box I# +2200350#Equipment Enchant Stone Box II# +2200351#Shining MDef Scroll# +2200352#Fallen Knight Scroll# +2200353#Prismatic Potion# +2200354#Overdrive Package# +2200355#Step Spending Box Reward 5000Moonstone# +2200356#Step Spending Box Reward 15000Moonstone# +2200357#Step Spending Box Reward 30000Moonstone# +2200358#[December] First Refill Box 10ION# +2200359#[December] First Refill Box 30ION# +2200360#Marin Earring Box# +2200361#[December] Top Up Milestone 10 ION Box# +2200362#[December] Top Up Milestone 30 ION Box# +2200363#[December] Top Up Milestone 50 ION Box# +2200364#[December] Top Up Milestone 100 ION Box# +2200365#[December] Top Up Milestone 300 ION Box# +2200366#Special December Scroll# +2200367#First Refil 10ION Box# +2200368#First Refil 30ION Box# +2200369#Marin Earring Box# +2200370#Mad Bunny Scroll# +2200371#Battle Pass Reward Step1# +2200372#Battle Pass Reward Step2# +2200373#Battle Pass Reward Step3# +2200374#Battle Pass Reward Step4# +2200375#Battle Pass Reward Step5# +2200376#Battle Pass Reward Step6# +2200377#Battle Pass Reward Step7# +2200378#Battle Pass Reward Step8# +2200379#Battle Pass Reward Step9# +2200380#Battle Pass Reward Step10# +2200381#Battle Pass Reward Step11# +2200382#Battle Pass Reward Step12# +2200383#Battle Pass Reward Step13# +2200384#Battle Pass Reward Step14# +2200385#Battle Pass Reward Step15# +2200386#Battle Pass Reward Step16# +2200387#Battle Pass Reward Step17# +2200388#Battle Pass Reward Step18# +2200389#Battle Pass Reward Step19# +2200390#Battle Pass Reward Step20# +2200391#Battle Pass Reward Step21# +2200392#Battle Pass Reward Step22# +2200393#Battle Pass Reward Step23# +2200394#Battle Pass Reward Step24# +2200395#Battle Pass Reward Step25# +2200396#Battle Pass Reward Step26# +2200397#Battle Pass Reward Step27# +2200398#Battle Pass Reward Step28# +2200399#Battle Pass Reward Step29# +2200400#Battle Pass Reward Step30# +2200401#Battle Pass Reward Step31# +2200402#Battle Pass Reward Step32# +2200403#Battle Pass Reward Step33# +2200404#Battle Pass Reward Step34# +2200405#Battle Pass Reward Step35# +2200406#Battle Pass Reward Step36# +2200407#Battle Pass Reward Step37# +2200408#Battle Pass Reward Step38# +2200409#Battle Pass Reward Step39# +2200410#Battle Pass Reward Step40# +2200411#Battle Pass Reward Step41# +2200412#Battle Pass Reward Step42# +2200413#Battle Pass Reward Step43# +2200414#Battle Pass Reward Step44# +2200415#Battle Pass Reward Step45# +2200416#Battle Pass Reward Step46# +2200417#Battle Pass Reward Step47# +2200418#Battle Pass Reward Step48# +2200419#Battle Pass Reward Step49# +2200420#Battle Pass Reward Step50# +2200421#Premium Pass Reward Step1# +2200422#Premium Pass Reward Step2# +2200423#Premium Pass Reward Step3# +2200424#Premium Pass Reward Step4# +2200425#Premium Pass Reward Step5# +2200426#Premium Pass Reward Step6# +2200427#Premium Pass Reward Step7# +2200428#Premium Pass Reward Step8# +2200429#Premium Pass Reward Step9# +2200430#Premium Pass Reward Step10# +2200431#Premium Pass Reward Step11# +2200432#Premium Pass Reward Step12# +2200433#Premium Pass Reward Step13# +2200434#Premium Pass Reward Step14# +2200435#Premium Pass Reward Step15# +2200436#Premium Pass Reward Step16# +2200437#Premium Pass Reward Step17# +2200438#Premium Pass Reward Step18# +2200439#Premium Pass Reward Step19# +2200440#Premium Pass Reward Step20# +2200441#Premium Pass Reward Step21# +2200442#Premium Pass Reward Step22# +2200443#Premium Pass Reward Step23# +2200444#Premium Pass Reward Step24# +2200445#Premium Pass Reward Step25# +2200446#Premium Pass Reward Step26# +2200447#Premium Pass Reward Step27# +2200448#Premium Pass Reward Step28# +2200449#Premium Pass Reward Step29# +2200450#Premium Pass Reward Step30# +2200451#Premium Pass Reward Step31# +2200452#Premium Pass Reward Step32# +2200453#Premium Pass Reward Step33# +2200454#Premium Pass Reward Step34# +2200455#Premium Pass Reward Step35# +2200456#Premium Pass Reward Step36# +2200457#Premium Pass Reward Step37# +2200458#Premium Pass Reward Step38# +2200459#Premium Pass Reward Step39# +2200460#Premium Pass Reward Step40# +2200461#Premium Pass Reward Step41# +2200462#Premium Pass Reward Step42# +2200463#Premium Pass Reward Step43# +2200464#Premium Pass Reward Step44# +2200465#Premium Pass Reward Step45# +2200466#Premium Pass Reward Step46# +2200467#Premium Pass Reward Step47# +2200468#Premium Pass Reward Step48# +2200469#Premium Pass Reward Step49# +2200470#Premium Pass Reward Step50# +2200471#[Event] Bleeding Crystal# +2200472#Bleeding Crystal# +2200473#BP Anemia Fragment# +2200474#BP Anemia# +2200475#Battle Pass SS VII - Premium# +2200476#Battle Pass SS VII - Quest# +2200477#Divine Dragonic Coin Box# +2200478#Divine Dragonic Fragment Box# +2200479#Title - Blood of Witch# +2200480#Top Up Milestone 30 ION Box# +2200481#Top Up Milestone 50 ION Box# +2200482#Top Up Milestone 100 ION Box# +2200483#Top Up Milestone 300 ION Box# +2200484#Top Up Milestone 400 ION Box# +2200485#Top Up Milestone 450 ION Box# +2200486#Special December Scroll# +2200487#Battle Pass Reward Step1# +2200488#Battle Pass Reward Step2# +2200489#Battle Pass Reward Step3# +2200490#Battle Pass Reward Step4# +2200491#Battle Pass Reward Step5# +2200492#Battle Pass Reward Step6# +2200493#Battle Pass Reward Step7# +2200494#Battle Pass Reward Step8# +2200495#Battle Pass Reward Step9# +2200496#Battle Pass Reward Step10# +2200497#Battle Pass Reward Step11# +2200498#Battle Pass Reward Step12# +2200499#Battle Pass Reward Step13# +2200500#Battle Pass Reward Step14# +2200501#Battle Pass Reward Step15# +2200502#Battle Pass Reward Step16# +2200503#Battle Pass Reward Step17# +2200504#Battle Pass Reward Step18# +2200505#Battle Pass Reward Step19# +2200506#Battle Pass Reward Step20# +2200507#Battle Pass Reward Step21# +2200508#Battle Pass Reward Step22# +2200509#Battle Pass Reward Step23# +2200510#Battle Pass Reward Step24# +2200511#Battle Pass Reward Step25# +2200512#Battle Pass Reward Step26# +2200513#Battle Pass Reward Step27# +2200514#Battle Pass Reward Step28# +2200515#Battle Pass Reward Step29# +2200516#Battle Pass Reward Step30# +2200517#Battle Pass Reward Step31# +2200518#Battle Pass Reward Step32# +2200519#Battle Pass Reward Step33# +2200520#Battle Pass Reward Step34# +2200521#Battle Pass Reward Step35# +2200522#Battle Pass Reward Step36# +2200523#Battle Pass Reward Step37# +2200524#Battle Pass Reward Step38# +2200525#Battle Pass Reward Step39# +2200526#Battle Pass Reward Step40# +2200527#Battle Pass Reward Step41# +2200528#Battle Pass Reward Step42# +2200529#Battle Pass Reward Step43# +2200530#Battle Pass Reward Step44# +2200531#Battle Pass Reward Step45# +2200532#Battle Pass Reward Step46# +2200533#Battle Pass Reward Step47# +2200534#Battle Pass Reward Step48# +2200535#Battle Pass Reward Step49# +2200536#Battle Pass Reward Step50# +2200537#Premium Pass Reward Step1# +2200538#Premium Pass Reward Step2# +2200539#Premium Pass Reward Step3# +2200540#Premium Pass Reward Step4# +2200541#Premium Pass Reward Step5# +2200542#Premium Pass Reward Step6# +2200543#Premium Pass Reward Step7# +2200544#Premium Pass Reward Step8# +2200545#Premium Pass Reward Step9# +2200546#Premium Pass Reward Step10# +2200547#Premium Pass Reward Step11# +2200548#Premium Pass Reward Step12# +2200549#Premium Pass Reward Step13# +2200550#Premium Pass Reward Step14# +2200551#Premium Pass Reward Step15# +2200552#Premium Pass Reward Step16# +2200553#Premium Pass Reward Step17# +2200554#Premium Pass Reward Step18# +2200555#Premium Pass Reward Step19# +2200556#Premium Pass Reward Step20# +2200557#Premium Pass Reward Step21# +2200558#Premium Pass Reward Step22# +2200559#Premium Pass Reward Step23# +2200560#Premium Pass Reward Step24# +2200561#Premium Pass Reward Step25# +2200562#Premium Pass Reward Step26# +2200563#Premium Pass Reward Step27# +2200564#Premium Pass Reward Step28# +2200565#Premium Pass Reward Step29# +2200566#Premium Pass Reward Step30# +2200567#Premium Pass Reward Step31# +2200568#Premium Pass Reward Step32# +2200569#Premium Pass Reward Step33# +2200570#Premium Pass Reward Step34# +2200571#Premium Pass Reward Step35# +2200572#Premium Pass Reward Step36# +2200573#Premium Pass Reward Step37# +2200574#Premium Pass Reward Step38# +2200575#Premium Pass Reward Step39# +2200576#Premium Pass Reward Step40# +2200577#Premium Pass Reward Step41# +2200578#Premium Pass Reward Step42# +2200579#Premium Pass Reward Step43# +2200580#Premium Pass Reward Step44# +2200581#Premium Pass Reward Step45# +2200582#Premium Pass Reward Step46# +2200583#Premium Pass Reward Step47# +2200584#Premium Pass Reward Step48# +2200585#Premium Pass Reward Step49# +2200586#Premium Pass Reward Step50# +2200587#[Event] Mad Bunny Scroll# +2200588#[Event] Mad Bunny Scroll Box (100)# +2200589#[Event] Mad Bunny Scroll Box (50)# +2200590#[Event] Mad Bunny Scroll Box (30)# +2200591#Emerald Crown Scroll# +2200592#High Weapon Box# +2200593#[Event] HE Bubble Gum Box# +2200594#Power Booster Pack# +2200595#Moonlight Scroll# +2200596#Step Spending Box Reward 15000Moonstone# +2200597#Step Spending Box Reward 30000Moonstone# +2200598#Step Spending Box Reward 15000Moonstone# +2200599#Step Spending Box Reward 30000Moonstone# +2200600#Winter Ancient Scroll# +2200601#Adamantine Blessing Lucky Box# +2200602#X'Mas Scroll# +2200603#Mini NOVA Space Coupon 30 Days# +2200604#Mini NOVA Space Coupon 7 Days# +2200605#Mini NOVA Space Coupon 2 Hr# +2200606#[Event] Mini NOVA Space Coupon 30 Days# +2200607#[Event] Mini NOVA Space Coupon 7 Days# +2200608#[Event] Mini NOVA Space Coupon 2 Hr# +2200609#Thank You Box# +2200610#New Year Special Gift# +2200611#Happy New Year Box# +2200612#Sacred Sanctum Scroll# +2200613#Guyak Box# +2200614#[Event] Transformation (Rudolph) (7Days)# +2200615#[Event] Transformation Scroll(Rudolph)# +2200616#New Player Package# +2200617#Welcome Back Package# +2200618#Adventurer Package# +2200619#[Event] New Player Lv10 Box# +2200620#[Event] New Player Lv20 Box# +2200621#[Event] New Player Lv30 Box# +2200622#[Event] New Player Lv40 Box# +2200623#[Event] New Player Lv50 Box# +2200624#[Event] New Player Lv60 Box# +2200625#[Event] New Player Lv70 Box# +2200626#[Event] New Player Lv80 Box# +2200627#[Event] New Player Lv90 Box# +2200628#[Event] New Player Lv100 Box# +2200629#Welcome New Player (All Status +1)# +2200630#Surprise New Player (All Status +2)# +2200631#[Event] Temporal Transcendent Shadow Box# +2200632#ROL Mountain Box# +2200633#First Refil 10ION Box# +2200634#First Refil 30ION Box# +2200635#Snake Sachet Box# +2200636#Special Nova space Box# +2200637#Top Up Milestone 30 ION Box# +2200638#Top Up Milestone 50 ION Box# +2200639#Top Up Milestone 100 ION Box# +2200640#Top Up Milestone 300 ION Box# +2200641#Top Up Milestone 400 ION Box# +2200642#Top Up Milestone 450 ION Box# +2200643#Special January 2025 Scroll# +2200644#[January] First Refill Box 10ION# +2200645#[January] Top Up Milestone 10 ION Box# +2200646#[January] Top Up Milestone 30 ION Box# +2200647#[January] Top Up Milestone 50 ION Box# +2200648#[January] Top Up Milestone 100 ION Box# +2200649#[January] Top Up Milestone 300 ION Box# +2200650#Special January Scroll# +2200651#[January] First Refill Box 30ION# +2200652#Holy Defender Scroll# +2200653#[Event] New Year's Box# +2200654#[Event] Super Miracle Medicine# +2200655#Wolf King Scroll# +2200656#ROL Starter Box# +2200657#[Event] Kafra Buff Box (7 Days)# +2200658#Starter Automatic Box# +2200659#[Event] Golden Automatic Player Box 30 Days# +2200660#Subscription Package# +2200661#[Golden] Automatic Player# +2200662#Crimson Stalker Scroll# +2200663#Step Spending Box Reward 5000Moonstone# +2200664#Step Spending Box Reward 15000Moonstone# +2200665#Step Spending Box Reward 30000Moonstone# +2200666#Resist Magic Box# +2200667#Millionaire Box# +2200668#Flame Blast Scroll# +2200669#Scarlet Killer Scroll# +2200670#[SSR] Landstone Random Box (VI)# +2200671#[SR] Landstone Random Box (VI)# +2200672#[R] Landstone Random Box (VI)# +2200673#Episode VI Landstone Box# +2200674#Lunar Newyear Box# +2200675#Firecrackers# +2200676#Sacred Fist Scroll# +2200677#Sealed Card# +2200678#Bleeding Crystal Package# +2200679#[Event] Lover in Mouth Box# +2200680#[FEB] First Refill Box 10ION# +2200681#[FEB] First Refill Box 30ION# +2200682#[Febuary] Top Up Milestone 10 ION Box# +2200683#[Febuary] Top Up Milestone 30 ION Box# +2200684#[Febuary] Top Up Milestone 50 ION Box# +2200685#[Febuary] Top Up Milestone 100 ION Box# +2200686#[Febuary] Top Up Milestone 300 ION Box# +2200688#Land Crystal Bag# +2200689#STR Landstone Box II# +2200690#AGI Landstone Box II# +2200691#VIT Landstone Box II# +2200692#INT Landstone Box II# +2200693#DEX Landstone Box II# +2200694#LUK Landstone Box II# +2200695#ATK Landstone Box II# +2200696#SPEED Landstone Box II# +2200697#STR Landstone Box I# +2200698#AGI Landstone Box I# +2200699#VIT Landstone Box I# +2200700#INT Landstone Box I# +2200701#DEX Landstone Box I# +2200702#LUK Landstone Box I# +2200703#ATK Landstone Box I# +2200704#SPEED Landstone Box I# +2200714#Nameless Quest Pass# +2200715#Bio Laboratory Quest Pass# +2200718#Step Spending Box Reward 5000Moonstone# +2200719#Step Spending Box Reward 15000Moonstone# +2200720#Step Spending Box Reward 30000Moonstone# +2200721#Full Moon Scroll# +2200723#Bronze Package# +2200724#Silver Package# +2200725#Gold Package# +2200726#Presale Premium Random Box# +2200727#Premium Exp&Drop Box I# +2200728#Premium Exp&Drop Box II# +2200729#Elunium-Oridecon Random Box# +2200730#Enrich Elunium-Oridecon Random Box# +2200731#Costume Golden Angel Random box# +2200732#Costume Rainbow Angel Random box# +2200733#Costume Angel Random box# +2200734#Pet Scroll# +2200735#Moonstone Point# +2200736#Moonstone Point# +2200737#Moonstone Point# +2200738#VIP Stamina Elixir Box (10)# +2200740#[Event] Automatic Player Box 12 Hr# +2200851#[Event] Silvervine Box(40)# +2200854#Title - ROLG CBT# +2200888#Old Ore Bag# +2200902#Aetherial Scroll# +2200913#[Event] Silver Package# +2200914#[Event] Gold Package# +2200915#[Event] Costume Golden Angel Random box# +2200916#[Event] Costume Rainbow Angel Random box# +2200917#First Refill Box 10ION# +2200918#First Refill Box 30ION# +2200919#Angelring Bubble Box (30Days)# +2200920#Prototype Hybrid Scroll# +2200922#Top Up Milestone 30 ION Box# +2200923#Top Up Milestone 50 ION Box# +2200924#Top Up Milestone 100 ION Box# +2200925#Top Up Milestone 300 ION Box# +2200926#Top Up Milestone 350 ION Box# +2200927#Special March 2025 Scroll# +2200928#[Event] Mental Potion(10)# +2200929#[Event] Small Mana Potion Box(10)# +2200930#Costume Enchant Stone Box I# +2200931#Elunium Box(5)# +2200932#Elunium Box(10)# +2200933#Elunium Box(20)# +2200934#Elunium Box(30)# +2200935#Oridecon Box(5)# +2200936#Oridecon Box(10)# +2200937#Oridecon Box(20)# +2200938#Oridecon Box(30)# +2200965#Title - Bug Hunter# +2200966#Golden Automatic Player Box 30 Days# +2200967#[Event] Pet Scroll# +2200969#Community Random Box# +2200971#Jormungandr Scroll# +2200972#[Ex] Beginner Landstone Box# +2200979#Landstone I Random Boxm V.1# +2200980#Step Spending Box Reward 15000Moonstone# +2200981#Step Spending Box Reward 30000Moonstone# +2200985#Increase Agility Scroll Box(100)# +2200986#Blessing Scroll Box(100)# +2200987#Landstone II Random Box V.1# +2200993#Re Roll Epic# +2200996#Merchant Voucher Lv1# +2200997#Merchant Voucher Lv2# +2200998#MATK Landstone Box I# +2200999#MDEF Landstone Box I# +2201000#MATK Landstone Box II# +2201001#MDEF Landstone Box II# +2201006#[Ex] Jormungandr Landstone Box# +2201007#Spell Master Scroll# +2201008#Costume Enchant Stone Box II# +2201009#Fire Potion# +2201155#BP Point# +2201156#First Refill Box 10ION# +2201157#First Refill Box 30ION# +2201158#Chewing Gum Box# +2201159#Top Up Milestone 30 ION Box# +2201160#Top Up Milestone 50 ION Box# +2201161#Top Up Milestone 100 ION Box# +2201162#Top Up Milestone 300 ION Box# +2201163#Top Up Milestone 350 ION Box# +2201164#Special May 2025 Scroll# +2201166#[Limited] HE Battle Manual# +2201167#[Limited] Battle Manual# +2201168#[Limited] HE Bubble Gum# +2201169#[Limited] Bubble Gum# +2201170#[Limited] Level 10 Increase Agility Scroll# +2201171#[Limited] Level 10 Blessing Scroll# +2201172#[Limited] Red Booster# +2201173#[Limited] Repair Weapon Scroll# +2201181#Adamantine Blessing Box# +2201182#Adamantine Blessing Box# +2201183#Adamantine Blessing Box# +2201184#Adamantine Blessing Box# +2201185#Adamantine Blessing Box# +2201186#[Event] Mini NOVA Space Coupon (1 Day)# +2201187#Crystal of BP [SS1]# +2201188#Special Subscription Package# +2201194#Critical Hit Landstone Box II# +2201195#DEF Landstone Box II# +2201196#[Ex] Spell Master Landstone Box# +2201197#Critical Hit Landstone Box I# +2201198#DEF Landstone Box I# +2201199#Voting Scroll# +2201203#Black Cat Scroll# +2201207#Unfrozen Landstone Box# +2201208#Mini Full Swing K# +2201209#Mini Mana +# +2201210#WoE Scroll I# +2201211#Step Spending Box Reward 15000Moonstone# +2201212#Step Spending Box Reward 30000Moonstone# +2201213#Top 1 spender Box# +2201214#Top 2-3 spender Box# +2201215#Top 4-10 spender Box# +2201216#Title - Transcendent Path# +2201217#Title - The Elevation# +2201218#Title - Summitrax Rise# +2201230#Magma Candy# +2201231#Sharpshooter Scroll# +2201232#FLEE Landstone Box II# +2201233#HIT Landstone Box II# +2201234#[Ex] Black Cat Landstone Box# +2201235#FLEE Landstone Box I# +2201236#HIT Landstone Box I# +2201237#Costume Enchant Stone Box III# +2201238#BP Point [SS2]# +2201239#Crystal of BP [SS2]# +2201246#First Refill Box 10ION# +2201247#Top Up Milestone 30 ION Box# +2201248#Top Up Milestone 50 ION Box# +2201249#Top Up Milestone 100 ION Box# +2201250#Top Up Milestone 300 ION Box# +2201251#Top Up Milestone 350 ION Box# +2201252#Special June 2025 Scroll# +2201253#Meta Powerful Box# +2201254#Legendary Fashion Costume box# +2201255#Epic Fashion Costume box# +2201289#Magic Skull Scroll# +2201290#VCT Landstone Box II# +2201291#Physical Landstone Box II# +2201292#[Ex] Sharpshooter Landstone Box# +2201293#VCT Landstone Box I# +2201294#Physical Landstone Box I# +2201320#WoE Scroll II# +2201321#Resilient Landstone Box# +2201322#Max Bag(1)# +2201323#Max Bag(3)# +2201324#Max Bag(5)# +2201325#Max Bag(10)# +2201326#Max Bag(100)# +2201327#Step Spending Box Reward 15000Moonstone# +2201328#Step Spending Box Reward 30000Moonstone# +2201338#Pet Package# +2201339#Costume Enchant Stone Box IV# +2201351#Sunset Scroll# +2201352#Dual AGI-LUK Landstone Box# +2201353#Magical Landstone Box II# +2201354#[Ex] Magic Skull Landstone Box# +2201355#Magical Landstone Box I# +2201356#Crystal of BP [SS3]# +2201357#BP Point [SS3]# +2201364#Aqua Veil Scroll# +2201365#Otherworld Random Box I# +2201366#Costume Pony Tail Box# +2201367#Accessory Random Box# +2201368#Armor Random Box# +2201369#Footgear Random Box# +2201370#Garment Random Box# +2201371#Max Bag(25)# +2201372#Max Bag(50)# +2201377#Top Up Milestone 30 ION Box# +2201378#Top Up Milestone 50 ION Box# +2201379#Top Up Milestone 100 ION Box# +2201380#Top Up Milestone 300 ION Box# +2201381#Top Up Milestone 350 ION Box# +2201382#Special July 2025 Scroll# +2201400#Melee Landstone Box I# +2201401#Melee Landstone Box II# +2201402#Dual STR-VIT Landstone Box# +2201403#Bandit Scroll# +2201404#[Ex] Sunset Landstone Box# +2201405#Sea Salt Drink# +2201407#Headgear Challenge Box# +2201408#Weapons Challenge Box# +2201409#Title - The Challenge# +2201410#Adamantine Blessing Box(5000)# +2201414#First Refill Box 30ION# +2201415#Costume Mileage Box# +2201420#Moonstone Token# +2201429#Forest Village Scroll# +2201538#[Event] Old Card Album# +2201541#WoE Scroll III# +2201542#True Vision Landstone Box# +2201543#[E] Pet's Spirit Fragment Box# +2201547#[GENESIS] Weapons Box# +2201560#[Event] STR Reduction Potion# +2201561#[Event] AGI Reduction Potion# +2201562#[Event] VIT Reduction Potion# +2201563#[Event] INT Reduction Potion# +2201564#[Event] DEX Reduction Potion# +2201565#[Event] LUK Reduction Potion# +2201566#[Event] Small Mana Potion Box(10)# +2201567#[Event] Condensed Speed Potion Box# +2201568#[Event] Rate Up - Rare Pet Scroll# +2201569#[Event] Condensed Speed Potion# +2201570#Supreme Magus Scroll# +2201571#Dual INT-DEX Landstone Box# +2201572#Sage Landstone Box II# +2201573#[Ex] Bandit Landstone Box# +2201574#Sage Landstone Box I# +2201575#Demon Ring Box# +2201576#Mini Tyr's Blessing# +2201579#Step Spending Box Reward 15000Moonstone# +2201580#Step Spending Box Reward 30000Moonstone# +2201581#Step Spending Box Reward 40000Moonstone# +2201582#Costume Enchant Stone Box V# +2201583#Costume Enchant Stone Synthesis Box# +2201584#Crystal of BP [SS4]# +2201585#BP Point [SS4]# +2201587#PGDX Scroll# +2201589#Flame Blast Scroll# +2201593#Title - PGDX 2025 No.1# +2201594#Title - PGDX 2025 Top3# +2201595#Title - PGDX 2025# +2201596#All Status Landstone Box# +2201597#Breach Landstone Box# +2201629#Lost Card Album# +2201630#MVP Material Box# +2201631#Yggdrasil EXP Scroll# +2201632#Yggdrasil DROP Scroll# +2201633#Yggdrasil DEF Scroll# +2201634#Yggdrasil MDEF Scroll# +2201635#Yggdrasil Power Scroll# +2201636#Yggdrasil Speed Scroll# +2201637#First Refill Box 10ION# +2201638#First Refill Box 30ION# +2201639#[Event] Blooding Injector Box# +2201644#Venom Scroll# +2201647#Assassin Landstone Box II# +2201648#[Ex] Supreme Magus Landstone Box# +2201649#Assassin Landstone Box I# +2201650#RON Bag(1)# +2201651#RON Bag(3)# +2201652#RON Bag(5)# +2201653#RON Bag(10)# +2201654#RON Bag(20)# +2201655#RON Bag(30)# +2201656#RON Bag(50)# +2201657#Top Up Milestone 30 ION Box# +2201658#Top Up Milestone 50 ION Box# +2201659#Top Up Milestone 100 ION Box# +2201660#Top Up Milestone 300 ION Box# +2201661#Top Up Milestone 350 ION Box# +2201662#Special Aug 2025 Scroll# +2201666#Shadow Random Option Box (Offensive)# +2201667#Shadow Random Option Box (Defensive)# +2201668#[Rental] Pickaxe (1 Hr)# +2201669#[Rental] Pickaxe (1 Day)# +2201670#Mystical Ore Mirror Box (10)# +2201671#WoE Scroll IV# +2201672#Silence Immunity Landstone Box# +2201675#Costume Enchant Stone Box VI# +2201680#World ID Box# +2201682#[GB] White Potion# +2201683#[GB] Blue Potion# +2201684#[GB] Battle Point# +2201685#Crystal of BP [SS5]# +2201686#BP Point [SS5]# +2201694#Step Spending Box Reward 15000Moonstone# +2201695#Step Spending Box Reward 30000Moonstone# +2201696#Step Spending Box Reward 40000Moonstone# +2201697#Amistr Landstone Random Box# +2201698#Fuchsia Scroll# +2201699#Monk Landstone Box II# +2201700#Long Range Landstone Box II# +2201701#[Ex] Venom Landstone Box# +2201702#Long Range Landstone Box I# +2201703#Monk Landstone Box I# +2201712#Top Up Milestone 30 ION Box# +2201713#Top Up Milestone 50 ION Box# +2201714#Top Up Milestone 100 ION Box# +2201715#Top Up Milestone 300 ION Box# +2201716#Top Up Milestone 350 ION Box# +2201717#Special SEP 2025 Scroll# +2201718#Title - Mythseeker# +2201719#Title - Trailblazer# +2201720#Title - Windrunner# +2201721#Top 1 spender Box# +2201722#Top 2-3 spender Box# +2201723#Top 4-10 spender Box# +2201735#Ancient Knight Scroll# +2201736#Knight Landstone Box II# +2201737#Knight Landstone Box I# +2201738#Fatal Landstone Box II# +2201739#Fatal Landstone Box I# +2201740#[Ex] Fuchsia Landstone Box# +2201753#Elite Siege Supply Box# +2201756#New Player Union Buff Scroll# +2201758#Genesis Battle Certificate 1# +2201759#Genesis Battle Certificate 2# +2201760#Genesis Battle Certificate 3# +2201761#Genesis Battle Certificate 4# +2201764#WoE Scroll V# +2201765#Bloodthirst Landstone Box# +2201766#Curse Ward Landstone Box# +2201768#Crystal of BP [SS6]# +2201769#BP Point [SS6]# +2201778#Life Potion Box# +2201782#Costume Enchant Stone Box VII# +2201783#Full Moon Scroll# +2201784#Blacksmith Landstone Box II# +2201785#HIT Physical Landstone Box II# +2201786#[Ex] Ancient Knight Landstone Box# +2201787#Blacksmith Landstone Box I# +2201788#HIT Physical Landstone Box I# +2201797#Top Up Milestone 30 ION Box# +2201798#Top Up Milestone 50 ION Box# +2201799#Top Up Milestone 100 ION Box# +2201800#Top Up Milestone 300 ION Box# +2201801#Top Up Milestone 350 ION Box# +2201802#Special October 2025 Scroll# +2201810#Ayothaya Quest Pass# +2201803#Ballad Scroll# +2201804#Bard Landstone Box II# +2201805#Powerful Landstone Box II# +2201806#[Ex] Full Moon Landstone Box# +2201807#Bard Landstone Box I# +2201808#Powerful Landstone Box I# +2201814#ROLG Major 2025 Scroll# +2201926#Elunium Box(12)# +2201927#Oridecon Box(12)# +2201933#WoE Scroll VI# +2201949#Unpetrified Landstone Box# +2201950#Special Album Card I# +2201952#[GB] White Potion# +2201953#[GB] Blue Potion# +2201958#Crystal of BP [SS7]# +2201959#BP Point [SS7]# +2201960#Unpetrified Landstone Box# +2201961#Holy Light Scroll# +2201966#Priest Landstone Box II# +2201967#Mystical Landstone Box II# +2201968#Priest Landstone Box I# +2201969#Mystical Landstone Box I# +2201970#[Ex] Ballad Landstone Box# +2201971#Costume Enchant Stone Box VIII# +2201973#Random Landstone Box II# +2201975#[Event] Land Crystal Bag# +2201983#Random Meta Box# +2201984#Anti-Wizard Scroll# +2201985#Anti-Sage Scroll# +2201986#Anti-Crusader Scroll# +2201987#Anti-Knight Scroll# +2201988#Anti-Hunter Scroll# +2201989#Anti-Bard & Dancer Scroll# +2201990#Anti-Assassin Scroll# +2201991#Anti-Rogue Scroll# +2201992#Anti-Priest Scroll# +2201993#Anti-Monk Scroll# +2201994#Anti-Blacksmith Scroll# +2201995#Anti-Alchemist Scroll# +2201997#Mini Subscription Package# +2201998#Gem Landstone Box# +2201999#Step Spending Box Reward 15000Moonstone# +2202000#Step Spending Box Reward 30000Moonstone# +2202001#Step Spending Box Reward 40000Moonstone# +2202002#Acid Scroll# +2202003#[Event] Acid Scroll# +2202004#Alchemist Landstone Box II# +2202005#Strong Landstone Box II# +2202006#Alchemist Landstone Box I# +2202007#Strong Landstone Box I# +2202008#[Ex] Holy Light Landstone Box# +2202009#ROLG Golden Box# +2202010#ROLG Silver Box# +2202011#ROLG Bronze Box# +2202012#Title - ROLG Elite Scroll# +2202013#Title - ROLG Trooper Scroll# +2202014#ROLG Elite Box# +2202015#ROLG Trooper Box# +2202016#Title - ROLG MAJOR 2025 No.1# +2202017#Title - ROLG MAJOR 2025 TOP3# +2202018#Title - ROLG MAJOR 2025# +2202019#Final Boss Landstone Box# +2202040#Genesis Journey (10)# +2202041#Genesis Journey (30)# +2202042#Genesis Journey (50)# +2202043#Genesis Journey (70)# +2202044#Genesis Journey (80)# +2202045#Genesis Journey (90)# +2202046#Genesis Journey (100)# +2202047#Title - Genesis Journey# +2202048#[Event] Genesis Journey Equipment I# +2202056#Special Subscription Package I# +2202057#First Refill Box 50ION# +2202058#First Refill Genesis Box [Nov]# +2202059#Top 1 spender Box# +2202060#Top 2-3 spender Box# +2202061#Top 4-10 spender Box# +2202062#Title - The High Priestess# +2202063#Title - The Magician# +2202064#Title - The Fool# +2202065#Top Up Milestone 30 ION Box# +2202066#Top Up Milestone 50 ION Box# +2202067#Top Up Milestone 100 ION Box# +2202068#Top Up Milestone 300 ION Box# +2202069#Top Up Milestone 350 ION Box# +2202070#Special November 2025 Scroll# +2202071#WoE Scroll VII# +2202072#Steadfast Landstone Box# +2202076#ROLG Comeback Pack# +2202077#ROLG Amateur Pack# +2202078#[Event] VIP Coupon 7 Days# +2202079#First Refill Box 10ION# +2202080#First Refill Box 30ION# +2202081#HE Bubble Gum Box# +2202084#Crystal of BP [SS8]# +2202085#BP Point [SS8]# +2202086#Costume Enchant Stone Box IX# +2202088#Universal Landstone Box II# +2202089#Potentia Landstone Box II# +2202090#[Ex] Acid Landstone Box# +2202091#Universal Landstone Box I# +2202092#Potentia Landstone Box I# +2202093#Newcomer Scroll# +2202094#[Event] Newcomer Scroll# +2202096#Journey Special Pack# +2202098#Title - Path Extreme I# +2202099#Title - Path Extreme II# +2202325#Traveller Package# +2202326#Explorer Package# +2202327#Pioneer Package# +2202328#Title - The Traveller# +2202329#Title - The Explorer# +2202330#Title - The Pioneer# +2202335#Primary Landstone Box Expansion I# +2202336#Pet Cage# +2202337#Rare Emblem Bag (Random)# +2202338#Rare-Epic Emblem Bag (Random)# +2202356#Contribution Box# +2202357#Advance Platinum Chest# +2300000#Dreadlord Helm# +2300001#Dreadlord Mail# +2300002#Dreadlord Cloak# +2300003#Dreadlord Treads# +2300004#Nightmare Ring# +2300005#Fierce Ring# +2300006#Unidentified Hat# +2300007#Unidentified Ribbon# +2300008#Clothing# +2300009#Clothing# +2300010#Clothing# +2300011#Khalitzburg Helm# +2300012#Deviruchi Balloon# +2300013#Divine Dragonic Helm# +2300014#Divine Dragonic Mail# +2300015#Divine Dragonic Cloak# +2300016#Divine Dragonic Treads# +2300017#Dragon Roar Ring# +2300018#Heavenly Ring# +2300019#Unidentified Ribbon# +2300020#Unidentified Hat# +2300023#Unidentified Ribbon# +2300024#The Full Moon# +2300025#[Event] Romantic Flower (30 Days)# +2300026#Krathong Crown# +2300027#[Event] Gentle Marlin Balloon (30 Days)# +2300028#Bright Blue Eyeshadow# +2300029#Thai Dessert Box# +2300030#Fallen Angel Wings# +2300031#Frantic Looking# +2300032#Unidentified Accessory# +2300033#Unidentified Accessory# +2300034#Unidentified Accessory# +2300035#Unidentified Accessory# +2300036#Unidentified Accessory# +2300037#Unidentified Accessory# +2300038#Unidentified Accessory# +2300039#[Event] Marin Earring (30 Days)# +2300040#Divine Dragonic Helm II# +2300041#Divine Dragonic Mail II# +2300042#Divine Dragonic Cloak II# +2300043#Divine Dragonic Treads II# +2300044#[Event] Marin Earring (30 Days)# +2300045#Orange Rabbit# +2300046#[BP] White Cape# +2300047#Nymph Earring# +2300048#Green Four Clover# +2300049#Moonlight Bell# +2300050#Baby Angeling# +2300051#Cape of Heaven (Magic)# +2300052#Cape of Heaven (Physical)# +2300053#Snowman Hat# +2300054#[WOE] Sword# +2300055#[WOE] 2H-Sword# +2300056#[WOE] Spear# +2300057#[WOE] 2H-Spear# +2300058#[WOE] Axe# +2300059#[WOE] 2H-Axe# +2300060#[WOE] Dagger# +2300061#[WOE] Katar# +2300062#[WOE] Bow# +2300063#[WOE] Whip# +2300064#[WOE] Guitar# +2300065#[WOE] Book# +2300066#[WOE] Mace# +2300067#[WOE] Staff# +2300068#[WOE] 2H-Staff# +2300069#[WOE] Knuckle# +2300070#[WOE] Huuma# +2300071#[WOE] Pistol# +2300072#[WOE] Rifle# +2300073#[WOE] Gatling Gun# +2300074#[WOE] Shotgun# +2300075#[Event] Temporal Boots# +2300076#Unidentified Shoes# +2300077#Unidentified Shoes# +2300078#Unidentified Shoes# +2300079#Unidentified Shoes# +2300080#Unidentified Shoes# +2300081#Unidentified Shoes# +2300082#Unidentified Shoes# +2300083#Unidentified Shoes# +2300084#Unidentified Shoes# +2300085#Unidentified Shoes# +2300086#Unidentified Shoes# +2300087#Unidentified Shoes# +2300088#Sacred Geometry# +2300089#Mini Queen Anz Revenge# +2300090#Exorcismus Ribbon# +2300091#Unidentified Shadow Weapon# +2300092#Unidentified Shadow Armor# +2300093#Unidentified Shadow Shoes# +2300094#Unidentified Shadow Shield# +2300095#Unidentified Shadow Weapon# +2300096#Unidentified Shadow Earring# +2300097#Unidentified Shadow Pendant# +2300098#[Event] Snake Sachet (30 Day)# +2300099#[Event] Rookie Shadow Shield# +2300100#Unidentified Shadow Shoes# +2300101#Unidentified Shadow Armor# +2300102#Palace Guard Ring# +2300103#Dark Shield# +2300104#Landverse Shoes# +2300105#Landverse Hat# +2300106#Landverse Muffler# +2300107#Landverse Suit# +2300108#Night Wolf Shawl# +2300109#Unidentified Hat# +2300110#Unidentified Hat# +2300111#Unidentified Ribbon# +2300113#Unidentified Hat# +2300114#Unidentified Hat# +2300115#Unidentified Accessory# +2300116#Red Suit# +2300117#[Event] Lover in Mouth (30Days)# +2300121#Unidentified Hat# +2300124#White Feather Beret# +2300134#Unidentified Accessory# +2300135#Unidentified Accessory# +2300139#Unidentified Accessory# +2300140#[GENESIS] One-Handed Sword# +2300141#[GENESIS] Two-Handed Sword# +2300142#[GENESIS] Lance# +2300144#[GENESIS] Katar# +2300145#[GENESIS] Staff# +2300146#[GENESIS] Two-Handed Axe# +2300147#[GENESIS] Book# +2300148#[GENESIS] Bow# +2300149#Golden Angeling Bubble# +2300153#[Event] Bravery Bag# +2300154#[Event] Teleport Amistr Bag# +2300156#Unidentified Accessory# +2300157#Unidentified Accessory# +2300166#Feather Of Uriel# +2300167#Feather Of Raphael# +2300168#Feather Of Gabriel# +2300170#Violet Demon Ring# +2300171#Gold Demon Ring# +2300178#[Event] Chewing Gum# +2300179#Ribbon# +2300184#Unidentified Hat# +2300185#Unidentified Accessory# +2300187#Red Adventure Cap# +2300188#Sapphire Gemstone# +2300195#Sharpshooter's Hat# +2300196#Black Pajamas Hat# +2300197#Sharpshooter's Glove# +2300203#Unidentified Hat# +2300217#Avian Trainer Belt# +2300220#Unidentified Garment# +2300223#Old Sakkat# +2300224#Unidentified Accessory# +2300227#[GENESIS] Musical# +2300228#[GENESIS] One-Handed Axe# +2300229#[GENESIS] Knuckle# +2300230#[GENESIS] Rope# +2300239#Unidentified Hat# +2300241#Ancient Wizard Hat# +2300242#Apprentice Mage Ring# +2300282#Violet Valkyrie Helm# +2300283#Mini Undershirt# +2300286#Unidentified Ribbon# +2300288#Poison Spore Hat# +2300289#Unidentified Accessory# +2300298#Unidentified Hat# +2300299#Red Feather Beret# +2300300#Unidentified Ribbon# +2300301#Sakura Bandana# +2300302#Assassin Amulet# +2300311#Ancient Bone Helm# +2300312#Unidentified Accessory# +2300313#Beer Cap# +2300330#Champion Helm# +2300331#Green Feather Beret# +2201779#Step Spending Box Reward 15000Moonstone# +2201780#Step Spending Box Reward 30000Moonstone# +2201781#Step Spending Box Reward 40000Moonstone# +2300336#Cast Iron Mask# +2300337#Accessary# +2300353#Pecopeco Hairband - GS# +2300354#Wickebine's Black Cat Ears - GS# +2300355#Ballad Hat# +2300356#Accessary# +2300357#Release Shadow Shoes# +2300358#Release Shadow Shield# +2300362#Unidentified Hat# +2300372#Brown Feather Beret# +2300373#Unidentified Glasses# +2300374#Unleash Claymore# +2300375#Unleash Saber# +2300376#Unleash Trident# +2300377#Unleash Pike# +2300378#Unleash Two-Handed Axe# +2300379#Unleash Orcish Axe# +2300380#Unleash Soul Staff# +2300381#Unleash Evil Bone Wand# +2300382#Unleash Stunner# +2300383#Unleash Bible# +2300384#Unleash Finger# +2300385#Unleash Gakkung# +2300386#Unleash Guitar# +2300387#Unleash Rante Whip# +2300388#Unleash Katar# +2300389#Unleash Damascus# +2300390#Magical Feather# +2300404#Hood# +2300405#Hood# +2300406#Hood# +2300407#Snake Head Hat - GS# +2300420#Acid Cactus Hat# +2300421#Eye of Loki# +2300422#Fallen Cloth# +2300423#Ifrit's Burning Helm# +2300440#Book of Revenge# +2300441#Unidentified Hat# +2300520#Snake Head# +2300521#Pecopeco Hairband# +2300522#Whikebain Ears# +2300523#Poring Beret# +2300524#Ancient Boned Helm# +2300525#Giant Helm# +2300526#Poring Sunglsses# +2300527#Fish In Mouth# +2300528#Angel Spirit# +2300529#Happy Parrot# +2300530#White Feather Beret# +2300531#Spiked Scarf# +2300532#Magical Feather Hairband# +2300533#Galapago Cap# +2300534#Iron Pickaxe# +2300535#Steel Pickaxe# +2300536#Crystal Pickaxe# +2300537#Aetherium Pickaxe# +2400000#[Event] Annivesary Coin# +2400001#[Event] Secret Bag# +2400002#[Event] Annivesary Ticket# +2300424#Sloth Hat - GS# +2300430#[Event] Poring Balloon In Mount (30 Days)# +2300431#Copper Fur Hat# +2300432#Gold Feather Beret# +2400003#[Event] Harvest Cookie# +2400004#[Event] Baked Sweet Potato# +2400005#[Event] Songpyun# +2400006#[Event] Potato# +2400007#[Event] Flour# +2400008#[Event] High-quality Branch# +2400009#[Event] Harvest Dress Box# +2400010#ASPD +1%# +2400011#ASPD +2%# +2400012#ASPD +3%# +2400013#ATK +3# +2400014#ATK +5# +2400015#ATK +7# +2400016#ATK +10# +2400017#Voter Coin# +2400021#B Coin# +2400022#Ancient Stone# +2400023#Deviling potion# +2400024#Nose Tea Stone A (Upper)# +2400025#Nose Tea Stone M (Upper)# +2400026#Nose Tea Enchanted A# +2400027#Nose Tea Enchanted M# +2400028#Virtue Spirit# +2400029#Divine Scale# +2400030#Lesser Rune of Strength Lv 1# +2400031#Lesser Rune of Strength Lv 2# +2400032#Lesser Rune of Strength Lv 3# +2400033#Lesser Rune of Agility Lv 1# +2400034#Lesser Rune of Agility Lv 2# +2400035#Lesser Rune of Agility Lv 3# +2400036#Lesser Rune of Vitality Lv 1# +2400037#Lesser Rune of Vitality Lv 2# +2400038#Lesser Rune of Vitality Lv 3# +2400039#Lesser Rune of Intellect Lv 1# +2400040#Lesser Rune of Intellect Lv 2# +2400041#Lesser Rune of Intellect Lv 3# +2400042#Lesser Rune of Dexterity Lv 1# +2400043#Lesser Rune of Dexterity Lv 2# +2400044#Lesser Rune of Dexterity Lv 3# +2400045#Lesser Rune of Luck Lv 1# +2400046#Lesser Rune of Luck Lv 2# +2400047#Lesser Rune of Luck Lv 3# +2400048#Nose Tea Coin# +2400049#Character Surpassing Ticket# +2400050#Soul of the Brave Knight# +2400051#Soul of Arcane Wizard# +2400052#Soul of the Iron Forgemaster# +2400053#Soul of the Holy Priest# +2400054#Soul of the Shadow Assassin# +2400055#Soul of the Wild Hunter# +2400056#Soul of the Crusader's Oath# +2400057#Soul of the Sage's Wisdom# +2400058#Soul of the Alchemist's Elixir# +2400059#Soul of the Serene Monk# +2400060#Soul of the Phantom Rogue# +2400061#Soul of the Melodic Bard# +2400062#Soul of the Starlight Dancer# +2400063#Soul of the Skyfury Master# +2400064#Soul of the Ethereal Linker# +2400065#Soul of the Silent Ninja# +2400066#Soul of the Gunslinger's Wrath# +2400067#Soul of the Infinite Novice# +2400068#[Event] Kanomchan# +2400069#[Event] Top-quality Kanomchan# +2400070#Krathong# +2400072#Incense# +2400073#Scented candle# +2400074#Lotus flower# +2400075#Banana leaf# +2400076#Fish food bread# +2400077#Lex Aeterna Special Stone# +2400078#Lex Aeterna# +2400079#Bomb Poring Coin# +2400080#Researcher Booster Ticket# +2400081#Ocean Heartstone# +2400082#Minor 0.1 FCT Stone (Garment)# +2400083#MAX HP Stone I# +2400084#MAX HP Stone II# +2400085#MAX HP% Stone I# +2400086#MAX HP% Stone II# +2400087#MAX SP Stone I# +2400088#MAX SP Stone II# +2400089#VCT Stone I# +2400090#VCT Stone II# +2400091#Flee Stone I# +2400092#Flee Stone II# +2400093#Weight Stone I# +2400094#Weight Stone II# +2400095#Exp Stone I# +2400096#Exp Stone II# +2400097#Drop Stone I# +2400098#Drop Stone II# +2400099#Resistance Water&Earth Stone I# +2400100#Resistance Wind&Fire Stone I# +2400101#Mdef Stone I# +2400102#Mdef Stone II# +2400103#ASPD% Stone I# +2400104#ASPD% Stone II# +2400105#Long Range Stone I# +2400106#Long Range Stone II# +2400107#Resist Long Range Stone I# +2400108#Resist Long Range Stone II# +2400109#Barrier Stone I# +2400110#MAX HP Stone III# +2400111#MAX HP% Stone III# +2400112#MAX SP Stone III# +2400113#VCT Stone III# +2400114#Flee Stone III# +2400115#Weight Stone III# +2400116#Exp Stone III# +2400117#Drop Stone III# +2400118#Resistance Water&Earth Stone II# +2400119#Resistance Wind&Fire Stone II# +2400120#Mdef Stone III# +2400121#ASPD% Stone III# +2400122#Resist Long Range Stone III# +2400123#Barrier Stone II# +2400124#HIT Stone I# +2400125#HIT Stone II# +2400126#HIT Stone III# +2400127#Long Range Stone III# +2400128#MAX HP I# +2400129#MAX HP II# +2400130#MAX HP% I# +2400131#MAX HP% II# +2400132#MAX SP I# +2400133#MAX SP II# +2400134#VCT I# +2400135#VCT II# +2400136#Flee I# +2400137#Flee II# +2400138#Minor 0.1 FCT# +2400139#Weight I# +2400140#Weight II# +2400141#Exp I# +2400142#Exp II# +2400143#Drop I# +2400144#Drop II# +2400145#Resistance Water&Earth I# +2400146#Resistance Wind&Fire I# +2400147#Mdef I# +2400148#Mdef II# +2400149#ASPD% I# +2400150#ASPD% II# +2400151#Long Range I# +2400152#Long Range II# +2400153#Resist Long Range I# +2400154#Resist Long Range II# +2400155#Barrier I# +2400156#MAX HP III# +2400157#MAX HP% III# +2400158#MAX SP III# +2400159#VCT III# +2400160#Flee III# +2400161#Weight III# +2400162#Exp III# +2400163#Drop III# +2400164#Resistance Water&Earth II# +2400165#Resistance Wind&Fire II# +2400166#Mdef III# +2400167#ASPD% III# +2400168#Resist Long Range III# +2400169#Barrier II# +2400170#HIT I# +2400171#HIT II# +2400172#HIT III# +2400173#Long Range III# +2400174#Wyrm's Coin# +2400175#Wings Coin# +2400176#Wyrm's Scale Fragment# +2400177#Celestial Relic Fragment# +2400178#Ethereal Debris# +2400179#Wyrm's Hoard# +2400180#EP Fragment Stone Headgear# +2400181#EP Fragment Stone Mail# +2400182#EP Fragment Stone Cloak# +2400183#EP Fragment Stone Treads# +2400184#EP Fragment Stone Accessory# +2400185#45 ION Check Cashing# +2400186#15 ION Check Cashing# +2400187#Comodo Premium Coin# +2400188#Comodo Chip# +2400189#Impositio Manus Special Stone# +2400190#Impositio Manus Special# +2400191#Funding Ticket Of All Town# +2400192#Funding Ticket Of Prontera# +2400193#Funding Ticket Of Izlude# +2400194#Funding Ticket Of Geffen# +2400195#Funding Ticket Of Payon# +2400196#Funding Ticket Of Alberta# +2400197#Funding Ticket Of Aldebaran# +2400198#Funding Ticket Of Yuno# +2400199#Funding Ticket Of Lighthalzen# +2400200#Funding Ticket Of Einbroch# +2400201#Funding Ticket Of Einbech# +2400202#Funding Ticket Of Comodo# +2400203#Funding Ticket Of Umbala# +2400204#Funding Ticket Of Amatsu# +2400205#Funding Ticket Of Gonryun# +2400206#Funding Ticket Of Ayothaya# +2400207#Funding Ticket Of Louyang# +2400208#Funding Ticket Of Hugel# +2400209#Funding Ticket Of Rachel# +2400210#January Enchant Stone# +2400211#January Enchant Stone# +2400212#Crystalis Flower Stone# +2400213#Stamp Card# +2400214#Cookie Bag# +2400215#Captured Cookie# +2400216#BP Coin# +2400217#WOE Weapons Selection Ticket# +2400218#Sunlit Stone# +2400219#[Event] Temporal Crystal# +2400220#[Event] Coagulated Spell# +2400221#Lucky Number Coin# +2400222#[Event] Ticket Shadow Set# +2400223#Landverse Card H# +2400224#Landverse Card A# +2400225#Landverse Card P# +2400226#Landverse Card Y# +2400227#Landverse Card N# +2400228#Landverse Card E# +2400229#Landverse Card W# +2400230#Landverse Card R# +2400231#Landverse Card 2# +2400232#Landverse Card 0# +2400233#Landverse Card 5# +2400234#Mark Of Landverse Group# +2400235#Landverse Group Coin# +2400236#Gloria Enchant Stone# +2400237#Gloria Enchant Stone# +2400238#Fire Blast Stone# +2400239#Land Crystal# +2400240#Drake's Bone# +2400241#MVP Fragment# +2400242#[SSR] Fatal Rock Landstone Type R# +2400243#[SSR] Rush Rock Landstone Type R# +2400244#[SSR] Bloody Rock Landstone Type R# +2400245#[SR] DEF Lava Landstone Type R# +2400246#[SR] MDEF Lava Landstone Type R# +2400247#[SR] Flee Lava Landstone Type R# +2400248#[SR] All Stat Lava Landstone Type R# +2400249#[SR] ATK Lava Landstone Type R# +2400250#[SR] Cranial Lava Landstone Type R# +2400251#[SR] Fatal Rock Landstone Type R# +2400252#[SR] Rush Rock Landstone Type R# +2400253#[SR] Bloody Rock Landstone Type R# +2400254#[SR] Fire Resist Rock Landstone# +2400255#[SR] Earth Resist Rock Landstone# +2400256#[SR] Heavy Resist Rock Landstone# +2400257#[R] DEF Lava Landstone Type R# +2400258#[R] MDEF Lava Landstone Type R# +2400259#[R] Flee Lava Landstone Type R# +2400260#[R] All Stat Lava Landstone Type R# +2400261#[R] ATK Lava Landstone Type R# +2400262#[R] Cranial Lava Landstone Type R# +2400263#[R] Fatal Rock Landstone Type R# +2400264#[R] Rush Rock Landstone Type R# +2400265#[R] Bloody Rock Landstone Type R# +2400266#[R] Fire Resist Rock Landstone# +2400267#[R] Earth Resist Rock Landstone# +2400268#[R] Heavy Resist Rock Landstone# +2400269#[SSR] DEF Lava Landstone Type P# +2400270#[SSR] MDEF Lava Landstone Type P# +2400271#[SSR] Flee Lava Landstone Type P# +2400272#[SSR] All Stat Lava Landstone Type P# +2400273#[SSR] ATK Lava Landstone Type P# +2400274#[SSR] Cranial Lava Landstone Type P# +2400275#[SSR] Fatal Rock Landstone Type P# +2400276#[SSR] Rush Rock Landstone Type P# +2400277#[SSR] Bloody Rock Landstone Type P# +2400278#[SR] DEF Lava Landstone Type P# +2400279#[SR] MDEF Lava Landstone Type P# +2400280#[SR] Flee Lava Landstone Type P# +2400281#[SR] All Stat Lava Landstone Type P# +2400282#[SR] ATK Lava Landstone Type P# +2400283#[SR] Cranial Lava Landstone Type P# +2400284#[SR] Fatal Rock Landstone Type P# +2400285#[SR] Rush Rock Landstone Type P# +2400286#[SR] Bloody Rock Landstone Type P# +2400287#[SR] HP Leech Rock Landstone# +2400288#[SR] SP Leech Rock Landstone# +2400289#[R] DEF Lava Landstone Type P# +2400290#[R] MDEF Lava Landstone Type P# +2400291#[R] Flee Lava Landstone Type P# +2400292#[R] All Stat Lava Landstone Type P# +2400293#[R] ATK Lava Landstone Type P# +2400294#[R] Cranial Lava Landstone Type P# +2400295#[R] Fatal Rock Landstone Type P# +2400296#[R] Rush Rock Landstone Type P# +2400297#[R] Bloody Rock Landstone Type P# +2400298#[SSR] DEF Lava Landstone Type R# +2400299#[SSR] MDEF Lava Landstone Type R# +2400300#[SSR] Flee Lava Landstone Type R# +2400301#[SSR] All Stat Lava Landstone Type R# +2400302#[SSR] ATK Lava Landstone Type R# +2400303#[SSR] Cranial Lava Landstone Type R# +2400304#[SSR] DEF Lava Landstone Type M# +2400305#[SSR] MDEF Lava Landstone Type M# +2400306#[SSR] Flee Lava Landstone Type M# +2400307#[SSR] All Stat Lava Landstone Type M# +2400308#[SSR] MATK Lava Landstone Type M# +2400309#[SSR] Cranial Lava Landstone Type M# +2400310#[SSR] Spell Rock Landstone Type M# +2400311#[SSR] Rush Rock Landstone Type M# +2400312#[SSR] Bloody Rock Landstone Type M# +2400313#[SR] DEF Lava Landstone Type M# +2400314#[SR] MDEF Lava Landstone Type M# +2400315#[SR] Flee Lava Landstone Type M# +2400316#[SR] All Stat Lava Landstone Type M# +2400317#[SR] MATK Lava Landstone Type M# +2400318#[SR] Cranial Lava Landstone Type M# +2400319#[SR] Spell Rock Landstone Type M# +2400320#[SR] Rush Rock Landstone Type M# +2400321#[SR] Bloody Rock Landstone Type M# +2400322#[R] DEF Lava Landstone Type M# +2400323#[R] MDEF Lava Landstone Type M# +2400324#[R] Flee Lava Landstone Type M# +2400325#[R] All Stat Lava Landstone Type M# +2400326#[R] MATK Lava Landstone Type M# +2400327#[R] Cranial Lava Landstone Type M# +2400328#[R] Spell Rock Landstone Type M# +2400329#[R] Rush Rock Landstone Type M# +2400330#[R] Bloody Rock Landstone Type M# +2400331#[SSR] DEF Lava Landstone Type R# +2400332#[SSR] MDEF Lava Landstone Type R# +2400333#[SSR] Flee Lava Landstone Type R# +2400334#[SSR] All Stat Lava Landstone Type R# +2400335#[SSR] ATK Lava Landstone Type R# +2400336#[SSR] Cranial Lava Landstone Type R# +2400337#[SSR] Fatal Rock Landstone Type R# +2400338#[SSR] Rush Rock Landstone Type R# +2400339#[SSR] Bloody Rock Landstone Type R# +2400340#[SR] DEF Lava Landstone Type R# +2400341#[SR] MDEF Lava Landstone Type R# +2400342#[SR] Flee Lava Landstone Type R# +2400343#[SR] All Stat Lava Landstone Type R# +2400344#[SR] ATK Lava Landstone Type R# +2400345#[SR] Cranial Lava Landstone Type R# +2400346#[SR] Fatal Rock Landstone Type R# +2400347#[SR] Rush Rock Landstone Type R# +2400348#[SR] Bloody Rock Landstone Type R# +2400349#[SR] Fire Resist Rock Landstone# +2400350#[SR] Earth Resist Rock Landstone# +2400351#[SR] Heavy Resist Rock Landstone# +2400352#[R] DEF Lava Landstone Type R# +2400353#[R] MDEF Lava Landstone Type R# +2400354#[R] Flee Lava Landstone Type R# +2400355#[R] All Stat Lava Landstone Type R# +2400356#[R] ATK Lava Landstone Type R# +2400357#[R] Cranial Lava Landstone Type R# +2400358#[R] Fatal Rock Landstone Type R# +2400359#[R] Rush Rock Landstone Type R# +2400360#[R] Bloody Rock Landstone Type R# +2400361#[R] Fire Resist Rock Landstone# +2400362#[R] Earth Resist Rock Landstone# +2400363#[R] Heavy Resist Rock Landstone# +2400364#[SSR] DEF Lava Landstone Type P# +2400365#[SSR] MDEF Lava Landstone Type P# +2400366#[SSR] Flee Lava Landstone Type P# +2400367#[SSR] All Stat Lava Landstone Type P# +2400368#[SSR] ATK Lava Landstone Type P# +2400369#[SSR] Cranial Lava Landstone Type P# +2400370#[SSR] Fatal Rock Landstone Type P# +2400371#[SSR] Rush Rock Landstone Type P# +2400372#[SSR] Bloody Rock Landstone Type P# +2400373#[SR] DEF Lava Landstone Type P# +2400374#[SR] MDEF Lava Landstone Type P# +2400375#[SR] Flee Lava Landstone Type P# +2400376#[SR] All Stat Lava Landstone Type P# +2400377#[SR] ATK Lava Landstone Type P# +2400378#[SR] Cranial Lava Landstone Type P# +2400379#[SR] Fatal Rock Landstone Type P# +2400380#[SR] Rush Rock Landstone Type P# +2400381#[SR] Bloody Rock Landstone Type P# +2400382#[SR] HP Leech Rock Landstone# +2400383#[SR] SP Leech Rock Landstone# +2400384#[R] DEF Lava Landstone Type P# +2400385#[R] MDEF Lava Landstone Type P# +2400386#[R] Flee Lava Landstone Type P# +2400387#[R] All Stat Lava Landstone Type P# +2400388#[R] ATK Lava Landstone Type P# +2400389#[R] Cranial Lava Landstone Type P# +2400390#[R] Fatal Rock Landstone Type P# +2400391#[R] Rush Rock Landstone Type P# +2400392#[R] Bloody Rock Landstone Type P# +2400393#[SSR] DEF Lava Landstone Type M# +2400394#[SSR] MDEF Lava Landstone Type M# +2400395#[SSR] Flee Lava Landstone Type M# +2400396#[SSR] All Stat Lava Landstone Type M# +2400397#[SSR] MATK Lava Landstone Type M# +2400398#[SSR] Cranial Lava Landstone Type M# +2400399#[SSR] Spell Rock Landstone Type M# +2400400#[SSR] Rush Rock Landstone Type M# +2400401#[SSR] Bloody Rock Landstone Type M# +2400402#[SR] DEF Lava Landstone Type M# +2400403#[SR] MDEF Lava Landstone Type M# +2400404#[SR] Flee Lava Landstone Type M# +2400405#[SR] All Stat Lava Landstone Type M# +2400406#[SR] MATK Lava Landstone Type M# +2400407#[SR] Cranial Lava Landstone Type M# +2400408#[SR] Spell Rock Landstone Type M# +2400409#[SR] Rush Rock Landstone Type M# +2400410#[SR] Bloody Rock Landstone Type M# +2400411#[R] DEF Lava Landstone Type M# +2400412#[R] MDEF Lava Landstone Type M# +2400413#[R] Flee Lava Landstone Type M# +2400414#[R] All Stat Lava Landstone Type M# +2400415#[R] MATK Lava Landstone Type M# +2400416#[R] Cranial Lava Landstone Type M# +2400417#[R] Spell Rock Landstone Type M# +2400418#[R] Rush Rock Landstone Type M# +2400419#[R] Bloody Rock Landstone Type M# +2400420#Ashen Relic# +2400421#Eddga's Fur# +2400422#Golden Thief Bug's Horn# +2400423#Maya's Egg# +2400424#Orc Lord's Tooth# +2400425#Osiris's Bandage# +2400426#Baphomet's Toy# +2400427#Orc Hero's Ring# +2400428#Lunar Oranges# +2400429#Lunar Apples# +2400430#Lunar Bananas# +2400431#Lunar Grapes# +2400432#Lunar Coconuts# +2400433#Worship set# +2400434#Ang Pao# +2400435#Incense# +2400436#Candle# +2400437#STR Landstone Armor II# +2400438#STR Landstone Garment II# +2400439#STR Landstone Footgear II# +2400440#AGI Landstone Armor II# +2400441#AGI Landstone Garment II# +2400442#AGI Landstone Footgear II# +2400443#VIT Landstone Armor II# +2400444#VIT Landstone Garment II# +2400445#VIT Landstone Footgear II# +2400446#INT Landstone Armor II# +2400447#INT Landstone Garment II# +2400448#INT Landstone Footgear II# +2400449#DEX Landstone Armor II# +2400450#DEX Landstone Garment II# +2400451#DEX Landstone Footgear II# +2400452#LUK Landstone Armor II# +2400453#LUK Landstone Garment II# +2400454#LUK Landstone Footgear II# +2400455#ATK Landstone Armor II# +2400456#ATK Landstone Garment II# +2400457#ATK Landstone Footgear II# +2400458#SPEED Landstone Armor II# +2400459#SPEED Landstone Garment II# +2400460#SPEED Landstone Footgear II# +2400461#STR Landstone Armor I# +2400462#STR Landstone Garment I# +2400463#STR Landstone Footgear I# +2400464#AGI Landstone Armor I# +2400465#AGI Landstone Garment I# +2400466#AGI Landstone Footgear I# +2400467#VIT Landstone Armor I# +2400468#VIT Landstone Garment I# +2400469#VIT Landstone Footgear I# +2400470#INT Landstone Armor I# +2400471#INT Landstone Garment I# +2400472#INT Landstone Footgear I# +2400473#DEX Landstone Armor I# +2400474#DEX Landstone Garment I# +2400475#DEX Landstone Footgear I# +2400476#LUK Landstone Armor I# +2400477#LUK Landstone Garment I# +2400478#LUK Landstone Footgear I# +2400479#ATK Landstone Armor I# +2400480#ATK Landstone Garment I# +2400481#ATK Landstone Footgear I# +2400482#SPEED Landstone Armor I# +2400483#SPEED Landstone Garment I# +2400484#SPEED Landstone Footgear I# +2400485#Ancestors Coin# +2400489#Zen Enchant Stone# +2400490#Zen Enchant Stone# +2400491#Shards of Love# +2400492#Heart of Memories# +2400493#Angel Stone# +2400494#Golden Angel Stone# +2400495#Rainbow Angel Stone# +2400496#Angel Stone# +2400497#Golden Angel Stone# +2400498#Rainbow Angel Stone# +2400499#STR Landstone Armor II# +2400500#STR Landstone Garment II# +2400501#STR Landstone Footgear II# +2400502#AGI Landstone Armor II# +2400503#AGI Landstone Garment II# +2400504#AGI Landstone Footgear II# +2400505#VIT Landstone Armor II# +2400506#VIT Landstone Garment II# +2400507#VIT Landstone Footgear II# +2400508#INT Landstone Armor II# +2400509#INT Landstone Garment II# +2400510#INT Landstone Footgear II# +2400511#DEX Landstone Armor II# +2400512#DEX Landstone Garment II# +2400513#DEX Landstone Footgear II# +2400514#LUK Landstone Armor II# +2400515#LUK Landstone Garment II# +2400516#LUK Landstone Footgear II# +2400517#ATK Landstone Armor II# +2400518#ATK Landstone Garment II# +2400519#ATK Landstone Footgear II# +2400520#SPEED Landstone Armor II# +2400521#SPEED Landstone Garment II# +2400522#SPEED Landstone Footgear II# +2400523#STR Landstone Armor I# +2400524#STR Landstone Garment I# +2400525#STR Landstone Footgear I# +2400526#AGI Landstone Armor I# +2400527#AGI Landstone Garment I# +2400528#AGI Landstone Footgear I# +2400529#VIT Landstone Armor I# +2400530#VIT Landstone Garment I# +2400531#VIT Landstone Footgear I# +2400532#INT Landstone Armor I# +2400533#INT Landstone Garment I# +2400534#INT Landstone Footgear I# +2400535#DEX Landstone Armor I# +2400536#DEX Landstone Garment I# +2400537#DEX Landstone Footgear I# +2400538#LUK Landstone Armor I# +2400539#LUK Landstone Garment I# +2400540#LUK Landstone Footgear I# +2400541#ATK Landstone Armor I# +2400542#ATK Landstone Garment I# +2400543#ATK Landstone Footgear I# +2400544#SPEED Landstone Armor I# +2400545#SPEED Landstone Garment I# +2400546#SPEED Landstone Footgear I# +2400549#Lost Valley Stone# +2400550#Red Candle# +2400551#Green Incense# +2400552#Flower# +2400553#Lotus Leaf# +2400554#Cold Holy Water# +2400555#Cigar# +2400556#Soa Charm# +2400557#Red Cloth# +2400558#White Cloth# +2400559#Rope# +2400560#Thao Kudsian Card# +2400561#Mae Phrai Loi Card# +2400562#Pop Card# +2400563#Prate Card# +2400564#Maetaokumkaew Card# +2400565#Soul of Ghost# +2400783#MVP Stone Upper I# +2400784#MVP Stone Upper I# +2400786#Max Points# +2400801#Mission Coin# +2400812#Land of Izlude# +2400813#Land of Morroc# +2400814#Land of Prontera# +2400815#Genesis Landstone I# +2400816#Genesis Landstone II# +2400817#Genesis Landstone III# +2400818#Genesis Landstone I# +2400819#Genesis Landstone II# +2400820#Genesis Landstone III# +2400821#Meta Elunium# +2400822#Meta Oridecon# +2400823#MATK Landstone Armor I# +2400824#MATK Landstone Garment I# +2400825#MATK Landstone Footgear I# +2400826#MDEF Landstone Armor I# +2400827#MDEF Landstone Garment I# +2400828#MDEF Landstone Footgear I# +2400829#MATK Landstone Armor II# +2400830#MATK Landstone Garment II# +2400831#MATK Landstone Footgear II# +2400832#MDEF Landstone Armor II# +2400833#MDEF Landstone Garment II# +2400834#MDEF Landstone Footgear II# +2400835#MATK Landstone Armor I# +2400836#MATK Landstone Garment I# +2400837#MATK Landstone Footgear I# +2400838#MDEF Landstone Armor I# +2400839#MDEF Landstone Garment I# +2400840#MDEF Landstone Footgear I# +2400841#MATK Landstone Armor II# +2400842#MATK Landstone Garment II# +2400843#MATK Landstone Footgear II# +2400844#MDEF Landstone Armor II# +2400845#MDEF Landstone Garment II# +2400846#MDEF Landstone Footgear II# +2400856#Mythic Oridecon# +2400858#Mythic Elunium# +2400884#[Event] Easter Egg# +2400886#Glacier Shard# +2400887#Glacium# +2400888#Glacidecon# +2400892#Critical Hit Landstone Armor I# +2400893#Critical Hit Landstone Garment I# +2400894#Critical Hit Landstone Footgear I# +2400895#DEF Landstone Armor I# +2400896#DEF Landstone Garment I# +2400897#DEF Landstone Footgear I# +2400898#Critical Hit Landstone Armor II# +2400899#Critical Hit Landstone Garment II# +2400900#Critical Hit Landstone Footgear II# +2400901#DEF Landstone Armor II# +2400902#DEF Landstone Garment II# +2400903#DEF Landstone Footgear II# +2400904#Critical Hit Landstone Armor I# +2400917#Lucky herb# +2400918#DEF+5# +2400919#ASPD+1%# +2400920#SP Restoration 1# +2400921#Funding Ticket Of Morocc# +2400922#Critical Hit Landstone Garment I# +2400923#Critical Hit Landstone Footgear I# +2400924#DEF Landstone Armor I# +2400925#DEF Landstone Garment I# +2400926#DEF Landstone Footgear I# +2400927#Critical Hit Landstone Armor II# +2400928#Critical Hit Landstone Garment II# +2400929#Critical Hit Landstone Footgear II# +2400930#DEF Landstone Armor II# +2400931#DEF Landstone Garment II# +2400932#DEF Landstone Footgear II# +2400944#Bloodthirst Landstone Footgear# +2400945#Bloodthirst Landstone Footgear# +2400946#Unfrozen Landstone Armor# +2400947#Unfrozen Landstone Garment# +2400948#Unfrozen Landstone Footgear# +2400949#Unfrozen Landstone Armor# +2400950#Unfrozen Landstone Garment# +2400951#Unfrozen Landstone Footgear# +2400952#May Enchant Stone# +2400953#May Enchant Stone# +2401143#Magma Coins# +2401144#Kafra Mitra Card# +2401145#Magma Jewel Lv.1# +2401146#Magma Jewel Lv.2# +2401147#Magma Jewel Lv.3# +2401148#Magma Jewel Lv.4# +2401149#Magma Jewel Lv.5# +2401150#Magma Jewel Lv.6# +2401151#Magma Jewel Lv.7# +2401152#Magma Jewel Lv.8# +2401153#Magma Jewel Lv.9# +2401154#Magma Jewel Lv.10# +2401155#FLEE Landstone Armor II# +2401156#FLEE Landstone Garment II# +2401157#FLEE Landstone Footgear II# +2401158#HIT Landstone Armor II# +2401159#HIT Landstone Garment II# +2401160#HIT Landstone Footgear II# +2401161#FLEE Landstone Armor I# +2401162#FLEE Landstone Garment I# +2401163#FLEE Landstone Footgear I# +2401164#HIT Landstone Armor I# +2401165#HIT Landstone Garment I# +2401166#HIT Landstone Footgear I# +2401167#FLEE Landstone Armor II# +2401168#FLEE Landstone Garment II# +2401169#FLEE Landstone Footgear II# +2401170#HIT Landstone Armor II# +2401171#HIT Landstone Garment II# +2401172#HIT Landstone Footgear II# +2401173#FLEE Landstone Armor I# +2401174#FLEE Landstone Garment I# +2401175#FLEE Landstone Footgear I# +2401176#HIT Landstone Armor I# +2401177#HIT Landstone Garment I# +2401178#HIT Landstone Footgear I# +2401180#BP Coin SS2# +2401181#Sovereign Landstone I# +2401182#Sovereign Landstone II# +2401183#Sovereign Landstone III# +2401184#Sovereign Landstone I# +2401185#Sovereign Landstone II# +2401186#Sovereign Landstone III# +2401191#[Event] Contaminated Soul# +2401192#Reoption Jewel# +2401193#Weapon Reoption Jewel# +2401194#Armor Reoption Jewel# +2401197#RON Coin# +2401198#ZENT Coin# +2401199#ION Coin# +2401257#VCT Landstone Armor II# +2401258#VCT Landstone Garment II# +2401259#VCT Landstone Footgear II# +2401260#Physical Landstone Armor II# +2401261#Physical Landstone Garment II# +2401262#Physical Landstone Footgear II# +2401263#VCT Landstone Armor I# +2401264#VCT Landstone Garment I# +2401265#VCT Landstone Footgear I# +2401266#Physical Landstone Armor I# +2401267#Physical Landstone Garment I# +2401268#Physical Landstone Footgear I# +2401269#VCT Landstone Armor II# +2401270#VCT Landstone Garment II# +2401271#VCT Landstone Footgear II# +2401272#Physical Landstone Armor II# +2401273#Physical Landstone Garment II# +2401274#Physical Landstone Footgear II# +2401275#VCT Landstone Armor I# +2401276#VCT Landstone Garment I# +2401277#VCT Landstone Footgear I# +2401278#Physical Landstone Armor I# +2401279#Physical Landstone Garment I# +2401280#Physical Landstone Footgear I# +2401292#Resilient Landstone Armor# +2401293#Resilient Landstone Garment# +2401294#Resilient Landstone Footgear# +2401295#Resilient Landstone Armor# +2401296#Resilient Landstone Garment# +2401297#Resilient Landstone Footgear# +2401298#Bloodthirst Landstone Armor# +2401299#Bloodthirst Landstone Armor# +2401300#June Enchant Stone# +2401301#June Enchant Stone# +2401309#Angeling's Emblem# +2401310#Cat o' Nine Tails's Emblem# +2401311#Chimera's Emblem# +2401312#Dark Illusion's Emblem# +2401313#Ghostring's Emblem# +2401314#Gryphon's Emblem# +2401315#Hydro's Emblem# +2401316#Maya Purple's Emblem# +2401317#Mutant Dragon's Emblem# +2401318#Owl Baron's Emblem# +2401319#Thunderbolt Landstone I# +2401320#Thunderbolt Landstone II# +2401321#Thunderbolt Landstone III# +2401322#Thunderbolt Landstone I# +2401323#Thunderbolt Landstone II# +2401324#Thunderbolt Landstone III# +2401325#Safeguard Elunium# +2401326#Safeguard Oridecon# +2401327#BP Coin SS3# +2401328#Magical Landstone Armor I# +2401329#Magical Landstone Garment I# +2401330#Magical Landstone Footgear I# +2401331#Magical Landstone Armor II# +2401332#Magical Landstone Garment II# +2401333#Magical Landstone Footgear II# +2401334#Dual AGI-LUK Landstone Armor# +2401335#Dual AGI-LUK Landstone Garment# +2401336#Dual AGI-LUK Landstone Footgear# +2401337#Magical Landstone Armor I# +2401338#Magical Landstone Garment I# +2401339#Magical Landstone Footgear I# +2401340#Magical Landstone Armor II# +2401341#Magical Landstone Garment II# +2401342#Magical Landstone Footgear II# +2401343#Dual AGI-LUK Landstone Armor# +2401344#Dual AGI-LUK Landstone Garment# +2401345#Dual AGI-LUK Landstone Footgear# +2401346#Weight Limit 100# +2401347#Weight Limit 200# +2401348#Weight Limit 300# +2401349#Attack 3# +2401350#Attack 6# +2401351#Attack 9# +2401352#DEF +5# +2401353#DEF +10# +2401354#DEF +15# +2401355#DEF +20# +2401356#DEF +30# +2401357#FLEE+4# +2401358#FLEE+5# +2401359#FLEE+9# +2401360#Weight Limit 30# +2401361#Weight Limit 60# +2401362#Weight Limit 90# +2401363#Perfect Dodge +1# +2401364#Perfect Dodge +2# +2401365#Perfect Dodge +3# +2401366#HIT+3# +2401367#HIT+4# +2401368#Increase Long Range damage 1%# +2401369#Increase Long Range damage 2%# +2401370#Increase Long Range damage 3%# +2401371#Aspd +1%# +2401372#Aspd +2%# +2401373#Aspd +3%# +2401374#Aspd +4%# +2401375#Aspd +5%# +2401376#Move Speed +1%# +2401377#Move Speed +2%# +2401378#Move Speed +3%# +2401379#HP Recovery 3%# +2401380#HP Recovery 4%# +2401381#HP Recovery 5%# +2401382#Potion HP Recovery +1%# +2401383#Potion HP Recovery +2%# +2401384#Potion HP Recovery +3%# +2401385#Potion HP Recovery +4%# +2401386#Potion HP Recovery +5%# +2401387#SP Recovery 3%# +2401388#SP Recovery 4%# +2401389#SP Recovery 5%# +2401390#Potion SP Recovery +1%# +2401391#Potion SP Recovery +2%# +2401392#Potion SP Recovery +3%# +2401393#Potion SP Recovery +4%# +2401394#Potion SP Recovery +5%# +2401395#Critical Damage +1%# +2401396#Critical Damage +2%# +2401397#Critical Damage +3%# +2401398#Magic Attack 3# +2401399#Magic Attack 6# +2401400#Magic Attack 9# +2401401#MaxSP+2%# +2401402#MaxSP+3%# +2401403#Attack +1%# +2401404#Attack +2%# +2401405#Attack +3%# +2401406#VCT -1%# +2401407#VCT -2%# +2401408#VCT -3%# +2401409#Ignore defense 1%# +2401410#Ignore defense 2%# +2401411#Ignore defense 3%# +2401412#SP+20# +2401413#SP+30# +2401414#Frozen Resistance 5%# +2401415#Frozen Resistance 10%# +2401416#Frozen Resistance 15%# +2401417#CRI+1# +2401418#CRI+2# +2401419#CRI+3# +2401420#CRI+4# +2401421#Water Resistance Landstone Accessory I# +2401422#Fire Resistance Landstone Accessory I# +2401423#Wind Resistance Landstone Accessory I# +2401424#Earth Resistance Landstone Accessory I# +2401425#Holy Resistance Landstone Accessory I# +2401426#Frozen Resistance Landstone Accessory I# +2401427#Petrified Resistance Landstone Accessory I# +2401428#Stun Resistance Landstone Accessory I# +2401429#Chaos Resistance Landstone Accessory I# +2401430#Curse Resistance Landstone Accessory I# +2401431#Melee Landstone Accessory I# +2401432#Matk% Landstone Accessory I# +2401433#VCT Landstone Accessory I# +2401434#STR Landstone Accessory I# +2401435#AGI Landstone Accessory I# +2401436#INT Landstone Accessory I# +2401437#VIT Landstone Accessory I# +2401438#DEX Landstone Accessory I# +2401439#LUK Landstone Accessory I# +2401440#HP Landstone Accessory I# +2401441#SP Landstone Accessory I# +2401442#FLEE Landstone Accessory I# +2401443#HIT Landstone Accessory I# +2401444#CRIT Landstone Accessory I# +2401445#Fatal Landstone Accessory I# +2401446#Speed Landstone Accessory I# +2401447#DEF Landstone Accessory I# +2401448#MDEF Landstone Accessory I# +2401449#Heavy Landstone Accessory I# +2401450#Kingbird Landstone Accessory I# +2401451#Water Resistance Landstone Accessory I# +2401452#Fire Resistance Landstone Accessory I# +2401453#Wind Resistance Landstone Accessory I# +2401454#Earth Resistance Landstone Accessory I# +2401455#Holy Resistance Landstone Accessory I# +2401456#Frozen Resistance Landstone Accessory I# +2401457#Petrified Resistance Landstone Accessory I# +2401458#Stun Resistance Landstone Accessory I# +2401459#Chaos Resistance Landstone Accessory I# +2401460#Curse Resistance Landstone Accessory I# +2401461#Melee Landstone Accessory I# +2401462#Matk% Landstone Accessory I# +2401463#VCT Landstone Accessory I# +2401464#STR Landstone Accessory I# +2401465#AGI Landstone Accessory I# +2401466#INT Landstone Accessory I# +2401467#VIT Landstone Accessory I# +2401468#DEX Landstone Accessory I# +2401469#LUK Landstone Accessory I# +2401470#HP Landstone Accessory I# +2401471#SP Landstone Accessory I# +2401472#FLEE Landstone Accessory I# +2401473#HIT Landstone Accessory I# +2401474#CRIT Landstone Accessory I# +2401475#Fatal Landstone Accessory I# +2401476#Speed Landstone Accessory I# +2401477#DEF Landstone Accessory I# +2401478#MDEF Landstone Accessory I# +2401492#Heavy Landstone Accessory I# +2401493#Kingbird Landstone Accessory I# +2401494#Melee Landstone Armor I# +2401495#Melee Landstone Garment I# +2401496#Melee Landstone Footgear I# +2401497#Melee Landstone Armor II# +2401498#Melee Landstone Garment II# +2401499#Melee Landstone Footgear II# +2401500#Dual STR-VIT Landstone Armor# +2401501#Dual STR-VIT Landstone Garment# +2401502#Dual STR-VIT Landstone Footgear# +2401503#Melee Landstone Armor I# +2401504#Melee Landstone Garment I# +2401505#Melee Landstone Footgear I# +2401506#Melee Landstone Armor II# +2401507#Melee Landstone Garment II# +2401508#Melee Landstone Footgear II# +2401509#Dual STR-VIT Landstone Armor# +2401510#Dual STR-VIT Landstone Garment# +2401511#Dual STR-VIT Landstone Footgear# +2401512#Boarding Coins# +2401513#Wicked Captain Card# +2401514#Boarding Jewel Lv.1# +2401515#Boarding Jewel Lv.2# +2401516#Boarding Jewel Lv.3# +2401517#Boarding Jewel Lv.4# +2401518#Boarding Jewel Lv.5# +2401519#Boarding Jewel Lv.6# +2401520#Boarding Jewel Lv.7# +2401521#Boarding Jewel Lv.8# +2401522#Boarding Jewel Lv.9# +2401523#Boarding Jewel Lv.10# +2401542#Shard of Possibility# +2401543#[Event] Researching Record# +2401544#Bloodthirst Landstone Garment# +2401545#Bloodthirst Landstone Garment# +2401546#True Vision Landstone Armor# +2401547#True Vision Landstone Garment# +2401548#True Vision Landstone Footgear# +2401549#True Vision Landstone Armor# +2401550#True Vision Landstone Garment# +2401551#True Vision Landstone Footgear# +2401564#Dual INT-DEX Landstone Armor# +2401565#Dual INT-DEX Landstone Garment# +2401566#Dual INT-DEX Landstone Footgear# +2401567#Sage Landstone Armor II# +2401568#Sage Landstone Garment II# +2401569#Sage Landstone Footgear II# +2401570#Sage Landstone Armor I# +2401571#Sage Landstone Garment I# +2401572#Sage Landstone Footgear I# +2401573#Dual INT-DEX Landstone Armor# +2401574#Dual INT-DEX Landstone Garment# +2401575#Dual INT-DEX Landstone Footgear# +2401576#Sage Landstone Armor II# +2401577#Sage Landstone Garment II# +2401578#Sage Landstone Footgear II# +2401579#Sage Landstone Armor I# +2401580#Sage Landstone Garment I# +2401581#Sage Landstone Footgear I# +2401562#JULY Enchant Stone# +2401563#JULY Enchant Stone# +2401582#BP Coin SS4# +2401583#Witchcraft Landstone I# +2401584#Witchcraft Landstone II# +2401585#Witchcraft Landstone III# +2401586#Witchcraft Landstone I# +2401587#Witchcraft Landstone II# +2401588#Witchcraft Landstone III# +2401667#All Status Landstone Armor# +2401668#All Status Landstone Garment# +2401669#All Status Landstone Footgear# +2401670#Breach Landstone Armor# +2401671#Breach Landstone Garment# +2401672#Breach Landstone Footgear# +2401673#All Status Landstone Armor# +2401674#All Status Landstone Garment# +2401675#All Status Landstone Footgear# +2401676#Breach Landstone Armor# +2401677#Breach Landstone Garment# +2401678#Breach Landstone Footgear# +2401708#Lost Orc Hero Card# +2401709#Lost Orc Lord Card# +2401710#Lost Lady Tanee Card# +2401711#Lost Dark Lord Card# +2401712#Lost Moonlight Flower Card# +2401713#Lost Phreeoni Card# +2401714#Lost Mistress Card# +2401715#Lost Eddga Card# +2401716#Lost White Lady Card# +2401717#Lost Vesper Card# +2401718#Lost Turtle General Card# +2401719#Lost Pharaoh Card# +2401720#Lost Beelzebub Card# +2401721#Lost Maya Card# +2401722#Lost Dracula Card# +2401723#Lost Baphomet Card# +2401724#Lost Incantation Samurai Card# +2401725#Lost Dark Snake Lord Card# +2401726#Lost Amon Ra Card# +2401727#Lost Kiel Card# +2401728#Lost Gloom Card# +2401729#Lost Ifrit Card# +2401730#Lost Stormy Knight Card# +2401731#Lost Fallen Bishop Card# +2401732#Lost B Ygnizem Card# +2401733#Lost Randgris Card# +2401734#[Ygg] Lost Skull# +2401736#Assassin Landstone Armor II# +2401737#Assassin Landstone Garment II# +2401738#Assassin Landstone Footgear II# +2401739#Assassin Landstone Armor I# +2401740#Assassin Landstone Garment I# +2401741#Assassin Landstone Footgear I# +2401742#Medium Protection Landstone Shield II# +2401743#Medium Protection Landstone Shield I# +2401744#Assassin Landstone Armor II# +2401745#Assassin Landstone Garment II# +2401746#Assassin Landstone Footgear II# +2401747#Assassin Landstone Armor I# +2401748#Assassin Landstone Garment I# +2401749#Assassin Landstone Footgear I# +2401750#Medium Protection Landstone Shield II# +2401751#Medium Protection Landstone Shield I# +2401752#Rainstorm Landstone Shield# +2401753#Molten Core Landstone Shield# +2401754#Silence Immunity Landstone Armor# +2401755#Silence Immunity Landstone Garment# +2401756#Silence Immunity Landstone Footgear# +2401757#Rainstorm Landstone Shield# +2401758#Molten Core Landstone Shield# +2401759#Silence Immunity Landstone Armor# +2401760#Silence Immunity Landstone Garment# +2401761#Silence Immunity Landstone Footgear# +2401763#Golden Grimnir's Hammer# +2401764#Genesis Battle Badge# +2401765#Grimnir's Hammer# +2401766#[GF] Jackpot Coin# +2401783#AUG Enchant Stone# +2401784#AUG Enchant Stone# +2401785#BP Coin SS5# +2401786#Teleport Amistr Landstone# +2401787#Greed Amistr Landstone# +2401788#Maximize Amistr Landstone# +2401789#Improve Amistr Landstone# +2401790#Teleport Amistr Landstone# +2401791#Greed Amistr Landstone# +2401792#Maximize Amistr Landstone# +2401793#Improve Amistr Landstone# +2401794#[Dungeon] Smelly Fish# +2401795#Shroud Coin# +2401796#[Dungeon] Umbala Fruit# +2401797#Wootan Papa Card# +2401798#Shroud Jewel Lv.1# +2401799#Shroud Jewel Lv.2# +2401800#Shroud Jewel Lv.3# +2401801#Shroud Jewel Lv.4# +2401802#Shroud Jewel Lv.5# +2401804#Monk Landstone Armor II# +2401805#Monk Landstone Garment II# +2401806#Monk Landstone Footgear II# +2401807#Monk Landstone Armor I# +2401808#Monk Landstone Garment I# +2401809#Monk Landstone Footgear I# +2401810#Long Range Landstone Armor II# +2401811#Long Range Landstone Garment II# +2401812#Long Range Landstone Footgear II# +2401813#Long Range Landstone Armor I# +2401814#Long Range Landstone Garment I# +2401815#Long Range Landstone Footgear I# +2401816#Monk Landstone Armor II# +2401817#Monk Landstone Garment II# +2401818#Monk Landstone Footgear II# +2401819#Monk Landstone Armor I# +2401820#Monk Landstone Garment I# +2401821#Monk Landstone Footgear I# +2401822#Long Range Landstone Armor II# +2401823#Long Range Landstone Garment II# +2401824#Long Range Landstone Footgear II# +2401825#Long Range Landstone Armor I# +2401826#Long Range Landstone Garment I# +2401827#Long Range Landstone Footgear I# +2401879#Knight Landstone Armor II# +2401880#Knight Landstone Garment II# +2401881#Knight Landstone Footgear II# +2401882#Knight Landstone Armor I# +2401883#Knight Landstone Garment I# +2401884#Knight Landstone Footgear I# +2401885#Fatal Landstone Armor II# +2401886#Fatal Landstone Garment II# +2401887#Fatal Landstone Footgear II# +2401888#Fatal Landstone Armor I# +2401889#Fatal Landstone Garment I# +2401890#Fatal Landstone Footgear I# +2401891#Knight Landstone Armor II# +2401892#Knight Landstone Garment II# +2401893#Knight Landstone Footgear II# +2401894#Knight Landstone Armor I# +2401895#Knight Landstone Garment I# +2401896#Knight Landstone Footgear I# +2401897#Fatal Landstone Armor II# +2401898#Fatal Landstone Garment II# +2401899#Fatal Landstone Footgear II# +2401900#Fatal Landstone Armor I# +2401901#Fatal Landstone Garment I# +2401902#Fatal Landstone Footgear I# +2401938#Curse Ward Landstone Armor# +2401939#Curse Ward Landstone Garment# +2401940#Curse Ward Landstone Footgear# +2401941#Curse Ward Landstone Armor# +2401942#Curse Ward Landstone Garment# +2401943#Curse Ward Landstone Footgear# +2401944#BP Coin SS6# +2401945#Rainy Landstone I# +2401946#Rainy Landstone II# +2401947#Rainy Landstone III# +2401948#Rainy Landstone I# +2401949#Rainy Landstone II# +2401950#Rainy Landstone III# +2401951#SEP Enchant Stone# +2401952#SEP Enchant Stone# +2401954#Land of Izlude II# +2401955#Land of Morroc II# +2401956#Land of Prontera II# +2401957#Blacksmith Landstone Armor II# +2401958#Blacksmith Landstone Garment II# +2401959#Blacksmith Landstone Footgear II# +2401960#Blacksmith Landstone Armor I# +2401961#Blacksmith Landstone Garment I# +2401962#Blacksmith Landstone Footgear I# +2401963#HIT Physical Landstone Armor II# +2401964#HIT Physical Landstone Garment II# +2401965#HIT Physical Landstone Footgear II# +2401966#HIT Physical Landstone Armor I# +2401967#HIT Physical Landstone Garment I# +2401968#HIT Physical Landstone Footgear I# +2401969#Blacksmith Landstone Armor II# +2401970#Blacksmith Landstone Garment II# +2401971#Blacksmith Landstone Footgear II# +2401972#Blacksmith Landstone Armor I# +2401973#Blacksmith Landstone Garment I# +2401974#Blacksmith Landstone Footgear I# +2401975#HIT Physical Landstone Armor II# +2401976#HIT Physical Landstone Garment II# +2401977#HIT Physical Landstone Footgear II# +2401978#HIT Physical Landstone Armor I# +2401979#HIT Physical Landstone Garment I# +2401980#HIT Physical Landstone Footgear I# +2401985#Deadly Jewel Lv.1# +2401986#Deadly Jewel Lv.2# +2401987#Deadly Jewel Lv.3# +2401988#Deadly Jewel Lv.4# +2401989#Deadly Jewel Lv.5# +2401990#Deadly Coin# +2401991#[Dungeon] Blood Shard# +2401992#The Butcher Card# +2401993#Genesis Enhance Ticket# +2400785#Bio Remnant Stone# +2402020#[Event] Laboratory Memory Record# +2201930#[Event] Rune Strawberry Cake# +2201931#[Event] Schwartzwald Pine Jubilee# +2201932#[Event] Arunafeltz Desert Sandwich# +2201947#Unleashed Weapon Scroll# +2201948#Otherworld Landstone Box# +2401994#Bard Landstone Armor II# +2401995#Bard Landstone Garment II# +2401996#Bard Landstone Footgear II# +2401997#Bard Landstone Armor I# +2401998#Bard Landstone Garment I# +2401999#Bard Landstone Footgear I# +2402000#Powerful Landstone Armor II# +2402001#Powerful Landstone Garment II# +2402002#Powerful Landstone Footgear II# +2402003#Powerful Landstone Armor I# +2402004#Powerful Landstone Garment I# +2402005#Powerful Landstone Footgear I# +2402018#Medusa's Emblem# +2402019#Mavka's Emblem# +2402021#Bard Landstone Armor II# +2402022#Bard Landstone Garment II# +2402023#Bard Landstone Footgear II# +2402024#Bard Landstone Armor I# +2402025#Bard Landstone Garment I# +2402026#Bard Landstone Footgear I# +2402027#Powerful Landstone Armor II# +2402028#Powerful Landstone Garment II# +2402029#Powerful Landstone Footgear II# +2402030#Powerful Landstone Armor I# +2402031#Powerful Landstone Garment I# +2402032#Powerful Landstone Footgear I# +2402051#Cranial Landstone Footgear# +2402052#Cranial Landstone Footgear# +2402055#Unpetrified Landstone Armor# +2402056#Unpetrified Landstone Garment# +2402057#Unpetrified Landstone Footgear# +2402058#Unpetrified Landstone Armor# +2402059#Unpetrified Landstone Garment# +2402060#Unpetrified Landstone Footgear# +2402041#ATK +6# +2402042#ATK +9# +2402043#HP Recovery 1%# +2402044#HP Recovery 2%# +2402045#Heal +3%# +2402046#Heal +4%# +2402047#Heal +5%# +2402048#DEF+25# +2402049#DEF+30# +2402050#HIT+2# +2402054#Unleash Enchant Stone# +2402139#BP Coin SS7# +2402140#Hollow Landstone I# +2402141#Hollow Landstone II# +2402142#Hollow Landstone III# +2402143#Hollow Landstone I# +2402144#Hollow Landstone II# +2402145#Hollow Landstone III# +2402146#Priest Landstone Armor II# +2402147#Priest Landstone Garment II# +2402148#Priest Landstone Footgear II# +2402149#Priest Landstone Armor I# +2402150#Priest Landstone Garment I# +2402151#Priest Landstone Footgear I# +2402152#Mystical Landstone Armor II# +2402153#Mystical Landstone Garment II# +2402154#Mystical Landstone Footgear II# +2402155#Mystical Landstone Armor I# +2402156#Mystical Landstone Garment I# +2402157#Mystical Landstone Footgear I# +2402158#Priest Landstone Armor II# +2402159#Priest Landstone Garment II# +2402160#Priest Landstone Footgear II# +2402161#Priest Landstone Armor I# +2402162#Priest Landstone Garment I# +2402163#Priest Landstone Footgear I# +2402164#Mystical Landstone Armor II# +2402165#Mystical Landstone Garment II# +2402166#Mystical Landstone Footgear II# +2402167#Mystical Landstone Armor I# +2402168#Mystical Landstone Garment I# +2402169#Mystical Landstone Footgear I# +2402170#Endless Bloody Tear# +2402171#Endless Tear# +2402172#Endless Energy# +2402173#HIT Physical Stone (Middle)# +2402174#HIT Physical Stone (Middle)# +2402175#Fallen Otherworld Morroc Card# +2402176#Filthy Otherworld Morroc Card# +2402177#Filthy Otherworld Morroc Card# +2402178#Damp Darkness# +2402179#Otherworld Domain Key# +2402180#Old Coin# +2402181#Otherworld Landstone Armor# +2402182#Otherworld Landstone Garment# +2402183#Otherworld Landstone Shoes# +2402184#Fallen Minion Card# +2402185#Filthy Minion Card# +2402186#Invert Minion Card# +2402187#Otherworld Key Fragment# +2402188#Dirt Coin# +2402189#Antique coin# +2402190#[Dungeon] The Explorer’s Log# +2402191#The Ruins Protector Card# +2402192#Ruins Jewel Lv.1# +2402193#Ruins Jewel Lv.2# +2402194#Ruins Jewel Lv.3# +2402195#Ruins Jewel Lv.4# +2402196#Ruins Jewel Lv.5# +2402201#WoE Support Token# +2402209#[Event] NOVA Ticket# +2402198#Oct Enchant Stone# +2402202#Oct Enchant Stone# +2402203#Power Gem Landstone Garment# +2402204#Ability Gem Landstone Garment# +2402205#Vital Gem Landstone Garment# +2402206#Mind Gem Landstone Garment# +2402207#Focus Gem Landstone Garment# +2402208#Lucky Gem Landstone Garment# +2402210#Power Gem Landstone Garment# +2402211#Ability Gem Landstone Garment# +2402212#Vital Gem Landstone Garment# +2402213#Mind Gem Landstone Garment# +2402214#Focus Gem Landstone Garment# +2402215#Lucky Gem Landstone Garment# +2402216#Otherworld Landstone Armor# +2402217#Otherworld Landstone Garment# +2402218#Otherworld Landstone Shoes# +2402219#Alchemist Landstone Armor II# +2402220#Alchemist Landstone Garment II# +2402221#Alchemist Landstone Footgear II# +2402222#Alchemist Landstone Armor I# +2402223#Alchemist Landstone Garment I# +2402224#Alchemist Landstone Footgear I# +2402225#Strong Landstone Armor II# +2402226#Strong Landstone Garment II# +2402227#Strong Landstone Footgear II# +2402228#Strong Landstone Armor I# +2402229#Strong Landstone Garment I# +2402230#Strong Landstone Footgear I# +2402231#Minor 0.2 Casting Stone (Garment)# +2402232#Minor 0.2 Casting Stone (Garment)# +2402233#Final Boss Landstone Armor# +2402234#Final Boss Landstone Garment# +2402235#Final Boss Landstone Footgear# +2402236#Final Boss Landstone Armor# +2402237#Final Boss Landstone Garment# +2402238#Final Boss Landstone Footgear# +2402239#Alchemist Landstone Armor II# +2402240#Alchemist Landstone Garment II# +2402241#Alchemist Landstone Footgear II# +2402242#Alchemist Landstone Armor I# +2402243#Alchemist Landstone Garment I# +2402244#Alchemist Landstone Footgear I# +2402245#Strong Landstone Armor II# +2402246#Strong Landstone Garment II# +2402247#Strong Landstone Footgear II# +2402248#Strong Landstone Armor I# +2402249#Strong Landstone Garment I# +2402250#Strong Landstone Footgear I# +2402253#[Event] Journey Coin# +2402254#Free Mint Ticket# +2402255#Cranial Landstone Armor# +2402256#Cranial Landstone Armor# +2402257#Steadfast Landstone Armor# +2402258#Steadfast Landstone Garment# +2402259#Steadfast Landstone Footgear# +2402260#Steadfast Landstone Armor# +2402261#Steadfast Landstone Garment# +2402262#Steadfast Landstone Footgear# +2402271#BP Coin SS8# +2402272#Poring Landstone I# +2402273#Poring Landstone II# +2402274#Poring Landstone III# +2402275#Poring Landstone I# +2402276#Poring Landstone II# +2402277#Poring Landstone III# +2402286#Universal Landstone Armor II# +2402287#Universal Landstone Garment II# +2402288#Universal Landstone Footgear II# +2402289#Universal Landstone Armor I# +2402290#Universal Landstone Garment I# +2402291#Universal Landstone Footgear I# +2402292#Potentia Landstone Armor II# +2402293#Potentia Landstone Garment II# +2402294#Potentia Landstone Footgear II# +2402295#Potentia Landstone Armor I# +2402296#Potentia Landstone Garment I# +2402297#Potentia Landstone Footgear I# +2402298#Universal Landstone Armor II# +2402299#Universal Landstone Garment II# +2402300#Universal Landstone Footgear II# +2402301#Universal Landstone Armor I# +2402302#Universal Landstone Garment I# +2402303#Universal Landstone Footgear I# +2402304#Potentia Landstone Armor II# +2402305#Potentia Landstone Garment II# +2402306#Potentia Landstone Footgear II# +2402307#Potentia Landstone Armor I# +2402308#Potentia Landstone Garment I# +2402309#Potentia Landstone Footgear I# +2402311#Landstone Combination Box# +2402312#Landstone Refinery# +2402313#52nd Floor Chip# +2402314#54th Floor Chip# +2402618#Mysterious Feather# +2402619#Mysterious Thread# +2402620#Mysterious Powder# +2402621#Mysterious Scale# +2402622#Prismatic Crystal Orb# +2402623#NOVA Key# +2402624#Stone Grade D# +2402625#Stone Grade C# +2402626#Stone Grade B# +2402627#Stone Grade A# +2402628#Infusion Essence (SR)# +2402629#Infusion Essence (SSR)# +2402630#Snake Head Hat (Fragment)# +2402631#Pecopeco Hairband (Fragment)# +2402632#Whikebain Ears (Fragment)# +2402633#Poring Beret (Fragment)# +2402634#Ancient Boned Helm (Fragment)# +2402635#Giant Helm (Fragment)# +2402636#Poring Sunglsses (Fragment)# +2402637#Fish_In_Mouth (Fragment)# +2402638#Angel Spirit (Fragment)# +2402639#Happy Parrot (Fragment)# +2402640#White Feather Beret (Fragment)# +2402641#Spiked Scarf (Fragment)# +2402642#Land Redium Ore# +2402643#Land Rindium Ore# +2402644#Land Odium Ore# +2402645#Land Purdium Ore# +2402646#Land Whidium Ore# +2402647#Land Dynite# +2402648#Unidentified Land Ore# +2402649#Shining Chimera Egg# +2402650#Pet's Energy# +2402651#Orc Warrior's Emblem# +2402652#Sohee's Emblem# +2402653#Isis's Emblem# +2402654#Green Petite's Emblem# +2402655#Deviruchi's Emblem# +2402656#Baphomet Jr's Emblem# +2402657#Bongun's Emblem# +2402658#Alice's Emblem# +2402659#Incubus's Emblem# +2402660#Succubus's Emblem# +2402661#Magical Feather Hairband (Fragment)# +2402662#Galapago Cap (Fragment)# +10000001#Moonstone Point# +10000002#Loot Box# +10000003#Loot Box Bubble Gum (100)# +10000004#Loot Box Bubble Gum (500)# +10000005#Loot Box Bubble Gum (1,000)# +10000006#Loot Box HE Bubble Gum (100)# +10000007#Loot Box HE Bubble Gum (500)# +10000008#Loot Box HE Bubble Gum (1,000)# +10000009#Endless Tower Reset Ticket# +10000010#Tower of Tides Reset Ticket# +10000011#Equipment Box# +10000012#Random Enchant# +10000013#Moonstone Point# +10000014#Moonstone Point# +10000015#Moonstone Point# +10000016#Moonstone Point# +10000017#Vybranium Enchant# +10000018#Oridecon Token# +10000019#Elunium Token# +10000020#Adamantine Token# +10000021#Seagod Anger Token# +10000022#Zeny Token# +10000023#Uncommon Pet Coin# +10000024#Rare Pet Coin# +10000025#Epic Pet Coin# +10000026#Crown Reform# +10000027#Sword Reform# +10000038#Broken Slot# +10000039#Socket Abrasive# +10000040#Socket Enchant# +10000042#ROL Hairband Reform# +10000043#Endless Garment Enchant# +100000000#Completed Collection Item# diff --git a/tables/laRO/itemsdescriptions.txt b/tables/laRO/itemsdescriptions.txt new file mode 100644 index 0000000000..aa8dc90a39 --- /dev/null +++ b/tables/laRO/itemsdescriptions.txt @@ -0,0 +1,336481 @@ +500# +A snack of a piece of walnut mixed with chocolate and rounded together. +I don't know why walnut carries it. +-------------------------- +Heals 10% HP and 10% SP. +-------------------------- +Weight: 1 +# +501# +A bottle of potion made from grinded Red Herbs. +-------------------------- +Type: Restorative +Heal: 45 ~ 65 HP +Weight: 7 +# +502# +A bottle of potion made from grinded Red and Yellow Herbs. +-------------------------- +Type: Restorative +Heal: 105 ~ 145 HP +Weight: 10 +# +503# +A bottle of potion made from grinded Yellow Herbs. +-------------------------- +Type: Restorative +Heal: 175 ~ 235 HP +Weight: 13 +# +504# +A bottle of potion made from grinded White Herbs. +-------------------------- +Type: Restorative +Heal: 325 ~ 405 HP +Weight: 15 +# +505# +A bottle of potion made from grinded Blue Herbs. +-------------------------- +Type: Restorative +Heal: 40 ~ 60 SP +Weight: 15 +# +506# +A bottle of potion made from grinded Green Herbs. +-------------------------- +Type: Restorative +Cure: Poison, Silence, Blind, Confuse, Hallucination +Weight: 7 +# +507# +A weak medicinal herb which heals wounds. +-------------------------- +Type: Restorative +Heal: 18 ~ 28 HP +Weight: 3 +# +508# +A valuable medicinal herb which efficiently heals wounds. +-------------------------- +Type: Restorative +Heal: 38 ~ 58 HP +Weight: 5 +# +509# +A valuable medicinal herb which greatly heals wounds. +-------------------------- +Type: Restorative +Heal: 75 ~ 115 HP +Weight: 7 +# +510# +A very valuable medicinal herb whose unique aroma gratifies one's spirit. +-------------------------- +Type: Restorative +Heal: 15 ~ 30 SP +Weight: 7 +# +511# +A precious medicinal herb that counteracts all poisons. +-------------------------- +Type: Restorative +Cure: Poison +Weight: 3 +# +512# +A round, edible fruit that, when eaten once a day, keeps the doctor away. +-------------------------- +Type: Restorative +Heal: 16 ~ 22 HP +Weight: 2 +# +513# +A sweet tasting tropical fruit made famous by its use in slapstick comedy and practical jokes. +-------------------------- +Type: Restorative +Heal: 17 ~ 21 HP +Weight: 2 +# +514# +Clustered berries with smooth skin that can be fermented to make wine. +-------------------------- +Type: Restorative +Heal: 10 ~ 15 SP +Weight: 2 +# +515# +An orange root that is supposedly good for your vision. Despite the Beta Carotene, kids don't care much for it. +-------------------------- +Type: Restorative +Heal: 18 ~ 20 HP +Weight: 2 +# +516# +A tuber that can be fried, baked, boiled mashed, even eaten. +-------------------------- +Type: Restorative +Heal: 15 ~ 23 HP +Weight: 2 +# +517# +A leg of meat that's been cooked to near perfection. +-------------------------- +Type: Restorative +Heal: 70 ~ 100 HP +Weight: 15 +# +518# +A sweet product made by bees that is endowed with yummy flavor and medicinal uses. +-------------------------- +Type: Restorative +Heal: +70 ~ 100 HP +20 ~ 40 SP +Weight: 10 +# +519# +Pasteurized and bottled cow milk that is chock full of bovine goodness. +-------------------------- +Type: Restorative +Heal: 27 ~ 37 HP +Weight: 3 +# +520# +Leaf cut from a Hinalle Plant which has a cool, fresh scent. It can ease pain and reinvigorate. +-------------------------- +Type: Restorative +Heal: 175 ~ 235 HP +Weight: 1 +# +521# +Leaf cut from an Aloe plant. +-------------------------- +Type: Restorative +Heal: 325 ~ 405 HP +Weight: 2 +# +522# +A shiny, purple fruit picked from the boughs of the Mastela tree. +-------------------------- +Type: Restorative +Heal: 400 ~ 600 HP +Weight: 3 +# +523# +Blessed water used in sacred ceremonies. +-------------------------- +Type: Restorative +Cure: Curse +Weight: 3 +# +525# +A mystic remedy for all illnesses. +-------------------------- +Type: Restorative +Cure: Poison, Curse, Silence, Confuse, Blind, Hallucination +Weight: 10 +# +526# +Highly nutritious jelly secreted from honeybees that they only feed to larvas and future queens. +-------------------------- +Type: Restorative +Heal: +325 ~ 405 HP +40 ~ 60 SP +Cure: Poison, Curse, Silence, Confuse, Blind +Weight: 15 +# +528# +Processed food that is normally fed to monsters. +-------------------------- +Type: Restorative +Heal: 72 ~ 108 HP +Weight: 15 +# +529# +A confection of sugar, chocolate and other flavorings. Kids love it! +-------------------------- +Type: Restorative +Heal: 45 ~ 65 HP +Weight: 3 +# +530# +A striped cane of peppermint candy. Sugar daddies love it! +-------------------------- +Type: Restorative +Heal: 105 ~ 145 HP +Weight: 4 +# +531# +Bottled apple juice that's easy to digest. +-------------------------- +Type: Restorative +Heal: 25 ~ 35 HP +Weight: 4 +# +532# +Bottled banana juice that's easy to digest. +-------------------------- +Type: Restorative +Heal: 26 ~ 34 HP +Weight: 4 +# +533# +Bottled grape juice that's easy to digest. +-------------------------- +Type: Restorative +Heal: 15 ~ 25 SP +Weight: 4 +# +534# +Bottled carrot juice that's easy to digest. +-------------------------- +Type: Restorative +Heal: 27 ~ 33 HP +Weight: 4 +# +535# +A large orange fruit grown from a vine that's used in baking pies and a few other dishes. +-------------------------- +Type: Restorative +Heal: 19 HP +Weight: 2 +# +536# +Deliciously frosty ice cream that can cause brain freeze if you eat too much too quickly. +-------------------------- +Type: Restorative +Heal: 105 ~ 145 HP +Weight: 8 +# +537# +Sterilized food that has been fortified with vitamins and minerals. Some Cute Pets will feed on this. +-------------------------- +Type: Restorative +Heal: 50 ~ 90 HP +Weight: 1 +# +538# +A warm, scrumptious cookie. +-------------------------- +Type: Restorative +Heal: 160 ~ 200 HP +Weight: 3 +# +539# +A sweet slice of cake covered in icing and topped with a cherry. +-------------------------- +Type: Restorative +Heal: 270 ~ 330 HP +Weight: 10 +# +540# +Food intended for Falcons, but it's actually tasty enough for humans to eat. +-------------------------- +Type: Restorative +Heal: 185 ~ 225 HP +Weight: 5 +# +541# +Food manufactured to feed Peco Pecos, but will suffice for desperately hungry humans as well. +-------------------------- +Type: Restorative +Heal: 325 ~ 405 HP +Weight: 5 +# +542# +A sweet and crunchy snack usually available during certain times in Japan. +-------------------------- +Type: Restorative +Heal: 325 ~ 405 HP +Weight: 7 +# +543# +Cake made of rice decorated in 3 colors, red, white and green. +-------------------------- +Type: Restorative +Heal: 325 ~ 405 HP +Weight: 7 +# +544# +A raw, fresh fish. +-------------------------- +Type: Restorative +Heal: 25 ~ 60 HP +Weight: 3 +# +545# +A condensed Red Potion that weighs significantly less. +-------------------------- +Type: Restorative +Heal: 45 ~ 65 HP +Weight: 2 +# +546# +A condensed yellow potion that weighs significantly less. +-------------------------- +Type: Restorative +Heal: 175 ~ 235 HP +Weight: 3 +# +547# +A condensed white potion that weighs significantly less. +-------------------------- +Type: Restorative +Heal: 325 ~ 405 HP +Weight: 5 +# +548# +A palatable food with a unique scent. +-------------------------- +Type: Restorative +Heal: 10 ~ 15 SP +Weight: 5 +# +549# +A kind of plant root used as food. It's advised to eat this slowly with water, or to bake it beforehand. +-------------------------- +Type: Restorative +Heal: 50 ~ 100 HP +Weight: 8 +# +550# +A snack made out of rice that doesn't contain any fat. Some women love having this snack. +-------------------------- +Type: Restorative +Heal: 10 ~ 15 HP +Weight: 1 +# +551# +An eastern delicacy, in which various types of raw fish is placed on top of rice. +The rice is marinated in vinegar then wrapped in dried seaweed. +-------------------------- +Type: Restorative +Heal: 50 ~ 60 HP +Weight: 5 +# +552# +A type of food that is usually eaten by people in a country after their abstinence ceremony. +-------------------------- +Type: Restorative +Heal: +70 ~ 90 HP +20 ~ 30 SP +Weight: 1 +# +553# +A type of dough that is filled with ground meat, usually served hot. +People living in eastern countries have enjoyed eating this food for a long time. +-------------------------- +Type: Restorative +Heal: 35 ~ 70 HP +Weight: 5 +# +554# +A tasty rice cake made for celebrating the Lunar New Year. +-------------------------- +Type: Restorative +Heal: 105 ~ 145 HP +Weight: 8 +# +555# +A type of food made of rice powder. There are many recipes to make this food, all of them absolutely delicious. +-------------------------- +Type: Restorative +Heal: 105 ~ 145 HP +Weight: 2 +# +556# +A thin stick of rice cake which is moist and sticky. +-------------------------- +Type: Restorative +Heal: 20 ~ 25 HP +Weight: 1 +# +557# +A bag of sliced rice cake. Can be cooked in various ways. +-------------------------- +Type: Restorative +Heal: 25 ~ 30 HP +Weight: 1 +# +558# +Fried and grinded Cacao that is solidified with Milk and cacao paste. Delicious and bittersweet. +-------------------------- +Type: Restorative +Heal: +1 HP +1 SP +Weight: 2 +# +559# +A collection of chocolates that are gathered and arranged to make a beautiful item. This is often used in courtship and sometimes even used effectively. +-------------------------- +Type: Restorative +Heal: +50 HP +50 SP +Weight: 8 +# +560# +White chocolate which is used to propose to a girl by a boy during White Day. +-------------------------- +Type: Restorative +Heal: +50 HP +50 SP +Weight: 8 +# +561# +White chocolate which is used to propose to a girl by a boy during White Day. +-------------------------- +Type: Restorative +Heal: +50 HP +50 SP +Weight: 8 +# +562# +A cheese that was put in between bread with sauces and other stuff before it was added with sweet potatoes and butter to be make into Domino Swiss Pizza. +It taste soft and sweet as if it melted in your mouth. This is the double layered Pizza made by Domino, the high quality pizza maker. +(To be sent) +-------------------------- +Type: Restorative +Heal: 70 ~ 100 HP +Weight: 15 +# +563# +A cheese that was put in between bread with sauces and other stuff before it was added with sweet potatoes and butter to be make into Domino Swiss Pizza. +It taste soft and sweet as if it melted in your mouth. This is the double layered Pizza made by Domino, the high quality pizza maker. +(To be sent) +-------------------------- +Type: Restorative +Heal: 375 ~ 445 HP +Weight: 15 +# +564# +A lump of rice which can be eaten for lunch. +-------------------------- +Type: Restorative +Heal: 200 HP +Weight: 3 +# +565# +A delicious multi-vitamin drink. It is without caffeine and good for your health. +-------------------------- +Type: Restorative +Heal: 142 ~ 274 HP +Weight: 10 +# +566# +A type of soup which is regarded as one of the three famous soups in the world. +It has a spicy, sweet and sour taste with shrimps, lemons and chilies. +-------------------------- +Type: Restorative +Heal: +244 ~ 350 HP +10 ~ 30 SP +Cure: Poison, Silence, Blind, Confuse, Curse, Hallucination +Weight: 15 +# +567# +A shellfish which has a long tail and many legs. +When cooked, the color of body changes into red and its flesh is very tasty with a unique scent. +-------------------------- +Type: Restorative +Heal: 117 ~ 192 HP +Weight: 4 +# +568# +A bright yellow fruit with very sour juice and a fresh scent. +-------------------------- +Type: Restorative +Heal: 10 ~ 20 SP +Weight: 4 +# +569# +An exclusive red potion for Novices! +-------------------------- +Type: Restorative +Heal: 44 ~ 66 HP +Weight: 1 +# +570# +A candy which is rumored to bring luck to whomever eats it. +-------------------------- +Type: Restorative +Heal: 45 ~ 65 HP +Weight: 3 +# +571# +A candy cane which is rumored to bring luck to whomever eats it. +-------------------------- +Type: Restorative +Heal: 105 ~ 145 HP +Weight: 4 +# +572# +A cookie which is rumored to bring luck to whomever eats it. +-------------------------- +Type: Restorative +Heal: 165 ~ 200 HP +Weight: 3 +# +573# +A kind of drink made from chocolate and milk from one of the Royal Court Dessert Specialist's recipes. +Although the Dessert Chef wishes for people to drink this treat elegantly, it's usually gulped down, enjoyed with hand sloppily placed on the waist. +-------------------------- +Type: Restorative +Heal: +330 ~ 410 HP +45 ~ 65 SP +Cure: Poison, Silence, Blind, Confuse, Curse, Hallucination +Weight: 15 +# +574# +An egg from a bird. It's full of nutrition, making it an ideal food for growing children. +-------------------------- +Type: Restorative +Heal: 33 ~ 42 HP +Weight: 3 +# +575# +A piece of sweet cake with icing and a cherry on top. Made in celebration of Ragnarok's second anniversary. +-------------------------- +Type: Restorative +Heal: 270 ~ 330 HP +Weight: 10 +# +576# +A freshly scented, thorny fruit from a tree. +-------------------------- +Type: Restorative +Heal: +150 ~ 300 HP +20 ~ 30 SP +Weight: 6 +# +577# +Dried grains that are commonly used in the cuisines of many countries. +-------------------------- +Type: Restorative +Heal: 60 ~ 70 HP +Weight: 2 +# +578# +A red berry that is renown for its slightly sweet and sour taste and is best eaten fresh. +-------------------------- +Type: Restorative +Heal: 16 ~ 28 SP +Weight: 2 +# +579# +A fresh fish that can be cooked in a variety of ways. +-------------------------- +Type: Restorative +Heal: 100 ~ 150 HP +Weight: 2 +# +580# +Freshly leavened bread that gives off a wholesome scent. +-------------------------- +Type: Restorative +Heal: 50 ~ 90 HP +Weight: 2 +# +581# +An edible mushroom that can be eaten raw or cooked. +-------------------------- +Type: Restorative +Heal: 20 ~ 30 HP +Weight: 2 +# +582# +A sweet citrus fruit that can be eaten raw, juiced, or cooked as a jam. +-------------------------- +Type: Restorative +Heal: +10 ~ 20 HP +10 ~ 20 SP +Weight: 2 +# +583# +Food eaten Slowly to replenish your body from rituals of fasting Replenish the Weakened body and give energy to protect the body. +-------------------------- +Type: Restorative +Heal: +325 ~ 405 HP +40 ~ 60 SP +Cure: Poison, Silence, Blind, Confuse, Curse, Hallucination +Weight: 15 +# +584# +A bowl filled with hot, hearty fish broth and a generous helping of fish cake. +-------------------------- +Type: Restorative +Heal: 40 ~ 70 HP +Weight: 6 +# +585# +A sausage with delicious smell and taste. Tastes even better if you eat it with some wheat beer. +-------------------------- +Type: Restorative +Heal: 15 ~ 20 HP +Weight: 4 +# +586# +A piece of cake filled with mother's love. +-------------------------- +Type: Restorative +Heal: 325 ~ 405 HP +Weight: 10 +# +587# +A freshly scented, thorny fruit from a tree. +-------------------------- +Type: Restorative +Heal: +270 ~ 330 HP +20 ~ 30 SP +Weight: 4 +# +588# +A noodle dish from a far nation, made from water and flour. Many tastes can be achieved using various sauces. +-------------------------- +Type: Restorative +Heal: 40 ~ 70 HP +Weight: 10 +# +589# +A delicious snack food that is a favorite of Teenagers everywhere. +-------------------------- +Type: Restorative +Heal: 375 ~ 445 HP +Weight: 15 +# +590# +Looks so yummy that you will feel like to have a bite instantly. +-------------------------- +Type: Restorative +Heal: 50 ~ 90 HP +Weight: 2 +# +591# +A pancake topped with caviar. Average people have trouble telling the difference between fine caviar and common frog spawn eggs. +-------------------------- +Type: Restorative +Heal: +325 ~ 405 HP +40 ~ 60 SP +Cure: Poison, Silence, Blind, Confuse, Curse, Hallucination +Weight: 15 +# +592# +A pancake topped with strawberry jam. This looks much more delicious than plain strawberries alone. +-------------------------- +Type: Restorative +Heal: +325 ~ 405 HP +40 ~ 60 SP +Cure: Poison, Silence, Blind, Confuse, Curse, Hallucination +Weight: 15 +# +593# +A very sweet pancake topped with honey. +-------------------------- +Type: Restorative +Heal: +325 ~ 405 HP +40 ~ 60 SP +Cure: Poison, Silence, Blind, Confuse, Curse, Hallucination +Weight: 15 +# +594# +A pancake in which sour cream is one of the main ingredients. Biting into just once will make your eyes water. +-------------------------- +Type: Restorative +Heal: +325 ~ 405 HP +40 ~ 60 SP +Cure: Poison, Silence, Blind, Confuse, Curse, Hallucination +Weight: 15 +# +595# +A pancake made with mushrooms that has a light taste that everyone seems to like. +-------------------------- +Type: Restorative +Heal: +325 ~ 405 HP +40 ~ 60 SP +Cure: Poison, Silence, Blind, Confuse, Curse, Hallucination +Weight: 15 +# +596# +A strawberry that is supposed to be covered in a smooth layer of chocolate, but whoever made this botched it up. +It's not perfect, but this was made with love, if not skill. +-------------------------- +Type: Restorative +Heal: 1 ~ 100 SP +Weight: 10 +# +597# +A tart covered in a smooth layer of rich chocolate that is the perfect dessert for romantic dinners. +-------------------------- +Type: Restorative +Heal: 10 ~ 400 HP +Weight: 10 +# +598# +A red potion that has been condensed to Reduces its weight and Increases its effectiveness. +-------------------------- +Type: Restorative +Heal: 45 ~ 65 HP +Weight: 1 +# +599# +An orange potion that has been condensed to Reduces its weight and Increases its effectiveness. +-------------------------- +Type: Restorative +Heal: 105 ~ 145 HP +Weight: 1 +# +601# +The wings cut from fly to be made into enchanted item. +-------------------------- +Type: Supportive +Effect: Teleport to random cell +Weight: 5 +# +602# +An enchanted butterfly's wing that instantly sends its user to his Save Point when waved in the air. +-------------------------- +Type: Supportive +Effect: Teleport user to Save Point +Weight: 5 +# +603# +A mysterious blue box that seems to hold something inside, but you'll have to open it to find out. +-------------------------- +Type: Container +Effect: Gives 1 random item +Weight: 20 +# +604# +A twig which contains the mysterious power of eternity. It can summon a living creature... +-------------------------- +Type: Usable +Effect: Summons 1 random monster +Weight: 5 +# +605# +A medicine made from grinded Mint that is used to ease pain and relax muscle tension. It's a popular painkiller because of its potency. +-------------------------- +Type: Supportive +Effect: Casts Endure effect on user +Weight: 10 +# +606# +A basic herbal emollient made from Aloe extract. Despite its stench and sour taste, it's addictive if regularly eaten. +-------------------------- +Type: Supportive +Effect: Casts Provoke effect on user +Weight: 10 +# +607# +Fruit from the Yggdrasil tree which brings life to our world. Its fantastic taste is full of life. +-------------------------- +Type: Restorative +Heal: 100% HP, 100% SP +Weight: 30 +# +608# +Seed from the Yggdrasil tree which holds our world together. It has a weird, energizing pungence. +-------------------------- +Type: Restorative +Heal: 50% HP, 50% SP +Weight: 30 +# +609# +A forbidden talisman that can reanimate the dead, resulting in a walking corpse or undead zombie. +-------------------------- +Type: Usable +Weight: 10 +# +610# +Leaf from the Yggdrasil tree which maintains the mortal coil. +-------------------------- +Type: Restorative +Effect: Revive KO'ed character +Weight: 10 +# +611# +A magnifying glass used for appraises unidentified items and equipment. Use [Ctrl +Right Click] directly on an unknown item to identify it. +-------------------------- +Type: Tool +Effect: Identifies unknown item +Weight: 5 +# +612# +A disposable, miniature blast furnace that can be easily carried. Used to manufacture metals. +note: Only Blacksmith classes can use this. +-------------------------- +Type: Tool +Weight: 20 +# +613# +A disposable hammer made out of well-tempered steel. +note: Only Blacksmith classes can use this. +-------------------------- +Type: Tool +Effect: Forges Level 1 weapon +Weight: 20 +# +614# +A disposable hammer made out of pure gold. +note: Only Blacksmith classes can use this. +-------------------------- +Type: Tool +Effect: Forges Level 2 weapon +Weight: 30 +# +615# +A disposable hammer made out of Oridecon. +note: Only Blacksmith classes can use this. +-------------------------- +Type: Tool +Effect: Forges Level 3 weapon +Weight: 40 +# +616# +An antique album in which the power of a mysterious Card item is contained... +-------------------------- +Type: Container +Effect: Gives 1 random card +Weight: 5 +# +617# +An old purple box holding contents that are a mystery until it is opened. +-------------------------- +Type: Container +Effect: Gives 1 random item +Weight: 20 +# +618# +A rolled up piece of parchment, now brittle with age, on which faded text can scarcely be read. +-------------------------- +Type: Usable +Weight: 2 +# +619# +An apple that isn't ripe enough for humans to eat. +-------------------------- +Type: Taming Item +Monster: Poring +Weight: 5 +# +620# +A small bottle of orange juice. +-------------------------- +Type: Taming Item +Monster: Drops +Weight: 5 +# +621# +A herb that is too bitter for the human palate. +-------------------------- +Type: Taming Item +Monster: Poporing +Weight: 5 +# +622# +A fragrant carrot colored with all the hues of the rainbow. +-------------------------- +Type: Taming Item +Monster: Lunatic +Weight: 5 +# +623# +A rather suave looking Earthworm gifted with womanizing debonairness. +-------------------------- +Type: Taming Item +Monster: Picky +Weight: 5 +# +624# +A rotting, dirty fish that attracts flies. +-------------------------- +Type: Taming Item +Monster: Chonchon +Weight: 5 +# +625# +A rusty piece of iron that would only interest scavengers and vermin. +-------------------------- +Type: Taming Item +Monster: Steel Chonchon +Weight: 5 +# +626# +A fetid drink made of monster blood. +-------------------------- +Type: Taming Item +Monster: Hunter Fly +Weight: 5 +# +627# +Sweet, luscious, full bodied milk. +-------------------------- +Type: Taming Item +Monster: Savage Bebe +Weight: 5 +# +628# +A tough, chewy bone that has been dried in the sun. +-------------------------- +Type: Taming Item +Monster: Baby Desert Wolf +Weight: 5 +# +629# +A flower that has been miraculously blessed with the gift of song. +-------------------------- +Type: Taming Item +Monster: Rocker +Weight: 5 +# +630# +A dewy, green moss that grows in cool places. +-------------------------- +Type: Taming Item +Monster: Spore +Weight: 5 +# +631# +A plant that contains poisons that would harm most living creatures. +-------------------------- +Type: Taming Item +Monster: Poison Spore +Weight: 5 +# +632# +An Earthworm that stopped caring about its figure years ago. +-------------------------- +Type: Taming Item +Monster: Pecopeco +Weight: 5 +# +633# +A baked sweet potato with an appetizing scent. +-------------------------- +Type: Taming Item +Monster: Smokie +Weight: 5 +# +634# +A premium quality banana grown in the tropics. +-------------------------- +Type: Taming Item +Monster: Yoyo +Weight: 5 +# +635# +A trophy awarded to the bravest of Orcs. +-------------------------- +Type: Taming Item +Monster: Orc Warrior +Weight: 5 +# +636# +An old, heartfelt letter that has never been delivered since it has no recipient. +-------------------------- +Type: Taming Item +Monster: Munak +Weight: 5 +# +637# +A generations old broom that is handed down within a family. +-------------------------- +Type: Taming Item +Monster: Dokkaebi +Weight: 5 +# +638# +A silver knife that is a symbol of a virgin's chastity. +-------------------------- +Type: Taming Item +Monster: Sohee +Weight: 5 +# +639# +A fancy, intricately decorated bracelet. +-------------------------- +Type: Taming Item +Monster: Isis +Weight: 5 +# +640# +A stone that softly glimmers with faint light. +-------------------------- +Type: Taming Item +Monster: Petite +Weight: 5 +# +641# +A contract made with the realm of Darkness. +-------------------------- +Type: Taming Item +Monster: Deviruchi +Weight: 5 +# +642# +A forbidden book in which the secret for summoning high Level demons is detailed. +-------------------------- +Type: Taming Item +Monster: Baphomet Jr. +Weight: 5 +# +643# +A portable incubator that is used to hatch Cute Pet monster eggs. +-------------------------- +Type: Tool +Effect: Hatch monster egg +Weight: 3 +# +644# +A box that contains some sort of present. +-------------------------- +Type: Container +Effect: Gives 1 random item +Weight: 20 +# +645# +Potion that stimulates concentration. Affects the attack speed of its consumer. +-------------------------- +Type: Stat booster +Effect: Increases attack speed +Effect duration: 30 minutes +Weight: 10 +# +656# +Potion that possesses the effect of awakening. It is a mysterious medicine that helps to increase the character's attack speed. +-------------------------- +Type: Stat booster +Effect: Increases attack speed +Effect duration: 30 minutes +Weight: 15 +-------------------------- +Requirement: +Base Level 40 +All classes except Acolyte, Priest, Bard and Dancer +# +657# +A very special potion that enrages the character and turns him into a berserker and increases the character's attack speed. +-------------------------- +Type: Stat booster +Effect: Increases attack speed +Effect duration: 30 minutes +Weight: 20 +-------------------------- +Requirement: +Base Level 85 +Swordsman, Merchant and Wizard classes; Rogue and Magician, Gunslinger Jobs, Taekwon, Taekwon Master +# +658# +A symbol of solidarity that evokes a feeling of nobility to those who see it. +-------------------------- +Type: Supportive +Effect: Gives EXP to guild +Weight: 50 +# +659# +An old book rumored to be enchanted by a girl whose name has been forgotten with time. +-------------------------- +Type: Taming Item +Monster: Bongun +Weight: 5 +# +660# +A candle that may have a mysterious purpose. +-------------------------- +Type: Taming Item +Monster: Zherlthsh +Weight: 5 +# +661# +A soft apron that is double stitched for better quality. +-------------------------- +Type: Taming Item +Monster: Alice +Weight: 5 +# +662# +A badge made out of bronze that was used in an ancient asian country. +It was given to government officials who went on business trips and they could use this badge to rent horses anywhere. +-------------------------- +Type: Supportive +Effect: Increases movement speed +Effect duration: 3 minutes +Weight: 3 +# +663# +This is a popular food in traditional Korean festivals. +It's made by filling a woven straw, cone shaped container with rice and then pine needles are used to cover it. +-------------------------- +Type: Restorative +Heal: 10% HP +Weight: 1 +# +664# +A box which contains a gift. +-------------------------- +Type: Container +Effect: Gives 1 random item +Weight: 20 +# +665# +A box which contains a gift. +-------------------------- +Type: Container +Effect: Gives 1 random item +Weight: 20 +# +666# +A box which contains a gift. +-------------------------- +Type: Container +Effect: Gives 1 random item +Weight: 20 +# +667# +A box which contains a gift. +-------------------------- +Type: Container +Effect: Gives 1 random item +Weight: 20 +# +668# +A small red packet, seemingly containing some exciting gift, that is given by adults to children. +-------------------------- +Type: Container +Effect: Gives some zeny +Weight: 2 +# +669# +A soup made with pieces of rice cake. +It is said that having a bowl of this soup on New Year's Day will make you one year older. +Young children would abuse this custom to reach legal driving age until the law was changed. +-------------------------- +Type: Supportive +Weight: 10 +# +670# +A bag filled with gold coins. +-------------------------- +Weight: 40 +# +671# +A coin made of gold. +When used, adds 1 gold point to roulette game. +If 10 gold points is used, Roulette will start at 3rd line. +-------------------------- +Weight: 0 +# +672# +A bag filled with bronze coins. +-------------------------- +Weight: 40 +# +673# +A coin made of bronze. +-------------------------- +Weight: 4 +# +674# +A coin made of mythril. +-------------------------- +Weight: 4 +# +675# +A coin made of silver. +When used, add 1 silver points to roulette games. +If 10 silver points is used, Roulette will start at 5th line. +-------------------------- +Weight: 0 +# +676# +A bag filled with silver coins. +-------------------------- +Weight: 40 +# +677# +A coin made of platinum. +-------------------------- +Weight: 4 +# +678# +A skeleton shaped bottle which contains deadly poison. +note: Only Assassin Cross job can use this. +-------------------------- +Type: Skill necessity +Weight: 10 +# +679# +A herbal medicine from an old eastern country that is rumored able to cure every illness. +-------------------------- +Type: Usable +Weight: 30 +# +680# +A carnation which is given to parents or teachers on special occassions. +-------------------------- +Type: Restorative +Heal: 20% SP +Weight: 100 +# +681# +A picture album of memories of the wedding ceremony or honeymoon. +(Married people only) +-------------------------- +Type: Usable +Weight: 1 +# +682# +A magical drink which increases attack strength when it is taken. +-------------------------- +Type: Supportive +Weight: 10 +# +683# +An enchanted herb which Increases Magical Damage strength when eaten. +-------------------------- +Type: Supportive +Weight: 5 +# +684# +A tropical delicacy known as the king of fruits. It's big, green and heavy and is covered in thorns. +Its odor may offend some people, but it tastes delicious. +-------------------------- +Type: Stat booster +Effect: ATK +10, MATK +10 +Effect duration: 10 minutes +Weight: 30 +# +685# +A word which means \ + in a desert country and a month of holy moon. +During this period, everyone goes on a fast and lead an acentic life. +-------------------------- +Type: Restorative +Heal: 100% HP, 50% SP +Weight: 30 +# +686# +A spell scroll which was made by the essence of ancient magic. +-------------------------- +Type: Magic scroll +Cast: Level 3 Earth Spike +Weight: 1 +# +687# +A spell scroll which was made by the essence of ancient magic. +-------------------------- +Type: Magic scroll +Cast: Level 5 Earth Spike +Weight: 1 +# +688# +A spell scroll which was made by the essence of ancient magic. +-------------------------- +Type: Magic scroll +Cast: Level 3 Cold Bolt +Weight: 1 +# +689# +A spell scroll which was made by the essence of ancient magic. +-------------------------- +Type: Magic scroll +Cast: Level 5 Cold Bolt +Weight: 1 +# +690# +A spell scroll which was made by the essence of ancient magic. +-------------------------- +Type: Magic scroll +Cast: Level 3 Fire Bolt +Weight: 1 +# +691# +A spell scroll which was made by the essence of ancient magic. +-------------------------- +Type: Magic scroll +Cast: Level 5 Fire Bolt +Weight: 1 +# +692# +A spell scroll which was made by the essence of ancient magic. +-------------------------- +Type: Magic scroll +Cast: Level 3 Lightning Bolt +Weight: 1 +# +693# +A spell scroll which was made by the essence of ancient magic. +-------------------------- +Type: Magic scroll +Cast: Level 5 Lightning Bolt +Weight: 1 +# +694# +A spell scroll which was made by the essence of ancient magic. +-------------------------- +Type: Magic scroll +Cast: Level 3 Soul Strike +Weight: 1 +# +695# +A spell scroll which was made by the essence of ancient magic. +-------------------------- +Type: Magic scroll +Cast: Level 5 Soul Strike +Weight: 1 +# +696# +A spell scroll which was made by the essence of ancient magic. +-------------------------- +Type: Magic scroll +Cast: Level 1 Fire Ball +Weight: 1 +# +697# +A spell scroll which was made by the essence of ancient magic. +-------------------------- +Type: Magic scroll +Cast: Level 5 Fire Ball +Weight: 1 +# +698# +A spell scroll which was made by the essence of ancient magic. +-------------------------- +Type: Magic scroll +Cast: Level 1 Fire Wall +Weight: 1 +# +699# +A spell scroll which was made by the essence of ancient magic. +-------------------------- +Type: Magic scroll +Cast: Level 5 Fire Wall +Weight: 1 +# +700# +A spell scroll which was made by the essence of ancient magic. +-------------------------- +Type: Magic scroll +Cast: Level 1 Frost Diver +Weight: 1 +# +701# +A trap that uses sticky, sweet scented liquid to lure and ensnare Thief Bugs. Handy if bugs are totally infesting a home. +-------------------------- +Type: Valuable +Weight: 20 +# +702# +Bottled blood from a freshly slain beast. It's usually used to lure other animals. +-------------------------- +Type: Collectible +Weight: 10 +# +703# +A common plant with a mildly curative effect, its leaves can give a nice and smoothing sensation. +-------------------------- +Type: Collectible +Weight: 1 +# +704# +A rare plant with curative properties that only grows deep in the forest during certain times of the year. +-------------------------- +Type: Collectible +Weight: 1 +# +705# +A plant with three heart shaped leaves that is plentiful in meadows. +-------------------------- +Type: Collectible +Weight: 1 +# +706# +An extremely rare clover with four leaves. Legends say that merely holding a Four Leaf Clover is a sign of great fortune to come. +-------------------------- +Type: Valuable +Weight: 1 +# +707# +A mysterious plant that sings melancholic songs under a full moon. Legend says it's a woman grieving over the loss of her lover that has been reborn. +-------------------------- +Type: Valuable +Weight: 1 +# +708# +A white flower containing oils that can relieve pain and aches. Strangely, only a few remember how to use it to cause memory loss. +-------------------------- +Type: Collectible +Weight: 1 +# +709# +A powerful hallucinogen once ground and eaten, the growing of Izidor has been prohibited because of its awesome addictiveness. +-------------------------- +Type: Valuable +Weight: 1 +# +710# +Rarely seen by humans, this flower supposedly shines brilliantly under the light of the moon. +-------------------------- +Type: Valuable +Weight: 1 +# +711# +A delicate and fragile plant that is still in the early stages of growth. +-------------------------- +Type: Collectible +Weight: 1 +# +712# +An ordinary, thornless wildflower that doesn't have any particular scent. +-------------------------- +Type: Collectible +Weight: 1 +# +713# +An empty bottle that can be used for carrying liquid. +-------------------------- +Type: Essential +Weight: 2 +# +714# +Merely owning this gloriously resplendent gem is said to be a sign of being chosen by fate to wield great power. +-------------------------- +Type: Valuable +Weight: 10 +# +715# +An enchanted crystal that is used in conjuction with certain magic spells. Once used, it is powerless and immediately destroyed. +-------------------------- +Type: Essential +Weight: 0.1 +# +716# +An enchanted crystal that is used in conjuction with certain magic spells. Once used, it is powerless and immediately destroyed. +-------------------------- +Type: Essential +Weight: 0.1 +# +717# +An enchanted crystal that is used in conjuction with certain magic spells. Once used, it is powerless and immediately destroyed. +-------------------------- +Type: Essential +Weight: 0.1 +# +718# +A dark red jewel that is the birthstone for people born in January. +-------------------------- +Type: Collectible +Weight: 10 +# +719# +A purple jewel that is the birthstone for people born in February. +-------------------------- +Type: Collectible +Weight: 10 +# +720# +A clear, sky blue jewel that is the birthstone for people born in March. +-------------------------- +Type: Collectible +Weight: 10 +# +721# +A brilliant, green jewel that is the birthstone for people born in May. +-------------------------- +Type: Collectible +Weight: 10 +# +722# +A pink jewel that is the birthstone for people born in June. +-------------------------- +Type: Collectible +Weight: 10 +# +723# +A deep maroon jewel that is the birthstone for people born in July. +-------------------------- +Type: Collectible +Weight: 10 +# +724# +A ruby containing mysterious powers. +-------------------------- +Type: Valuable +Weight: 10 +# +725# +An onyx with alternating brown and white bands of sard. It's the birthstone for people born in August. +-------------------------- +Type: Collectible +Weight: 10 +# +726# +A dark blue gem that is the birthstone for people born during September. +-------------------------- +Type: Collectible +Weight: 10 +# +727# +A gem displaying an array of brilliant colors that is the birthstone for people born in October. +-------------------------- +Type: Collectible +Weight: 10 +# +728# +A golden gem that is the birthstone for people born in November. +-------------------------- +Type: Collectible +Weight: 10 +# +729# +A dazzling white-blue gem that is the birthstone for the month of December. +-------------------------- +Type: Collectible +Weight: 10 +# +730# +A small, twinkling and transparent gem that can be sold at a good price. +-------------------------- +Type: Collectible +Weight: 10 +# +731# +A medium size, sparkling transparent gem that can be sold at a high price. +-------------------------- +Type: Collectible +Weight: 10 +# +732# +A huge, dazzling gem that can be sold at an outrageous price. +-------------------------- +Type: Collectible +Weight: 10 +# +733# +A damaged diamond with obvious imperfections that won't sell for much zeny. +-------------------------- +Type: Collectible +Weight: 10 +# +734# +A red frame that would make a nice present. +-------------------------- +Type: Collectible +Weight: 20 +# +735# +Ancient Korean porcelain made of blue ceramic and crafted by a true master. +-------------------------- +Type: Collectible +Weight: 50 +# +736# +A clean, white plate crafted by a Chinese master. It's a nice present for the ladies. +-------------------------- +Type: Collectible +Weight: 30 +# +737# +A black colored ladle, made out of an especially strong glowing material. +-------------------------- +Type: Collectible +Weight: 5 +# +738# +A case for containing pencils. It'd be a nice gift for artists, writers, students and the like +-------------------------- +Type: Collectible +Weight: 10 +# +739# +Make-up for rich women made of extracts from plants and animals. When applied to the skin, it shines in a lustrous, attractive red color. +-------------------------- +Type: Collectible +Weight: 1 +# +740# +A cute cotton doll that's a favorite for little girls. +Can be traded for a Candy Cane if You bring this doll to Elinalberta,117,135,0,100,0,0 in Alberta. +-------------------------- +Type: Collectible +Weight: 10 +# +741# +A doll made to resemble a Poring monster. Everyone likes it for its cuteness. +Can be traded for a Candy if You bring this doll to Elinalberta,117,135,0,100,0,0 in Alberta. +-------------------------- +Type: Collectible +Weight: 10 +# +742# +A doll made in the image of a Chonchon monster. +Most people feel a little repulsed by this doll... +Can be traded for a Candy Cane if You bring this doll to Elinalberta,117,135,0,100,0,0 in Alberta. +-------------------------- +Type: Collectible +Weight: 10 +# +743# +A doll that looks just like a Spore monster. +Can be traded for 5 Well-Baked Cookie if You bring this doll to Elinalberta,117,135,0,100,0,0 in Alberta. +-------------------------- +Type: Collectible +Weight: 10 +# +744# +A bunch of flowers that is given to express love, thanks or appreciation. +-------------------------- +Type: Collectible +Weight: 5 +# +745# +A small bouquet thrown by brides during the wedding ceremony. The single woman who catches it is the next to be married, supposedly. +-------------------------- +Type: Collectible +Weight: 5 +# +746# +A toy for young boys that's sort of like a marble. +But not really. +-------------------------- +Type: Collectible +Weight: 5 +# +747# +A gorgeous mirror made with polished crystal that is considered an essential for every woman. +-------------------------- +Type: Collectible +Weight: 5 +# +748# +A symbol of eternal love, this enchanted rose will never wither. However, it is rare and expensive. +-------------------------- +Type: Collectible +Weight: 1 +# +749# +Sculpted out of ice by masters in the Arctic, this unique and beautiful rose makes a great gift. +-------------------------- +Type: Collectible +Weight: 1 +# +750# +A doll made to resemble Baphomet, enemy of all that is righteous. It is a dollmaker's masterpiece. +Can be traded for 5 Panacea if You bring this doll to Elinalberta,117,135,0,100,0,0 in Alberta. +-------------------------- +Type: Collectible +Weight: 10 +# +751# +A doll made to resemble Osiris, king of darkness. Without a doubt, it is a dollmaker's masterpiece. +Can be traded for 2 Fruit of Mastela if You bring this doll to Elinalberta,117,135,0,100,0,0 in Alberta. +-------------------------- +Type: Collectible +Weight: 10 +# +752# +A doll made to resemble Rocker, the grasshopper that loves to play its violin in the fields. +Can be traded for 7 Banana Juice if You bring this doll to Elinalberta,117,135,0,100,0,0 in Alberta. +-------------------------- +Type: Collectible +Weight: 10 +# +753# +A doll made to resemble one of the Yoyos. These intelligent monkeys live in groups and are very familiar with humans. +Can be traded for a Seed of Yggdrasil if You bring this doll to Elinalberta,117,135,0,100,0,0 in Alberta. +-------------------------- +Type: Collectible +Weight: 10 +# +754# +A doll made to resemble Smokie, the racoon that possibly has the power of invisibility. +Can be traded for 3 Piece of Cake if You bring this doll to Elinalberta,117,135,0,100,0,0 in Alberta. +-------------------------- +Type: Collectible +Weight: 10 +# +756# +Raw ore that mostly consists of Oridecon metal. +-------------------------- +Type: Forging material +Weight: 20 +# +757# +Raw ore that mostly consists of Elunium metal. +-------------------------- +Type: Forging material +Weight: 20 +# +766# +Nutcracker's missing hairs are collected and tied together. +Some smell of the beast remains. + +Perfect for fighting warnuts! +-------------------------- +Weight: 0 +# +901# +A braided pigtail that has been cut from the head of a young girl. +-------------------------- +Type: Collectible +Weight: 1 +# +902# +Some roots from trees can be used as medicine, but most of them are fibrous enough to be used as rope. +-------------------------- +Type: Collectible +Weight: 1 +# +903# +Merely a severed reptile's tongue. +-------------------------- +Type: Collectible +Weight: 1 +# +904# +A tail severed from a scorpion. +-------------------------- +Type: Collectible +Weight: 1 +# +905# +Some stems from plants can be used to in making certain medicines. +-------------------------- +Type: Collectible +Weight: 1 +# +906# +A single scale from a Worm Tail monster. +-------------------------- +Type: Collectible +Weight: 1 +# +907# +A viscous plant substance used in the production of certain types of goods. +-------------------------- +Type: Collectible +Weight: 1 +# +908# +Frog eggs. +-------------------------- +Type: Collectible +Weight: 1 +# +909# +A small crystallization created by some monsters. +-------------------------- +Type: Collectible +Weight: 1 +# +910# +A small crystallization created by some monsters. +-------------------------- +Type: Collectible +Weight: 1 +# +911# +A small crystallization created by some monsters. +-------------------------- +Type: Collectible +Weight: 1 +# +912# +A small crystallization created by some monsters. +-------------------------- +Type: Collectible +Weight: 1 +# +913# +Farmiliar's sharpened tooth. +-------------------------- +Type: Collectible +Weight: 1 +# +914# +A clump of monster fur and fuzz that can be used to make thread and fabric. +-------------------------- +Type: Collectible +Weight: 1 +# +915# +Skin from a larva that has been shed or peeled off. +-------------------------- +Type: Collectible +Weight: 1 +# +916# +A bird's feather that can be used in decor or in fabric creation. +-------------------------- +Type: Collectible +Weight: 1 +# +917# +A sharp talon from a bird's foot. +-------------------------- +Type: Collectible +Weight: 1 +# +918# +A webbed foot cut from a monster's hind leg. +-------------------------- +Type: Collectible +Weight: 1 +# +919# +Animal hide that can be used in making clothes, coverings or beddings. +-------------------------- +Type: Collectible +Weight: 1 +# +920# +A claw severed from a wolf's paw. +-------------------------- +Type: Collectible +Weight: 1 +# +921# +A spore discharged from a mushroom. +-------------------------- +Type: Collectible +Weight: 1 +# +922# +A cuspid wrenched out of from a gruesome Orc's jaw. +-------------------------- +Type: Collectible +Weight: 1 +# +923# +Baphomet's horn is a symbol representing evil. +Can be traded for an Antler if You bring 20 of this to Cherokee122,53,0,100,0,0 in Alberta. +-------------------------- +Type: Collectible +Weight: 1 +# +924# +Butterfly wing powder that sparkles with the power of fantasy. +-------------------------- +Type: Collectible +Weight: 1 +# +925# +A bird's beak. Waste not want not. +-------------------------- +Type: Collectible +Weight: 1 +# +926# +Scales from a snake that can be used to make some rather flamboyant clothes. +-------------------------- +Type: Collectible +Weight: 1 +# +928# +Antennae that serve as sense organs for insects. +-------------------------- +Type: Collectible +Weight: 1 +# +929# +A heart which will never stop beating. It contains some sort of dreadful power. +-------------------------- +Type: Collectible +Weight: 1 +# +930# +Old, dirty bandage that's so soiled, it's almost worthless. +-------------------------- +Type: Collectible +Weight: 1 +# +931# +A small sculpture that serves as the token for every true Orc Warrior. +-------------------------- +Type: Collectible +Weight: 1 +# +932# +A bone taken from an Undead skeleton. +-------------------------- +Type: Collectible +Weight: 1 +# +934# +A box that is buried with the dead. It contains gems and someone's mementos... +-------------------------- +Type: Collectible +Weight: 1 +# +935# +A hard shell that used to protect a monster. +-------------------------- +Type: Collectible +Weight: 1 +# +936# +A shell-like piece of tough monster skin that is covered with hard scales. +-------------------------- +Type: Collectible +Weight: 1 +# +937# +A sharp, poisonous fang from a monster. +-------------------------- +Type: Collectible +Weight: 1 +# +938# +Mysteriously sticky liquid. +-------------------------- +Type: Collectible +Weight: 1 +# +939# +A stinger from a hornet or bee. +-------------------------- +Type: Collectible +Weight: 1 +# +940# +A Rocker's hind leg. +-------------------------- +Type: Collectible +Weight: 1 +# +941# +A ring placed in a cow's nose so that it can be steered more easily. +-------------------------- +Type: Collectible +Weight: 1 +# +942# +A prehensile tail from a Yoyo. +-------------------------- +Type: Collectible +Weight: 1 +# +943# +A solid, durable shell taken from a monster. +-------------------------- +Type: Collectible +Weight: 1 +# +944# +A \ + shaped piece of iron fitted on a horse's hoof for its protection. +-------------------------- +Type: Collectible +Weight: 1 +# +945# +A leaf that gives Smokies the power to change form and become invisible. +-------------------------- +Type: Collectible +Weight: 1 +# +946# +A hard, spiral shaped shell used by Snails. +-------------------------- +Type: Collectible +Weight: 1 +# +947# +Hard and sharp horn from a monster's head. +-------------------------- +Type: Collectible +Weight: 1 +# +948# +A lazy bear's foot that supposedly has a unique flavor and the power to restore male vigor. +-------------------------- +Type: Collectible +Weight: 1 +# +949# +A feather that boasts full, lustrous barbs used for making clothes of the highest quality. +-------------------------- +Type: Collectible +Weight: 1 +# +950# +The heart of a mermaid. +-------------------------- +Type: Collectible +Weight: 1 +# +951# +A fish monster's fin. +-------------------------- +Type: Collectible +Weight: 1 +# +952# +A sharp needle from a Muka cactus monster. +-------------------------- +Type: Collectible +Weight: 1 +# +953# +A heart constructed entirely out of stone. +-------------------------- +Type: Collectible +Weight: 1 +# +954# +A shimmering, reflective scale. +-------------------------- +Type: Collectible +Weight: 1 +# +955# +Shed skin from worms and insects. +-------------------------- +Type: Collectible +Weight: 1 +# +956# +Part of a fish's breathing apparatus. +-------------------------- +Type: Collectible +Weight: 1 +# +957# +A putrid, incredibly pungent corpse's nail. +-------------------------- +Type: Collectible +Weight: 1 +# +958# +A complete set of corpse's teeth. Well, as complete as it can get. +-------------------------- +Type: Collectible +Weight: 1 +# +959# +A nasty scale with a horribly offensive odor. +-------------------------- +Type: Collectible +Weight: 1 +# +960# +A crustacean's claw. +-------------------------- +Type: Collectible +Weight: 1 +# +961# +The shell of a marine mollusk. +-------------------------- +Type: Collectible +Weight: 1 +# +962# +A flexible, prehensile and boneless appendage. +-------------------------- +Type: Collectible +Weight: 1 +# +963# +A scale that is much sharper than a razor. +-------------------------- +Type: Collectible +Weight: 1 +# +964# +A hard crab shell that smells horrible. +-------------------------- +Type: Collectible +Weight: 1 +# +965# +A hard shell taken from a dead clam. +-------------------------- +Type: Collectible +Weight: 1 +# +966# +Muscular and fatty clam tissue that can be cooked in all sorts of ways. +-------------------------- +Type: Collectible +Weight: 1 +# +967# +A hard shell that obviously failed to protect a turtle. +-------------------------- +Type: Collectible +Weight: 1 +# +968# +An emblem given to an Orc Warrior that is proof of his heroism. +-------------------------- +Type: Valuable +Weight: 1 +# +969# +Hard and stable metal that emits shines like sun. Undoubtedly, it is more precious than other metal due its rareness, can be sold to Merchants in town. +-------------------------- +Type: Valuable +Weight: 20 +# +970# +Liquid that has a unique flavor that has to be kept in a sealed container to prevent it from being evaporated. +It's easy to catch fire and can dissolve the materials that can't be dissolved by water. +-------------------------- +Type: Essential +Weight: 3 +# +971# +A rare liquid that can't mix with water, usually used to make neutralizer. +-------------------------- +Type: Essential +Weight: 3 +# +972# +The short form for Karvodailnirol. A rare liquid that can't mix with water,usually used to make admixture. +-------------------------- +Type: Essential +Weight: 3 +# +973# +Used to dye fabric or hair. +-------------------------- +Type: Essential +Weight: 7 +# +974# +Used to dye fabric or hair. +-------------------------- +Type: Essential +Weight: 7 +# +975# +Made of Red Herb,can be used to dye the fabric or hair Red. +-------------------------- +Type: Essential +Weight: 15 +# +976# +Made of Yellow Herb,can be used to dye the fabric or hair Yellow. +-------------------------- +Type: Essential +Weight: 15 +# +978# +Made of Blue Herb,can be used to dye the fabric or hair Blue. +-------------------------- +Type: Essential +Weight: 15 +# +979# +Made of Green Herb,can be used to dye the fabric or hair Green. +-------------------------- +Type: Essential +Weight: 15 +# +980# +Made of Red and Yellow Herb,can be used to dye the fabric or hair Orange. +-------------------------- +Type: Essential +Weight: 15 +# +981# +Made of Red and Blue Herb,can be used to dye the fabric or hair Purple. +-------------------------- +Type: Essential +Weight: 15 +# +982# +Made of White Herb,can be used to dye the fabric or hair White. +-------------------------- +Type: Essential +Weight: 15 +# +983# +Made of many kinds of Herbs,can be used to dye the fabric or hair Black. +-------------------------- +Type: Essential +Weight: 15 +# +984# +Mysterious Metal known as the Metal of Gods. It is harder than anything and can cause great destruction when made into weapons. +Used to strengthen Level 3 and Level 4 weapons. +-------------------------- +Type: Forging material +Weight: 20 +# +985# +A very light, non-toxic metal used for refining and toughening Armor. +-------------------------- +Type: Forging material +Weight: 20 +# +986# +A smithing tool on which heated metals are placed so that they can be shaped by hammering. Used in the making of common products. +-------------------------- +Type: Forging material +Weight: 50 +# +987# +An anvil, made of pure Oridecon, that's used to make quality goods. +-------------------------- +Type: Forging material +Weight: 70 +# +988# +An anvil, made of pure Gold, that's used in the manufacture of high quality products. +-------------------------- +Type: Forging material +Weight: 90 +# +989# +An anvil, made of pure Emperium, that's used to manufacture products of the highest quality. +-------------------------- +Type: Forging material +Weight: 100 +# +990# +A vivid red ore that glows from inside with an orange yellow light. +Possesses Fire attribute and can form the enchanted stone, Flame Heart, when Refined. +-------------------------- +Type: Essential +Weight: 5 +# +991# +A sky colored ore that glows with the light of the deep ocean depths. +Possesses the Water attribute and forms the enchanted stone, Mystic Frozen, when Refined. +-------------------------- +Type: Essential +Weight: 5 +# +992# +A lemon colored ore that contains a pale, greenish light. +Possesses the Wind attribute and forms the enchanted stone, Rough Wind, when Refined. +-------------------------- +Type: Essential +Weight: 5 +# +993# +A blue-green ore imbued with a faint, mesmerizing light. +Possesses the Earth attribute and forms the enchanted stone, Great Nature, when Refined. +-------------------------- +Type: Essential +Weight: 5 +# +994# +A dark red, heart shaped stone enchanted with the Fire attribute. +-------------------------- +Type: Essential +Weight: 30 +# +995# +A light blue, crystal stone enchanted with the Water attribute. +-------------------------- +Type: Essential +Weight: 30 +# +996# +A pale green, Lightning Bolt shaped stone imbued with the Wind attribute. +-------------------------- +Type: Essential +Weight: 30 +# +997# +A citrus colored, bud shaped stone enchanted with the earth attribute. +-------------------------- +Type: Essential +Weight: 30 +# +998# +Malleable, silver-white metal that's very light weight and easy to temper. Commonly used to create arms and other goods. +-------------------------- +Type: Forging material +Weight: 5 +# +999# +An iron and carbon alloy known for its structural durability and usually used in the crafting of high-quality arms. +-------------------------- +Type: Forging material +Weight: 10 +# +1000# +A small stellar crystal, fallen from the heavens, which can be used to craft strengthened weapons. +-------------------------- +Type: Forging material +Weight: 10 +# +1001# +Stardust which can form a Star Crumb after being Refined. +-------------------------- +Type: Forging material +Weight: 1 +# +1002# +An impure ore that forms Iron after being Refined. +-------------------------- +Type: Forging material +Weight: 15 +# +1003# +A black mineral substance that can form Steel once it is combined with Iron. +-------------------------- +Type: Forging material +Weight: 5 +# +1004# +A token which shows a knight's loyalty to his lord. +-------------------------- +Type: Collectible +Weight: 10 +# +1005# +A hammer for the Blacksmith class that is used for refining. +-------------------------- +Type: Collectible +Weight: 80 +# +1006# +A spell book containing powerful, ancient magic. +-------------------------- +Type: Collectible +Weight: 3 +# +1007# +A mysterious necklace that is rumored to possess the power of clairvoyance. +-------------------------- +Type: Essential +Weight: 4 +# +1008# +A necklace given from a master once one earns the honor of joining the Assassin Guild. +-------------------------- +Type: Essential +Weight: 10 +# +1009# +A figure of a hand that contains great religious symbolism. +-------------------------- +Type: Valuable +Weight: 10 +# +1010# +A metal that can be used to strengthen and upgrade Level 1 Weapons. +-------------------------- +Type: Forging material +Weight: 20 +# +1011# +A metal that can be used to strengthen and upgrade Level 2 Weapons. +-------------------------- +Type: Forging material +Weight: 20 +# +1012# +Some skin from the neck of a lizard which lives in the desert. +-------------------------- +Type: Collectible +Weight: 1 +# +1013# +A bug shell that reflects the colors of the rainbow. +-------------------------- +Type: Collectible +Weight: 1 +# +1014# +A tough, sharp jaw from an ant. +-------------------------- +Type: Collectible +Weight: 1 +# +1015# +A tongue cut from a Monster. +It has a disgusting coating of sticky saliva. +-------------------------- +Type: Collectible +Weight: 1 +# +1016# +A thin rat's tail. +-------------------------- +Type: Collectible +Weight: 1 +# +1017# +Whiskers from a mole. +-------------------------- +Type: Collectible +Weight: 1 +# +1018# +A mole's claw that is sturdy enough to dig into the ground. +-------------------------- +Type: Collectible +Weight: 1 +# +1019# +A woody stem from a tree that's useful for lumber. +-------------------------- +Type: Collectible +Weight: 1 +# +1020# +Lustrous, well brushed hair cut from some virgin. +-------------------------- +Type: Collectible +Weight: 1 +# +1021# +Horns from a Dokkaebi which are rumored to bring great fortune to their owner. +-------------------------- +Type: Collectible +Weight: 1 +# +1022# +A set of tails that used to belong to a Nine Tail fox. But not anymore, apparently. +-------------------------- +Type: Collectible +Weight: 1 +# +1023# +A tail severed from a fish monster. +-------------------------- +Type: Collectible +Weight: 1 +# +1024# +Bottled black fluid from Marse the squid that seems to have failed its purpose of providing self defense. +-------------------------- +Type: Collectible +Weight: 1 +# +1025# +A sticky spider's web made of surprisingly strong threadlike fibers. +-------------------------- +Type: Collectible +Weight: 1 +# +1026# +A tough, woody shelled nut from an oak tree. +-------------------------- +Type: Collectible +Weight: 1 +# +1027# +Sharp, hollow quills which used to cover and protect some porcupine. +-------------------------- +Type: Collectible +Weight: 1 +# +1028# +Bristly, tough hair cut from a wild boar. +-------------------------- +Type: Collectible +Weight: 1 +# +1029# +A tiger's hide that's soft, furry, nice and feral. +-------------------------- +Type: Collectible +Weight: 1 +# +1030# +A tiger's paw that's widely known to the elderly as the King of Invigorators. +Can be traded for a Boy's Cap if You bring 10 of this to an old manalberta_in,28,145,0,100,0,0 in Alberta. +-------------------------- +Type: Valuable +Weight: 1 +# +1031# +A sharp, front limb severed from a Mantis. +-------------------------- +Type: Collectible +Weight: 1 +# +1032# +A carnivorous flower with a digestive system very much like the humans. +-------------------------- +Type: Collectible +Weight: 1 +# +1033# +Roots, which resemble human legs, that almost look capable of walking. +-------------------------- +Type: Collectible +Weight: 1 +# +1034# +Hair cut from a Kobold that appears bristly but is actually downy soft. +-------------------------- +Type: Collectible +Weight: 1 +# +1035# +A dragon's cuspid that is sharp enough to pierce through dragon scales. +-------------------------- +Type: Collectible +Weight: 1 +# +1036# +An iridescent dragon's scale that is tough enough to protect from weather and most forms of harm. +-------------------------- +Type: Collectible +Weight: 1 +# +1037# +A tail cut off from a dragon that, sadly, will never grow back. +-------------------------- +Type: Collectible +Weight: 1 +# +1038# +Horns sliced off the head of a little demon. +-------------------------- +Type: Collectible +Weight: 1 +# +1039# +Wings from a little demon which look like those of a small bat. +-------------------------- +Type: Collectible +Weight: 1 +# +1040# +A moustache shaved off an old dwarf that has somehow maintained its entire shape and form. +-------------------------- +Type: Collectible +Weight: 1 +# +1041# +A carriable case with glass panes that allow some contained light to illuminate dark areas. +-------------------------- +Type: Collectible +Weight: 1 +# +1042# +A hind leg that has been cut from a bug. +-------------------------- +Type: Collectible +Weight: 1 +# +1043# +A thick, sharpened fingernail from an Orc. +-------------------------- +Type: Collectible +Weight: 1 +# +1044# +A cuspid pulled out of a cursed Orc's mouth. +-------------------------- +Type: Collectible +Weight: 1 +# +1045# +A ceremonial mask used by an ancient shaman. +-------------------------- +Type: Collectible +Weight: 1 +# +1046# +A sharp forelimb claw removed from a scorpion. +-------------------------- +Type: Collectible +Weight: 1 +# +1047# +A Medusa's head that, naturally, looks pretty sad and depressed. +-------------------------- +Type: Collectible +Weight: 1 +# +1048# +Some of Medusa's hair, which is essentially just a bunch of snakes. +-------------------------- +Type: Collectible +Weight: 1 +# +1049# +A traditional skirt that symbolizes virginity. +-------------------------- +Type: Collectible +Weight: 1 +# +1050# +A bunch of tough, strong tendons. +-------------------------- +Type: Collectible +Weight: 1 +# +1051# +A weird organic clump that seems to be the brain for a Marine Sphere monster. +-------------------------- +Type: Collectible +Weight: 1 +# +1052# +A single, functioning cell taken from some monster. +-------------------------- +Type: Collectible +Weight: 1 +# +1053# +A sharp, serrated tooth pulled from the mouth of a giant deep sea fish. +-------------------------- +Type: Collectible +Weight: 1 +# +1054# +A set of fat lips cut from a giant deep sea fish. +-------------------------- +Type: Collectible +Weight: 1 +# +1055# +A shed skin peeling from an Earthworm. +-------------------------- +Type: Collectible +Weight: 1 +# +1056# +A cubic grain of sand that brightly sparkles. +-------------------------- +Type: Collectible +Weight: 1 +# +1057# +Bottled powder from the wings of a moth. +-------------------------- +Type: Collectible +Weight: 1 +# +1058# +A set of wings cut from a moth. +-------------------------- +Type: Collectible +Weight: 1 +# +1059# +A piece of nearly transparent fabric. +-------------------------- +Type: Collectible +Weight: 1 +# +1060# +A beautiful lock of golden human hair. +-------------------------- +Type: Collectible +Weight: 1 +# +1061# +A bottle of sand that sparkles like the stars and is usually found in witch broom bristles. +-------------------------- +Type: Collectible +Weight: 1 +# +1062# +A pumpkin with a carved, spooky face. +-------------------------- +Type: Collectible +Weight: 1 +# +1063# +A sharp cuspid yanked from some monster's mouth. +-------------------------- +Type: Collectible +Weight: 1 +# +1064# +Ring placed into a horse's pierced nose to help steer it in a certain direction. +-------------------------- +Type: Collectible +Weight: 1 +# +1065# +Necessary item for Trap related skills. +-------------------------- +Type: Skill necessity +Weight: 1 +# +1066# +A tree trunk of wood with an excellent grain. +-------------------------- +Type: Collectible +Weight: 1 +# +1067# +A tree trunk of wood that is nice and solid. +-------------------------- +Type: Collectible +Weight: 1 +# +1068# +A tree trunk of wood that is pretty low quality. +-------------------------- +Type: Collectible +Weight: 1 +# +1069# +A sticky, smelly and poisonous mushroom that's commonly used in medicinal purposes. +-------------------------- +Type: Quest +Weight: 1 +# +1070# +A rubbery scented, gooey mushroom commonly used in medicinal purposes. +-------------------------- +Type: Quest +Weight: 1 +# +1071# +A test tube that contains some sort of unidentified fluid. +-------------------------- +Type: Quest +Weight: 3 +# +1072# +It's a personal letter written by Mahnsoo, chief of the Merchant Guild. +-------------------------- +Type: Quest +Weight: 1 +# +1073# +A delivery voucher with the serial number: 2485741 +-------------------------- +Type: Quest +Weight: 1 +# +1074# +A delivery voucher with the serial number: 2328137 +-------------------------- +Type: Quest +Weight: 1 +# +1075# +A delivery voucher with the serial number: 2989396 +-------------------------- +Type: Quest +Weight: 1 +# +1076# +A delivery voucher with the serial number: 2191737 +-------------------------- +Type: Quest +Weight: 1 +# +1077# +A delivery voucher with the serial number: 3012685 +-------------------------- +Type: Quest +Weight: 1 +# +1078# +A delivery voucher with the serial number: 3487372 +-------------------------- +Type: Quest +Weight: 1 +# +1079# +A delivery voucher with the serial number: 3318702 +-------------------------- +Type: Quest +Weight: 1 +# +1080# +A delivery voucher with the serial number: 3543625 +-------------------------- +Type: Quest +Weight: 1 +# +1081# +A small, wooden box marked with the word \ +. +-------------------------- +Type: Quest +Weight: 120 +# +1082# +A small, wooden box marked with the word \ +. +-------------------------- +Type: Quest +Weight: 120 +# +1083# +A small, wooden box marked with the word \ +. +-------------------------- +Type: Quest +Weight: 120 +# +1084# +A special, one-time use ticket that allows you to use any one of the Kafra Services free of charge. +-------------------------- +Type: Quest +Weight: 1 +# +1085# +A test tube that contains an unidentified substance. +-------------------------- +Type: Quest +Weight: 3 +# +1086# +A test tube that contains an unidentified substance. +-------------------------- +Type: Quest +Weight: 3 +# +1087# +A test tube that contains an unidentified substance. +-------------------------- +Type: Quest +Weight: 3 +# +1088# +A test tube that contains Morocc solution. +-------------------------- +Type: Quest +Weight: 3 +# +1089# +A test tube that contains Payon solution. +-------------------------- +Type: Quest +Weight: 3 +# +1090# +A test tube that contains an unidentified substance. +-------------------------- +Type: Quest +Weight: 3 +# +1091# +A small, wooden box marked with the word \ +. +-------------------------- +Type: Quest +Weight: 120 +# +1092# +An empty test tube that can be used to contain some kind of solution. +-------------------------- +Type: Collectible +Weight: 2 +# +1093# +An empty bottle that can be used to contain potions. +-------------------------- +Type: Collectible +Weight: 1 +# +1094# +A short lock of braided hair. +-------------------------- +Type: Collectible +Weight: 1 +# +1095# +A set of hands taken from the face of a clock. +-------------------------- +Type: Collectible +Weight: 1 +# +1096# +A round shell that looks like it has been rolled up. +-------------------------- +Type: Collectible +Weight: 1 +# +1097# +A worn, tattered page torn from an old book. +-------------------------- +Type: Collectible +Weight: 1 +# +1098# +Wrist restraints that are usually used on prisoners. +-------------------------- +Type: Collectible +Weight: 1 +# +1099# +An old, used prison uniform. +-------------------------- +Type: Collectible +Weight: 1 +# +1101# +A basic one-handed sword. +-------------------------- +Type: One-Handed Sword +Attack: 25 +Weight: 50 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 2 +Novice, Swordsman, Merchant and Thief classes +# +1102# +A basic one-handed sword. +-------------------------- +Type: One-Handed Sword +Attack: 25 +Weight: 50 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 2 +Novice, Swordsman, Merchant and Thief classes +# +1103# +A basic one-handed sword. +-------------------------- +Type: One-Handed Sword +Attack: 25 +Weight: 50 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 2 +Novice, Swordsman, Merchant and Thief classes +# +1104# +A one-handed sword with a rounded blade. +-------------------------- +Type: One-Handed Sword +Attack: 39 +Weight: 60 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 2 +Novice, Swordsman, Merchant and Thief classes +# +1105# +A one-handed sword with a rounded blade. +-------------------------- +Type: One-Handed Sword +Attack: 39 +Weight: 60 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 2 +Novice, Swordsman, Merchant and Thief classes +# +1106# +A one-handed sword with a rounded blade. +-------------------------- +Type: One-Handed Sword +Attack: 39 +Weight: 60 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 2 +Novice, Swordsman, Merchant and Thief classes +# +1107# +A one-handed sword with a thick, flat blade. +-------------------------- +Type: One-Handed Sword +Attack: 53 +Weight: 70 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 2 +Novice, Swordsman, Merchant and Thief classes +# +1108# +A one-handed sword with a thick, flat blade. +-------------------------- +Type: One-Handed Sword +Attack: 53 +Weight: 70 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 2 +Novice, Swordsman, Merchant and Thief classes +# +1109# +A one-handed sword with a thick, flat blade. +-------------------------- +Type: One-Handed Sword +Attack: 53 +Weight: 70 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 2 +Novice, Swordsman, Merchant and Thief classes +# +1110# +A one-handed sword with an elegant blade and crossguard. +-------------------------- +Type: One-Handed Sword +Attack: 70 +Weight: 50 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Novice, Swordsman, Merchant and Thief classes +# +1111# +A one-handed sword with an elegant blade and crossguard. +-------------------------- +Type: One-Handed Sword +Attack: 70 +Weight: 50 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Novice, Swordsman, Merchant and Thief classes +# +1112# +A one-handed sword with an elegant blade and crossguard. +-------------------------- +Type: One-Handed Sword +Attack: 70 +Weight: 50 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Novice, Swordsman, Merchant and Thief classes +# +1113# +A strong, swift one-handed sword with a curved blade. +-------------------------- +Type: One-Handed Sword +Attack: 85 +Weight: 70 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Novice, Swordsman, Merchant and Thief classes +# +1114# +A strong, swift one-handed sword with a curved blade. +-------------------------- +Type: One-Handed Sword +Attack: 85 +Weight: 70 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Novice, Swordsman, Merchant and Thief classes +# +1115# +A strong, swift one-handed sword with a curved blade. +-------------------------- +Type: One-Handed Sword +Attack: 85 +Weight: 70 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Novice, Swordsman, Merchant and Thief classes +# +1116# +A straight bladed sword that the Japanese samurai depended on during battle. +-------------------------- +Type: Two-Handed Sword +Attack: 60 +Weight: 100 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 4 +Swordman classes +# +1117# +A straight bladed sword that the Japanese samurai depended on during battle. +-------------------------- +Type: Two-Handed Sword +Attack: 60 +Weight: 100 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 4 +Swordman classes +# +1118# +A straight bladed sword that the Japanese samurai depended on during battle. +-------------------------- +Type: Two-Handed Sword +Attack: 60 +Weight: 100 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 4 +Swordman classes +# +1119# +One of the most powerful one-handed swords, the Tsurugi was favored by the Japanese samurai. +-------------------------- +Type: One-Handed Sword +Attack: 130 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Swordsman, Merchant and Thief classes +# +1120# +One of the most powerful one-handed swords, the Tsurugi was favored by the Japanese samurai. +-------------------------- +Type: One-Handed Sword +Attack: 130 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Swordsman, Merchant and Thief classes +# +1121# +One of the most powerful one-handed swords, the Tsurugi was favored by the Japanese samurai. +-------------------------- +Type: One-Handed Sword +Attack: 130 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Swordsman, Merchant and Thief classes +# +1122# +A one-handed sword with an elaborately designed hilt. +-------------------------- +Type: One-Handed Sword +Attack: 100 +Weight: 90 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Swordsman, Merchant and Thief classes +# +1123# +A one-handed sword from far-eastern country that known has been used not just for eliminating, but also for training. +-------------------------- +INT +3 +-------------------------- +Type: One-Handed Sword +Attack: 120 +Weight: 90 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Swordsman, Merchant and Thief classes +# +1124# +Crafted by Orcish smiths and used by Orc Warriors, this one-handed sword is symbolic to the Orc tribe. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Sword +Attack: 90 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 5 +Novice, Swordsman, Merchant and Thief classes +# +1125# +A one-handed sword with an elaborately designed hilt. +-------------------------- +Type: One-Handed Sword +Attack: 100 +Weight: 90 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Swordsman, Merchant and Thief classes +# +1126# +A heavy one-handed cavalry sword with a slightly curved blade. +-------------------------- +Type: One-Handed Sword +Attack: 115 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Swordsman, Merchant and Thief classes +# +1127# +A heavy one-handed cavalry sword with a slightly curved blade. +-------------------------- +Type: One-Handed Sword +Attack: 115 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Swordsman, Merchant and Thief classes +# +1128# +A one-handed sword from far-eastern country that known has been used not just for eliminating, but also for training. +-------------------------- +INT +3 +-------------------------- +Type: One-Handed Sword +Attack: 120 +Weight: 90 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Swordsman, Merchant and Thief classes +# +1129# +A powerful one-handed sword with a decoratively wavy, flame-like blade. +-------------------------- +Type: One-Handed Sword +Attack: 150 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Knight and Crusader classes +# +1130# +A one-handed sword topped with several extra edges for making wounds deeper and more unsightly. +-------------------------- +Enables Level 5 Double Attack. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 5%. +-------------------------- +Type: One-Handed Sword +Attack: 120 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Swordsman, Merchant and Thief classes +# +1131# +A one-handed, formal dress sword imbued with the water element. +-------------------------- +Enables the use of Level 3 Cold Bolt. +-------------------------- +Random chance to auto-cast Level 3 Cold Bolt when dealing physical damage. +-------------------------- +Random chance to inflict Frozen status on the target when dealing physical damage. +-------------------------- +Random chance to inflict Frozen status on wielder when dealing physical damage. +-------------------------- +Type: One-Handed Sword +Attack: 100 +Weight: 60 +Element: Water +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Swordsman, Merchant and Thief classes +# +1132# +A one-handed sword with an extremely sharp blade. +-------------------------- +1% chance to inflict Coma on Normal monster when dealing physical damage. +-------------------------- +3% chance to inflict Curse status on the target when dealing physical damage. +-------------------------- +Type: One-Handed Sword +Attack: 115 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Swordsman, Merchant and Thief classes +# +1133# +A one-handed, formal dress sword imbued with the fire element. +-------------------------- +Enables the use of Level 3 Fire Bolt. +-------------------------- +Random chance to auto-cast Level 3 Fire Bolt when dealing physical damage. +-------------------------- +Type: One-Handed Sword +Attack: 100 +Weight: 50 +Element: Fire +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Swordsman, Merchant and Thief classes +# +1134# +A one-handed sword which looks just like a pair of scissors. +-------------------------- +Ignores physical defense of Plant race by 100%. +-------------------------- +Increases Physical Damage against enemies of Plant race by 25%. +-------------------------- +Type: One-Handed Sword +Attack: 140 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Swordsman, Merchant and Thief classes +# +1135# +A one-handed sword popularized by its use by sea adventurers. +-------------------------- +STR +2 +DEF +1 +-------------------------- +Enables the use of Level 5 Bash. +-------------------------- +Type: One-Handed Sword +Attack: 150 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Swordsman, Merchant and Thief classes +# +1136# +A one-handed sword adorned with an engraving of the sun, symbolizing battle spirit and vigor. +-------------------------- +Drains 1% of damage against its target as HP with each attack. +-------------------------- +Drains 15 SP from its wielder every 10 seconds. +-------------------------- +Type: One-Handed Sword +Attack: 85 +Weight: 120 +Element: Fire +Weapon Level: 4 +Tier: 5 +-------------------------- +Requirement: +Base Level 40 +Swordsman, Merchant and Thief classes +# +1137# +The one-handed sword of Arthurian legend, it supposedly selects its owner by its own will to wield its holy powers. +-------------------------- +INT +5 +LUK +10 +DEX -1 +-------------------------- +Type: One-Handed Sword +Attack: 150 +Weight: 120 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Swordsman, Merchant and Thief classes +# +1138# +A sword inspired by the legendary twig said to have killed Baldur, god of light. +-------------------------- +DEX +3 +-------------------------- +Random chance to inflict Stone Curse status on the target when dealing physical damage. +-------------------------- +Random chance to auto-cast Level 3 Stone Curse on the target when dealing physical damage. +-------------------------- +Increases Physical Damage against enemies of Ghost elemental by 15%. +-------------------------- +Type: One-Handed Sword +Attack: 170 +Weight: 100 +Element: Shadow +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Swordsman, Merchant and Thief classes +# +1139# +A one-handed sword said to bring a horrific fate to whoever wields it. +-------------------------- +Drains 35 HP from wielder every 10 seconds. +-------------------------- +Type: One-Handed Sword +Attack: 200 +Weight: 100 +Element: Shadow +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Swordsman, Merchant and Thief classes +# +1140# +A giant one-handed sword used by ancient Korean war generals. +-------------------------- +All Stats +2 +-------------------------- +Increases Physical Damage against enemies of Boss class by 50%. +-------------------------- +Increases Physical Damage taken from Normal class by 10%. +-------------------------- +Type: One-Handed Sword +Attack: 150 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Swordsman, Merchant and Thief classes +# +1141# +A one-handed, formless sword imbued with the ghost element that can derange the enemy's mind. +-------------------------- +Random chance to drain 30% of target's SP when dealing physical damage. +-------------------------- +Drains 1 SP when dealing physical damage. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Sword +Attack: 140 +Weight: 90 +Element: Ghost +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Swordsman, Merchant and Thief classes +# +1142# +A sword that has a beautiful, transparent blade and a hilt adorned with a princely jewel. +-------------------------- +Type: One-Handed Sword +Attack: 104 +Weight: 220 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 68 +Swordsman, Merchant and Thief classes +# +1143# +An enchanted sword that draws ore out from fallen monsters. +-------------------------- +Type: One-Handed Sword +Attack: 140 +Weight: 250 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 74 +Swordsman, Merchant and Thief classes +# +1144# +An extremely sharp, thin bladed sword that is very efficient when slicing fish to make Japanese cuisine. +-------------------------- +40% chance a defeated Fish monster will drop Sushi. +-------------------------- +Type: One-Handed Sword +Attack: 75 +Weight: 140 +Element: Wind +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 48 +Swordsman, Merchant and Thief classes +# +1145# +A sword that symbolizes the Lord's holy retribution. +-------------------------- +Type: One-Handed Sword +Attack: 125 +Weight: 135 +Element: Holy +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 75 +Crusader +# +1146# +A common, humbly made sword that is intended for the use of those without any special sword expertise. +-------------------------- +Type: One-Handed Sword +Attack: 100 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Novice +# +1147# +A common, humbly made sword that is intended for the use of those without any special sword expertise. +-------------------------- +Type: One-Handed Sword +Attack: 100 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Novice +# +1148# +A spectacular sword with a blade forged out of meteorite that shines with starlight during the night. +-------------------------- +5% chance to inflict Stun status on the target when dealing physical damage. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Sword +Attack: 140 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 45 +Novice +# +1149# +A beautiful, wavy bladed dagger that inflicts especially excruciating pain. +-------------------------- +Type: One-Handed Sword +Attack: 150 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Knight and Crusader classes +# +1151# +A fearsome sword that has slain many a warrior in battle. +-------------------------- +Type: Two-Handed Sword +Attack: 90 +Weight: 130 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Swordman classes +# +1152# +A fearsome sword that has slain many a warrior in battle. +-------------------------- +Type: Two-Handed Sword +Attack: 90 +Weight: 130 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Swordman classes +# +1153# +A fearsome sword that has slain many a warrior in battle. +-------------------------- +Type: Two-Handed Sword +Attack: 90 +Weight: 130 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Swordman classes +# +1154# +A straight bladed sword that can be brutally swung just like a baseball bat. +-------------------------- +Type: Two-Handed Sword +Attack: 115 +Weight: 160 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Swordman classes +# +1155# +A straight bladed sword that can be brutally swung just like a baseball bat. +-------------------------- +Type: Two-Handed Sword +Attack: 115 +Weight: 160 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Swordman classes +# +1156# +A straight bladed sword that can be brutally swung just like a baseball bat. +-------------------------- +Type: Two-Handed Sword +Attack: 115 +Weight: 160 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Swordman classes +# +1157# +A heavy Two-handed sword that can knockdown many enemies in single swing. +-------------------------- +Type: Two-Handed Sword +Attack: 160 +Weight: 220 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Swordman classes +# +1158# +A heavy Two-handed sword that can knockdown many enemies in single swing. +-------------------------- +Type: Two-Handed Sword +Attack: 160 +Weight: 220 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Swordman classes +# +1159# +A heavy Two-handed sword that can knockdown many enemies in single swing. +-------------------------- +Type: Two-Handed Sword +Attack: 160 +Weight: 220 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Swordman classes +# +1160# +A sword with a wide, double sided blade. +-------------------------- +DEF +5 +-------------------------- +Type: Two-Handed Sword +Attack: 140 +Weight: 200 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Swordman classes +# +1161# +A gigantic Two-Handed Sword used by a legendary hero, Siegfried. +-------------------------- +INT +20 +LUK +20 +-------------------------- +Type: Two-Handed Sword +Attack: 250 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +# +1162# +A sword with a wide, double sided blade. +-------------------------- +DEF +5 +-------------------------- +Type: Two-Handed Sword +Attack: 140 +Weight: 200 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Swordman classes +# +1163# +Large, double-edged broad sword that was used by the Scottish highlanders. +-------------------------- +Type: Two-Handed Sword +Attack: 180 +Weight: 250 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Knight and Crusader classes +# +1164# +An oriental sword named after a legendary Japanese swordsmith. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 8%). +-------------------------- +Critical +30 +-------------------------- +Random chance to inflict Curse status on wielder when dealing physical damage. +-------------------------- +Type: Two-Handed Sword +Attack: 155 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1165# +An oriental sword that is the masterpiece of an ancient Japanese smith. +-------------------------- +STR -5 +ASPD +2 +FLEE +30 +DEF -66% +-------------------------- +Type: Two-Handed Sword +Attack: 200 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1166# +A giant sword, rumored to be made from a dragon's tooth, that can easily cut through dragon scales. +-------------------------- +Ignores physical defense of Dragon race by 100%. +-------------------------- +Increases Physical Damage against enemies of Dragon race by 15%. +-------------------------- +Type: Two-Handed Sword +Attack: 150 +Weight: 130 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1167# +A Two-Handed, formal dress sword imbued with the wind element. +-------------------------- +DEF +1 +-------------------------- +Random chance to auto-cast Level 3 Lightning Bolt when dealing physical damage. +-------------------------- +Type: Two-Handed Sword +Attack: 160 +Weight: 160 +Element: Wind +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1168# +An enormous, Two-Handed Sword. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Sword +Attack: 200 +Weight: 220 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1169# +A gruesome sword used to behead criminals judged with the death penalty. +-------------------------- +Ignores physical defense of Demi-Human race by 100%. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 20%. +-------------------------- +Increases Physical Damage taken from Demi-Human race by 10%. +-------------------------- +Type: Two-Handed Sword +Attack: 155 +Weight: 220 +Element: Shadow +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1170# +A sword with a unique, \ + shaped hilt. +-------------------------- +VIT +5 +DEF +10 +-------------------------- +Type: Two-Handed Sword +Attack: 175 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1171# +An enormous sword that can only be swung using both hands. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Sword +Attack: 200 +Weight: 220 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1172# +A simple, Two-Handed Sword adorned with a cross shaped hilt. +-------------------------- +Type: Two-Handed Sword +Attack: 180 +Weight: 250 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Knight and Crusader classes +# +1173# +Rental Item +An oriental sword named after a legendary Japanese swordsmith. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 8%). +-------------------------- +Critical +30 +-------------------------- +Random chance to inflict Curse status on wielder when dealing physical damage. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Two-Handed Sword +Attack: 204 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordman classes +# +1174# +Rental Item +A gruesome sword used to behead criminals judged with the death penalty. +-------------------------- +Ignores physical defense of Demi-Human race by 100%. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 20% +-------------------------- +Increases damage taken from monsters of Demi-Human race by 10%. +-------------------------- +Type: Two-Handed Sword +Attack: 190 +Weight: 0 +Element: Shadow +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordman classes +# +1175# +A massive sword wielded by Atroce that is much too large to be handled by ordinary warriors. +-------------------------- +Critical +10 +-------------------------- +Base STR at least 80: +Random chance to destroy targets's armor when dealing physical damage. +-------------------------- +Type: Two-Handed Sword +Attack: 200 +Weight: 350 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 55 +Transcendent Swordman classes +# +1176# +A weapon that is designed to easily slice the muscles of monsters. +-------------------------- +Random chance to inflict Bleeding status on the target when dealing physical damage. +-------------------------- +Random chance to auto-cast Level 1 Decreases Agi on the target when dealing physical damage. +-------------------------- +Type: Two-Handed Sword +Attack: 160 +Weight: 220 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 55 +Transcendent Swordman classes +# +1177# +Item For Brave Guild Adventurers. +-------------------------- +ATK +50% +-------------------------- +Type: One-Handed Sword +Attack: 120 +Weight: 0 +Weapon Level: 1 +-------------------------- +Requirement: +Swordman classes +# +1178# +A Two-Handed, formal dress sword imbued with the wind element. +-------------------------- +DEF +1 +-------------------------- +Random chance to auto-cast Level 3 Lightning Bolt when dealing physical damage. +-------------------------- +Type: Two-Handed Sword +Attack: 160 +Weight: 160 +Element: Wind +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1179# +A gruesome sword used to behead criminals judged with the death penalty. +-------------------------- +Ignores physical defense of Demi-Human race by 100%. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 20%. +-------------------------- +Increases damage taken from monsters of Demi-Human race by 10%. +-------------------------- +Type: Two-Handed Sword +Attack: 155 +Weight: 220 +Element: Shadow +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1180# +A giant sword, rumored to be made from a dragon's tooth, that can easily cut through dragon scales. +-------------------------- +Ignores physical defense of Dragon race by 100%. +-------------------------- +Increases Physical Damage against enemies of Dragon race by 15%. +-------------------------- +Type: Two-Handed Sword +Attack: 150 +Weight: 130 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1181# +This is known as the sword of a brave man from the orient. +-------------------------- +Perfect Dodge +10 +-------------------------- +Job Level at least 70 (50 if 3rd jobs): +Random chance to increase ATK by 50 for 10 seconds when dealing physical damage. +-------------------------- +Refine Level +9: +Decreases SP Consumption by 20%. +Decreases After Skill Delay by 20%. +-------------------------- +Type: Two-Handed Sword +Attack: 250 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 90 +Transcendent Swordman classes +# +1182# +A magical sword which releases a dismal black aura. +-------------------------- +Random chance to increase Critical by 100 and ATK by 50 for 5 seconds when dealing physical damage. +-------------------------- +Recover 100 HP when defeating an enemy. +-------------------------- +Type: Two-Handed Sword +Attack: 200 +Weight: 120 +Element: Ghost +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Transcendent Swordman classes +# +1183# +A Two-Handed Sword made to rush at the enemy's position, especially designed for battles against Demihuman. +-------------------------- +STR +2 +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 55%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Sword +Attack: 200 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Swordman classes +# +1184# +A Two-Handed Sword made to rush at the enemy's position, especially designed for battles against Demihuman. +-------------------------- +Critical +20 +-------------------------- +Increases Critical Damage by 20%. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 55%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Sword +Attack: 200 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Swordman classes +# +1185# +A huge violet Two-Handed Sword that's made from the Twin Swords of Nacht Sieger. +-------------------------- +Random chance to pierce physical defense of Normal class by 100% for 5 seconds when dealing physical damage. +-------------------------- +Random chance to auto-cast Level 3 Meteor Storm on the target when dealing physical damage. +-------------------------- +Random chance to auto-cast Level 5 Frost Nova on the target when dealing physical damage. +-------------------------- +Type: Two-Handed Sword +Attack: 275 +Weight: 220 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Transcendent Swordman classes +# +1186# +A cursed weapon exists only for the destruction of all living being. The curse of this sword even affects the wielder that leads the person to misery. +-------------------------- +STR +5 +AGI +2 +Perfect Dodge +20 +-------------------------- +Random chance to inflict Hell Power on the user or target when dealing physical damage. +-------------------------- +Random chance to inflict damage to all targets within 11x11 cells around wielder and recovers 100% of HP. +-------------------------- +Refine Level +9: +Exerts the power to monsters within 15x15 cells and gives 200% damage while it recovers HP. +-------------------------- +Type: Two-Handed Sword +Attack: 200 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 70 +Transcendent Swordman classes +# +1187# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 70%. +-------------------------- +Ignores physical defense of Demi-Human race by 25%. +-------------------------- +Refine Level +6: +Ignores physical defense of Demi-Human race by additional 5%. +[Slaughter] Lv 2 (Damage bonus of Slaughter increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +Random chance to auto-cast Level 1 Concentration or Level 1 Aura Blade when dealing physical damage. +*If a higher Level of either spell has been learned, the corresponding Level is activated. +-------------------------- +Type: Two-Handed Sword +Attack: 220 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Swordman classes +# +1188# +A sword that only a swordmaster can wield. +-------------------------- +STR +1 +DEX +1 +-------------------------- +When Bash is mastered: +Increases damage of Bash by 50%. +-------------------------- +When Bowling Bash is mastered: +Increases damage of Bowling Bash by 50%. +-------------------------- +Type: Two-Handed Sword +Attack: 180 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Swordman classes +# +1189# +A strong-looking sword which resembles the shape of a Claymore. Its handgrip is decorated with red color from the High Class Knights. +-------------------------- +Base STR at least 95: +ATK +20 +-------------------------- +Type: Two-Handed Sword +Attack: 200 +Weight: 380 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 50 +Transcendent Swordman classes +# +1190# +Rental Item +Large, double-edged broad sword that was used by the Scottish highlanders. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Two-Handed Sword +Attack: 220 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Knight and Crusader classes +# +1191# +A reddish wide Two-Handed Sword. +-------------------------- +For each 2 Refine Levels: +ASPD +1 +-------------------------- +Type: Two-Handed Sword +Attack: 280 +Weight: 340 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +1192# +A Two-Handed Sword made by the Eden Group for a beginner Swordman. +-------------------------- +Type: Two-Handed Sword +Attack: 162 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 26 +Swordman classes +# +1193# +A Two-Handed Sword made by the Eden Group. It is suitable for intermediates who have more experience handling Two-Handed Swords. +-------------------------- +Type: Two-Handed Sword +Attack: 185 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Swordman classes +# +1194# +Rental Item +A gruesome sword used to behead criminals judged with the death penalty. +-------------------------- +Ignores physical defense of Demi-Human race by 100%. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 20%. +-------------------------- +Increases Physical Damage taken from Demi-Human race by 10%. +-------------------------- +Type: Two-Handed Sword +Attack: 190 +Weight: 0 +Element: Shadow +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordman classes +# +1196# +A cold etched sword made with Refined Bradium, a mineral from the Other World. +-------------------------- +AGI +3 +MaxHP -10% +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Sword +Attack: 280 +Weight: 40 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 110 +Rune Knight and Royal Guard +# +1197# +A Two-Handed Sword made by the Eden Group. It is suitable for those who have more advanced experience handling Two-Handed Swords. +-------------------------- +Type: Two-Handed Sword +Attack: 200 +Weight: 0 +Weapon Level: 3 +Refineable: No +Can be enchanted by: +Weapons Expert BKmoc_para01,112,79,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Swordman classes +# +1198# +Rental Item +A fish used as a cutlass for its long knife-like shape. It is cold to the touch. +-------------------------- +Critical +20 +-------------------------- +Increases Critical Damage by 50%. +-------------------------- +Random chance to inflict Crystallization status for 3 seconds on the target when dealing physical damage. +-------------------------- +Base Level at least 100: +ATK +50 +-------------------------- +Type: Two-Handed Sword +Attack: 220 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Swordman classes +# +1201# +A simple knife. +-------------------------- +Type: Dagger +Attack: 17 +Weight: 40 +Weapon Level: 1 +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1202# +A simple knife. +-------------------------- +Type: Dagger +Attack: 17 +Weight: 40 +Weapon Level: 1 +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1203# +A simple knife. +-------------------------- +Type: Dagger +Attack: 17 +Weight: 40 +Weapon Level: 1 +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1204# +A knife used for cutting enemies. +-------------------------- +Type: Dagger +Attack: 30 +Weight: 50 +Weapon Level: 1 +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1205# +A knife used for cutting enemies. +-------------------------- +Type: Dagger +Attack: 30 +Weight: 50 +Weapon Level: 1 +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1206# +A knife used for cutting enemies. +-------------------------- +Type: Dagger +Attack: 30 +Weight: 50 +Weapon Level: 1 +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1207# +A French dagger that is usually held in the left hand to parry attacks. +-------------------------- +Type: Dagger +Attack: 43 +Weight: 60 +Weapon Level: 1 +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1208# +A French dagger that is usually held in the left hand to parry attacks. +-------------------------- +Type: Dagger +Attack: 43 +Weight: 60 +Weapon Level: 1 +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1209# +A French dagger that is usually held in the left hand to parry attacks. +-------------------------- +Type: Dagger +Attack: 43 +Weight: 60 +Weapon Level: 1 +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1210# +An ancient knife used by highlanders in Scotland. +-------------------------- +Type: Dagger +Attack: 59 +Weight: 50 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1211# +An ancient knife used by highlanders in Scotland. +-------------------------- +Type: Dagger +Attack: 59 +Weight: 50 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1212# +An ancient knife used by highlanders in Scotland. +-------------------------- +Type: Dagger +Attack: 59 +Weight: 50 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1213# +Knife used for stabbing. +-------------------------- +Type: Dagger +Attack: 73 +Weight: 60 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1214# +Knife used for stabbing. +-------------------------- +Type: Dagger +Attack: 73 +Weight: 60 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1215# +Knife used for stabbing. +-------------------------- +Type: Dagger +Attack: 73 +Weight: 60 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1216# +A long, thin blade that is known to be used as a concealed weapon by Assassins. +-------------------------- +Type: Dagger +Attack: 87 +Weight: 70 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1217# +A long, thin blade that is known to be used as a concealed weapon by Assassins. +-------------------------- +Type: Dagger +Attack: 87 +Weight: 70 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1218# +A long, thin blade that is known to be used as a concealed weapon by Assassins. +-------------------------- +Type: Dagger +Attack: 87 +Weight: 70 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1219# +A strong dagger that is usually crafted by traditional artisans. +-------------------------- +Type: Dagger +Attack: 105 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1220# +A strong dagger that is usually crafted by traditional artisans. +-------------------------- +Type: Dagger +Attack: 105 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1221# +A strong dagger that is usually crafted by traditional artisans. +-------------------------- +Type: Dagger +Attack: 105 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1222# +A lethal knife made of a special metal that can easily cut straight into the heart of an enemy. +-------------------------- +Indestructible in battle +-------------------------- +Type: Dagger +Attack: 118 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1223# +A knife with a gold handle that is said to bring great fortune to whoever holds it. +-------------------------- +LUK +5 +Perfect Dodge +20 +-------------------------- +Type: Dagger +Attack: 90 +Weight: 50 +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 24 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1224# +A powerful dagger that is specially constructed to destroy the enemy's weapon by a low chance. +-------------------------- +Type: Dagger +Attack: 70 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1225# +An incredibly sharp dagger built to puncture and destroy an enemy's armor by a low chance. +-------------------------- +Type: Dagger +Attack: 70 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1226# +A lethal knife made of a special metal that can easily cut straight into the heart of an enemy. +-------------------------- +Indestructible in battle +-------------------------- +Type: Dagger +Attack: 118 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1227# +A blade created to cut down stubborn weeds. +-------------------------- +Ignores physical defense of Plant race by 100%. +-------------------------- +Increases Physical Damage against enemies of Plant race by 15%. +-------------------------- +Decreases damage taken from Plant race by 15%. +-------------------------- +Type: Dagger +Attack: 80 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1228# +Military combat knife made for battles against Demi-Human race. +-------------------------- +Ignores physical defense of Demi-Human race by 100%. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Increases damage taken from monsters of Demon race by 10%. +-------------------------- +Type: Dagger +Attack: 80 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1229# +A domestic knife used for cooking by housewives. +-------------------------- +Critical +30 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 3%. +-------------------------- +Random chance a defeated Brute monster will drop Meat. +-------------------------- +Type: Dagger +Attack: 75 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1230# +An ice pick that's usually used for piercing solid ice or wood. +-------------------------- +Deals more damage depending on the target's Defense. +-------------------------- +Type: Dagger +Attack: 80 +Weight: 60 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1231# +A formal dress dagger, engraved with luxurious emblems, that's usually worn on special occasions. +-------------------------- +INT +5 +MATK +105 +-------------------------- +Type: Dagger +Attack: 70 +Weight: 50 +Element: Fire +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1232# +A dagger commonly used by Assassins. +-------------------------- +MaxHP +20% +MaxSP +15% +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Type: Dagger +Attack: 140 +Weight: 60 +Element: Shadow +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Assassin classes +# +1233# +A ceremonial dagger that possesses the power to defeat evil and is used in performing exorcisms. +-------------------------- +Ignores physical defense of Demon race monsters by 100%. +-------------------------- +Decreases damage taken from Demon race monsters by 5%. +-------------------------- +Increases damage taken from monsters of Demi-Human race by 10%. +-------------------------- +Type: Dagger +Attack: 90 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1234# +A dagger imbued with lunar spirit and the power to drain an enemy's soul. +-------------------------- +MaxSP +10% +-------------------------- +Restores 3 SP when dealing physical damage. +-------------------------- +Type: Dagger +Attack: 50 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1235# +A dagger that symbolizes the potential of Alchemy. +-------------------------- +Random chance to transform Normal monster into another monster when dealing physical damage. +-------------------------- +Type: Dagger +Attack: 110 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Alchemist +# +1236# +A specialty dagger made by a small, mysterious, desert dwelling tribe. +-------------------------- +Increases Physical Damage against enemies of Earth and Wind elemental by 10%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Dagger +Attack: 140 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1237# +A cursed dagger forged out of monster tooth that is known to cause insanity to whoever may wield it. +-------------------------- +DEF -50% +FLEE +10 +Perfect Dodge +5 +-------------------------- +Type: Dagger +Attack: 180 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1238# +A dagger that steals zeny from monsters upon their defeat. +-------------------------- +Type: Dagger +Attack: 64 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1239# +A dreadful dagger whose blade has been soaked in toxin. +-------------------------- +Random chance to inflict Poison status on the target when dealing physical damage. +-------------------------- +Type: Dagger +Attack: 64 +Weight: 80 +Element: Poison +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 65 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1240# +A beautiful dagger that is rumored to have been used by an ancient princess to protect herself. +-------------------------- +All Stats +1 +-------------------------- +Type: Dagger +Attack: 84 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +1241# +A dagger possessed by evil and given power by hatred and malice. +-------------------------- +Random chance to inflict Curse status on the target when dealing physical damage. +-------------------------- +Type: Dagger +Attack: 55 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 85 +Magician and Soul Linker classes +# +1242# +A dagger that has a high chance to do critical damage to a target. +-------------------------- +Critical +90 +-------------------------- +Type: Dagger +Attack: 140 +Weight: 55 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 55 +Magician and Soul Linker classes +# +1243# +An exclusive Main Gauche for new adventurers. +-------------------------- +Type: Dagger +Attack: 45 +Weight: 0.1 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Novice +# +1244# +A dagger blessed with holy water that can be effective in combat against evil demonic forces. +-------------------------- +Type: Dagger +Attack: 100 +Weight: 80 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 55 +Thief and Ninja +# +1245# +A wide bladed short sword that was crafted in a western country. +-------------------------- +Type: Dagger +Attack: 110 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Novice +# +1246# +A wide bladed short sword that was crafted in a western country. +-------------------------- +Type: Dagger +Attack: 110 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Novice +# +1247# +A dagger that can be effectively used to start a fire. +-------------------------- +Type: Dagger +Attack: 39 +Weight: 60 +Element: Fire +Weapon Level: 1 +-------------------------- +Requirement: +All classes except Acolyte +# +1248# +An extremely sharp dagger made from pure obsidian glass that shines eerily. +-------------------------- +Type: Dagger +Attack: 39 +Weight: 60 +Element: Earth +Weapon Level: 1 +-------------------------- +Requirement: +All classes except Acolyte +# +1249# +A dagger used by fishermen to catch shellfish and oysters from the ocean. +-------------------------- +Type: Dagger +Attack: 39 +Weight: 60 +Element: Water +Weapon Level: 1 +-------------------------- +Requirement: +All classes except Acolyte +# +1250# +A set of Arabian style blades that are worn on the back of both hands or on the forearms. +-------------------------- +Type: Katar +Attack: 125 +Weight: 80 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Assassin classes +# +1251# +A set of Arabian style blades that are worn on the back of both hands or on the forearms. +-------------------------- +Type: Katar +Attack: 125 +Weight: 80 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Assassin classes +# +1252# +A set of daggers in which the blades are positioned above the knuckles for use in close range combat. +-------------------------- +DEX +1 +-------------------------- +Type: Katar +Attack: 148 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Assassin classes +# +1253# +A set of daggers in which the blades are positioned above the knuckles for use in close range combat. +-------------------------- +DEX +1 +-------------------------- +Type: Katar +Attack: 148 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Assassin classes +# +1254# +A specially made Katar with two blades that move like scissors to reveal a third blade from within. +-------------------------- +Type: Katar +Attack: 165 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Assassin classes +# +1255# +A specially made Katar with two blades that move like scissors to reveal a third blade from within. +-------------------------- +Type: Katar +Attack: 165 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Assassin classes +# +1256# +A katar fashioned from a cold, sharp icicle. +-------------------------- +Random chance to inflict Frozen status on the target when dealing physical damage. +-------------------------- +Type: Katar +Attack: 105 +Weight: 120 +Element: Water +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Assassin classes +# +1257# +A katar sculpted from Earth. +-------------------------- +Random chance to inflict Blind status on the target when dealing physical damage. +-------------------------- +Type: Katar +Attack: 105 +Weight: 120 +Element: Earth +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Assassin classes +# +1258# +A katar molded from an inferno. +-------------------------- +Random chance to inflict Silence status on the target when dealing physical damage. +-------------------------- +Type: Katar +Attack: 105 +Weight: 120 +Element: Fire +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Assassin classes +# +1259# +A katar forged with the power of stormy winds. +-------------------------- +Random chance to inflict Sleep status on the target when dealing physical damage. +-------------------------- +Type: Katar +Attack: 105 +Weight: 120 +Element: Wind +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Assassin classes +# +1260# +A katar crafted from a ghoul's femur that still radiates a dark, deathly aura. +-------------------------- +Type: Katar +Attack: 150 +Weight: 170 +Element: Undead +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 65 +Assassin classes +# +1261# +A lethal Katar that has been perfectly designed to carry out quick assasinations. +-------------------------- +DEF +3 +FLEE +5 +Perfect Dodge +2 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 50%. +-------------------------- +Type: Katar +Attack: 140 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 75 +Assassin classes +# +1262# +A double bladed katar that inflicts incurable wounds. +-------------------------- +Random chance to inflict Bleeding status on the target when dealing physical damage. +-------------------------- +Type: Katar +Attack: 115 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Assassin classes +# +1263# +A katar said to be purely forged out of the resentment of the dead. +-------------------------- +Critical -1 +-------------------------- +Random chance to inflict Curse status on the target when dealing physical damage. +-------------------------- +Indestructible in battle +-------------------------- +Type: Katar +Attack: 151 +Weight: 125 +Element: Shadow +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 70 +Assassin classes +# +1264# +Although this katar has an increased number of slots, this weapon is hard to handle and is known to cause injury to those who wield it. +-------------------------- +Random chance to inflict Bleeding status on wielder when dealing physical damage. +-------------------------- +Type: Katar +Attack: 90 +Weight: 80 +Weapon Level: 1 +-------------------------- +Requirement: +Assassin classes +# +1265# +This katar, known for being effective against humans, is rumored to give a beastial roar when drenched in blood, hence its name. +-------------------------- +Ignores physical defense of Demi-Human race by 100%. +-------------------------- +Decreases FLEE and Perfect Dodge. +-------------------------- +Disables HP and SP Recovery Rate. +-------------------------- +Type: Katar +Attack: 120 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 75 +Assassin classes +# +1266# +A lethal Katar that has been designed for quick assassinations. +-------------------------- +DEF +3 +FLEE +5 +Perfect Dodge +2 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 50%. +-------------------------- +Type: Katar +Attack: 140 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 75 +Assassin classes +# +1267# +Rental Item +A lethal Katar that has been perfectly designed to carry out quick assassinations. +-------------------------- +DEF +3 +FLEE +5 +Perfect Dodge +2 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 70%. +-------------------------- +Type: Katar +Attack: 189 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Assassin classes +# +1268# +A katar crafted from the body of a huge beast and the wounds it inflicts are very difficult to heal. +-------------------------- +Random chance to inflict Level 1 Critical Wound status to enemy when dealing physical damage. +-------------------------- +Critical Wound reduces the effect of Heal, Sanctuary, Potion Pitcher and other recovery items by 20%. +Refine Level +9: +Decreases healing effects by 40% instead. +-------------------------- +Type: Katar +Attack: 160 +Weight: 145 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 55 +Assassin Cross +# +1269# +A katar made from a dragon's scale. +-------------------------- +Random chance to inflict abnormal statuses on 5x5 cells when dealing physical damage. +-------------------------- +Type: Katar +Attack: 140 +Weight: 150 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 55 +Assassin Cross +# +1270# +A katar fitted with spinning drills instead of blades, making it ideal for destroying armor. +-------------------------- +HIT +30 +-------------------------- +Random chance to auto-cast Level 1 Full Strip on the target when dealing physical damage. +-------------------------- +Type: Katar +Attack: 110 +Weight: 140 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 55 +Assassin Cross +# +1271# +A katar that can attack at longer ranges with fearsome power. +-------------------------- +Random chance to inflict Bleeding status to all enemies in a 5*5 cell area. +This range increases to a 11*11 cell area if weapon Refined to +9 or greater. +-------------------------- +Type: Katar +Attack: 120 +Weight: 170 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 55 +Assassin Cross +# +1272# +Katar from Guild of Brave Adventurers. +-------------------------- +ATK +50% +-------------------------- +Type: Katar +Attack: 120 +Weight: 0 +Weapon Level: 1 +-------------------------- +Requirement: +Assassin classes +# +1273# +Rental Item +This katar, known for being effective against humans, is rumored to give a bestial roar when drenched in blood, hence its name. +-------------------------- +Ignores physical defense of Demi-Human race by 100%. +-------------------------- +Restores HP by 3 every 5 seconds. +-------------------------- +Type: Katar +Attack: 148 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Assassin classes +# +1274# +Rental Item +A katar said to be purely forged out of the resentment of the dead. +-------------------------- +Critical -1 +-------------------------- +Random chance to inflict Curse status on the target when dealing physical damage. +-------------------------- +Indestructible in battle +-------------------------- +Type: Katar +Attack: 179 +Weight: 0 +Element: Shadow +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Assassin classes +# +1275# +A katar fashioned from a cold, sharp icicle. +-------------------------- +Random chance to inflict Frozen status on the target when dealing physical damage. +-------------------------- +Type: Katar +Attack: 105 +Weight: 120 +Element: Water +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Assassin classes +# +1276# +A katar sculpted from Earth. +-------------------------- +Random chance to inflict Blind status on the target when dealing physical damage. +-------------------------- +Type: Katar +Attack: 105 +Weight: 120 +Element: Earth +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Assassin classes +# +1277# +A katar molded from an inferno. +-------------------------- +Random chance to inflict Silence status on the target when dealing physical damage. +-------------------------- +Type: Katar +Attack: 105 +Weight: 120 +Element: Fire +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Assassin classes +# +1278# +A katar forged with the power of stormy winds. +-------------------------- +Random chance to inflict Sleep status on the target when dealing physical damage. +-------------------------- +Type: Katar +Attack: 105 +Weight: 120 +Element: Wind +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Assassin classes +# +1279# +A particularly modified Katar created for battles against Demihuman. It makes for a battlefield full of blood and terrible crimes if equipped by a Master Assassin. +-------------------------- +STR +1 +DEX +1 +LUK +1 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 70%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Katar +Attack: 130 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Assassin classes +# +1280# +A particularly modified Katar created for battles against Demihuman. It can be used for terrible crimes if equipped by a Master Assassin. +-------------------------- +STR +1 +DEX +1 +LUK +1 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 70%. +-------------------------- +Increases Critical Damage by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Katar +Attack: 130 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Assassin classes +# +1281# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 70%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +Refine Level +6: +Ignores physical defense of Demi-Human race by additional 5%. +[Slaughter] Lv 1 (Damage bonus of Slaughter increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +Random chance to decrease After Attack Delay by 100% for 3 seconds when dealing physical damage. +-------------------------- +Type: Katar +Attack: 140 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Assassin classes +# +1282# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 70%. +-------------------------- +Increases Critical Damage by 20%. +-------------------------- +Refine Level +6: +Increases Critical Damage against Demi-Human race by 5%. +[Slaughter] Lv 1 (Damage bonus of Slaughter increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +Random chance to decreases After Attack Delay by 100% for 3 seconds when dealing physical damage. +-------------------------- +Type: Katar +Attack: 140 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Assassin classes +# +1283# +Rental Item +Increases Attack Speed (Decreases After Attack Delay by 3%). +Increases damage of Sonic Blow by 25%. +-------------------------- +Type: Katar +Attack: 170 +Weight: 70 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 80 +Assassin classes +# +1284# +A katar decorated in black. It requires huge strength just to wave it. +-------------------------- +Increases damage of Grim Tooth by 10%. +-------------------------- +Random chance to auto-cast Level 1 Sonic Blow when dealing physical damage. +(Player's learned Level of skill will be activated.) +-------------------------- +Type: Katar +Attack: 120 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Assassin Cross +# +1285# +A rare design for a katar, its design has the meaning of \ +. +-------------------------- +When Katar Mastery skill is mastered: +HIT +10 +Increases damage of skill Meteor Assault by 20%. +-------------------------- +Type: Katar +Attack: 130 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Assassin Cross +# +1286# +Rental Item +A specially made katar with two blades that move like scissors to reveal a third blade from within. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Katar +Attack: 200 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Assassin classes +# +1287# +A katar that is specially designed for high-speed attack. +-------------------------- +Type: Katar +Attack: 190 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +1288# +Rental Item +An excellent katar that specially made to eliminate Demi-Human race. +-------------------------- +Ignores physical defense of Demi-Human race by 100%. +-------------------------- +Random chance to inflict Bleeding status on the target when dealing physical damage. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +Restore 1 SP when killing enemy +-------------------------- +Type: Katar +Attack: 145 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Assassin classes +# +1289# +A katar made by the Eden Group. It is suitable for those who have more advanced experience handling katars. +-------------------------- +Type: Katar +Attack: 155 +Weight: 0 +Weapon Level: 3 +Refineable: No +Can be enchanted by: +Weapons Expert BKmoc_para01,112,79,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Assassin classes +# +1290# +The Katar used by an assassin who never lose targets in any situation used. He even used his luck to focus on the target. +-------------------------- +Increases HIT by 1 for every 2 LUK. +-------------------------- +Type: Katar +Attack: 170 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +1291# +Long ago, a Guillotine Cross used this to kill his betrayer. +-------------------------- +DEX +2 +FLEE -30 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 50%. +-------------------------- +Increases damage of Cross Impact by 30%. +-------------------------- +Type: Katar +Attack: 200 +Weight: 150 +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 140 +Guillotine Cross +# +1292# +A katar that is coated with elunium and gold. +-------------------------- +For each Refine Level: +ATK +10 +Increases Critical Damage by 2%. +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Katar +Attack: 80 +Weight: 100 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Assassin classes +# +1293# +*Effects in WoE & PVP area +Decreases the target's DEF and MDEF to 1 on each physical attack. (This effect does not work with skills) +-------------------------- +For each Refine Level: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Type: Katar +Attack: 170 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 95 +Assassin classes +# +1294# +*Effects in WoE & PVP area +Decreases the target's SP by 10% on each physical attack. (This effect does not work with skills.) +-------------------------- +Type: Katar +Attack: 50 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 95 +Assassin classes +# +1295# +A katar with blade shaped like shredder. Leaves deep wound on its target. +-------------------------- +Random chance to inflict Bleeding status on 5x5 cells when dealing physical damage. +Refine Level +9: +the area of effect increased to 11x11 cells. +-------------------------- +Type: Katar +Attack: 120 +Weight: 170 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 55 +Assassin Cross +# +1296# +Katar made up of Metal. +-------------------------- +Type: Katar +Attack: 125 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Assassin +# +1297# +A katar made from a dragon's scale. +-------------------------- +Random chance to inflict abnormal statuses on 5x5 cells when dealing physical damage. +-------------------------- +Type: Katar +Attack: 140 +Weight: 150 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 55 +Assassin Cross +# +1298# +Katar that has killed many victims, its shape makes enemy shiver. +-------------------------- +For each Refine Level: +Critical +1 +-------------------------- +When equipped with Mobster Card: +Increases Critical Damage by 5%. +-------------------------- +When equipped with Sedora Card: +Increases Critical Damage by 5%. +-------------------------- +Type: Katar +Attack: 110 +Weight: 270 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 105 +Guillotine Cross +# +1299# +Rental Item +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Random chance to inflict Bleeding status when dealing physical damage. +-------------------------- +Type: Katar +Attack: 120 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Assassin classes +# +1300# +A heavy, broad bladed hatchet used by butchers. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Random chance a defeated Brute monster will drop Meat. +-------------------------- +Type: One-Handed Axe +Attack: 140 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 44 +Swordsman and Merchant +# +1301# +A common axe. +-------------------------- +Type: One-Handed Axe +Attack: 38 +Weight: 80 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 3 +Novice, Swordsman, Merchant and Thief classes +# +1302# +A common axe. +-------------------------- +Type: One-Handed Axe +Attack: 38 +Weight: 80 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 3 +Novice, Swordsman, Merchant and Thief classes +# +1303# +A common axe. +-------------------------- +Type: One-Handed Axe +Attack: 38 +Weight: 80 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 3 +Novice, Swordsman, Merchant and Thief classes +# +1304# +An axe crafted by Orcish smiths for Orcish warriors. +-------------------------- +Type: One-Handed Axe +Attack: 75 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 3 +Novice, Swordsman, Merchant and Assassin +# +1305# +A heavy, broad bladed hatchet used by butchers. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Random chance a defeated Brute monster will drop Meat. +-------------------------- +Type: One-Handed Axe +Attack: 140 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 44 +Swordsman and Merchant +# +1306# +A bloodthirsty axe that has aided many warriors in battle. +-------------------------- +DEX +2 +LUK +2 +-------------------------- +Type: One-Handed Axe +Attack: 140 +Weight: 420 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 76 +Blacksmith and Alchemist +# +1307# +An axe that summons winds around its user, giving it unprecedented attack speed. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Type: One-Handed Axe +Attack: 115 +Weight: 150 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Swordsman, Merchant and Thief classes +# +1308# +Not much is known about the mysterious Golden Axe... +# +1309# +An axe crafted by Orcish smiths for Orcish warriors. +-------------------------- +Type: One-Handed Axe +Attack: 75 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 3 +Novice, Swordsman, Merchant and Assassin +# +1310# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 75%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +Refine Level +6: +Ignores physical defense of Demi-Human race by additional 5%. +Increases Attack Speed (Decreases After Attack Delay by 5%). +[Slaughter] Lv 1 (Damage bonus of Slaughter increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +5% chance to inflict Critical Wound status on the target when dealing physical damage. +Increases Attack Speed (Decreases After Attack Delay by 5%). +Random chance to inflict Level 2 Critical Wound status on the target when using Mammonite skill. +-------------------------- +Type: One-Handed Axe +Attack: 130 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Swordsman and Merchant +# +1311# +A luxurious axe decorated in red. It creates wind with a unique sound when you wave it. +-------------------------- +Base LUK at least 90: +ATK +20 +-------------------------- +Base DEX at least 90: +Critical +5 +-------------------------- +If both base LUK and DEX at least 90: +Increases damage of Mammonite by 15%. +-------------------------- +Type: One-Handed Axe +Attack: 140 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Transcendent Swordsman and Merchant +# +1312# +Rental Item +An axe crafted by Orcish smiths for Orcish warriors. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 70%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: One-Handed Axe +Attack: 110 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Novice, Swordsman, Merchant and Assassin +# +1313# +Axe Travellers who travelled all around the world. +-------------------------- +STR +2 +-------------------------- +Type: One-Handed Axe +Attack: 77 +Weight: 50 +Weapon Level: 1 +-------------------------- +Requirement: +Novice, Swordsman, Merchant and Assassin +# +1314# +Rental Item +A light axe imbued with the Wind element which can be hurled at enemies. +-------------------------- +Enables use of Tomahawk Throwing. +-------------------------- +Type: One-Handed Axe +Attack: 200 +Weight: 0 +Element: Wind +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman and Merchant +# +1315# +Rental Item +A Greek ceremonial axe that possesses the power of holiness. +-------------------------- +STR +10 +-------------------------- +Increases movement speed. +-------------------------- +Enables the use of Level 3 Heal. +-------------------------- +Increases Physical Damage against monsters of Demon race by 3%. +-------------------------- +Type: Two-Handed Axe +Attack: 229 +Weight: 0 +Element: Holy +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman and Merchant +# +1317# +An exclusive axe for academy member. +-------------------------- +MaxHP +200 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +For each 10 Base Level: +MaxHP -40 +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Axe +Attack: 130 +Weight: 160 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 30 +Merchant +# +1318# +A strong and sharp axe with Dofle ornament. +-------------------------- +Enables use of Tomahawk Throwing. +-------------------------- +Type: One-Handed Axe +Attack: 180 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 105 +Super Novice, Guillotine Cross, 3rd class of Swordsman and Merchant +# +1319# +Rental Item +Indestructible in battle +-------------------------- +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Random chance to inflict Freezing status when dealing physical damage. +-------------------------- +Type: One-Handed Axe +Attack: 100 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Novice, Swordsman, Merchant and Thief classes +# +1320# +A weapon of unknown origin that contains the magic of the labyrinth. +It is unclear what kind of material it is made of, and the same weapons have different performances. +-------------------------- +MATK +110 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Baphomet Card: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Type: One-Handed Axe +Attack: 180 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Super Novice, Guillotine Cross, 3rd classes of Swordsman and Merchant +# +1321# +A strong and sharp axe with Dofle ornament. +-------------------------- +Enables use of Tomahawk Throwing. +-------------------------- +Type: One-Handed Axe +Attack: 180 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 105 +Super Novice, Guillotine Cross, 3rd class of Swordsman and Merchant +# +1322# +Blue Axe which has destructive power. +-------------------------- +STR +5 +INT +5 +-------------------------- +When VIP status active: +ASPD +3 +Increases Ranged Physical Damage by 20%. +-------------------------- +Type: One-Handed Axe +Attack: 200 +Weight: 180 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Genetic +# +1323# +A golden axe with brutal power. +-------------------------- +STR +8 +INT +8 +-------------------------- +Type: One-Handed Axe +Attack: 180 +Weight: 180 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 120 +Genetic +# +1324# +A bloodthirsty axe that has aided many warriors in battle. +-------------------------- +DEX +2 +LUK +2 +-------------------------- +Type: One-Handed Axe +Attack: 140 +Weight: 420 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 76 +Blacksmith and Alchemist +# +1325# +A Diva Axe that has mutated under the influence of the power of the labyrinth. +It is unclear what kind of material it is made of, and the same weapons have different performance. +-------------------------- +Attack Range: 5 cells +-------------------------- +MATK +110 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: One-Handed Axe +Attack: 180 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Super Novice, 3rd Swordsman classes, 3rd Merchant classes and Guillotine Cross +# +1326# +A bloodthirsty axe that has aided many warriors in battle. +-------------------------- +STR +2 +DEX +2 +LUK +2 +-------------------------- +Increases damage of Axe Tornado and Axe Boomerang by 100%. +-------------------------- +Increases damage of Cart Tornado by 75%. +-------------------------- +Refine Level +7: +Increases damage of Axe Tornado, Axe Boomerang and Cart Tornado by 20%. +-------------------------- +Refine Level +9: +Increases damage of Axe Tornado, Axe Boomerang and Cart Tornado by 20%. +-------------------------- +When equipped with Illusion Shoes: +ATK +40 +-------------------------- +Refine Level of Illusion War Axe and Illusion Shoes each is +7 or higher: +Increases damage of Axe Boomerang by 15%. +Total Refine Level of entire set at least +18: +ATK +10% +-------------------------- +Total Refine Level of entire set at least +22: +Increases Ranged Physical Damage by 10%. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Axe +Attack: 180 +Weight: 420 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Mechanic and Genetic +# +1328# +A one-handed axe owned by the suspicious weapon dealer Brute. +-------------------------- +Increases Physical Damage against Players by 60%. +-------------------------- +For each Refine Level: +Ignores physical defense of all enemies by 5%. +-------------------------- +Refine Level +8: +Increases Physical Damage against Players by additional 35%. +-------------------------- +Refine Level +9: +Increases Physical Damage against Players by additional 20%. +-------------------------- +Refine Level +9: +MaxHP +15% +MaxSP +15% +-------------------------- +Indestructible in battle +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: One-Handed Axe +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +3rd Swordsman classes and 3rd Merchant classes +# +1331# +A weapon mutated by the magical power of a stranger. +Even if they look the same, the performance is different. +-------------------------- +MATK +110 +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by 5%. +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Axe +Attack: 180 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +Super Novice, 3rd Swordsman classes, 3rd Merchant classes and Guillotine Cross +# +1333# +Professional's gold wrench. +-------------------------- +ATK +5% +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Increases damage of Power Swing and Axe Boomerang by 20%. +-------------------------- +Refine Level +11: +Increases damage of Power Swing and Axe Boomerang by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Axe +Attack: 220 +Weight: 550 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Mechanic +# +1336# +A ceremonial axe used by the Glastheim Guards. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +Indestructible in battle +-------------------------- +ATK +5% +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +9: +Increases damage of Power Swing by 20%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +ATK +30 +Physical attacks have a chance to increase Ranged Physical Damage by additional 10% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Physical Damage against enemies of Holy and Undead elemental by 20%. +-------------------------- +Type: One-Handed Axe +Attack: 210 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Mechanic +# +1351# +A sturdy Two-Handed axe useful for defeating many foes. +-------------------------- +Type: Two-Handed Axe +Attack: 80 +Weight: 150 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 3 +Swordsman and Merchant +# +1352# +A sturdy, Two-Handed axe created for fighting multiple enemies at once. +-------------------------- +Type: Two-Handed Axe +Attack: 80 +Weight: 150 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 3 +Swordsman and Merchant +# +1353# +A sturdy, Two-Handed axe created for fighting multiple enemies at once. +-------------------------- +Type: Two-Handed Axe +Attack: 80 +Weight: 150 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 3 +Swordsman and Merchant +# +1354# +A really big hammer. +-------------------------- +Type: Two-Handed Axe +Attack: 120 +Weight: 200 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 16 +Swordsman and Merchant +# +1355# +A really big hammer. +-------------------------- +Type: Two-Handed Axe +Attack: 120 +Weight: 200 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 16 +Swordsman and Merchant +# +1356# +A really big hammer. +-------------------------- +Type: Two-Handed Axe +Attack: 120 +Weight: 200 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 16 +Swordsman and Merchant +# +1357# +A powerful axe that lives up to its mighty appearance. +-------------------------- +Type: Two-Handed Axe +Attack: 155 +Weight: 220 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Swordsman and Merchant +# +1358# +A powerful axe that lives up to its mighty appearance. +-------------------------- +Type: Two-Handed Axe +Attack: 155 +Weight: 220 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Swordsman and Merchant +# +1359# +A powerful axe that lives up to its mighty appearance. +-------------------------- +Type: Two-Handed Axe +Attack: 155 +Weight: 220 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Swordsman and Merchant +# +1360# +A Two-Handed, double bladed axe. +-------------------------- +Type: Two-Handed Axe +Attack: 185 +Weight: 250 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Swordsman and Merchant +# +1361# +A Two-Handed, double bladed axe. +-------------------------- +Type: Two-Handed Axe +Attack: 185 +Weight: 250 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Swordsman and Merchant +# +1362# +A Two-Handed, double bladed axe. +-------------------------- +Type: Two-Handed Axe +Attack: 185 +Weight: 250 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Swordsman and Merchant +# +1363# +A terrifying axe that is said to fill the entire battlefield with blood once it cuts flesh. +-------------------------- +STR +10 +-------------------------- +Increases movement speed. +-------------------------- +Type: Two-Handed Axe +Attack: 170 +Weight: 400 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 44 +Swordsman and Merchant +# +1364# +A humongous, double bladed axe. +-------------------------- +Enables Mammonite skill will shove its target 5 cells backward. +-------------------------- +Random chance to inflict Stun status on the target when dealing physical damage. +-------------------------- +Type: Two-Handed Axe +Attack: 187 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 44 +Swordsman and Merchant +# +1365# +An axe which is said to eradicate the darkness in mislead hearts and guide them to the afterlife. +-------------------------- +Increases critical attack damage against Undead race by 50%. +-------------------------- +Random chance to inflict Coma status on Demon monster when dealing physical damage. +-------------------------- +Type: Two-Handed Axe +Attack: 120 +Weight: 230 +Element: Shadow +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 44 +Swordsman and Merchant +# +1366# +A Greek ceremonial axe that possesses the power of holiness. +-------------------------- +Increases Physical Damage against monsters of Demon race by 3%. +-------------------------- +Enables the use of Level 3 Heal. +-------------------------- +Type: Two-Handed Axe +Attack: 180 +Weight: 230 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 44 +Swordsman and Merchant +# +1367# +An axe used for the mass slaugher of enemy forces. +-------------------------- +Ignores physical defense of Brute race by 100%. +-------------------------- +Random chance to inflict Coma status on Brute monster when dealing physical damage. +-------------------------- +Type: Two-Handed Axe +Attack: 120 +Weight: 250 +Element: Earth +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 44 +Swordsman and Merchant +# +1368# +A light axe imbued with the Wind element which can be hurled at enemies. +-------------------------- +Enables use of Tomahawk Throwing. +-------------------------- +Type: Two-Handed Axe +Attack: 165 +Weight: 250 +Element: Wind +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 44 +Swordsman and Merchant +# +1369# +A huge guillotine blade welded to a handle for active decapitation. +-------------------------- +Random chance to inflict Coma status on Demi-Human race. +-------------------------- +Regains 2 SP for each attack on a Demi-Human race monster and 20 SP for each killed Demi-Human race. +-------------------------- +Type: Two-Handed Axe +Attack: 215 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 44 +Swordsman and Merchant +# +1370# +A gigantic and ridiculously heavy axe that requires great strength to use it properly. +-------------------------- +Increases After Attack Delay by 40%. +-------------------------- +Increases SP Consumption by 100%. +-------------------------- +Base STR at least 95: +ATK +340 +Random chance to inflict Stun status on the target when dealing physical damage. +Random chance to destroy target's armor when dealing physical damage. +-------------------------- +Type: Two-Handed Axe +Attack: 10 +Weight: 600 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Swordsman and Merchant +# +1371# +A gigantic and ridiculously heavy axe that requires great strength to use it properly. +-------------------------- +Increases After Attack Delay by 40%. +-------------------------- +Increases SP Consumption by 100%. +-------------------------- +Base STR at least 95: +ATK +340 +Random chance to inflict Stun status on the target when dealing physical damage. +Random chance to destroy target's armor when dealing physical damage. +-------------------------- +Type: Two-Handed Axe +Attack: 10 +Weight: 600 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Swordsman and Merchant +# +1372# +Rental Item +A Greek ceremonial axe that possesses the power of holiness. +-------------------------- +STR +10 +-------------------------- +Increases movement speed. +-------------------------- +Enables the use of Level 3 Heal. +-------------------------- +Increases Physical Damage against monsters of Demon race by 3%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Two-Handed Axe +Attack: 229 +Weight: 0 +Element: Holy +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman and Merchant +# +1373# +Rental Item +A terrifying axe that is said to fill the entire battlefield with blood once it cuts flesh. +-------------------------- +STR +20 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Increases movement speed. +-------------------------- +Type: Two-Handed Axe +Attack: 205 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman and Merchant +# +1374# +Rental Item +A light axe imbued with the Wind element which can be hurled at enemies. +-------------------------- +Enables use of Tomahawk Throwing. +-------------------------- +Type: One-Handed Axe +Attack: 200 +Weight: 0 +Element: Wind +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman and Merchant +# +1375# +A long bladed axe that's effective in melee combat. +-------------------------- +Decreases damage taken from Medium size by 13%. +-------------------------- +Decreases damage taken from Large size by 15%. +-------------------------- +Type: Two-Handed Axe +Attack: 200 +Weight: 250 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Transcendent Swordsman and Merchant +# +1376# +A special Two-Handed Axe that was crafted by a great blacksmith. +It seems capable of destroying any kind of armor. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Critical +20 +Critical bonus raises as weapon's Refine Level is increased. +-------------------------- +When equipped by Whitesmith or Professor classes: +Random chance to auto-cast Level 3 Hammer Fall on the target when dealing physical damage. +-------------------------- +Type: Two-Handed Axe +Attack: 175 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 70 +Transcendent Swordsman and Merchant +# +1377# +A massive Two-Handed Axe that is embedded with an orb imbued with the power of a hurricane. +-------------------------- +Decreases damage taken from Medium size by 10%. +-------------------------- +Random chance to inflict physical attack to all targets within 15*15 cell area and knock them 7 cells backward when dealing physical damage. +-------------------------- +For each Refine Level: +Increases Attack Speed (Decreases After Attack Delay by 1%). +Decreases damage taken from Medium size by 1%. +-------------------------- +Type: Two-Handed Axe +Attack: 332 +Weight: 350 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Transcendent Swordsman and Merchant +# +1378# +Rental Item +A humongous, double bladed axe. +-------------------------- +STR +5 +HIT +20 +-------------------------- +Random chance to inflict Stun on the target when dealing physical damage. +-------------------------- +Increases damage of Mammonite by 20%. +-------------------------- +Type: Two-Handed Axe +Attack: 215 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman and Merchant +# +1379# +A terrifying Two-Handed axe that is said to stimulate the nerves in order to kill Demihuman, once it's in the wearer's hands. +-------------------------- +STR +3 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 55%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Axe +Attack: 200 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Swordsman and Merchant +# +1380# +A terrifying Two-Handed axe that is said to stimulate the nerves in order to kill Demihuman, once it's in the wearer's hands. +-------------------------- +STR +3 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 55%. +-------------------------- +Random chance to destroy target's armor for 3 seconds when dealing physical damage. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Axe +Attack: 200 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Swordsman and Merchant +# +1381# +A sturdy Two-Handed axe useful for defeating many foes. +-------------------------- +Type: Two-Handed Axe +Attack: 100 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 3 +Swordsman and Merchant +# +1382# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 70%. +-------------------------- +Ignores physical defense of Demi-Human race by 25%. +-------------------------- +Refine Level +6: +Ignores physical defense of Demi-Human race by additional 5%. +[Slaughter] Lv 2 (Damage bonus of Slaughter increases up to the Refine Level 14.) +Random chance to inflict Level 1 Critical Wound when dealing physical damage. +-------------------------- +Refine Level +9: +Increases the chance of inflicting Critical Wound by 5%. +Using Mammonite or Cart Termination has a chance of casting Level 2 Critical Wound +-------------------------- +Type: Two-Handed Axe +Attack: 220 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Swordsman and Merchant +# +1383# +Increases Physical Damage against enemies of Undead race by 10%. +-------------------------- +Random chance to auto-cast Level 5 Blessing on the target when dealing physical damage. +-------------------------- +Type: Two-Handed Axe +Attack: 200 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 60 +Merchant +# +1384# +An axe made out of the metal which the Ancient God of Blacksmiths gave to humans. +-------------------------- +VIT +2 +-------------------------- +Random chance to auto-cast Level 3 Magnum Break when using Hammer Fall. +-------------------------- +ATK +10 for each mastered Forging skill. +(Smith Dagger, Smith Sword, Smith Two-Handed Sword, Smith Axe, Smith Mace, Smith Brass Knuckle and Smith Spear) +-------------------------- +Type: Two-Handed Axe +Attack: 250 +Weight: 300 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Merchant +# +1385# +A stone hammer made out of Bradium. +-------------------------- +Increases Stun rate of Hammer Fall by 5%. +Stun rate increases by 2% for every 1 Refine Level. +-------------------------- +Type: Two-Handed Axe +Attack: 210 +Weight: 270 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 75 +Mastersmith +# +1386# +A gigantic and ridiculously heavy axe that requires great strength to use it properly. +-------------------------- +Increases After Attack Delay by 25%. +-------------------------- +Increases SP Consumption by 100%. +-------------------------- +Base STR at least 95: +ATK +400 +Random chance to inflict Stun status on the target when dealing physical damage. +Random chance to break target's armor when dealing physical damage. +-------------------------- +Type: Two-Handed Axe +Attack: 20 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Swordsman and Merchant +# +1387# +This giant axe seems like it's impossible to pick up and wave. +-------------------------- +Increases damage of Cart Termination by 15%. +-------------------------- +Base STR at least 95: +HIT +10 +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Type: Two-Handed Axe +Attack: 330 +Weight: 400 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Transcendent Swordsman and Merchant +# +1388# +Rental Item +A Two-Handed, double bladed axe. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Two-Handed Axe +Attack: 220 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Swordsman and Merchant +# +1391# +An axe made by the Eden Group. It is suitable for those who have more advanced experience handling Two-Handed axes. +-------------------------- +Type: Two-Handed Axe +Attack: 195 +Weight: 0 +Weapon Level: 3 +Refineable: No +Can be enchanted by: +Weapons Expert BKmoc_para01,112,79,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Swordsman and Merchant +# +1392# +A large axe made by a blacksmith from the fires of a volcano. +-------------------------- +Random chance to inflict Burning status on the target or wielder when dealing physical damage. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Axe +Attack: 250 +Weight: 190 +Element: Fire +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 95 +Transcendent Swordsman and Merchant +# +1393# +An axe made of arctic ice. +-------------------------- +Random chance to inflict Crystallization status on the target or wielder when dealing physical damage. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Axe +Attack: 250 +Weight: 190 +Element: Water +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 95 +Transcendent Swordsman and Merchant +# +1394# +Two-Handed Axe that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +14 +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Axe +Attack: 110 +Weight: 200 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Swordsman and Merchant +# +1395# +*Effects in WoE & PVP area +Decreases the target's SP by 10% on each physical attack. (This effect does not work with skills.) +-------------------------- +Type: Two-Handed Axe +Attack: 50 +Weight: 250 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 95 +Swordsman and Merchant +# +1396# +*Effects in WoE & PVP area +Increases Physical Damage against Players by 40% bypasses 30% physical defense. +-------------------------- +Refine Level +6: +Increases damage of Axe Boomerang and Power Swing by 80%. +-------------------------- +Refine Level +9: +Increases Physical Damage against Players by additional 60%. +-------------------------- +Type: Two-Handed Axe +Attack: 300 +Weight: 550 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 95 +Swordsman and Merchant +# +1397# +A stone hammer made out of Bradium. +-------------------------- +Increases Stun rate by 5% when using Hammer Fall. +Stun rate increases by 2% for every 1 Refine Level. +-------------------------- +Type: Two-Handed Axe +Attack: 210 +Weight: 270 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 75 +Mastersmith +# +1398# +Two-Handed Axe coated with metal. +-------------------------- +Type: Two-Handed Axe +Attack: 185 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Swordsman and Merchant +# +1399# +Rental Item +Indestructible in battle +-------------------------- +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Random chance to inflict Stun status when dealing physical damage. +-------------------------- +Type: Two-Handed Axe +Attack: 150 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Swordsman and Merchant +# +1400# +This one handed spear imbued with Vicious Mind. +-------------------------- +Increases ATK by (Refinelv*Refinelv). +(up to +15 Refine Level) +-------------------------- +Type: One-Handed Spear +Attack: 140 +Weight: 140 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 160 +Swordman classes +# +1401# +A light spear that can be thrown in an attack. It'll probably be safer to keep holding on to it, though. +-------------------------- +Type: One-Handed Spear +Attack: 28 +Weight: 70 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 4 +Swordman classes +# +1402# +A light spear that can be thrown in an attack. It'll probably be safer to keep holding on to it, though. +-------------------------- +Type: One-Handed Spear +Attack: 28 +Weight: 70 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 4 +Swordman classes +# +1403# +A light spear that can be thrown in an attack. It'll probably be safer to keep holding on to it, though. +-------------------------- +Type: One-Handed Spear +Attack: 28 +Weight: 70 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 4 +Swordman classes +# +1404# +A basic spear that allows slightly longer ranged melee attacks. +-------------------------- +Type: One-Handed Spear +Attack: 44 +Weight: 85 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 4 +Swordman classes +# +1405# +A basic spear that allows slightly longer ranged melee attacks. +-------------------------- +Type: One-Handed Spear +Attack: 44 +Weight: 85 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 4 +Swordman classes +# +1406# +A basic spear that allows slightly longer ranged melee attacks. +-------------------------- +Type: One-Handed Spear +Attack: 44 +Weight: 85 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 4 +Swordman classes +# +1407# +A long spear that is generally issued to foot soldiers. +-------------------------- +Type: One-Handed Spear +Attack: 60 +Weight: 100 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 4 +Swordman classes +# +1408# +A long spear that is generally issued to foot soldiers. +-------------------------- +Type: One-Handed Spear +Attack: 60 +Weight: 100 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 4 +Swordman classes +# +1409# +A long spear that is generally issued to foot soldiers. +-------------------------- +Type: One-Handed Spear +Attack: 60 +Weight: 100 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 4 +Swordman classes +# +1410# +A spear that is commonly used by mounted knights. +-------------------------- +Type: Two-Handed Spear +Attack: 185 +Weight: 250 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Swordman classes +# +1411# +A spear that is commonly used by mounted knights. +-------------------------- +Type: Two-Handed Spear +Attack: 185 +Weight: 250 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Swordman classes +# +1412# +A spear that is commonly used by mounted knights. +-------------------------- +Type: Two-Handed Spear +Attack: 185 +Weight: 250 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Swordman classes +# +1413# +A legendary spear that is known for its ability to never miss its target. +-------------------------- +HIT +30 +-------------------------- +Perfect HIT +25% +-------------------------- +Type: One-Handed Spear +Attack: 120 +Weight: 50 +Element: Wind +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 4 +Swordman classes +# +1414# +A special spear imbued with the earth element. +-------------------------- +MaxHP +800 +MaxSP -50 +-------------------------- +Type: One-Handed Spear +Attack: 145 +Weight: 70 +Element: Earth +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1415# +A spear that has been made to puncture any armor worn by enemies. +-------------------------- +Ignores physical defense of target by 100%. +-------------------------- +Increases Physical Damage against enemies of Neutral elemental by 25%. +-------------------------- +Type: One-Handed Spear +Attack: 100 +Weight: 85 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1416# +A spear with the power to drain the souls of enemies it has defeated. +-------------------------- +Regains 1 SP with each attack and 5 SP each time an enemy is killed. +-------------------------- +Type: One-Handed Spear +Attack: 100 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1417# +An axe head mounted on a long pole, this weapon was especially made to break through thick armored plates. +-------------------------- +STR +1 +INT +2 +DEX +1 +-------------------------- +Type: One-Handed Spear +Attack: 160 +Weight: 380 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 71 +Swordman classes +# +1418# +A legendary spear that is known for its ability to never miss its target. +-------------------------- +HIT +30 +-------------------------- +Perfect HIT +25% +-------------------------- +Type: One-Handed Spear +Attack: 120 +Weight: 50 +Element: Wind +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 4 +Swordman classes +# +1419# +Rental Item +A weapon consisting of an axe head mounted on a long pole that is designed to break through thick armor. +-------------------------- +STR +1 +INT +2 +DEX +1 +-------------------------- +Type: One-Handed Spear +Attack: 195 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Swordman classes +# +1420# +A spear fashioned from a unicorn's horn, enabling it to Neutralizer poisons and inflict deep wounding. +-------------------------- +Enables the use of Level 1 Detoxify. +-------------------------- +Random chance to inflict Bleeding status on the target when dealing physical damage. +-------------------------- +Indestructible in battle +-------------------------- +When equipped with Valkyrie Shield: +Random chance to auto-cast Level 2 Assumptio on wearer when receiving physical damage. +-------------------------- +Type: One-Handed Spear +Attack: 150 +Weight: 100 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 65 +Transcendent Swordman classes +# +1421# +A spear that is tipped with a hook that can push and pull enemies. +-------------------------- +Enables the use of Level 3 Pierce. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 20%. +-------------------------- +Random chance to inflict Stun status to target when dealing physical damage. +-------------------------- +Type: One-Handed Spear +Attack: 140 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 65 +Transcendent Swordman classes +# +1422# +A spear with a leaf shaped point that is designed for hunting, causing damage with its heavy weight instead of stabbing. +-------------------------- +Ignores physical defense of Brute race by 100%. +-------------------------- +Random chance a defeated Brute monster will drop Meat. +-------------------------- +Random chance to auto-cast Level 3 Joint Beat on the target when dealing physical damage. +-------------------------- +Type: One-Handed Spear +Attack: 180 +Weight: 420 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 60 +Transcendent Swordman classes +# +1423# +The adventurers who are brave the item which is provided from the hazard adventurer guild. +-------------------------- +ATK +50%. +-------------------------- +Type: One-Handed Spear +Attack: 120 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Swordman classes +# +1424# +Rental Item +A spear that has been made to puncture any armor worn by enemies. +-------------------------- +Ignores physical defense of target by 100%. +-------------------------- +Increases Physical Damage against enemies of Medium size by 20%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: One-Handed Spear +Attack: 149 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordman classes +# +1425# +A special spear made for charging at the enemy's position. It is especially designed for battles against Demihuman. +-------------------------- +STR +2 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 95%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +When equipped by Crusader classes: +Increases Attack Speed (Decreases After Attack Delay by 20%). +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Spear +Attack: 60 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Swordman classes +# +1426# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 95%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +Refine Level +6: +Ignores physical defense of Demi-Human race by additional 5%. +Increases Attack Speed (Decreases After Attack Delay by 5%). +[Slaughter] Lv 1 (Damage bonus of Slaughter increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +When equipped by Knight classes: +Random chance to inflict Level 2 Critical Wound when using Pierce skill. + +When equipped by Crusader classes: +Increases Attack Speed (Decreases After Attack Delay by 5%). +Random chance to auto-cast Level 5 Pressure when dealing physical damage. +-------------------------- +Type: One-Handed Spear +Attack: 130 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Swordman classes +# +1427# +Rental Item +A good long spear. +-------------------------- +STR +2 +-------------------------- +Increases damage of Magnum Break by 25%. +-------------------------- +Type: One-Handed Spear +Attack: 160 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Swordman classes +# +1428# +A sword made with a holy horn. Has capacity to remove poison and it is said being pierced by this spear causes you to bleed non-stop. +-------------------------- +Enables the use of Level 1 Detoxify. +-------------------------- +Random chance to inflict Bleeding status on the target when dealing physical damage. +-------------------------- +Indestructible in battle +-------------------------- +When equipped with Valkyrie Shield: +Random chance to auto-cast Level 2 Assumptio on wearer when receiving physical damage. +-------------------------- +Type: One-Handed Spear +Attack: 150 +Weight: 100 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 65 +Transcendent Swordman classes +# +1429# +A spear designed specifically to hunt. The end tip looks like a leaf. This spear focused on using its weight to bring damage rather than to piercing the enemy. +-------------------------- +Ignores physical defense of Brute race by 100%. +-------------------------- +Random chance a defeated Brute monster will drop Meat. +-------------------------- +Random chance to auto-cast Level 3 Joint Beat on the target when dealing physical damage. +-------------------------- +Type: One-Handed Spear +Attack: 180 +Weight: 420 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 60 +Transcendent Swordman classes +# +1430# +Rental Item +A long spear that is generally issued to foot soldiers. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 70%. +-------------------------- +Type: One-Handed Spear +Attack: 74 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Swordman classes +# +1431# +Rental Item +A weapon consisting of an axe head mounted on a long pole that is designed to break through thick armor. +-------------------------- +STR +1 +INT +2 +DEX +1 +-------------------------- +Type: One-Handed Spear +Attack: 195 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Swordman classes +# +1433# +A beautiful spear engraved with patterns of the Rune-Midgarts Kingdom. +-------------------------- +MATK +40 +-------------------------- +Increases damage of Cannon Spear and Banishing Point by 20%. +Additional 3% damage increase for every 2 Refine Level. +-------------------------- +When equipped with Imperial Guard: +Increases damage of Grand Cross and Genesis Ray by 10%. +-------------------------- +Type: One-Handed Spear +Attack: 180 +Weight: 180 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 102 +Royal Guard +# +1434# +A spear made by the Eden Group. It is suitable for those who have more advanced experience handling spears. +-------------------------- +Type: One-Handed Spear +Attack: 165 +Weight: 0 +Weapon Level: 3 +Refineable: No +Can be enchanted by: +Weapons Expert BKmoc_para01,112,79,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Swordman classes +# +1435# +A very sharp spear made from cranium. +-------------------------- +MaxSP -100 +-------------------------- +Increases damage of Cannon Spear by 10%. +-------------------------- +For each Refine Level: +Increases damage of Cannon Spear by 3%. +-------------------------- +Type: One-Handed Spear +Attack: 180 +Weight: 160 +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Royal Guard +# +1436# +*Effects in WoE & PVP area +Increases Physical Damage against Players by 60%. +-------------------------- +Refine Level +6: +Increases damage of Pinpoint Attack and Hundred Spears by 80%. +-------------------------- +Refine Level +9: +Increases Physical Damage against Players by additional 30%. +-------------------------- +Type: One-Handed Spear +Attack: 150 +Weight: 85 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 95 +Swordman classes +# +1437# +Rental Item +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Random chance to inflict Curse status when dealing physical damage. +-------------------------- +Type: One-Handed Spear +Attack: 100 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Swordman classes +# +1438# +A spear sculpted from Gray Shard to counter Magic Sword Tartanos. +It offers incredible power and magic at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +100 +-------------------------- +Adds a low chance of regaining HP and SP from 5% of your damage inflicted when dealing physical damage. +-------------------------- +Drains 100 HP every 10 seconds. +-------------------------- +Drains 1,000 HP when unequipped. +-------------------------- +Type: One-Handed Spear +Attack: 150 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Swordman classes +# +1440# +A spear that is tipped with a hook that can push and pull enemies. +-------------------------- +Enables the use of Level 3 Pierce. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 20%. +-------------------------- +Random chance to inflict Stun status to target when dealing physical damage. +-------------------------- +When equipped with Tournament Shield: +DEF +2 +ATK +4% +-------------------------- +Type: One-Handed Spear +Attack: 140 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 65 +Transcendent Swordman classes +# +1441# +Blue Spear which has destructive power. +-------------------------- +STR +5, AGI +5 +-------------------------- +When VIP status active: +ATK +20% +ASPD +3 +-------------------------- +Type: One-Handed Spear +Attack: 200 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Royal Guard +# +1442# +A golden spear with brutal power. +-------------------------- +STR +8 +AGI +8 +-------------------------- +Type: One-Handed Spear +Attack: 180 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 120 +Royal Guard +# +1443# +One handed spear that emitting red aura. +-------------------------- +ATK increased by (RefineLv*RefineLv), up to +15 Refine Level. +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: One-Handed Spear +Attack: 90 +Weight: 90 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Swordman classes +# +1444# +A spear imbued with the power of lightning. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Fish and Water elemental by 10%. +Refine Level +9: +Increases Physical Damage against enemies of Fish and Water elemental by 15%. +-------------------------- +Type: One-Handed Spear +Attack: 140 +Weight: 200 +Element: Wind +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Swordman classes +# +1445# +A replica of Warrior Spear. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Brute and Plant race by 10%. +Increases Physical Damage against enemies of Earth and Wind elemental by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Brute and Plant race by 15%. +Increases Physical Damage against enemies of Earth and Wind elemental by 15%. +-------------------------- +Type: One-Handed Spear +Attack: 140 +Weight: 0 +Element: Earth +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Swordman classes +# +1446# +A blessed one handed spear from the king. Has an effect of calming the spirits of the dead. +-------------------------- +Increases Physical Damage against enemies of Bio Lab and Tomb of the Fallen by 40%. +-------------------------- +Refine Level +5: +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by additional 20%. +-------------------------- +For every Refine Level above +5 or higher: +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by additional 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Spear +Attack: 130 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rune Knight and Royal Guard +# +1447# +A violence spear with deadly poison \ +. +It has powerful attack, but has a price that you have to deal with. +-------------------------- +Critical +10 +-------------------------- +Enables Level 5 Double Attack. +-------------------------- +Random chance to inflict Poison status on the target when dealing physical damage. +-------------------------- +Random chance to inflict Poison on wielder when wielder receiving physical attack. +-------------------------- +Type: One-Handed Spear +Attack: 150 +Weight: 50 +Element: Poison +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rune Knight and Royal Guard +# +1448# +A spear imbued with the earth power. +It's said that when combined with \ +, it's possible to achieve ultimate power. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Brute and Plant race by 10%. +Increases Physical Damage against enemies of Earth and Wind elemental by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Brute and Plant race by 15%. +Increases Physical Damage against enemies of Earth and Wind elemental by 15%. +-------------------------- +Type: One-Handed Spear +Attack: 140 +Weight: 200 +Element: Earth +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Swordman classes +# +1449# +A special spear imbued with the earth element. +-------------------------- +MaxHP +800 +MaxSP -50 +-------------------------- +When equipped with Karma Wind Stone: +Refine Level of Gelerdria +7: +Increases Physical Damage against enemies of Boss class by 30%. +Increases Physical Damage against enemies of Water and Wind elemental by 30%. +Increases Physical Damage against enemies of Insect and Fish race by 30%. +Increases damage of Wind Cutter by 30%. +-------------------------- +Refine Level of Gelerdria +9: +Increases Physical Damage against enemies of Boss class by 20%. +Increases Physical Damage against enemies of Water and Wind elemental by 20%. +Increases Physical Damage against enemies of Insect and Fish race by 20%. +Increases damage of Wind Cutter by 20%. +-------------------------- +Refine Level of Gelerdria +10: +Decreases Variable Casting Time Wind Cutter by 50% +-------------------------- +Type: One-Handed Spear +Attack: 145 +Weight: 70 +Element: Earth +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1450# +A lance imbued with Vicious Mind. +-------------------------- +Increases ATK by (Refinelv*Refinelv). +(up to +15 Refine Level) +-------------------------- +Type: Two-Handed Spear +Attack: 225 +Weight: 225 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 160 +Swordman classes +# +1451# +Topped with a curved blade and puncturing spike, this spear can topple a mounted warrior in the hands of a highly skilled expert. +-------------------------- +Type: Two-Handed Spear +Attack: 84 +Weight: 100 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Swordman classes +# +1452# +Topped with a curved blade and puncturing spike, this spear can topple a mounted warrior in the hands of a highly skilled expert. +-------------------------- +Type: Two-Handed Spear +Attack: 84 +Weight: 100 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Swordman classes +# +1453# +Topped with a curved blade and puncturing spike, this spear can topple a mounted warrior in the hands of a highly skilled expert. +-------------------------- +Type: Two-Handed Spear +Attack: 84 +Weight: 100 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Swordman classes +# +1454# +A spear with a huge swordlike spearhead. +-------------------------- +Type: Two-Handed Spear +Attack: 104 +Weight: 120 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Swordman classes +# +1455# +A spear with a huge swordlike spearhead. +-------------------------- +Type: Two-Handed Spear +Attack: 104 +Weight: 120 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Swordman classes +# +1456# +A spear with a huge swordlike spearhead. +-------------------------- +Type: Two-Handed Spear +Attack: 104 +Weight: 120 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Swordman classes +# +1457# +A spear topped with a double edged blade with two side blades. +-------------------------- +Type: Two-Handed Spear +Attack: 124 +Weight: 200 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Swordman classes +# +1458# +A spear topped with a double edged blade with two side blades. +-------------------------- +Type: Two-Handed Spear +Attack: 124 +Weight: 200 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Swordman classes +# +1459# +A spear topped with a double edged blade with two side blades. +-------------------------- +Type: Two-Handed Spear +Attack: 124 +Weight: 200 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Swordman classes +# +1460# +A triple pronged spear that can also be used for fishing. +-------------------------- +Type: Two-Handed Spear +Attack: 150 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Swordman classes +# +1461# +A triple pronged spear that can also be used for fishing. +-------------------------- +Type: Two-Handed Spear +Attack: 150 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Swordman classes +# +1462# +A triple pronged spear that can also be used for fishing. +-------------------------- +Type: Two-Handed Spear +Attack: 150 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Swordman classes +# +1463# +A spear with a steel spike and axe-blade which enable both piercing and hacking. +-------------------------- +Type: Two-Handed Spear +Attack: 165 +Weight: 250 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Swordman classes +# +1464# +A spear with a steel spike and axe-blade which enable both piercing and hacking. +-------------------------- +Type: Two-Handed Spear +Attack: 165 +Weight: 250 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Swordman classes +# +1465# +A spear with a steel spike and axe-blade which enable both piercing and hacking. +-------------------------- +Type: Two-Handed Spear +Attack: 165 +Weight: 250 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Swordman classes +# +1466# +A heavy scythe that is usually carried by the Grim Reaper. +-------------------------- +HIT +10 +Critical +30 +-------------------------- +Type: Two-Handed Spear +Attack: 180 +Weight: 250 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1467# +A spear with a hooked blade that has proven its versatility in battle. +-------------------------- +Increases Physical Damage against enemies of Brute race by 10%. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 5%. +-------------------------- +Type: Two-Handed Spear +Attack: 183 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1468# +A spear imbued with the wind element. +-------------------------- +Random chance to auto-cast Level 3 Thunder Storm when dealing physical damage. +-------------------------- +Random chance to inflict Silence status on the target when dealing physical damage. +-------------------------- +Type: Two-Handed Spear +Attack: 170 +Weight: 200 +Element: Wind +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1469# +A legendary spear owned by the tragic soldier, Longinus. +-------------------------- +Increases Physical Damage against enemies of Demi-Human and Angel race by 10%. +-------------------------- +Type: Two-Handed Spear +Attack: 180 +Weight: 250 +Element: Shadow +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1470# +A spear that radiates with the warm, glowing light of pure holiness. +-------------------------- +Random chance to auto-cast Level 3 Soul Strike when dealing physical damage. +-------------------------- +Enables the use of Level 5 Heal. +-------------------------- +Type: Two-Handed Spear +Attack: 190 +Weight: 300 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1471# +A spear imbued with the Fire element and enchanted with the power to summon flame. +-------------------------- +STR +3 +-------------------------- +Random chance to auto-cast Level 5 Fire Ball when dealing physical damage. +-------------------------- +Type: Two-Handed Spear +Attack: 200 +Weight: 350 +Element: Fire +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1472# +A high quality, Two-Handed staff that amplifies psychic power. +-------------------------- +INT +5 +AGI +2 +MATK +200 +-------------------------- +Type: Two-Handed Staff +Attack: 25 +Weight: 140 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 73 +Magician and Soul Linker classes +# +1473# +Rumored to have been crafted by an ancient wizard, this staff contains awesome energies. +-------------------------- +INT +6 +DEX +2 +MATK +200 +-------------------------- +Type: Two-Handed Staff +Attack: 120 +Weight: 240 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 90 +Magician and Soul Linker classes +# +1474# +A spear, created from the body of a dead giant sea creature, topped with a jagged blade that leaves deep wounds. +-------------------------- +Ignores physical defense of Dragon race by 100%. +-------------------------- +Increases Physical Damage against enemies of Boss class by 10%. +-------------------------- +Type: Two-Handed Spear +Attack: 160 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 60 +Swordman classes +# +1475# +Not much is known about the mysterious Equestrian's Spear... +# +1476# +A frightening crescent shaped scythe that can kill a man with but a single swing. +-------------------------- +HIT +10 +Critical +30 +-------------------------- +Type: Two-Handed Spear +Attack: 180 +Weight: 250 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1477# +The creator of this formidable Two-Handed Spear sacrificed his own life to forge it, resulting in a curse that will try to dominate the wearer's soul. +-------------------------- +Increases Physical Damage against enemies of Shadow elemental by 20%. +-------------------------- +Increases Physical Damage against enemies of Demon and Undead race by 20%. +-------------------------- +Decreases damage taken from Shadow elemental by 10%. +-------------------------- +Decreases damage taken from Demon and Undead race by 10%. +-------------------------- +Gains 50 HP when defeating target with melee physical attacks. +-------------------------- +Random chance to inflict Confuse status on wielder when dealing physical damage. +-------------------------- +Type: Two-Handed Spear +Attack: 170 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 75 +Swordman classes +# +1478# +An auger shaped spear that is designed for striking the weak points of an enemy. +-------------------------- +Ignores physical defense of target by 100%. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 10%. +-------------------------- +Random chance to auto-cast Level 5 Pierce on the target when dealing physical damage. +-------------------------- +Type: Two-Handed Spear +Attack: 120 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 65 +Knight and Crusader classes +# +1479# +The creator of this formidable Two-Handed Spear sacrificed his own life to forge it, resulting in a curse that will try to dominate the wearer's soul. +-------------------------- +Increases Physical Damage against enemies of Shadow elemental by 20%. +-------------------------- +Increases Physical Damage against enemies of Demon and Undead race by 20%. +-------------------------- +Decreases damage taken from Shadow elemental by 10%. +-------------------------- +Decreases damage taken from Demon and Undead race by 10%. +-------------------------- +Gains 50 HP when defeating target with melee physical attacks. +-------------------------- +Random chance to inflict Confuse status on wielder when dealing physical damage. +-------------------------- +Type: Two-Handed Spear +Attack: 170 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 75 +Swordman classes +# +1480# +A spear, created from the body of a dead giant sea creature, topped with a jagged blade that leaves deep wounds. +-------------------------- +Ignores physical defense of Dragon race by 100%. +-------------------------- +Increases Physical Damage against enemies of Boss class by 10%. +-------------------------- +Type: Two-Handed Spear +Attack: 160 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 60 +Swordman classes +# +1481# +A spear imbued with the wind element. +-------------------------- +Random chance to auto-cast Level 3 Thunder Storm when dealing physical damage. +-------------------------- +Random chance to inflict Silence status on the target when dealing physical damage. +-------------------------- +Type: Two-Handed Spear +Attack: 170 +Weight: 200 +Element: Wind +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1482# +A Two-Handed Spear made to rush at the enemy's position, especially designed for battles against Demihuman. +-------------------------- +STR +2 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 25%. +-------------------------- +Ignores physical defense of Demi-Human race by 100%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Spear +Attack: 160 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Swordman classes +# +1483# +Two-Handed Spear made of the Ivory of a Mammoth. It is very hard to be processed due to its strength, but its sharp end makes it perfect for stabbing. +-------------------------- +AGI +2 +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Random chance to auto-cast Level 5 Spear Stab when dealing physical damage. +-------------------------- +Random chance to inflict Critical Wound on the target when dealing physical damage. +-------------------------- +Type: Two-Handed Spear +Attack: 160 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Transcendent Swordman classes +# +1484# +A Two-Handed spear which looks just like a miniature of a pillar from the ancient temples. +-------------------------- +Increases After Attack Delay by 10%. +-------------------------- +Increases DEF according to weapon Refine Level. +-------------------------- +Type: Two-Handed Spear +Attack: 150 +Weight: 560 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 70 +Lord Knight +# +1485# +Two handed three-pronged fork that doubles as a spear. It is light and very useful despite its size. +-------------------------- +Type: Two-Handed Spear +Attack: 112 +Weight: 70 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 50 +Transcendent Swordman classes +# +1486# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 70%. +-------------------------- +Ignores physical defense of Demi-Human race by 25%. +-------------------------- +Refine Level +6: +Ignores physical defense of Demi-Human race by additional 5%. +Slaughter Lv 1 (Damage bonus of Slaughter increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +When equipped by Crusader classes: +Random chance to auto-cast Level 5 Pressure when dealing physical damage. + +When equipped by Knight classes: +Random chance to inflict Level 2 Critical Wound when using Pierce skill. +-------------------------- +Type: Two-Handed Spear +Attack: 220 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Swordman classes +# +1487# +Rental Item +A spear that is commonly used by mounted knights. +-------------------------- +Increases Physical Damage against enemies of all size monsters by 50%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Two-Handed Spear +Attack: 220 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Swordman classes +# +1488# +Rental Item +Ignores physical defense of target by 100%. +-------------------------- +Random chance to auto-cast Level 5 Pierce on attacker when dealing physical damage. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 20%. +-------------------------- +When VIP status active: +Increases Physical Damage against enemies of Demi-Human by 5% +-------------------------- +Type: Two-Handed Spear +Attack: 135 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Knight and Crusader classes +# +1489# +Rental Item +A spearfish that is well known for delicious meat but this is frozen. +-------------------------- +Random chance to inflict Bleeding status on the target when using Pierce and Spiral Pierce skill. +-------------------------- +Random chance to inflict Freezing status on wielder when dealing physical damage. +-------------------------- +Increases damage of Spiral Pierce by 100%. +-------------------------- +Increases damage of Inspiration by 50%. +-------------------------- +Base Level at least 100: +ATK +30 +-------------------------- +Type: Two-Handed Spear +Attack: 220 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Swordman classes +# +1490# +The mini sized version of a spear from the Giants who were guardians in an Ancient temple. +-------------------------- +ASPD -10 +-------------------------- +When you unequip this weapon it will drain SP by 600. +-------------------------- +Increases skill cooldown of Spiral Pierce by 20 seconds. +-------------------------- +Base STR at least 120: +ATK +300 +-------------------------- +Type: Two-Handed Spear +Attack: 20 +Weight: 2000 +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 140 +Rune Knight +# +1491# +Two-Handed Spear that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +12 +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Two-Handed Spear +Attack: 105 +Weight: 150 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Swordman classes +# +1492# +*Effects in WoE & PVP area +Increases Physical Damage against Players by 80%. +-------------------------- +Refine Level +6: +Increases damage of Spiral Pierce by 100%. +Increases damage of Overbrand by 50%. +-------------------------- +Refine Level +9: +Has a chance to reflect damage back to the enemy as well as casting Magic Mirror. +-------------------------- +Type: Two-Handed Spear +Attack: 250 +Weight: 450 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 95 +Swordman classes +# +1493# +Spear with strengthened metal +-------------------------- +For each Refine Level: +ATK +6 +-------------------------- +For each 10 Base Level above 20: +ATK +5 (Up to Base Level 120) +-------------------------- +Type: Two-Handed Spear +Attack: 100 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Swordman classes +# +1494# +A beautiful spear-shaped wave. She was blessed by the spirits of the water. +-------------------------- +For each Refine Level: +MaxHP +1% +-------------------------- +Type: Two-Handed Spear +Attack: 190 +Weight: 380 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 105 +Swordman classes +# +1495# +Rental Item +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Random chance to inflict Blind status when dealing physical damage. +-------------------------- +Type: Two-Handed Spear +Attack: 150 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Swordman classes +# +1496# +A Two-Handed Spear sculpted from Gray Shard to counter Magic Sword Tartanos. +It offers incredible power and magic at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +50 +-------------------------- +Chance to drain 5% HP/SP on every physsical attack +-------------------------- +Drains 100 HP every 10 seconds +-------------------------- +Drains 1000 HP when unequip this item +-------------------------- +Type: Two-Handed Spear +Attack: 250 +Weight: 375 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Rune Knight and Royal Guard +# +1497# +A spear imbued with the Fire element and enchanted with the power to summon flame. +-------------------------- +STR +3 +-------------------------- +Random chance to auto-cast Level 5 Fire Ball when dealing physical damage. +-------------------------- +Type: Two-Handed Spear +Attack: 200 +Weight: 350 +Element: Fire +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +1498# +A Two-Handed spear that emitting red aura. +-------------------------- +ATK increased by (RefineLv*RefineLv), up to +15 Refine Level. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Two-Handed Spear +Attack: 175 +Weight: 175 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Swordman classes +# +1499# +A blessed two handed spear from the king. Has an effect of calming the spirits of the dead. +-------------------------- +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by 40%. +-------------------------- +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by 5%. +-------------------------- +Refine Level +5: +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by additional 30%. +-------------------------- +For every Refine Level above +5 or higher: +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by additional 15%. +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by additional 1%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Spear +Attack: 220 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Swordman classes +# +1501# +A heavy bludgeon that makes a handy weapon in a pinch. +-------------------------- +Type: Mace +Attack: 23 +Weight: 70 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 2 +Novice, Swordsman, Acolyte and Merchant +# +1502# +A heavy bludgeon that makes a handy weapon in a pinch. +-------------------------- +Type: Mace +Attack: 23 +Weight: 70 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 2 +Novice, Swordsman, Acolyte and Merchant +# +1503# +A heavy bludgeon that makes a handy weapon in a pinch. +-------------------------- +Type: Mace +Attack: 23 +Weight: 70 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 2 +Novice, Swordsman, Acolyte and Merchant +# +1504# +A flanged, solid club that is effective for simple smashing. +-------------------------- +Type: Mace +Attack: 37 +Weight: 80 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 2 +Novice, Swordsman, Acolyte and Merchant +# +1505# +A flanged, solid club that is effective for simple smashing. +-------------------------- +Type: Mace +Attack: 37 +Weight: 80 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 2 +Novice, Swordsman, Acolyte and Merchant +# +1506# +A flanged, solid club that is effective for simple smashing. +-------------------------- +Type: Mace +Attack: 37 +Weight: 80 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 2 +Novice, Swordsman, Acolyte and Merchant +# +1507# +Basically a big hammer with spikes, this mace is excellent for breaking all sorts of things. +-------------------------- +Type: Mace +Attack: 54 +Weight: 100 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Novice, Swordsman, Acolyte and Merchant +# +1508# +Basically a big hammer with spikes, this mace is excellent for breaking all sorts of things. +-------------------------- +Type: Mace +Attack: 54 +Weight: 100 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Novice, Swordsman, Acolyte and Merchant +# +1509# +Basically a big hammer with spikes, this mace is excellent for breaking all sorts of things. +-------------------------- +Type: Mace +Attack: 54 +Weight: 100 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Novice, Swordsman, Acolyte and Merchant +# +1510# +With a spiked metal ball that freely swings from a chain, a flail is a very intimidating weapon. +-------------------------- +Type: Mace +Attack: 69 +Weight: 90 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Swordsman, Acolyte and Merchant +# +1511# +With a spiked metal ball that freely swings from a chain, a flail is a very intimidating weapon. +-------------------------- +Type: Mace +Attack: 69 +Weight: 90 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Swordsman, Acolyte and Merchant +# +1512# +With a spiked metal ball that freely swings from a chain, a flail is a very intimidating weapon. +-------------------------- +Type: Mace +Attack: 69 +Weight: 90 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Swordsman, Acolyte and Merchant +# +1513# +A metal club topped with a solid steel ball that's covered in spikes. +-------------------------- +Type: Mace +Attack: 110 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Swordsman, Acolyte and Merchant +# +1514# +A metal club topped with a solid steel ball that's covered in spikes. +-------------------------- +Type: Mace +Attack: 110 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Swordsman, Acolyte and Merchant +# +1515# +A metal club topped with a solid steel ball that's covered in spikes. +-------------------------- +Type: Mace +Attack: 110 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Swordsman, Acolyte and Merchant +# +1516# +A deadly mace topped with 3 extremely sharp blades on its end. +-------------------------- +Type: Mace +Attack: 130 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Swordsman, Acolyte and Merchant +# +1517# +A specialty weapon that beautifully combines the power of swords and maces. +-------------------------- +Type: Mace +Attack: 130 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Swordsman, Acolyte and Merchant +# +1518# +A specialty weapon that beautifully combines the power of swords and maces. +-------------------------- +Type: Mace +Attack: 130 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Swordsman, Acolyte and Merchant +# +1519# +A simple flail that consists of a thin mace attached to a chain of iron links. +-------------------------- +Type: Mace +Attack: 84 +Weight: 80 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Swordsman, Acolyte and Merchant +# +1520# +A simple flail that consists of a thin mace attached to a chain of iron links. +-------------------------- +Type: Mace +Attack: 84 +Weight: 80 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Swordsman, Acolyte and Merchant +# +1521# +A simple flail that consists of a thin mace attached to a chain of iron links. +-------------------------- +Type: Mace +Attack: 84 +Weight: 80 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Swordsman, Acolyte and Merchant +# +1522# +A huge, unwieldy club that can knock enemies unconscious. +-------------------------- +Random chance to inflict Stun status on the target when dealing physical damage. +-------------------------- +Type: Mace +Attack: 140 +Weight: 200 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Acolyte +# +1523# +A flail, entirely covered in spikes, that swings wildly and haphazardly in battle. +-------------------------- +Increases Critical Hit rate by 40%. +-------------------------- +Decreases all Defenses applied to owner by 2/3. +-------------------------- +Type: Mace +Attack: 85 +Weight: 70 +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 40 +Acolyte +# +1524# +A mace forged out of pure gold. +-------------------------- +Increases Physical Damage against enemies of Undead race by 10%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Mace +Attack: 110 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Acolyte +# +1525# +A long, thin mace built like a spear. +-------------------------- +Increases attack range upto 3 cells away. +-------------------------- +Decreases damage taken from Ranged Physical Damage by 10%. +-------------------------- +Type: Mace +Attack: 135 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Acolyte +# +1526# +A hefty mace with urved, sharp blades. +-------------------------- +Increases Physical Damage against enemies of Undead race by 15%. +-------------------------- +Increases experience gained from defeating Undead race monsters by 5%. +-------------------------- +Random chance to inflict Coma status on Undead race. +-------------------------- +Type: Mace +Attack: 145 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Acolyte +# +1527# +A heavy and powerful iron mace with a rounded top. +-------------------------- +Increases Physical Damage against enemies of Earth elemental by 10%. +-------------------------- +Increases Physical Damage against enemies of Undead and Demi-Human race by 10%. +-------------------------- +Type: Mace +Attack: 165 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Acolyte +# +1528# +A cruciform mace that was blessed by the pope of the Rune-Midgarts kingdom. +-------------------------- +Regains 1 SP with each attack against an Undead monster and 3 SP each time an Undead monster is killed. +-------------------------- +Random chance to auto-cast Level 3 Turn Undead when dealing physical damage. +-------------------------- +Type: Mace +Attack: 140 +Weight: 150 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Acolyte +# +1529# +A heavy, round headed mace intended for use in athletic competitions, but has proven to be effective in battle. +-------------------------- +Type: Mace +Attack: 155 +Weight: 300 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 78 +Priest and Monk classes +# +1530# +A facsimile of the mighty hammer wielded by Thor, god of thunder. +-------------------------- +STR +20, DEX +50 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Random chance to auto-cast Level 10 Thunder Storm when dealing physical damage. +-------------------------- +Random chance to inflict splash damage for 10 seconds when dealing melee physical attacks. +-------------------------- +Indestructible in battle +-------------------------- +Type: Mace +Attack: 350 +Weight: 600 +Weapon Level: 4 +Tier: 7 +-------------------------- +Requirement: +Base Level 95 +Swordsman and Merchant +# +1531# +A heavy tool with many practical applications. +-------------------------- +Random chance to inflict Poison, Blind, Stun or Frozen on the target when dealing physical damage. +-------------------------- +Type: Mace +Attack: 115 +Weight: 250 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Acolyte +# +1532# +A blow from this hefty mace can cause someone to black out. +-------------------------- +Random chance to inflict Stun status on the target when dealing physical damage. +-------------------------- +Type: Mace +Attack: 140 +Weight: 200 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Acolyte +# +1533# +Any man holding the Warrior's Balmung will gather new inner strength. +-------------------------- +All Stats +5 +-------------------------- +Type: One-Handed Sword +Attack: 170 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +# +1534# +Rental Item +A heavy tool with many practical applications. +-------------------------- +Random chance to inflict Poison, Blind, Stun or Frozen on the target when dealing physical damage. +-------------------------- +Type: Mace +Attack: 150 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Acolyte +# +1535# +A hammer that was used by Hollgren to Refine weapons and armor; +it looks bulky and powerful, but it doesn't seem to be fully dependable. +-------------------------- +Adds a low chance of destroying the weapon and armor of target. +This chance is greatly increased when the Mastersmith Card is compounded to this weapon, +but adds a low chance of breaking the wearer's equipment. +-------------------------- +Base STR at least 44: +ATK +44 +-------------------------- +Type: Mace +Attack: 4 +Weight: 44 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 44 +Swordsman, Acolyte and Merchant +# +1536# +The adventurers who are brave the item which is provided from the hazard adventurer guild. +-------------------------- +ATK +50% +-------------------------- +Type: Mace +Attack: 120 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Swordsman, Acolyte and Merchant +# +1537# +Rental Item +A heavy and powerful iron mace with a rounded top. +-------------------------- +Increases Physical Damage against enemies of Undead elemental monsters and Demon race by 40%. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 30%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Mace +Attack: 193 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Acolyte +# +1538# +A flail, entirely covered in spikes, that swings wildly and haphazardly in battle. +-------------------------- +Increases Critical Hit rate by 40%. +-------------------------- +Decreases all Defenses applied to wielder by 2/3. +-------------------------- +Type: Mace +Attack: 85 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Acolyte +# +1539# +A mace forged out of pure gold. +-------------------------- +Increases Physical Damage against enemies of Undead race by 10%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Mace +Attack: 110 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Acolyte +# +1540# +A cruciform mace that was blessed by the pope of the Rune-Midgarts kingdom. +-------------------------- +Regains 1 SP with each attack against an Undead monster and 3 SP each time an Undead monster is killed. +-------------------------- +Random chance to auto-cast Level 3 Turn Undead when dealing physical damage. +-------------------------- +Type: Mace +Attack: 140 +Weight: 150 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Acolyte +# +1541# +A large silver mace, made for exorcisms. +-------------------------- +Increases Physical Damage against monsters of Shadow elemental and Demon race by 10%. +-------------------------- +Random chance to auto-cast Level 1 Signum Crusis when receiving physical damage. +The Level of Signum Crusis increases by Refine Level. +(Activate Level 10 if Refine Level is +11 or higher) +-------------------------- +Random chance to increase ATK by 50 for 20 seconds when receiving physical damage. +-------------------------- +Type: Mace +Attack: 120 +Weight: 90 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 60 +Acolyte +# +1542# +A deadly mace that is usually worn by the best fighter; it seems to be capable of damaging through an enemy's armor. +It is especially designed for battles against Demihuman. +-------------------------- +STR +1, DEX +1 +-------------------------- +Increases Physical Damage againstDemi-Human race by 75%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Mace +Attack: 105 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Novice, Swordsman, Merchant, Acolyte +# +1543# +A deadly mace that is usually worn by the best fighter; it seems to be capable of damaging through an enemy's armor. +It is especially designed for battles against Demihuman. +-------------------------- +STR +1, DEX +1 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 75%. +-------------------------- +Random chance to inflict Stun status for 6 seconds when dealing melee physical attacls. +-------------------------- +Indestructible in battle +-------------------------- +Type: Mace +Attack: 105 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Novice, Swordsman, Merchant, Acolyte +# +1544# +An old, black and large frying pan. +-------------------------- +Base STR at least 77: +Increases Attack Speed (Decreases After Attack Delay by 4%). +Random chance to inflict Stun status on the target when dealing physical damage. +Random chance a defeated Brute, Plant and Fish monster will drop Cooked Foods. +-------------------------- +Type: Mace +Attack: 110 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Transcendent Acolyte +# +1545# +A flanged, solid club that is effective for simple smashing. +-------------------------- +Type: Mace +Attack: 57 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 2 +Novice, Swordsman, Acolyte and Merchant +# +1546# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increase physical damage against Demi-Human race by 75%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +Refine Level +6: +Ignores physical defense of Demi-Human race by additional 25%. +Increases Attack Speed (Decreases After Attack Delay by 5%). +Slaughter Lv 1 (Damage bonus of Slaughter increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 5%). +Random chance to inflict Stun when dealing physical damage. +-------------------------- +Type: Mace +Attack: 130 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Novice, Swordsman, Acolyte and Merchant +# +1547# +Rental Item +Mace of Insanity. +-------------------------- +STR +2 +-------------------------- +Increases damage of Cart Revolution by 25%. +-------------------------- +Type: Mace +Attack: 150 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Swordsman and Merchant +# +1548# +A hard hammer made out of the pieces of a meteorite from space. +Ancient clerics said it to be blessed by the Gods. +-------------------------- +INT +1, LUK +1 +-------------------------- +For each Level of Divine Protection: +Increases Healing skills effectiveness by 1%. +-------------------------- +For each Level of Mace Mastery: +Critical +2 +-------------------------- +Type: Mace +Attack: 160 +Weight: 180 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Acolyte +# +1549# +A huge iron skewer pops up and stabs out and retracts after attacking with this weapon. +-------------------------- +Type: Mace +Attack: 450 +Weight: 300 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +1550# +A book that's been put together sturdily enough to be wielded as a weapon in an emergency situation. +-------------------------- +Type: Book +Attack: 85 +Weight: 60 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Priest, Sage and Star Gladiator +# +1551# +A book containing a compilation of ancient and sacred writings. +-------------------------- +INT +2 +-------------------------- +Type: Book +Attack: 115 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Priest, Sage and Star Gladiator +# +1552# +A marble tablet on which the wise words of the ancients have been engraved and immortalized. +-------------------------- +Type: Book +Attack: 125 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Priest, Sage and Star Gladiator +# +1553# +A hefty book with a hard cover that has been enchanted with the water element. +-------------------------- +Type: Book +Attack: 90 +Weight: 75 +Element: Water +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Priest, Sage and Star Gladiator +# +1554# +A hefty book with a hard cover that has been enchanted with the earth element. +-------------------------- +Type: Book +Attack: 90 +Weight: 75 +Element: Earth +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Priest, Sage and Star Gladiator +# +1555# +A hefty book with a hard cover that has been enchanted with the fire element. +-------------------------- +Type: Book +Attack: 90 +Weight: 75 +Element: Fire +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Priest, Sage and Star Gladiator +# +1556# +A hefty book with a hard cover that has been enchanted with the wind element. +-------------------------- +Type: Book +Attack: 90 +Weight: 75 +Element: Wind +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Priest, Sage and Star Gladiator +# +1557# +A book that details prophesies concerning the end of the world. +-------------------------- +Increases damage against Earth, Water, Fire and Wind elemental by 7% and Holy elemental by 5%. +-------------------------- +Type: Book +Attack: 120 +Weight: 80 +Element: Shadow +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Priest, Sage and Star Gladiator +# +1558# +A cute diary in which the innermost thoughts of a young girl have been recorded, but you can never bear to open it. +-------------------------- +Increases Physical Damage against Bongun monsters by 150%. +-------------------------- +Type: Book +Attack: 60 +Weight: 30 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Priest, Sage and Star Gladiator +# +1559# +A book in which the origin and history of dragons is written. +It's a treasure that is said to be passed among the dragon race. +-------------------------- +INT +3 +-------------------------- +Ignores physical defense of Dragon race by 100%. +-------------------------- +Gains 10 SP each time a Dragon monster is killed. +-------------------------- +Type: Book +Attack: 130 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 70 +Priest, Sage and Star Gladiator +# +1560# +The diary of a great sage, published with him never knowing. +-------------------------- +MATK +120 +-------------------------- +Base STR at least 50: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Base INT at least 70: +MATK +5% +-------------------------- +Type: Book +Attack: 100 +Weight: 110 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 60 +Priest, Sage and Star Gladiator +# +1561# +A thick and heavy hardcover book that could really do some hurt if swung around. +-------------------------- +STR +3, DEX +2 +-------------------------- +Type: Book +Attack: 140 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 55 +Priest, Sage and Star Gladiator +# +1562# +A book containing the History of many wars and the dreams of the strategists that took part in them. +-------------------------- +Random chance to auto-cast Level 3 Blessing on wearer when dealing physical damage. +If the user has learned Blessing, it will cast it at the user Level already learned. +-------------------------- +Type: Book +Attack: 110 +Weight: 70 +Weapon Level: 4 +Refineable: No +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 80 +Priest, Sage and Star Gladiator +# +1563# +Rental Item +The diary of a great sage that was published without him ever knowing. +-------------------------- +MATK +140 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Book +Attack: 135 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Priest, Sage and Star Gladiator +# +1564# +An encyclopedia distributed by a Prontera publisher that is famous for using solid binding in their books. +Those struck by this book will swear the binding is diamond hard. +-------------------------- +INT +3, DEX +2 +MATK +100 +Critical +20 +Critical bonus increases according to the wearer's LUK. +-------------------------- +Type: Book +Attack: 110 +Weight: 200 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Priest, Sage and Star Gladiator +# +1565# +These books are used by demons to kill the living by writing their names in the pages and a few of these were lost and ended up in human hands. +The last name, \ + looks like it wasn't completed. +Maybe the demon changed his mind? +-------------------------- +STR +3, INT +3, LUK -20 +MATK +100 +-------------------------- +Random chance to inflict Coma status to Demi-Human race. +-------------------------- +Decreases After Attack Delay based on Refine Level. +-------------------------- +Damages and curses all onscreen enemies when worn by Sage class. +-------------------------- +Type: Book +Attack: 137 +Weight: 100 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 85 +Priest, Sage and Star Gladiator +# +1566# +The adventurers who are brave the item which is provided from the hazard adventurer guild. +-------------------------- +MATK +150 +-------------------------- +ATK +50%. +-------------------------- +Type: Book +Attack: 120 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Priest, Sage and Star Gladiator +# +1567# +Rental Item +A thick and heavy hardcover book that could really do some hurt if swung around. +-------------------------- +STR +5, DEX +2 +MATK +100 +-------------------------- +Type: Book +Attack: 168 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Priest, Sage and Star Gladiator +# +1568# +A hefty book with a hard cover that has been enchanted with the water element. +-------------------------- +Type: Book +Attack: 90 +Weight: 75 +Element: Water +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Priest, Sage and Star Gladiator +# +1569# +A hefty book with a hard cover that has been enchanted with the earth element. +-------------------------- +Type: Book +Attack: 90 +Weight: 75 +Element: Earth +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Priest, Sage and Star Gladiator +# +1570# +A hefty book with a hard cover that has been enchanted with the fire element. +-------------------------- +Type: Book +Attack: 90 +Weight: 75 +Element: Fire +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Priest, Sage and Star Gladiator +# +1571# +A hefty book with a hard cover that has been enchanted with the wind element. +-------------------------- +Type: Book +Attack: 90 +Weight: 75 +Element: Wind +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Priest, Sage and Star Gladiator +# +1572# +This helps students study and build a strong foundation of using magic. +If you're having trouble... - Author: Sage S. +-------------------------- +INT +3 +MATK +160 +-------------------------- +Increases SP Recovery Rate by 5%. +-------------------------- +When equipped with Librarian Glove and Pocket Watch: +INT +5 +MaxHP +700 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Type: Book +Attack: 60 +Weight: 30 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 60 +Priest, Sage and Star Gladiator +# +1573# +A book with a Very impressive phrase,'There is no royal road to learning.' on its cover. +Practice makes perfect. If you keep trying, you'll be an expert before you know it. +-------------------------- +MATK +140 +-------------------------- +When equipped with Mage Coat: +INT +4 +MDEF +8 +MaxSP +10% +-------------------------- +Type: Book +Attack: 30 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Priest, Sage and Star Gladiator +# +1574# +A battlefield book written by ancient strategists from a far east country. It is still being studied by many militarists. +-------------------------- +STR +2 +INT +1 +MATK +90 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 75%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Book +Attack: 90 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Priest, Sage and Star Gladiator +# +1575# +A battlefield book written by ancient strategists from a far east country. It is still being studied by many militarists. +-------------------------- +STR +1, INT +2 +MATK +125 +-------------------------- +Ignores magical defense of Demi-Human race by 25%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Book +Attack: 90 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Priest, Sage and Star Gladiator +# +1576# +A weapon that only a champion of battlefield can wield. +-------------------------- +MATK +115 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 80%. +-------------------------- +Ignores physical defense of Demi-Human race by 25%. +-------------------------- +Refine Level +6: +Pierces physical defense of Demi-Human race by additional 5%. +[Slaughter] Lv 1 (Damage bonus of Slaughter increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +Random chance to increase ATK by 200 for 3 seconds when dealing physical damage. +-------------------------- +Type: Book +Attack: 90 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Priest, Sage and Star Gladiator +# +1577# +A weapon that only a champion of battlefield can wield. +-------------------------- +MATK +115 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 80%. +-------------------------- +Ignores physical defense of Demi-Human race by 25%. +-------------------------- +Refine Level +6: +Pierces physical defense of Demi-Human race by additional 5%. +[Slaughter] Lv 1 (Damage bonus of Slaughter increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +MATK +5% +Decreases Variable Casting Time by 5%. +Decreases After Skill Delay by 5%. +-------------------------- +Type: Book +Attack: 90 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Priest, Sage and Star Gladiator +# +1578# +Rental Item +Book of Prayer. +-------------------------- +VIT +2 +MDEF +10 +MaxSP +10% +-------------------------- +Type: Book +Attack: 140 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Priest, Sage and Star Gladiator +# +1579# +A book containing names, used by the agents of death. There are times when the book of the dead is circulated in this world because they have dropped the book in the realm of the living. +There are tons of names written in here and there seems to be names of people you might know well ... It says Holg ... . +-------------------------- +STR +3, INT +3, LUK -20 +MATK +15% +-------------------------- +Random chance to inflict Coma status on Demi-Human race. +-------------------------- +Decreases After Attack Delay based on Refine Level. +-------------------------- +When equipped by Sage classes: +Random chance to inflict Curse status on all targets in screen when dealing physical damage. +-------------------------- +Type: Book +Attack: 137 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 85 +Priest, Sage and Star Gladiator +# +1580# +Rental Item +A gigantic encyclopedia produced by X company in Prontera, known mostly for its sharp and hard edges. +It is so hard to the point that people who got hit by the edges of this book often ask Did you guys install 3 carat Diamond on this?. +-------------------------- +INT +3, DEX +2 +MATK +100 +-------------------------- +Critical +20 +Critical bonus increases according to the wearer's LUK. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Book +Attack: 145 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Priest, Sage and Star Gladiator +# +1581# +Rental Item +The diary of a great sage that was published without him ever knowing. +-------------------------- +MATK +20% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Type: Book +Attack: 135 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Priest, Sage and Star Gladiator +# +1583# +A book made by the Eden Group. It is suitable for those who have more advanced experience handling magic books. +-------------------------- +MATK +110 +-------------------------- +Type: Book +Attack: 135 +Weight: 0 +Weapon Level: 3 +Refineable: No +Can be enchanted by: +Weapons Expert BKmoc_para01,112,79,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Priest, Sage and Star Gladiator +# +1584# +One of the 4 element magic books which have a High Socerer's study. [Part. ice] +-------------------------- +DEX +1 +MATK +160 +-------------------------- +Increases damage of Diamond Dust and Cold Bolt by (3*Refine Level)%. +-------------------------- +Increases SP Consumption of Diamond Dust and Cold Bolt by 5*Refine Level. +-------------------------- +Indestructible in battle +-------------------------- +Type: Book +Attack: 100 +Weight: 100 +Element: Water +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +1585# +Book that is coated by Oridecon and Gold with perfect Level. +-------------------------- +MATK +20 +-------------------------- +For each Refine Level: +ATK +10 +MATK +5 +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Book +Attack: 45 +Weight: 60 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Priest, Sage and Star Gladiator +# +1586# +*Effects in WoE & PVP area +MATK +125 +Increases Healing skills effectiveness based on your Base Level. +-------------------------- +Refine Level +6: +Removes Lauda Agnus, Lauda Ramus0 and Clearance skill cooldown while increasing the SP Consumption of these skills by 60. +-------------------------- +Type: Book +Attack: 110 +Weight: 60 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 95 +Priest, Sage and Star Gladiator +# +1587# +*Effects in WoE & PVP area +Increases Physical Damage against Players by 80% and bypasses 30% physical defense. +-------------------------- +For each Refine Level: +Increases Physical Damage against Players by 1%. +-------------------------- +Refine Level +9: +Physical attacks have a certain chance to increase ATK by 200 for 3 seconds. +-------------------------- +Type: Book +Attack: 130 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 95 +Priest, Sage and Star Gladiator +# +1588# +Book coated with metal that enhance ability. +-------------------------- +MATK +10 +-------------------------- +For each Refine Level: +ATK +1 +MATK +2 +-------------------------- +For each 10 Base Level above 20: +ATK +5 (Up to Base Level 120) +-------------------------- +Type: Book +Attack: 45 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Priest, Sage and Star Gladiator +# +1589# +A book in which the origin and history of dragons is written. +It's a treasure that is said to be passed among the dragon race. +-------------------------- +INT +3 +-------------------------- +Ignores physical defense of Dragon race by 100%. +-------------------------- +Gains 10 SP each time a Dragon monster is killed. +-------------------------- +Type: Book +Attack: 130 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 70 +Priest, Sage and Star Gladiator +# +1590# +Covering all informations about snakes. +-------------------------- +MATK +110 +Every Refine add ATK +3 and MATK +3. +-------------------------- +Indestructible in battle +-------------------------- +When equipped with Snake Card: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When equipped with Sidewinder Card: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When equipped with Snake Card and Sidewinder Card: +ASPD +1 +-------------------------- +Type: Book +Attack: 10 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 105 +Archbishop and Sorcerer +# +1591# +Rental Item +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Increases Magical Damage against Players by 5%. +Random chance to inflict Blind status when dealing physical damage. +Increases Healing skills effectiveness by 5%. +-------------------------- +Type: Book +Attack: 120 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Priest, Sage and Star Gladiator +# +1592# +A book that describe about communicating with god of thunder. Those who read this will be blessed with the power of thunder. +-------------------------- +INT +3 +MATK +130 +-------------------------- +Increases damage of Lightning Bolt by 5%. +-------------------------- +For each Refine Level: +Increases damage of Lightning Bolt by 1%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Book +Attack: 90 +Weight: 40 +Element: Wind +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 27 +Priest, Sage and Star Gladiator +# +1593# +Stories of people's misfortune are written on this book. +-------------------------- +Luk +5 +MATK +90 +Perfect Dodge +15 +-------------------------- +Refine Level +7: +Perfect Dodge +5 +-------------------------- +Indestructible in battle +-------------------------- +Type: Book +Attack: 90 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 24 +Priest, Sage and Star Gladiator +# +1594# +A book that sealed a burning flame. +-------------------------- +INT +3 +MATK +130 +-------------------------- +Increases damage of Fire Bolt by 5%. +-------------------------- +For each Refine Level: +Increases damage of Fire Bolt by 1%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Book +Attack: 90 +Weight: 40 +Element: Fire +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 27 +Priest, Sage and Star Gladiator +# +1595# +A book that sealed a glacial ice. +-------------------------- +INT +3 +MATK +130 +-------------------------- +Increases damage of Cold Bolt by 5%. +-------------------------- +For each Refine Level: +Increases damage of Cold Bolt by 1%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Book +Attack: 90 +Weight: 40 +Element: Water +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 27 +Priest, Sage and Star Gladiator +# +1596# +A book that is sealed with the power of Earth. +-------------------------- +INT +3 +MATK +130 +-------------------------- +Increases damage of Earth Spike and Heaven's Drive by 5%. +-------------------------- +For each Refine Level: +Increases damage of Earth Spike and Heaven's Drive by 1%. +-------------------------- +Type: Book +Attack: 90 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 27 +Priest, Sage and Star Gladiator +# +1598# +Covering all informations about snakes. +-------------------------- +MATK +110 +Every Refine add ATK +3 and MATK +3. +-------------------------- +Indestructible in battle +-------------------------- +When equipped with Snake Card: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When equipped with Sidewinder Card: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When equipped with Snake Card and Sidewinder Card: +ASPD +1 +-------------------------- +Type: Book +Attack: 10 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 105 +Archbishop and Sorcerer +# +1599# +\ + +# +1600# +A rod imbued with Vicious Mind. +-------------------------- +INT +5 +MATK +120 +-------------------------- +Increases MATK by (Refinelv*Refinelv). +(up to +15 Refine Level) +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 60 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 160 +Novice, Magician, Acolyte and Soul Linker +# +1601# +A simple magic wand. +-------------------------- +MATK +30 +-------------------------- +Type: One-Handed Staff +Attack: 15 +Weight: 40 +Weapon Level: 1 +-------------------------- +Requirement: +Novice, Magician, Acolyte and Soul Linker +# +1602# +A simple magic wand. +-------------------------- +MATK +30 +-------------------------- +Type: One-Handed Staff +Attack: 15 +Weight: 40 +Weapon Level: 1 +-------------------------- +Requirement: +Novice, Magician, Acolyte and Soul Linker +# +1603# +A simple magic wand. +-------------------------- +MATK +30 +-------------------------- +Type: One-Handed Staff +Attack: 15 +Weight: 40 +Weapon Level: 1 +-------------------------- +Requirement: +Novice, Magician, Acolyte and Soul Linker +# +1604# +A rough-hewn wand that's effective enough for the casting of magic spells. +-------------------------- +INT +1 +MATK +45 +-------------------------- +Type: One-Handed Staff +Attack: 25 +Weight: 40 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Novice, Magician, Acolyte and Soul Linker +# +1605# +A rough-hewn wand that's effective enough for the casting of magic spells. +-------------------------- +INT +1 +MATK +45 +-------------------------- +Type: One-Handed Staff +Attack: 25 +Weight: 40 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Novice, Magician, Acolyte and Soul Linker +# +1606# +A rough-hewn wand that's effective enough for the casting of magic spells. +-------------------------- +INT +1 +MATK +45 +-------------------------- +Type: One-Handed Staff +Attack: 25 +Weight: 40 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Novice, Magician, Acolyte and Soul Linker +# +1607# +A wooden staff adorned with an enchanted jewel. +-------------------------- +INT +2 +MATK +70 +-------------------------- +Type: One-Handed Staff +Attack: 40 +Weight: 40 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Magician, Acolyte and Soul Linker +# +1608# +A wooden staff adorned with an enchanted jewel. +-------------------------- +INT +2 +MATK +70 +-------------------------- +Type: One-Handed Staff +Attack: 40 +Weight: 40 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Magician, Acolyte and Soul Linker +# +1609# +A wooden staff adorned with an enchanted jewel. +-------------------------- +INT +2 +MATK +70 +-------------------------- +Type: One-Handed Staff +Attack: 40 +Weight: 40 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Magician, Acolyte and Soul Linker +# +1610# +An ornate, elegantly crafted wand that grants powerful magical energy. +-------------------------- +INT +3 +MATK +95 +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 40 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Magician, Acolyte and Soul Linker +# +1611# +An ornate, elegantly crafted wand that grants powerful magical energy. +-------------------------- +INT +3 +MATK +95 +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 40 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Magician, Acolyte and Soul Linker +# +1612# +An ornate, elegantly crafted wand that grants powerful magical energy. +-------------------------- +INT +3 +MATK +95 +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 40 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Magician, Acolyte and Soul Linker +# +1613# +A rare staff that can convert psychic energy into brute strength. +-------------------------- +STR +10 +MATK +100 +-------------------------- +Drains 2 SP when dealing physical damage. +-------------------------- +Type: One-Handed Staff +Attack: 130 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Magician, Acolyte and Soul Linker +# +1614# +A shamanic wand topped with a goat's skull that enhances magic attack power. +-------------------------- +INT +3 +MATK +105 +-------------------------- +Type: One-Handed Staff +Attack: 75 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Magician, Acolyte and Soul Linker +# +1615# +Since evil spirits possess this wand of human bone, its suffocatingly accursed aura can be sensed by those who wield it. +-------------------------- +INT +4 +MATK +110 +-------------------------- +Type: One-Handed Staff +Attack: 40 +Weight: 70 +Element: Undead +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Magician, Acolyte and Soul Linker +# +1616# +A staff containing a wind fairy that grants its user the essense of speed. +-------------------------- +MATK +115 +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 50 +Element: Wind +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 40 +Magician and Soul Linker classes +# +1617# +A staff developed through the united efforts of the Magician Guild and Prontera Church. +There are two different versions of this staff intended to help new trainees. +-------------------------- +DEX +2 +MATK +120 +MaxHP +300 +-------------------------- +Type: One-Handed Staff +Attack: 50 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Magician, Acolyte and Soul Linker +# +1618# +A staff developed through the united efforts of the Magician Guild and Prontera Church. +There are two different versions of this staff intended to help new trainees. +-------------------------- +DEX +3 +MATK +120 +MaxHP +400 +-------------------------- +When equipped with Survivor's Manteau: +MaxHP +300 +MATK -5% + +For each Refine Level of Survivor's Rod[1]: +MATK +1% + +For each Refine Level of Survivor's Manteau: +Decreases damage taken from Neutral elemental attacks by 3%. +-------------------------- +When equipped with Survivor's Orb: +For each Refine Level of Survivor's Rod[1]: +MATK +10 + +When Survivor's Rod[1] Refined to +10: +Base Level is below 100: +Decreases Variable Casting Time by 3%. +Increases damage of Earth Strain and Chain Lightning by 15%. +Increases damage of Heaven's Drive and Jupitel Thunder by 70%. + +Base Level at least 100: +Decreases Variable Casting Time by 9%. +Increases damage of Earth Strain and Chain Lightning by 45%. +Increases damage of Heaven's Drive and Jupitel Thunder by 210%. +-------------------------- +When equipped with Survivor's Shoes [1]: +Decreases damage taken from Demi-Human race by 10%. +Ignores magical defense of target by 50%. + +If Survivor's Rod [1] Refine Level +10: +Decreases Earth Strain skill cooldown by 2.4 seconds. +Decreases Chain Lightning skill cooldown by 1 seconds. +Increases Magical Damage against monsters of Demi-Human race by 20%. +Increases Magical Damage with Neutral element by 80%. +Random chance to increase damage inflicted with Chain Lightning by 100% for 5 seconds when dealing magical damage. +-------------------------- +Type: One-Handed Staff +Attack: 50 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Magician, Acolyte and Soul Linker +# +1619# +A staff developed through the united efforts of the Magician Guild and Prontera Church. +There are two different versions of this staff intended to help new trainees. +-------------------------- +INT +2 +MATK +120 +MaxHP +300 +-------------------------- +Type: One-Handed Staff +Attack: 50 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Magician, Acolyte and Soul Linker +# +1620# +A staff developed through the united efforts of the Magician Guild and Prontera Church. +There are two different versions of this staff intended to help new trainees. +-------------------------- +INT +3 +MATK +120 +MaxHP +400 +-------------------------- +When equipped with Survivor's Manteau: +MaxHP +300 +MATK -5% + +For each Refine Level of Survivor's Rod[1]: +MATK +1% + +For each Refine Level of Survivor's Manteau: +Decreases damage taken from Neutral elemental attacks by 3%. +-------------------------- +When equipped with Survivor's Orb: +For each Refine Level of Survivor's Rod[1]: +MATK +10 + +When Survivor's Rod[1] Refined to +10: +Base Level is below 100: +Decreases Variable Casting Time by 3%. +Increases damage of Earth Strain and Chain Lightning by 15%. +Increases damage of Heaven's Drive and Jupitel Thunder by 70%. + +Base Level at least 100: +Decreases Variable Casting Time by 9%. +Increases damage of Earth Strain and Chain Lightning by 45%. +Increases damage of Heaven's Drive and Jupitel Thunder by 210%. +-------------------------- +When equipped with Survivor's Shoes[1]: +Decreases damage taken from Demi-Human race by 10%. +Ignores magical defense of target by 50%. + +If Survivor's Rod[1] Refine Level +10: +Decreases Earth Strain skill cooldown by 2.4 seconds. +Decreases Chain Lightning skill cooldown by 1 seconds. +Increases Magical Damage against monsters of Demi-Human race by 20%. +Increases Magical Damage with Neutral element by 80%. +Random chance to increase damage inflicted with Chain Lightning by 100% for 5 seconds when dealing magical damage. +-------------------------- +Type: One-Handed Staff +Attack: 50 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Magician, Acolyte and Soul Linker +# +1621# +A staff with a hynpotizing effect that can even make a Novice feel just like a High Wizard. Sort of. +-------------------------- +INT +1 +MATK +120 +-------------------------- +Type: One-Handed Staff +Attack: 70 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Novice +# +1622# +A staff with a hynpotizing effect that can even make a Novice feel just like a High Wizard. Sort of. +-------------------------- +INT +1 +MATK +120 +-------------------------- +Type: One-Handed Staff +Attack: 70 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Novice +# +1623# +Rental Item +A rare staff that can convert psychic energy into brute strength. +-------------------------- +STR +10 +INT +4 +MATK +100 +-------------------------- +Drains 1 SP when dealing physical damage. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: One-Handed Staff +Attack: 165 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Magician, Acolyte and Soul Linker +# +1624# +A wand crafted from a powerful Lich's skull that will curse anyone that threatens its true owner. +-------------------------- +INT +1 +DEX +1 +MATK +170 +-------------------------- +Random chance to inflict Curse status on the target when dealing physical damage. +The chance increases based on Refine Level. +-------------------------- +Refine Level +9: +MaxSP +300 +MATK +3% +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 80 +Element: Undead +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Trascendent Magician and Acolyte +# +1625# +A healing staff made out of twigs from the Yggdrasil tree. +There is an engraving in an ancient language that reads, \ +. +-------------------------- +MATK +105 +-------------------------- +Increases Healing skills depending on this weapons's Refine Level. +-------------------------- +Type: One-Handed Staff +Attack: 10 +Weight: 40 +Element: Holy +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Acolyte +# +1626# +A staff inset with a gem that constantly emits waves that can disrupt the MDEF of enemies. +-------------------------- +INT +4 +MATK +145 +-------------------------- +Ignores magical defense of target by 10%. +This percentage is raised by increasing this weapon's Refine Level. +-------------------------- +Type: One-Handed Staff +Attack: 80 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Trascendent Magician and Acolyte +# +1627# +A gift for a brave traveler. +-------------------------- +INT +4 +MATK +120 +-------------------------- +Type: One-Handed Staff +Attack: 40 +Weight: 0 +Weapon Level: 1 +-------------------------- +Requirement: +Wizard, Acolyte and Soul Linker +# +1628# +Rental Item +DEX +4 +MaxHP +500 +-------------------------- +When equipped with Rental Survivor's Manteau: +MATK +5% +Decreases damage taken from Neutral elemental attacks by 25%. +-------------------------- +Type: One-Handed Staff +Attack: 71 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Magician, Acolyte and Soul Linker +# +1629# +A staff once used by a very gentle man somewhere long ago. A very narrow sword is hidden inside the staff. +-------------------------- +DEX +1 +MATK +125 +-------------------------- +When equipped with Magician Hat: +DEX +2 +INT +2 +Increases SP Recovery Rate by 5%. +Magical Attack increases depending on the Refine Level. +-------------------------- +Type: One-Handed Staff +Attack: 40 +Weight: 50 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 50 +Magician, Acolyte, Soul Linker +# +1630# +A staff made of Crystal. It shines beautifully against the light. +This staff can also help the holder recover from wounds. +-------------------------- +INT +3 +MATK +125 +-------------------------- +Increases Healing skills effectiveness by 5%. +-------------------------- +Random chance to restore some HP and SP when dealing magical damage. +-------------------------- +Type: One-Handed Staff +Attack: 30 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Magician and Soul Linker classes +# +1631# +A holy stick which is made of Rune of Odin, specialized for exorcisms. +-------------------------- +MATK +140 +-------------------------- +Decreases Variable Casting Time of Holy Light, Turn Undead and Magnus Exorcismus by 25%. +-------------------------- +Type: One-Handed Staff +Attack: 50 +Weight: 50 +Element: Holy +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Priest and Monk classes +# +1632# +A rod that has been modified for brave magicians who face enemies in battle. +It is especially designed for battles against Demihuman. +-------------------------- +INT +4, DEX +3 +MATK +125 +-------------------------- +Ignores magical defense of Demi-Human race by 25%. +-------------------------- +Random chance to inflict Stun status when dealing magical damage. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 70 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Magician, Acolyte and Soul Linker +# +1633# +A rod that has been modified for brave magicians who face enemies in battle. +It is especially designed for battles against Demihuman. +-------------------------- +INT +3, DEX +3 +MATK +125 +-------------------------- +Increases Magical Damage against monsters of Demi-Human race by 15%. +-------------------------- +Random chance to inflict Stun status when dealing magical damage. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 70 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Magician, Acolyte and Soul Linker +# +1634# +A rod that is intended to heal people during battle. +It provides special treatment to serious wounds. +-------------------------- +MATK +125 +-------------------------- +Increases Healing skills effectiveness by 14%. +-------------------------- +Restores 5 SP every 10 seconds. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 70 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Magician, Acolyte and Soul Linker +# +1635# +A Rod that is intended to heal people during battle. +It has been optimized to heal more rapidly. +-------------------------- +INT +3 +DEX +2 +MATK +125 +-------------------------- +Decreases After Skill Delay by 15%. +-------------------------- +Restores 5 SP every 10 seconds. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 70 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Magician, Acolyte and Soul Linker +# +1636# +A staff which is covered with thorns, containing strong meanings of sorcery. +-------------------------- +INT +3 +DEX +3 +MATK +160 +-------------------------- +Each Refine Level adds magic defense bypassing to your magic attacks and Reduces After Skill Delay. +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 70 +Element: Shadow +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 75 +Transcendent Magician and Acolyte +# +1637# +A staff that causes enemy mental distraction. +-------------------------- +INT +3 +DEX +2 +MATK +170 +-------------------------- +Increases SP Recovery Rate by 8%. +-------------------------- +Adds a chance of taking away 20% MaxSP of all enemies within 11*11 cells around itself when dealing magical damage. +If Refining Level is over 9, takes away 60% MaxSP of all enemies within 19*19 cells around itself. +-------------------------- +Type: One-Handed Staff +Attack: 80 +Weight: 50 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Transcendent Magician and Acolyte +# +1638# +A staff made with a branch from the tree Yggdrasil, created with the sole purpose to heal. +The staff has something inscribed in ancient language, saying Mubeungjangsugiwon, or Forever free of disease and have a long life. +-------------------------- +MATK +125 +-------------------------- +Increases Healing skills effectiveness by 15%. +-------------------------- +Type: One-Handed Staff +Attack: 10 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Acolyte +# +1639# +A simple magic wand. +-------------------------- +MATK +32 +-------------------------- +Type: One-Handed Staff +Attack: 15 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Novice, Magician, Acolyte and Soul Linker +# +1640# +A weapon that only a champion of battlefield can wield. +-------------------------- +MATK +135 +-------------------------- +Increases MATK to Demi-Human race by 15%. +-------------------------- +Ignores magical defense of Demi-Human race by 25%. +-------------------------- +Indestructible in battle +-------------------------- +Refine Level +6: +Pierces magical defense of Demi-Human race by additional 5%. +-------------------------- +Refine Level +9: +MATK +5% +Decreases Variable Casting Time by 5%. +Decreaes After Skill Delay of all skillsby 5%. +-------------------------- +Type: One-Handed Staff +Attack: 70 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Magician, Acolyte and Soul Linker +# +1641# +A weapon that only a champion of battlefield can wield. +-------------------------- +MATK +135 +-------------------------- +Increases Healing skills effectiveness by 14%. +-------------------------- +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +6: +Pierces magical defense of Demi-Human race by 5%. +Increases Healing skills effectiveness by additional 5%. +-------------------------- +Refine Level +9: +Using Heal has a chance of casting Level 10 Heal. +-------------------------- +Refine Level +10: +Increases Healing skills effectiveness by additional 10%. +-------------------------- +Type: One-Handed Staff +Attack: 70 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Magician, Acolyte and Soul Linker +# +1642# +Rental Item +Staff of Darkness. +-------------------------- +INT +2 +MATK +120 +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Type: One-Handed Staff +Attack: 100 +Weight: 0 +Weapon Level: 2 +-------------------------- +Requirement: +Magician, Acolyte and Soul Linker +# +1643# +A staff made out of magical wood. It possesses huge magical power, but it will make you look like an elder. +-------------------------- +INT +4 +MATK +155 +-------------------------- +For each Refine Level above +5: +INT +1 +-------------------------- +Refine Level +6: +MaxHP -200 +MaxSP -100 +-------------------------- +Type: One-Handed Staff +Attack: 100 +Weight: 10 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Magician, Acolyte and Soul Linker +# +1644# +A staff with a jewel in it that causes shockwave every once in a while. The shockwave sometimes nullifies enemy's magic defense. +-------------------------- +INT +4 +MATK +15% +-------------------------- +Ignores magical defense of target by 10%. +The amount pierced magical defense will increase depending on the Refine Level. +-------------------------- +Type: One-Handed Staff +Attack: 80 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Transcendent Magician and Acolyte +# +1645# +A staff created with a skull of a powerful Lich. The curse eminating from this staff will threaten to all those who dare to threaten the wielder of this staff. +-------------------------- +INT +1 +DEX +1 +MATK +20% +-------------------------- +Whenever you take a Physical Damage, Random chance to inflict Curse status ailment to every enemies in the screen. +This chance is increased depending on the Refinement rate of this weapon. +-------------------------- +Refine Level +9: +MATK +3% +MaxSP +300 +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 80 +Element: Undead +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Transcendent Magician and Acolyte +# +1646# +A high class Magician's staff decorated with rich tail-feathers. It has been especially treated for the water elemental magical spell, \ +. +-------------------------- +INT +4 +MDEF +1 +MATK +180 +-------------------------- +For each Refine Level: +Increases damage of Stormgust by 1%. +-------------------------- +Refine Level +10: +Decreases Variable Casting Time of Stormgust by 8%. +-------------------------- +Type: One-Handed Staff +Attack: 30 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Transcendent Magician +# +1647# +The official staff for High Class Clerics. It is decorated with a red Prontera Cathedral Emblem. +-------------------------- +INT +4 +MATK +175 +-------------------------- +Random chance to auto-cast Level 1 Blessing on wielder when using Heal skill. +-------------------------- +Type: One-Handed Staff +Attack: 30 +Weight: 50 +Element: Holy +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Transcendent Acolyte +# +1648# +A short, simply designed staff; like a baton. A jewel, with the power of justice, is set on it. +-------------------------- +INT +2 +DEX +1 +MATK +170 +-------------------------- +When Dragonology is mastered: +INT +3 +Decreases SP Consumption by 15%. +-------------------------- +Type: One-Handed Staff +Attack: 30 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 50 +Transcendent Magician +# +1649# +A staff which is crafted by a stone that is often used when Lapines put magic power into it. +-------------------------- +MATK +180 +-------------------------- +For each Refine Level: +Decreases Fixed Casting Time by 1%. +-------------------------- +Type: One-Handed Staff +Attack: 30 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Warlock, Sorcerer, Archbishop and Sura +# +1650# +A staff made by the Eden Group. A basic item for a beginning Magician. +-------------------------- +INT +2 +MATK +125 +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 26 +Magician and Acolyte +# +1651# +A staff made by the Eden Group. A basic item for an intermediate Magician. +-------------------------- +INT +3 +MATK +150 +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Magician and Acolyte +# +1652# +A staff that used by a traveler. +-------------------------- +AGI +1 +INT +2 +MATK +15% +-------------------------- +Type: One-Handed Staff +Attack: 35 +Weight: 50 +Weapon Level: 1 +-------------------------- +Requirement: +Novice, Magician, Acolyte and Soul Linker +# +1653# +Rental Item +Staff for healing, created from the blessed branches of Yggdrasil. On a staff written in the ancient language \ +. +-------------------------- +MATK +100 +-------------------------- +Increases Healing skills effectiveness by 18%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +Random chance to auto-cast Heal when using Heal skill. +Increases Healing skills effectiveness by 5%. +-------------------------- +Type: One-Handed Staff +Attack: 10 +Weight: 0 +Element: Holy +Weapon Level: 3 +-------------------------- +Requirement: +Acolyte +# +1654# +A staff which converts elemental power into psychic energy. +-------------------------- +MATK +170 +-------------------------- +Decreases Variable Casting Time of Psychic Wave by 3 secs. +-------------------------- +Increases SP Consumption of Psychic Wave by 60. +-------------------------- +For each Refine Level above +5: +MaxHP -2% +Increases damage of Psychic Wave by 2%. +-------------------------- +Drains SP 100 when unequipped. +-------------------------- +Type: One-Handed Staff +Attack: 40 +Weight: 50 +Weapon Level: 3 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 102 +Sorcerer +# +1657# +A staff that radiates concern for the welfare of others. +-------------------------- +INT +2 +MATK +160 +-------------------------- +Increases Healing skills effectiveness by 10%. +-------------------------- +When equipped with Robe of Affection, Shawl of Affection and Shoes of Affection: +Increases Healing skills effectiveness by 25%. +Increases SP Consumption of Heal by 20. +Decreases Sacrament, Lauda Agnus and Lauda Ramus skill cooldown by 2 seconds. +-------------------------- +Type: One-Handed Staff +Attack: 30 +Weight: 50 +Element: Holy +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +1658# +A staff made by the Eden Group. An advanced item for an experienced magic practitioner. +-------------------------- +INT +4 +MATK +170 +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 0 +Weapon Level: 3 +Refineable: No +Can be enchanted by: +Weapons Expert BKmoc_para01,112,79,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Magician and Acolyte +# +1659# +A staff used for healing skill. +-------------------------- +MATK +160 +-------------------------- +Increases Healing skills effectiveness by (6*Refine Level)%. +Increases SP Consumption of Heal, Coluceo Heal and Highness Heal based on Refine Level. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 30 +Weight: 40 +Element: Holy +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 110 +Archbishop +# +1660# +A staff that radiates concern for the welfare of others. +-------------------------- +INT +4 +MATK +180 +-------------------------- +Increases Healing skills effectiveness by 20%. +-------------------------- +When equipped with Robe of Affection, Shawl of Affection and Shoes of Affection: +Increases Healing skills effectiveness by 45%. +Increases SP Consumption of Heal by 50. +Decreases Sacrament, Lauda Agnus and Lauda Ramus skill cooldown by 3 seconds. +-------------------------- +Type: One-Handed Staff +Attack: 30 +Weight: 50 +Element: Holy +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 130 +Archbishop +# +1661# +A wand with fearsome magic that able to destroy target's mentality. +-------------------------- +INT +10 +MATK +50 +MDEF +20 +-------------------------- +Drains 5% SP from enemies when dealing physical damage. +Refine Level +6: +Increases the SP drain of attacks. +-------------------------- +Increases SP Consumption by 100%. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Weight: 140 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 95 +High Wizard +# +1662# +Since evil spirits possess this wand of human bone, its suffocatingly accursed aura can be sensed by those who wield it. +-------------------------- +INT +4 +MATK +110 +-------------------------- +Type: One-Handed Staff +Attack: 40 +Weight: 70 +Element: Undead +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Magician, Acolyte and Soul Linker +# +1663# +A short, baton alike, simple designed staff. A jewel, with the power of justice, is set on it. +-------------------------- +DEX +1, INT +2 +MATK +170 +-------------------------- +When mastering Dragonology: +INT +3 +Decreases SP Consumption by 15%. +-------------------------- +Type: One-Handed Staff +Attack: 30 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 50 +Transcendent Magician +# +1664# +Staff surrounded by strong magical thorn. +-------------------------- +DEX +3, INT +3 +MATK +160 +-------------------------- +Ignores magical defense of taget based on Refine Level. +-------------------------- +Decreases After Skill Delay based on Refine Level. +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 70 +Element: Shadow +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 75 +Transcendent Magician and Acolyte +# +1665# +A staff with a jewel in it that causes shockwave every once in a while. The shockwave sometimes nullifies enemy's magic defense. +-------------------------- +INT +4 +MATK +15% +-------------------------- +Ignores magical defense of target by 10%. +The amount pierced magical defense will increase depending on the Refine Level. +-------------------------- +Type: One-Handed Staff +Attack: 80 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Transcendent Magician and Acolyte +# +1666# +A staff made with a branch from the tree Yggdrasil, created with the sole purpose to heal. The staff has something inscribed in ancient language, saying Mubeungjangsugiwon, or Forever free of disease and have a long life. +-------------------------- +MATK +125 +-------------------------- +Increases Healing skills effectiveness by 15%. +-------------------------- +Type: One-Handed Staff +Attack: 10 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Acolyte +# +1667# +Rental Item +MATK +100 +-------------------------- +*Effects in WoE TE area +Increases Magical Damage against Players by 40%. +Random chance to inflict Blind status when dealing magical damage. +Increases Healing skills effectiveness by 5%. +-------------------------- +Type: One-Handed Staff +Attack: 50 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Novice, Magician, Acolyte and Soul Linker +# +1668# +Staff used by men when go out on dating. +There is sharp dagger inside the stick that can be used as self defense. +-------------------------- +MATK +150 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +When equipped with Menswear +Decreases After Skill Delay by 10%. +For each Refine Level below +11: +Decreases After Skill Delay by 1%. +-------------------------- +Type: One-Handed Staff +Attack: 120 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Magician and Soul Linker classes +# +1669# +A staff sculpted from Gray Shard to counter Magic Sword Tartanos. +It offers incredible power and magic at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +200 +-------------------------- +Healing skills increased by 15%. +-------------------------- +Magical attacks have a chance to restore HP and SP. +-------------------------- +Drains 100 HP every 10 seconds. +-------------------------- +When unequipped, drain 1000 HP. +-------------------------- +Type: One-Handed Staff +Attack: 100 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Magician and Acolyte +# +1670# +A staff created for the 2012 RWC (Ragnarok World Championship) infused with pure gold. +-------------------------- +MATK +30 +Increases MATK by 30 for every 3 Refine Level. +-------------------------- +Refine Level +6: +ATK +5% +Refine Level +9: +ATK +5% +Random chance to auto-cast Level 1 Mystical Amplification. +-------------------------- +When equipped with RWC Memorial Pendant: +Increases MATK by 5 for every Refine Level. +-------------------------- +Type: One-Handed Staff +Attack: 25 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Magician, Acolyte and Soul Linker +# +1671# +This staff was once used for vanquishing an evil slayer and his followers. +-------------------------- +MATK +155 +-------------------------- +Increases Damage against monsters of Demon and Undead race by 10%. +-------------------------- +Refine Level +9: +MATK +5% +Refine Level +12: +MATK +7% +-------------------------- +Type: One-Handed Staff +Attack: 30 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Novice, Magician, Acolyte and Soul Linker +# +1672# +A magic staff that protects its user from the attacks of evil men. It's very popular for children and young women. +-------------------------- +INT +2 +MATK +120 +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +For each Refine Level equal or above +6: +Decreases damage taken from Demi-Human race by 1%. +-------------------------- +Random chance to auto-cast Level 1 Heal or learned Level of Heal on wielder when receiving physical damage. +-------------------------- +Type: One-Handed Staff +Attack: 10 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Acolyte +# +1675# +A staff once used by a very gentle man somewhere long ago. A very narrow sword is hidden inside the staff. +-------------------------- +DEX +1 +MATK +125 +-------------------------- +When equipped with Magician Hat: +DEX +2, INT +2 +Increases SP Recovery Rate by 5%. +MATK increases depending on the Refine Level. +-------------------------- +Type: One-Handed Staff +Attack: 40 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 50 +Magician, Acolyte, Soul Linker +# +1676# +An infernal staff from hell. Only true demons are able control it's full power. People say that a Prince from Hell used this weapon for his army. +-------------------------- +MATK +150 +-------------------------- +Decreases After Skill Delay by 10%. +-------------------------- +Base Level at least 100: +MATK +30 +-------------------------- +Refine Level +9: +Random chance to inflict Blind status on the target when dealing physical damage. +Decreases SP Consumption by 10%. +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Magician, Acolyte, Soul Linker +# +1677# +Blue Staff which has destructive power. +-------------------------- +DEX +5, INT +5. +MATK +200 +-------------------------- +When VIP status active: +MATK +20% +Decreases Variable Casting Time by 10%. +-------------------------- +Type: One-Handed Staff +Attack: 50 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Warlock +# +1678# +A golden wand with brutal power. +-------------------------- +DEX +8, INT +8 +MATK +170 +-------------------------- +Type: One-Handed Staff +Attack: 50 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 120 +Warlock +# +1679# +A staff which is crafted by a stone that is often used when Lapines put magic power into it. +-------------------------- +MATK +180 +-------------------------- +Decreases Fixed Casting Time by 1% for every Refine Level. (This effect does not stack with card's or other parts' decreasing effect.) +-------------------------- +Type: One-Handed Staff +Attack: 30 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Warlock, Sorcerer, Archbishop and Sura +# +1680# +Rod that emitting red aura. +-------------------------- +INT +4 +MATK +70 +-------------------------- +MATK increased by (RefineLv*RefineLv), up to +15 Refine Level. +-------------------------- +For each 10 Base Level above 70: +MATK +5 +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 60 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Novice, Magician, Acolyte and Soul Linker +# +1681# +A foxtail sprout that owned by every doram race. +-------------------------- +Type: One-Handed Staff +Attack: 30 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Summoner (Doram) +# +1682# +Ancient staff of Undead Magician. +-------------------------- +MATK +130 +-------------------------- +Enables the use of Level 5 Hell Inferno. +Hell Inferno gives 100% damage. +For each Refine Level: +Increases damage of Hell Inferno by 10%. +Ignores magical defense of target by 5%. +-------------------------- +Type: One-Handed Staff +Attack: 0 +Weight: 30 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 90 +Warlock +# +1683# +A foxtail with a thick and gentle appearance. +-------------------------- +MATK +70 +MaxSP +50 +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 50 +Weight: 20 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Summoner (Doram) +# +1684# +A very long foxtail wand with fancy appearance. +-------------------------- +MaxHP +200 +Increases Ranged Physical Damage by 5%. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 50 +Weight: 20 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Summoner (Doram) +# +1685# +A rare foxtail wand with Dragontail sitting on it. +-------------------------- +INT +1 +MATK +100 +MaxHP +100 +MaxSP +150 +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 70 +Weight: 30 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 20 +Summoner (Doram) +# +1686# +A heavy and large foxtail wand. +-------------------------- +DEX +1 +MaxHP +200 +MaxSP +100 +-------------------------- +Increases Ranged Physical Damage by 8%. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 70 +Weight: 30 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 20 +Summoner (Doram) +# +1687# +A cute foxtail wand intended for beginner. +-------------------------- +MaxHP +100 +MATK +15 +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 40 +Weight: 10 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 3 +Summoner (Doram) +# +1688# +A staff with the power of lightning. +It is said that the original performance can be exhibited by regaining the power of the wind. +-------------------------- +MATK +145 +-------------------------- +Refine Level +7: +Increases Magical Damage against monsters of Fish race by 10%. +Increases Magical Damage against Water elemental by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage against monsters of Fish race by additional 15%. +Increases Magical Damage against Water elemental by additional 15%. +-------------------------- +When equipped with Thunder Ring: +Increases Magical Damage against monsters of Fish race by additional 20%. +Increases Magical Damage against Water elemental by additional 20%. +-------------------------- +Type: One-Handed Staff +Attack: 160 +Weight: 100 +Element: Wind +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Novice, Acolyte, Magician and Soul Linker +# +1689# +A replica made based on the hunting staff. +Perhaps because it is an incomplete replica, the shape as a weapon will collapse after a certain period of time. +-------------------------- +MATK +145 +-------------------------- +Refine Level +7: +Increases Magical Damage against monsters of Insect and Demi-Human race, except Players, by 10%. +Increases Damage against Water and Earth elemental by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage against monsters of Insect and Demi-Human race, except Players, by additional 15%. +Increases Damage against Water and Earth elemental by additional 15%. +-------------------------- +Can only be sold to NPC's. +-------------------------- +Type: One-Handed Staff +Attack: 160 +Weight: 0 +Element: Fire +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Novice, Magician, Acolyte and Soul Linker +# +1690# +An enchanted foxtail wand by magical dragonfly. +-------------------------- +MATK +180 +MaxSP +50 +-------------------------- +For each 3 Refine Levels: +MATK +10 +MaxSP +10 +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 80 +Weight: 40 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 60 +Summoner (Doram) +# +1691# +This dragonfly and the foxtail has completly become one. +-------------------------- +MATK +240 +MaxSP +100 +For every 3 Refine Level: MATK +2%, MaxSP +1%. +-------------------------- +Refine Level +7: +Increases base weapon's ATK and MATK by 40%. +For every Refine Level higher than +7 or higher: Increases base weapon's ATK and MATK by 20%. +(Limited to +10 Refine Level) +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 100 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +1692# +The dragonfly and the foxtail give a feeling of very strong magical power when you holding it. +-------------------------- +MATK +260 +MaxSP +100 +For every 3 Refine Level: MATK +2%, MaxSP +1%. +-------------------------- +Refine Level +7: +Increases base weapon's ATK and MATK by 40%. +For every Refine Level higher than +7 or higher: Increases base weapon's ATK and MATK by 20%. +(Limited to +10 Refine Level) +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 120 +Weight: 60 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 140 +Summoner (Doram) +# +1693# +A yellow, well-ripen foxtail that has a dragonfly sitting on it. +-------------------------- +MATK +280 +Every 2 Refine Level MATK +3%. +-------------------------- +When using Fresh Shrimp skill, Random chance to auto-cast Level 1 Arclouse Dash, or activate learned Level. +-------------------------- +When using Silvervine Stem Spear skill, Random chance to auto-cast Level 1 Fresh Shrimp, or activate learned Level. +-------------------------- +Refine Level +7: +Increases base weapon's ATK and MATK by 40%. +For every Refine Level higher than +7 or higher: Increases base weapon's ATK and MATK by 20%. +(Limited to +10 Refine Level) +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 140 +Weight: 70 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 175 +Summoner (Doram) +# +1694# +A model of foxtail made from plastic. +-------------------------- +Increases Ranged Physical Damage by 8%. +MaxHP +100. +For every 3 Refine Level: DEX +2, MaxSP +10. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 150 +Weight: 30 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 60 +Summoner (Doram) +# +1695# +A crafted detailed model of foxtail. +-------------------------- +Increases Ranged Physical Damage by 8%, MaxHP +200. +For every 3 Refine Level: DEX +3, MaxSP +15. +-------------------------- +Refine Level +7: +Increases base weapon's ATK and MATK by 40%. +For every Refine Level higher than +7 or higher: Increases base weapon's ATK and MATK by 20%. +(Limited to +10 Refine Level) +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 195 +Weight: 30 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +1696# +A very accurate model of foxtail. +-------------------------- +Increases Ranged Physical Damage by 8%, MaxHP +5%. +For every 2 Refine Level: DEX +3, MaxSP +15. +-------------------------- +Refine Level +7: +Increases base weapon's ATK and MATK by 40%. +For every Refine Level higher than +7 or higher: Increases base weapon's ATK and MATK by 20%. +(Limited to +10 Refine Level) +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 240 +Weight: 30 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 140 +Summoner (Doram) +# +1697# +A very accurate model of yellow foxtail. +-------------------------- +MaxHP +7% +-------------------------- +Increases Ranged Physical Damage by 9%. +-------------------------- +For each 2 Refine Levels: +MaxSP +20 +Increases Ranged Physical Damage by 1%. +-------------------------- +When using Picky Peck skill, Random chance to auto-cast Level 1 Fresh Shrimp, or activate learned Level. +-------------------------- +Refine Level +7: +Increases base weapon's ATK and MATK by 40%. +For every Refine Level higher than +7 or higher: Increases base weapon's ATK and MATK by 20%. +(Limited to +10 Refine Level) +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 270 +Weight: 30 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 175 +Summoner (Doram) +# +1698# +A one-handed cane given by the King. +It seems to have the effect of calming the soul of the dead. +-------------------------- +MATK +145 +-------------------------- +Increases Magical Damage against monsters in Bio Lab and Tomb of the Fallen by 40%. +-------------------------- +Refine Level +5: +Increases Magical Damage against monsters in Bio Lab and Tomb of the Fallen by additional 20%. +-------------------------- +For each Refine Level equal or above +6: +Increases Magical Damage against monsters in Bio Lab and Tomb of the Fallen by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 80 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Super Novice, Magician and Acolyte +# +1699# +An Eden Group's mass production foxtail. A basic wand for summoner. +-------------------------- +DEX +3, INT +3 +MATK +135 +-------------------------- +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: One-Handed Staff +Attack: 120 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 26 +Summoner (Doram) +# +1701# +A common bow. +-------------------------- +Type: Bow +Attack: 15 +Weight: 50 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 4 +Archer, Thief and Rogue +# +1702# +A common bow. +-------------------------- +Type: Bow +Attack: 15 +Weight: 50 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 4 +Archer, Thief and Rogue +# +1703# +A common bow. +-------------------------- +Type: Bow +Attack: 15 +Weight: 0 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 4 +Archer, Thief and Rogue +# +1704# +An average bow that is mostly used for small game hunting. +-------------------------- +Type: Bow +Attack: 29 +Weight: 60 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 4 +Archer, Thief and Rogue +# +1705# +An average bow that is mostly used for small game hunting. +-------------------------- +Type: Bow +Attack: 29 +Weight: 60 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 4 +Archer, Thief and Rogue +# +1706# +An average bow that is mostly used for small game hunting. +-------------------------- +Type: Bow +Attack: 29 +Weight: 60 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 4 +Archer, Thief and Rogue +# +1707# +A simply constructed bow that offers well balanced performance. +-------------------------- +Type: Bow +Attack: 50 +Weight: 100 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Archer, Thief and Rogue +# +1708# +A simply constructed bow that offers well balanced performance. +-------------------------- +Type: Bow +Attack: 50 +Weight: 100 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Archer, Thief and Rogue +# +1709# +A simply constructed bow that offers well balanced performance. +-------------------------- +Type: Bow +Attack: 50 +Weight: 100 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Archer, Thief and Rogue +# +1710# +A specially made bow that uses a firing mechanism to launch arrows at enemies. +-------------------------- +Type: Bow +Attack: 65 +Weight: 90 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Archer, Thief and Rogue +# +1711# +A specially made bow that uses a firing mechanism to launch arrows at enemies. +-------------------------- +Type: Bow +Attack: 65 +Weight: 90 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Archer, Thief and Rogue +# +1712# +A specially made bow that uses a firing mechanism to launch arrows at enemies. +-------------------------- +Type: Bow +Attack: 65 +Weight: 90 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 18 +Archer, Thief and Rogue +# +1713# +A powerful siege weapon that is, in essense, a huge crossbow. +-------------------------- +DEX +2 +-------------------------- +Type: Bow +Attack: 90 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Archer, Thief and Rogue +# +1714# +A potent bow used by Goongsoo, the ancient Korean archer, who used its great strength to knock down the greatest of enemies. +-------------------------- +Type: Bow +Attack: 100 +Weight: 110 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Archer, Thief and Rogue +# +1715# +A powerful siege weapon that is, in essense, a huge crossbow. +-------------------------- +DEX +2 +-------------------------- +Type: Bow +Attack: 90 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Archer, Thief and Rogue +# +1716# +A potent bow used by Goongsoo, the ancient Korean archer, who used its great strength to knock down the greatest of enemies. +-------------------------- +Type: Bow +Attack: 100 +Weight: 110 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Archer, Thief and Rogue +# +1718# +A mighty bow that can only be effectively used by Hunters and Snipers. +-------------------------- +When equipped with Hunting Arrow: +Increases Ranged Physical Damage by 10%. +-------------------------- +Type: Bow +Attack: 125 +Weight: 110 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Hunter +# +1719# +A bow, created just for Thieves, that has great attacking range. +-------------------------- +Weapon range: 11 cells +-------------------------- +Type: Bow +Attack: 75 +Weight: 50 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 48 +Thief and Rogue +# +1720# +A bow imbued with the sacred essense of Rudra, one of the ancient gods. +-------------------------- +INT +5 +-------------------------- +Enable use of Level 1 Heal and Level 1 Cure. +-------------------------- +Adds 50% tolerance to the Poison, Curse, Silence, Confuse and Blind statuses. +-------------------------- +Type: Bow +Attack: 150 +Weight: 120 +Element: Holy +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 48 +Archer and Rogue +# +1721# +A rapid fire crossbow that can shoot many arrows in a short span of time. +-------------------------- +Type: Bow +Attack: 95 +Weight: 200 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 65 +Thief, Hunter and Rogue +# +1722# +A huge bow whose designed was inspired by the giant siege weapons used to raze entire castles. +-------------------------- +Type: Bow +Attack: 145 +Weight: 350 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 77 +Hunter, Bard and Dancer +# +1723# +A bow crafted out of moonstone with an attached blade that allows its user to block and counter enemy attacks. +The drawback is that this bow is quite heavy. +-------------------------- +DEF +2 +-------------------------- +Refine Level +6: +DEF +1 +Refine Level +9: +DEF +2 +-------------------------- +Type: Bow +Attack: 100 +Weight: 200 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Hunter +# +1724# +A bow constructed out of dragon bone and made to look like dragon wings. +-------------------------- +Ignores physical defense of Dragon race by 100%. +-------------------------- +Random chance a defeated Dragon monster will drop Oridecon Arrow. +-------------------------- +Type: Bow +Attack: 100 +Weight: 120 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Archer, Thief and Rogue +# +1725# +A musicial instrument that has been modified into a bow. +-------------------------- +INT +2 +Increases SP Recovery Rate by 10%. +-------------------------- +Type: Bow +Attack: 120 +Weight: 170 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Hunter, Bard and Dancer +# +1726# +A mighty bow that can only be effectively used by Hunter and Sniper. +-------------------------- +When equipped with Hunting Arrow: +Increases Ranged Physical Damage by 10%. +-------------------------- +Type: Bow +Attack: 125 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 33 +Hunter +# +1727# +A huge bow whose designed was inspired by the giant siege weapons used to raze entire castles. +-------------------------- +Type: Bow +Attack: 145 +Weight: 350 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 77 +Hunter, Bard and Dancer +# +1728# +Rental Item +A giant bow used in ancient battles. +-------------------------- +Increases Ranged Physical Damage by 20%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Bow +Attack: 194 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Hunter, Bard and Dancer +# +1729# +Rental Item +A bow imbued with the sacred essense of Rudra, one of the ancient gods. +-------------------------- +INT +5 +-------------------------- +Enables the use of Level 1 Heal and Level 1 Cure. +-------------------------- +Adds 50% tolerance to the Poison, Curse, Silence, Confuse and Blind statuses. +-------------------------- +Type: Bow +Attack: 185 +Weight: 0 +Element: Holy +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Archer and Rogue +# +1730# +A flaming bow that seems dangerous to grasp. +-------------------------- +Decreases damage taken from Fire elemental attacks by 10%. +-------------------------- +When equipped with Fire Arrow: +Increases Ranged Physical Damage by 10%. +-------------------------- +Type: Bow +Attack: 95 +Weight: 140 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Archer and Rogue +# +1731# +A frozen bow whose drawstring seems too solid to be pulled. +-------------------------- +Random chance to inflict Frozen status to target when dealing Ranged Physical Damages. +-------------------------- +When equipped with Crystal Arrow: +Increases Ranged Physical Damage by 10%. +-------------------------- +Type: Bow +Attack: 100 +Weight: 140 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Archer and Rogue +# +1732# +A bow that is perfectly balanced in every aspect. +-------------------------- +Random chance to inflict Blind status to target attacking. +-------------------------- +When equipped with Stone Arrow: +Increases Ranged Physical Damage by 10%. +Random chance to inflict Stone Curse status on the target when dealing physical damage. +-------------------------- +Type: Bow +Attack: 105 +Weight: 140 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Archer and Rogue +# +1733# +A light bow that has been enhanced with the power of whirlwinds. +-------------------------- +When equipped with Arrow of Wind: +Increases Ranged Physical Damage by 10%. +Random chance to auto-cast Level 5 Wind Blade when dealing Physical Damage, +this chance is increased when the wearer's INT is 40 or greater. +-------------------------- +Type: Bow +Attack: 95 +Weight: 140 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Archer and Rogue +# +1734# +A large, powerful bow used by Orc Archers. +-------------------------- +Random chance a defeated monster will drop Steel Arrow. +-------------------------- +When equipped with Steel Arrow: +Increases Ranged Physical Damage by 10%. +-------------------------- +Type: Bow +Attack: 120 +Weight: 160 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 65 +Archer and Rogue +# +1735# +A bow provided by Adaventurer guild for brave adventurer. +-------------------------- +Increases damage by 50%. +-------------------------- +Type: Bow +Attack: 120 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Archer, Thief and Rogue +# +1736# +A slim and smooth bow specialized for double attacks. +-------------------------- +Random chance to auto-cast learned Level of Double Strafe when dealing physical damage. +-------------------------- +Type: Bow +Attack: 70 +Weight: 90 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Sniper +# +1737# +A beautiful bow shaped as a pair of pure white wings. +-------------------------- +Has a chance of reducing After Attack Delay by 7% for 7 seconds with low probability when attacking. +Activation probability increases according to Refine Level. +-------------------------- +Type: Bow +Attack: 135 +Weight: 30 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Sniper +# +1738# +A Crossbow that has been designed to deal more damage to Demi-Human race. +-------------------------- +DEX +2 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 55%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Bow +Attack: 100 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Thief and Archer +# +1739# +A Crossbow that has been designed to deal more damage to Demi-Human race. +-------------------------- +DEX +2, INT +10 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 55%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Bow +Attack: 100 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Thief and Archer +# +1740# +A very flexible bow made of Nepenthes' tough tentacles. +-------------------------- +Random chance to auto-cast Level 1 Arrow Repel when using Double Strafe. +-------------------------- +Type: Bow +Attack: 105 +Weight: 100 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Sniper +# +1741# +A cursed bow that once killed a hero of an ancient nation long ago. +The curse of the bow takes luck away from its user. +-------------------------- +LUK -2 +-------------------------- +Random chance to inflict Curse status on the target when dealing Ranged Physical Damages. +-------------------------- +Type: Bow +Attack: 125 +Weight: 125 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 80 +Transcendent Archer +# +1742# +An average bow that is mostly used for small game hunting. +-------------------------- +Type: Bow +Attack: 49 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 4 +Archer, Thief and Rogue +# +1743# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 55%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +For each Refine Level: +Critical +1 +-------------------------- +Refine Level +6: +Pierces physical defense of Demi-Human race by additional 5%. +[Slaughter] Lv 1 (Damage bonus of Slaughter increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +Increases damage of Double Strafe by 20%. +-------------------------- +Type: Bow +Attack: 100 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Archer, Thief and Rogue +# +1744# +Rental Item +The devil's bow. +-------------------------- +DEX +2 +-------------------------- +Increases damage of Double Strafe by 25%. +-------------------------- +Type: Bow +Attack: 170 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Archer, Thief and Rogue +# +1745# +An elegant and beautiful Red bow that looks like a flying falcon. +-------------------------- +Increases damage of Focused Arrow Strike, Double Strafe and Arrow Repel by 10%. +-------------------------- +Type: Bow +Attack: 100 +Weight: 100 +Weapon Level: 3 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 50 +Sniper +# +1746# +It's made after a bow of ancient forest watching tribe. +-------------------------- +DEX +2 +-------------------------- +When equipped with Elven Arrow: +Increases Ranged Physical Damage by 10%. +-------------------------- +Type: Bow +Attack: 160 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Ranger, Minstrel and Wanderer +# +1747# +A bow made by the Eden Group. It's been remodeled for beginner Archers. +-------------------------- +Type: Bow +Attack: 82 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 26 +Archer, Thief and Rogue +# +1748# +A rich bow made by the Eden Group. It is suitable for intermediates who have handled a bow before. +-------------------------- +Type: Bow +Attack: 120 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Archer, Thief and Rogue +# +1749# +A bow used by traveler. +-------------------------- +DEX +2 +-------------------------- +Type: Bow +Attack: 40 +Weight: 50 +Weapon Level: 1 +-------------------------- +Requirement: +Archer, Thief and Rogue +# +1750# +A common arrow. +-------------------------- +Type: Arrow +Attack: 25 +Weight: 0 +Element: Neutral +# +1751# +An arrow tipped with a silver point enchanted with the power of holiness. +-------------------------- +Type: Arrow +Attack: 30 +Weight: 0.2 +Element: Holy +# +1752# +A flaming arrow that will inflict Fire element damage. +-------------------------- +Type: Arrow +Attack: 30 +Weight: 0.2 +Element: Fire +# +1753# +An arrow constructed from hardened steel. +-------------------------- +Type: Arrow +Attack: 40 +Weight: 0.2 +Element: Neutral +# +1754# +An arrow made of blue crystal imbued with the power of Water. +-------------------------- +Type: Arrow +Attack: 30 +Weight: 0.2 +Element: Water +# +1755# +An arrow enchanted by the power of the Wind. +-------------------------- +Type: Arrow +Attack: 30 +Weight: 0.2 +Element: Wind +# +1756# +An arrow made of stone imbued with the power of Earth. +-------------------------- +Type: Arrow +Attack: 30 +Weight: 0.2 +Element: Earth +# +1757# +A shining arrow that doesn't have a discernable shape. +-------------------------- +Type: Arrow +Attack: 30 +Weight: 0.1 +Element: Ghost +# +1758# +A thick, heavy arrow. +-------------------------- +Random chance to inflict Stun status on the target when dealing Ranged Physical Damages. +-------------------------- +Type: Arrow +Attack: 1 +Weight: 0.3 +Element: Neutral +# +1759# +An arrow enchanted with the power of ice. +-------------------------- +Random chance to inflict Frozen status on the target when dealing Ranged Physical Damages. +-------------------------- +Type: Arrow +Attack: 1 +Weight: 0.3 +Element: Water +# +1760# +An arrow that explodes with a flash of light upon impact. +-------------------------- +Random chance to inflict Blind status on the target when dealing Ranged Physical Damages. +-------------------------- +Type: Arrow +Attack: 1 +Weight: 0.3 +Element: Neutral +# +1761# +An arrow enchanted with curse magic. +-------------------------- +Random chance to inflict Curse status on the target when dealing Ranged Physical Damages. +-------------------------- +Type: Arrow +Attack: 1 +Weight: 0.3 +Element: Neutral +# +1762# +An old, rusty arrow. +-------------------------- +Type: Arrow +Attack: 30 +Weight: 0.2 +Element: Poison +# +1763# +An arrow whose tip has been dipped in lethal poison. +-------------------------- +Random chance to inflict Poison status on the target when dealing physical damage. +-------------------------- +Type: Arrow +Attack: 1 +Weight: 0.3 +Element: Poison +# +1764# +An arrow with topped with a serrated blade. +-------------------------- +Long range critical rate +20. +-------------------------- +Type: Arrow +Attack: 10 +Weight: 0.3 +Element: Neutral +# +1765# +A very powerful arrow made out of Oridecon. +-------------------------- +Type: Arrow +Attack: 50 +Weight: 0.3 +Element: Neutral +# +1766# +An arrow that is said to have the might to counter evil. +-------------------------- +Type: Arrow +Attack: 50 +Weight: 0.3 +Element: Holy +# +1767# +An arrow imbued with the power of darkness. +-------------------------- +Type: Arrow +Attack: 30 +Weight: 0.2 +Element: Shadow +# +1768# +An arrow that can render targets unconscious. +-------------------------- +Random chance to inflict Sleep status on the target when dealing physical damage. +-------------------------- +Type: Arrow +Attack: 1 +Weight: 0.3 +Element: Neutral +# +1769# +An arrow coated with a chemical that will paralyze a target's mouth. +-------------------------- +Random chance to inflict Silence status on the target when dealing physical damage. +-------------------------- +Type: Arrow +Attack: 1 +Weight: 0.3 +Element: Neutral +# +1770# +Forged out of iron, this arrow will inflict more damage than one crafted of wood. +-------------------------- +Type: Arrow +Attack: 30 +Weight: 0.1 +Element: Neutral +# +1771# +A throwing knife laced with toxin that can inflict the Poison effect to enemies. +-------------------------- +Type: Throwing Dagger +Attack: 30 +Weight: 0.5 +Element: Neutral +# +1772# +A metal arrow blessed with holy water. +-------------------------- +Increases Physical Damage against monsters of Demon race by 5%. +-------------------------- +Type: Arrow +Attack: 50 +Weight: 0.2 +Element: Holy +# +1773# +Arrows once used by the ancient elves guarding the forest. +-------------------------- +When equipped with Elven Bow: +Increases Ranged Physical Damage by 10%. +-------------------------- +Type: Arrow +Attack: 45 +Weight: 0.1 +Element: Neutral +-------------------------- +Requirement: +Base Level 100 +# +1774# +Strong and rough arrows ideal for hunting large animals. +-------------------------- +When equipped with Hunter Bow: +Increases Ranged Physical Damage by 10%. +-------------------------- +Type: Arrow +Attack: 35 +Weight: 0.1 +Element: Neutral +# +1775# +A mass produced arrows for War of Emperium. +-------------------------- +*Effects in WoE & PVP area +When used with Vellum Crossbow: +Increases Ranged Physical Damage by 70%. +-------------------------- +Type: Arrow +Attack: 45 +Weight: 0.1 +Element: Neutral +-------------------------- +Requirement: +Base Level 130 +# +1776# +Mass produced arrows for War of Emperium. +-------------------------- +*Effects in WoE & PVP area +When used with Vellum Crossbow: +Increases Ranged Physical Damage by 40%. +-------------------------- +Type: Arrow +Attack: 30 +Weight: 0.1 +Element: Neutral +-------------------------- +Requirement: +Base Level 95 +# +1800# +Fist imbued with Vicious Mind. +-------------------------- +Increases ATK by (Refinelv*Refinelv). +(up to +15 Refine Level) +-------------------------- +Type: Knuckle +Attack: 150 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 160 +Priest and Monk classes +# +1801# +A common, yet effective claw that's also known as the \ +. +-------------------------- +Type: Knuckle +Attack: 30 +Weight: 40 +Weapon Level: 1 +-------------------------- +Requirement: +Priest and Monk classes +# +1802# +A common, yet effective claw that's also known as the \ +. +-------------------------- +Type: Knuckle +Attack: 30 +Weight: 40 +Weapon Level: 1 +-------------------------- +Requirement: +Priest and Monk classes +# +1803# +A protective covering that shields the back of the hand and forearm and has raised studs for offensive purposes. +-------------------------- +Type: Knuckle +Attack: 50 +Weight: 45 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Priest and Monk classes +# +1804# +A protective covering that shields the back of the hand and forearm and has raised studs for offensive purposes. +-------------------------- +Type: Knuckle +Attack: 50 +Weight: 45 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Priest and Monk classes +# +1805# +Silver, spiked knuckles with diamond studs that are usually worn by the best fighters in a tribe. +-------------------------- +Type: Knuckle +Attack: 65 +Weight: 45 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Priest and Monk classes +# +1806# +Silver, spiked knuckles with diamond studs that are usually worn by the best fighters in a tribe. +-------------------------- +Type: Knuckle +Attack: 65 +Weight: 45 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 12 +Priest and Monk classes +# +1807# +A weapon made in the form of a human fist which effectively inflicts damage on enemies. +-------------------------- +Type: Knuckle +Attack: 115 +Weight: 65 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Priest and Monk classes +# +1808# +A weapon made in the form of a human fist which effectively inflicts damage on enemies. +-------------------------- +Type: Knuckle +Attack: 115 +Weight: 65 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Priest and Monk classes +# +1809# +A weapon with three long steel claws that have proven effective in close combat. +-------------------------- +STR +2 +-------------------------- +Type: Knuckle +Attack: 86 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Priest and Monk classes +# +1810# +A weapon with three long steel claws that have proven effective in close combat. +-------------------------- +STR +2 +-------------------------- +Type: Knuckle +Attack: 86 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Priest and Monk classes +# +1811# +Claws shaped like human fingers with long, sharp nails. +-------------------------- +Type: Knuckle +Attack: 97 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Priest and Monk classes +# +1812# +Claws shaped like human fingers with long, sharp nails. +-------------------------- +Type: Knuckle +Attack: 97 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Priest and Monk classes +# +1813# +A claw blessed by Zephyrus, god of the west wind. +-------------------------- +Increases Physical Damage against enemies of Undead race by 5%. +-------------------------- +Increases Physical Damage against enemies of Earth, Water, Fire and Wind elemental by 10%. +-------------------------- +Type: Knuckle +Attack: 110 +Weight: 45 +Element: Wind +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 36 +Priest and Monk classes +# +1814# +A claw imbued with the essense of madness. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 12%). +-------------------------- +Type: Knuckle +Attack: 120 +Weight: 50 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 36 +Priest and Monk classes +# +1815# +A blood stained weapon created from the claws of Hatii, keeper to the door the netherworld. +-------------------------- +MaxHP -2% +-------------------------- +Adds a low chance of inflicting Bleeding status to target when attacking. +-------------------------- +Type: Knuckle +Attack: 152 +Weight: 55 +Element: Shadow +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Priest and Monk classes +# +1816# +A pair of fierce claws that possesses its wearer, compelling him to draw fresh blood. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 12%). +-------------------------- +Type: Knuckle +Attack: 120 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Priest and Monk classes +# +1817# +Rental Item +A claw blessed by Zephyrus, god of the west wind. +-------------------------- +Increases Physical Damage against enemies of Undead race by 5%. +-------------------------- +Increases Physical Damage against enemies of Earth, Water, Fire and Wind elemental by 10%. +-------------------------- +Type: Knuckle +Attack: 159 +Weight: 0 +Element: Wind +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Priest and Monk classes +# +1818# +A knuckle made of superheated lava that has a special lining so that it can be worn. +-------------------------- +Random chance to auto-cast Level 5 Flame Launcher on wearer when dealing physical damage. +-------------------------- +Type: Knuckle +Attack: 80 +Weight: 65 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 75 +Priest and Monk classes +# +1819# +A knuckle made of extremely cold ice that has a special lining so that it can be worn. +-------------------------- +Random chance to auto-cast Level 5 Frost Weapon on wearer when dealing physical damage. +-------------------------- +Type: Knuckle +Attack: 80 +Weight: 65 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 75 +Priest and Monk classes +# +1820# +A knuckle imbued with the power of lightning that occasionally shocks enemies. +-------------------------- +Random chance to auto-cast Level 5 Lightning Loader on wearer when dealing physical damage. +-------------------------- +Type: Knuckle +Attack: 80 +Weight: 65 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 75 +Priest and Monk classes +# +1821# +A knuckle imbued with the power of Mother Earth that can be used to crush your enemies. +-------------------------- +Random chance to auto-cast Level 5 Seismic Weapon on wearer when dealing physical damage. +-------------------------- +Type: Knuckle +Attack: 80 +Weight: 65 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 75 +Priest and Monk classes +# +1822# +The magic words engraved on these gloves can grant incredible power to the Monk that wears them. +-------------------------- +Increases damage of Triple Attack, Chain Combo and Combo Finish by 15%. +-------------------------- +Type: Knuckle +Attack: 30 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 60 +Priest and Monk classes +# +1823# +Battle Gloves used by combatants in the field of battle. Its wearer is never exhausted because it brings unlimited power once worn. +-------------------------- +STR +2, AGI +1 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 95%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +Each physical attack adds the chance of auto casting Dangerous Soul Collect skill. +-------------------------- +Indestructible in battle +-------------------------- +Type: Knuckle +Attack: 30 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Priest and Monk classes +# +1824# +Battle Gloves used by combatants in the field of battle. Its wearer is never exhausted because it brings unlimited power once worn. +-------------------------- +STR +2, INT +1 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 95%. +-------------------------- +Decreases Asura Strike casting time by 25%. +-------------------------- +When attacking and weapon awakening in consistent probability, +Has a chance of negating Asura Strike Variable Casting Time by 100% for 6 secs. +-------------------------- +Indestructible in battle +-------------------------- +Type: Knuckle +Attack: 30 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Priest and Monk classes +# +1825# +A knuckle made from 3 of Hillslion's horns. +-------------------------- +Random chance to inflict Level 1 Critical Wound when attacking. +-------------------------- +Random chance to auto-cast Level 1 Investigate when using Palm Strike. +-------------------------- +Random chance to auto-cast Level 5 Call Spirits when dealing physical damage. +-------------------------- +Type: Knuckle +Attack: 95 +Weight: 60 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 60 +Champion +# +1826# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 95%. +-------------------------- +Ignores physical defense of Demi-Human race by 25%. +-------------------------- +Refine Level +6: +Pierces physical defense of Demi-Human race by additional 5%. +[Slaughter] Lv 1 (Damage bonus of Slaughter increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +Random chance to auto-cast Level 5 Investigate & Level 1 Decreases Agi when dealing physical damage. +-------------------------- +Type: Knuckle +Attack: 30 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Priest and Monk classes +# +1827# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 95%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +Refine Level +6: +Pierces physical defense of Demi-Human race by additional 5%. +[Slaughter] Lv 1 (Damage bonus of Slaughter increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +Using Explosion Spirits auto-casts Level 1 Dangerous Soul Collect. +Decreases Variable Casting Time of Asura Strike by 100%. +-------------------------- +Type: Knuckle +Attack: 30 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Priest and Monk classes +# +1828# +Rental Item +Knuckle of monk. +-------------------------- +INT +2 +-------------------------- +Increases damage of Finger Offensive by 25%. +-------------------------- +Type: Knuckle +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Priest and Monk classes +# +1829# +Rental Item +A weapon made in the form of a human fist which effectively inflicts damage on enemies. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Knuckle +Attack: 150 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Priest and Monk classes +# +1830# +A knuckle engraved with splendid patterns of a bronze dragon. +-------------------------- +Increases damage of Earth Shaker and Sky Net Blow by 20%. +-------------------------- +Increases SP Consumption by 5%. +-------------------------- +For each Refine Level equal or above +6: +Decreases SP Consumption by 1%. +-------------------------- +Type: Knuckle +Attack: 142 +Weight: 50 +Weapon Level: 3 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 102 +Sura +# +1831# +A knuckle made by the Eden Group. It is suitable for those who have more advanced experience as Champions. +-------------------------- +Type: Knuckle +Attack: 120 +Weight: 0 +Weapon Level: 3 +Refineable: No +Can be enchanted by: +Weapons Expert BKmoc_para01,112,79,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Priest and Monk classes +# +1832# +*Effects in WoE & PVP area +Increases Physical Damage against Players by 100%. +-------------------------- +Refine Level +8: +Increases Physical Damage against Players by additional 20%. +-------------------------- +Refine Level +10: +Random chance to auto-cast Dangerous Soul Collect when using Explosion Spirits skill. +Removes Casting Time of Asura Strike. +Drains 500 HP every 3 seconds. +-------------------------- +Type: Knuckle +Attack: 160 +Weight: 65 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 95 +Priest and Monk classes +# +1833# +A claw that leave beautiful wounds. +-------------------------- +ASPD +1 +-------------------------- +For each Refine Level: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +For each Refine Level: +Increases Physical Damage against enemies of Medium size by 1%. +-------------------------- +Type: Knuckle +Attack: 140 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 105 +Priest and Monk classes +# +1834# +Rental Item +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Random chance to inflict Freezing status when dealing physical damage. +-------------------------- +Type: Knuckle +Attack: 150 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Priest and Monk classes +# +1835# +A knuckle of legendary gladiator. +-------------------------- +For every Refine Level: +ATK +1%. +-------------------------- +Refine Level +10: +Nullifies reduction in damage against monsters resulting from monster's size. +-------------------------- +Indestructible in battle +-------------------------- +Type: Knuckle +Attack: 100 +Weight: 60 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 50 +Priest and Monk classes +# +1836# +A knuckle sculpted from Gray Shard to counter Magic Sword Tartanos. +It offers incredible power and magic at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +-------------------------- +MATK +100 +-------------------------- +Low chance to drain 5% of attack into HP and SP. +-------------------------- +Drains 100 HP every 10 seconds. +-------------------------- +Drains 1000 HP when unequipped. +-------------------------- +Type: Knuckle +Attack: 160 +Weight: 60 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Sura +# +1837# +An arm-length gauntlet with giant claws attached to it. The claws can penetrate even the thickest gloves. +-------------------------- +Ignores physical defense of target by 100%. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +For each 2 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by additional 1%). +-------------------------- +Learned Level 5 Chain Combo: +ATK +20 +-------------------------- +Learned Level 5 Combo Finish: +ATK +20 +-------------------------- +Learned Level 5 Tiger Fist: +ATK +20 +-------------------------- +Learned Level 5 Chain Crush Combo: +ATK 40 +-------------------------- +Type: Knuckle +Attack: 100 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Priest and Monk classes +# +1839# +Knuckle that emitting red aura. +-------------------------- +ATK increased by (RefineLv*RefineLv), up to +15 Refine Level. +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Knuckle +Attack: 100 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Priest and Monk classes +# +1840# +A knuckle given by the king. +It seems to have the effect of calming the soul of the dead. +-------------------------- +MATK +100 +-------------------------- +Increases Magical Damage against monsters in Bio Lab and Tomb of the Fallen by 40%. +-------------------------- +Refine Level +5: +Increases Magical Damage against monsters in Bio Lab and Tomb of the Fallen by additional 20%. +-------------------------- +For each Refine Level equal or above +6: +Increases Magical Damage against monsters in Bio Lab and Tomb of the Fallen by additional 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Knuckle +Attack: 150 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Monk and Priest +# +1841# +A claw that leave beautiful wounds. +-------------------------- +ASPD +1 +-------------------------- +For each Refine Level: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +For each Refine Level: +Increases Physical Damage against enemies of Medium size by 1%. +-------------------------- +Type: Knuckle +Attack: 140 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 105 +Priest and Monk classes +# +1842# +A weapon of unknown origin that contains the magic of the labyrinth. +It is unclear what kind of material it is made of, and the same weapons have different performances. +-------------------------- +MATK +100 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Baphomet Card: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Type: Knuckle +Attack: 140 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +3rd Acolyte classes +# +1843# +A Diva Claw that has mutated under the influence of the power of the labyrinth. +It is unclear what kind of material it is made of, and it is said that similar weapons have different performances. +-------------------------- +Attack Range: 5 cells +-------------------------- +MATK +100 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: Knuckle +Attack: 140 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +3rd Acolyte classes +# +1844# +A fist with evil spirit dwelling inside. +-------------------------- +For each Refine Level: +ATK +1 +-------------------------- +Type: Knuckle +Attack: 80 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Archbishop and Sura +# +1845# +A knuckle for sura whose mastered at using a knuckle. +When equipped with Enhanced Time Keeper Armor, will makes wearer's body more agile. +-------------------------- +Increases damage of Tiger Cannon by 20%. +-------------------------- +For each 10 Base Level: +ATK +6 (up to Base Level 160). +-------------------------- +Refine Level +7: +For each Level of Triple Attack: +ATK +3 +-------------------------- +When equipped with Enhanced Time Keeper Hat, Enhanced Time Keeper Robe, nhanced Time Keeper Manteau, Enhanced Time Keeper Boots: +ASPD +2, +MaxHP and MaxSP +10% + +For every 10 Base VIT: +Decreases damage taken from Neutral elemental attacks by 3%. +(up to Base VIT 100) + +For every 10 Base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +(up to Base AGI 100) + +For every 10 Base DEX: +HIT +3 +(up to Base DEX 100) + +For every 10 Base LUK: +Critical +3 +(up to Base LUK 100) +-------------------------- +Type: Knuckle +Attack: 140 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Sura +# +1846# +The magic words engraved on these gloves can grant incredible power to the Monk that wears them. +-------------------------- +Increases damage of Sky Net Blow by 10%. +Increases damage of Dragon Combo by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Sky Net Blow and Dragon Combo by additional 5%. +For each 3 Refine Levels: +Increases damage of Tiger Cannon by 5%. +-------------------------- +When equipped with Illusion Muffler: +ATK +40 +-------------------------- +Refine Level of Illusion Combo Battle Gloves and Illusion Muffler each is +7 or higher: +Increases damage of Tiger Cannon by 20%. +-------------------------- +Total Refine Level of entire set at least +18: +Decreases Flash Combo After Skill Delay by 1 second. +-------------------------- +Total Refine Level of entire set at least +22: +Increases damage of Tiger Cannon by additional 15%. +-------------------------- +Type: Knuckle +Attack: 250 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Sura +# +1847# +A knuckle once worn by ancient hero. It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +9: +Increases damage of Rampage Blast by 5%. +-------------------------- +Refine Level +11: +Decreases Rampage Blast skill cooldown by 1 second. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase STR by 20 and ATK by 15% for 7 sec when dealing physical damage. +-------------------------- +Type: Knuckle +Attack: 180 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Sura +# +1848# +Knuckles specially made for beginner suras. +It will show it's true ability when equipped together with Beginner Armor set. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +7: +Increases damage of Tiger Cannon by 15%. +-------------------------- +When equipped with Beginner's Hat, Beginner's Suit, Beginner's Manteau, Beginner's Boots and Beginner's Ring: +For each 10 Base Level: +ATK +3 (up to Base Level 150) +ASPD +1 +ATK +5% +-------------------------- +Type: Knuckle +Attack: 150 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Sura +# +1861# +A weapon mutated by the magical power of a stranger. +Even if they look the same, their performance is different. +-------------------------- +MATK +100 +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by 5%. +-------------------------- +Refine Level +9: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Knuckle +Attack: 140 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +3rd Acolyte classes +# +1862# +A purple knuckle with something boiling. +When hit, it causes burning pain on the target. +-------------------------- +ATK +3% +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases damage of Rampage Blaster by 15%. +-------------------------- +Refine Level +11: +Increases Damage against monsters of Medium and Large size by 20%. +-------------------------- +Type: Knuckle +Attack: 175 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Sura +# +1864# +고대 영웅이 사용했다고 하는 너클. +기존 너클과 구조가 다른 것 같지만 적을 단숨에 제압하는데 특화되어 있다. +For each 2 Refine Levels: +ATK +10. +For each 3 Refine Levels: +Long Range Physical 공격력 4% by increase. +Refine Level +7: +폭기산탄 damage 10% increase. +Refine Level +9: +폭기산탄 skill Cooldown 1 sec decrease. +-------------------------- +Type: Knuckle +Attack: 180 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 99 +Sura +# +1865# +It can deals fierce attack. +-------------------------- +Increases damage of Chain Combo by 30%. +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Increases damage of Combo Finish by 50%. +-------------------------- +Refine Level +11: +Increases damage of Chain Crush Combo by 30%. +-------------------------- +Type: Knuckle +Attack: 210 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Sura +# +1866# +Bandages tied to hands that engulfed with black lights. +-------------------------- +Increases Ranged Physical Damage by 10%. +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Increases damage of Knuckle Arrow by 40%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 7%. +-------------------------- +Type: Knuckle +Attack: 220 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Sura +# +1867# +It was designed for the safety of Einbech workers. +Due to its excellent durability, it was also improved for combat using various attachments. +-------------------------- +ATK +10%. +Increases damage of Knuckle Arrow by 10%. +-------------------------- +Refine Level +7: +ATK +40 +Increases Attack Speed (Decreases After Attack Delay by 15%) +-------------------------- +Refine Level +9: +Increases damage of Knuckle Arrow by additional 15%. +Physical attacks have a chance to increase physical damage to all size enemies by 15% for 10 seconds. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 20%. +-------------------------- +Type: Knuckle +Attack: 210 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Sura +# +1870# +Knuckles used by Glastheim Monks. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +Increase Ranged Physical Damage by 15%. +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Increases damage of Rampage Blaster by 20%. +-------------------------- +Refine Level +11: +Decreases Rampage Blaster skill cooldown by 1 second. +Increases Physical Damage against enemies of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +ATK +30 +Physical attacks have a chance to increase Ranged Physical Damage by additional 10% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Physical Damage against enemies of Holy and Undead elemental by 20%. +-------------------------- +Type: Knuckle +Attack: 190 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Sura +# +1900# +Violin imbued with Vicious Mind. +-------------------------- +MATK +50 +-------------------------- +Increases ATK by (Refinelv*Refinelv). +(up to +15 Refine Level) +-------------------------- +Increases MATK by (Refinelv*Refinelv)/2. +(up to +15 Refine Level) +-------------------------- +Type: Musical Instrument +Attack: 130 +Weight: 130 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 160 +Bard classes +# +1901# +The classical stringed instrument favored by Rocker, the grasshopper monster who'd rather play music than do actual work. +-------------------------- +Type: Musical Instrument +Attack: 50 +Weight: 70 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 2 +Bard classes +# +1902# +The classical stringed instrument favored by Rocker, the grasshopper monster who'd rather play music than do actual work. +-------------------------- +Type: Musical Instrument +Attack: 50 +Weight: 70 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 2 +Bard classes +# +1903# +A small, stringed instrument used in Baroque, Classical, country and folk music. +-------------------------- +Type: Musical Instrument +Attack: 90 +Weight: 40 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Bard classes +# +1904# +A small, stringed instrument used in Baroque, Classical, country and folk music. +-------------------------- +Type: Musical Instrument +Attack: 90 +Weight: 40 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Bard classes +# +1905# +A classical plucked string instrument that is incredibly difficult to tune and adjust. +-------------------------- +Type: Musical Instrument +Attack: 105 +Weight: 50 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Bard classes +# +1906# +A classical plucked string instrument that is incredibly difficult to tune and adjust. +-------------------------- +Type: Musical Instrument +Attack: 105 +Weight: 50 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 14 +Bard classes +# +1907# +A six stringed musical instrument that is played by plucking the strings with fingers or a pick. +-------------------------- +Type: Musical Instrument +Attack: 142 +Weight: 90 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Bard classes +# +1908# +A six-stringed musical instrument that is played by plucking the strings with fingers or a pick. +-------------------------- +Type: Musical Instrument +Attack: 142 +Weight: 90 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Bard classes +# +1909# +A stringed instrument known for the beautiful sound ofeach note that is played. +-------------------------- +INT +2 +-------------------------- +Type: Musical Instrument +Attack: 114 +Weight: 90 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Bard classes +# +1910# +A stringed instrument known for the beautiful sound ofeach note that is played. +-------------------------- +INT +2 +-------------------------- +Type: Musical Instrument +Attack: 114 +Weight: 90 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Bard classes +# +1911# +A traditional chordophone, favored by the aristocracy in days past, which plays deep, subtle notes. +-------------------------- +Type: Musical Instrument +Attack: 126 +Weight: 130 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Bard classes +# +1912# +A traditional chordophone, favored by the aristocracy in days past, which plays deep, subtle notes. +-------------------------- +Type: Musical Instrument +Attack: 126 +Weight: 130 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Bard classes +# +1913# +An electric guitar which amplifies its user's power. +-------------------------- +INT +2, AGI +1 +-------------------------- +Enables the use of Level 1 Jupitel Thunder. +-------------------------- +Type: Musical Instrument +Attack: 110 +Weight: 180 +Element: Wind +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Bard classes +# +1914# +A magically dazzling guitar that bewitches its user to play songs of passion once it's held in his hands. +-------------------------- +Type: Musical Instrument +Attack: 110 +Weight: 90 +Element: Fire +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Bard classes +# +1915# +A guitar which makes a depressing sound when strummed and is said to have been played by a bard who spend his entire life in complete loneliness. +-------------------------- +Type: Musical Instrument +Attack: 110 +Weight: 90 +Element: Water +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Bard classes +# +1916# +According to rumor, this quaint guitar can be used to communicate with stones and even the very Earth itself. +-------------------------- +Type: Musical Instrument +Attack: 110 +Weight: 90 +Element: Earth +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Bard classes +# +1917# +A magical guitar which fills the one who plays it with a desire for traveling. +-------------------------- +Type: Musical Instrument +Attack: 110 +Weight: 90 +Element: Wind +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Bard classes +# +1918# +An ancient lute seen on display in oriental towns such as Payon, Amatsu or Kunlun. +Nowadays, no one really knows how to play it. +-------------------------- +Increases damage of Arrow Vulcan and Musical Strike by 10%. +-------------------------- +Type: Musical Instrument +Attack: 150 +Weight: 120 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 65 +Bard classes +# +1919# +An instrument that produces low pitched sound. +-------------------------- +Recovers 3 SP for each enemy defeated. +-------------------------- +Random chance to auto-cast Level 3 Heaven's Drive on attacker when wielder receive physical attacks. +-------------------------- +Random chance to inflict Confuse status to all enemies within a 11*11 cell area. +-------------------------- +Type: Musical Instrument +Attack: 130 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Clown +# +1920# +When musicians play this legendary instrument, their consciousness is fully absorbed, returning only once they've realized that they've finished their performance. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 100%). +-------------------------- +Disables HP Recovery Rate. +-------------------------- +Heavily reduces DEX. +-------------------------- +Drains 50 HP every 5 second. +-------------------------- +Type: Musical Instrument +Attack: 10 +Weight: 180 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Clown +# +1921# +The adventurers who are brave the item which is provided from the hazard adventurer guild. +-------------------------- +Increases damage by 50%. +-------------------------- +Type: Musical Instrument +Attack: 120 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Clown +# +1922# +An ancient lute seen on display in oriental towns such as Payon, Amatsu or Kunlun. +Nowadays, no one really knows how to play it. +-------------------------- +Increases damage of Arrow Vulcan and Musical Strike by 10%. +-------------------------- +Type: Musical Instrument +Attack: 150 +Weight: 120 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 65 +Bard classes +# +1923# +A guitar which was created to encourage armies amidst battle. +It looks useful for battles against Demihuman. +-------------------------- +DEX +2 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 95%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Musical Instrument +Attack: 50 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Bard classes +# +1924# +A guitar which was created to encourage armies amidst battle. +It looks useful for battles against Demihuman. +-------------------------- +DEX +2 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 95%. +-------------------------- +Increases damage of Arrow Vulcan by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Musical Instrument +Attack: 50 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Bard classes +# +1925# +An instrument with a low tone. Its 4 strings play nice calm sounds so this instrument is good for both solo and concert play. +-------------------------- +AGI +2 +DEX +3 +-------------------------- +Add 2 cells knock back effect when using Musical Strike. +-------------------------- +Add 3 cells knock back effect when using Arrow Vulcan. +-------------------------- +Type: Musical Instrument +Attack: 110 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Clown +# +1926# +A harp with its strings made from the tentacles of Nepenthes. +-------------------------- +INT +2 +-------------------------- +Random chance to inflict Stun status on the target when using Musical Strike. +The chance doubles if the Refining Level is over 8. +-------------------------- +Type: Musical Instrument +Attack: 120 +Weight: 100 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Clown and Gypsy +# +1927# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 95%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +Refine Level +6: +Pierces physical defense of Demi-Human race by additional 5%. +Slaughter Lv 1 (Damage bonus of Slaughter increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +Using Arrow Vulcan has a chance of casting Level 5 Tarot Card of Fate. +-------------------------- +Type: Musical Instrument +Attack: 50 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Bard classes +# +1928# +Rental Item +The legendary guitar known for when the player finally snaps out of stupor, you've already finished your performance. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 100%). +-------------------------- +Disables HP Recovery Rate. +-------------------------- +Drain 50 HP every 5 seconds. +-------------------------- +Heavily decreases DEX. +-------------------------- +Type: Musical Instrument +Attack: 40 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Clown +# +1929# +Rental Item +A six stringed musical instrument that is played by plucking the strings with fingers or a pick. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Musical Instrument +Attack: 177 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Bard classes +# +1930# +A flute made of sturdy plant stem. +-------------------------- +MATK +50 +-------------------------- +Decreases Variable Casting Time of Deep Sleep Lullaby and Windmill Rush by 2 secs. +SP cost ofeach skill decreased by 4 with every upgrade above Level 6. +-------------------------- +Type: Musical Instrument +Attack: 170 +Weight: 80 +Weapon Level: 3 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 102 +Minstrel +# +1931# +An instrument made by the Eden Group. It is suitable for those who have more advanced experience as Bards. +-------------------------- +Type: Musical Instrument +Attack: 125 +Weight: 0 +Weapon Level: 3 +Refineable: No +Can be enchanted by: +Weapons Expert BKmoc_para01,112,79,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Bard classes +# +1932# +Rental Item +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Random chance to inflict Poison status when dealing physical damage. +-------------------------- +Type: Musical Instrument +Attack: 100 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Bard classes +# +1933# +A violin sculpted from Gray Shard to counter Magic Sword Tartanos. +It offers incredible power and magic at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +130 +-------------------------- +Low chance to drain 5% of attack into HP and SP. +-------------------------- +Increases Ranged Physical Damage by 20%. +-------------------------- +Drains 100 HP every 10 seconds. +-------------------------- +Drains 1000 HP when unequipped. +-------------------------- +Type: Musical Instrument +Attack: 200 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Minstrel +# +1934# +The Contrabass, also known as large musical instrument called the violin strains. +Large and powerful enough to be used as a weapon. +-------------------------- +MATK +120 +-------------------------- +Decreases Improvised Song skill cooldown by 2 seconds. +-------------------------- +Type: Musical Instrument +Attack: 180 +Weight: 25 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 130 +Minstrel +# +1935# +The color match well with new oz's outfit. +-------------------------- +Decreases SP Consumption of Windmill Rush by 20. +-------------------------- +When equipped with New Oz's Wing Ring: +Increases damage of Arrow Vulcan by 200%. +Increases SP Consumption of Arrow Vulcan by 50. +-------------------------- +Type: Musical Instrument +Attack: 160 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Minstrel +# +1936# +Blue Violin which has destructive power. +-------------------------- +DEX +5, VIT +5. +-------------------------- +When VIP status active: +Long Range ATK +20% +Decreases SP Consumption by 10%. +-------------------------- +Type: Musical Instrument +Attack: 200 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Minstrel +# +1937# +A golden violin with brutal power. +-------------------------- +DEX +8, VIT +8 +-------------------------- +Type: Musical Instrument +Attack: 180 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 120 +Minstrel +# +1938# +This weapon contains a strange energy. +I feel that one of its benefits were sealed with a high cost. +-------------------------- +Type: Musical Instrument +Attack: 150 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Minstrel +# +1939# +Violin that emitting red aura. +-------------------------- +ATK increased by (RefineLv*RefineLv), up to +15 Refine Level. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Musical Instrument +Attack: 80 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Bard classes +# +1940# +A flute made from a large shell. +-------------------------- +For every Refine Level, INT +1 and DEX +1 +-------------------------- +Refine Level +5: +Increases damage of Reverberation by 10% and Decreases Variable Casting Time by 10%. +Refine Level +7: +Increases damage of Reverberation by 20% and Decreases Variable Casting Time by 20%. +Refine Level +9: +Increases damage of Reverberation by 40% and Decreases Variable Casting Time by 40%. +-------------------------- +Type: Musical Instrument +Attack: 120 +Weight: 60 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Minstrel +# +1941# +A certified kingdom equipment for adventurer. +-------------------------- +Increases ATK by (Refine*Refine*1.25) +-------------------------- +Type: Musical Instrument +Attack: 76 +Weight: 40 +Weapon Level: 3 +-------------------------- +Requirement: +Bard classes +# +1942# +A violin given by the King. +It seems to have the effect of calming the souls of the dead. +-------------------------- +MATK +120 +-------------------------- +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by 40%. +-------------------------- +Refine Level +5: +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by additional 20%. +-------------------------- +For each Refine Level equal or above +6: +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by additional 15%. +-------------------------- +Refine Level +7: +Increases damage of Arrow Vulcan by 200%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Musical Instrument +Attack: 160 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Minstrel +# +1943# +An eastern musical instrument that can brings nostalgic memories. +-------------------------- +When using Circle of Nature, for 60 seconds: Restore 1 SP every 4 seconds. +-------------------------- +Refine Level +10: +Erhu become indestructible. +-------------------------- +Type: Musical Instrument +Attack: 50 +Weight: 70 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 90 +Clown +# +1944# +Guitar with a sense of free will. It looks old and outdated, but still can be used. +-------------------------- +Every learned Level of Musical Lesson reduces After Attack Delay. +-------------------------- +Refine Level +7: +Increases ATK by 5 for every learned Musical Lesson skill. +Refine Level +9: +ASPD +1 +-------------------------- +Type: Musical Instrument +Attack: 140 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Minstrel +# +1945# +A weapon of unknown origin that contains the magic of the labyrinth. +It is unclear what kind of material it is made of, and the same weapons have different performances. +-------------------------- +MATK +120 +-------------------------- +Refine Level +7: +Increases damage of Arrow Vulcan by 150%. +-------------------------- +Refine Level +9: +Increases damage of Arrow Vulcan by additional 50%. +-------------------------- +When compounded with Labyrinth Baphomet Card: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Type: Musical Instrument +Attack: 180 +Weight: 25 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Minstrel +# +1946# +A Diva Violin that has mutated under the influence of the power of the labyrinth. +It is unclear what kind of material it is made of, and it is said that even similar weapons have different performance. +-------------------------- +Attack Range: 5 cells +-------------------------- +MATK +120 +-------------------------- +Refine Level +7: +Increases damage of Arrow Vulcan by 150%. +-------------------------- +Refine Level +9: +Increases damage of Arrow Vulcan by additional 50%. +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: Musical Instrument +Attack: 180 +Weight: 25 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Minstrel +# +1947# +A spear with evil spirit dwelling inside. +-------------------------- +MATK +100 +-------------------------- +For each Refine Level: +MATK +1 +-------------------------- +Type: Musical Instrument +Attack: 100 +Weight: 25 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Minstrel +# +1948# +A guitar that allows you to feel the power of nature. +-------------------------- +MATK +120 +-------------------------- +For each Refine Level: +VIT +1 +MaxHP +1% +-------------------------- +Refine Level +7: +Increases damage of Arrow Vulcan by 150%. +Decreases damage from Demi-Human race by 5%. +-------------------------- +Refine Level +9: +Increases damage of Arrow Vulcan by additional 50%. +Decreases damage from Demi-Human race by additional 5%. +-------------------------- +When equipped with Frontier Boots: +Decreases damage taken from Demi-Human race by 10%. +Decreases damage taken from Doram Players by 20%. + +Refine Level of Frontier Boots is +7 or higher: + +Refine Level of Guitar of Nature is +7 or higher: +MaxHP +10%, MaxSP +10% + +Refine Level of Guitar of Nature is +9 or higher: +Decreases damage taken from Normal class by 10%. +-------------------------- +Type: Musical Instrument +Attack: 140 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Minstrel +# +1950# +A strong, thick cord composed of tightly braided fiber. +-------------------------- +Type: Whip +Attack: 45 +Weight: 40 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 3 +Dancer classes +# +1951# +A strong, thick cord composed of tightly braided fiber. +-------------------------- +Type: Whip +Attack: 45 +Weight: 40 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 3 +Dancer classes +# +1952# +A standard whip that's perfect for adventuring Dancers. +-------------------------- +Type: Whip +Attack: 80 +Weight: 30 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 16 +Dancer classes +# +1953# +A standard whip that's perfect for adventuring Dancers. +-------------------------- +Type: Whip +Attack: 80 +Weight: 30 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 16 +Dancer classes +# +1954# +A whip made of a flexible wire attached to an iron handle. +-------------------------- +Type: Whip +Attack: 95 +Weight: 100 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 16 +Dancer classes +# +1955# +A whip made of a flexible wire attached to an iron handle. +-------------------------- +Type: Whip +Attack: 95 +Weight: 100 +Weapon Level: 2 +Tier: 3 +-------------------------- +Requirement: +Base Level 16 +Dancer classes +# +1956# +A whip with a spiked ball attached at the end. +-------------------------- +Type: Whip +Attack: 135 +Weight: 90 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Dancer classes +# +1957# +A whip with a spiked ball attached at the end. +-------------------------- +Type: Whip +Attack: 135 +Weight: 90 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Dancer classes +# +1958# +A whip fashioned out of an animal's tail that is said to bring good luck. +-------------------------- +LUK +3 +-------------------------- +Type: Whip +Attack: 105 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Dancer classes +# +1959# +A whip fashioned out of an animal's tail that is said to bring good luck. +-------------------------- +LUK +3 +-------------------------- +Type: Whip +Attack: 105 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Dancer classes +# +1960# +A fairly common and very normal whip. +-------------------------- +Type: Whip +Attack: 120 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Dancer classes +# +1961# +A fairly common and very normal whip. +-------------------------- +Type: Whip +Attack: 120 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Dancer classes +# +1962# +A hefty whip made from toughened snakeskin. +-------------------------- +DEX +5, AGI +1 +-------------------------- +Type: Whip +Attack: 100 +Weight: 40 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 44 +Dancer classes +# +1963# +Constructed purely of thorny stems from rosebushes. +-------------------------- +Random chance to inflict Poison status on the target when dealing physical damage. +-------------------------- +Type: Whip +Attack: 115 +Weight: 30 +Element: Poison +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 44 +Dancer classes +# +1964# +A powerful whip made of steel chain for heavy duty battles. +-------------------------- +Critical +5 +Perfect Dodge +2 +FLEE +10 +-------------------------- +Type: Whip +Attack: 135 +Weight: 70 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 44 +Dancer classes +# +1965# +A whip made from the tough leather of a Fire elemental monster. +-------------------------- +Type: Whip +Attack: 110 +Weight: 70 +Element: Fire +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Dancer classes +# +1966# +A whip created from enchanted icicles that are eternally frozen. +-------------------------- +Type: Whip +Attack: 110 +Weight: 70 +Element: Water +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Dancer classes +# +1967# +A whip fashioned out of tough tree roots that have been braided together. +-------------------------- +Type: Whip +Attack: 110 +Weight: 70 +Element: Earth +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Dancer classes +# +1968# +A skipping rope with wooden handles. +-------------------------- +Critical +20 +-------------------------- +Type: Whip +Attack: 120 +Weight: 40 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Dancer classes +# +1969# +A wire in which blade fragments are interwoven, making this whip as sharp as a sword. +-------------------------- +Random chance to inflict Bleeding status on the target when dealing physical damage. +-------------------------- +Type: Whip +Attack: 140 +Weight: 120 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 30 +Dancer classes +# +1970# +This whip is the best of the best. +-------------------------- +Increases damage of Arrow Vulcan and Slinging Arrow by 10%. +-------------------------- +Type: Whip +Attack: 150 +Weight: 110 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 65 +Dancer classes +# +1971# +An electric wire. Beware of electrick shock. +-------------------------- +Type: Whip +Attack: 110 +Weight: 70 +Element: Wind +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Dancer classes +# +1972# +A whip made from a slippery electric eel. +-------------------------- +INT +2, AGI +2 +-------------------------- +Random chance to auto-cast Level 3 Jupitel Thunder or Arrow Vulcan when dealing Physical Damages; +the skill Level of Arrow Vulcan that is cast depends on this weapon's Refine Level. +-------------------------- +Type: Whip +Attack: 100 +Weight: 200 +Element: Wind +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Gypsy +# +1973# +A whip made from the foot of an evil witch who lived in the sea to the west and was feared for her ability to siphon her enemy's energy. +-------------------------- +Recovers 5 SP for each defeated enemy. +-------------------------- +Random chance to auto-cast Level 3 Frost Nova on attacker when wielder receive physical attacks. +-------------------------- +Random chance to inflict Silence status to all enemies within a 11*11 cell area when dealing physical damage. +-------------------------- +Type: Whip +Attack: 110 +Weight: 150 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Gypsy +# +1974# +A whip that rewards the wearer when she does her best. +-------------------------- +Random chance to increase AGI when dealing physical attack, +the skill Level cast depends on this weapon's Refine Level. +-------------------------- +Type: Whip +Attack: 185 +Weight: 130 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Gypsy +# +1975# +Whip provided by Adventurer Guild for Brave adventurer. +-------------------------- +Increases damage by 50%. +-------------------------- +Type: Whip +Attack: 120 +Weight: 0 +Weapon Level: 1 +-------------------------- +Requirement: +Gypsy +# +1976# +The best of the best whips. +-------------------------- +Increases damage of Arrow Vulcan and Throw Arrow by 10%. +-------------------------- +Type: Whip +Attack: 150 +Weight: 110 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 65 +Dancer classes +# +1977# +An especially made whip for battling against Demihuman; this whip is strong enough to cut their flesh. +-------------------------- +DEX +2 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 95%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Whip +Attack: 50 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Dancer classes +# +1978# +An especially made whip for battling against Demihuman; this whip is strong enough to cut their flesh. +-------------------------- +DEX +2 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 95%. +-------------------------- +Increases damage of Arrow Vulcan by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Whip +Attack: 50 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Dancer classes +# +1979# +Strong and flexible whip made of Nepenthes's tentacle. +-------------------------- +INT +2 +-------------------------- +Random chance to inflict Frozen status when using Throw Arrow. +The chance doubles if the Refining Level is over 8. +-------------------------- +Type: Whip +Attack: 120 +Weight: 100 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Gypsy +# +1980# +A balance is attached at the tip of the whip. Anyone who gets a hit by this whip is knocked back. +-------------------------- +AGI +2, DEX +3 +-------------------------- +Add 2 cells knock back effect when using Throw Arrow. +-------------------------- +Add 3 cells knock back effect when using Arrow Vulcan. +-------------------------- +Type: Whip +Attack: 110 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Gypsy +# +1981# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 95%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +Refine Level +6: +Pierces physical defense of Demi-Human race by additional 5%. +Slaughter Lv 1 (Damage bonus of Slaughter increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +Using Arrow Vulcan has a chance of casting Level 5 Tarot Card of Fate. +-------------------------- +Type: Whip +Attack: 50 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Dancer classes +# +1982# +Rental Item +Phenomena Whip. +-------------------------- +Increases 25% damage with Throw Arrow skill. +-------------------------- +DEX +2 +-------------------------- +Type: Whip +Attack: 160 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Dancer classes +# +1983# +Rental Item +A whip with a spiked ball attached at the end. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 40%. +-------------------------- +Type: Whip +Attack: 170 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Dancer classes +# +1984# +A flexible whip made of renovated plant stem. +-------------------------- +MATK +50 +-------------------------- +Decreases Variable Casting Time of Deep Sleep Lullaby and Swing Dance by 2 secs. +SP cost ofeach skill decreased by 4 with every upgrade above Level 6. +-------------------------- +Type: Whip +Attack: 170 +Weight: 80 +Weapon Level: 3 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 102 +Wanderer +# +1985# +A whip of alluring fragrance made of a magical rose stem. +-------------------------- +INT +2, AGI -2 +MATK +130 +-------------------------- +Random chance to auto-cast Level 1 Siren's Voice when dealing physical damage. +-------------------------- +Type: Whip +Attack: 100 +Weight: 100 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 110 +Wanderer +# +1986# +A whip made by the Eden Group. It is suitable for those who have more advanced experience as Dancers. +-------------------------- +Type: Whip +Attack: 125 +Weight: 0 +Weapon Level: 3 +Refineable: No +Can be enchanted by: +Weapons Expert BKmoc_para01,112,79,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Dancer classes +# +1987# +Rental Item +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Random chance to inflict Blind status when dealing physical damage. +-------------------------- +Type: Whip +Attack: 100 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Dancer classes +# +1988# +A whip sculpted from Gray Shard to counter Magic Sword Tartanos. +It offers incredible power and magic at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +130 +-------------------------- +Low chance to drain 5% of attack into HP and SP. +-------------------------- +Increases Ranged Physical Damage by 20%. +-------------------------- +Drains 100 HP every 10 seconds. +-------------------------- +Drains 1000 HP when unequipped. +-------------------------- +Type: Whip +Attack: 200 +Weight: 220 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Wanderer +# +1989# +One of the tools used for rhythmic gymnastics representing the body mechanism. +-------------------------- +MATK +120 +Increases Attack Speed (Decreases After Attack Delay by 20%). +-------------------------- +Type: Whip +Attack: 150 +Weight: 30 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 130 +Wanderer +# +1990# +A mic whip used by Aigu. A powerful whip despite of its look. +-------------------------- +Decreases SP Consumption of Moonlight Serenade by 20. +-------------------------- +When equipped with Aigu's Floral Bracelet: +Increases damage of Arrow Vulcan by 200%. +Increases SP Consumption of Arrow Vulcan by 50. +-------------------------- +Type: Whip +Attack: 160 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Wanderer +# +1991# +Blue Whip which has destructive power. +-------------------------- +DEX +5, VIT +5 +-------------------------- +When VIP status active: +Long Range ATK +20% +Decreases SP Consumption by 10%. +-------------------------- +Type: Whip +Attack: 200 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Wanderer +# +1992# +A golden whip with brutal power. +-------------------------- +DEX +8, VIT +8 +-------------------------- +Type: Whip +Attack: 150 +Weight: 180 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 120 +Wanderer +# +1993# +An iron wire with a strong blade. +-------------------------- +Give more damage on high DEF enemy. +-------------------------- +Drains 3 SP on each attack. +-------------------------- +Indestructible in battle +-------------------------- +Type: Whip +Attack: 80 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 105 +Wanderer +# +1994# +This weapon contains a strange energy. +I feel that one of its benefits were sealed with a high cost. +-------------------------- +Type: Whip +Attack: 150 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Wanderer +# +1995# +Whip that emitting red aura. +-------------------------- +ATK increased by (RefineLv*RefineLv), up to +15 Refine Level. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Whip +Attack: 80 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Dancer classes +# +1996# +Wire imbued with Vicious Mind. +-------------------------- +MATK +50 +-------------------------- +Increases ATK by (Refinelv*Refinelv). +(up to +15 Refine Level) +-------------------------- +Increases MATK by (Refinelv*Refinelv)/2. +(up to +15 Refine Level) +-------------------------- +Type: Whip +Attack: 130 +Weight: 130 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 160 +Dancer classes +# +1997# +A certified kingdom equipment for adventurer. +-------------------------- +Increases ATK by (Refine*Refine*1.25) +-------------------------- +Type: Whip +Attack: 76 +Weight: 40 +Weapon Level: 3 +-------------------------- +Requirement: +Dancer classes +# +1998# +A whip given by the king. +It seems to have the effect of calming the souls of the dead. +-------------------------- +MATK +120 +-------------------------- +Increases Magical Damage against monsters in Bio Lab and Tomb of the Fallen by 40%. +-------------------------- +Refine Level +5: +Increases Magical Damage against monsters in Bio Lab and Tomb of the Fallen by additional 20%. +-------------------------- +For each Refine Level equal or above +6: +Increases Magical Damage against monsters in Bio Lab and Tomb of the Fallen by additional 15%. +-------------------------- +Refine Level +7: +Increases damage of Arrow Vulcan by 200%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Whip +Attack: 160 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Wanderer +# +1999# +A bell that used in a ritual, its tone can fascinate undead. +-------------------------- +When using Circle of Nature, for 60 seconds: Restore 1 SP every 4 seconds. +-------------------------- +Refine Level +10: +Bell of Vampire become indestructible. +-------------------------- +Type: Whip +Attack: 45 +Weight: 40 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 90 +Wanderer +# +2000# +A tremendously powerful Two-Handed Staff that can only be wielded by someone who is spiritually strong. +-------------------------- +INT +3, AGI +10 +MATK +280 +-------------------------- +Decreases Variable Casting Time of Mystical Amplification by 50%. +-------------------------- +For each 2 Refine Levels: +MATK +1% +Increases SP Consumption by 1%. +-------------------------- +Random chance to auto-cast Level 5 Jupitel Thunder on attacker when wielder receive physical attacks. +this chance can be increased by raising the weapon's Refine Level. +-------------------------- +Type: Two-Handed Staff +Attack: 130 +Weight: 250 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 80 +High Wizard +# +2001# +This staff is made of two parts that can be recombined to form a cross that will endow Holy power to its user. +-------------------------- +DEX +4 +MATK +210 +-------------------------- +Decreases damage taken from Undead elemental and Demon race monsters by 15%. +-------------------------- +When equipped with Spiritual Ring: +DEX +2 +MATK +10% +Decreases damage taken from Undead elemental and Demon race monsters by 10%. +-------------------------- +Type: Two-Handed Staff +Attack: 120 +Weight: 150 +Element: Holy +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Priest and Monk classes +# +2002# +A weapon that only a champion of battlefield can wield. +-------------------------- +MATK +210 +-------------------------- +Increases Magical Damage against monsters of Demi-Human race by 15%. +-------------------------- +Ignores magical defense of Demi-Human race by 25%. +-------------------------- +Refine Level +6: +Pierces magical defense of Demi-Human race by additional 5%. +[Destruction] Lv 1 (Damage bonus of Destruction increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +Using Level 10 Lord of Vermilion, Meteor Storm or Storm Gust has a chance of casting Level 10 Safety Wall. +-------------------------- +Type: Two-Handed Staff +Attack: 70 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Magician, Acolyte Class and Soul Linker +# +2003# +Two handed staff that seems to be possesing a tremendous power. The owner of the staff has to have a strong spiritual strength to use this staff properly. +-------------------------- +INT +3, AGI +10 +MATK +280 +-------------------------- +Decreases Variable Casting Time of Mystical Amplification by 50%. +-------------------------- +For each 2 Refine Levels: +MATK +1% +Increases SP Consumption by 1%. +-------------------------- +Random chance to auto-cast Level 5 Jupitel Thunder on attacker when wielder receive physical attacks. +this chance can be increased by raising the weapon's Refine Level. +-------------------------- +Type: Two-Handed Staff +Attack: 130 +Weight: 250 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +High Wizard +# +2004# +This piece's upper part is decorated with a golden dragon and a crystal with strong magical power compressed into it. It looks nice, but it's too heavy to easily carry around. +-------------------------- +INT +3 +MATK +240 +MaxHP +300 +-------------------------- +For each 2 Refine Levels: +INT +1 +MaxHP +50 +-------------------------- +Random chance to increase MATK by 12% and Reduces SP cost of all skills by 20% for 5 seconds when dealing magical damage. +-------------------------- +Type: Two-Handed Staff +Attack: 30 +Weight: 100 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 50 +Transcendent Magician +# +2005# +The image of the Sacred Goddess of Light is carved onto this long staff. +-------------------------- +VIT +2, INT +6 +MATK +220 +-------------------------- +Random chance to restore SP by 200 when using Heal. +-------------------------- +For each Refine Level: +MATK +1% +-------------------------- +Type: Two-Handed Staff +Attack: 30 +Weight: 100 +Element: Holy +Weapon Level: 3 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 50 +Transcendent Acolyte +# +2006# +A staff that possesses holy force and holds bright sunshine in it. +-------------------------- +INT +6 +MATK +18% +MaxSP +150 +-------------------------- +Type: Two-Handed Staff +Attack: 80 +Weight: 190 +-------------------------- +Requirement: +Base Level 60 +Magician +# +2007# +A magic staff charged with whirling power of wind. +-------------------------- +INT +3 +MATK +230 +-------------------------- +Increases damage of Jupitel Thunder by 12%. +-------------------------- +When equipped with Goldenrod Robe, Goldenrod Shoes and Goldenrod Orb: +Increases Magical Damage with Wind element by 40%. +Decreases Magical Damage with Earth element by 30%. +Increases damage taken from Earth elemental attacks by 50%. +-------------------------- +Type: Two-Handed Staff +Attack: 30 +Weight: 90 +Element: Wind +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Warlock +# +2008# +A magic staff charged with freezing power of water. +-------------------------- +INT +3 +MATK +230 +-------------------------- +Increases damage of Cold Bolt and Frost Diver by 10%. +-------------------------- +When equipped with Aqua Robe, Aqua Shoes and Aqua Orb: +Increases Magical Damage with Water element by 40%. +Decreases Magical Damage with Wind element by 30%. +Increases damage taken from Wind elemental attacks by 50%. +-------------------------- +Type: Two-Handed Staff +Attack: 30 +Weight: 90 +Element: Water +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Warlock +# +2009# +A magic staff charged with blazing power of fire. +-------------------------- +INT +3 +MATK +230 +-------------------------- +Increases damage of Fire Bolt and Fire Ball by 10%. +-------------------------- +When equipped with Crimson Robe, Crimson Shoes and Crimson Orb: +Increases Magical Damage with Fire element by 40%. +Decreases Magical Damage with Water element by 30%. +Increases damage taken from Water elemental attacks by 50%. +-------------------------- +Type: Two-Handed Staff +Attack: 30 +Weight: 90 +Element: Fire +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Warlock +# +2010# +A magic staff charged with massive power of Earth. +-------------------------- +INT +3 +MATK +230 +-------------------------- +Increases damage of Earth Spike and Heaven's Drive by 10%. +-------------------------- +When equipped with Forest Robe, Forest Shoes and Forest Orb: +Increases Magical Damage with Earth element by 40%. +Decreases Magical Damage with Fire element by 30%. +Increases damage taken from Fire elemental attacks by 50%. +-------------------------- +Type: Two-Handed Staff +Attack: 30 +Weight: 90 +Element: Earth +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Warlock +# +2011# +A magic staff charged with massive power of wind. +-------------------------- +INT +5 +MATK +270 +-------------------------- +Increases damage of Jupitel Thunder by 30%. +-------------------------- +When equipped with Goldenrod Robe, Goldenrod Shoes and Goldenrod Orb: +Increases Magical Damage with Wind element by 60%. +Decreases Magical Damage with Earth element by 60%. +Increases damage taken from Earth elemental attacks by 50%. +-------------------------- +Type: Two-Handed Staff +Attack: 30 +Weight: 90 +Element: Wind +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 130 +Warlock +# +2012# +A magic staff charged with freezing power of water. +-------------------------- +INT +5 +MATK +270 +-------------------------- +Increases damage of Cold Bolt and Frost Driver by 30%. +-------------------------- +When equipped with Aqua Robe, Aqua Shoes and Aqua Orb: +Increases Magical Damage with Water element by 60%. +Decreases Magical Damage with Wind element by 60%. +Increases damage taken from Wind elemental attacks by 50%. +-------------------------- +Type: Two-Handed Staff +Attack: 30 +Weight: 90 +Element: Water +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 130 +Warlock +# +2013# +A magic staff charged with blazing power of fire. +-------------------------- +INT +5 +MATK +270 +-------------------------- +Increases damage of Fire Bolt and Fire Ball by 30%. +-------------------------- +When equipped with Crimson Robe, Crimson Shoes and Crimson Orb: +Increases Magical Damage with Fire element by 60%. +Decreases Magical Damage with Water element by 60%. +Increases damage taken from Water elemental attacks by 50%. +-------------------------- +Type: Two-Handed Staff +Attack: 30 +Weight: 90 +Element: Fire +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 130 +Warlock +# +2014# +A magic staff charged with massive power of Earth. +-------------------------- +INT +5 +MATK +270 +-------------------------- +Increases damage of Earth Spike and Heaven's Drive by 30%. +-------------------------- +When equipped with Forest Robe, Forest Shoes and Forest Orb: +Increases Magical Damage with Earth element by 60%. +Decreases Magical Damage with Fire element by 60%. +Increases damage taken from Fire elemental attacks by 50%. +-------------------------- +Type: Two-Handed Staff +Attack: 30 +Weight: 90 +Element: Earth +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 130 +Warlock +# +2015# +Staff that is coated by Oridecon and Gold with perfect Level. +-------------------------- +MATK +70 +-------------------------- +When equipped by Wizard classes: +MATK +30 +-------------------------- +When equipped by Sage classes: +MATK +20 +-------------------------- +For each Refine Level: +MATK +10 +Increases Healing skills effectiveness by 1%. +-------------------------- +For each 10 Base Level above 70: +MATK +10 +-------------------------- +Type: Two-Handed Staff +Attack: 50 +Weight: 100 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Magician, Acolyte and Soul Linker +# +2016# +**Stats during WoE & PVP +MATK +220 +Increases Magical Damage against Players by 25% and bypasses 25% magic defense. +-------------------------- +Refine Level +6: +MATK +15% +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 50%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Type: Two-Handed Staff +Attack: 110 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 95 +Magician, Acolyte and Soul Linker +# +2017# +This staff is made of two parts that can be recombined to form a cross that will endow Holy power to its user. +-------------------------- +DEX +4 +MATK +210 +-------------------------- +Decreases damage taken from Undead elemental and Demon race monsters by 15%. +-------------------------- +When equipped with Spiritual Ring: +DEX +2 +MATK +10% +Decreases damage taken from Undead elemental and Demon race monsters by 10%. +-------------------------- +Type: Two-Handed Staff +Attack: 120 +Weight: 150 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 70 +Priest and Monk classes +# +2018# +Staff coated with metal +-------------------------- +Int + 3 +MATK +105 +-------------------------- +Type: Two-Handed Staff +Attack: 60 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Magician, Acolyte and Soul Linker +# +2019# +Rental Item +MATK +130 +-------------------------- +*Effects in WoE TE area +Increases Magical Damage against Players by 20%. +Random chance to inflict Stun status when dealing magical damage. +Increases Healing skills effectiveness by 5%. +-------------------------- +Type: Two-Handed Staff +Attack: 50 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Novice, Wizard, Acolyte and Soul Linker +# +2020# +Aside from the potent mana in it, this staff named after Jormungand is famous for its ability to poison the enemy. +-------------------------- +INT +20 +MATK +280 +-------------------------- +Random chance to inflict Poison status on the target when dealing magical damage. +-------------------------- +Random chance to inflict Deadly Poison status on the target when dealing physical damage. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Staff +Attack: 200 +Weight: 300 +Element: Poison +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 90 +Wizards, Sage and Soul Linker +# +2021# +Aside from the potent mana in it, this staff is famous for its ability to Silence the enemy, preventing them from casting spells. +-------------------------- +INT +25, DEX +25 +MATK +320 +-------------------------- +Random chance to auto-cast Level 1 Silentium when dealing magical damage. +-------------------------- +Random chance to inflict Poison status on the target when dealing magical damage. +-------------------------- +Random chance to inflict Silence status on attacker when receiving physical damage. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Staff +Attack: 100 +Weight: 200 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Warlock +# +2022# +It seems to be old because of how dusty it is. An ancient language is carved into the wood of the handle. +-------------------------- +INT +20 +MATK +300 +-------------------------- +Type: Two-Handed Staff +Attack: 100 +Weight: 100 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 150 +High Wizard +# +2023# +A Two-Handed Staff sculpted from Gray Shard to counter Magic Sword Tartanos. +It offers incredible power and magic at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +250 +-------------------------- +Increases Healing skills effectiveness by 18%. +-------------------------- +Magical attack has chance to restore HP and SP. +-------------------------- +Drains 100 HP every 10 seconds. +-------------------------- +Drains 1000 HP as the item is unequipped. +-------------------------- +Type: Two-Handed Staff +Attack: 120 +Weight: 140 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Magician and Acolyte +# +2024# +This weapon contains a strange energy. +I feel that one of its benefits were sealed with a high cost. +-------------------------- +MATK +170 +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Staff +Attack: 30 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Warlock and Sorcerer +# +2025# +Two-Handed staff that emitting red aura. +-------------------------- +INT +5 +MATK +150 +-------------------------- +MATK increased by (RefineLv*RefineLv), up to +15 Refine Level. +-------------------------- +For each 10 Base Level above 70: +MATK +5 +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Staff +Attack: 100 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Wizard and Soul Linker classes +# +2026# +Staff imbued with Vicious Mind. +-------------------------- +INT +6 +MATK +200 +-------------------------- +Increases MATK by (Refinelv*Refinelv). +(up to +15 Refine Level) +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Staff +Attack: 100 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 160 +Warlock and Sorcerer +# +2027# +Staff once used by famous Archmage. His magic can prevent flower from being wilted. +-------------------------- +INT +5 +MATK +320 +-------------------------- +For each Refine Level: +Decreases After Skill Delay by 1%. +-------------------------- +For each 2 Refine Levels: +MATK +1% +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Staff +Attack: 150 +Weight: 150 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 170 +Warlock +# +2028# +A wand created for reading, by a Vibrio maniac magician to read as many books as possible in a limited time. +-------------------------- +MATK +24 +-------------------------- +Decreases SP Consumption of Reading Spell Book by 24. +-------------------------- +For each 3 Refine Levels: +Ignores magical defense of all enemies by 8%. +-------------------------- +For each Level of Freezing Spell: +Decreases Variable Casting Time by 1 second. +-------------------------- +When Level 2 Release is learned: +Decreases Variable Casting Time of Summon Fire Ball, Summon Water Ball, Summon Stone Ball and Summon Lightning Ball by 1 second. +-------------------------- +When Release is used, for 1 second: +For each Level of Radius: +Increases Magical Damage against all enemies by 8%. + +For each Level of Mystical Amplification: +MATK +24 +-------------------------- +Type: Two-Handed Staff +Attack: 180 +Weight: 250 +Element: Ghost +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 110 +Warlock +# +2029# +A wand that has won against the genie and its followers. +-------------------------- +MATK +155 +-------------------------- +Refine Level +5: +Increases Damage against monsters of Demon God Morocc monster by 40%. +Decreases damage taken from Demon God Morocc monster by 10%. +-------------------------- +Refine Level +7: +Increases Damage against monsters of Demon God Morocc monster by additional 60%. +Decreases damage taken from Demon God Morocc monster by additional 20%. +-------------------------- +Refine Level +9: +Increases Damage against monsters of Demon God Morocc monster by additional 80%. +Decreases damage taken from Demon God Morocc monster by additional 40%. +-------------------------- +Type: Two-Handed Staff +Attack: 30 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Novice, Magician, Acolyte and Soul Linker +# +2030# +A certified kingdom equipment for adventurer. +-------------------------- +MATK +135 +Increases MATK by (Refine*Refine*1.25) +-------------------------- +Type: Two-Handed Staff +Attack: 95 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Magician and Soul Linker classes +# +2031# +Equipment designed to survive Malango Island. +Maran enchantment can be performed, and it is an excellent product that can be sold at an unexpectedly high price. +-------------------------- +MATK +155 +-------------------------- +Increases Damage against monsters in Malangdo Culvert and Octopus Cave by 50%. +Decreases damage taken from Malangdo Culvert and Octopus Cave monsters by 30%. +-------------------------- +Type: Two-Handed Staff +Attack: 30 +Weight: 80 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Novice, Acolyte, Magician and Soul Linker +# +2032# +Two-handed staff received from the king. +It seems to have the effect of calming the souls of the dead. +-------------------------- +MATK +230 +-------------------------- +Increases Magical Damage against monsters in Bio Lab and Tomb of the Fallen by 40%. +-------------------------- +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by 5%. +-------------------------- +Refine Level +5: +Increases Magical Damage against monsters in Bio Lab and Tomb of the Fallen by additional 20%. +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by additional 5%. +-------------------------- +For each Refine Level equal or above +6: +Increases Magical Damage against monsters in Bio Lab and Tomb of the Fallen by additional 15%. +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by additional 1% +-------------------------- +Type: Two-Handed Staff +Attack: 100 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Warlock +# +2033# +A Refined metal staff that made for a skilled adventurer. +-------------------------- +MATK +95 +-------------------------- +Increases damage of Soul Expansion by 10%. +-------------------------- +For each Refine Level: +MATK +8 +-------------------------- +For each 10 Base Level: +MATK +7 (up to Base Level 150) +-------------------------- +When equipped by Warlock: +MATK +20 +-------------------------- +When equipped by Sorcerer: +MATK +15 +-------------------------- +Type: Two-Handed Staff +Attack: 60 +Weight: 0 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Magician, Acolyte and Soul Linker +# +2034# +A dark staff made out of the regrets of people whose died in battlefield. +-------------------------- +MATK +210 +-------------------------- +Increases Magical Damage against monsters of Demi-Human race by 25%. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +For each Refine Level: +Ignores magical defense of Demi-Human race by 5%. +-------------------------- +Refine Level +5: +Increases Magical Damage against monsters of Demi-Human race by 10%. +Decreases damage taken from Demi-Human race by additional 10%. +-------------------------- +Refine Level +7: +Increases Magical Damage against monsters of Demi-Human race by 10%. +Decreases damage taken from Demi-Human race by additional 10%. +Ruin Level 1. +-------------------------- +Refine Level +9: +Increases damage of Comet by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Staff +Attack: 70 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Warlock, Sorcerer, Archbishop and Sura +# +2035# +A weapon of unknown origin that contains the magic of the labyrinth. +It is unclear what kind of material it is made of, and the same weapons have different performance. +-------------------------- +MATK +270 +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by 2%. +-------------------------- +Refine Level +7: +MATK +4% +-------------------------- +Refine Level +7: +MATK +4% +-------------------------- +When equipped with Labyrinth Baphomet Card: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Type: Two-Handed Staff +Attack: 120 +Weight: 240 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Super Novice, 3rd Magician and 3rd Acolyte classes +# +2036# +A Diva Staff that has mutated under the influence of the power of the labyrinth. +It is unclear what kind of material it is made of, and the same weapons have different performance. +-------------------------- +Attack Range: 5 cells +-------------------------- +MATK +270 +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by 2%. +-------------------------- +Refine Level +7: +MATK +4%. +-------------------------- +Refine Level +9: +MATK +4%. +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of inflicted damage as SP. +-------------------------- +Type: Two-Handed Staff +Attack: 120 +Weight: 240 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Super Novice, 3rd Magician and 3rd Acolyte classes +# +2037# +A spear with evil spirit dwelling inside. +-------------------------- +MATK +200 +-------------------------- +For each Refine Level: +MATK +1 +-------------------------- +Type: Two-Handed Staff +Attack: 100 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Super Novice, Warlock, Sorcerer, Sura and Archbishop +# +2038# +Staff once used by famous Archmage. His magic can prevent flower from being wilted. +-------------------------- +MATK +210 +-------------------------- +When Magic Crusher is mastered: +Increases Magical Damage with Fire element by 20%. +-------------------------- +For each Refine Level: +Increases Magical Damage with Fire element by additional 3%. +Ignores magical defense of enemies by 5%. +-------------------------- +When Meteor Storm is used: +Random chance to increase damage inflicted with Meteor Storm by 60% for 5 seconds. + +For each Refine Level: +Increase the trigger chance. +-------------------------- +When equipped with Immortal Corps Dog Tag: +For each Refine Level of Sunflower Boy: +INT +2 +Increases damage of Crimson Rock by 1%. + +Refine Level of Sunflower Boy is +9 or higher: +Magical attacks have a random chance to increase Magical Damage with Fire element by 50% for 10 seconds. +Recover 500HP when defeating monsters. +-------------------------- +Type: Two-Handed Staff +Attack: 40 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Warlock +# +2039# +Rumored to have been crafted by an ancient wizard, this staff contains awesome energies. +-------------------------- +INT +6, DEX +2. +MATK +250 +-------------------------- +For each 2 Refine Levels: +INT +1, DEX +1.(Up to Refine Level +10) +-------------------------- +Type: Two-Handed Staff +Attack: 150 +Weight: 240 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Warlock +# +2040# +A staff for warlock whose excel at magic. +When equipped with Enhanced Time Keeper Armor, will makes wearer's body more agile. +-------------------------- +MATK +200 +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Earth Strain by 20%. +-------------------------- +For each 10 Base Level: +MATK +6 (up to Base Level 160). +-------------------------- +Refine Level +7: +For each Level of Storm Gust: +MATK +1% +-------------------------- +When equipped with Enhanced Time Keeper Hat, Enhanced Time Keeper Robe, nhanced Time Keeper Manteau, Enhanced Time Keeper Boots: +ASPD +2, +MaxHP and MaxSP +10% + +For every 10 Base VIT: +Decreases damage taken from Neutral elemental attacks by 3%. +(up to Base VIT 100) + +For every 10 Base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +(up to Base AGI 100) + +For every 10 Base DEX: +HIT +3 +(up to Base DEX 100) + +For every 10 Base LUK: +Critical +3 +(up to Base LUK 100) +-------------------------- +Type: Two-Handed Staff +Attack: 60 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Warlock +# +2041# +A wand used by Gilant, who was called a rare witch. +The winding dragon amplifies the magical power of fire and wind and enhances its power. +-------------------------- +MATK +350 +INT +10 +DEX +10 +-------------------------- +Decreases Variable Casting Time by 30%. +-------------------------- +For each Level of Fire Walk: +Increases Magical Damage with Fire element by 10%. +-------------------------- +For each Level of Electric Walk: +Increases Magical Damage with Wind element by 10%. +-------------------------- +For each Refine Level: +Increases Magical Damage with Fire and Wind element by additional 5%. +Ignore magic defense of enemies by 5%. +Increases damage of Fire Walk and Electric Walk by 30%. +-------------------------- +Refine Level +7: +Inflicts Curse status when enemies are hit by Fire Walk. +Inflicts Silence status when enemies are hit by Electric Walk. +-------------------------- +Refine Level +9: +Increases damage of Fire Walk and Electric Walk by 100%. +-------------------------- +Refine Level +10: +Decreases Fixed Casting Time by 70%. +-------------------------- +When equipped with Necromancer's Manteau: +MATK +5% +Decreases damage taken from Fire and Wind elemental attacks by 20%. +-------------------------- +When equipped with Necromancer's Dress: +Enables the use Level 1 Increase Agility. + +For each Refine Level of Witch's Thunder Flame Wand: +Increases damage of Electric Walk and Fire Walk by additional 30%. +Recovers 50HP when defeating monsters. + +Refine Level of Witch's Thunder Flame Wand is +7 or higher: +Enables the use of Increase Agility, skill level based on the refine level. +-------------------------- +Type: Two-Handed Staff +Attack: 200 +Weight: 270 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Sorcerer +# +2042# +Wizard staff with the strength to hold the power of Nive. +-------------------------- +MATK +180 +-------------------------- +Base Level at least 175: +ATK +5%, MATK +5% +-------------------------- +When equipped with Neev Barrette: +For each 10 base STR: +ATK +1%. + +For each 10 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 1%). + +For each 10 base VIT: +MaxHP +1% + +For each 10 base INT: +MATK +20 + +For each 10 base DEX: +Decreases Variable Casting Time by 1%. + +For each 10 base LUK: +Critical +1 + +For each Refine Level of Neev Wizardy Staff: +ATK +20, MATK +20 +-------------------------- +Type: Two-Handed Staff +Attack: 60 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Warlock +# +2043# +An arc wand that has the strength to hold the power of Nive. +-------------------------- +MATK +160 +-------------------------- +Base Level at least 175: +ATK +5%, MATK +5% +-------------------------- +When equipped with Neev Barrette: +For each 10 base STR: +ATK +1%. + +For each 10 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 1%). + +For each 10 base VIT: +MaxHP +1% + +For each 10 base INT: +MATK +20 + +For each 10 base DEX: +Decreases Variable Casting Time by 1%. + +For each 10 base LUK: +Critical +1 + +For each Refine Level of Neev Arc Wand: +ATK +20, MATK +20 +-------------------------- +Type: Two-Handed Staff +Attack: 80 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Sorcerer +# +2044# +A Holy walking stick that has the strength to hold the power of Nive. +-------------------------- +MATK +170 +-------------------------- +Base Level at least 175: +ATK +5%, MATK +5% +-------------------------- +When equipped with Neev Barrette: +For each 10 base STR: +ATK +1%. + +For each 10 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 1%). + +For each 10 base VIT: +MaxHP +1% + +For each 10 base INT: +MATK +20 + +For each 10 base DEX: +Decreases Variable Casting Time by 1%. + +For each 10 base LUK: +Critical +1 + +For each Refine Level of Neev Holy Stick: +ATK +20, MATK +20 +-------------------------- +Type: Two-Handed Staff +Attack: 120 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Archbishop +# +2045# +Divine cloth with the strength to hold the power of Nive. +-------------------------- +MATK +110 +-------------------------- +Base Level at least 175: +ATK +5%, MATK +5% +-------------------------- +When equipped with Neev Barrette: +For each 10 base STR: +ATK +1%. + +For each 10 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 1%). + +For each 10 base VIT: +MaxHP +1% + +For each 10 base INT: +MATK +20 + +For each 10 base DEX: +Decreases Variable Casting Time by 1%. + +For each 10 base LUK: +Critical +1 + +For each Refine Level of Neev Divine Cross: +ATK +20, MATK +20 +-------------------------- +Type: Two-Handed Staff +Attack: 150 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Sura +# +2046# +Staff specially made for beginner warlocks. +It will show it's true ability when equipped together with Beginner Armor set. +-------------------------- +Indestructible in battle +-------------------------- +MATK +170 +MATK +5% +-------------------------- +Refine Level +7: +Increases damage of Crimson Rock by 15%. +-------------------------- +When equipped with Beginner's Hat, Beginner's Suit, Beginner's Manteau, Beginner's Boots and Beginner's Ring: +For each 10 Base Level: +MATK +3 (up to Base Level 150) +Decreases Variable Casting Time by 15%. +Increases Fire elemental magical damage by 5%. +-------------------------- +Type: Two-Handed Staff +Attack: 70 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Warlock +# +2048# +Metal staff made from stainless steel. +It is said that an ancient wizard made it. +It resonates with Ancient Hero's Boots. +-------------------------- +MATK +200 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Earth Strain by 12%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Decreases Earth Strain skill cooldown by 1 second. +-------------------------- +When equipped with Ancient Hero's Boots: +3% chance to increase INT +20 and MATK +15% for 7 sec when dealing magical damage. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Staff +Attack: 100 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Warlock +# +2049# +Two-Handed staff with crystal that contains 2 elements, Fire and Water. +-------------------------- +INT +7 +MATK +300 +-------------------------- +For each 2 Refine Levels: +MATK +1% +-------------------------- +Refine Level +7: +Increases damage of Fire, Earth, Water and Wind elementals magic attack by 5%. +-------------------------- +Refine Level +9: +Increases damage of Fire, Earth, Water and Wind elementals magic attack by 10%. +-------------------------- +Refine Level +11: +Decreases damage taken from all size monsters by 20%. +-------------------------- +Refine Level +13: +Decreases After Skill Delay by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Staff +Attack: 110 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 175 +Magician, Acolyte and Soul Linker classes +# +2051# +A staff made for survival purposes. +-------------------------- +DEX +2 +INT +2 +MATK +240 +MaxHP +600 +-------------------------- +For each 2 Refine Levels: +MATK +1% +-------------------------- +Refine Level +7: +Increases Magical Damage against monsters of Small and Medium size by 15%. +-------------------------- +Refine Level +9: +Decreases Physical and Magical Damage taken from Small and Medium size by 15%. +-------------------------- +Refine Level +11: +Decreases Physical and Magical Damage taken from Fire, Wind, Water and Earth elemental by 15%. +-------------------------- +When equipped with Illusion Survivor's Manteau: +ATK +50 +-------------------------- +Refine Level of Illusion Survivor's Rod and Illusion Survivor's Manteau each is +7 or higher: +Increases Magical Damage with Fire, Wind, Water and Earth element by 10%. +-------------------------- +Total Refine Level of entire set at least +18: +Increases Magical Damage against monsters of Fire, Wind, Water and Earth elemental by 15%. +-------------------------- +Total Refine Level of entire set at least +22: +Decreases After Skill Delay by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Staff +Attack: 100 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Magician, Acolyte and Soul Linker classes +# +2053# +A weapon that has been transformed by the magical power of a stranger. +Even if they look the same, their performance is different. +-------------------------- +MATK +270 +-------------------------- +Decreases damage taken from Players by 30%. +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by 2%. +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by 5%. +-------------------------- +Refine Level +9: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases Physical Damage against enemies of all elements by 10%. +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Staff +Attack: 120 +Weight: 240 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +Super Novice, 3rd Magician and 3rd Acolyte classes +# +2054# +Stainless steel metal staff. +It is said that a wizard of the past created it. +-------------------------- +MATK +200 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Earth Strain by 12%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Decreases Earth Strain skill cooldown by 1 second. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Staff +Attack: 100 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 99 +Warlock +# +2055# +Staff with a miraculous aura. +-------------------------- +MATK +270 +-------------------------- +Increases damage of Ghost elemental magic attack by 5%. +-------------------------- +For each Refine Level: +MATK +4 +-------------------------- +Refine Level +9: +Increases damage of Soul Strike, Napalm Vulcan and Soul Expansion by 20%. +-------------------------- +Refine Level +11: +Increases damage of Soul Strike and Napalm Vulcan by 30%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Staff +Attack: 100 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Warlock +# +2056# +Staff that can increase damage of Gravitation Field. +-------------------------- +MATK +280, +-------------------------- +Increases damage of Neutral elemental magic attack by 5%. +-------------------------- +For each Refine Level: +MATK +4 +-------------------------- +Refine Level +9: +Increases damage of Gravitation Field and Drain Life by 30%. +-------------------------- +Refine Level +11: +Decreases Gravitation Field skill cooldown by 2 seconds. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Staff +Attack: 110 +Weight: 130 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Warlock +# +2057# +Staff used in prayer ritual. +-------------------------- +MATK +240 +-------------------------- +Increases damage of Holy elemental magic attack by 5%. +-------------------------- +For each Refine Level: +MATK +4 +-------------------------- +Refine Level +9: +Increases damage of Adoramus by 30%. +-------------------------- +Refine Level +11: +Decreases Physical and Magical Damage taken from all size monsters by 25%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Staff +Attack: 100 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Warlock +# +2058# +A detector used to find special metals in the Einbech mine. +After the magic amplification effect was added to a lot of cases other than the intended use. +-------------------------- +MATK +330 +MATK +10% +-------------------------- +Indestructible in battle +-------------------------- +Refine Level +7: +MATK +60 +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Fire element by 15%. +Magical attacks have a chance to increase magical damage against all size enemies by 20% for 10 seconds. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 20%. +-------------------------- +Type: Two-Handed Staff +Attack: 180 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Warlock +# +2060# +A ceremonial staff used by the Glastheim Mages. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +Indestructible in battle +-------------------------- +MATK +270 +MATK +5% +-------------------------- +For each Refine Level: +MATK +5 +-------------------------- +Refine Level +9: +Increases damage of Chain Lightning and Earth Strain by 20%. +-------------------------- +Refine Level +11: +Increases Magical Damage against monsters of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +MATK +30 +Magical attacks have a chance to increase Magical Damage with Wind and Earth element by 10% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Magical Damage against Holy and Undead elemental by 20%. +-------------------------- +Type: Two-Handed Staff +Attack: 100 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Warlock +# +2101# +A square shield that is small, yet effective in combat. +-------------------------- +Type: Shield +Defense: 20 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +2102# +A square shield that is small, yet effective in combat. +-------------------------- +Type: Shield +Defense: 20 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +2103# +A rounded shield that readily absorbs impact from attacks. +-------------------------- +Type: Shield +Defense: 40 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Acolyte, Merchant, Thief, Bard and Dancer +# +2104# +A rounded shield that readily absorbs impact from attacks. +-------------------------- +Type: Shield +Defense: 40 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Acolyte, Merchant, Thief, Bard and Dancer +# +2105# +A well crafted shield which most kinds of attack cannot penetrate. +-------------------------- +Type: Shield +Defense: 60 +Weight: 130 +Armor Level: 1 +-------------------------- +Requirement: +Swordman classes +# +2106# +A well crafted shield which most kinds of attack cannot penetrate. +-------------------------- +Type: Shield +Defense: 60 +Weight: 130 +Armor Level: 1 +-------------------------- +Requirement: +Swordman classes +# +2107# +A shield with a surface constructed of mirror that might reflect harmful magic. +-------------------------- +MDEF +5 +-------------------------- +Type: Shield +Defense: 45 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman and Star Gladiator +# +2108# +A shield with a surface constructed of mirror that might reflect harmful magic. +-------------------------- +MDEF +5 +-------------------------- +Type: Shield +Defense: 45 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman and Star Gladiator +# +2109# +A magic book filled with long, impractical spells that is so large, it can actually be used just like a shield. +-------------------------- +INT +1 +MDEF +2 +-------------------------- +When equipped with Pocket Watch & Monocle: +MATK +7% +Increases HP and SP Recovery Rate by 15%. +-------------------------- +Type: Shield +Defense: 25 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Magician and Soul Linker classes +# +2110# +A blessed guard with God's symbol engraved on it. +-------------------------- +VIT +2 +MDEF +2 +-------------------------- +Type: Shield +Defense: 110 +Weight: 140 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 68 +Crusader +# +2111# +A symbolic shield, rumored to have been given from God to his messenger. +-------------------------- +INT +2, VIT +3 +MDEF +3 +-------------------------- +Indestructible in battle +-------------------------- +Type: Shield +Defense: 120 +Weight: 160 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 83 +Crusader +# +2112# +An exclusive shield for new adventurers. +-------------------------- +Type: Shield +Defense: 20 +Weight: 0.1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Novice +# +2113# +A cute shield made out of a special metal for the Novice class. +-------------------------- +Decreases damage taken from all elemental attacks, except Neutral element, by 20%. +-------------------------- +Type: Shield +Defense: 20 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +Novice +# +2114# +A stone shield which Thor obtained by killing Hrungnir, king of giants. +It possesses the powers of giants which rival the might of the gods. +-------------------------- +Decreases damage taken from Large size by 5%. +-------------------------- +When equipped with Magni's Cap and Odin's Blessing: +STR +2 +DEF +5 +MDEF +5 +When equipped by Swordman classes: +DEF +6 +-------------------------- +Type: Shield +Defense: 45 +Weight: 150 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +All Jobs except Novice +# +2115# +A shield used by Gna, messenger of Freya, when she served as a Valkyrie. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Water, Fire, Undead and Shadow elemental attacks by 20%. +-------------------------- +When equipped with Fricca's Circlet and Odin's Blessing: +DEF +2 +MDEF +5 +All Refine Levels of the Shield and Circlet adds to MDEF Instead of DEF. +-------------------------- +Type: Shield +Defense: 80 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +All Jobs except Novice +# +2116# +Super Novice Guardian Angel's shield which contains holy power that can nullify evil. +-------------------------- +Decreases damage taken from Demon race by 5%. +-------------------------- +When equipped with Angel's Kiss, Angelic Protection, Angelic Cardigan and Angel's Reincarnation: +MaxHP +900 +MaxSP +100 +Random chance to auto-cast Level 1 Assumptio when receiving physical attacks. +-------------------------- +Type: Shield +Defense: 30 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +Novice +# +2117# +A wrist protector, designed exclusively for the Ninja class, that is padded with a steel plate for increased defense and durability. +-------------------------- +Type: Shield +Defense: 50 +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +Ninja +# +2118# +A wrist protector, designed exclusively for the Ninja class, that is padded with a steel plate for increased defense and durability. +-------------------------- +Type: Shield +Defense: 50 +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +Ninja +# +2119# +A wrist protector, designed exclusively for the Ninja class, that has been enhanced with high Magic Defense by a gifted artisan. +-------------------------- +MDEF +5 +-------------------------- +Type: Shield +Defense: 45 +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Ninja +# +2120# +A wrist protector, designed exclusively for the Ninja class, that has been enhanced with high Magic Defense by a gifted artisan. +-------------------------- +MDEF +5 +-------------------------- +Type: Shield +Defense: 45 +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Ninja +# +2121# +A spellbook that is impractically huge and more useful as a shield than as a spell reference. +-------------------------- +INT +1 +MDEF +2 +-------------------------- +When equipped with Pocket Watch & Monocle: +MATK +7% +Increases HP and SP Recovery Rate by 15%. +-------------------------- +Type: Shield +Defense: 25 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Magician and Soul Linker classes +# +2122# +A magnificent platinum shield that is rumored to be able to reflect harmul magic. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Medium and Large size by 15%. +-------------------------- +Decreases damage taken from Undead race by 10%. +-------------------------- +Adds 40% chance of reflecting magical attacks for 2 seconds when wielder receive magical attack. +-------------------------- +Type: Shield +Defense: 95 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 68 +All Transcendent classes except Novice +# +2123# +A shiny, round steel plate used for serving food. +-------------------------- +MDEF +2 +-------------------------- +Adds 5% chance of reflecting magical attack. +-------------------------- +When equipped with Orlean's Glove: +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Shield +Defense: 75 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 55 +All Transcendent classes except Novice +# +2124# +A rough shield covered in spikes that deters rushing enemies. +-------------------------- +MDEF +2 +-------------------------- +When equipped with Bison Horn: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Reflect melee physical attack by 5%. +-------------------------- +Type: Shield +Defense: 85 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 55 +All Transcendent classes except Novice +# +2125# +A massive shield that can withstand any attack, but it lacks shock absorption. +-------------------------- +Prevents knock-back effect. +-------------------------- +Increases damage taken from Physical and Magical attacks by 20%. +-------------------------- +Type: Shield +Defense: 90 +Weight: 250 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 75 +Transcendent Swordman, Merchant and Thief +# +2126# +An ivory shield with mysterious aura. +-------------------------- +MDEF +2 +-------------------------- +Reflects 5% melee physical attacks. +-------------------------- +Adds 2% chance of reflecting magical attack. +-------------------------- +Type: Shield +Defense: 3 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +All excepet Novice +# +2127# +Shield provided by Adventurer Guild for Brave adventurer. +-------------------------- +Decreases damage taken by 25%. +-------------------------- +Type: Shield +Defense: 10 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All excepet Novice +# +2128# +A symbolic shield, rumored to have been given from God to his messenger. +-------------------------- +INT +2, VIT +3 +MDEF +3 +-------------------------- +Indestructible in battle +-------------------------- +Type: Shield +Defense: 120 +Weight: 160 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 83 +Crusader +# +2129# +A thick book that contains basic skills for the clergy. +-------------------------- +INT +1 +-------------------------- +Increases HP and SP Recovery Rate by 3%. +-------------------------- +When equipped with Holy Stick: +Increases damage of Magnus Exorcismus by 20%. +Random chance to auto-cast Level 1 Turn Undead on attacker when wielder receive physical attacks. +-------------------------- +Type: Shield +Defense: 80 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Priest and Monk classes +# +2130# +A big and thick cross-shaped shield. +-------------------------- +STR +1 +-------------------------- +Increases SP Consumption by 10%. +-------------------------- +Increases damage of Shield Chain and Shield Boomerang by 30%. +-------------------------- +Type: Shield +Defense: 130 +Weight: 200 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +Crusader +# +2131# +A thick book which is full of unknown words. It seems to be published in series. +-------------------------- +INT +2 +MDEF +3 +-------------------------- +Random chance to inflict Stun status on attacker when wielder receive physical attacks. +-------------------------- +Type: Shield +Defense: 18 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Transcendent Magician and Soul Linker +# +2132# +Rental Item +A Magical Shield that has a strong resistance against every attack that an opponent tries to deal you. +-------------------------- +Decreases damage taken from all monsters by 20%. +-------------------------- +Reflects 1% of melee physical attacks. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Shield +Defense: 140 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2133# +A Shield that a lance can be placed on top of. +Very efficient to defend oneself while attacking with a lance. +-------------------------- +ATK +1%. +-------------------------- +When equipped with Long Horn, Battle Hook or Hunting Spear: +ATK +4% +-------------------------- +When equipped by Lord Knight classes: +Increases After Attack Delay by 5%. +-------------------------- +Type: Shield +Defense: 105 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Transcendent Swordman classes +# +2134# +A hard, firm-looking shield made from the scales of Naga. The scales are as sharp as blades. +-------------------------- +MDEF +3 +-------------------------- +Adds a chance of reflecting Melee Physical Damage for 5 secs, when wielder receive physical attacks. +The rate of reflecting increases by 3% with each Refine Level up to +10. +Refine Level +11: +Reflective duration increases by 1 sec for every 2 Refine Level. +-------------------------- +Type: Shield +Defense: 35 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +2135# +A small-sized black shield you can wear on your arm. +-------------------------- +When equipped with Shadow Walk: +Random chance to increase FLEE by 20 for 10 seconds when wielder receiving physical attack. +Random chance to inflict Blind status on the target when dealing physical damage. +-------------------------- +Type: Shield +Defense: 52 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Stalker +# +2136# +A cracked buckler. +-------------------------- +AGI +2 +MDEF +1 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 10%. +-------------------------- +Random chance to auto-cast Kyrie Eleison when wielder receiving physical attack. +-------------------------- +Type: Shield +Defense: 55 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2137# +Rental Item +A shield used by Gna, the messanger of Freya while she served as a Valkyrie. +-------------------------- +MaxHP +5% +-------------------------- +Decreases damage taken from Demi-Human race by 30%. +-------------------------- +Decreases damage taken from Fire and Water elemental attacks by 20%. +-------------------------- +Type: Shield +Defense: 110 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 95 +All Jobs except Novice +# +2138# +A heavy and strong shield made out of Bradium. +-------------------------- +AGI -1 +MaxHP +500 +-------------------------- +Increases damage of Shield Boomerang by 60%. +-------------------------- +Type: Shield +Defense: 98 +Weight: 180 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +Transcendent 2nd classes +# +2139# +It sends out a hot flames that it burns enemies out in a short time. +-------------------------- +Type: Shield +Defense: 60 +Weight: 200 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +2140# +A wing-shaped guard nailed with a luxurious bluish energy rune. A clear energy comes out that stimulates spirit. +-------------------------- +MaxSP +2% +-------------------------- +Type: Shield +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Swordman classes +# +2141# +Rental Item +A spiritual shield granted by Freya. It appears very sturdy, but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +Decreases damage taken from Medium size by 25%. +-------------------------- +Type: Shield +Defense: 5 +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +2142# +Rental Item +A spiritual shield granted by Freya. It appears very sturdy, but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +Decreases damage taken from Medium size by 25%. +-------------------------- +Type: Shield +Defense: 5 +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +2143# +Rental Item +A spiritual shield granted by Freya. It appears very sturdy, but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +Decreases damage taken from Medium size by 25%. +-------------------------- +Type: Shield +Defense: 5 +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +2144# +Rental Item +A spiritual shield granted by Freya. +It appears very sturdy, but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +Decreases damage taken from Medium size by 25%. +-------------------------- +Type: Shield +Defense: 5 +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +2145# +Shield, which was used by Keeper of Time. +It is slightly frayed, but still easy to use. +-------------------------- +Reduces Neutral elemental damage by 10% +Perfect Dodge +5 +-------------------------- +If refine rate is 7 or higher +Reduces Neutral elemental damage by 5% +-------------------------- +Type: Shield +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2146# +A shield which is a guard covered with thin layer of mixed silver and steel. It looks good when it reflects light. +-------------------------- +Type: Shield +Defense: 60 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 22 +# +2147# +A round-shape shield that is used generally. +It has heightened a defense power by adding elunium thick at the round part. +-------------------------- +Type: Shield +Defense: 90 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 22 +All Transcendent classes except Novice +# +2148# +A shield made by crafting the metal from the Ash Vacuum. +It looks like a bloomed flower due to the metal pieces rounded on it. +-------------------------- +Type: Shield +Defense: 130 +Weight: 130 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Rune Knight and Royal Guard +# +2149# +A Guard molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +-------------------------- +Type: Shield +Defense: 25 +Weight: 15 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: None +# +2150# +A Buckler molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +-------------------------- +Type: Shield +Defense: 45 +Weight: 30 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: +Swordsman, Merchant, Acolyte, Thief, Bard and Dancer +# +2151# +A Shield molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +-------------------------- +Type: Shield +Defense: 65 +Weight: 65 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: +Swordman classes +# +2152# +Rental Item +Decreases damage taken from Demon and Demi-Human race by 25%. +-------------------------- +When VIP status active: +Decreases damage taken from demons and Demi-Human race by 5%. +MaxHP +400 +-------------------------- +Type: Shield +Defense: 120 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2153# +A beautiful shield engraved with the patterns of the Rune Kingdom. +-------------------------- +MDEF +5 +-------------------------- +Increases damage of Shield Press by 20%. +-------------------------- +For each Refine Level equal or above +6: +Increases damage of Shield Press by 2%. +-------------------------- +Type: Shield +Defense: 120 +Weight: 250 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 102 +Royal Guard +# +2154# +Shield made of plastic. Do not underestimate this toy! +-------------------------- +Perfect Dodge +2 +-------------------------- +Base Level less than 80: +FLEE +5 +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Type: Shield +Defense: 1 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +2156# +An ancient book of sacred songs handed down in the cathedral. +It is said to have sold like hotcakes, published as one of a series. +-------------------------- +MDEF +2 +-------------------------- +Enables the use of Level 1 Odin's Power. +-------------------------- +Type: Shield +Defense: 10 +Weight: 50 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 110 +Archbishop +# +2157# +A pesticide spray. Use it on pest's nest, Summer essentials! +-------------------------- +Increases Physical Damage against enemies of Insect race by 10%. +-------------------------- +When equipped with Ultra-Strong Ora Ora: +Decreases damage taken from Insect race by 10%. + +Refine Level +8: +Increases Magical Damage against monsters of Insect race by 4%. +Decreases damage taken from Insect race by 10%. +-------------------------- +Type: Shield +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2158# +A magic shield with elemental resistance. +-------------------------- +Decreases damage taken from Undead elemental by 5%. +-------------------------- +Increases damage taken from monsters of Demi-Human race by 5%. +-------------------------- +When VIP status active: +Increases experience gained from defeating monsters by 10%. +-------------------------- +Type: Shield +Defense: 50 +Weight: 130 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +2159# +A magic shield with elemental resistance. +-------------------------- +Decreases damage taken from Fire elemental by 5%. +-------------------------- +Increases damage taken from monsters of Demon race by 5%. +-------------------------- +When VIP status active: +Increases experience gained from defeating monsters by 10%. +-------------------------- +Type: Shield +Defense: 50 +Weight: 130 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +2160# +Made similar to a Giant's shield that was an Ancient Temple guardian. +-------------------------- +Decreases damage taken from Large size by 5%. +-------------------------- +Refine Level +9: +Decreases damage taken from Large size by 5%. +-------------------------- +Type: Shield +Defense: 130 +Weight: 280 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Rune Knight and Royal Guard +# +2161# +One of Geffenia's secret treasures. There are not many people who can use this shield's magic. +-------------------------- +INT +1 +MDEF +2 +-------------------------- +Base INT at least 120: +MATK +10 +MaxHP +800 +-------------------------- +When equipped with Lacryma Stick: +Decreases Variable Casting Time of Jack Frost, Frost Misty and Storm Gust by (4*Shield Refine Level)%. +-------------------------- +Type: Shield +Defense: 30 +Weight: 100 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Warlock +# +2162# +An ancient book of sacred songs handed down in the cathedral. +-------------------------- +MDEF +5 +-------------------------- +Enables the use of Level 2 Odin's Power. +-------------------------- +Increases Healing skills effectiveness by 5%. +-------------------------- +Type: Shield +Defense: 20 +Weight: 50 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 140 +Archbishop +# +2163# +A magic shield with elemental resistance. +-------------------------- +Decreases damage taken from Water elemental by 5%. +-------------------------- +Increases damage taken from monsters of Brute race by 5%. +-------------------------- +When VIP status active: +Increases experience gained from defeating monsters by 10%. +-------------------------- +Type: Shield +Defense: 50 +Weight: 130 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +2164# +A magic shield with elemental resistance. +-------------------------- +Decreases damage taken from Shadow elemental by 5. +-------------------------- +Increases damage taken from monsters of Undead race by 5%. +-------------------------- +When VIP status active: +Increases experience gained from defeating monsters by 10%. +-------------------------- +Type: Shield +Defense: 50 +Weight: 130 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +2165# +A magical Earth elemental shield. +-------------------------- +Decreases damage taken from Earth elemental by 5%. +-------------------------- +Increases damage taken from monsters of Plant race by 5%. +-------------------------- +When VIP status active: +Increases experience gained from defeating monsters by 10%. +-------------------------- +Type: Shield +Defense: 50 +Weight: 130 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +2166# +A must-read book for priests. +-------------------------- +INT +1 +-------------------------- +Increases HP Recovery Rate by 3%. +Increases SP Recovery Rate by 3%. +-------------------------- +When equipped with Holy Stick: +Increases damage of Magnus Exorcismus by 20%. +Physical attacks have a certain chance to auto-cast Level 1 Turn Undead. +-------------------------- +Type: Shield +Defense: 80 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Priest and Monk classes +# +2167# +A magic shield with elemental resistance. +-------------------------- +Decreases damage from Poison elemental by 5%. +-------------------------- +Increases damage from Plant race by 5%. +-------------------------- +When VIP status active: +Increases experience gained from defeating monsters by 10%. +-------------------------- +Type: Shield +Defense: 50 +Weight: 130 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +2168# +Very unique, square formed shield with a special jewel on it which protects from physical power. +-------------------------- +Reduces damage taken from Neutral property attacks by 1% per upgrade level of the item past the upgrade level of 4 to a maximum upgrade level of 12. +-------------------------- +If upgrade level is +7 or higher: +Reduces damage taken from Neutral property attacks by an additional 5%. +-------------------------- +If upgrade level is +9 or higher: +Reduces damage taken from Fire, Earth, Water and Wind property attacks by 5%. +-------------------------- +Type: Shield +Defense: 55 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: None +# +2169# +Sturdy yet light, practical shield made from rattan. +-------------------------- +For each 3 Refine Levels: +Decreases damage taken from Boss class by 1%. +-------------------------- +When equipped with Buwaya Sack Cloth, Bakonawa Scale Armor and Bangungot Boots of Nightmare: +MaxHP +20% +MaxSP +10% +Decreases damage taken from all monsters within Philippine localizing by 30%. +-------------------------- +Type: Shield +Defense: 40 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +2170# +Sturdy yet light, practical shield made from rattan. +-------------------------- +For each 3 Refine Levels: +Decreases damage taken from Boss class by 1%. +-------------------------- +Type: Shield +Defense: 40 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +2171# +Armguard with a charming fox drawing. You feel swift when wearing this. +-------------------------- +FLEE +5 +-------------------------- +Type: Shield +Defense: 45 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +2172# +Armguard with a threatening wolf drawing. You feel indiscriminating wild instincts when wearing this. +-------------------------- +Random chance to increase ATK by 100 and reducing FLEE by 50 for 5 seconds when attacking enemy. +-------------------------- +Type: Shield +Defense: 70 +Weight: 25 +Armor Level: 1 +Can be enchanted by: +Artisan Teneque_ng,75,20,0,100,0,0 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +2173# +Armguard with a glowing crescent moon drawing. You feel a sense of mystical fullness when wearing this. +-------------------------- +For every Refine Level: +Decreases After Skill Delay by 2%. +-------------------------- +Type: Shield +Defense: 45 +Weight: 25 +Armor Level: 1 +Can be enchanted by: +Artisan Teneque_ng,75,20,0,100,0,0 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +2174# +Holy spiritual magical shield. +-------------------------- +Decreases damage taken from Holy elemental by 5%. +-------------------------- +Increases damage taken from monsters of Dragon race by 5%. +-------------------------- +Type: Shield +Defense: 50 +Weight: 130 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +2175# +A shield refined by applying special magic to Bradium. +It reduces the attacks from certain monsters. +-------------------------- +Decreases damage taken from Ghost elemental by 5%. +-------------------------- +Increases damage taken from monsters of Angel race by 5%. +-------------------------- +When equipped with Esprit Manteau: +For each Refine Level of Esprit Manteau: +Decreases damage taken from Angel race by additional 1%. + +For each Refine Level of Esprit Shield: +Increases Physical Damage against enemies of Ghost elemental by 1%. +-------------------------- +When equipped with Esprit Shoes: +Decreases damage taken from Ghost elemental by additional 5%. + +For each Refine Level of Esprit Shield: +Decreases damage from Ghost elemental attacks by 2%. +-------------------------- +Type: Shield +Defense: 50 +Weight: 130 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +2176# +The horrible curse book will be scared to death. +-------------------------- +MDEF +5 +-------------------------- +Random chance to inflict abnormal statuses to enemies in 5*5 cells when wielder receive physical attacks. +-------------------------- +Refine Level +7: +Increases the rate of inflicting abnormal statuses. +-------------------------- +Refine Level +9: +Increases the rate of inflicting abnormal statuses. +-------------------------- +Type: Shield +Defense: 80 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +2177# +The Shield of the Lord of Death. +-------------------------- +Increase damage to Boss type monsters by 2% +-------------------------- +Increase Magical damage to Boss type monsters by 2% +-------------------------- +Receive 10% more damage from Normal monsters. +-------------------------- +Set Bonus +Lord of Death +Shield of Death +-------------------------- +Increase damage to Boss type monsters by 5% +-------------------------- +Increase Magical damage to Boss type monsters by 5% +-------------------------- +if Lord of Death refined +7 above: +additional 5% damage to Boss type monsters. +additional 5% Magical damage to Boss type monsters. +-------------------------- +Type: Shield +Defense: 150 +Weight: 200 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +2178# +Rental Item +MDEF +15 +-------------------------- +*Effects in WoE TE area +MaxHP +100, MaxSP +100 +Decreases damage taken from Players by 15%. +-------------------------- +Type: Shield +Defense: 15 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +# +2179# +Rental Item +MDEF +5 +-------------------------- +*Effects in WoE TE area +MaxHP +200. +Decreases damage taken from Players by 20%. +-------------------------- +Type: Shield +Defense: 25 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Swordsman and Merchant +# +2180# +Rental Item +MDEF +25 +-------------------------- +*Effects in WoE TE area +MaxSP +200 +Decreases damage taken from Players by 10%. +-------------------------- +Type: Shield +Defense: 5 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Novice, Magician, Acolyte and Soul Linker +# +2181# +A shield named after Hervor, the valkyrie who ensures victory for her warriors. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from all monsters by 30%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Shield +Defense: 100 +Weight: 150 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 90 +# +2182# +A shield named after Hervor, the valkyrie who ensures victory for her warriors. It's now endowed with greater power. +-------------------------- +VIT +20 +MDEF +10 +-------------------------- +Decreases damage taken from all monsters by 30%. +-------------------------- +When you receive Melee Physical damage, this shield creates a chance of casting Protective Light for 60 seconds. +Protective Light immediately cancels: +Stun, Sleep, Curse, Stone Curse, Poison, Blind, Silence, Bleeding, Confuse and Frost then protects the user against such effects for a set duration. +-------------------------- +Indestructible in battle +-------------------------- +Type: Shield +Defense: 150 +Weight: 300 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +3rd Classes +# +2183# +Angel's Shield for Super Novice. Contains sacred demon resistance power. +-------------------------- +Decreases damage taken from Demon race by 5%. +-------------------------- +Decreases damage taken from all elemental attacks, except Neutral element, by 5%. +-------------------------- +When equipped with Modified Angelic Protection: +All Stats +2 +-------------------------- +Type: Shield +Defense: 30 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Novice +# +2184# +A shield equipped with a huge iron skewer which can be triggered by using gunpowder. +You will become sluggish because it's so heavy. +Once owned by Blue Knight. +-------------------------- +ATK +4% +-------------------------- +For each Refine Level above +5 or higher: +ATK +1%. +-------------------------- +Increases After Attack Delay by 5%. +-------------------------- +Type: Shield +Defense: 90 +Weight: 350 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +2185# +This anti-magic shield effectively reflects magic. +-------------------------- +MDEF +10 +-------------------------- +Adds 3% chance of reflecting magical attack. +Refine Level +7: +Increases reflect chance by 3%. +Refine Level +9: +Increases reflect chance by 3%. +-------------------------- +Type: Shield +Defense: 50 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +2186# +A revised edition of an encyclopedia that is printed by a Prontera publisher. Thick and sharp-edged, this book is popularly used as a shield. +-------------------------- +INT +3, DEX +2 +MATK +5 +Critical +3 +-------------------------- +Refine Level +7: +Critical +2 +Refine Level +9: +MATK +5 +-------------------------- +When equipped with Encyclopedia[2]: +Every Refine of Encyclopedia[2], Reduces After Attack Delay by 1%. +-------------------------- +When equipped with Rental Encyclopedia: +Increases Attack Speed (Decreases After Attack Delay by 15%). +-------------------------- +Type: Shield +Defense: 50 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Priest, Sage and Star Gladiator +# +2187# +Shield surrounded by dark aura. Has the ability to resist divine power. +-------------------------- +MDEF +10 +-------------------------- +Decreases damage taken from Holy elemental attacks by 30%. +-------------------------- +For each Refine Level: +Decreases damage taken from Holy elemental attacks by 1%. +For each 3 Refine Levels: +Increases MDEF by 1. +-------------------------- +Type: Shield +Defense: 75 +Weight: 200 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +3rd Classes +# +2188# +The name of this shield surrounded by chilling cold energy means \ +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Water elemental attacks by 10%. +-------------------------- +For each 3 Refine Levels: +MaxHP +1% +Decreases damage taken from Water elemental attacks by 5%. +-------------------------- +Type: Shield +Defense: 80 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +2189# +A rag doll that Piamette use for both attack and defense? It looks so real and alive! +-------------------------- +DEX +1 +MDEF +6 +-------------------------- +Decreases damage taken from all elemental attacks by 5%. +-------------------------- +When equipped with Piamette's Ribbon: +For each Refine Level equal or above +6: +Decreases damage taken from all elemental attacks by 2%. +-------------------------- +Type: Shield +Defense: 40 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +2190# +A shield made in honor of the fallen warrior of Asgard. +-------------------------- +MaxHP +500 +MaxSP +50 +-------------------------- +Decreases damage taken from all elemental attacks by 10%. +-------------------------- +Refine Level +14: +Enables the use of Level 5 Stone Curse. +-------------------------- +Type: Shield +Defense: 5 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +3rd Classes +# +2191# +A large magic book that describe the mystery of King Solomon. +-------------------------- +INT +2 +MATK +5 +MDEF +5 +-------------------------- +Base INT at least 120: +MATK +25 +-------------------------- +When equipped with Ring of the Ancient Wise King: +Decreases SP Consumption by 5%. +-------------------------- +Type: Shield +Defense: 2 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +2192# +A shield made from flower that only bloomed in heaven. It amplify the healing power. +-------------------------- +Increases Healing skills effectiveness by 10%. +-------------------------- +When equipped with Angelic Ring: +Increases Healing skills effectiveness by 10%. +-------------------------- +Type: Shield +Defense: 70 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +2193# +A shield of Angel that has been expelled from heaven. +-------------------------- +Random chance to Reduces After Skill Delay by 10% for 5 seconds when dealing magical damage. +Refine Level +7: +Random chance to Reduces After Skill Delay by 5% for 5 seconds when dealing magical damage. +-------------------------- +Type: Shield +Defense: 100 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +2194# +A shield made from purified bradium. +-------------------------- +Decreases damage taken from Wind elemental by 5%. +-------------------------- +Increases damage taken from monsters of Insect race by 5%. +-------------------------- +When equipped with Levain Manteau: +For each Refine Level of manteau: +Decreases damage taken from Insect race by 1%. +-------------------------- +When equipped with Levain Shoes: +Decreases damage taken from Wind elemental by 5%, every Refine Level of Shield Decreases damage taken from Wind elemental by 1%. +-------------------------- +When equipped with Levain Manteau and Levain Shoes: +For each Refine Level: +Increases Physical Damage against enemies of Wind elemental by 1%. +-------------------------- +Type: Shield +Defense: 50 +Weight: 130 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +2195# +A shield made from purified bradium. +-------------------------- +Decreases damage taken from Neutral elemental by 5%. +-------------------------- +Increases damage taken from Ghost elemental by 5%. +-------------------------- +When equipped with Lien Manteau: +For each Refine Level of manteau: +Decreases damage taken from Ghost elemental by 1%. +-------------------------- +When equipped with Lien Shoes: +Decreases damage taken from Neutral elemental by 5%. +For each Refine Level of Shield Decreases damage taken from Neutral elemental by 1%. +-------------------------- +When equipped with Lien Manteau and Lien Shoes: +For each Refine Level: +Increases Physical Damage against enemies of Neutral elemental by 1%. +-------------------------- +Type: Shield +Defense: 50 +Weight: 130 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +2196# +A shield coated with White Gold and Bronze. +-------------------------- +Adds 20% chance of reflecting magic damage for 2 seconds when wielder receive magical attack. +-------------------------- +Indestructible in battle +-------------------------- +Type: Shield +Defense: 140 +Weight: 180 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +2197# +A very large and heavy shield made of Iron. +-------------------------- +Refine Level +8: +ATK -3% +Prevents knock-back effect. +-------------------------- +Indestructible in battle +-------------------------- +Type: Shield +Defense: 80 +Weight: 280 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +2198# +A shield of Lapine tribe that hold mysterious power. +-------------------------- +MDEF +10 +-------------------------- +Refine Level +7: +MATK +20 +-------------------------- +Type: Shield +Defense: 25 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +3rd Classes +# +2199# +\ + +# +2201# +Glasses with special, darkened lenses that block ultraviolet light. +-------------------------- +Increases resistance against Blind status by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2202# +Glasses with special, darkened lenses that block ultraviolet light. +-------------------------- +Increases resistance to Blind by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2203# +Prescription glasses worn to compensate for defects in vision. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2204# +Prescription glasses worn to compensate for defects in vision. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2205# +Sturdy goggles worn by ocean divers. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2206# +A transparent veil worn by brides on the day of their wedding. +-------------------------- +MDEF +5 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Female Only; +# +2207# +A floral decoration used to adorn the head. +-------------------------- +Decreases damage taken from Plant race by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2208# +A hairpin made from indigo blue satin that wards off harmful magic. +-------------------------- +MDEF +3 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2209# +A hairpin made from indigo blue satin that wards off harmful magic. +-------------------------- +MDEF +3 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2210# +A simple hairband that holds hair in place quite neatly. +It's a very cute look for girls, but dudes, on the other hand... +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2211# +A common, ivory colored bandana. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2212# +A patch used to cover one eye. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2213# +A hairband that gives one the appearance of having ears like a cat. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2214# +A hairband that gives one the appearance of having rabbit ears, a lasting symbol of extremely good luck. +-------------------------- +LUK +2 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2215# +A fragrant hairband crafted from only the daintiest of flowers. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2216# +A stiff, squarish formal hat usually worn by clerics. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Acolyte +# +2217# +A stiff, squarish formal hat usually worn by clerics. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Acolyte +# +2218# +A mask that is worn by people with the flu to prevent spreading sickness to others. +-------------------------- +Increases resistance against Silence status by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2219# +A mask that is worn by people with the flu to prevent spreading sickness to others. +-------------------------- +Increases resistance against Silence status by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2220# +A simple, pink hat. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2221# +A simple, pink hat. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2222# +A small, tight fitting headdress made of fine silk. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2223# +A small, tight fitting headdress made of fine silk. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2224# +A pair of Goggles especially created for pilots to Reduces impaired vision while riding at high speeds. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Archer, Merchant and Thief +# +2225# +A pair of Goggles especially created for pilots to Reduces impaired vision while riding at high speeds. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Archer, Merchant and Thief +# +2226# +A brimless hat that offers very little in the way of fashion, but does provide decent defense. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Archer, Merchant and Thief +# +2227# +A brimless hat that offers very little in the way of fashion, but does provide decent defense. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Archer, Merchant and Thief +# +2228# +This steel helmet, made in the style worn by roman soldiers, offers great protection, covering most of the head. +-------------------------- +Type: Headgear +Defense: 13 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Swordman classes +# +2229# +This steel helmet, made in the style worn by roman soldiers, offers great protection, covering most of the head. +-------------------------- +Type: Headgear +Defense: 13 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Swordman classes +# +2230# +A jeweled headdress that wards off harmful magic. +-------------------------- +MDEF +3 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +# +2231# +A jeweled headdress that wards off harmful magic. +-------------------------- +MDEF +3 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +# +2232# +A jeweled, metal band worn on the head that wards off the effects of harmful magic. +-------------------------- +MDEF +3 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Magician, Acolyte and Soul Linker +# +2233# +A jeweled, metal band worn on the head that wards off the effects of harmful magic. +-------------------------- +MDEF +3 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Magician, Acolyte and Soul Linker +# +2234# +A jeweled coronet said to grant the wisdom of an ancient queen that had worn it. +-------------------------- +INT +2 +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +Female Only +All Jobs except Novice +# +2235# +A crown adorned with gorgeous jewels that is said to be worn by a wise, ancient king who will grant his wisdom to the wearer. +-------------------------- +INT +2 +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +Male Only, +All Jobs except Novice +# +2236# +A red, pompom topped cap that is associated with Santa Claus's legend. +It brings luck and magic protection to whoever wears it. +-------------------------- +LUK +1 +MDEF +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2237# +Legendary beard. +When attached it,you look cool than before. +If you want to be seem like a grown-up person, attach it right now. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2238# +Moustache +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2239# +An aristrocratically stylish lense that is worn for only one eye. +-------------------------- +When equipped with Pocket Watch and Memory Book: +MATK +7% +Increases HP and SP Recovery Rate by 15%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2240# +A beard. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2241# +A white colored moustache, symbol of experience and well aged sophistication. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2242# +High quality sunglasses that effectively block glare from the sun. +-------------------------- +Increases resistance against Blind status by 10%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2243# +A pair of glasses that make the wearer's eyes look like they're spinning without focus. +-------------------------- +Increases resistance against Blind status by 15%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2244# +An over-sized red ribbon that contains hidden magical power. +-------------------------- +MDEF +3 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2245# +A dark colored and very stylish hat that was popularized by smooth crooners. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2246# +A helmet forged from pure gold which blocks attacks effectively, but is also unaffordable. +-------------------------- +Type: Headgear +Defense: 9 +Position: Upper +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +All Jobs except Novice +# +2247# +An ivory hat worn by classy men during classy occasions. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2248# +A broad brimmed casual hat, usually worn by cowboys and ranchers, that is rustically stylish. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2249# +A small decorative crown, fashioned out of pure gold, worn by members of nobility. +-------------------------- +INT +1 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2250# +A small, decorative ribbon for the head. +-------------------------- +MaxSP +20 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +2251# +A ceremonial hat worn by monks that contains a sacred force which offers protection from evil. +-------------------------- +MDEF +3 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Acolyte +# +2252# +A mystic hat, made specifically for wizards, which amplifies pyschic power. +-------------------------- +MaxSP +100 +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Magician and Soul Linker classes +# +2253# +Peculiar headgear designed to look like a sunflower. +-------------------------- +Decreases damage taken from Insect race by 10%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2254# +A headband adorned with what appears to be the wings of an angel. +It contains holiness that blesses the wearer's soul and offers protection from dark forces. +-------------------------- +AGI +1, LUK +1 +MDEF +3 +-------------------------- +Decreases damage taken from Demon race monsters by 3%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2255# +A headgear that look like the wings of a Demon. +Demonic power increase the wearer's strength and offers protection from sacred powers. +-------------------------- +STR +1 +MDEF +2 +-------------------------- +Decreases damage taken from Angel race by 3%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2256# +A helmet, made to look like mighty goat horns, that can increase the strength of its wearer. +-------------------------- +STR +1 +-------------------------- +Type: Headgear +Defense: 9 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Merchant, Taekwon Boy/Girl and Star Gladiator +# +2257# +A pristinely white horn worn on the forehead that makes one look like a unicorn. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2258# +A fashionable headband with two dangerous spikes. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Swordsman, Acolyte, Merchant, Thief, Taekwon Boy/Girl and Star Gladiator +# +2259# +A headgear topped with a fashionably experimental propeller. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2260# +Glasses worn by true sophisticates. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +2261# +A squad cap issued by the Prontera Military. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +# +2262# +A fashion accessory used in clown or town drunk disguises. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2263# +A mask patterned after the one worn by a fencer of legendary repute who always kept his identity as a wealthy don secret. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +2264# +An exact replica of the turban worn by Munak, complete with a queue and talisman. +-------------------------- +Decreases damage taken from Undead race by 10%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle, Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2265# +This mask marked with an \ + is a popular fashion item for bonafide street toughs. +-------------------------- +Increases resistance against Silence status by 15%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2266# +Specialized face armor that protects the jaw and teeth in battle. +-------------------------- +Type: Headgear +Defense: 4 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Swordman classes +# +2267# +A narrow, short roll of finely cut tobacco wrapped in thin paper. +-------------------------- +Decreases damage taken from Insect race by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +2268# +A Refined, wooden pipe used for smoking high quality tobacco. +-------------------------- +Decreases damage taken from Insect race by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All classes except except Novice +# +2269# +A delicate flower that is placed in the mouth for romantic seduction. +-------------------------- +Decreases damage taken from Plant race by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +2270# +A slender leaf that is placed in the mouth for a seductive look. +-------------------------- +Decreases damage taken from Plant race by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +2271# +A pair of glasses that are worn on the head for a more charming appearance, instead of vision related purposes. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +2272# +A signpost that declares its wearer's desire that people should stop whatever they are doing. +Causes catastrophes during wedding ceremonies. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +2273# +A headband worn by doctors in the past during medical examinations. +-------------------------- +INT +1 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2274# +A traditional Japanese headpiece associated with the afterlife. +-------------------------- +AGI +2 +-------------------------- +Decreases damage taken from Ghost elemental attacks by 15%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2275# +A boldly red bandana that was possibly left over from the 80's. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2276# +A pair of glasses with lenses that are angled up and outward. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2277# +A cap worn by nurses both great and small. +-------------------------- +INT +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Acolyte +# +2278# +A simple mask with a smile carved into it. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2279# +A wick-like ornament worn on top of the head for a dangerous look. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2280# +A rustic hat knit from rough reeds and bamboos that shields against the rain and the glare of the sun. +Ssaurabi, the ancient Korean warrior, was known to wear one of these. +-------------------------- +AGI +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +2281# +A mysterious mask traditionally worn by opera phantoms. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle, Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +2282# +A spiritual symbol that typically appears over the heads of those who are holy. +-------------------------- +Decreases damage taken from Holy elemental attacks by 15%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2283# +Ear coverings, linked by a headband, that protect the wearer's ears from the cold. +-------------------------- +Decreases damage taken from Curse status by 10%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2284# +A set of deer antlers that humans, finally, can proudly wear. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2285# +A headgear made in the honor of the legendary archer who shot an apple, on top of a friend's head, from a long distance. +-------------------------- +DEX +3 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +All Jobs except Novice +# +2286# +A fashion accessory that gives ears that vaunted, elvish look. +For some, it is an incredible turn-on. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +All Jobs except Novice +# +2287# +A bandana that is the mark of the lawless pirates of the oceans. +-------------------------- +STR +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2288# +A mask that expresses anguish and despair borne of insanity. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +2289# +A hat which looks just like fecal matter that is guaranteed to end a date on a tragic note. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 70 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2290# +Traditional Korean headdress worn during funeral ceremonies by the bereaved family and close friends. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2291# +A black leather mask, shaped like butterfly wings. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +2292# +A durable mask made from a fat metal plate that is usually worn by welders and Blacksmiths. +-------------------------- +Decreases damage taken from Fire elemental attacks by 10%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle, Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Merchant +# +2293# +A stage prop that creates the illusion that the wearer has a knife sticking out of his head. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2294# +A small, star shaped hairclip that makes a great present for ladies. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2295# +A face mask that is worn by those who have trouble sleeping. +-------------------------- +Prevents Blind status. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +2296# +A special optical tool that enables one to observe objects from a great distance. +-------------------------- +DEX +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Archer +# +2297# +A mask worn by Goblins to scare and intimidate unsuspecting enemies. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +2298# +Large insect antennae that humans can wear. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2299# +A hardy helmet that was crafted by the most expert of Orcish smiths. +-------------------------- +Type: Headgear +Defense: 9 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +# +2301# +A simple, sturdily made shirt of cotton. +-------------------------- +Type: Armor +Defense: 10 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2302# +A simple, sturdily made shirt of cotton. +-------------------------- +Type: Armor +Defense: 10 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2303# +A jacket made out of mediocre leather. +-------------------------- +Type: Armor +Defense: 15 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2304# +A jacket made out of mediocre leather. +-------------------------- +Type: Armor +Defense: 15 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2305# +A light, comfortable suit made just for young adventurers. +-------------------------- +Type: Armor +Defense: 20 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +2306# +A light, comfortable suit made just for young adventurers. +-------------------------- +Type: Armor +Defense: 20 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +2307# +A cloak that is simple, yet elegant. +-------------------------- +Type: Armor +Defense: 37 +Weight: 60 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +All Jobs except Novice +# +2308# +A cloak that is simple, yet elegant. +-------------------------- +Type: Armor +Defense: 37 +Weight: 60 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +All Jobs except Novice +# +2309# +A long coat that provides remarkable warmth in cold weather. +-------------------------- +Type: Armor +Defense: 42 +Weight: 120 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +All Jobs except Novice +# +2310# +A long coat that provides remarkable warmth in cold weather. +-------------------------- +Type: Armor +Defense: 42 +Weight: 120 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +All Jobs except Novice +# +2311# +A fur coat that is actually made using hides from Lunatics. +-------------------------- +Type: Armor +Defense: 30 +Weight: 230 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 30 +All Jobs except Novice +# +2312# +Armor constructed of solid metal plates that have been padded on the inside for comfort. +-------------------------- +Type: Armor +Defense: 35 +Weight: 280 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +# +2313# +Armor constructed of solid metal plates that have been padded on the inside for comfort. +-------------------------- +Type: Armor +Defense: 35 +Weight: 280 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +# +2314# +Heavy mail made entirely of polished, metal chain links. +-------------------------- +Type: Armor +Defense: 55 +Weight: 330 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +# +2315# +Heavy mail made entirely of polished, metal chain links. +-------------------------- +Type: Armor +Defense: 55 +Weight: 330 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +# +2316# +Heavy, solid armor made of durable plates of impenetrable metal. +-------------------------- +Type: Armor +Defense: 70 +Weight: 450 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 40 +Swordman classes +# +2317# +Heavy, solid armor made of durable plates of impenetrable metal. +-------------------------- +Type: Armor +Defense: 70 +Weight: 450 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 40 +Swordman classes +# +2318# +Formal clothing made in a Renaissance style that evokes thoughts of romance and elegance. +-------------------------- +INT +1 +MDEF +5 +-------------------------- +Type: Armor +Defense: 59 +Weight: 250 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Merchant +# +2319# +A jacket covered in fake, yet glamorous, rhinestones that is favored by hipsters and lounge singers. +-------------------------- +MDEF +5 +-------------------------- +Random chance to inflict Blind status on the target when dealing physical damage. +-------------------------- +Type: Armor +Defense: 58 +Weight: 250 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +All Jobs except Novice +# +2320# +A formal suit for males. +-------------------------- +Type: Armor +Defense: 40 +Weight: 30 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +All Jobs except Novice +# +2321# +A finely woven, silk robe that has been enchanted with magic. +-------------------------- +MDEF +10 +-------------------------- +Type: Armor +Defense: 20 +Weight: 40 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Swordsman, Magician, Acolyte, Merchant and Soul Linker +# +2322# +A finely woven, silk robe that has been enchanted with magic. +-------------------------- +MDEF +10 +-------------------------- +Type: Armor +Defense: 20 +Weight: 40 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Swordsman, Magician, Acolyte, Merchant and Soul Linker +# +2323# +A blessed outer garment worn by clerics for religious ceremonies. +-------------------------- +Type: Armor +Defense: 24 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Acolyte +# +2324# +A blessed outer garment worn by clerics for religious ceremonies. +-------------------------- +Type: Armor +Defense: 24 +Weight: 40 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Acolyte +# +2325# +A robe that has been baptized with saintly power. +-------------------------- +MDEF +5 +-------------------------- +Type: Armor +Defense: 50 +Weight: 60 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Acolyte and Merchant +# +2326# +A robe that has been baptized with saintly power. +-------------------------- +MDEF +5 +-------------------------- +Type: Armor +Defense: 50 +Weight: 60 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Acolyte and Merchant +# +2327# +A robe that emanates an aura of holiness. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Demon race monsters by 15%. +-------------------------- +Decreases damage taken from Shadow elemental attacks by 10%. +-------------------------- +Type: Armor +Defense: 57 +Weight: 170 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Acolyte +# +2328# +A simple set of armor carved out of solid wood. +-------------------------- +Type: Armor +Defense: 25 +Weight: 100 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Swordsman and Merchant +# +2329# +A simple set of armor carved out of solid wood. +-------------------------- +Type: Armor +Defense: 25 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman and Merchant +# +2330# +Skintight, form fitting clothing that allows easy movement. +-------------------------- +DEX +1 +-------------------------- +Type: Armor +Defense: 27 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 45 +Archer +# +2331# +Skintight, form fitting clothing that allows easy movement. +-------------------------- +DEX +1 +-------------------------- +Type: Armor +Defense: 27 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 45 +Archer +# +2332# +A robe knit out of silver thread. +-------------------------- +Type: Armor +Defense: 23 +Weight: 70 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Magician and Soul Linker classes +# +2333# +A robe knit out of silver thread. +-------------------------- +Type: Armor +Defense: 23 +Weight: 70 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Magician and Soul Linker classes +# +2334# +An exclusive robe for Magician Class characters that contains magic power. +-------------------------- +INT +1 +MDEF +5 +-------------------------- +Type: Armor +Defense: 40 +Weight: 60 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 50 +Magician and Soul Linker classes +# +2335# +Extremely light clothes outfitted with many pockets, making it handy for stashing stolen goods. +-------------------------- +AGI +1 +-------------------------- +Type: Armor +Defense: 40 +Weight: 10 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Thief and Ninja +# +2336# +Extremely light clothes outfitted with many pockets, making it handy for stashing stolen goods. +-------------------------- +AGI +1 +-------------------------- +Type: Armor +Defense: 40 +Weight: 10 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Thief and Ninja +# +2337# +A sneaking suit that enables its wearer into move more quickly and stealthily. +-------------------------- +AGI +1 +MDEF +3 +-------------------------- +When equipped with Shinobi Sash: +MaxHP +300 +Decreases SP Consumption by 20%. +-------------------------- +Type: Armor +Defense: 58 +Weight: 150 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 50 +Thief and Ninja +# +2338# +A wedding dress that is immaculately white. +-------------------------- +MDEF +15 +-------------------------- +Type: Armor +Defense: 10 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Female Only +All Jobs except Novice +# +2339# +A risque undergarment that is comfortable to wear, but offers very little in the way of defense. +-------------------------- +When equipped with Undershirt: +AGI +5 +FLEE +10 +-------------------------- +Type: Armor +Defense: 22 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2340# +A piece of armor that covers the chest of a Novice. +-------------------------- +Type: Armor +Defense: 32 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +Novice +# +2341# +An extremely heavy piece of armor worn by members of the Legion. +-------------------------- +Type: Armor +Defense: 79 +Weight: 550 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Crusader +# +2342# +An extremely heavy piece of armor worn by members of the Legion. +-------------------------- +Type: Armor +Defense: 79 +Weight: 550 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Crusader +# +2343# +A robe which aids its wearer in reducing magic casting time. +-------------------------- +MDEF +4 +-------------------------- +Decreases Variable Casting Time by 3%. +-------------------------- +Type: Armor +Defense: 40 +Weight: 110 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 75 +Wizard, Sage and Soul Linker +# +2344# +A suit of armor that is enchanted with the fire elemental. +-------------------------- +Type: Armor +Defense: 25 +Weight: 220 +Element: Fire +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 45 +Swordsman and Merchant +# +2345# +A suit of armor that is enchanted with the fire elemental. +-------------------------- +Type: Armor +Defense: 25 +Weight: 220 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 45 +All Jobs except Novice +# +2346# +A suit of armor that is enchanted with the water elemental. +-------------------------- +Type: Armor +Defense: 25 +Weight: 220 +Element: Water +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 45 +Swordsman and Merchant +# +2347# +A suit of armor that is enchanted with the water elemental. +-------------------------- +Type: Armor +Defense: 25 +Weight: 220 +Element: Water +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 45 +All Jobs except Novice +# +2348# +A suit of armor that is enchanted with the wind elemental. +-------------------------- +Type: Armor +Defense: 25 +Weight: 220 +Element: Wind +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 45 +Swordsman and Merchant +# +2349# +A suit of armor that is enchanted with the wind elemental. +-------------------------- +Type: Armor +Defense: 25 +Weight: 220 +Element: Wind +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 45 +All Jobs except Novice +# +2350# +A suit of armor that is enchanted with the earth elemental. +-------------------------- +Type: Armor +Defense: 25 +Weight: 220 +Element: Earth +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 45 +Swordsman and Merchant +# +2351# +A suit of armor that is enchanted with the earth elemental. +-------------------------- +Type: Armor +Defense: 25 +Weight: 220 +Element: Earth +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 45 +All Jobs except Novice +# +2352# +An exclusive armor for new adventurers. +-------------------------- +Type: Armor +Defense: 25 +Weight: 0.1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Novice +# +2353# +The main component of the Hermod Armor set. +-------------------------- +Type: Armor +Defense: 53 +Weight: 250 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +All Jobs except Novice +# +2354# +A suit of armor that was accidentally enchanted by Goibne the blacksmith when he spilled the mystic ale of life all over it. +-------------------------- +VIT +2 +MaxHP +10% +-------------------------- +Type: Armor +Defense: 58 +Weight: 350 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 54 +All Jobs except Novice +# +2355# +Super Novice Guardian Angel's robe. +-------------------------- +MDEF +20 +-------------------------- +When equipped with Angel's Kiss, Angelic Cardigan, Angel's Reincarnation and Angelic Guard: +MaxHP +900 +MaxSP +100 +Random chance to auto-cast Level 1 Assumptio when receiving physical attacks. +-------------------------- +Type: Armor +Defense: 25 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +Novice +# +2356# +A blessed holy robe that protects its wearer from being tainted by evil. +-------------------------- +MDEF +5 +-------------------------- +Increases resistance against Blind status by 80%. +-------------------------- +Type: Armor +Defense: 45 +Weight: 250 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Priest and Monk classes +# +2357# +A set of shining white armor worn by Valkyries, the battle maidens that serve the god Odin. +-------------------------- +All Stats +1 +-------------------------- +When equipped by Mage, Archer and Acolyte classes: +Increases resistance against Silence status by 50%. +-------------------------- +When equipped by Swordman, Merchant and Thief classes: +Increases resistance against Stun status by 50%. +-------------------------- +When equipped with Valkyrie Helm, Valkyrie Manteau and Valkyrie Shoes: +All Stats +1 +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 55 +Weight: 280 +Armor Level: 1 +-------------------------- +Requirement: +All Transcendent classes except Novice +# +2358# +A winged dress that is said to have been worn by an angel. +It makes you feel very lucky when you wear it. +-------------------------- +LUK +4 +-------------------------- +Type: Armor +Defense: 5 +Weight: 100 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2359# +A sneaking suit that enables its wearer into move more quickly and stealthily. +-------------------------- +AGI +1 +MDEF +3 +-------------------------- +When equipped with Shinobi Sash: +MaxHP +300 +Decreases SP Consumption by 20%. +-------------------------- +Type: Armor +Defense: 58 +Weight: 150 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Thief and Ninja +# +2360# +A robe which aids its wearer in reducing magic casting time. +-------------------------- +MDEF +4 +-------------------------- +Decreases Variable Casting Time by 3%. +-------------------------- +Type: Armor +Defense: 40 +Weight: 110 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 75 +Wizard, Sage and Soul Linker +# +2361# +A type of traditional outfit. It brings out the hidden powers of the wearer through its spiritual power. +-------------------------- +All Stats +5 +MDEF +5 +-------------------------- +Type: Armor +Defense: 0 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2362# +A type of traditional outfit. It brings out the hidden powers of the wearer through its spiritual power. +-------------------------- +All Stats +5 +MDEF +5 +-------------------------- +Type: Armor +Defense: 0 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2363# +A type of traditional outfit. It brings out the hidden powers of the wearer through its spiritual power. +-------------------------- +All Stats +3 +MDEF +5 +-------------------------- +Type: Armor +Defense: 0 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Novice +# +2364# +This plate armor was forged using mysterious materials from a meteor. +-------------------------- +Increases resistance against Stun and Frozen status by 30%. +-------------------------- +Type: Armor +Defense: 85 +Weight: 300 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 55 +Transcendent Swordsman and Merchant +# +2365# +A uniform that was once worn by a chef that was obsessed with cleanliness. +Nobody could stop him once he started talking about cuisine. +-------------------------- +Protects from skill cast interruption. +-------------------------- +Increases Variable Casting Time of all skills by 15%. +-------------------------- +Type: Armor +Defense: 15 +Weight: 30 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 55 +All Transcendent classes except Novice +# +2366# +A holy garment that has been purified by a series of religious rituals. +-------------------------- +Increases resistance against Curse, Silence, Stun, Sleep and Stone Curse status by 5%. +-------------------------- +Type: Armor +Defense: 50 +Weight: 150 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 55 +All Transcendent classes except Novice +# +2367# +A sniping suit that stimulates all the muscles used in firing arrows, increasing accuracy while reducing stress on the body. +-------------------------- +MDEF +5 +-------------------------- +Critical +6 with additional Critical bonus determined by LUK stat. +-------------------------- +Decreases After Skill Delay by 23%. +-------------------------- +Type: Armor +Defense: 42 +Weight: 75 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Sniper +# +2368# +A special Armor made of a pure gold mixture. According to legend you will gain magical strength whilst wearing this. +-------------------------- +MDEF +4 +-------------------------- +Type: Armor +Defense: 4 +Weight: 200 +Armor Level: 1 +-------------------------- +Requirement: None +# +2369# +Rental Item +The coat of the queen Freya, protected by frozen power. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +When equipped with Freya Crown, Freya Boots and Freya Cape: +MaxHP +20% +Prevents Frozen status. +Decreases damage taken from Demi-Human race by 10%. +Enables the use of Level 10 Frost Nova. +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 12 +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +2370# +Coat from Guild of Traveler. +-------------------------- +DEX +1 +ATK +10 +MaxHP +300 +MaxSP +30 +-------------------------- +Type: Armor +Defense: 15 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2371# +A risque undergarment that is comfortable to wear, but offers very little in the way of defense. +-------------------------- +When equipped with Undershirt: +AGI +5 +FLEE +10 +-------------------------- +Type: Armor +Defense: 22 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2372# +An exclusive robe for Magician Class characters that contains magic power. +-------------------------- +INT +1 +MDEF +5 +-------------------------- +Type: Armor +Defense: 40 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Magician and Soul Linker classes +# +2373# +A robe that emanates an aura of holiness. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Demon race monsters by 15%. +-------------------------- +Decreases damage taken from Shadow elemental attacks by 10%. +-------------------------- +Type: Armor +Defense: 57 +Weight: 170 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +Acolyte +# +2374# +A robe which is decorated with unknown letters. The wearer feels like they're learning a new language. +-------------------------- +MaxSP +150 +MDEF +5 +-------------------------- +Decreases After Skill Delay by 10%. +-------------------------- +Increases Healing skills effectiveness by 6%. +-------------------------- +When equipped with Diabolus Ring: +MATK +3% +ATK +3% +-------------------------- +Type: Armor +Defense: 57 +Weight: 30 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Transcendent Archer, Magician and Acolyte +# +2375# +A suit of armor which is made of an unknown metal in the human-world. Mysterious power is hidden in the armor. +-------------------------- +DEX +1, STR +2 +MaxHP +150 +-------------------------- +Increases resistance against Stun and Stone Curse status by 5%. +-------------------------- +When equipped with Diabolus Ring: +ATK +3% +MATK +3% +-------------------------- +Type: Armor +Defense: 79 +Weight: 60 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Transcendent Swordman, Merchant and Thief +# +2376# +Designed for brave warriors who face enemies at the forefront. +It gives off multiple effects when compounded as a set. +-------------------------- +MaxHP +150 +MDEF +2 +-------------------------- +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +When equipped with Battle Greaves and Captain's Manteau: +VIT +3 +MaxHP +12% +Increases damage taken from all non-Demi-Human race by 300%. +Increases recovery amount gained from Healing skills and Restorative items by 10%. +Adds a chance of restoring 6,000 HP per second for 10 seconds when receiving physical damage. +-------------------------- +Type: Armor +Defense: 57 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +Swordsman, Merchant, Taekwon Boy/Girl and Star Gladiator +# +2377# +Designed to be used by outstanding warriors who have remarkable attack skills. It gives off multiple effects when compounded as a set. +-------------------------- +MaxHP +150 +MDEF +2 +-------------------------- +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +When equipped with Battle Greaves and Captain's Manteau: +STR +3 +MaxHP +12% +Increases damage of Mammonite by 20%. +Increases recovery amount gained from Heal and Potion Pitcher by 10%. +Increases damage taken from non-Demi-Human race by 300%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 50 +Weight: 0 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 80 +Merchant +# +2378# +If you desire to move more quickly, this might help. It gives off multiple effects when compounded as a set. +-------------------------- +MaxHP +150 +MDEF +2 +-------------------------- +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +When equipped with Battle Greaves and Captain's Manteau: +AGI +3 +MaxHP +12% +Critical +5 +Increases Attack Speed (Decreases After Attack Delay by 5%). +Increases damage taken from non-Demi-Human race by 300%. +Adds a chance of restoring 3,000 HP per second for 10 seconds when receiving physical damage. +-------------------------- +Type: Armor +Defense: 41 +Weight: 0 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 80 +Thief and Ninja +# +2379# +A Battle Robe that helps increase the possibility of survival. It gives off multiple effects when compounded as a set. +-------------------------- +MaxHP +150 +MDEF +2 +-------------------------- +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +When equipped with Combat Boots and Commander's Manteau: +INT +3 +MaxHP +12% +Increases resistance against Stun by 20%. +Increases damage taken from non-Demi-Human race by 300%. +Adds a chance of enchanting Armor with Ghost element for 10 seconds when receiving physical damage. +-------------------------- +Type: Armor +Defense: 36 +Weight: 0 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 80 +Magician and Soul Linker classes +# +2380# +Designed to be used by responsible warriors who take charge of the survival of the guild or party. +It gives off multiple effects when compounded as a set. +-------------------------- +MaxHP +150 +MDEF +2 +-------------------------- +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +When equipped with Combat Boots and Commander's Manteau: +INT +3 +MaxHP +12% +Decreases Holy Light Variable Casting Time by 50%. +Increases damage taken from non-Demi-Human race by 300%. +Increases Healing skills effectiveness by 6%. +Adds a chance of enchanting Armor with Ghost element for 10 seconds when receiving physical damage. +-------------------------- +Type: Armor +Defense: 25 +Weight: 0 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 80 +Acolyte +# +2381# +If you desire to become an accurate and efficient warrior in battle, this might help. +It gives off multiple effects when compounded as a set. +-------------------------- +MaxHP +150 +MDEF +2 +-------------------------- +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +When equipped with Combat Boots and Commander's Manteau: +DEX +3 +MaxHP +12% +Decreases damage taken from Ranged Physical Damage by 10%. +Decreases cast delay by 25%. +Increases damage taken from all non-Demi-Human race by 300%. +-------------------------- +Type: Armor +Defense: 35 +Weight: 0 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 80 +Archer +# +2382# +If you are a true Gunslinger, you might want this suit! It gives off multiple effects when compounded as a set. +-------------------------- +MaxHP +150 +MDEF +2 +-------------------------- +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +When equipped with Battle Boots and Sheriff's Manteau: +DEX +3 +MaxHP +12% +Decreases damage taken from Ranged Physical Damage by 10%. +Decreases cast delay by 25%. +Increases damage taken from all non-Demi-Human race by 300%. +-------------------------- +Type: Armor +Defense: 25 +Weight: 0 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 80 +Gunslinger +# +2383# +Brynhild is one of the valiant valkyries, meaning \ +. +-------------------------- +MaxHP +(20*Base Level) +MaxSP +(5*Base Level) +MDEF +10 +MATK +10% +ATK +10% +-------------------------- +Prevents knock-back effect. +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 120 +Weight: 40 +Armor Level: 1 +Tier: 7 +-------------------------- +Requirement: +Base Level 94 +# +2384# +Rental Item +A magic tunic that protect from various elements. +-------------------------- +MaxHP +800 +MDEF +5 +-------------------------- +Prevents Frozen status. +-------------------------- +Decreases damage taken from all elements except Neutral and Water elemental attacks by 20%. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Armor +Defense: 38 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2385# +Rental Item +A suit of armor that allows the master to regain his life by taking the enemies +-------------------------- +Disables HP and SP Recovery Rate. +-------------------------- +When unequipped, drains 100 SP. +-------------------------- +When a monster is defeated from Physical or Magical Damages, recover 60 HP and 6 SP. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Armor +Defense: 67 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2386# +A miraculous Armor that can change its abilities according to those of its wearer. +-------------------------- +Increases MaxHP and MaxSP based on wearer's base Level. +-------------------------- +Adds a chance of nullifying all magical skills for 2 seconds when receiving magical attack. +-------------------------- +When equipped by Swordman,Merchant and Thief classes: +DEF +3 +-------------------------- +When equipped by Mage, Acolyte and Archer classes: +MDEF +5 +-------------------------- +Type: Armor +Defense: 55 +Weight: 170 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Transcendent 2nd classes +# +2387# +Very nimble looking armor that lets you gallop like a Peco Peco. It looks like a running shirt, while it has the function of a suit of armor. +-------------------------- +VIT +1 +-------------------------- +Increases HP Recovery Rate by 5%. +-------------------------- +Increases recovery amount gained from Healing skills and Restorative items by 3%. +-------------------------- +When equipped with Sprint Shoes and Sprint Ring: +MaxHP +7% +MaxSP +7% +Decreases Variable Casting Time by 3%. +Decreases After Skill Delay by 15%. +-------------------------- +Type: Armor +Defense: 20 +Weight: 100 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Transcendent 2nd classes +# +2388# +A traditional garb worn by desert dwellers that is specially designed for hot weather environments. +-------------------------- +AGI +1 +FLEE +5 +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Type: Armor +Defense: 36 +Weight: 30 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Assassin Cross +# +2389# +A suit of armor made from the scales of Naga. It is very sharp and shiny and it seems like it will hurt anything that goes near it. +-------------------------- +MDEF +2 +-------------------------- +Random chance to increase ATK by 20 for 10 seconds when dealing physical damage. +-------------------------- +Type: Armor +Defense: 45 +Weight: 100 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Transcendent 2nd classes +# +2390# +Brand new tights developed by the Rekenber Corporation. Made of very advanced material which fit close to the body and still allows maximum movement. +-------------------------- +MDEF +2 +Perfect Dodge +3 +-------------------------- +Type: Armor +Defense: 38 +Weight: 40 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 75 +Transcendent Archer +# +2391# +A holy armor made by the Goddess in order to cure the chosen warrior. +-------------------------- +VIT +2 +MDEF +5 +-------------------------- +Increases HP Recovery Rate by 50%. +-------------------------- +Type: Armor +Defense: 75 +Weight: 350 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 82 +Transcendent Swordman classes +# +2392# +Rental Item +It looks has hanging for a long time in the closet. A little small, but you can still wear it. +-------------------------- +STR +2, VIT +2 +MaxHP +200 +MDEF +1 +-------------------------- +Random chance to auto-cast Level 5 Call Spirit when receiving physical damage. +-------------------------- +Type: Armor +Defense: 60 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2393# +A light, comfortable suit made just for young adventurers. +-------------------------- +Type: Armor +Defense: 45 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2394# +A suit that only a champion of battlefield can wear. +-------------------------- +MaxHP +20% +-------------------------- +Decreases damage taken from Demi-Human race by 7%. +-------------------------- +When equipped with Glorious Shoes and Glorious Muffler: +ATK +5% +MATK +5% +Increases recovery amount gained from Heal, Potion Pitcher and Sanctuary by 3%. +Prevents Frozen status. +-------------------------- +Type: Armor +Defense: 10 +Weight: 0 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 81 +All Jobs except Novice +# +2395# +A suit that only a champion of battlefield can wear. +-------------------------- +MaxHP +600 +-------------------------- +Increases SP Recovery Rate by 10%. +-------------------------- +Type: Armor +Defense: 10 +Weight: 0 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +Base Level 61 +All Jobs except Novice +# +2396# +A suit that only a champion of battlefield can wear. +-------------------------- +MaxHP +500 +-------------------------- +Type: Armor +Defense: 10 +Weight: 0 +Armor Level: 1 +Can be enchanted by: +Apprentice Craftsmanprontera,165,60,0,100,0,0 +-------------------------- +Requirement: +All Jobs except Novice +# +2397# +A jacket wore by showman, it makes body warm and protect from cold. +-------------------------- +Type: Armor +Defense: 10 +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2398# +Sniping suits helps required muscles to move effectively for shooting an arrow. +Decreases necessary time to shoot arrows and helps to achieve improved accuracy. +-------------------------- +MDEF +5 +-------------------------- +Critical +6 +Increases Critical depends on base LUK. +-------------------------- +Decreases After Skill Delay by 23%. +-------------------------- +Type: Armor +Defense: 5 +Weight: 75 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Sniper +# +2399# +Inner wear made out of a draco's mane. +-------------------------- +MDEF +3 +-------------------------- +When equipped with Dragon Manteau: +AGI +5 +FLEE +15 +-------------------------- +Type: Armor +Defense: 20 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Transcendent classes +# +2401# +Cute, feminine shoes that are a part of the standard schoolgirl's uniform. +Fortunately, these are unisex. +-------------------------- +Type: Shoes +Defense: 5 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2402# +Cute, feminine shoes that are a part of the standard schoolgirl's uniform. +Fortunately, these are unisex. +-------------------------- +Type: Shoes +Defense: 5 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2403# +A pair of shoes made of supple, high quality leather. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2404# +A pair of shoes made of supple, high quality leather. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2405# +A pair of heavy leather boots, padded with Lunatic fur, that is suited to warriors. +-------------------------- +Type: Shoes +Defense: 16 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Archer, Merchant, Thief, Taekwon Boy/Girl, Star Gladiator and Gunslinger +# +2406# +A pair of heavy leather boots, padded with Lunatic fur, that is suited to warriors. +-------------------------- +Type: Shoes +Defense: 16 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Archer, Merchant, Thief, Taekwon Boy/Girl, Star Gladiator and Gunslinger +# +2407# +A pair of feminine high heeled shoes made of fine crystal. Usually, these are worn only on special occasions. +-------------------------- +LUK +5 +MDEF +10 +-------------------------- +Type: Shoes +Defense: 5 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2408# +These steel shackles were clamped on the ankles to prevent some prisoner from escaping. +-------------------------- +Type: Shoes +Defense: 18 +Weight: 300 +Armor Level: 1 +-------------------------- +Requirement: None +# +2409# +Striped high heeled shoes said to have been worn by a wicked witch since they enhanced her magical powers. +-------------------------- +MDEF +5 +-------------------------- +Type: Shoes +Defense: 10 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2410# +Named after Odin's trusty steed, these shoes also mimic Sleipnir's powers. +-------------------------- +INT +25 +MDEF +10 +MaxHP +20% +MaxSP +20% +-------------------------- +Increases SP Recovery Rate by 25%. +-------------------------- +Increases movement speed. +-------------------------- +Type: Shoes +Defense: 40 +Weight: 350 +Armor Level: 1 +Tier: 7 +-------------------------- +Requirement: +Base Level 94 +# +2411# +Steel boots which offer dependable foot protection. +-------------------------- +Type: Shoes +Defense: 27 +Weight: 75 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +Knight and Crusader classes +# +2412# +Steel boots which offer dependable foot protection. +-------------------------- +Type: Shoes +Defense: 27 +Weight: 75 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +Knight and Crusader classes +# +2413# +Light, sturdy shoes with steel covers to protect its wearer's feet from harm. +-------------------------- +Type: Shoes +Defense: 22 +Weight: 35 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +Swordman classes +# +2414# +Exclusive shoe for new adventurers. +-------------------------- +Type: Shoes +Defense: 5 +Weight: 0.1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Novice +# +2415# +A pair of slippers which enhances a girl's cuteness. Secretly worn by pretty boys. +-------------------------- +LUK +3 +-------------------------- +Female Only +-------------------------- +Type: Shoes +Defense: 9 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +All Jobs except Novice +# +2416# +A pair of shoes made exclusively for brand new adventurers. +-------------------------- +MaxHP +5% +-------------------------- +Type: Shoes +Defense: 8 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +Novice +# +2417# +A pair of shoes that were blessed by Freyr, the god of Earth and the son of Njord. +His blessing would release its owner from pain. +-------------------------- +AGI +2 +-------------------------- +Increases recovery amount gained from Red Potion, Orange Potion, Yellow Potion and White Potion by 20%. +-------------------------- +When equipped with Falcon Muffler and Odin's Blessing: +AGI +3 +MaxHP +5% +MaxSP +5% +-------------------------- +Type: Shoes +Defense: 12 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +All Jobs except Novice +# +2418# +The boots worn by Vidar, son of Odin, when he killed the Fenrir Wolf. +These represent the great physical and mental strength Vidar displayed in that epic final battle. +-------------------------- +MaxHP +9% +MaxSP +9% +-------------------------- +When equipped with Vali's Manteau and Odin's Blessing: +VIT +5 +Increases HP and SP Recovery Rate by 10%. +-------------------------- +Type: Shoes +Defense: 13 +Weight: 65 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +All Jobs except Novice +# +2419# +A pair of shoes rumored to be forged by Goibne in response to competition from his rival, Dulb. +-------------------------- +MaxHP +5% +MaxSP +5% +MDEF +3 +-------------------------- +Type: Shoes +Defense: 13 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 54 +All Jobs except Novice +# +2420# +Heavenly sandals worn by the Guardian Angel of Super Novices. +-------------------------- +MaxHP +100 +-------------------------- +When equipped with Angel's Kiss, Angelic Protection, Angelic Cardigan and Angelic Guard: +MaxHP +900 +MaxSP +100 +Random chance to auto-cast Level 1 Assumptio when receiving physical attacks. +-------------------------- +Type: Shoes +Defense: 8 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 25 +Novice +# +2421# +A pair of shoes worn by the Valkyries, Odin's battle maidens. +These shoes grow more powerful as the wearer improves his own abilities. +-------------------------- +When equipped by Mage, Archer and Acolyte classes: +MaxHP +(Base Level*5). +-------------------------- +When equipped by Swordman, Merchant and Thief classes: +MaxSP +(Job Level*2) +-------------------------- +Indestructible in battle +-------------------------- +Type: Shoes +Defense: 13 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Transcendent classes except Novice +# +2422# +Jeweled, golden strapped sandals that offer a casual, yet fashionable, comfort. +-------------------------- +MDEF +10 +-------------------------- +Type: Shoes +Defense: 7 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +Magician, Acolyte and Soul Linker +# +2423# +Although it seems that whoever made these shoes tried to fix his mistakes, he didn't make these as well as he hoped. +-------------------------- +MaxHP +20% +MaxSP +20% +Decreases MaxHP and MaxSP for every Refine Level. +-------------------------- +Increases DEF for every 2 Refine Levels. +-------------------------- +Type: Shoes +Defense: 13 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 85 +All Transcendent classes except Novice +# +2424# +This pair of shoes was designed with a waterproof coating that prevents slippage in wet areas. +-------------------------- +Decreases damage taken from Water elemental attacks by 5%. +-------------------------- +Increases HP Recovery Rate by 5%. +-------------------------- +When equipped with Wool Scarf: +MaxHP +10% +-------------------------- +Type: Shoes +Defense: 13 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 55 +All Transcendent classes except Novice +# +2425# +A pair of boots made of light, resilient leather that makes you want to run when you wear them. +-------------------------- +AGI +1 +-------------------------- +Refine Level +9: +AGI +2 +-------------------------- +When equipped with Rider Insignia: +FLEE +10 +-------------------------- +Type: Shoes +Defense: 16 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 55 +All Transcendent classes except Novice +# +2426# +Shadowy shoes made using dark forces and enchanted with a spell to protect their wearer when danger approaches. +-------------------------- +MDEF +10 +-------------------------- +Random chance to auto-cast Level 2 Cloaking (or learned Level) when receiving magical attack. +-------------------------- +Type: Shoes +Defense: 0 +Weight: 200 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 75 +All Transcendent classes except Novice +# +2427# +A special Footgear made of a pure gold mixture. According to legend you will gain magical strength whilst wearing these. +-------------------------- +MDEF +4 +-------------------------- +Type: Shoes +Defense: 4 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +2428# +The boots of the queen Freya, surrounded by mysterious hints of mist. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +When equipped with Freya Crown, Freya Overcoat and Freya Cape: +MaxHP +20% +Prevents Frozen status. +Decreases damage taken from Demi-Human race by 10%. +Enables the use of Level 10 Frost Nova. +-------------------------- +Type: Shoes +Defense: 22 +Refineable: No +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2429# +Solidly crafted Steel Boots that are especially made for those seeking the Golden Key. +-------------------------- +Type: Shoes +Defense: 5 +Weight: 150 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Merchant, Thief and Archer +# +2430# +Solidly crafted Steel Boots that are especially made for those seeking the Golden Key. +-------------------------- +Type: Shoes +Defense: 5 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +# +2431# +A pair of shoes from Guild of Traveler. +-------------------------- +MaxHP +7% +MaxSP +7% +-------------------------- +Type: Shoes +Defense: 10 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2432# +Striped high heeled shoes said to have been worn by a wicked witch since they enhanced her magical powers. +-------------------------- +MDEF +5 +-------------------------- +Type: Shoes +Defense: 10 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2433# +Mysterious boots that automatically adjust their size to the wearer's size. They seem alive. +-------------------------- +MaxHP +(Base Level*10) +-------------------------- +When equipped with Diabolus Manteau: +MaxHP +6% +-------------------------- +Type: Shoes +Defense: 15 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +2434# +A pair of boots made of light, resilient leather that makes you want to run when you wear them. +-------------------------- +AGI +1 +-------------------------- +Refine Level +9: +AGI +2 +-------------------------- +When equipped with Rider Insignia: +FLEE +10 +-------------------------- +Type: Shoes +Defense: 16 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 55 +All Transcendent classes except Novice +# +2435# +A greaves that optimizes the quality of one's ability for battle. +-------------------------- +MaxHP +100 +MDEF +1 +-------------------------- +Decreases damage taken from Demi-Human race by 1%. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +Swordsman, Merchant, Thief Classes, Ninja, Taekwon Boy/Girl and Star Gladiator +# +2436# +A pair of shoes that are comfortable and solidly made for battle. +-------------------------- +MaxHP +100 +MDEF +1 +-------------------------- +Decreases damage taken from Demi-Human race by 1%. +-------------------------- +Type: Shoes +Defense: 9 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +Magician, Acolyte, Archer, Soul Linker +# +2437# +They don't look any different than other boots, but they are designed exclusively for Gunslingers. +-------------------------- +MaxHP +100 +MDEF +1 +-------------------------- +Decreases damage taken from Demi-Human race by 1%. +-------------------------- +Type: Shoes +Defense: 9 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +Gunslinger +# +2438# +A pair of shoes that imitated kitty's paws. It gives you a feeling that you can move as swiftly as cats. +-------------------------- +DEX +1 +FLEE +5 +-------------------------- +Enables the use of Level 1 Cat Cry. +-------------------------- +Type: Shoes +Defense: 0 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +2439# +Rental Item +A pair of shoes made with a complex design from soft animal skin. +-------------------------- +MaxHP +17% +MaxSP +8% +-------------------------- +Restores 20 HP and 3 SP every 10 seconds. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2440# +Very useful for running. Tighten the strips and you're off to the races! +-------------------------- +AGI +1 +-------------------------- +Increases SP Recovery Rate by 5%. +-------------------------- +When equipped with Sprint Mail and Sprint Ring: +MaxHP +7% +MaxSP +7% +Decreases Variable Casting Time by 3%. +Decreases After Skill Delay by 15%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +2441# +A sandals received as a gift from Comodo Environmental Commission. +It seems to match perfect with Comodo beach. +-------------------------- +STR +1, INT +1, AGI +1 +-------------------------- +Decreases damage taken from Fire elemental attacks by 10%. +-------------------------- +When equipped with Beach Manteau: +FLEE +5 +-------------------------- +Type: Shoes +Defense: 0 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2442# +Torn in some places, but it even helps ventilation. of course, not convenient in the rain. +-------------------------- +LUK +2 +MDEF +1 +-------------------------- +Increases HP and SP Recovery Rate by 10%. +-------------------------- +Random chance to auto-cast Level 3 Quagmire when receiving physical damage. +-------------------------- +Type: Shoes +Defense: 18 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2443# +A waterproof boots. +-------------------------- +Decreases Fishing casting time by 2 seconds. +-------------------------- +Type: Shoes +Defense: 0 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: None +# +2444# +A pair of shoes that only a champion of battlefield can wear. +-------------------------- +MaxHP +10% +-------------------------- +Decreases damage taken from Demi-Human race by 4%. +-------------------------- +Random chance to auto-cast Level 1 Increase Agi on wearer when receiving physical damage. +-------------------------- +Type: Shoes +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 81 +All Jobs except Novice +# +2445# +A pair of shoes that only a champion of battlefield can wear. +-------------------------- +MaxHP +5% +MaxSP +5% +-------------------------- +Type: Shoes +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 61 +All Jobs except Novice +# +2446# +A pair of shoes that only a champion of battlefield can wear. +-------------------------- +MaxHP +5% +-------------------------- +Type: Shoes +Defense: 10 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2447# +Boots popular among armymen. +It may not be the most comfortable shoes you've ever used, but Captain Alcimento approve. +-------------------------- +Decreases damage taken from Earth elemental attacks by 10%. +-------------------------- +Type: Shoes +Defense: 5 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2448# +These are special shoes made by a craftsman of a place famous for its beaches and festivities. +There are many legends around these rarities, such as the inexplicable ability that your users get to dance. +Everyone who feel a little lighter, as if they are floating. The shoes also come with an anti-foot odor effect. +-------------------------- +AGI +1 +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Decreases Variable Casting Time by 3%. +-------------------------- +Type: Shoes +Defense: 2 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +2449# +A pair of shoes that seem to be wrong somewhere. The intention of the maker to perfect the shoes can be seen but it seems to be a failure. +-------------------------- +MaxHP +20% +MaxSP +20% +Decreases MaxHP and MaxSP for every Refine Level. +-------------------------- +Increases DEF for every 2 Refine Levels. +-------------------------- +Type: Shoes +Defense: 3 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 85 +All Transcendent classes except Novice +# +2450# +A pair of shoes made out of the stem of the Tree of Life. They are comfortable and provide life energy to the wearer. +-------------------------- +VIT +2 +MDEF +3 +MaxHP +10% +-------------------------- +Increases HP Recovery Rate by 5%. +-------------------------- +Recover 30 HP every 10 seconds. +-------------------------- +Increases recovery amount gained from Restorative items and Healing skills by 5%. +-------------------------- +Type: Shoes +Defense: 16 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +All Transcendent classes except Novice +# +2451# +Rental Item +A pair of spiritual sandals granted by Freya. +It appears very sturdy, but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +MaxHP +8% +MaxSP +8% +-------------------------- +Type: Shoes +Defense: 5 +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +2452# +Rental Item +A pair of spiritual sandals granted by Freya. +It appears very sturdy, but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +MaxHP +8% +MaxSP +8% +-------------------------- +Type: Shoes +Defense: 5 +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +2453# +Rental Item +A pair of spiritual sandals granted by Freya. +It appears very sturdy, but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +MaxHP +8% +MaxSP +8% +-------------------------- +Type: Shoes +Defense: 5 +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +2454# +Rental Item +A pair of spiritual sandals granted by Freya. +It appears very sturdy, but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +MaxHP +8% +MaxSP +8% +-------------------------- +Type: Shoes +Defense: 5 +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +2455# +Boots made for the keepers of time and suitable for use in all conditions. +-------------------------- +Flee +10 +Critical +5 +Increases HP Recovery Rate by 5% +Increases SP Recovery Rate by 5% +-------------------------- +If refine rate is 7 or higher +Aspd +10% +-------------------------- +Type: Shoes +Defense: 17 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2456# +Boots that are provided only for Genesis members. Designed for comfort and endurance on long journeys. +-------------------------- +Increases SP recovery rate by 5%. +-------------------------- +When Base Level is 30 or higher: +MaxSP +10 +When Base Level is 60 or higher: +MaxHP +10 +When Base Level is 90 or higher: +MaxHP +30 +-------------------------- +Cannot be refined. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 0 +-------------------------- +Required Level: 1 +Jobs: All jobs +# +2457# +Boots that are provided only for members of the Eden Group. These are designed to fit comfortably throughout long-walks. +-------------------------- +Increases HP Recovery Rate by 12%. +Increases SP Recovery Rate by 4%. +-------------------------- +Type: Shoes +Defense: 16 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 26 +# +2458# +Boots that are provided only for members of the Eden Group. These are designed to fit comfortably throughout long-walks. +-------------------------- +Increases HP Recovery Rate by 14%. +Increases SP Recovery Rate by 6%. +-------------------------- +Type: Shoes +Defense: 18 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +# +2459# +A pair of shoes molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +-------------------------- +Type: Shoes +Defense: 15 +Weight: 20 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: +All Jobs except Novice +# +2460# +A Boots molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +-------------------------- +Type: Shoes +Defense: 21 +Weight: 30 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: +Swordsman, Merchant, Thief, Archer, Taekwon, Star Gladiator and Gunslinger +# +2461# +A Greave molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +-------------------------- +Type: Shoes +Defense: 32 +Weight: 40 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: +Knight and Crusader classes +# +2462# +Named after Odin's trusty steed, these shoes also mimic Sleipnir's powers. +-------------------------- +MaxHP +10% +MaxSP +10% +MDEF +10 +-------------------------- +Increases SP Recovery Rate by 15%. +-------------------------- +Increases movement speed. +-------------------------- +Type: Shoes +Defense: 5 +Weight: 350 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 94 +# +2463# +It has a message inscribed - Feline boots of a forgotten era, with both an unpolished and polished beauty. +-------------------------- +Indestructible in battle +-------------------------- +Type: Shoes +Defense: 12 +Weight: 0 +Armor Level: 1 +Refineable: No +Enchantable: Yes +-------------------------- +Requirement: +Base Level 75 +# +2464# +Let the ass-kicking commence! +-------------------------- +STR +1, INT +1, DEX +1 +MaxHP +10% +MaxSP +5% +-------------------------- +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +When equipped with No Fear Underwear & No Fear Belt: +Prevents Frozen status. +Increases experience gained from defeating monsters by 5%. +-------------------------- +Type: Shoes +Defense: 6 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +2465# +A pair of shoes fit for dancing. +-------------------------- +AGI +1 +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Decreases SP Consumption of Swing Dance by 32. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 105 +Wanderer +# +2466# +A special shoes that made to Reduces the burden of the foot when running. +-------------------------- +MaxHP +2% +MaxSP +2% +-------------------------- +Increases HP and SP Recovery Rate by 5%. +-------------------------- +When equipped with Undershirt and Pantie: +STR +2 +-------------------------- +Type: Shoes +Defense: 1 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +2467# +A pair of golden long boots imbued with power of wind. +-------------------------- +MaxHP +500 +MDEF +2 +-------------------------- +Decreases damage taken from Wind elemental attacks by 15%. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 50 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Warlock +# +2468# +A pair of sea-blue long boots imbued with power of water. +-------------------------- +MaxHP +500 +MDEF +2 +-------------------------- +Decreases damage taken from Water elemental attacks by 15%. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 50 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Warlock +# +2469# +A pair of red long boots imbued with power of fire. +-------------------------- +MaxHP +500 +MDEF +2 +-------------------------- +Decreases damage taken from Fire elemental attacks by 15%. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 50 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Warlock +# +2470# +A pair of turquoise long boots imbued with power of Earth. +-------------------------- +MaxHP +500 +MDEF +2 +-------------------------- +Decreases damage taken from Earth elemental attacks by 15%. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 50 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Warlock +# +2471# +An ancient relic of war that once worn to help people in suffering. +-------------------------- +MaxHP +500 +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Increases damage taken from non-Demi-Human race by 10%. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 30 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +2472# +An ancient relic of war that once worn to fight Demon. +-------------------------- +MaxSP +150 +-------------------------- +Increases damage of Judex by 30%. +-------------------------- +Increases SP Consumption of Judex by 40. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 30 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +2473# +Boots that are provided only for members of the Eden Group. These are designed to fit comfortably throughout long-walks. +-------------------------- +VIT +1 +AGI +1 +-------------------------- +Increases HP Recovery Rate by 28%. +Increases SP Recovery Rate by 12%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 0 +Armor Level: 1 +Refineable: No +Can be enchanted by: +Blacksmith Thornmoc_para01,111,83,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +# +2474# +[bRO item] +# +2475# +Greaves made by purifying an Ur Rune. +-------------------------- +MaxSP +40 +-------------------------- +For each Refine Level above +7: +MaxHP +1% +-------------------------- +Type: Shoes +Defense: 32 +Weight: 90 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +2476# +Greaves made by purifying a Peuz Rune. +-------------------------- +MaxSP +40 +-------------------------- +For each Refine Level above +7: +AGI +1 +-------------------------- +Type: Shoes +Defense: 32 +Weight: 90 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +2477# +A pair of shoes that have long been known to be from the world of darkness. +-------------------------- +LUK +3 +MaxSP +30 +-------------------------- +Type: Shoes +Defense: 18 +Weight: 40 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +2478# +A famous historical assassin relic. +-------------------------- +INT +2 +FLEE +3 +-------------------------- +Type: Shoes +Defense: 18 +Weight: 40 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +2479# +A pair of shoes of the brilliant member of Archer guild known as Icarus. +-------------------------- +AGI +2 +-------------------------- +Decreases SP Consumption of Aimed Bolt by 10. +-------------------------- +Type: Shoes +Defense: 18 +Weight: 40 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Ranger +# +2480# +An ancient artifact that helps maintain clear mental focus. +-------------------------- +INT +2 +MaxSP +5% +-------------------------- +Type: Shoes +Defense: 18 +Weight: 40 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Ranger +# +2481# +Black leather boots engraved Rune. +-------------------------- +Base STR at least 90: +ATK +10 +Base STR at least 120: +ATK +10 +-------------------------- +Base INT at least 90: +MATK +3% +Base INT at least 120: +MATK +2% +-------------------------- +Type: Shoes +Defense: 5 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2482# +A magical shoes. +-------------------------- +Increases SP Recovery Rate by 10%. +-------------------------- +Enables the use of Level 1 Increase Agility. +-------------------------- +Type: Shoes +Defense: 4 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2483# +*Effects in WoE & PVP area +MDEF +1 +Decreases damage taken from Players by 2%. +-------------------------- +Type: Shoes +Defense: 30 +Weight: 75 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 95 +Swordsman and Merchant +# +2484# +*Effects in WoE & PVP area +MDEF +5 +Decreases damage taken from Players by 1%. +-------------------------- +When equipped with Siege Manteau and Siege Suit: +DEX +5 +Decreases damage taken from Players by 15%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 95 +Swordsman, Merchant, Thief, Archer, Taekwon, Star Gladiator and Ninja +# +2485# +*Effects in WoE & PVP area +MDEF +10 +Decreases damage taken from Players by 1%. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 35 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 95 +Novice, Magician, Acolyte and Soul Linker +# +2486# +Shadowy shoes made using dark forces and enchanted with a spell to protect their wearer when danger approaches. +-------------------------- +MDEF +10 +-------------------------- +Random chance to auto-cast Level 2 Cloaking (or learned Level) when receiving magical attack. +-------------------------- +Type: Shoes +Defense: 0 +Weight: 200 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 75 +All Jobs except Novice +# +2487# +A pair of shoes made from stem of tree of life. +-------------------------- +VIT +2 +MDEF +3 +MaxHP +10% +-------------------------- +Increases HP Recovery Rate by 5%. +-------------------------- +Recover 30 HP every 10 seconds. +-------------------------- +Increases recovery amount gained from Restorative items and Healing skills by 5%. +-------------------------- +Type: Shoes +Defense: 16 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +Transcendent classes +# +2488# +A pair of shoes that were blessed by Freyr, the god of Earth and the son of Njord. +His blessing would release its owner from pain. +-------------------------- +AGI +2 +-------------------------- +Increases recovery amount gained from Red Potion, Orange Potion, Yellow Potion and White Potion by 20%. +-------------------------- +When equipped with Falcon Muffler and Odin's Blessing: +AGI +3 +MaxHP +5% +MaxSP +5% +-------------------------- +Type: Shoes +Defense: 12 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +All Jobs except Novice +# +2489# +The boots worn by Vidar, son of Odin, when he killed the Fenrir Wolf. +These represent the great physical and mental strength Vidar displayed in that epic final battle. +-------------------------- +MaxHP +9% +MaxSP +9% +-------------------------- +When equipped with Vali's Manteau and Odin's Blessing: +VIT +5 +Increases HP and SP Recovery Rate by 10%. +-------------------------- +Type: Shoes +Defense: 13 +Weight: 65 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +All Jobs except Novice +# +2490# +Black leather boots engraved Rune. +-------------------------- +Base STR at least 90: +ATK +10 +Base STR at least 120: +ATK +10 +-------------------------- +Base INT at least 90: +MATK +3% +Base INT at least 120: +MATK +2% +-------------------------- +Type: Shoes +Defense: 5 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2491# +Ominous boots emitting Bangungot's revenge and powerful hatred of humans. +-------------------------- +For each Refine Level: +MDEF +1 +-------------------------- +Refine Level +14: +Increases movement speed. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: None +# +2492# +Ominous boots emitting Bangungot's revenge and powerful hatred of humans. +-------------------------- +For each Refine Level: +MDEF +1 +-------------------------- +Refine Level +12: +Increases movement speed. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: None +# +2493# +A pair of shoes rumored to be forged by Goibne in response to competition from his rival, Dulb. +-------------------------- +MaxHP +5% +MaxSP +5% +MDEF +3 +-------------------------- +Type: Shoes +Defense: 13 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 54 +All Jobs except Novice +# +2494# +A pair of feminine high heeled shoes made of fine crystal. Usually, these are worn only on special occasions. +-------------------------- +LUK +5 +MDEF +10 +-------------------------- +Type: Shoes +Defense: 5 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2495# +Aegir's shoes, it looks suppporting your capacity. +-------------------------- +When equipped by Magician, Archer or Acolyte classes: +MaxHP +(5*base Level) +-------------------------- +When equipped by Swordman, Merchant, Thief classes: +MaxSP +(2*base Level) +-------------------------- +Indestructible in battle +-------------------------- +Type: Shoes +Defense: 13 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 110 +# +2496# +Rental Item +*Effects in WoE TE area +MaxHP +150, MaxSP +150 +Increases Damage against Players by 5%. +Increases Frozen resistance by 25%. +-------------------------- +Type: Shoes +Defense: 5 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +# +2497# +Rental Item +*Effects in WoE TE area +MaxHP +200, MaxSP +100. +Increases Physical Damage against Players by 10%. +Increases Frozen resistance by 25%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Swordsman and Merchant +# +2498# +Rental Item +MDEF +5 +-------------------------- +*Effects in WoE TE area +MaxHP +100, MaxSP +200. +Increases Magical Damage against Players by 5%. +Increases Frozen resistance by 25%. +-------------------------- +Type: Shoes +Defense: 5 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Novice, Magician, Acolyte and Soul Linker +# +2499# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +2501# +A simple, soft garment that covers the head and neck. +-------------------------- +Type: Garment +Defense: 4 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2502# +A simple, soft garment that covers the head and neck. +-------------------------- +Type: Garment +Defense: 4 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2503# +A warm scarf that is worn around the neck and shoulders. +-------------------------- +Type: Garment +Defense: 8 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2504# +A warm scarf that is worn around the neck and shoulders. +-------------------------- +Type: Garment +Defense: 8 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2505# +A long, loose cape-like garment that protects its wearer from harsh weather. +-------------------------- +Type: Garment +Defense: 13 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Merchant, Thief, Taekwon Boy/Girl and Star Gladiator +# +2506# +A long, loose cape-like garment that protects its wearer from harsh weather. +-------------------------- +Type: Garment +Defense: 13 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Merchant, Thief, Taekwon Boy/Girl and Star Gladiator +# +2507# +A fancy cape said to have once been worn by marquises long ago. +-------------------------- +AGI +1 +-------------------------- +Type: Garment +Defense: 9 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +All Jobs except Novice +# +2508# +An old, worn-out cape that can protect its wearer from mystical harm, no matter how powerful it may be. +-------------------------- +MDEF +10 +-------------------------- +Indestructible in battle +-------------------------- +Type: Garment +Defense: 4 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2509# +A manteau which protects its wearer from the elements. +-------------------------- +VIT +10 +-------------------------- +When equipped with Survivor's Rod[1]: +MaxHP +300 +MATK -5% +-------------------------- +For each Refine Level of Survivor's Rod[1]: +MATK +1% +-------------------------- +For each Refine Level of Survivor's Manteau: +Decreases damage taken from Neutral elemental attacks by 3%. +-------------------------- +Type: Garment +Defense: 10 +Weight: 55 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 75 +Magician and Soul Linker classes +# +2510# +An exclusive garment for new adventurers. +-------------------------- +Type: Garment +Defense: 4 +Weight: 0.1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Novice +# +2511# +A manteau which is worn by soldier skeletons. +-------------------------- +STR +2, DEX +2, LUK +2 +INT -3, VIT -3 +AGI -4 +-------------------------- +Type: Garment +Defense: 13 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 75 +All Jobs except Novice +# +2512# +A cute, durable and lightweight manteau for beginning adventurers. +-------------------------- +Decreases damage taken from Neutral elemental attacks by 10%. +-------------------------- +Type: Garment +Defense: 7 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +Novice +# +2513# +A faint, transparent clothing decorated with a beautiful pattern worn by celestial maidens when they fly through the heavens. +-------------------------- +Type: Garment +Defense: 18 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +All Jobs except Novice +# +2514# +A pair of heavy shoulder coverings that provide effective protection in combat. +-------------------------- +Type: Garment +Defense: 25 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +Swordsman, Merchant and Thief classes +# +2515# +A robe which once helped the god Odin escape a fatal threat. +-------------------------- +When equipped with Wing Staff: +Increases movement speed. +-------------------------- +Type: Garment +Defense: 12 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 85 +Magician and Soul Linker classes +# +2516# +A muffler owned by Freya, daughter of Njord, that was often borrowed by Loki. +Wearing it makes its wearer as nimble as a falcon in flight. +-------------------------- +FLEE +15 +Perfect Dodge +5 +-------------------------- +When equipped with Fricco's Shoes and Odin's Blessing: +AGI +3 +MaxHP +5% +MaxSP +5% +-------------------------- +Type: Garment +Defense: 8 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +All Jobs except Novice +# +2517# +A manteau once owned by Vali, son of Odin. +It represents Vali's fighting spirit which allowed him to defeat Hoedr the warrior despite his blindness. +-------------------------- +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +When equipped with Vidar's Boots and Odin's Blessing: +VIT +5 +Increases HP and SP Recovery Rate by 10%. +-------------------------- +Type: Garment +Defense: 13 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +All Jobs except Novice +# +2518# +A shawl marked with ancient conjuration patterns that is one of the three keys for releasing the seal that binds Morpheus. +-------------------------- +MaxSP +10% +MDEF +3 +-------------------------- +Type: Garment +Defense: 8 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 33 +All Jobs except Novice +# +2519# +A manteau made from gray crow feathers that were enchanted through the power of Morrigan, whose incarnation is the gray crow. +-------------------------- +LUK +2 +Perfect Dodge +8 +-------------------------- +Type: Garment +Defense: 9 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 61 +All Jobs except Novice +# +2520# +Goibne's very first creation, his much prized and precious armor. +-------------------------- +VIT +1 +MDEF +2 +-------------------------- +Decreases damage taken from Ranged Physical Damage by 10%. +-------------------------- +Type: Garment +Defense: 11 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 54 +All Jobs except Novice +# +2521# +The Super Novice Guardian Angel's warm and comfortable cardigan. +-------------------------- +Increases HP Recovery Rate by 5%. +-------------------------- +When equipped with Angel's Kiss, Angelic Protection, Angel's Reincarnation and Angelic Guard: +MaxHP +900 +MaxSP +100 +Random chance to auto-cast Level 1 Assumptio when receiving physical damage. +-------------------------- +Type: Garment +Defense: 6 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +Novice +# +2522# +Lightweight armor made from 100% real cotton that is actually quite durable. +-------------------------- +MDEF +1 +-------------------------- +When equipped with Pantie: +AGI +5 +FLEE +10 +-------------------------- +Type: Garment +Defense: 5 +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: None +# +2523# +Lightweight armor made from 100% real cotton that is actually quite durable. +-------------------------- +MDEF +1 +-------------------------- +When equipped with Pantie: +AGI +5 +FLEE +10 +-------------------------- +Type: Garment +Defense: 5 +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: None +# +2524# +A manteau that is worn by the Valkyries, Odin's battle maidens. +-------------------------- +When equipped by Mage, Archer and Acolyte classes: +Perfect Dodge +5 +Increases Perfect Dodge by (Refine Level*2). +-------------------------- +When equipped by Swordman, Merchant and Thief classes: +Reflects 5% melee damage back to enemies. +Increases percentage of reflect damage by (Refine Level*2). +-------------------------- +When equipped with Valkyrie Helm, Valkyrie Armor and Valkyrie Shoes: +All Stats +1 +-------------------------- +Indestructible in battle +-------------------------- +Type: Garment +Defense: 10 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Transcendent classes except Novice +# +2525# +A fancy cape said to have once been worn by marquises long ago. +-------------------------- +AGI +1 +-------------------------- +Type: Garment +Defense: 9 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +All Jobs except Novice +# +2526# +A coat made from 300 scales of dragon. +-------------------------- +Type: Garment +Defense: 14 +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +2527# +A garment that's so warm, it makes the wearer feel as if a dragon is breathing on him. +-------------------------- +Decreases damage taken from Dragon race by 15%. +-------------------------- +When equipped with Dragon Slayer, Dragon Killer or Gae Bolg: +Increases Physical Damage against enemies of Dragon race by 5%. +-------------------------- +Type: Garment +Defense: 16 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 48 +All Transcendent classes except Novice +# +2528# +A scarf made from the highest quality wool that feels so comforting and cozy when you're exhausted. +-------------------------- +MDEF +4 +-------------------------- +When equipped with Tidal Shoes: +MaxHP +10% +Increases HP Recovery Rate by 5%. +-------------------------- +Type: Garment +Defense: 11 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 55 +All Transcendent classes except Novice +# +2529# +A symbol worn by runners that just makes you want to sprint when you wear it. +-------------------------- +AGI +2 +-------------------------- +When equipped with Black Leather Boots: +FLEE +10 +-------------------------- +Type: Garment +Defense: 13 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 55 +All Transcendent classes except Novice +# +2530# +A symbol worn by runners that just makes you want to sprint when you wear it. +-------------------------- +AGI +2 +-------------------------- +When equipped with Black Leather Boots: +FLEE +10 +-------------------------- +Type: Garment +Defense: 13 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 55 +All Transcendent classes except Novice +# +2531# +A mysterious cape with a protective spell that can convert the wearer's magic defense to physical defense. +-------------------------- +Random chance to Reduces physical damage taken by 20% and increases magical damage taken by 20% for 2 seconds when wearer receiving magical attack. +-------------------------- +Type: Garment +Defense: 13 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Transcendent Swordman, Merchant and Thief +# +2532# +A mysterious cape with a protective spell that can convert the wearer's physical defense to magic defense. +-------------------------- +MDEF +3 +-------------------------- +Random chance to decrease magical damage taken by 20% and decrease DEF by 20% for 2 seconds when receiving magical damage. +-------------------------- +Type: Garment +Defense: 8 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Transcendent Magician, Acolyte and Archer +# +2533# +Rental Item +Manteau of Freya, thin like a feather. +-------------------------- +Decreases damage taken from Demi-Human race by 15%. +-------------------------- +When equipped with Freya Crown, Freya Boots and Freya Overcoat: +MaxHP +20% +Prevents Frozen status. +Decreases damage taken from Demi-Human race by 10%. +Enables the use of Level 10 Frost Nova. +-------------------------- +Type: Garment +Defense: 10 +Refineable: No +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2534# +A cloak from Guild of Traveler +-------------------------- +FLEE +17 +-------------------------- +Decreases damage taken from physical attack by 17%. +-------------------------- +Type: Garment +Defense: 10 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2535# +Rental Item +Cloak that increase possibility to survive in extreme condition. +-------------------------- +VIT +10 +MDEF +10 +-------------------------- +When equipped with Survivor's Rod: +MATK +5% +Decreases damage taken from Neutral elemental attacks by 25% +-------------------------- +Type: Garment +Defense: 17 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Magician and Soul Linker classes +# +2536# +Lucifer's skin, cursed by the devil's language. +It can be worn as a robe. +-------------------------- +MaxHP +200 +MDEF +2 +FLEE +10 +-------------------------- +Type: Garment +Defense: 7 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +All Jobs except Novice +# +2537# +A manteau with an endless dark shape waving near it. Only those who overcome fear can wear this manteau. +-------------------------- +MaxHP +100 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Increases Physical Damage against enemies of Satan Morocc by 10%. +-------------------------- +When equipped with Diabolus Boots: +MaxHP +6% +-------------------------- +Type: Garment +Defense: 15 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +2538# +A dignified, splendid Manteau that is provided to any warrior who brings great honor from the battlefield. +-------------------------- +MaxHP +50 +MDEF +1 +-------------------------- +Decreases damage taken from Demi-Human race by 1%. +-------------------------- +Type: Garment +Defense: 28 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +Swordsman, Merchant, Thief Classes, Ninja, Taekwon Boy/Girl and Star Gladiator +# +2539# +A Manteau that is provided to any superior commander who has the outstanding ability to support their base. +-------------------------- +MaxHP +50 +MDEF +1 +-------------------------- +Decreases damage taken from Demi-Human race by 1%. +-------------------------- +Type: Garment +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +Magician, Acolyte, Archer, Soul Linker +# +2540# +A Manteau imbued with tension and the mysterious spirit of desolate wilderness. +-------------------------- +MaxHP +50 +MDEF +1 +-------------------------- +Decreases damage taken from Demi-Human race by 1%. +-------------------------- +Type: Garment +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +Gunslinger +# +2541# +A wing made of all lights that exist in the world. It's name means \ +. +-------------------------- +FLEE +30 +MDEF +5 +-------------------------- +Decreases damage taken from melee physical attacks of all elements by 30%. +-------------------------- +Enables the use of Level 1 Teleport. +-------------------------- +Indestructible in battle +-------------------------- +Type: Garment +Defense: 40 +Weight: 40 +Armor Level: 1 +Tier: 7 +-------------------------- +Requirement: +Base Level 94 +# +2542# +A manteau of Flame that Nacht Sieger wore. +-------------------------- +MaxHP +5% +MDEF +2 +MATK +1% +-------------------------- +Increases Physical Damage against enemies of Fire elemental by 2%. +-------------------------- +Type: Garment +Defense: 16 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +All Transcendent classes except Novice +# +2543# +Rental Item +A Soft Manteau that has been blessed by a Wind Fairy. +It is said to allow the wearer into be protected from danger. +-------------------------- +FLEE +13 +Perfect Dodge +1 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 13%. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Garment +Defense: 33 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +2544# +Leather of a Tendrilion with plant stems sticking out of it. +-------------------------- +Decreases damage taken from Earth and Water elemental attacks by 5%. +-------------------------- +Decreases damage taken from Brute and Plant race by 5%. +-------------------------- +Type: Garment +Defense: 14 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +2545# +An outfit for priests in order to protect the exorcists at Prontera Church. +-------------------------- +MDEF +3 +-------------------------- +Random chance to auto-cast Level 1 Heal on wearer when receiving melee physical attacks. +If higher Level of Heal is learned, it will use the Level the wearer has learned. +-------------------------- +Type: Garment +Defense: 10 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +High Priest +# +2546# +A manteau received as a gift from Comodo Environmental Commission. +It seems to match perfect with Comodo beach. +-------------------------- +STR +1 +INT +1 +-------------------------- +Decreases damage taken from Fire elemental attacks by 10%. +-------------------------- +When equipped with Beach Sandals: +FLEE +5 +-------------------------- +Type: Garment +Defense: 0 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: None +# +2547# +Rental Item +DEX +2 +MDEF +1 +FLEE +10 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 10%. +-------------------------- +Type: Garment +Defense: 11 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2548# +Rental Item +A warm scarf that is worn around the neck and shoulders. +-------------------------- +MaxHP +10% +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Decreases damage taken from Water, Fire, Holy and Shadow elemental attacks by 5%. +-------------------------- +Type: Garment +Defense: 22 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 95 +All Jobs except Novice +# +2549# +A garment that only a champion of battlefield can wear. +-------------------------- +MaxHP +5% +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Type: Garment +Defense: 3 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 81 +All Jobs except Novice +# +2550# +A nice muffler which increase your concentration by protecting you from wild wind around a fishing spot. +-------------------------- +Decreases the fishing casting time by 2 seconds. +-------------------------- +Type: Garment +Defense: 0 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2551# +A symbol worn by runners that just makes you want to sprint when you wear it. +-------------------------- +AGI +2 +-------------------------- +When equipped with Black Leather Boots: +FLEE +10 +-------------------------- +Type: Garment +Defense: 4 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 55 +All Transcendent classes except Novice +# +2552# +A mysterious cape with a protective spell that can convert the wearer's physical defense to magic defense. +-------------------------- +MDEF +3 +-------------------------- +Random chance to decrease magical damage taken by 20% and decrease DEF by 20% for 2 seconds when receiving magical damage. +-------------------------- +Type: Garment +Defense: 3 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Transcendent Magician, Archer and Acolyte +# +2553# +Manteau from a Draco's mane. +-------------------------- +AGI +1 +MDEF +5 +-------------------------- +When equipped with Dragon Vest: +AGI +5 +FLEE +15 +-------------------------- +Type: Garment +Defense: 14 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +All Transcendent classes except Novice +# +2554# +Made from a scale of Nidhoggur's Shadow, it still possesses its strong power. +-------------------------- +Increases MaxSP based on Refine Level and wearer's Base Level. +MDEF +3 +-------------------------- +Decreases damage taken from all elemental attacks by 7%. +-------------------------- +Random chance to absorb 1% damage inflicted to SP. +-------------------------- +Type: Garment +Defense: 25 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +All Transcendent classes except Novice +# +2555# +Rental Item +A spiritual scarf granted by Freya. It appears very sturdy, +but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +FLEE +15 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +Type: Garment +Defense: 0 +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +2556# +Rental Item +A spiritual scarf granted by Freya. It appears very sturdy, +but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +FLEE +15 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +Type: Garment +Defense: 0 +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +2557# +Rental Item +A spiritual scarf granted by Freya. It appears very sturdy, +but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +FLEE +15 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +Type: Garment +Defense: 0 +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +2558# +Rental Item +A spiritual scarf granted by Freya. It appears very sturdy, +but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +FLEE +15 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +Type: Garment +Defense: 0 +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +2559# +Manto, tailored for those who devoted his life to the protection of people. Protects from the wind. +-------------------------- +Reduces Neutral elemental damage by 10% +Variable Cast Time -3% +-------------------------- +If refine rate is 7 or higher +Reduces Neutral elemental damage by 5% +-------------------------- +Type: Garment +Defense: 9 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2560# +A manteau which is only for Eden Group members. It is designed to flatter anyone's backside. +-------------------------- +Reduces damage taken from Neutral property attacks by 5%. +-------------------------- +When Base Level is 30 or higher: +ASPD +1% +When Base Level is 60 or higher: +ASPD +1% +When Base Level is 90 or higher: +ASPD +2% +-------------------------- +Cannot be refined. +-------------------------- +Class: Manteau +Defense: 20 +Weight: 0 +-------------------------- +Required Level: 1 +Jobs: All jobs +# +2561# +A hood molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +-------------------------- +Type: Garment +Defense: 9 +Weight: 10 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: None +# +2562# +A muffler molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +-------------------------- +Type: Garment +Defense: 13 +Weight: 20 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: +All Jobs except Novice +# +2563# +A manteau molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +-------------------------- +Type: Garment +Defense: 18 +Weight: 30 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: +Swordsman, Merchant, Thief, Taekwon and Star Gladiator +# +2564# +It has a message inscribed - A symbol of valor made with the tail of a savage beast. +-------------------------- +Indestructible in battle +-------------------------- +Type: Garment +Defense: 16 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 75 +# +2565# +A colorful beach towel used as protection from the sun. +-------------------------- +MDEF +3 +FLEE +7 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 7%. +-------------------------- +Type: Garment +Defense: 2 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2566# +Rental Item +A wing made of all lights that exist in the world. It's name means \ +. +-------------------------- +FLEE +15 +MDEF +2 +-------------------------- +Decreases damage taken from melee physical attacks of all elements by 15%. +-------------------------- +Enables the use of Level 1 Teleport. +-------------------------- +Indestructible in battle +-------------------------- +Type: Garment +Defense: 20 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 47 +# +2568# +A red scarf worn out from long use. +-------------------------- +AGI +1 +-------------------------- +Increases damage of Cross Impact by 5%. +-------------------------- +Type: Garment +Defense: 10 +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +2569# +An ancient relic of war that once worn to help people in suffering. +-------------------------- +Perfect Dodge +5 +-------------------------- +Random chance to auto-cast Level 1 Renovatio on wearer when wearer receiving physical or magical attack. +-------------------------- +Type: Garment +Defense: 12 +Weight: 40 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +2570# +An ancient relic of war that once worn to fight Demon. +-------------------------- +FLEE +5 +-------------------------- +Random chance to auto-cast Level 2 Oratio when wearer receiving physical or magical attack. +If a higher Level of this skill is learned then that Level will activate. +-------------------------- +Type: Garment +Defense: 12 +Weight: 30 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +2571# +A manteau which is only for Eden Group members. It is designed to flatter anyone's backside. +-------------------------- +FLEE +12 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 10%. +-------------------------- +Type: Garment +Defense: 18 +Weight: 0 +Armor Level: 1 +Refineable: No +Can be enchanted by: +Blacksmith Thornmoc_para01,111,83,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +# +2572# +A shoulder with mechanical part. Amplifies the attack power of its wearer. +Very heavy though. +-------------------------- +ATK +15 +-------------------------- +Type: Garment +Defense: 4 +Weight: 300 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +2573# +A pair of white wings from an archangel. +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2574# +A manteau created from Ur Runestones. +-------------------------- +MaxHP +2% +-------------------------- +Decreases damage taken from Neutral elemental attacks by 10%. +-------------------------- +Type: Garment +Defense: 20 +Weight: 60 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +2575# +A manteau created by refining Peuz runestones. +-------------------------- +FLEE +10 +Critical +10 +-------------------------- +Type: Garment +Defense: 16 +Weight: 60 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +2576# +A backpack befitting of any hero. +-------------------------- +Enables Level 1 Hidding. +-------------------------- +If upgrade level is +7 or higher: +-------------------------- +Atk + 20 if the users base Str is 90 or higher. +-------------------------- +Matk + 30 if the users base Int is 90 or higher. +-------------------------- +Aspd + 8% if the users base Agi is 90 or higher. +-------------------------- +Increases long-ranged damage on targets by 5% if the users base Dex is 90 or higher. +-------------------------- +Increases critical damage on targets by 10% if the users base Luk is 90 or higher. +-------------------------- +Reduces damage taken from Neutral property attacks by 5% if the users base Vit is 90 or higher. +-------------------------- +If upgrade level is +9 or higher: +-------------------------- +Additional Atk + 10 if the users base Str is 90 or higher. +-------------------------- +Additional Matk + 20 if the users base Int is 90 or higher. +-------------------------- +Aspd + 1 if the users base Agi is 90 or higher. +-------------------------- +Increases long-ranged damage on targets by an additional 5% if the users base Dex is 90 or higher. +-------------------------- +Increases critical damage on targets by an additional 5% if the users base Luk is 90 or higher. +-------------------------- +Reduces damage taken from Neutral property attacks by an additional 5% if the users base Vit is 90 or higher. +-------------------------- +Type: Garment +Defense: 20 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2577# +A manteau that contains the reliquery remains of an ancient Assassin. +-------------------------- +FLEE +12 +-------------------------- +For each Refine Level: +Critical +1 +-------------------------- +Type: Garment +Defense: 13 +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +2578# +An ancient relic that belonged to an unknown Assassin. +-------------------------- +For each Refine Level: +FLEE +2 +ATK +2 +-------------------------- +Type: Garment +Defense: 13 +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +2579# +The embroidered shawl that can enhance the concentration of magic. +-------------------------- +MaxSP +3% +MDEF +3 +-------------------------- +Decreases SP Consumption by 5%. +-------------------------- +Refine Level +6: +MaxSP +3% +-------------------------- +Type: Garment +Defense: 8 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: None +# +2580# +A manteau of brilliant member of archer guild known as Icarus. +-------------------------- +AGI +2 +FLEE +10 +-------------------------- +Random chance to increase FLEE by 20 for 7 seconds when dealing physical damage. +-------------------------- +Type: Garment +Defense: 15 +Weight: 20 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Ranger +# +2581# +A cloak that helps maintain clear mental focus. +-------------------------- +INT +2 +-------------------------- +Increases Perfect Dodge by 1 for every Refine Level above Level 6. +-------------------------- +Type: Garment +Defense: 15 +Weight: 20 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Ranger +# +2582# +This wide Manteau carries with it the meaning of Salvation. +-------------------------- +Enables the use of Level 1 Cicada Skin Shed. +Increases Cicada Skin Shed skill cooldown by 30 secs. +-------------------------- +Increases SP Consumption by 100%. +Drains SP by 1200 when this garment unequipped. +-------------------------- +Type: Garment +Defense: 1 +Weight: 40 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 130 +Warlock and Archbishop +# +2583# +A cape made from the remain of saint's shrud. Able to protect wearer from darkness. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Demon and Undead race by 5%. +-------------------------- +Type: Garment +Defense: 5 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +2584# +Coat Wanderer puts on. Designed not to disturb fast movements. +Complete Avoid + 1, Unable to destroy. +-------------------------- +When equipped with Wanderer's Sakkat: +if refine lv is 5 or higher: +invoke Double Attack 1 Lv. +-------------------------- +If refine lv is 7 or higher: +invoke Double Attack 5 Lv. (In case learned higher lv, invoke as learned) +-------------------------- +Type: Garment +Defense: 8 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +2585# +A magic muffler. +-------------------------- +Increases SP Recovery Rate by 10%. +-------------------------- +Type: Garment +Defense: 4 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2586# +*Effects in WoE & PVP area +MDEF +1 +Decreases damage taken from Players by 2%. +-------------------------- +When equipped with Siege Boots and Siege Suit: +DEX +5 +Decreases damage taken from Players by additional 15%. +-------------------------- +Type: Garment +Defense: 32 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 95 +All Jobs except Novice +# +2587# +*Effects in WoE & PVP area +MDEF +10 +Decreases damage taken from Players by 1%. +-------------------------- +Type: Garment +Defense: 15 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 95 +# +2588# +An old, worn-out cape that can protect its wearer from mystical harm, no matter how powerful it may be. +-------------------------- +MDEF +10 +-------------------------- +Indestructible in battle +-------------------------- +Type: Garment +Defense: 4 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2589# +A pair of black wings from a fallen angel. +-------------------------- +Luk +2 +-------------------------- +ATK +1 for every 20 base STR. +-------------------------- +MATK +1 for every 20 base INT. +-------------------------- +Aspd + 1% for every 20 base AGI. +-------------------------- +Increases long-ranged damage on targets by 1% for every 20 base DEX. +-------------------------- +Increases critical damage on targets by 1% for every 20 base LUK. +-------------------------- +Reduces damage taken from Neutral property attacks by 1% for every 20 base VIT. +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2590# +Clothes tailored from Buwaya's kidnapping sack. Full of vindictive spirits that cannot rest in peace. +-------------------------- +For each 3 Refine Levels: +Increases recovery amount gained from Healing skills and Restorative items by 1%. +-------------------------- +Decreases damage taken from Earth, Water, Fire and Wind elemental by 10%. +-------------------------- +Type: Garment +Defense: 8 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2591# +Clothes tailored from Buwaya's kidnapping sack. Full of vindictive spirits that cannot rest in peace. +-------------------------- +For each 3 Refine Levels: +Increases recovery amount gained from Healing skills and Restorative items by 1%. +-------------------------- +Decreases damage taken from Earth, Water, Fire and Wind elemental by 10%. +-------------------------- +Type: Garment +Defense: 8 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2592# +A red manteau of Boss of Domovoi tribe. +-------------------------- +Enables the use of Level 1 Cloaking. +-------------------------- +Increases damage taken from monsters of Demi-Human race by 5%. +-------------------------- +When equipped with Drooping Domovoi: +MaxHP +3% +RDecreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Garment +Defense: 3 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +2593# +A mysterious manteau imbued with the power of water. +-------------------------- +Decreases damage taken from Water elemental by 5%. +-------------------------- +Increases damage taken from monsters of Brute race by 5%. +-------------------------- +When equipped with Froid Shield: +For each Refine Level of Froid Manteau: +Decreases damage taken from Brute race by 1%. +-------------------------- +For each Refine Level of Froid Shield: +Increases Physical Damage against enemies of Water elemental by 1%. +-------------------------- +When equipped with Froid Shoes: +Increases Physical Damage against enemies of Water elemental by 5%. +-------------------------- +For each Refine Level of Froid Manteau: +MaxHP +1% +MaxSP +1% +-------------------------- +When VIP status active: +FLEE +20 +-------------------------- +Type: Garment +Defense: 20 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +2594# +A simple cloak made of wrapped cloth. +-------------------------- +FLEE +10 +-------------------------- +Refine Level +6: +FLEE +2 +Decreases damage taken from Neutral elemental attacks by 2%. +-------------------------- +Refine Level +8: +FLEE +3 +Decreases damage taken from Neutral elemental attacks by 3%. +-------------------------- +Type: Garment +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2595# +A mysterious manteau with the power of darkness. +-------------------------- +Decreases damage taken from Shadow elemental by 5%. +-------------------------- +Increases damage taken from monsters of Undead race by 5%. +-------------------------- +When equipped with Sombre Shield: +For each Refine Level of Sombre Manteau: +Decreases damage taken from Undead race by 1%. +-------------------------- +For each Refine Level of Sombre Shield: +Increases Physical Damage against enemies of Shadow elemental by 1%. +-------------------------- +When equipped with Sombre Shoes: +Increases Physical Damage against enemies of Shadow elemental by 5%. +-------------------------- +For each Refine Level of Sombre Manteau: +MaxHP +1% +MaxSP +1% +-------------------------- +When VIP status active: +FLEE +20 +-------------------------- +Type: Garment +Defense: 20 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +2596# +A magical manteau with elemental resistance on it. +-------------------------- +Decreases damage taken from Fire elemental by 5%. +-------------------------- +Increases damage taken from monsters of Demon race by 5%. +-------------------------- +When equipped with Sharel Shield: +For each Refine Level of Sharel Manteau: +Decreases damage taken from Demon race monsters by 1%. +-------------------------- +For each Refine Level of Sharel Shield: +Increases Physical Damage against enemies of Fire elemental by 1%. +-------------------------- +When equipped with Sharel Shoes: +Increases Physical Damage against enemies of Fire elemental by 5%. +-------------------------- +For each Refine Level of Sharel Manteau: +MaxHP +1% +MaxSP +1% +-------------------------- +When VIP status active: +FLEE +20 +-------------------------- +Type: Garment +Defense: 20 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +2597# +The muffler is full with blood. +-------------------------- +Critical damage +3%. +-------------------------- +When equipped with Critical Ring: +Critical damage +5%, CRI+10. +-------------------------- +If refined to +5 and above: +Increases Critical Damage by 3%. +-------------------------- +If refined to +7 and above: +Increases Critical Damage by 4%. +-------------------------- +Type: Garment +Defense: 10 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +2598# +A magical cloak imbued with the power of immortality. +-------------------------- +Decreases damage taken from Undead elemental by 5%. +-------------------------- +Increases damage taken from monsters of Demi-Human race by 5%. +-------------------------- +When equipped with L'Amour Shield: +For each Refine Level of L'Amour Manteau: +Decreases damage taken from Demi-Human race by 1%. +-------------------------- +For each Refine Level of L'Amour Shield: +Increases Physical Damage against enemies of Undead element by 1%. +-------------------------- +When equipped with L'Amour Shoes: +Increases Physical Damage against enemies of Undead element by 5%. +-------------------------- +For each Refine Level of L'Amour Manteau: +MaxHP +1% +MaxSP +1% +-------------------------- +When VIP status active: +FLEE +20 +-------------------------- +Type: Garment +Defense: 20 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +2599# +Goibne's very first creation, his much prized and precious armor. +-------------------------- +VIT +1 +MDEF +2 +-------------------------- +Decreases damage taken from Ranged Physical Damage by 10%. +-------------------------- +Type: Garment +Defense: 11 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 54 +All Jobs except Novice +# +2600# +Sachet with pleasant aroma of sheep. +-------------------------- +All Stats +1 +-------------------------- +Enables the use of Level 1 Holy Light. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2601# +A metal band worn on the finger which strangely increases its wearer's strength. +-------------------------- +STR +2 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +2602# +Jewelry, worn on the earlobe, that increases its wearer's intelligence. +-------------------------- +INT +2 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +2603# +A necklace once worn by an ancient queen that enhances the vitality of whoever wears it. +-------------------------- +VIT +2 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +2604# +A specially made covering worn on the hand to improve one's grip on weapons. +-------------------------- +DEX +2 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +2605# +Mystic jewelry that attaches to clothing by means of a pin. +-------------------------- +AGI +2 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +2606# +Rental equipment customized for beginners. +Let's try it on. +-------------------------- +Critical +7 +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Cannot be sold and stored. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2607# +A versatile accessory that you can attach to pretty much anything. +-------------------------- +MaxSP +10 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2608# +A string of beads used to count the number of repetitions that prayers are recited. +-------------------------- +LUK +2 +MDEF +5 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +2609# +A weird ring adorned with a skull in which the words, \ + are engraved. Giving this as a gift might send a mixed message. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2610# +A fairly common ring made of gold. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2611# +A simple, modest ring fashioned out of silver. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2612# +A quaint, pretty ring made of wildflowers. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2613# +A ring adorned with a large \ +, the rock known to be a girl's best gift. Sadly, these so-called diamonds fetch a hefty price. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2614# +An accessory modeled after the eye of Dullahan. +-------------------------- +Decreases damage taken from Undead elemental and Demon race monsters by 4%. +-------------------------- +Prevents Poison status. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +All Jobs except Novice +# +2615# +A strange ring that curiously raises its wearer's defense. +-------------------------- +DEF +5 +MDEF +5 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +All Jobs except Novice +# +2616# +An esoteric ring which enables its wearer into amplify his hidden power. +-------------------------- +Critical +5 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +All Jobs except Novice +# +2617# +A glove blessed with holiness that increases its wearer's intelligence. +-------------------------- +INT +1 +-------------------------- +Type: Accessory +Defense: 1 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 35 +All Jobs except Novice +# +2618# +A leash that wore by Matyr. +-------------------------- +AGI +1 +-------------------------- +Type: Accessory +Defense: 1 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 35 +All Jobs except Novice +# +2619# +A finger accessory for archers which helps improve their accuracy. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +Archer +# +2620# +An exclusive ring for the Thief and Ninja class. +-------------------------- +Base STR at least 90: +HIT +10 +FLEE +10 +-------------------------- +Base AGI at least 90: +ATK +10 +Critical +10 +-------------------------- +When equipped with Black Cat: +HIT +3 +Decreases Variable Casting Time by 3%. +Increases Physical Damage against enemies of Large size by 8%. +-------------------------- +When equipped with Cold Heart: +Increases Attack Speed (Decreases After Attack Delay by 3%). +Increases Physical Damage against enemies of Medium size by 8%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Thief and Ninja +# +2621# +An ancient ring. +-------------------------- +STR +1 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +All Jobs except Novice +# +2622# +An ancient earring. +-------------------------- +INT +1 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +All Jobs except Novice +# +2623# +An ancient necklace. +-------------------------- +VIT +1 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +All Jobs except Novice +# +2624# +An ancient mitten. +-------------------------- +DEX +1 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +All Jobs except Novice +# +2625# +An ancient brooch. +-------------------------- +AGI +1 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +All Jobs except Novice +# +2626# +An ancient rosary. +-------------------------- +LUK +1 +MDEF +3 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +All Jobs except Novice +# +2627# +A simple, very practical belt that has little fashion value. +-------------------------- +Type: Accessory +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 25 +# +2628# +An easy to wear bracelet made just for young Novices. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Novice +# +2629# +Legendary Belt rumored to be owned by Thor the god of thunder, which increases its wearer's strength. +-------------------------- +STR +40 +MDEF +7 +-------------------------- +For each 5 Base Level: +STR +1 +-------------------------- +Base STR at least 120: +Increases Physical Damage against enemies of Boss class by 10%. +-------------------------- +Type: Accessory +Defense: 2 +Weight: 800 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 94 +# +2630# +Legendary necklace worn by Goddess Freija. It is an accessory of Gods that provide multiple abilities to its casters. +-------------------------- +STR +6, AGI +6, VIT +6 +INT +10, LUK +10 +MDEF +5 +-------------------------- +Increases Healing skills effectiveness by 6%. +-------------------------- +Type: Accessory +Defense: 1 +Weight: 150 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 94 +# +2631# +A ring that is given to a baby that becomes a year old. +-------------------------- +All Stats +5 +-------------------------- +Type: Accessory +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +2634# +A wedding ring for a Groom which symbolizes ever-lasting love. +# +2635# +A wedding ring for a Bride which symbolizes ever-lasting trust. +# +2636# +A beautiful gold ring that was made for Christmas. +Someone's name is engraved on it. +-------------------------- +Weight: 10 +# +2637# +A beautiful silver ring that was made for Christmas. +Someone's name is engraved on it. +-------------------------- +Weight: 10 +# +2638# +An incense bag which is carried to avoid bad things. +-------------------------- +STR +1 +LUK +1 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2639# +An incense bag which is carried to ward off evil. +-------------------------- +INT +1 +AGI +1 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2640# +A mysterious ring rumored to be worn by Kafra Employees. +-------------------------- +STR +1, AGI +1, INT +1, LUK +1 +MDEF +1 +-------------------------- +Type: Accessory +Defense: 1 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2641# +A fashionable hip sack which is ideal for merchants who have to carry many goods with them. +-------------------------- +STR +2 +-------------------------- +Type: Accessory +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Merchant +# +2642# +A beautiful golden ring engraved with the words, \ +. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2643# +A beautiful golden ring engraved with the words, \ +. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2644# +A captivatingly beautiful artifact rewarded by the gods to a chosen warrior. +However, it seems to be more than just a voucher that grants entrance into Valhalla... +-------------------------- +MATK +5% +ATK +5% +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2645# +An enchanted ring that was forged by the dead under the moonlight. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +Thief Classes, Ninja +# +2646# +A carnation bouquet given as gifts to mothers. +-------------------------- +All Stats +3 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2647# +An extremely rare jewel attached to a solid silver chain bracelet symbolizing strength, growth and energy. +-------------------------- +All Stats +5 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2648# +A ring, enchanted with the power of the Fate Stone, that is one of the three keys for theseal which binds Morpheus. +-------------------------- +INT +1 +MaxSP +5% +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 33 +All Jobs except Novice +# +2649# +A bracelet, rumored to be a memento of Morpheus's beloved, that is one of the three keys for the seal which binds Morpheus. +-------------------------- +INT +1 +MaxSP +5% +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 33 +All Jobs except Novice +# +2650# +The belt that Morrigan kept as a memento of CuChulain after he perished in battle. +-------------------------- +ATK +5 +Critical +3 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 61 +All Jobs except Novice +# +2651# +The pendant that ChuChulain gave to Morrigan when they were both still in love. +It's symoblic of her endless devotion, as she stood by his side even after he had abandoned her. +-------------------------- +STR +2 +Critical +3 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 61 +All Jobs except Novice +# +2652# +A cursed brooch which, ironically, was owned by the goddess of fortune. +-------------------------- +Critical +6 +-------------------------- +Random chance to inflict Curse status on wearer when dealing physical damage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +2653# +Not much is known about the mysterious Sacrifice Ring... +# +2654# +Belt equipped by a famous ninja. The pattern has a mysterious glow and it seems to have certain magical power. +-------------------------- +STR +1 +AGI +1 +MDEF +1 +-------------------------- +When equipped with Ninja Suit: +MaxHP +300 +Decreases SP Consumption by 20%. +-------------------------- +Type: Accessory +Defense: 1 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +Thief and Ninja +# +2655# +A heavy steel ball attached to a shackle that was supposed to keep prisoners from escaping in an earlier era. +However, prisoners outfitted with this ball managed to use it as a weapon. +-------------------------- +When equipped with Shackle: +ATK +50 +Decreases damage taken from Zombie Prisoner and Skel Prisoner by 20%. +-------------------------- +Type: Accessory +Weight: 400 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2656# +A mysterious, ancient artifact that can endow normal armor with great defensive power, although it does make the wearer feel very sluggish. +-------------------------- +MaxHP +50 +DEF +1 +-------------------------- +When equipped with Padded Armor: +DEF +5 +MaxHP +150 +-------------------------- +Type: Accessory +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +# +2657# +A pass for Regenschirm Laboratory employees that should allow you access around the lab. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2658# +A bracelet on which the Hellion's jewel is affixed in order to seal its evil power. +-------------------------- +MaxHP +10 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2659# +An object which seems to be part of the Vesper. Possesses a mysterious power that enables its owner to clear his mind. +-------------------------- +INT +2 +MaxSP +5% +MDEF +3 +-------------------------- +Type: Accessory +Defense: 1 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +2660# +An object which seems to be part of the Vesper. Possesses a mysterious power that grants great strength to its owner. +-------------------------- +STR +3 +ATK +10 +MDEF +3 +-------------------------- +Type: Accessory +Defense: 1 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +2661# +An object which seems to be part of the Vesper. Possesses a mysterious power that grants agility to he who wears it. +-------------------------- +AGI +3 +FLEE +5 +MDEF +3 +-------------------------- +Type: Accessory +Defense: 1 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +2662# +An object which seems to be part of the Vesper. Possesses a mysterious power that endows the owner with greater accuracy and dexterity. +-------------------------- +DEX +3 +HIT +10 +MDEF +3 +-------------------------- +Type: Accessory +Defense: 1 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +2663# +A glove made from a strange material. +It allows you to hold your weapon with a firm grip, increasing the strength and accuracy of attacks. +-------------------------- +STR +1 +HIT +15 +-------------------------- +Type: Accessory +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 75 +# +2664# +To be a fashionista you need this Scarf to complete your style. +-------------------------- +INT +1 +DEX +2 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 75 +All Jobs except Novice +# +2665# +A symbol of faith to servants of God, this ring possesses a holy power that can repel evil. +-------------------------- +Increases experience gained from defeating Undead elemental and Demon race monsters by 5%. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +Acolyte +# +2666# +A coconut oil lamp in which a dim light that repels evil is burning. +-------------------------- +STR +2 +-------------------------- +Increases resistance against Blind status by 10%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2667# +A glove that enhance the wearer's concentration, enabling him to perform amazing feats of hitting accuracy. +-------------------------- +DEX +1 +HIT +5 +Critical +5 +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +All Jobs except Novice +# +2668# +Celebration item for Woman's day. +-------------------------- +All Stats +3 +-------------------------- +Increases SP Recovery Rate by 20%. +-------------------------- +Type: Accessory +Defense: 1 +Weight: 150 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 94 +# +2669# +A gold necklace with the letters RJC engraved on it. Made to celebrate some event. +-------------------------- +MaxSP +10 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2670# +A ring made from a mind longing for friend. +It shines beautifully with the power of two people's friendship. +-------------------------- +FLEE +5 +-------------------------- +Type: Accessory +Defense: 1 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +2671# +A thimble for archers that enhances their shooting accuracy. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +Archer +# +2672# +A ring with 3rd Anniversary engraved on it. +This ring will be destroyed when the 3rd anniversary event ends. +-------------------------- +All Stats +5 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +2673# +The one who bears this ring will gain powers that he did not possess before. +-------------------------- +ATK +10 +Increases SP Recovery Rate by 3%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 48 +All Jobs except Novice +# +2674# +A special gold ring engraved with the words Warrior of Rune Midgard. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2675# +Lord Ring +-------------------------- +All Stats +3 +-------------------------- +Type: Accessory +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +2676# +A special earring given for a mission to get a Crystal monster. +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +2677# +A beautiful ring imbued with strange spiritual powers that result in surprising effects when worn with the right items. +-------------------------- +DEX +1 +INT +2 +-------------------------- +When equipped with Wizardry Staff or Soul Staff: +DEX +2 +MATK +6% +Decreases Variable Casting Time by a percentage according to the Staff's Refine Level. +-------------------------- +When equipped with Divine Cross: +DEX +2 +MATK +10% +Decreases damage taken from Undead elemental and Demon race monsters by 10%. +-------------------------- +When equipped with Clip or Rosary: +Increases damage of Magnus Exorcismus by 30%. ++50% Heal damage on Undead race. +Increases SP Recovery Rate by 9%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2678# +A ring imbued with the power of the fire spirit king, which can be used to strengthen the wearer's weapon. +This ring forms a matching set with the Ring of Resonance. +-------------------------- +VIT +1 +STR +2 +ATK +15 +-------------------------- +Decreases damage taken from Fire elemental attacks by 10%. +-------------------------- +Random chance to auto-cast various skills when dealing physical damage. +When equipped with Ring of Resonance, this ring adds the Auto Spell ability. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +2679# +A ring that resonates with the Ring of Flame Lord together, they form a matching set. +-------------------------- +VIT +1 +AGI +2 +MDEF +2 +-------------------------- +Random chance to auto-cast various skills while receiving physical attack. +-------------------------- +Type: Accessory +Defense: 2 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +2680# +A ring that holds the power of lesser elemental spirits, but its true effect is unknown. +-------------------------- +All Stats +1 +-------------------------- +Random chance to auto-cast random spells when dealing or receiving physical attack. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2681# +It's a special ring to celebrate Republic Day. +-------------------------- +All Stats +3 +-------------------------- +Type: Accessory +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: None +# +2682# +A mysterious ring that is blessed by the Spirit of Water. +-------------------------- +Decreases damage taken from Water elemental by 5%. +-------------------------- +Type: Accessory +Defense: 1 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +2683# +A mysterious ring that is blessed by the Spirit of Fire. +-------------------------- +Decreases damage taken from Fire elemental by 5%. +-------------------------- +Type: Accessory +Defense: 1 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +2684# +A mysterious ring that is blessed by the Spirit of Wind. +-------------------------- +Decreases damage taken from Wind elemental by 5%. +-------------------------- +Type: Accessory +Defense: 1 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +2685# +A mysterious ring that is blessed by the Spirit of Earth. +-------------------------- +Decreases damage taken from Earth elemental by 5%. +-------------------------- +Type: Accessory +Defense: 1 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +2686# +Rental Item +A fashion accessory that gives ears that vaunted, elvish look. For some, it is an incredible turn-on. +-------------------------- +INT +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2687# +Rental Item +A small flower made of steel. +-------------------------- +MaxHP +2% +MaxSP +2% +ATK +2% +MATK +2% +Increases experience gained from defeating monsters by 10%. +Increases item drop rate by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2688# +Rental Item +An esoteric ring that enables its wearer into amplify his hidden powers. +-------------------------- +Critical +10 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2689# +Rental Item +An ancient earring. +-------------------------- +INT +3 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2690# +Rental Item +An ancient ring. +-------------------------- +STR +4 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2691# +Rental Item +An ancient necklace. +-------------------------- +VIT +4 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2692# +Rental Item +An ancient glove. +-------------------------- +DEX +4 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2693# +Rental Item +An ancient brooch. +-------------------------- +AGI +4 +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2694# +Rental Item +An ancient rosary. +-------------------------- +LUK +4 +MDEF +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2695# +Rental Item +A strange ring that curiously raises its wearer's defenses. +-------------------------- +DEF +8 +MDEF +8 +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2696# +Rental Item +An object that seems to have been part of a Vesper. It has the mysterious power to clear its owner's mind. +-------------------------- +INT +2 +MaxSP +5% +DEF +1 +MDEF +3 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2697# +Rental Item +An object which seems to be part of a Vesper that can mysteriously empower its wearer with enhanced strength. +-------------------------- +STR +3 +ATK +10 +DEF +1 +MDEF +3 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2698# +Rental Item +An object which seems to be part of a Vesper that can mysteriously empower its wearer with enhanced agility. +-------------------------- +AGI +3 +FLEE +5 +DEF +1 +MDEF +3 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2699# +Rental Item +An object which seems to be part of a Vesper that can mysteriously empower its wearer by enhancing his accuracy and dexterity. +-------------------------- +DEX +3 +HIT +10 +DEF +1 +MDEF +3 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2700# +Red silk that a female saint could use to seal evil. +-------------------------- +When equipped with Spectral Spear: +Increases resistance against Confuse status. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +Transcendent Swordman classes +# +2701# +A glove that were once worn by a palace chef. +Wearing these make you feel as if you could draw upon the dexterity that chef used in cooking. +-------------------------- +DEX +2 +MATK +3% +-------------------------- +When equipped with Orlean's Server: +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +All Transcendent classes except Novice +# +2702# +An ornament made from wild bison horns. +-------------------------- +AGI +2 +-------------------------- +When equipped with Thorny Buckler: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Reflects melee physical attack by 5%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +All Transcendent classes except Novice +# +2703# +Beings that obtained ultimate power found a way to maximize their abilities by attaining a deep understanding of themselves, knowing that power always has its cost. +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Increases SP Consumption by 5%. +-------------------------- +Type: Accessory +Weight: 15 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 50 +All Transcendent classes except Novice +# +2704# +A special Accessory made of a pure gold mixture. According to legend you will gain magical strength whilst wearing this. +-------------------------- +MDEF +4 +DEF +4 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2705# +A special Accessory made of a pure gold mixture. According to legend you will gain magical strength whilst wearing this. +-------------------------- +Random chance a defeated monster will drop Fire Cracker. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2706# +Cash Items +Arrest handcuffs. It will not be able to destroy very hardly. The hazard which binds the people who is dangerous it is used. +-------------------------- +Type: Accessory +Weight: 1 +# +2707# +This musical instrument that came from a myterious aged man. It sounds very beautiful. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2708# +Random chance to auto-cast Level 5 Fire Bolt when dealing physical damage. +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: None +# +2709# +Gravity's 10th anniversary celebration coin. +-------------------------- +ATK +10 +MATK +10 +Critical +10 +-------------------------- +Random chance to increase ASPD by 3 for 5 sec on each physical attack. +-------------------------- +Random chance to Decreases Variable Casting Time by 50% for 5 sec when dealing magical damage. +-------------------------- +Random chance to increase Healing skills by 20% for 5 sec on when using Healing skills. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2710# +Rental Item +A leg iron, long time ago, it used to make don't move of panther prisoner. However, the prisoner used his leg iron as his weapon. +-------------------------- +ATK +30 +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2711# +Rental Item +Beautiful ring that contains the power of the spirit. If the item is fit and fastened with decompensated represents a remarkable amplification effect. +-------------------------- +INT +2 +DEX +2 +-------------------------- +When equipped with Wizardry Staff or Soul Staff: +DEX +2 +MATK +6% +Decreases Variable Casting Time by a percentage according to the Staff's Refine Level. +-------------------------- +When equipped with Clip or Rosary: +Increases damage of Magnus Exorcismus by 30%. +Increases Heal damage on Undead race by 50%. +Increases SP Recovery Rate by 9%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2712# +Collectible comics Ragnarok. There is someone's autograph written in it. +-------------------------- +DEX +3 +VIT +3 +LUK +3 +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +2713# +If you carry a sign on assignments, get the job again will not be. Written on paper, crumbling with time. +-------------------------- +Weight: 0 +# +2714# +Mysterious pendant filled with the heart of monsters. +-------------------------- +Decreases damage taken from Undead race by 2%. +Decreases damage taken from Demi-Human, Brute and Fish race by 1%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2715# +A weird ring adorned with a skull in which the words, \ + are engraved. +Giving this as a gift might send a mixed message. +-------------------------- +Decreases damage taken from Undead race by 1%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2716# +A glove which is a favorite item among librarians. +-------------------------- +MaxSP +20 +-------------------------- +When equipped with Pocket Watch & Ancient Magic or Principles of Magic: +INT +5 +MaxHP +700 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +Wizard, Sage and Soul Linker classes +# +2717# +A silver-colored watch with connecting chain. +-------------------------- +When equipped with Monocle & Memory Book: +MATK +7% +Increases HP and SP Recovery Rate by 15%. +-------------------------- +Type: Accessory +Defense: 1 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +Magician and Soul Linker classes +# +2718# +A crescent-shaped golden shining brooch. +-------------------------- +When equipped with Luna Bow: +DEX +1 +MaxSP +50 +Increases SP Recovery Rate by 10%. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +Archer +# +2719# +A strong steel wrist protector. +-------------------------- +DEF +1 +-------------------------- +Increases damage of Bash and Mammonite by 6%. +-------------------------- +Type: Accessory +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Swordsman and Merchant +# +2720# +A medal rewarded to honorable warriors. +-------------------------- +MaxHP +500 +MaxSP +50 +MATK +5% +HIT +10 +ATK +5% +-------------------------- +Adds a 1% chance of inflicting Stun on the target when performing a short-ranged attack. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Swordsman and Star Gladiator +# +2721# +A medal rewarded to honorable warriors. +-------------------------- +MaxHP +300 +MaxSP +80 +MATK +5% +FLEE +10 +ATK +5% +-------------------------- +Adds a 1% chance of inflicting Poison on the target when performing a short-ranged attack. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Thief and Ninja +# +2722# +A medal rewarded to honorable warriors. +-------------------------- +MaxHP +600 +MATK +5% +MDEF +6 +ATK +5% +-------------------------- +Adds a 1% chance of inflicting Silence on the target when performing a short-ranged attack. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Acolyte +# +2723# +A medal rewarded to honorable warriors. +-------------------------- +MaxHP +600 +MATK +5% +MDEF +6 +ATK +5% +-------------------------- +Adds a 1% chance of inflicting Stone Curse on the attacker when receiving a physical attack. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Magician and Soul Linker classes +# +2724# +A medal rewarded to honorable warriors. +-------------------------- +MaxHP +300 +MaxSP +80 +MATK +5% +Critical +10 +ATK +5% +-------------------------- +Adds a 1% chance of inflicting Blind on the target when performing a long-ranged attack. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Archer Classes +# +2725# +A medal rewarded to honorable warriors. +-------------------------- +MaxHP +500 +MaxSP +50 +MATK +5% +ATK +5% +Aspd + 10% +-------------------------- +Adds a 1% chance of inflicting Curse on the target when performing a short-ranged attack. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Merchant +# +2726# +A brooch shaped like beautiful white wings for the Icarus members. +-------------------------- +DEX +3 +MaxSP +50 +-------------------------- +When equipped with Sniper Scarf: +Decreases SP Consumption by 25%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Sniper +# +2727# +A nice arm-wrapping red scarf. +-------------------------- +DEX +3 +MaxSP +50 +-------------------------- +When equipped with Wing of Icarus: +Decreases SP Consumption by 25%. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Sniper +# +2728# +A dried bone hand. It releases a mysterious aura. +-------------------------- +HIT +10 +-------------------------- +Increases HP Recovery Rate by 20%. +-------------------------- +Random chance to auto-cast Level 1 Critical Wound when dealing physical damage. +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +All Jobs except Novice +# +2729# +A ring with mysterious letters carved into it. It is so beautiful, it fascinates all people. +-------------------------- +MaxHP +100 +MaxSP +100 +-------------------------- +Increases Healing skills effectiveness by 5%. +-------------------------- +Increases Physical Damage against enemies of Satan Morocc by 10%. +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +2730# +A royal gift to a member of the Continental Guard. +-------------------------- +MaxHP +50 +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +All Jobs except Novice +# +2731# +One of the royal gifts which are given to the members of the Morocc Dispatch. +-------------------------- +MaxSP +50 +-------------------------- +Decreases Variable Casting Time by 1%. +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +All Jobs except Novice +# +2732# +One of the royal gifts which are given to the members of the Morocc Dispatch. +-------------------------- +Critical +5 +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +All Jobs except Novice +# +2733# +A badge rewarded to honorable warriors. +-------------------------- +MaxHP +300 +MaxSP +80 +MATK +5% +Critical +10 +ATK +5% +-------------------------- +Adds a 1% chance of inflicting Blind on the attacker when receiving a long-ranged attack. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +Gunslinger +# +2734# +A directive letter about the mission from the canyon battle. +It will disappear after 1 hour. +-------------------------- +Weight: 0 +# +2735# +A directive letter about the mission from the arena battle. +It will disappear after 1 hour. +-------------------------- +Weight: 0 +# +2736# +A navel ring, one of popular body piercing jewelry among females. +-------------------------- +DEX +3 +Luk +3 +MDEF +2 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 75 +All Jobs except Novice +# +2737# +A necessity for elegant woman! +-------------------------- +VIT +3 +-------------------------- +Increases HP Recovery Rate by 10%. +-------------------------- +Type: Accessory +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 75 +All Jobs except Novice +# +2738# +A shiny coin used to celebrate some events. +-------------------------- +MATK +6% +ATK +6% +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2739# +A shiny coin used to celebrate some events. +-------------------------- +MATK +5% +ATK +5% +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2740# +A rusty coin used to celebrate some events. +-------------------------- +MATK +3% +ATK +5% +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2741# +Rental Item +A Jewelry Ring that contains a 3 Seal Magic Spell. +-------------------------- +All Stats +1 +-------------------------- +Enables the use of Level 1 Heal. +Enables the use of Level 1 Teleport. +-------------------------- +Protects from skill cast interruption. +-------------------------- +Increases Variable Casting Time of all skills by 10%. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2742# +Rental Item +A legendary clip used as a lucky charm! +-------------------------- +Increases item drop rate by 50%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2743# +A ring which bears holy powers that responds to certain abilities and strenthens their potency. +-------------------------- +DEX +1 +INT +2 +MDEF +2 +-------------------------- +Adds 10% of increase Healing skills by 20% for 3 seconds when using Heal, Potion Pitcher or Sanctuary skills. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Transcendent 2nd classes +# +2744# +A ring that gives you a feeling of flying like a rocket through the wind. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Increases After Skill Delay by 5%. +-------------------------- +When equipped with Sprint Mail and Sprint Shoes: +MaxHP +7% +MaxSP +7% +Decreases Variable Casting Time by 3%. +Decreases After Skill Delay by 15%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +2745# +A small Corsge that looks like Pinguicula. +-------------------------- +MaxSP +25 +MDEF +2 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +2746# +A little something that Assassins should have. There're a number of rumors regarding the blood stain at the end of the blade. +-------------------------- +AGI +3 +DEF +1 +-------------------------- +When equipped with Rogue's Treasure: +Increases Attack Speed (Decreases After Attack Delay by 3%). +Increases Physical Damage against enemies of Medium size by 8%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +Assassin Cross +# +2747# +A pendant which symbolizes a well-known Rogue Guild among people in dark side. +-------------------------- +DEX +3 +DEF +1 +-------------------------- +When equipped with Rogue's Treasure: +HIT +3 +Decreases Variable Casting Time by 3%. +Increases Physical Damage against enemies of Large size by 8%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +Stalker +# +2748# +A mechanic who was born under the cursed star made this necklace to protect himself. It is enchanted with magic to harness the power of curses. +-------------------------- +DEX +2 +LUK -1 +MDEF +3 +-------------------------- +Drains 50 HP every 10 seconds. +Drains 300 HP when unequiped. +-------------------------- +Random chance to inflict Curse status when dealing Ranged Physical Damages. +-------------------------- +When equipped with Cursed Lyre: +ATK +25 +Additional 2% chance of curse. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 84 +Transcendent Archer +# +2749# +A glove made of material you've never seen before. +Amazingly light and suitable for use with just about any weapon. +-------------------------- +DEX +1 +AGI +2 +DEF +1 +MDEF +1 +-------------------------- +When equipped with Improved Tights: +Perfect Dodge +5 +-------------------------- +Type: Accessory +Weight: 12 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +Transcendent 2nd classes +# +2750# +Music box made in the form of a carousel. +-------------------------- +Allows you to use skill Summer Night Dream. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2751# +A badge which can get when they graduate the probationary period of magical school with high grade. +Just a symbolic meaning only for probationer magicians? +-------------------------- +INT +2 +MATK +3% +MaxHP +100 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2752# +Ring created from leaves of grass, which emanates from a mysterious force. It is said that it was created from the shoots of Yggdrasil. +-------------------------- +MATK +5% +ATK +5% +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2753# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Formless race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2754# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Undead race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2755# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Brute race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2756# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Plant race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2757# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Insect race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2758# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Fish race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2759# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Demon race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2760# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Demi-Human race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2761# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Angel race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2762# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Dragon race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2763# +Rental Item +A weird ring adorned with a skull in which the words, Forever, until death... are engraved. +-------------------------- +MaxHP +5% +ATK +5% +MATK +5% +-------------------------- +Increases Healing skills effectiveness by 5%. +-------------------------- +Enables the use of Level 1 Sight. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 95 +All Jobs except Novice +# +2764# +A small sized fishing rod. +-------------------------- +Decreases fishing cast time by 3 seconds. +-------------------------- +Type: Accessory +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: None +# +2765# +A fine figure of a Novice. A mere glance at it makes you feel like you have more strength. +-------------------------- +MaxHP +70 +-------------------------- +When equipped by Novice classes: +MaxHP +30 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2766# +A fine figure of a Swordman. It exudes the honor of the class it represents. +-------------------------- +VIT +1 +-------------------------- +When equipped by Swordman classes: +DEF +2 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2767# +A fine figure of an Acolyte, radiating intellectual power. +-------------------------- +INT +1 +-------------------------- +When equipped by Acolyte classes: +MaxSP +50 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2768# +A fine figure of a Magician, radiating wisdom and mystical power. +-------------------------- +INT +1 +-------------------------- +When equipped by Mage classes: +Increases SP Recovery Rate by 5%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2769# +A fine figure of an Archer that makes its bearer feel like he/she can see better. +-------------------------- +DEX +1 +-------------------------- +When equipped by Archer classes: +ATK +10 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2770# +A fine figure of a Thief, which has a mischievous smile on it. +-------------------------- +AGI +1 +-------------------------- +When equipped by Thief classes: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2771# +A fine figure of a Merchant that makes its bearer feel strengthened. +-------------------------- +STR +1 +-------------------------- +When equipped by Merchant classes: +Critical +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2772# +A ring that only a champion of battlefield can wear. +-------------------------- +MaxHP +300 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +Decreases damage taken from Water, Wind, Earth and Fire elementals attack by 10%. +Decreases Variable Casting Time by 3%. +Increases Healing skills effectiveness by 5%. +-------------------------- +When equipped with Medal of Honor: +ATK +5% +MATK +3% +Increases Healing skills effectiveness by 5%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 81 +All Jobs except Novice +# +2773# +A ring that only a champion of battlefield can wear. +-------------------------- +All Stats +2 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 61 +All Jobs except Novice +# +2774# +A ring that only a champion of battlefield can wear. +-------------------------- +All Stats +1 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2775# +Artificially made fishing lure. +-------------------------- +Decreases the fishing casting time by 1 seconds. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2776# +This trusty towel truly is the sidearm of an experienced adventurer. +Allowing one to remain cool in the face of adversity. +-------------------------- +Warning: Do not wear towel when in battle; it is only to be used in relaxed situations. +-------------------------- +Weight: 10 +# +2777# +A ring worn only by those belonging to the Shaman order. +It can teleport its wearer in Glast Heim with the help of Sapphires. +Sapphires can be found at the Entrance to Glast Heim, Chivalry, St. Abbey and Culvert. +-------------------------- +MaxHP +50 +-------------------------- +Increases SP Recovery Rate by 3%. +-------------------------- +When equipped with Shaman's Hair Ornament and Shaman Earring: +MaxHP +300 +MATK +5% +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +2778# +INT +2 +-------------------------- +When equipped with Shaman Ring and Shaman's Hair Ornament: +MaxHP +300 +MATK +5% +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +2779# +A belt once worn by a Knight shrouded in darkness that gives strength to those who wear it. +-------------------------- +AGI +1 +STR +2 +DEF +1 +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +2780# +A glove worn by a cursed Dark Knight. +-------------------------- +DEF +1 +-------------------------- +Random chance to Reduces After Attack Delay by 2% for 10 seconds when dealing physical damage. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +2781# +Hidden within this monster's tooth is the ability to extract energy. +-------------------------- +Increases experience gained from defeating monsters by 5%. +-------------------------- +Increases damage taken from normal attacks by 5%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2782# +A ring imitating the legendary ring of the Ancient Wise King who used to communicate with animals. +Rune-Midgart's Magical Power, Schwarzwalt's technology and Arunafeltz's linguistic ability are put together in this ring. +-------------------------- +By equipping this ring, you can communicate with the people of Ash Vacuum. +-------------------------- +MaxHP +50 +MaxSP +20 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2783# +A ring with a small bead set in. It feels like the bead is watching you. +-------------------------- +MaxSP +25 +Critical +2 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +All Jobs except Novice +# +2784# +A cute music box which contains a Singing Crystal in it. Listen carefully and you can hear Christmas carols. +-------------------------- +AGI+3, INT+3 +Allstatus +1 +ATK+30 Matk+30 +Enables Level 1 Teleport. +-------------------------- +Expiration date 7-01-2025 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2785# +A glove that was once used by a palace chef. +It feels like you can immitate the chef's way of using hand with this glove equipped on. +-------------------------- +DEX +2 +MATK +3% +-------------------------- +When equipped with Orlean's Server: +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +All Transcendent classes except High Novice +# +2786# +A beautiful ring which contains the spirits of the deceased. +It is said to be able to amplify magic if it comes in contact with spiritual power. +-------------------------- +DEX +1 +INT +2 +-------------------------- +When equipped with Wizardry Staff or Soul Staff: +DEX +2 +MATK +6% +Decreases Variable Casting Time by Refine Level. +-------------------------- +When equipped with Clip or Rosary: +Increases damage of Magnus Exorcismus by 30%. +Inflicts 50% more damage against Undead monster with Heal. +Increases SP Recovery Rate by 9% +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2787# +A brooch made out of tear drops of the Aqua Elemental. +-------------------------- +MaxHP +1% +MDEF +2 +-------------------------- +Decreases damage taken from Water elemental by 5%. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Transcendent classes except Novice +# +2788# +A strangely warm Earring made out of Bradium Ore. +-------------------------- +INT +1 +DEX +1 +MATK +5 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Transcendent classes except Novice +# +2789# +A very tough ring made out of Bradium Ore. +-------------------------- +STR +1 +VIT +1 +ATK +5 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Transcendent classes except Novice +# +2790# +A brooch made out of Bradium Ore. +-------------------------- +AGI +1 +FLEE +4 +-------------------------- +Base AGI at least 120: +Critical +4 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Transcendent classes except Novice +# +2791# +A fresh fish, he's still moving! +-------------------------- +HIT +3 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2792# +The power of a fire spirit king resides in this ring. The power of the spirit flows through you when you equip this ring. +It can be paired with the Ring of Resonance. +-------------------------- +STR +2 +VIT +1 +ATK +15 +-------------------------- +Decreases damage taken from Fire elemental attacks by 10%. +-------------------------- +Random chance of auto casting All kind of Skills when attacking. +-------------------------- +When equipped with Ring of Resonance: +The chance of auto casting increases. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +2793# +The pair to the Ring of Flame Lord. The two rings resonate togeather and its said that their abilities are strengthened. +-------------------------- +AGI +2 +VIT +1 +DEF +2 +MDEF +2 +-------------------------- +Random chance of auto casting All kind of Skills when attacking. +-------------------------- +When equipped with Ring of Flame Lord: +The chance of auto casting increases. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +2794# +A bluish ring engraved with a mysterious rune. You can feel a mysterious energy from the sparkling rune. +-------------------------- +STR +2 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Swordman classes +# +2795# +A Green Apple ring for those who have ascended to their third classes. +-------------------------- +All Stats +6 at job Level 1. +Stat bonus decreases by 1 for every 5 job Levels attained. +At job Level 30 stat bonus is cancelled. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +3rd classes +# +2796# +A stone with enormous latent magic power. +-------------------------- +Increases Magic attack against Naga monsters by 10%. +-------------------------- +Wearing this will give you a chance of receiving a Glittering Crystal while hunting Naga monster. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Magician +# +2797# +A stone with enormous latent magic power. +-------------------------- +Increases Magic attack against Bradium Golems by 10%. +-------------------------- +Wearing this will give you a chance of receiving a Giant Bradium Fragment while hunting Bradium Golems. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Magician +# +2798# +A necklace with holy but rough energy. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Priest and Monk classes +# +2799# +Developed by scientist after years of research. It contain the magic power from Guardian Wing of Valkyrie. +-------------------------- +MaxHP +150 +MaxSP +30 +-------------------------- +Random chance to auto-cast Level 5 Call Spirits when using Level 10 Blessing. +-------------------------- +Random chance to auto-cast Level 10 Endure or Level 10 Angelus when receiving physical or magical attack. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2800# +A part used for the Mechanic Mado Gear skill, Acceleration. +-------------------------- +AGI +2 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +2801# +A required component for mechanic's mado gear skill, Hovering. +-------------------------- +AGI +1 +-------------------------- +Type: Accessory +Weight: 200 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +2802# +A required component for mechanic's mado gear skill, Self Destruction. +-------------------------- +Type: Accessory +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +2803# +An accessory item to use the Mechanic Mado Gear Skill, Shape Shift. +-------------------------- +INT +3 +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +2804# +A required component for mechanic's mado gear skill, Emergency Cool. +-------------------------- +DEX +1 +-------------------------- +Type: Accessory +Weight: 250 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +2805# +A required component for mechanic's mado gear skill, Magnetic Field. +-------------------------- +DEX +1 +-------------------------- +Type: Accessory +Weight: 600 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +2806# +A required component for mechanic's mado gear skill, Neutral Barrier. +-------------------------- +DEX +1 +DEF +3 +-------------------------- +Type: Accessory +Weight: 800 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +2807# +A required component for mechanic's mado gear skill, Repair. +-------------------------- +Type: Accessory +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +2808# +A required component for mechanic's mado gear skill, Stealth Field. +-------------------------- +AGI +3 +-------------------------- +Type: Accessory +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +2809# +A required component for mechanic's mado gear skill, Emergency Cool. +-------------------------- +DEX +1 +-------------------------- +Type: Accessory +Weight: 250 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +2810# +A required component for mechanic's mado gear skill, Emergency Cool. +-------------------------- +DEX +1 +-------------------------- +Type: Accessory +Weight: 250 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +2811# +Rental Item +A spiritual bracelet granted by Freya. It appears very sturdy, +but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +All Stats +1 +DEF +1 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +2812# +Rental Item +A spiritual bracelet granted by Freya. It appears very sturdy, +but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +All Stats +1 +DEF +1 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +2813# +Rental Item +A spiritual bracelet granted by Freya. It appears very sturdy, +but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +All Stats +1 +DEF +1 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +2814# +Rental Item +A spiritual bracelet granted by Freya. It appears very sturdy, +but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +All Stats +1 +DEF +1 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +2815# +A ring blessed with the power of water. +-------------------------- +All Stats +2 +MDEF +2 +MaxSP +20 +-------------------------- +Base Level is below 41: +Increases potion restoration by 50%, this effect reduced as the base Level increased. +-------------------------- +Type: Accessory +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +2816# +A radar used to look for something. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2817# +A radar used to look for something. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2818# +A radar used to look for something. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2819# +A guidebook that enables one to experience basic Swordman skills. +-------------------------- +MaxSP +100 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Maximum Base Level 12 +Novice +# +2820# +A guidebook that enables one to experience basic Thief skills. +-------------------------- +MaxSP +100 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Maximum Base Level 12 +Novice +# +2821# +A guidebook that enables one to experience basic Acolyte skills. +-------------------------- +MaxSP +100 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Maximum Base Level 12 +Novice +# +2822# +A guidebook that enables one to experience basic Archer skills. +-------------------------- +MaxSP +100 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Maximum Base Level 12 +Novice +# +2823# +A guidebook that enables one to experience basic Merchant skills. +-------------------------- +MaxSP +100 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Maximum Base Level 12 +Novice +# +2824# +A guidebook that enables to experience basic Magician skills. +-------------------------- +MaxSP +100 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Maximum Base Level 12 +Novice +# +2825# +INT +2 +-------------------------- +When equipped with Shaman Ring, Shaman's Hair Ornament and Shaman Earring: +MaxHP +300 +Decreases damage taken from Neutral elemental attacks by 5%. +Protects from skill cast interruption. +Increases Variable Casting Time of all skills by 15%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +2826# +A belt once worn by a Knight shrouded in darkness that gives dexterity to those who wear it. +-------------------------- +AGI +1 +DEX +2 +DEF +1 +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +2827# +A glove worn by a cursed Dark Knight. +-------------------------- +DEF +1 +-------------------------- +Random chance to increase MaxHP by 10% for 10 seconds when receiving physical damage. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +2828# +A Clip molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +MaxSP +50 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2829# +Enables the use of Level 1 Greed. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +All Jobs except Novice +# +2830# +A reproduction of the girdle of might that Thor wore to enhance his prodigious strength. +-------------------------- +STR +40 +DEF +2 +MDEF +7 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 94 +# +2831# +An imitation of the necklace worn by the beautiful goddess Freya. +-------------------------- +STR +6, AGI +6, INT +6 +VIT +6, LUK +10 +DEF +1 +MDEF +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 94 +# +2832# +Rental Item +A ring decorated with a beautiful ruby. +-------------------------- +Enables use of +Level 1 Heal +Level 1 Teleport +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2833# +Rental Item +An awesome ring that is only given to the members of the Order of Odin. +-------------------------- +All Stats +1 +-------------------------- +Enables use of Odin's Recall. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2834# +Rental Item +A Jewelry Ring that contains a 3 Seal Magic Spell. +-------------------------- +All Stats +1 +-------------------------- +Enables the use of Level 1 Heal. +Enables the use of Level 1 Teleport. +-------------------------- +Protects from skill cast interruption. +-------------------------- +Increases Variable Casting Time of all skills by 10%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2835# +Rental Item +An esoteric ring that enables its wearer into amplify his hidden powers. +-------------------------- +Critical +10 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2836# +Rental Item +An ancient glove. +-------------------------- +DEX +4 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2837# +Rental Item +A strange ring that curiously raises its wearer's defenses. +-------------------------- +DEF +5 +MDEF +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2838# +Rental Item +An ancient necklace. +-------------------------- +VIT +4 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2839# +Rental Item +An ancient ring. +-------------------------- +STR +4 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2840# +Rental Item +An ancient rosary. +-------------------------- +LUK +4 +MDEF +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2841# +Rental Item +Enables the use of Teleport and Heal. +Protects from skill cast interruption. +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Star Emperor, Soul Reaper +# +2842# +Rental Item +An ancient earring. +-------------------------- +INT +3 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2843# +It has a message inscribed - An accessory hung over a beast's neck to show dignity. +-------------------------- +MaxSP +50 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 75 +# +2844# +A brooch made to resemble the El Dicastes Diel. +-------------------------- +Enables the use of Level 1 Return to El Dicastes. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +2845# +Strap this on and shut them up! +-------------------------- +ATK +5% +MATK +5% +MDEF +2 +-------------------------- +When equipped with NoFear Shoes and NoFear Underwear: +Prevents Frozen status. +Increases experience gained from defeating monsters by 5%. +-------------------------- +Type: Shoes +Defense: 2 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +2853# +An orb filled with liquid of unknown powers. +-------------------------- +INT +3 +MaxSP +30 +DEF +2 +MDEF +1 +-------------------------- +Increases damage of Soul Expansion and Psychic Wave by 10%, +Increases SP Consumption of Soul Expansion and Psychic Wave by 50. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 110 +3rd Classes +# +2854# +A white glove made especially for fire magic. Gives off a faint burnt smell. +-------------------------- +INT +1 +DEF +1 +MDEF +2 +-------------------------- +Increases Magical Damage with Fire element by 10%. +-------------------------- +Decreases Magical Damage with Water element by 20%. +-------------------------- +Increases damage taken from Water elemental attacks by 30%. +-------------------------- +Random chance to auto-cast Level 5 Fire Ball when dealing physical or magical attack. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 125 +3rd Classes +# +2855# +The new black cat tail accessory looks better than any previous version. +-------------------------- +ASPD +3% +Critical +7 +-------------------------- +Set Bonus: +When equip with Whikebain's Black Ears and Whikebain's Black Tail +Crit Dmg +5%. +-------------------------- +When equip with Whikebain's Black Ears and Whikebain's Black Tail +And Whikebain's Black Ears is +7 or higher, +Critical +5 +-------------------------- +When equip with Whikebain's Black Ears and Whikebain's Black Tail and Sable Cat Eye +and Sable Cat Tail And Whikebain's Black Ears is +7 or higher, +ATK +5 +ASPD +3% +-------------------------- +When equip with Whikebain's Black Ears and Whikebain's Black Tail and Sable Cat Eye +and Sable Cat Tail And Whikebain's Black Ears is +9 or higher, +ASPD +1 +Adds chance 3% to Increase Crit Dmg 10% for 3 seconds when dealing physical attack. +-------------------------- +Type: Right Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +# +2856# +Rental Item +A legendary belt rumored to be owned by Thor, the god of thunder. Increases its wearer's strength. +-------------------------- +STR +20 +MDEF +3 +-------------------------- +Increases STR bonus based on character's base Level +-------------------------- +Base Level at least 120: +Increases Physical Damage against enemies of Boss class by 5%. +-------------------------- +Type: Accessory +Defense: 1 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 47 +# +2857# +Rental Item +A legendary necklace worn by Freija, the goddess of beauty. +-------------------------- +STR, AGI, DEX, VIT +3, +INT, LUK +5 +MDEF +2 +-------------------------- +Increases Healing skills effectiveness by 3%. +-------------------------- +Type: Accessory +Defense: 1 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 47 +# +2858# +A pendant with black wings. It possesses mysterious power. +-------------------------- +Enables the use of Level 1 Guardian Recall. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +2859# +A golden crystal ball imbued with power of wind. +-------------------------- +INT +1 +DEF +2 +MDEF +2 +-------------------------- +Decreases damage taken from Wind elemental attacks by 15%. +-------------------------- +Random chance to auto-cast Level 3 Jupitel Thunder when wearer attacked by physical or magical attack. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Warlock +# +2860# +A sea-blue crystal ball imbued with power of water. +-------------------------- +INT +1 +DEF +2 +MDEF +2 +-------------------------- +Decreases damage taken from Water elemental attacks by 15%. +-------------------------- +Random chance to auto-cast Level 3 Frost Nova when wearer attacked by physical or magical attack. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Warlock +# +2861# +A bloody crystal ball imbued with power of fire. +-------------------------- +INT +1 +DEF +2 +MDEF +2 +-------------------------- +Decreases damage taken from Fire elemental attacks by 15%. +-------------------------- +Random chance to auto-cast Level 3 Sightrasher when wearer attacked by physical or magical attack. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Warlock +# +2862# +A green crystal ball imbued with power of Earth. +-------------------------- +INT +1 +DEF +2 +MDEF +2 +-------------------------- +Decreases damage taken from Earth elemental attacks by 15%. +-------------------------- +Random chance to auto-cast Level 3 Quagmire when wearer attacked by physical or magical attack. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Warlock +# +2863# +Rental Item +Beautiful ring, which is considered to shield the world. +-------------------------- +DEF +2 +-------------------------- +Increases experience gained and drop rate by 5%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2864# +An old but shiny gold ring entwined with rings. It is rumored to be a relic of a saint. +-------------------------- +VIT +2 +-------------------------- +Increases Healing skills effectiveness by 2%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 110 +Archbishop +# +2865# +A thick ring mounted with a purple stone, given to a trainee priest. +-------------------------- +INT +2 +-------------------------- +Increases Healing skills effectiveness by 2%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 110 +Archbishop +# +2866# +A ring mounted with clear mysterious stone. It is rumored to be a relic of a religious leader. +-------------------------- +DEX +2 +-------------------------- +Increases Healing skills effectiveness by 2%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 110 +Archbishop +# +2870# +Test +# +2871# +A beautiful accessory created especially in honor of Brazil. +-------------------------- +ATK +3%, MATK +3% +MaxHP +50, MaxSP +20 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +2872# +A cat gamer token given to honourable member. It has ability to record game information. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2873# +A souvenir from Malangdo, just by equpping it will give you a happy mood. +-------------------------- +VIT +1, AGI +1 +DEX +1, LUK +1 +DEF +5 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2874# +An ornament made from horns of wild buffalo. It holds the power of buffalo. +-------------------------- +ASPD +1 +-------------------------- +When equipped with Bison Horn: +ASPD +1 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +2875# +Ring given as a token of gratitude for the payment of the subscription game. +-------------------------- +MATK +5% +ATK +5% +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2876# +A shiny necklace that resemble the start of Spica. +-------------------------- +DEF +1 +MDEF +1 +-------------------------- +Decreases damage taken from Water elemental attacks by 5%. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +2877# +A glove that resemble the star of Sabik. +-------------------------- +DEF +1 +MDEF +1 +-------------------------- +Decreases damage taken from Fire elemental attacks by 5%. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +2878# +A bracelet that resemble the star of Alna and Airi. +-------------------------- +DEF +1 +MDEF +1 +-------------------------- +Decreases damage taken from Earth elemental attacks by 5%. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +2879# +A badge that resemble the star of Algol. +-------------------------- +DEF +1 +MDEF +1 +-------------------------- +Decreases damage taken from Wind elemental attacks by 5%. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +2880# +A badge that resemble the star of Rfak. +-------------------------- +MaxHP +100 +MaxSP +50 +DEF +1 +MDEF +1 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +2881# +A necklace for implmenting best of royal palace food. +-------------------------- +DEX +2 +MATK +20 +-------------------------- +When equipped with Orlean's Glove: +MATK +20 +-------------------------- +When equipped with Orlean's Gown: +Decreases Variable Casting Time by 15%. +-------------------------- +When equipped with Orlean's Server: +For each Refine Level of Orlean's Server: +MATK +2 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2882# +A card sleeve made to celebrate ECOxRO. +-------------------------- +VIT +1 +LUK +1 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2883# +A seal created by refining an Ur Runestone. +-------------------------- +MaxHP +2% +DEF +4 +-------------------------- +Decreases SP Consumption of Spiral Pierce and Hundred Spears by 5. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +2884# +A seal created by refining a Peuz Runestone. +-------------------------- +ATK +20 +MaxSP +20 +DEF +3 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +2885# +Rental Item +Ring that keeps the desire of all novice travelers. +-------------------------- +ATK +30 +MATK +30 +-------------------------- +Increases experience gained from defeating monsters by 15%. +-------------------------- +Enables use of +Level 3 Auto Guard +Level 1 Cure +-------------------------- +Increases movement speed. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Maximum Base Level 120 +# +2886# +A ring that has long been known to be from the world of darkness. +-------------------------- +Critical +3 +-------------------------- +Decreases SP Consumption of Dark Illusion by 5. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +2887# +A famous historical assassin relic. +-------------------------- +ATK +10 +MATK +20 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +2888# +An essential bag for school students. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Decreases variables cast time by 3%. +-------------------------- +Base Level below 80: +MaxHP +200 +MaxSP +100 +-------------------------- +When equipped with Academy Badge: +Increases Attack Speed (Decreases After Attack Delay by 3%). +Decreases variables cast time by 3%. +-------------------------- +When equipped with Azure Smock: +ATK +3% +MATK +3% +-------------------------- +Type: Accessory +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: None +# +2889# +A ring wore by person who has endured many difficulties in his life. +-------------------------- +MaxHP +300 +-------------------------- +Decreases damage taken from Demi-Human race by 3%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +2890# +An accessory that belonged to Icarus, a famous archer from archer guild. +-------------------------- +DEX +2 +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Ranger +# +2891# +Black wings to help maintain clear mental focus. +-------------------------- +INT +2 +Perfect Dodge +3 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Ranger +# +2892# +A glove designed to defend and attack at the same time. +-------------------------- +MaxSP +20 +DEF +3 +Critical +3 +-------------------------- +When equipped with Krishna: +ATK +50 +FLEE -30 +Increases damage of Sonic Blow by 50%. +-------------------------- +When equipped with Cakram: +MaxHP -10% +Critical +4 +Increases Critical Damage by 40%. +-------------------------- +Type: Accessory +Weight: 40 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +2893# +A shaman's heart whom made contract with demon. +-------------------------- +Random chance to inflict Curse status on the target when dealing physical damage. +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +2894# +A flaming red glove symbolize of destruction. +-------------------------- +STR +5 +MaxSP +6% +MaxHP -6% +DEF +1 +-------------------------- +Base STR at least 120: +ATK +30 +-------------------------- +Type: Accessory +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +Sura +# +2895# +A special accessories which there are magic. It could enhance the ability of the wearer. +-------------------------- +DEF +4 +-------------------------- +Decreases Variable Casting Time by 2%. +-------------------------- +Valor set bonus: MaxHP +500, MaxSP +300, Def +10, ATK +10. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2896# +A special accessories which there are magic. It could enhance the ability of the wearer. +-------------------------- +DEF +4 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Valor set bonus: MaxHP +500, MaxSP +300, Def +10, ATK +10. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2897# +Gold medallion, made on the evenst of RWC. +-------------------------- +MATK +5% +ATK +5% +-------------------------- +Increases experience gained from defeating monsters by 1%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2898# +A black rosary made from a rare black purified ore. +-------------------------- +MDEF +15 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +2899# +A small magical tuning fork that quickly increases all sounds. +-------------------------- +Increases damage of Metallic Sound by 150%. +-------------------------- +Increases SP Consumption of Metallic Sound by 60. +-------------------------- +Decreases Variable Casting Time by 50%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +Hunter, Bard and Dancer +# +2900# +The belt that Morrigan kept as a memento of CuChulain after he perished in battle. +-------------------------- +ATK +5 +Critical +3 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 61 +All Jobs except Novice +# +2901# +The pendant that ChuChulain gave to Morrigan when they were both still in love. +It's symoblic of her endless devotion, as she stood by his side even after he had abandoned her. +-------------------------- +STR +2 +Critical +3 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 61 +All Jobs except Novice +# +2902# +A ring, enchanted with the power of the Fate Stone, that is one of the three keys for theseal which binds Morpheus. +-------------------------- +INT +1 +MaxSP +5% +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 33 +All Jobs except Novice +# +2903# +A bracelet, rumored to be a memento of Morpheus's beloved, that is one of the three keys for the seal which binds Morpheus. +-------------------------- +INT +1 +MaxSP +5% +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 33 +All Jobs except Novice +# +2905# +A trap for insects with strong smell. +-------------------------- +Increases Magical Damage against monsters of Insect race by 6%. +-------------------------- +When equipped with Insecticide: +Decreases damage taken from Insect race by 10%. +-------------------------- +Refine Level +8: +Increases Magical Damage against monsters of Insect race by 4%. +-------------------------- +When equipped with Insecticide: +Decreases damage taken from Insect race by 20%. +-------------------------- +Type: Accessory +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: None +# +2906# +A jewelry glove found by Dwarf. +-------------------------- +MDEF +3 +DEF +3 +-------------------------- +Random chance a defeated monster will drop Cracked Diamond, 2carat Diamond or 3carat Diamond. +-------------------------- +Type: Accessory +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +2907# +Agimat Tattoo with a huge Alligator pattern. It is told that the one who owns this tattoo will possess extreme power. +-------------------------- +MATK +7% +-------------------------- +Decreases Fixed Casting Time by 7%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2908# +A ring worn by Adelaide, the princess of the Blanchard Empire. +It is paired with a dark ring, and it is said that it exerts its true power by combining the power of light and darkness. +-------------------------- +ATK +1%. +-------------------------- +When equipped with Ring of Darkness: +ATK +4% +MATK +4% +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2909# +A ring worn by Adelaide, the princess of the Blanchard Empire. +It is paired with a ring of light, and it is said that it exerts its true power by combining the power of light and darkness. +-------------------------- +MATK +1% +-------------------------- +When equipped with Ring of Light: +ATK +4% +MATK +4% +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2910# +Agimat Tattoo with a dragon swallowing the moon pattern. It is told that the one who owns this tattoo will possess extreme power. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +ATK +7%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2911# +Agimat Tattoo with a plump lady pattern. It is told that the one who owns this tattoo will possess extreme power. +-------------------------- +Increases Healing skills effectiveness by 4%. +-------------------------- +Increases recovery amount gained from Healing skills and Restorative items by 7%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2912# +Eco bottle gum with lime mint flavor containing lots of grain gum. +The refreshing taste of lime is stronger and lasts longer. +-------------------------- +Defeating monsters have a random chance to drop Candy, Candy Cane and Almond Chocolate. +-------------------------- +When equipped with Sweetheart Gum of Mouth: +Increases recovery amount of Candy and Candy Cane by 25%. +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +2913# +These are handcuffs used only on special occasions to hold the strongest troublemakers when held or transferred from one location to another. +-------------------------- +ATK +5 +-------------------------- +When equipped with Bloody Iron Ball: +ATK +10 +-------------------------- +When equipped with Prison Uniform: +For each Refine Level of Prison Uniform: +ATK +2 +-------------------------- +When equipped with Shackles: +For each Refine Level of Shackles: +ATK +1 +-------------------------- +When equipped with Dark Blinkers: +ATK +10 +-------------------------- +Type: Accessory +Weight: 240 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +2914# +A legendary eye that had lost all knowledge and magic. +-------------------------- +INT +4 +DEF +1 +MDEF +3 +-------------------------- +Increases Variable Casting Time of all skills by 3%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +2nd classes +# +2915# +A necklace from Ettlang the ancestor of ancient Lapine. It shows his will to revive Bifrost. +-------------------------- +MDEF +10 +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +2916# +A little broach made as the shape of Lapine's wing. +-------------------------- +Enables the use of Level 1 Return to Eclage. +-------------------------- +Type: Accessory +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +2917# +A glove that grows in strength with you. +-------------------------- +MaxHP +100 +MaxSP +20 +-------------------------- +For each 10 base STR: +ATK +1 +-------------------------- +Base STR at least 110: +ATK +1%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +2918# +A glove that grows in strength with you. +-------------------------- +MaxHP +100 +MaxSP +20 +-------------------------- +For each 10 base INT: +MATK +1 +-------------------------- +Base INT at least 110: +MATK +1% +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +2919# +A glove that grows in strength with you. +-------------------------- +MaxHP +100 +MaxSP +20 +-------------------------- +For each 10 base AGI: +FLEE +1 +-------------------------- +Base AGI at least 110: +Perfect Dodge +1 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +2920# +A glove that grows in strength with you. +-------------------------- +MaxHP +100 +MaxSP +20 +-------------------------- +For each 10 base VIT: +MaxHP +50 +-------------------------- +Base VIT at least 110: +MaxHP +1% +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +2921# +A glove that grows in strength with you. +-------------------------- +MaxHP +100 +MaxSP +20 +-------------------------- +For each 10 base DEX: +HIT +1 +-------------------------- +Base DEX at least 110: +Increases Ranged Physical Damage by 1%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +2922# +A glove that grows in strength with you. +-------------------------- +MaxHP +100 +MaxSP +20 +-------------------------- +For each 10 base LUK: +Critical +1 +-------------------------- +Base LUK at least 110: +Increases Critical Damage by 1%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +2923# +A glove that grows in strength with you. +-------------------------- +MaxHP +100 +MaxSP +20 +-------------------------- +For each 10 base STR: +ATK +1 +-------------------------- +Base STR at least 110: +ATK +1%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +2924# +A glove that grows in strength with you. +-------------------------- +MaxHP +100 +MaxSP +20 +-------------------------- +For each 10 base INT: +MATK +1 +-------------------------- +Base INT at least 110: +MATK +1% +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +2925# +A glove that grows in strength with you. +-------------------------- +MaxHP +100 +MaxSP +20 +-------------------------- +For each 10 base AGI: +FLEE +1 +-------------------------- +Base AGI at least 110: +Perfect Dodge +1 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +2926# +A glove that grows in strength with you. +-------------------------- +MaxHP +100 +MaxSP +20 +-------------------------- +For each 10 base VIT: +MaxHP +50 +-------------------------- +Base VIT at least 110: +MaxHP +1% +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +2927# +A glove that grows in strength with you. +-------------------------- +MaxHP +100 +MaxSP +20 +-------------------------- +For each 10 base DEX: +HIT +1 +-------------------------- +Base DEX at least 110: +Increases Ranged Physical Damage by 1% +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +2928# +A glove that grows in strength with you. +-------------------------- +MaxHP +100 +MaxSP +20 +-------------------------- +For each 10 base LUK: +Critical +1 +-------------------------- +Base LUK at least 110: +Increases Critical Damage by 1%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +2929# +Amulet given by Tatsugami who has regained the divine power. +The stronger you are, the more you can obtain the protection of an amulet. +-------------------------- +MDEF +2 +-------------------------- +The following special effects will disappear at the end of regular maintenance on December 28, 2012: +-------------------------- +Base STR at least 60: +STR +2 +-------------------------- +Base STR at least 80: +STR +1 +ATK +5 +-------------------------- +Base STR at least 100: +ATK +5 +HIT +2 +-------------------------- +Base STR at least 120: +ATK +5 +HIT +3 +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +2930# +Amulet given by Tatsugami who has regained the divine power. +The faster you move, the more you can get amulet protection. +-------------------------- +MDEF +2 +-------------------------- +The following special effects will disappear at the end of regular maintenance on December 28, 2012: +-------------------------- +Base AGI at least 60: +AGI +2 +-------------------------- +Base AGI at least 80: +AGI +1 +FLEE +4 +-------------------------- +Base AGI at least 100: +FLEE +1 +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Base AGI at least 120: +Increases Attack Speed (Decreases After Attack Delay by additional 2%). +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +2931# +Amulet given by Tatsugami who has regained the divine power. +The more powerful you are, the better your protection will be. +-------------------------- +MDEF +2 +-------------------------- +The following special effects will disappear at the end of regular maintenance on December 28, 2012: +-------------------------- +Base AGI at least 60: +VIT +2 +-------------------------- +Base AGI at least 80: +VIT +1 +MaxHP +50 +-------------------------- +Base AGI at least 100: +MaxHP +150 +Perfect Dodge +1 +-------------------------- +Base AGI at least 120: +MaxHP +100 +Perfect Dodge +3 +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +2932# +Amulet given by Tatsugami who has regained the divine power. +The more dexterous the person, the better the protection of the talisman. +-------------------------- +MDEF +2 +-------------------------- +The following special effects will disappear at the end of regular maintenance on December 28, 2012: +-------------------------- +Base AGI at least 60: +DEX +2 +-------------------------- +Base AGI at least 80: +DEX +1 +Decreases Variable Casting Time by 1%. +-------------------------- +Base AGI at least 100: +Decreases Variable Casting Time by additional 2%. +Increases Ranged Physical Damage by 1%. +-------------------------- +Base AGI at least 120: +Increases Ranged Physical Damage by additional 1%. +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +2933# +Amulet given by Tatsugami who has regained the divine power. +The more wisdom you have, the more you can obtain the protection of an amulet. +-------------------------- +MDEF +2 +-------------------------- +The following special effects will disappear at the end of regular maintenance on December 28, 2012: +-------------------------- +Base AGI at least 60: +INT +2 +-------------------------- +Base AGI at least 80: +INT +1 +MATK +5 +-------------------------- +Base AGI at least 100: +MATK +5 +Decreases After Skill Delay by 1%. +-------------------------- +Base AGI at least 120: +MATK +5 +Decreases After Skill Delay by additional 2%. +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +2934# +Amulet given by Tatsugami who has regained the divine power. +The more lucky you are, the more you can get amulet protection. +-------------------------- +MDEF +2 +-------------------------- +The following special effects will disappear at the end of regular maintenance on December 28, 2012: +-------------------------- +Base AGI at least 60: +LUK +2 +-------------------------- +Base AGI at least 80: +DEX +1 +LUK +1 +-------------------------- +Base AGI at least 100: +DEX +1 +INT +1 +-------------------------- +Base AGI at least 120: +DEX +1 +INT +3 +LUK +1 +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +2935# +Durable for sprint, sweat draining and drying, excellent grip characteristics. +-------------------------- +Decreases Variable Casting Time by 1%. +-------------------------- +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Sprint Ring: +Decreases Variable Casting Time by 4% +Decreases After Skill Delay by 4% +-------------------------- +When equipped with Sprint Shoes: +MaxSP +3% +Refine Level of Sprint Shoes is +7 or higher: +MaxHP +2% +-------------------------- +When equipped with Sprint Mail: +MaxHP +3% +Refine Level of Sprint Mail is +7 or higher: +MaxSP +2% +-------------------------- +When equipped with Sprint Ring, Sprint Shoes and Sprint Mail: +Decreases Variable Casting Time by 5%. +Decreases After Skill Delay by 5%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +2936# +A special ring for recovery. Feels energetic. +-------------------------- +VIT +1 +MaxHP +5% +MaxHP +250 +DEF +5 +-------------------------- +Increases recovery amount gained from Healing skills by 5%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +2nd classes +# +2937# +A symbol celebrating the RJC2012 championship and runner-up guild. +Feel the strength of both guilds. +-------------------------- +The following special effects will disappear at the end of regular maintenance on June 5, 2012: +-------------------------- +Increases experience gained from defeating monsters by 10%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2938# +A symbol celebrating the RJC2012 championship and runner-up guild. +Feel the strength of both guilds. +-------------------------- +The following special effects will disappear at the end of regular maintenance on June 5, 2012: +-------------------------- +All Stats +5 +HIT +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2939# +A symbol celebrating the RJC2012 championship and runner-up guild. +Feel the strength of both guilds. +-------------------------- +The following special effects will disappear at the end of regular maintenance on June 5, 2012: +-------------------------- +Protects from skill cast interruption. +Decreases Variable Casting Time by 20%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2940# +A guide manual for Basic Ninja skills. +-------------------------- +MaxSP +100 +-------------------------- +Enables the use of Level 1 Cicada Skin Shed. +Enables the use of Level 1 Flaming Petals. +Enables the use of Level 1 Throw Shuriken. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Maximum Base Level 12 +Novice +# +2941# +A guide manual for Basic Gunslinger skills. +-------------------------- +MaxSP +100 +-------------------------- +Enables the use of Level 1 Coin Flip. +Enables the use of Level 1 Adjustment. +Enables the use of Level 1 Madness Canceller. +Enables the use of Level 1 Increasing Accuracy. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Maximum Base Level 12 +Novice +# +2942# +A guide manual for Basic Taekwon Boy/Girl skills. +-------------------------- +MaxSP +100 +-------------------------- +Enables the use of Level 4 Mild Wind. +Enables the use of Level 5 Flying Kick. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Maximum Base Level 12 +Novice +# +2943# +An esoteric ring which enables its wearer into amplify his hidden power. +-------------------------- +Critical +5 +-------------------------- +When equipped with Bloody Muffler: +Critical +10 +Increases Critical Damage by 5% + +Refine Level of Bloody Muffler is +5 or higher: +Increases Critical Damage by additional 3%. + +Refine Level of Bloody Muffler is +7 or higher: +Increases Critical Damage by additional 4%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +All Jobs except Novice +# +2944# +Rental Item +*Effects in WoE TE area +MaxHP +100 +Decreases damage taken from Players by 5%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +2945# +Rental Item +*Effects in WoE TE area +Increases Damage against Players by 5%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +2946# +Rental Item +MDEF +5 +-------------------------- +*Effects in WoE TE area +Decreases damage taken from Players by 5%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +2947# +Model that can recall the memories of idyllic spring afternoon. If you looking into it, you will miss home and family. +-------------------------- +MDEF +2 +-------------------------- +Enables use of Skill A Spring Night's Dream. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2948# +Accessories made modeled after the wings of a dragon. +-------------------------- +FLEE +5 +-------------------------- +When equipped with +7 Wing of Ventus: +Perfect Dodge +2 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +2949# +Mysterious bracelet that is very similar to a Temporal bracelet. +-------------------------- +All Stats +1 +DEF +3 +MDEF +3 +-------------------------- +Enables the use of Level 5 Spell Breaker. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +All Jobs except Novice +# +2950# +Rental Item +Specially made to help the members of guilds to grow, this ring generates special waves. +-------------------------- +Increases experience gained from defeating monsters by 10%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Maximum Base Level 100 +# +2951# +Rumored to be imbued with the power of the deity and prophet Kvasir, this ring endows its wearer with special healing ability. +-------------------------- +MaxSP +30 +-------------------------- +Enables the use of Level 1 Snow Flip. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2952# +Rumored to be imbued with the power of the deity and prophet Kvasir, this ring endows its wearer with special healing ability. +-------------------------- +MaxSP +30 +-------------------------- +Enables the use of Level 1 Peony Mommy. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2953# +Rumored to be imbued with the power of the deity and prophet Kvasir, this ring endows its wearer with special healing ability. +-------------------------- +MaxSP +100 +-------------------------- +Enables the use of Level 1 Slapping Herb. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2954# +Rumored to be imbued with the power of the deity and prophet Kvasir, this ring endows its wearer with special healing ability. +-------------------------- +MaxSP +100 +-------------------------- +Enables the use of Level 1 Yggdrasil Dust. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2955# +A magical ring that increasess attack against neutral elemental. +-------------------------- +Increases Physical Damage against enemies of Neutral elemental monsters by 5%. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +2956# +Magical ring that Decreases damage towards the wearer. +-------------------------- +All Stats +1 +DEF +10 +MDEF +5 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +All Jobs except Novice +# +2957# +Fire Spirit king's power ring. Once worn, your weapon will spout its boiling spirit power. +A good pair with Modified Ring of Resonance. +-------------------------- +STR +3, VIT +2 +ATK +20 +-------------------------- +Decreases damage taken from Fire elemental attacks by 10%. +-------------------------- +When dealing physical damage, auto-casts various skills. +When equipped with Modified Ring of Resonance: the auto-cast skills increases. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 85 +2nd Job, Star Gladiator, Soul Linker, Kagerou/Oboro +# +2958# +Missing pair ring for Modified Ring of Flame Lord. Equipping together will bring extra effects for both rings. +-------------------------- +AGI +3, VIT +1 +MATK +10 +DEF +2 +MDEF +2 +-------------------------- +When recieving physical damage, auto-casts various skills. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 85 +2nd Job, Star Gladiator, Soul Linker, Kagerou/Oboro +# +2959# +A collar symbolizing a close relationship. + +AGI +2. +Reduces damage taken from Brute monster by 3%. +-------------------------- +Class: Accessory +Position: Any +Defense: 0 +Weight: 30 +Requires Level: 1 +Usable By: All Jobs +# +2960# +All Stats +1 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2961# +Beautiful green magic carpet. Fly in the sky. +-------------------------- +AGI +1 +-------------------------- +Enables the use of Level 2 0000FFTeleport. +-------------------------- +Type: Accessory +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +2962# +A ring that increasess mental power. +-------------------------- +MaxSP +50 +-------------------------- +Decreases damage taken from Demi-Human race by 1%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +2963# +This magic ring, developed in Geffen, enhances its wearer's physical abilities. +-------------------------- +ATK +5% +-------------------------- +When equipped with Anti-Magic Suit: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When equipped with Geffen Magic Robe: +Decreases After Skill Delay by 5%. +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +2964# +This magic ring developed in Geffen enhances its wearer's magical abilities. +-------------------------- +MATK +5% +-------------------------- +When equipped with Geffen Magic Robe: +Decreases Variable Casting Time by 5%. +-------------------------- +When equipped with Anti-Magic Suit: +Decreases After Skill Delay by 5%. +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +2965# +An ornament carved with delicate and beautiful angels from the shell of an eggshells. +-------------------------- +All Stats +1 +ATK +5% +MATK +5% +-------------------------- +When equipped with Blue Angel Hairband or Pink Angel Hairband: +All Stats +1 +MaxHP +5% +MaxSP +5% +has a chance to cast Lv 5 Lord of Vermilion upon receiving physical damage, +increase damage by 5% to all races, +decrease variable cast time by 10%. +-------------------------- +Type: Accessory +Defense: 1 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs +# +2966# +A ring made of pure gold imbued with mystical powers to commemorate the 2012 RWC. +-------------------------- +ATK +1%. +-------------------------- +When equipped with RWC Memorial Pendant: +MATK +4% +ATK +4% +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: None +# +2967# +A ring made of pure gold imbued with mystical powers to commemorate the 2012 RWC. +-------------------------- +ATK +1%. +-------------------------- +When equipped with RWC Memorial Pendant[1]: +MATK +4% +ATK +4% +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: None +# +2968# +A pendant made of pure gold imbued with mystical powers to commemorate the 2012 RWC. +-------------------------- +MATK +1% +-------------------------- +When equipped with RWC Memorial Ring: +MATK +4% +ATK +4% +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: None +# +2969# +A pendant made of pure gold imbued with mystical powers to commemorate the 2012 RWC. +-------------------------- +MATK +1% +-------------------------- +When equipped with RWC Memorial Ring[1]: +MATK +4% +ATK +4% +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: None +# +2970# +A box full of 64 layers of crunchy pie. +-------------------------- +Random chance a defeated monster will drop Pie Fruit. +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +2971# +A silver-colored watch with connecting chain. +-------------------------- +When equipped with Cyclop's Eye/Glasses & Memory Book: +MATK +7% +Increases HP and SP Recovery Rate by 15%. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +Magician and Soul Linker classes +# +2972# +A pendant symbolizing the protection of love. +-------------------------- +INT +1, STR +1, MDEF +5 +-------------------------- +Type: Accessory +Defense: 5 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2973# +A pendant that symbolizes eternal love. +-------------------------- +AGI +1, DEX +1, MDEF +5 +-------------------------- +Type: Accessory +Defense: 5 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2974# +A necklace that symbolizes the protection of eternal love. +-------------------------- +All Status +1, MDEF +5 +-------------------------- +Enables the use of Level 3Heal. +-------------------------- +Type: Accessory +Defense: 5 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2975# +Ragnarok Online badge created in the 10th anniversary year. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +2976# +Lantern with red light. +-------------------------- +MaxSP -300 +-------------------------- +Enables the use of Level 1 Sight. +-------------------------- +Random chance a defeated monster will drop Alcohol, Detrimindexta or Karvodailnirol. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +# +2977# +A gem that has been crushed. It contains a wonderful magical power with grudge. +-------------------------- +MaxSP +200 +-------------------------- +Enables the use of Level 3 Scream. +-------------------------- +When equipped with Gentle Heart: +Adds a chance that your mind will be possessed by abandoned doll. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 110 +# +2978# +A gem with warm light. Contains cozy and warm magic power. +-------------------------- +MaxHP +500 +Recover 300 HP every 10 seconds. +-------------------------- +Enables the use of Level 3 Scream +-------------------------- +When equipped with Wounded Heart: +Adds a chance that your mind will be possessed by abandoned doll. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 110 +# +2979# +A delicious strawberry, everyone is wanted to bite it. +-------------------------- +All Stats +1 +DEF +1 +-------------------------- +Random chance to auto-cast Level 3 Frost Nova when receiving physical damage. +-------------------------- +When equipped with Tasty Strawberry Hat: +MaxHP +15% +Decreases damage taken from Fire elemental attacks by 10%. +Increases Ranged Physical Damage by 30%. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +2980# +Glove which is full of dark forces, its magic lines wrapped around your finger-tip can manipulate a doll. +-------------------------- +MaxSP +200 +MaxHP +500 +-------------------------- +Enables the use of Level 1 Spider Web. +-------------------------- +When attacked, chance to activate Kimmy's mind confusion. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 110 +# +2981# +A spiral ring which made to defeat Satan Morocc. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 160 +# +2982# +A magic ring that increase wearer's damage against Earth elemental monsters. +-------------------------- +Increases Physical Damage against enemies of Earth elemental by 5%. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +2983# +Embroidery brooch with beautiful jewelry occasion of a spider. The devil is asleep in it and the wearer of this gem will vitality. +-------------------------- +When kill a monster with Physical or Magical Damage, recover 2 SP. +-------------------------- +Lost HP -10each 5 seconds. +-------------------------- +When equipped with Incubus Card: +Increases Incubus Card effect x2. +-------------------------- +When equipped with Succubus Card: +Increases Succubus Card effect x2. +-------------------------- +When equipped with Incubus Card and Succubus Card: +Increases both effects x2. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +2984# +A glove made from the leather of great boar. +-------------------------- +Increases experience gained from defeating monsters by 5%. +-------------------------- +Increases damage taken from all monsters by 5%. +-------------------------- +When equipped with Iron Fist Card, Am Mut Card, Explosion Card, Ancient Worm Card, Gajomart Card, Christmas Cookie Card, Gullinbursti Card, Skeleton General Card, Zombie Prisoner Card or Mini Demon Card: +Increases effect of these cards by x1.5. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +2985# +A gold ring that has the ability to make its wearer invisible. +Shepherd Gyges used this ring to murder his king and take his queen. +-------------------------- +INT +3 +MATK +15 +MDEF +5 +-------------------------- +Enables the use of Level 1 Hiding. +-------------------------- +Type: Accessory (Left) +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: Base Level 50 +Usable By: All Jobs +# +2986# +The ring is designed according to the snake. +-------------------------- +DEX +3 +DEF +2 +MDEF +2 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2987# +The charm is designed according to the snake. +-------------------------- +AGI +3, LUK +2 +DEF +2 +MDEF +3 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2988# +New Oz's wing ring. +-------------------------- +Decreases Variable Casting Time by 25%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +Minstrel +# +2989# +Its a pair of Aigu's Floral Mic. +-------------------------- +Decreases Variable Casting Time by 25%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +Wanderer +# +2990# +Pendant of Harmony. +-------------------------- +STR -5 +MATK +6% +-------------------------- +Decreases damage taken from Holy elemental attacks by 5%. +-------------------------- +Increases HP and SP Recovery Rate by 50%. +-------------------------- +Random chance to restore 1000 HP per second for 5 seconds when dealing physical damage. +-------------------------- +Random chance to auto-cast Level 3 Sanctuary when receiving physical damage. +-------------------------- +When equipped with Pendant of Chaos: +All Stats +5 +Random chance to auto-cast Level 1 Maelstrom when wearer receiving magical attack. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +3rd Classes +# +2991# +Pendant of Chaos. +-------------------------- +INT -5 +ATK +6% +-------------------------- +Decreases damage taken from Shadow elemental attacks by 5%. +-------------------------- +Prevents Confuse status. +-------------------------- +Random chance to inflict Confuse status on the target when dealing physical damage. +-------------------------- +Random chance to inflict Confuse status on 11*11 AoE when receiving physical damage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +3rd Classes +# +2992# +Pendant of Maelstrom. +-------------------------- +All Stats +1 +MATK +6% +ATK +6% +-------------------------- +Random chance to auto-cast Level 1 Maelstrom when receiving magical attack. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +3rd Classes +# +2993# +A ring made from the sprout of the world tree \ +. +-------------------------- +HIT +3 +-------------------------- +MaxHP +200, MaxSP +100 +-------------------------- +When equipped with World Tree Hat: +Decreases damage taken from all elemental attacks by 3%. +Increases Healing skills effectiveness by 5%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +2994# +Water crystallized over a long period of time. It is always wet and will be flooded if not stored in a special way. +-------------------------- +Physical attacks have a chance to auto-cast Level 1 Deluge. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +2995# +This mechanical device promotes the precise and timely execution of spells. +-------------------------- +Decreases SP Consumption by 10%. +-------------------------- +Decreases After Skill Delay by 10%. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Increases damage of Axe Boomerang by 100%. +Decreases Axe Boomerang skill cooldown by 2 seconds. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +2996# +Designed to strengthen the gun barrels of Mado Gears for enhanced firepower, this part is easy to assemble and disassemble. +-------------------------- +HIT +10 +ATK +4% +-------------------------- +Increases damage of Knuckle Boost by 25%. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +2997# +RWC gold brooch given to participants. +-------------------------- +ATK +20 +MATK +20 +-------------------------- +When equipped with RWC Silver Brooch: +ATK +10% +MATK +10% +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2998# +A mysterious bracelet that made from other the world. It seems used as a tool to summon something. +-------------------------- +Decreases damage taken from Holy elemental attacks by 10%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +2999# +RWC silver brooch given to participants. +-------------------------- +MaxHP +300 +MaxSP +30 +-------------------------- +When equipped with RWC Gold Brooch: +ATK +10% +MATK +10% +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +3629# +A token to note that you have traded 1 Brisingamen. +When this expires, you are ready to trade another Brisingamen +-------------------------- +Weight: 0 +# +3630# +A token to note that you have traded 1 Sleipnir. +When this expires, you are ready to trade another Sleipnir +-------------------------- +Weight: 0 +# +3633# +A token to note that you have traded 1 Mjolnir. +When this expires, you are ready to trade another Mjolnir +-------------------------- +Weight: 0 +# +3634# +A token to note that you have traded 1 Megingjord. +When this expires, you are ready to trade another Megingjord +-------------------------- +Weight: 0 +# +3737# +These points can be exchanged for various goods and services with Grandma Boxter at the second floor of the Eden Group Headquarters +-------------------------- +Weight: 0 +# +4001# +LUK +2 +Perfect Dodge +1 +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4002# +VIT +1 +MaxHP +100 +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4003# +MaxHP +700 +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4004# +DEX +1 +HIT +3 +-------------------------- +Collection Effect +HIT + 2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4005# +Increases Physical Damage against enemies of Shadow elemental by 20%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Shadow elemental by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4006# +LUK +1 +Critical +1 +Perfect Dodge +1 +-------------------------- +Collection Effect +Critical +1 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4007# +Increases Physical Damage against enemies of Formless race by 20%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Formless race by 2% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4008# +STR +1 +ATK +10 +-------------------------- +Collection Effect +ATK +2 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4009# +AGI +1 +FLEE +2 +-------------------------- +Collection Effect +FLEE +2 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4010# +MaxSP +80 +-------------------------- +Collection Effect +SP +5 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4011# +VIT +1 +MaxHP +100 +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4012# +MaxHP +400 +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4013# +MaxHP +5% +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4014# +MaxHP +400 +MaxSP +50 +-------------------------- +Collection Effect +HP +10 +SP +5 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4015# +FLEE +10 +-------------------------- +Collection Effect +FLEE +2 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4016# +AGI +1 +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4017# +Random chance to inflict Stun status on the target when dealing physical damage. +-------------------------- +Collection Effect +HIT +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4018# +INT +1 +MaxSP +10 +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4019# +STR +1 +ATK +3 +-------------------------- +Collection Effect +ATK +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4020# +ATK +5 +-------------------------- +Random chance to inflict Blind status on the target when dealing physical damage. +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4021# +DEX +1 +ATK +5 +-------------------------- +Collection Effect +ATK +2 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4022# +VIT +2 +-------------------------- +Collection Effect +VIT +1 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4023# +INT +1 +-------------------------- +Collection Effect +Weight Limit +5 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4024# +ATK +5 +-------------------------- +Random chance to inflict Sleep status on the target when dealing physical damage. +-------------------------- +Collection Effect +Weight Limit +5 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4025# +ATK +10 +-------------------------- +Random chance to inflict Stun status on the target when dealing physical damage. +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4026# +AGI +1 +FLEE +1 +-------------------------- +Collection Effect +FLEE +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4027# +AGI +2 +-------------------------- +Collection Effect +AGI +1 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4028# +STR +2 +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4029# +ATK +15 +Critical +1 +-------------------------- +Collection Effect +ATK +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4030# +Increases Physical Damage against enemies of Wind elemental by 20%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Wind elemental by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4031# +MaxHP +10% +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4032# +DEF +2 +-------------------------- +Collection Effect +DEF +2 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4033# +Enables the use of Level 1 Detoxify. +-------------------------- +Collection Effect +Weight Limit +5 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4034# +DEX +2 +-------------------------- +Collection Effect +HIT +2 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4035# +Increases Physical Damage against enemies of Demi-Human race by 20%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Demi-Human race by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4036# +Increases HP Recovery Rate by 10%. +-------------------------- +When equipped with Zipper Bear Card, Baby Leopard Card, Raggler Card and Holden Card: +STR +4 +MaxHP +7% +MaxSP +7% +Increases damage of Mammonite by 20%. +Gains 1 SP on each physical attack. +When equipped by Alchemist classes: +Random chance to auto-cast Level 1 Adrenaline Rush when dealing physical damage. +Random chance a defeated monster will drop Glistening Coat or Stem. +-------------------------- +Collection Effect +Increases HP Recovery Rate by 3%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4037# +ATK +5 +-------------------------- +Random chance to inflict Poison status on the target when dealing physical damage. +-------------------------- +Collection Effect +ATK +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4038# +Increases HP Recovery Rate by 20%. +-------------------------- +Collection Effect +Increases HP Recovery Rate by 3%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4039# +Increases resistance against Silence status by 20%. +-------------------------- +When equipped with Wanderer Card, Wild Rose Card, Shinobi Card and Wickebine Tres Card: +STR +6 +AGI +4 +Increases damage of Backstab by 10%. +Random chance to auto-cast Level 5 Strip Armor on the target when dealing Physical Damages, if Level 5 Strip Armor is learned. + +When equipped by Rogue classes: +Decreases SP Consumption by 20%. +Disables the Auto-Intimidate ability of the Wanderer Card. +-------------------------- +Collection Effect +Increases resistance against Silence status by 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4040# +Enables the use of Level 1 Teleport. +-------------------------- +Collection Effect +SP +5 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4041# +DEF +1 +-------------------------- +Increases resistance against Sleep status by 20%. +-------------------------- +Collection Effect +DEF +2 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4042# +DEF +2 +-------------------------- +Decreases damage taken from Wind elemental attacks by 10%. +-------------------------- +Collection Effect +DEF +2 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4043# +ATK +20 +-------------------------- +Collection Effect +ATK +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4044# +Enables the use of Level 1 Hiding. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Brute race by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4045# +Decreases damage taken from Ranged Physical Damage by 35%. +-------------------------- +Collection Effect +Decreases damage taken from Ranged Physical Damage by 2%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4046# +Increases resistance against Blind status by 20%. +-------------------------- +Collection Effect +Increases resistance against Blind status by 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4047# +Enchants compounded Armor with Ghost elemental. +Decreases HP Recovery Rate by 25%. +-------------------------- +Collection Effect +All Status +1 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4048# +Enables the use of Level 3 Envenom. +-------------------------- +Collection Effect +Increases resistance against Poison status by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4049# +Increases Physical Damage against enemies of Fire elemental by 20%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Fire elemental by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4050# +AGI +2 +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4051# +AGI +1 +Perfect Dodge +5 +-------------------------- +Collection Effect +Perfect Dodge +1 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4052# +INT +2 +-------------------------- +Collection Effect +INT +1 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4053# +Enables the use of Level 1 Heal. +Increases SP Consumption by 25%. +-------------------------- +Collection Effect +Increases SP Recovery Rate by 3% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4054# +Blesses compounded Armor with the Holy elemental. +-------------------------- +Collection Effect +INT +3 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4055# +ATK +5 +-------------------------- +Random chance to inflict Frozen status on the target when dealing physical damage. +-------------------------- +Collection Effect +Increases resistance against Frozen status by 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4056# +FLEE +5 +-------------------------- +Decreases damage taken from Wind elemental attacks by 30%. +-------------------------- +Collection Effect +FLEE +2 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4057# +ATK +5 +-------------------------- +5% chance to inflict Silence status on the target when dealing physical damage. +-------------------------- +Collection Effect +Increases resistance against Silence status by 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4058# +Decreases damage taken from Demi-Human race by 30%. +-------------------------- +Collection Effect +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4059# +Decreases damage taken from Plant race by 30%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Plant race by 2%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4060# +Increases Physical Damage against enemies of Brute race by 20%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Brute race by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4061# +DEF +1 +-------------------------- +Makes an armor indestructible in battle. +Armor can still be destroyed during upgrade attempts. +-------------------------- +Collection Effect +DEF +2 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4062# +Increases Physical Damage against enemies of Poison elemental by 20%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Poison elemental by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4063# +Increases Physical Damage against enemies of Insect race by 20%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Insect race by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4064# +DEX +3 +-------------------------- +Collection Effect +DEX +1 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4065# +Increases Physical Damage against enemies of Earth elemental by 20%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Earth elemental by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4066# +Decreases damage taken from Brute race by 30%. +-------------------------- +Collection Effect +Decreases damage taken from Brute race by 2%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4067# +DEF +1 +-------------------------- +Increases resistance against Frozen status by 20%. +-------------------------- +Collection Effect +DEF +2 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4068# +Increases Physical Damage against enemies of Plant race by 20%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Plant race by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4069# +Increases Physical Damage against enemies of Water elemental by 20%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Water elemental by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4070# +Increases SP Recovery Rate by 15%. +-------------------------- +Collection Effect +Increases SP Recovery Rate by 3%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4071# +FLEE +5 +-------------------------- +Decreases damage taken from Undead elemental attacks by 30%. +-------------------------- +Collection Effect +Decreases damage taken from Undead elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4072# +ATK +5 +-------------------------- +Makes a weapon indestructible in battle. +Weapon can still be destroyed during upgrade attempts. +-------------------------- +Collection Effect +DEF +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4073# +Enables Level 5 Discount. +-------------------------- +Collection Effect +MATK +2 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4074# +Decreases damage taken from Insect race by 30%. +-------------------------- +Collection Effect +Decreases damage taken from Insect race by 2%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4075# +DEF +1 +-------------------------- +Increases resistance against Stone Curse status by 20%. +-------------------------- +Collection Effect +Increases resistance against Stone Curse status by 1%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4076# +ATK +5 +-------------------------- +Random chance to inflict Curse status on the target when dealing physical damage. +-------------------------- +Collection Effect +Increases SP Recovery Rate by 3% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4077# +Protects from skill cast interruption. +Increases Variable Casting Time of all skills by 25%. +-------------------------- +Collection Effect +SP +5 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4078# +VIT +3 +-------------------------- +Collection Effect +DEF +2 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4079# +STR +3 +-------------------------- +Collection Effect +STR +1 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4080# +Increases Physical Damage against enemies of Fish race by 20%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Fish race by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4081# +FLEE +5 +-------------------------- +Decreases damage taken from Earth elemental attacks by 30%. +-------------------------- +Collection Effect +FLEE +2 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4082# +ATK +5 +-------------------------- +Increases Physical Damage against enemies of Small size by 15%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Small size by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4083# +Decreases damage taken from Fish race monsters by 30%. +-------------------------- +Collection Effect +Decreases damage taken from Fish race monsters by 2%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4084# +Enables the use of Level 3 Magnum Break. +-------------------------- +Collection Effect +MATK +2 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4085# +Increases Physical Damage against enemies of Holy elemental by 20%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Holy elemental by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4086# +Critical +9 +-------------------------- +Collection Effect +Critical +1 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4087# +Prevents Confuse status. +Decreases damage taken from Earth elemental attacks by 15%. +-------------------------- +Collection Effect +Increases resistance against Confuse status by 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4088# +Enables the use of Level 1 Cloaking. +-------------------------- +Collection Effect +Weight Limit +50 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4089# +DEF +1 +-------------------------- +Enchants compounded Armor with Water elemental. +-------------------------- +Collection Effect +Decreases damage taken fromWater elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4090# +DEF +1 +-------------------------- +Increases resistance against Stone Curse status by 15%. +Decreases damage taken from Earth elemental attacks by 5%. +-------------------------- +When equipped with Bongun Card and Yao Jun Card: +All Stats +1 +-------------------------- +Collection Effect +Decreases damage taken from Earth elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4091# +STR +1 +Critical +4 +-------------------------- +Collection Effect +Critical +1 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4092# +ATK +5 +-------------------------- +Increases Physical Damage against enemies of Medium size by 15%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Medium size by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4093# +Enables the use of Level 1 Cure. +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4094# +Increases Ranged Physical Damage by 10%. +-------------------------- +Collection Effect +Increases Ranged Physical Damage by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4095# +FLEE +5 +-------------------------- +Decreases damage taken from Water elemental attacks by 30%. +-------------------------- +Collection Effect +Decreases damage taken from Water elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4096# +ATK +10 +-------------------------- +Random chance to inflict Poison status on the target when dealing physical damage. +-------------------------- +Collection Effect +ATK +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4097# +AGI +1 +MaxHP +10% +-------------------------- +Collection Effect +HP +50 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4098# +DEF +1 +-------------------------- +Enchants compounded Armor with Wind elemental. +-------------------------- +Collection Effect +Decreases damage taken fromWind elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4099# +DEF +1 +-------------------------- +Enchants compounded Armor with Fire elemental. +-------------------------- +Collection Effect +Decreases damage taken from Fire elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4100# +MaxSP +15% +Increases SP Recovery Rate by 3%. +-------------------------- +Collection Effect +Increases SP Recovery Rate by 3% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4101# +DEF +1 +-------------------------- +Enchants compounded Armor with Earth elemental. +-------------------------- +Collection Effect +Decreases damage taken fromEarth elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4102# +FLEE +20 +-------------------------- +Increases damage taken from Ghost elemental attacks by 50%. +-------------------------- +Collection Effect +FLEE +4 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4103# +Enables the use of Level 1 Sight. +-------------------------- +Collection Effect +SP +5 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4104# +Random chance to inflict Confuse status on the target when dealing physical damage. +-------------------------- +Collection Effect +Increases resistance against Confuse status by 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4105# +Prevents Frozen status. +Decreases damage taken from Water elemental attacks by 5%. +-------------------------- +Collection Effect +Increases resistance against Frozen status by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4106# +HIT +20 +-------------------------- +Collection Effect +HIT +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4107# +MaxHP +8% +MaxSP +8% +-------------------------- +Collection Effect +HP +10 +SP +5 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4108# +FLEE +5 +-------------------------- +Decreases damage taken from Poison elemental attacks by 30%. +-------------------------- +Collection Effect +Increases resistance against Poison status by 1%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4109# +FLEE +5 +-------------------------- +Decreases damage taken from Fire elemental attacks by 30%. +-------------------------- +Collection Effect +Decreases damage taken from Fire elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4110# +Increases resistance against Poison status by 20%. +-------------------------- +Collection Effect +Decreases damage taken from Poison elemental by 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4111# +Increases Physical Damage against monsters of Demon race by 20%. +-------------------------- +Collection Effect +Increases Physical Damage against monsters of Demon race by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4112# +Prevents Silence status. +-------------------------- +Collection Effect +Increases resistance against Silence status by 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4113# +FLEE +5 +-------------------------- +Decreases damage taken from Ghost elemental attacks by 30%. +-------------------------- +Collection Effect +Decreases damage taken from Ghost elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4114# +DEF +1 +-------------------------- +Enchants compounded Armor with Poison elemental. +-------------------------- +Collection Effect +Increases resistance against Poison status by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4115# +Enable a 3% chance of gaining 15% of the damage inflicted on an enemy as HP with each attack +-------------------------- +Collection Effect +Enable a 1% chance of gaining 1% of the damage inflicted on an enemy as HP with each attack +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4116# +FLEE +5 +-------------------------- +Decreases damage taken from Shadow elemental attacks by 30%. +-------------------------- +Collection Effect +Decreases damage taken from Shadow elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4117# +Enables Level 1 Double Attack on compounded weapon. +If character has learned Double Attack, that skill's Level affects this card's Level. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Brute race by 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4118# +Increases Physical Damage against enemies of Dragon race by 20%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Dragon race by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4119# +Enchants compounded Armor with Shadow elemental. +-------------------------- +Collection Effect +Decreases damage taken from Shadow elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4120# +Decreases damage taken from Dragon race by 30%. +-------------------------- +Collection Effect +Decreases damage taken from Dragon race by 2%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4121# +HIT +100 +-------------------------- +Collection Effect +HIT +20 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4122# +STR +1 +Prevents Blind status. +-------------------------- +Collection Effect +Increases resistance against Blind status by 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4123# +MaxHP -25% +Enables effect of the Endure skill so long as the Footgear to which this card is compounded is equipped. +-------------------------- +Collection Effect +HP +1000 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4124# +Prevents Stone Curse status. +Decreases damage taken from Demon race monsters by 15%. +-------------------------- +Collection Effect +Increases resistance against Stone Curse status by 1%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4125# +Increases Physical Damage against enemies of Demi-Human, Brute, Plant and Insect race by 7%. +-------------------------- +Collection Effect +ATK +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4126# +ATK +5 +-------------------------- +Increases Physical Damage against enemies of Large size by 15%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Large size by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4127# +AGI +1 +-------------------------- +Prevents Sleep status. +-------------------------- +Collection Effect +Increases resistance against Sleep status by 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4128# +Nullifies all magic attacks, including supportive skills, that target character. +Increases SP Consumption by 100%. +-------------------------- +Collection Effect +MDEF +10 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4129# +AGI +3 +Critical +1 +-------------------------- +Collection Effect +Critical +1 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4130# +Increases Physical Damage against enemies of Undead race by 20%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Undead race by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4131# +Enables faster movement speed so long as the Footgear to which this card is compounded is equipped. +-------------------------- +Collection Effect +Increases movement speed by 5%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4132# +Nullifies Gemstone requirement of certain skills. +Increases SP Consumption by 25%. +-------------------------- +Collection Effect +Perfect Dodge +5 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4133# +Decreases damage taken from Neutral elemental attacks by 20%. +-------------------------- +Collection Effect +Decreases damage taken from Neutral elemental attacks by 2%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4134# +Adds 10% chance of gaining 5% of the damage against target as SP when dealing physical damage. +-------------------------- +Collection Effect +Adds 2% chance of gaining 2% of the damage against target as SP when dealing physical damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4135# +Reflects 30% of all Melee Physical Damage back to the enemy which inflicted it. +-------------------------- +Collection Effect +Adds 30% chance to Reflects 5% of all Melee Physical Damage back to the enemy which inflicted it. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4136# +Decreases damage taken from Demon race monsters by 30%. +-------------------------- +Collection Effect +Decreases damage taken from Demon race monsters by 2%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4137# +Nullifies reduction in damage against monsters resulting from monster's size. +-------------------------- +Collection Effect +ATK +20 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4138# +Decreases damage taken from Angel race by 30%. +-------------------------- +Collection Effect +Decreases damage taken from Angel race by 2%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4139# +Enables the use of Level 1 Steal. +-------------------------- +Collection Effect +DEF +2 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4140# +Increases Physical Damage against enemies of Boss class by 25%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Boss class by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4141# +INT +1 +DEF +1 +-------------------------- +Enchants compounded Armor with Undead elemental. +-------------------------- +Collection Effect +Decreases damage taken from Undead elemental attacks by 2%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4142# +Enables faster attack speed so long as the weapon to which this card is compounded is equipped. +-------------------------- +Collection Effect +ASPD +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4143# +VIT +3 +-------------------------- +Prevents Stun status. +-------------------------- +Collection Effect +Increases resistance against Stun status by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4144# +Restores HP and SP by 100% when resurrected. +-------------------------- +Collection Effect +FLEE +10 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4145# +Decreases Variable Casting Time by 30%. +-------------------------- +Collection Effect +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4146# +Adds 50% chance of reflecting Magical attacks, aside from skills which target the ground, cast on the character. +-------------------------- +Collection Effect +MDEF +10 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4147# +HIT -10 +-------------------------- +Endows compounded weapon with damage that will splash 3x3 cells around the character with each attack. +-------------------------- +Collection Effect +Increases Physical Damage against monsters of Demon race by 5%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4148# +Decreases SP Consumption by 30%. +-------------------------- +Collection Effect +Decreases SP Consumption by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4149# +Random chance a defeated Insect monster will drop Box of Thunder. +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4150# +Up to max +5 Refine Level: +DEF +2 +MDEF +5 +-------------------------- +Collection Effect +DEF +2 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4151# +Increases experience gained from defeating Plant race monsters by 10%. +Increases Physical Damage taken from Plant race by 20%. +-------------------------- +Collection Effect +Increases experience gained from defeating Plant race monsters by 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4152# +Random chance a defeated Insect monster will drop Carrot Juice, Banana Juice or Apple Juice. +Increases recovery amount gained from Carrot Juice, Banana Juice and Apple Juice by 50%. +-------------------------- +Collection Effect +Increases HP Recovery Rate by 3%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4153# +ATK +5 +-------------------------- +Increases Physical Damage against enemies of Aster by 30%. +-------------------------- +When equipped with Shell Fish Card and Aster Card: +Random chance a defeated Fish monster will drop Raw Fish. +Increases Physical Damage against enemies of Water elemental by 30%. +-------------------------- +Collection Effect +ATK +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4154# +Random chance a defeated Demi-Human race monster will drop Candy or Candy Cane. +Increases recovery amount gained from Candy and Candy Cane by 50%. +-------------------------- +Collection Effect +Weight Limit +5 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4155# +Increases Physical Damage against Goblin monsters by 30%. +-------------------------- +Collection Effect +Weight Limit +50 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4156# +Increases Critical Damage by 10%. +Critical +7 when attacking Formless monster. +-------------------------- +Collection Effect +Critical +1 when attacking Formless monster. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4157# +Increases Critical Damage by 10%. +Critical +7 when attacking Undead monster. +-------------------------- +Collection Effect +Critical +1 when attacking Undead monster. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4158# +Disables HP Recovery Rate. +Gains 100 HP each time a monster is killed by melee physical attacks. +-------------------------- +Collection Effect +Enable a 1% chance of gaining 1% of the damage inflicted on an enemy as HP with each attack. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4159# +AGI +2 +-------------------------- +Refine Level +9: +FLEE +20 +-------------------------- +Collection Effect +FLEE +2 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4160# +STR +2 +-------------------------- +Refine Level +9: +MaxHP +10% +MaxSP +10% +-------------------------- +Collection Effect +HP +50 +SP +25 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4161# +Random chance to auto-cast Level 1 Gloria when receiving physical damage. +-------------------------- +When equipped with Pecopeco Card: +VIT +3 +DEF +3 +-------------------------- +Collection Effect +LUK +1 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4162# +Random chance to inflict Blind status on attacker when receiving physical damage. +-------------------------- +When equipped with Bigfoot Card: +Increases the rate inflicting Blind status. +-------------------------- +Collection Effect +Increases resistance against Blind status by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4163# +FLEE +2 +Critical +7 +-------------------------- +When equipped by Swordman classes: +Random chance to auto-cast Level 5 Bowling Bash on the target when dealing physical damage. +-------------------------- +Collection Effect +FLEE +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4164# +Increases experience gained from defeating Fish race monsters by 10%. +Increases Physical Damage taken from Fish race monsters by 20%. +-------------------------- +Collection Effect +Increases experience gained from defeating Fish race monsters by 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4165# +Gains 5 SP each time an Insect monster is killed by melee physical attacks. +Drains 5 SP as the weapon is unequipped. +-------------------------- +Collection Effect +Gains 1 SP each time an Insect monster is killed by melee physical attacks. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4166# +Random chance to inflict Curse status on attacker when receiving physical damage. +-------------------------- +When equipped with Nightmare Card: +Increases the rate of inflicting Curse status. +-------------------------- +Collection Effect +Increases resistance against Stone Curse status by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4167# +Gains 5 SP each time a Brute monster is killed by melee physical attacks. +Drains 5 SP as the weapon is unequipped. +-------------------------- +Collection Effect +Gains 1 SP each time a Brute monster is killed by melee physical attacks. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4168# +Random chance to auto-cast Level 5 Meteor Storm on attacker when receiving physical damage. +-------------------------- +When equipped with Dark Illusion Card: +MaxHP +20% +MaxSP +20% +-------------------------- +Collection Effect +Decreases Fixed Casting Time by 0.01 seconds. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4169# +MaxHP -10% +MaxSP -10% +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Dark Lord Card: +Decreases Variable Casting Time by 20%. +-------------------------- +Collection Effect +Decreases Variable Casting Time by 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4170# +Random chance to inflict Stone Curse status on attacker when receiving physical damage. +-------------------------- +Collection Effect +Increases resistance against Stone Curse status by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4171# +Adds 5% chance of decreasing target's SP amount by 10% when dealing physical damage. +-------------------------- +When equipped by Sage classes: +Gains 1 SP when dealing physical damage. +-------------------------- +Collection Effect +Weight Limit +5 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4172# +Increases Critical Damage by 20%. +Drains 1 SP on each attack. +-------------------------- +When equipped with Wanderer Card, Wild Rose Card, Shinobi Card and Zhu Po Long Card: +AGI +5 +STR +5 +Increases Attack Speed (Decreases After Attack Delay by 5%). +Increases movement speed. +Restores SP by 1 on each attack. +Disable the Auto-Intimidate ability of the Wanderer Card + +When equipped by Thief classes: +Nullifies Gemstone requirement of certain skills. +-------------------------- +Collection Effect +Increases Critical Damage by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4173# +Random chance to inflict Sleep status on attacker when receiving physical damage. +-------------------------- +Collection Effect +Increases resistance against Sleep status by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4174# +Decreases damage taken from Neutral elemental attacks by 50%. +Increases damage taken from other elemental attacks by 50%. +-------------------------- +Collection Effect +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4175# +Random chance to auto-cast Level 1 Envenom on the target when dealing physical damage. +The target gets knocked back by 5 cells when using Envenom +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Demi-Human race by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4176# +Increases Critical Damage by 10%. +Critical +7 when attacking Dragon monster. +-------------------------- +Collection Effect +Critical +1 when attacking Dragon monster. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4177# +Random chance a defeated Plant monster will drop Green Live. +Decreases damage taken from Earth elemental attacks by 10%. +-------------------------- +Collection Effect +Decreases damage taken from Earth elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4178# +AGI +1 +FLEE +10 +-------------------------- +Increases damage of Double Strafe and Arrow Shower by 5%. +-------------------------- +When equipped with Cruiser Card, Anolian Card, Alligator Card and Merman Card: +AGI +5 +DEX +3 +Increases Ranged Physical Damage by 20%. +Perfect HIT +20% + +When equipped by Archer classes: +Random chance to inflict Coma status on Brute monster when dealing physical damage. +Increases experience gained from defeating Brute race monsters by 5%. +-------------------------- +When equipped with Cruiser Card, Anolian Card, Alligator Card and Green Ferus Card: +DEX +5 +Increases damage of Arrow Vulcan by 5%. +Increases damage of Musical Strike and Throw Arrow by 10%. + +When equipped by Bard or Dancer classes: +Random chance to auto-cast Level 2 Tarot Card of Fate when wearer receiving melee physical attacks. +-------------------------- +Collection Effect +FLEE +2 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4179# +AGI +1 +-------------------------- +When equipped with Chonchon Card: +FLEE +18 +-------------------------- +Collection Effect +DEX +1 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4180# +Gains 5 SP each time a Dragon monster is killed by melee physical attacks. +Drains 5 SP as the weapon is unequipped. +-------------------------- +Collection Effect +Gains 1 SP each time a Dragon monster is killed by melee physical attacks. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4181# +Random chance to inflict Silence status on attacker when receiving physical damage. +-------------------------- +Base VIT at least 77: +Increases the rate of inflicting Silence status. +-------------------------- +Collection Effect +Increases resistance against Silence status by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4182# +Gains 5 SP each time a Demon monster is killed by melee physical attacks. +Drains 5 SP as the weapon is unequipped. +-------------------------- +Collection Effect +Gains 1 SP each time a Demon monster is killed by melee physical attacks. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4183# +STR +1 +-------------------------- +When equipped with Wolf Card: +FLEE +18 +-------------------------- +Collection Effect +STR +1 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4184# +Increases Physical Damage against Golem monsters by 30%. +-------------------------- +Collection Effect +HP +50 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4185# +INT +1 +-------------------------- +When equipped by Acolyte classes: +INT +1 +MDEF +1 +-------------------------- +When equipped with Cookie Card, Fur Seal Card, Geographer Card and Enchanted Peach Tree Card: +VIT +10 +Decreases Variable Casting Time by 10%. +Decreases SP Consumption by 10%. + +When equipped by Acolyte classes: +Decreases damage taken from Undead elemental and Demon race monsters by 30%. +Increases experience gained from defeating Undead elemental and Demon race monsters by 5%. +-------------------------- +When equipped with Cookie Card, Fur Seal Card and Waste Stove Card: +STR +3 +MaxSP +80 +ATK +25 +Random chance to auto-cast Level 5 Signum Crusis when dealing physical damage. +Increases damage of Asura Strike by 10%. + +When equipped by Monk classes: +Protects from skill cast interruption. +Decreases SP Consumption by 10%. +-------------------------- +Collection Effect +MDEF +1 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4186# +STR +1 +VIT +1 +-------------------------- +When equipped with Zipper Bear Card, Baby Leopard Card, Myst Case Card and Heirozoist Card: +LUK +10 +Increases damage of Mammonite by 20%. +Gains 2 SP on each physical attack. + +When equipped by Merchant classes: +Adds 20% chance of reflecting magical attack. +Random chance a defeated monster will drop Old Purple Box. +-------------------------- +When equipped with Zipper Bear Card, Baby Leopard Card, Muka Card and Holden Card: +STR +4 +MaxHP +7% +MaxSP +7% +Increases damage of Mammonite by 20%. +Gains 1 SP on each physical attack. + +When equipped by Alchemist classes: +Random chance to auto-cast Level 1 Adrenaline Rush when dealing physical damage. +Random chance a defeated monster will drop Glistening Coat or Stem. +-------------------------- +Collection Effect +DEF +2 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4187# +Random chance a defeated Demon monster will drop Box of Resentment. +-------------------------- +Collection Effect +ATK +2 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4188# +Random chance a defeated Brute monster will drop Red Blood. +Decreases damage taken from Fire elemental attacks by 10%. +-------------------------- +Collection Effect +Decreases damage taken from Fire elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4189# +Random chance to inflict Curse status on attacker when receiving physical damage. +-------------------------- +Collection Effect +Increases resistance against Curse status by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4190# +Random chance a defeated Undead monster will drop Giggling Box. +-------------------------- +Collection Effect +Weight Limit +5 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4191# +Random chance to auto-cast Level 3 Heal on wearer when receiving physical damage. +-------------------------- +When equipped with Parasite Card, Miyabi Doll Card, Evil Nymph, Harpy Card and Bloody Butterfly Card: +MaxHP +500 +DEF +5 +MDEF +5 +Increases damage of Cold Bolt, Fire Bolt and Lightning Bolt by 10%. + +When equipped by Mage classes: +MATK +3% +Decreases Variable Casting Time by 15%. +-------------------------- +Collection Effect +Increases Healing skills effectiveness by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4192# +Increases Critical Damage by 10%. +Critical +7 when attacking Fish monster. +-------------------------- +Collection Effect +Critical +1 when attacking Fish monster. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4193# +When equipped by Novice classes: +Random chance to auto-cast Level 1 Endure when receiving physical damage. + +When equipped with Quve Card: +MaxHP +300 +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4194# +Random chance to inflict Stun status on attacker when receiving physical damage. +-------------------------- +Base DEX at least 77: +Increases the rate of inflicting Stun status. +-------------------------- +Collection Effect +Increases resistance against Stun status by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4195# +Random chance a defeated Fish monster will drop Crystal Blue. +Decreases damage taken from Water elemental attacks by 10%. +-------------------------- +Collection Effect +Decreases damage taken from Water elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4196# +Random chance a defeated monster will drop Large Jellopy or Jellopy. +-------------------------- +Collection Effect +Decreases damage taken from Water elemental by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4197# +LUK +1 +-------------------------- +When equipped with Poring Card: +FLEE +18 +-------------------------- +Collection Effect +HP +1% +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4198# +Enables its user to detect hidden enemies. +-------------------------- +Collection Effect +Weight Limit +500 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4199# +Increases HP and SP Recovery Rate by 10%. +-------------------------- +When equipped with Cruiser Card, Anolian Card, Alligator Card and Dragon Tail Card: +AGI +5 +DEX +3 +Increases Ranged Physical Damage by 20%. +Perfect HIT +20% + +When equipped by Archer classes: +Random chance to inflict Coma status on Brute monster when dealing physical damage. +Increases experience gained from defeating Brute race monsters by 5%. +-------------------------- +Collection Effect +Increases HP and SP Recovery Rate by 3%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4200# +Up to max +5 Refine Level: +MDEF +7 +-------------------------- +Collection Effect +MATK +2 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4201# +Random chance to inflict Stun status on attacker when receiving physical damage. +-------------------------- +Collection Effect +Increases resistance against Stun status by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4202# +Increases Physical Damage against enemies of Ghost elemental by 20%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Ghost elemental by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4203# +ATK +15 +-------------------------- +Random chance to auto-cast Level 3 Fire Ball on the target when dealing physical damage. +If the user has mastered the skill at Level 10, it will cast Level 10 Fire Ball. +-------------------------- +Collection Effect +AGI +1 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4204# +Increases experience gained from defeating Brute race monsters by 10%. +Increases Physical Damage taken from Brute race by 20%. +-------------------------- +Collection Effect +Increases experience gained from defeating Brute race monsters by 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4205# +Luk +2 +-------------------------- +Collection Effect +Weight Limit +50 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4206# +Int +2 +-------------------------- +When equipped with Zipper Bear Card, Baby Leopard Card, Raggler Card and Heirozoist Card: +LUK +10 +Increases damage of Mammonite by 20%. +Gains 2 SP on each physical attack. + +When equipped by Merchant classes: +Adds 20% chance of reflecting magical attack. +Random chance a defeated monster will drop Old Purple Box. +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4207# +DEF +1 +-------------------------- +Decreases damage taken from Small size by 25%. +-------------------------- +Collection Effect +Decreases damage taken from Small size by 2%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4208# +MaxSP +10% +-------------------------- +Increases damage of Frost Diver by 5%. +-------------------------- +When equipped with Yellow Novus Card, Evil Nymph Card, Bloody Butterfly Card and Harpy Card: +INT +3 +Increases damage of Thunderstorm and Heaven Drive by 10%. + +When equipped by Sage classes: +Adds 20% chance of reflecting magical attack. +Decreases Variable Casting Time by 20%. +Random chance a defeated monster will drop Red Gemstone or Yellow Gemstone. +-------------------------- +When equipped with Loli Ruri Card, Parasite Card, Evil Nymph, Harpy Card and Bloody Butterfly Card: +MaxHP +500 +DEF +5 +MDEF +5 +Increases damage of Cold Bolt, Fire Bolt and Lightning Bolt by 10%. + +When equipped by Mage classes: +MATK +3% +Decreases Variable Casting Time by 15%. +-------------------------- +Collection Effect +SP +5 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4209# +Random chance to auto-cast Level 1 Frost Joke on the target when dealing physical damage. +If the user has mastered the skill at Level 5, it will cast Level 5 Frost Joke. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Angel race by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4210# +Random chance to auto-cast Level 1 Intimidate on the target when dealing physical damage. +-------------------------- +When equipped by Thief classes: +FLEE +20 +-------------------------- +When equipped with Wild Rose Card, Shinobi Card, Zhu Po Long Card and The Paper Card: +AGI +5 +STR +5 +Increases Attack Speed (Decreases After Attack Delay by 5%). +Increases movement speed. +Restores SP by 1 on each attack. +Disable the Auto-Intimidate ability of the Wanderer Card + +When equipped by Thief classes: +Disables Gemstone requirement of certain skills. +-------------------------- +When equipped with Wild Rose Card, Shinobi Card, Stainer Card and Wickebine Tres Card: +STR +6 +AGI +4 +Increases damage of Backstab by 10%. +Random chance to auto-cast Level 5 Strip Armor if Level 5 Strip Armor is learned. + +When equipped by Rogue classes: +Decreases SP Consumption by 20%. +Disables the Auto-Intimidate ability of the Wanderer Card. +-------------------------- +Collection Effect +FLEE +2 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4211# +MDEF +3 +-------------------------- +When equipped with Rocker Card: +FLEE +18 +-------------------------- +Collection Effect +VIT +1 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4212# +Random chance to auto-cast Level 1 Bash on the target when dealing physical damage. +The Bash skill shoves the enemy 5 cells back. +Increases damage taken from Munak monsters by 100%. +-------------------------- +When equipped with Munak Card and Yao Jun Card: +All Stats +1 +-------------------------- +Collection Effect +Decreases damage taken from Shadow elemental by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4213# +Random chance to inflict Silence status on attacker when receiving physical damage. +-------------------------- +Collection Effect +Increases resistance against Silence status by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4214# +Increases Critical Damage by 10%. +Critical +7 when attacking Insect monster. +-------------------------- +Collection Effect +Critical +1 when attacking Insect monster. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4215# +Random chance a defeated monster will drop Food items. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Fire elemental by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4216# +Random chance to inflict Frozen status on attacker when receiving physical damage. +-------------------------- +Collection Effect +Increases resistance against Frozen status by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4217# +Random chance to auto-cast Level 1 Heal on the user when dealing physical damage. +If the user has mastered the skill at Level 10, it will cast Level 10 Heal. +-------------------------- +When equipped with Rideword Card, Cookie Card, Fur Seal Card and Geographer Card: +VIT +10 +Decreases Variable Casting Time by 10%. +Decreases SP Consumption by 10%. + +When equipped by Acolyte classes: +Decreases damage taken from Undead elemental and Demon race monsters by 30%. +Increases experience gained from defeating Undead elemental and Demon race monsters by 5%. +-------------------------- +Collection Effect +Increases Healing skills effectiveness by 1%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4218# +VIT -3 +MaxHP +1000 +-------------------------- +Decreases HP Recovery Rate by 20%. +-------------------------- +When equipped with Inccubus Card: +VIT +4 +Increases HP Recovery Rate by 30%. +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4219# +Random chance a defeated monster will drop Gemstones. +-------------------------- +Collection Effect +ATK +2 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4220# +DEF +2 +MDEF +2 +-------------------------- +When equipped with Assaulter Card, Permeter Card, Freezer Card and Heater Card: +STR +10 +MaxHP +20% +Increases HP Recovery Rate by 50%. +Random chance to auto-cast Level 1 Weapon Perfection when dealing physical attacks. +Random chance a defeated monster will drop Red Potion. + +When equipped by Swordman classes: +Increases recovery amount gained from Red Potion, Yellow Potion and White Potion by 50%. +-------------------------- +Collection Effect +Decreases SP Consumption by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4221# +Increases experience gained from defeating Insect race monsters by 10%. +Increases Physical Damage taken from Insect race by 20%. +-------------------------- +Collection Effect +Increases experience gained from defeating Insect race monsters by 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4222# +Random chance to inflict Sleep status on attacker when receiving physical damage. +-------------------------- +When equipped with Skeleton Card: +Increases the rate of inflicting Sleep status. +-------------------------- +Collection Effect +Increases resistance against Sleep status by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4223# +DEF +1 +-------------------------- +Increases resistance against Stun status by 20%. +-------------------------- +Collection Effect +DEF +2 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4224# +Random chance a defeated Brute monster will drop Box of Storms. +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4225# +HIT +10 +ATK +10 +-------------------------- +Collection Effect +HIT +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4226# +Refine Level +9: +DEF +2 +MDEF +5 +-------------------------- +Collection Effect +DEF +2 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4227# +Random chance a defeated Brute monster will drop Monster's Feed or Meat. +Increases recovery amount gained from Meat and Monster's Feed by 50%. +-------------------------- +Collection Effect +Increases HP Recovery Rate by 3% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4228# +Random chance a defeated Fish monster will drop Box of Drowsiness. +-------------------------- +Collection Effect +Decreases damage taken from Ranged Physical Damage by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4229# +INT +1 +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +When equipped with Punk Card, Alarm Card and Clock Card: +DEF +3 +MDEF +3 +-------------------------- +Collection Effect +Decreases Variable Casting Time by 3%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4230# +AGI +1 +-------------------------- +Random chance to auto-cast Level 5 Cloaking on the user when receiving physical damage. +If the user has not learned Level 3 or higher Cloaking skill or if the user is not an Assassin, this card allows the user to use the skill only when being near to a wall. +-------------------------- +When equipped with Wanderer Card, Wild Rose Card, Zhu Po Long Card and The Paper Card: +AGI +5 +STR +5 +Increases Attack Speed (Decreases After Attack Delay by 5%). +Increases movement speed. +Restores SP by 1 on each attack. +Disable the Auto-Intimidate ability of the Wanderer Card + +When equipped by Thief classes: +Disables Gemstone requirement of certain skills. +-------------------------- +When equipped with Wanderer Card, Wild Rose Card, Stainer Card and Wickebine Tres Card: +STR +6 +AGI +4 +Increases damage of Backstab by 10%. +Random chance to auto-cast Level 5 Strip Armor if Level 5 Strip Armor is learned. + +When equipped by Rogue classes: +Decreases SP Consumption by 20%. +Disables the Auto-Intimidate ability of the Wanderer Card. +-------------------------- +Collection Effect +Increases movement speed by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4231# +Decreases damage taken from Guardian by 50% during War of Emperium hours. +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4232# +Random chance a defeated Plant monster will drop Red Herb, Yellow Herb or White Herb. +Increases recovery amount gained from Red Herb, Yellow Herb and White Herb by 50%. +-------------------------- +Collection Effect +FLEE +2 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4233# +LUK +3 +-------------------------- +When equipped by Merchant classes: +Armor becomes indestructible. +-------------------------- +When equipped with Zipper Bear Card, Raggler Card, Myst Case Card and Heirozoist Card: +LUK +10 +Increases damage of Mammonite by 20%. +Gains 2 SP on each physical attack. +When equipped by Merchant classes: +Adds 20% chance of reflecting magical attack. +Random chance a defeated monster will drop Old Purple Box. +-------------------------- +When equipped with Zipper Bear Card, Raggler Card, Muka Card and Holden Card: +STR +4 +MaxHP +7% +MaxSP +7% +Increases damage of Mammonite by 20%. +Gains 1 SP on each physical attack. + +When equipped by Alchemist classes: +Random chance to auto-cast Level 1 Adrenaline Rush when dealing physical attacks. +Random chance a defeated monster will drop Glistening Coat or Stem. +-------------------------- +Collection Effect +LUK +1 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4234# +Random chance to auto-cast Level 1 Improve Concentration on the user when receiving physical damage. +If the user has mastered the skill at Level 10, it will cast Level 10 Improve Concentration. +-------------------------- +When equipped with Cruiser Card, Alligator Card, Dragon Tail Card and Merman Card: +AGI +5 +DEX +3 +Increases Ranged Physical Damage by 20%. +Perfect HIT +20% + +When equipped by Archer classes: +Random chance to inflict Coma status on Brute race monster when dealing physical damage. +Increases experience gained from defeating Brute race monsters by 5%. +-------------------------- +When equipped with Cruiser Card, Alligator Card, Dragon Tail Card and Green Ferus Card: +DEX +5 +Increases damage of Arrow Vulcan by 5%. +Increases damage of Musical Strike by 10%. +Increases damage of Throw Arrow by 10%. + +When equipped by Bard or Dancer classes: +Random chance to auto-cast Level 2 Tarot Card of Fate when dealing melee physical attacks. +-------------------------- +Collection Effect +Decreases damage taken fromWater elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4235# +Increases experience gained from defeating Angel race monsters by 10%. +Increases Physical Damage taken from Angel race by 20%. +-------------------------- +Collection Effect +Increases experience gained from defeating Angel race monsters by 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4236# +All Stats +1 +-------------------------- +Random chance to auto-cast Level 10 Kyrie Eleison when receiving physical damage. +The chance of casting the skill is increased if the user has 99 INT points. +-------------------------- +Collection Effect +All Stats +1 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4237# +Random chance to auto-cast Level 3 Impositio Manus on the user when dealing physical damage. +-------------------------- +When equipped with Owl Baron Card: +Random chance to auto-cast Level 5 Lightning Bolt on the target when dealing physical damage. +-------------------------- +Collection Effect +Decreases damage taken from Wind elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4238# +Random chance to auto-cast Level 1 Lex Aeterna on the target when dealing physical damage. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Wind elemental by 2%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4239# +Increases experience gained from defeating Formless race monsters by 10%. +Increases Physical Damage taken from Formless race by 20%. +-------------------------- +Collection Effect +Increases experience gained from defeating Formless race monsters by 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4240# +Up to max +5 Refine Level: +DEF +2 +MDEF +3 +-------------------------- +Collection Effect +DEF + 2 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4241# +MaxHP +300 +-------------------------- +Base LUK at least 77: +Increases HP and SP Recovery Rate by 100%. +-------------------------- +Collection Effect +Increases HP and SP Recovery Rate by 10%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4242# +VIT +2 +-------------------------- +Refine Level +9: +MaxHP +800 +-------------------------- +Collection Effect +VIT +1 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4243# +Random chance to auto-cast Level 1 Teleport when receiving physical damage. +-------------------------- +Collection Effect +ATK +1% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4244# +VIT +1 +MaxHP +300 +-------------------------- +Random chance to auto-cast Level 1 Sight around the user when receiving physical damage. +-------------------------- +When equipped with Tower Keeper Card, Punk Card and Clock Card: +DEF +3 +MDEF +3 +-------------------------- +Collection Effect +DEF +2 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4245# +Increases experience gained from defeating Demi-Human race monsters by 10%. +Increases Physical Damage taken from Demi-Human race by 20%. +-------------------------- +Collection Effect +Increases experience gained from defeating Demi-Human race monsters by 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4246# +Increases Critical Damage by 10%. +Critical +7 when attacking Demi-Human race. +-------------------------- +When equipped with Permeter Card, Solider Card, Freezer Card and Heater Card: +STR +10 +MaxHP +20% +Increases HP Recovery Rate by 50%. +Random chance to auto-cast Level 1 Weapon Perfection when dealing physical attacks. +Random chance a defeated monster will drop Red Potion. + +When equipped by Swordman classes: +Increases recovery amount gained from Red Potion, Yellow Potion and White Potion by 50%. +-------------------------- +Collection Effect +Critical +1 when attacking Demi-Human race. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4247# +ATK +5 +-------------------------- +Inflict 30% more damage on Shell Fish. +-------------------------- +When equipped with Shell Fish Card and Crab Card: +Increases Physical Damage against enemies of Water elemental by 30%. +Random chance a defeated Fish monster will drop Raw Fish. +-------------------------- +Collection Effect +ATK +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4248# +Random chance to auto-cast Level 5 Signum Crucis on the target when receiving physical damage. +-------------------------- +When equipped with Mummy Card: +Perfect HIT +20. +-------------------------- +Collection Effect +HIT +2 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4249# +Increases experience gained from defeating Demon race monsters by 10%. +Increases Physical Damage taken from Demon race monsters by 20%. +-------------------------- +Collection Effect +Increases experience gained from defeating Demon race monsters by 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4250# +DEF +1 +-------------------------- +Decreases damage taken from Large size by 25%. +-------------------------- +Collection Effect +Decreases damage taken from Large size by 2%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4251# +Inflict 40% more damage on Guardians during War of Emperium hours. +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4252# +Decreases damage taken from Ranged Physical Damage by 5%. +-------------------------- +When equipped with Cruiser Card, Anolian Card, Dragon Tail Card and Merman Card: +AGI +5 +DEX +3 +Increases Ranged Physical Damage by 20%. +Perfect Hit +20% (which never miss it's target) + +When equipped by Archer classes: +A low chance of auto casting Coma on Brute monster when attacking. +Increases experience gained from defeating Brute race monsters by 5%. +-------------------------- +When equipped with Cruiser Card, Anolian Card, Dragon Tail Card and Green Ferus Card: +DEX +5 +Increases damage of Arrow Vulcan by 5%. +Increases damage of Musical Strike by 10%. +Increases damage of Throw Arrow by 10%. + +When equipped by Bard or Dancer classes: +Random chance to auto-cast Level 2 Tarot Card of Fate when dealing melee physical attacks. +-------------------------- +Collection Effect +Decreases damage taken from Ranged Physical Damage by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4253# +Decreases damage taken from Boss class by 40%. +Increases damage taken from monsters of Normal class by 40%. +-------------------------- +Collection Effect +Decreases damage taken from Boss class by 2%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4254# +DEF +1 +-------------------------- +Decreases damage taken from Medium size by 25%. +-------------------------- +Collection Effect +Decreases damage taken from Medium size by 2%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4255# +Inflict 30% more damage on every Orc except Orc Lord and Orc Hero. +-------------------------- +Collection Effect +Increases resistance against Bleeding status by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4256# +Random chance a defeated Demi-Human race monster will drop Box of Panting. +-------------------------- +Collection Effect +ASPD +1% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4257# +AGI +1 +-------------------------- +When equipped by Thief classes: +Perfect Dodge +5 +-------------------------- +When equipped with Wanderer Card, Shinobi Card, Zhu Po Long Card and The Paper Card: +AGI +5 +STR +5 +Increases Attack Speed (Decreases After Attack Delay by 5%). +Increases movement speed. +Restores SP by 1 on each attack. +Disable the Auto-Intimidate ability of the Wanderer Card + +When equipped by Thief classes: +Disables Gemstone requirement of certain skills. +-------------------------- +When equipped with Wanderer Card, Shinobi Card, Stainer Card and Wickebine Tres Card: +STR +6 +AGI +4 +Increases damage of Backstab by 10%. +Random chance to auto-cast Level 5 Strip Armor if Level 5 Strip Armor is learned. + +When equipped by Rogue classes: +Decreases SP Consumption by 20%. +Disables the Auto-Intimidate ability of the Wanderer Card. +-------------------------- +Collection Effect +Decreases damage taken from Plant race by 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4258# +INT +1 +MaxSP +50 +-------------------------- +When equipped with Yellow Novus Card, Miyabi Doll Card, Bloody Butterfly Card and Harpy Card: +INT +3 +Increases damage of Thunderstorm by 10%. +Increases damage of Heaven Drive by 10% + +When equipped by Sage classes: ++20% chance of reflecting Magic +Decreases Variable Casting Time by 20% +Random chance a defeated monster will drop Red Gemstone or Yellow Gemstone. +-------------------------- +When equipped with Loli Ruri Card, Parasite Card, Miyabi Doll Card, Harpy Card and Bloody Butterfly Card: +MaxHP +500 +DEF +5 +MDEF +5 +Increases damage of Cold Bolt, Fire Bolt and Lightning Bolt by 10%. + +When equipped by Mage classes: +MATK +3% +Decreases Variable Casting Time by 15%. +-------------------------- +Collection Effect +SP +5 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4259# +DEF +1 +-------------------------- +Increases HP Recovery Rate by 30%. +-------------------------- +Collection Effect +Increases HP Recovery Rate by 3%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4260# +DEF +1 +-------------------------- +Add 20% more tolerance against Confuse. +-------------------------- +Collection Effect +Increases resistance against Confuse status by 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4261# +DEF +1 +-------------------------- +Add 20% more tolerance against Bleeding. +-------------------------- +Collection Effect +Increases resistance against Bleeding status by 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4262# +Random chance a defeated Plant monster will drop Box of Gloom. +-------------------------- +Collection Effect +Critical +1 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4263# +Ignores physical defense of Normal class by 100%. +Disables HP Recovery Rate. +Drains 666 HP every 10 seconds. +Drains 999 HP as the weapon is unequipped. +-------------------------- +Collection Effect +Ignores physical defense of Normal class by 5%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4264# +Random chance to auto-cast Level 3 Jupitel Thunder on the target when dealing physical damage. +If the user has mastered the skill at Level 10, it will cast Level 10 Jupitel Thunder. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Undead race by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4265# +Random chance a defeated Angel monster will drop Box of Sunlight. +-------------------------- +Collection Effect +Decreases damage taken from Undead elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4266# +VIT +1 +-------------------------- +When equipped with Lunatic Card: +FLEE +18 +-------------------------- +Collection Effect +ASPD +1 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4267# +Increases experience gained from defeating Dragon race monsters by 10%. +Increases Physical Damage taken from Dragon race by 20%. +-------------------------- +Collection Effect +Increases experience gained from defeating Dragon race monsters by 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4268# +Random chance to auto-cast Level 1 Sonic Blow on the target when dealing physical damage. +-------------------------- +When equipped with Zealotus Card: +LUK +3 +ATK +20 +-------------------------- +Collection Effect +STR +1 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4269# +INT -3 +MaxSP +150 +-------------------------- +Decreases SP Recovery Rate by 20%. +-------------------------- +When equipped with Succubus Card: +INT +4 +Increases SP Recovery Rate by 30%. +-------------------------- +Collection Effect +Increases SP Recovery Rate by 3% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4270# +Random chance to inflict Poison status on attacker when receiving physical damage. +-------------------------- +Collection Effect +Increases resistance against Poison status by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4271# +Random chance a defeated Insect monster will drop Wind of Verdure. +Decreases damage taken from Wind elemental attacks by 10%. +-------------------------- +Collection Effect +Decreases damage taken fromWind elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4272# +AGI +1 +Critical +3 +-------------------------- +When equipped with Wanderer Card, Wild Rose Card, Shinobi Card and The Paper Card: +AGI +5 +STR +5 +Increases Attack Speed (Decreases After Attack Delay by 5%). +Increases movement speed. +Restores SP by 1 on each attack. +Disable the Auto-Intimidate ability of the Wanderer Card. + +When equipped by Thief classes: +Disables Gemstone requirement of certain skills. +-------------------------- +Collection Effect +Critical +1 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4273# +ATK +5 +-------------------------- +Inflict 30% more damage on Crab. +-------------------------- +When equipped with Crab Card and Aster Card: +Increases Physical Damage against enemies of Water elemental by 30%. +Random chance a defeated Fish monster will drop Raw Fish. +-------------------------- +Collection Effect +ATK +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4274# +Gain 5 SP each time an Undead monster is killed by melee physical attacks. +Drain 5 SP as the weapon is unequipped. +-------------------------- +Collection Effect +Gain 1 SP each time an Undead monster is killed by melee physical attacks. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4275# +Increases experience gained from defeating Undead race monsters by 10%. +Increases Physical Damage taken from Undead race by 20%. +-------------------------- +Collection Effect +Increases experience gained from defeating Undead race monsters by 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4276# +Random chance to inflict Coma on the target when dealing physical damage. +Random chance to inflict Stun, Curse, Silence, Poison or Bleeding on the target when dealing Melee Physical Damage. +-------------------------- +Collection Effect +Ignores magical defense of Normal class by 5%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4277# +LUK +2 +-------------------------- +Increases damage of Throw Arrow and Musical Strike by 10%. +-------------------------- +Collection Effect +Increases Ranged Physical Damage by 1%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4278# +Up to max +5 Refine Level: +MDEF +5 +-------------------------- +Collection Effect +MATK +1% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4279# +Disables SP Recovery Rate. +Gains 10 SP each time a monster is killed by melee physical attacks. +Drains 100 SP as the Armor is unequipped. +-------------------------- +Collection Effect +Increases SP Recovery Rate by 5% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4280# +Random chance to auto-cast Level 2 Blessing on the user when receiving physical damage. +Auto cast Level 10 Blessing instead, if Blessing is mastered. +-------------------------- +When equipped with Rideword Card, Cookie Card, Fur Seal Card and Enchanted Peach Tree Card: +VIT +10 +Decreases Variable Casting Time by 10%. +Decreases SP Consumption by 10%. + +When equipped by Acolyte classes: +Decreases damage taken from Undead and Demon race by 30%. +Increases experience gained from defeating Undead and Demon race by 5%. +-------------------------- +Collection Effect +Increases Healing skills effectiveness by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4281# +ATK +30 +-------------------------- +Drain 1 SP each time the user is attacking. +-------------------------- +When equipped by Merchant classes: +Make weapon indestructible. +-------------------------- +When equipped with Baby Leopard Card, Raggler Card, Myst Case Card and Heirozoist Card: +LUK +10 +Increases damage of Mammonite by 20%. +Gains 2 SP on each physical attack. + +When equipped by Merchant classes: +Adds 20% chance of reflecting magical attack. +Random chance a defeated monster will drop Old Purple Box. +-------------------------- +When equipped with Baby Leopard Card, Raggler Card, Muka Card and Holden Card: +STR +4 +MaxHP +7% +MaxSP +7% +Increases damage of Mammonite by 20%. +Gains 1 SP on each physical attack. + +When equipped by Alchemist classes: +Random chance to auto-cast Level 1 Adrenaline Rush when dealing physical damage. +Random chance a defeated monster will drop Glistening Coat or Stem. +-------------------------- +Collection Effect +ATK +5 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4282# +Random chance a defeated monster will drop Restorative item. +-------------------------- +Collection Effect +Critical +1 when attacking Angel race. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4283# +Add the chance of gaining Spirit Sphere or Coin when dealing physical damage. +-------------------------- +When equipped by Acolyte classes: +The chance is increased. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Neutral elemental by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4284# +Random chance to auto-cast Level 5 Heal on the target when dealing physical damage. +-------------------------- +Collection Effect +Increases Healing skills effectiveness by 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4285# +FLEE +10 +Perfect Dodge +5 +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Earth elemental by 1%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4286# +Random chance to inflict Confuse status on the attacker when receiving physical damage. +-------------------------- +Base STR at least 77: +The chance is increased. +-------------------------- +Collection Effect +Increases resistance against Confuse status by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4287# +Up to max +5 Refine Level: +MDEF +8 +-------------------------- +Collection Effect +Increases resistance against Sleep status by 1%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4288# +INT +2 +-------------------------- +Refine Level +9: +MaxSP +150 +-------------------------- +Collection Effect +SP +5 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4289# +Gain 5 SP each time a Plant monster is killed by melee physical attacks. +Drain 5 SP as the weapon is unequipped. +-------------------------- +Collection Effect +Gain 1 SP each time a Plant monster is killed by melee physical attacks. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4290# +MDEF +3 +-------------------------- +Adds 5% chance of reflecting magic damage. +-------------------------- +Collection Effect +Decreases damage taken from Holy elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4291# +Increases Physical Damage against Kobold monsters by 30%. +-------------------------- +Collection Effect +Perfect HIT +2% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4292# +Increases Critical Damage by 10%. +Critical +7 when attacking Plant monster. +-------------------------- +Collection Effect +Critical +1 when attacking Plant monster. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4293# +LUK +2 +-------------------------- +Increases damage of Holy Light by 10%. +-------------------------- +When equipped with Rideword Card, Fur Seal Card, Geographer Card and Enchanted Peach Tree Card: +VIT +10 +Decreases Variable Casting Time by 10%. +Decreases SP Consumption by 10%. + +When equipped by Acolyte classes: +Decreases damage taken from Undead and Demon race by 30%. +Increases experience gained from defeating Undead and Demon race by 5%. +-------------------------- +When equipped with Rideword Card, Fur Seal Card and Waste Stove Card: +STR +3 +MaxSP +80 +ATK +25 +A chance of casting Level 5 Signum Crusis when dealing physical attacks. +Increases damage of Asura Strike by 10%. + +When equipped by Monk classes: +Protects from skill cast interruption. +Decreases SP Consumption by 10%. +-------------------------- +Collection Effect +Decreases damage taken from Holy elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4294# +When equipped by Novice classes: +Random chance to auto-cast Level 1 Increase AGI when receiving physical damage. + +When equipped with Lude Card: +MaxSP +60 +-------------------------- +Collection Effect +Decreases SP Consumption by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4295# +Random chance to inflict Blind status on attacker when receiving physical damage. +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4296# +STR +1 +-------------------------- +When equipped with Tarou Card: +STR +3 +-------------------------- +Collection Effect +STR +1 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4297# +Increases Critical Damage by 10%. +Critical +7 when attacking Brute monster. +-------------------------- +When equipped with Anolian Card, Alligator Card, Dragon Tail Card and Merman Card: +Increases Ranged Physical Damage by 20%. +AGI +5 +DEX +3 +Perfect Hit +20% (which never miss it's target) + +When equipped by Archer classes: +A low chance of auto casting Coma on Brute race when attacking. +Increases experience gained from defeating Brute race monsters by 5%. +-------------------------- +When equipped with Anolian Card, Alligator Card, Dragon Tail Card and Green Ferus Card: +DEX +5 +Increases damage of Arrow Vulcan by 5%. +Increases damage of Musical Strike by 10%. +Increases damage of Throw Arrow by 10%. + +When equipped by Bard or Dancer classes: +Random chance to auto-cast Level 2 Tarot Card of Fate when dealing melee physical attacks. +-------------------------- +Collection Effect +Critical +1 when attacking Brute monster. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4298# +Random chance to inflict Confuse status on attacker when receiving physical damage. +-------------------------- +Collection Effect +ASPD +1% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4299# +Chance to cast Level 3 Auto Guard on the user when receiving melee attack. +If the user has mastered the skill at Level 10, it will cast Level 10 Auto Guard +-------------------------- +When equipped with Tower Keeper Card, Punk Card and Alarm Card: +DEF +3 +MDEF +3 +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Undead element by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4300# +Add the chance to inflict Poison status on the enemy when receiving physical damage. +-------------------------- +When equipped by Assassin classes: +The chance is increased. +-------------------------- +Collection Effect +Increases resistance against Poison status by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4301# +Random chance to inflict Bleeding status on the target when receiving physical damage. +-------------------------- +Collection Effect +Increases resistance against Bleeding status by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4302# +MaxHP +100% +-------------------------- +Decreases physical and magical defense by 50%. +-------------------------- +Collection Effect +HP +5% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4303# +FLEE +10 +-------------------------- +Base STR at least 80: +ATK +20 +-------------------------- +Base VIT at least 80: +MaxHP +3% +-------------------------- +Base LUK at least 80: +Critical +3 +-------------------------- +Collection Effect +ATK +3% +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4304# +DEF +2 +-------------------------- +Increases damage of Shield Charge and Shield Boomerang by 10%. +-------------------------- +Collection Effect +DEF +2 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4305# +ATK +20% +-------------------------- +Random chance to auto-cast Level 10 Magnum Break on the enemy when dealing physical damage. +-------------------------- +Collection Effect +ATK +20 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4306# +Perfect Dodge +1 +-------------------------- +When equipped with an Roda Frog Card: +FLEE +18 +-------------------------- +Collection Effect +LUK +1 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4307# +Gain 5 SP each time a Fish monster is killed by melee physical attacks. +Drain 5 SP as the weapon is unequipped. +-------------------------- +Collection Effect +Gain 1 SP each time a Fish monster is killed by melee physical attacks. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4308# +Gain 5 SP each time a Formless monster is killed by melee physical attacks. +Drain 5 SP as the weapon is unequipped. +-------------------------- +Collection Effect +Gain 1 SP each time a Formless monster is killed by melee physical attacks. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4309# +DEF +1 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +When equipped with Loli Ruri Card, Miyabi Doll Card, Evil Nymph, Harpy Card and Bloody Butterfly Card: +MaxHP +500 +DEF +5 +MDEF +5 +Increases damage of Cold Bolt, Fire Bolt and Lightning Bolt by 10%. + +When equipped by Mage classes: +MATK +3% +Decreases Variable Casting Time by 15%. +-------------------------- +Collection Effect +Decreases damage taken from Neutral elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4310# +Increases Critical Damage by 10%. +Critical +7 when attacking Demon monster. +-------------------------- +Collection Effect +Critical +1 when attacking Demon monster. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4311# +Decreases damage taken from Shadow and Undead elemental attacks by 15%. +-------------------------- +When equipped with Assaulter Card, Solider Card, Freezer Card and Heater Card: +STR +10 +MaxHP +20% +Increases HP Recovery Rate by 50%. +Random chance to auto-cast Level 1 Weapon Perfection when dealing physical damage. +Random chance a defeated monster will drop Red Potion. + +When equipped by Swordman classes: +Increases recovery amount gained from Red Potion, Yellow Potion and White Potion by 50%. +-------------------------- +When equipped with Archdam Card, Freezer Card and Heater Card: +INT +1 +STR +1 +DEF +2 +Increases SP Recovery Rate by 10%. +Increases damage of Shield Chain and Sacrifice by 10%. +Decreases Variable Casting Time by 10%. + +When equipped by Crusader classes: +Enchant Armor with Holy elemental. +-------------------------- +Collection Effect +Decreases damage taken from Shadow elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4312# +HIT +10 +FLEE +3 +-------------------------- +When equipped by Acolyte classes: +Critical +9 when attacking Demon and Undead race. +-------------------------- +When equipped with Rideword Card, Cookie Card, Geographer Card and Enchanted Peach Tree Card: +VIT +10 +Decreases Variable Casting Time by 10%. +Decreases SP Consumption by 10%. + +When equipped by Acolyte classes: +Decreases damage taken from Undead and Demon race by 30%. +Increases experience gained from defeating Undead and Demon race by 5%. +-------------------------- +When equipped with Rideword Card, Cookie Card and Waste Stove Card: +STR +3 +MaxSP +80 +ATK +25 +A chance of casting Level 5 Signum Crusis with each physical attack. +Increases damage of Asura Strike by 10%. + +When equipped by Monk classes: +Protects from skill cast interruption. +Decreases SP Consumption by 10%. +-------------------------- +Collection Effect +Decreases damage taken from Undead race by 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4313# +Automatically cast Level 1 Quagmire around the user when receiving physical damage. +If the user has mastered the skill, it will cast Level 5 Quagmire. +-------------------------- +When equipped with Tower Keeper Card, Alarm Card and Clock Card: +DEF +3 +MDEF +3 +-------------------------- +Collection Effect +Decreases damage taken from Plant race by 1%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4314# +Decreases damage taken from Formless race by 30%. +-------------------------- +Collection Effect +Decreases damage taken from Formless race by 1%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4315# +Random chance to inflict Stone Curse on attacker when receiving physical damage. +The chance is increased if the user has 77 or more INT points. +-------------------------- +Collection Effect +Increases resistance against Stone Curse status by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4316# +Gains 5 SP each time an Angel monster is killed by melee physical attacks. +Drains 5 SP as the weapon is unequipped. +-------------------------- +Collection Effect +Gains 1 SP each time an Angel monster is killed by melee physical attacks. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4317# +Increases Critical Damage by 15%. +-------------------------- +When equipped by Thief classes: +Critical +4 +-------------------------- +Collection Effect +Increases Critical Damage by 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4318# +Random chance to auto-cast Level 1 Storm Gust on the enemy when dealing physical damage. +Has 20% chance of Frozen an enemy when attacking. +-------------------------- +Collection Effect +MATK +20 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4319# +MaxHP +300 +-------------------------- +Refine Level +9: +Increases damage of Bash by 10%. +-------------------------- +When equipped with Assaulter Card, Permeter Card, Solider Card and Heater Card: +STR +10 +MaxHP +20% +Increases HP Recovery Rate by 50%. +Random chance to auto-cast Level 1 Weapon Perfection when dealing physical attacks. +Random chance a defeated monster will drop Red Potion. + +When equipped by Swordman classes: +Increases recovery amount gained from Red Potion, Yellow Potion and White Potion by 50%. +-------------------------- +When equipped with Archdam Card, Permeter Card and Heater Card: +INT +1 +STR +1 +DEF +2 +Increases SP Recovery Rate by 10%. +Increases damage of Shield Chain and Sacrifice by 10%. +Decreases Variable Casting Time by 10%. + +When equipped by Crusader classes: +Enchant Armor with Holy elemental. +-------------------------- +Collection Effect +Increases resistance against Frozen status by 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4320# +Random chance to auto-cast Level 1 Meteor Storm on the target when dealing physical damage. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Dragon and Fish race by 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4321# +Add the chance of transforming a monster while fighting. +-------------------------- +When equipped with Zipper Bear Card, Baby Leopard Card, Raggler Card and Myst Case Card: +LUK +10 +Increases damage of Mammonite by 20%. +Gains 2 SP on each physical attack. + +When equipped by Merchant classes: +Adds 20% chance of reflecting magical attack. +Random chance a defeated monster will drop Old Purple Box. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Insect race by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4322# +DEF +1 +-------------------------- +Reflects 5% physical damage. +-------------------------- +Collection Effect +Critical +1 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4323# +Random chance to auto-cast Level 3 Frost Diver on the target when dealing physical damage. +-------------------------- +When equipped with Hatii Card: +The chance is greatly increased. +-------------------------- +Collection Effect +Increases Critical Damage by 1% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4324# +Adds 50% chance of inflicting Frozen status on attacker when receiving physical damage. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Boss class by 5% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4325# +Decreases damage taken from Neutral elemental attacks by 15%. +Increases damage of Napalm Beat by 5%. +-------------------------- +When equipped with Yellow Novus Card, Evil Nymph Card, Miyabi Doll Card and Bloody Butterfly Card: +INT +3 +Increases damage of Thunderstorm by 10%. +Increases damage of Heaven Drive by 10% + +When equipped by Sage classes: +20% chance to reflect magical attacks. +Decreases Variable Casting Time by 20% +Random chance a defeated monster will drop Red Gemstone or Yellow Gemstone. +-------------------------- +When equipped with Loli Ruri Card, Parasite Card, Miyabi Doll Card, Evil Nymph Card and Bloody Butterfly Card: +MaxHP +500 +DEF +5 +MDEF +5 +Increases damage of Cold Bolt, Fire Bolt and Lightning Bolt by 10%. + +When equipped by Mage classes: +MATK +3% +Decreases Variable Casting Time by 15%. +-------------------------- +Collection Effect +Decreases damage taken from Ghost elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4326# +Add the chance of gaining Sushi or Raw Fish each time a Fish monster is killed. +Increases recovery amount gained from Sushi and Raw Fish by 50%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Fish race by 2%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4327# +Protects from skill cast interruption. +Increases Variable Casting Time of all skills by 30%. +Increases damage of Fire Wall by 5%. +-------------------------- +When equipped with Yellow Novus Card, Evil Nymph Card, Miyabi Doll Card and Harpy Card: +INT +3 +Increases damage of Thunderstorm by 10%. +Increases damage of Heaven Drive by 10% + +When equipped by Sage classes: ++20% chance of reflecting Magic +Decreases Variable Casting Time by 20% +Random chance a defeated monster will drop Red Gemstone or Yellow Gemstone. +-------------------------- +When equipped with Loli Ruri Card, Parasite Card, Miyabi Doll Card, Evil Nymph and Harpy Card: +MaxHP +500 +DEF +5 +MDEF +5 +Increases damage of Cold Bolt, Fire Bolt and Lightning Bolt by 10%. + +When equipped by Mage classes: +MATK +3% +Decreases Variable Casting Time by 15%. +-------------------------- +Collection Effect +Increases resistance against Bleeding status by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4328# +FLEE +15 +Critical +1 +-------------------------- +When equipped with Munak Card and Bongun Card: +All Stats +1 +-------------------------- +Collection Effect +Decreases damage taken from Ghost elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4329# +Gain 5 SP each time a Demi-Human race monster is killed by melee physical attacks. +Drain 5 SP as the weapon is unequipped. +-------------------------- +Collection Effect +Gain 1 SP each time a Demi-Human race monster is killed by melee physical attacks. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4330# +INT +3 +-------------------------- +Prevents Blind and Curse status. +-------------------------- +Collection Effect +Increases resistance against Stone Curse status by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4331# +Critical +3 +-------------------------- +When equipped by SSwordman classes: +Perfect Dodge +3 +-------------------------- +When equipped with Assaulter Card, Permeter Card, Solider Card and Freezer Card: +STR +10 +MaxHP +20% +Increases HP Recovery Rate by 50%. +Random chance to auto-cast Level 1 Weapon Perfection when dealing physical attacks. +Random chance a defeated monster will drop Red Potion. + +When equipped by Swordman classes: +Increases recovery amount gained from Red Potion, Yellow Potion and White Potion by 50%. +-------------------------- +When equipped with Archdam Card, Permeter Card and Freezer Card: +INT +1 +STR +1 +DEF +2 +Increases SP Recovery Rate by 10%. +Increases damage of Shield Chain and Sacrifice by 10%. +Decreases Variable Casting Time by 10%. + +When equipped by Crusader classes: +Enchant Armor with Holy elemental. +-------------------------- +Collection Effect +Perfect Dodge +1 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4332# +INT +1 +ATK +5 +-------------------------- +When equipped with Rideword Card, Cookie Card and Fur Seal Card: +ATK +25 +STR +3 +SP +80 +A chance of casting Level 5 Signum Crusis with each physical attack. +Increases damage of Asura Strike by 10%. + +When equipped by Monk classes: +Protects from skill cast interruption. +Decreases SP Consumption by 10%. +-------------------------- +Collection Effect +ATK +2 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4333# +Random chance to inflict Poison status on attacker and wearer when receiving physical damage. +-------------------------- +Collection Effect +Decreases damage taken from Poison elemental by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4334# +Decreases damage taken from Ranged Physical Damage by 10%. +Decreases damage taken from Neutral elemental attacks by 10%. +-------------------------- +Collection Effect +Decreases damage taken from Ranged Physical Damage by 2%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4335# +Increases damage of Earth Spike and Heaven's Drive by 5%. +Drains 50 SP when compounded weapon is unequipped. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Earth elemental by 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4336# +Prevents Bleeding status. +Increases HP Recovery Rate by 10%. +-------------------------- +Collection Effect +Increases HP Recovery Rate by 3% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4337# +ATK +25 +DEF -5 +-------------------------- +Collection Effect +ATK +5 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4338# +For each 18 base DEX: +VIT +1 +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4339# +ATK -25 +DEF +3 +-------------------------- +Collection Effect +DEF +2 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4340# +Decreases damage taken from Undead race by 30%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Undead element by 2%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4341# +Random chance to auto-cast Level 1 Strip Weapon each time the wearer dealing physical attack. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Formless race by 1% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4342# +VIT +3 +-------------------------- +Prevents knock-back effect. +Compounded Armor become indestructible, but it can still be destroyed by failed upgrade attempts. +-------------------------- +Collection Effect +Weight Limit +5000 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4343# +LUK +2 +-------------------------- +When equipped with Zipper Bear Card, Baby Leopard Card, Raggler Card and Muka Card: +STR +4 +MaxHP +7% +MaxSP +7% +Increases damage of Mammonite by 20%. +Gains 1 SP on each physical attack. + +When equipped by Alchemist classes: +Random chance to auto-cast Level 1 Adrenaline Rush when dealing physical damage. +Random chance a defeated monster will drop Glistening Coat or Stem. +-------------------------- +Collection Effect +LUK +1 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4344# +Random chance a defeated Insect monster will drop Tentacle Cheese Gratin. +-------------------------- +Collection Effect +Weight Limit +50 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4345# +Increases damage of Thunderstorm, Jupitel Thunder and Lord of Vermilion by 5%. +Drains 50 SP when the compounded weapon is unequipped. +-------------------------- +Collection Effect +Def +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4346# +For each 18 base INT: +STR +1 +-------------------------- +Collection Effect +Weight Limit +50 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4347# +Random chance a defeated Fish monster will drop Clam Soup. +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4348# +Random chance to auto-cast Level 1 Strip Armor each time the wearer dealing physical attack. +-------------------------- +When equipped with Wanderer Card, Wild Rose Card, Shinobi Card and Stainer Card: +STR +6 +AGI +4 +Increases damage of Backstab by 10%. +Random chance to auto-cast Level 5 Strip Armor if Level 5 Strip Armor is learned. + +When equipped by Rogue classes: +Decreases SP Consumption by 20%. +Disables the Auto-Intimidate ability of the Wanderer Card. +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4349# +Random chance to auto-cast Level 1 Pneuma when receiving physical damage. +-------------------------- +Collection Effect +Def +2 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4350# +Increases damage of Frost Nova and Storm Gust by 3%. +Drains 50 SP when compounded weapon is unequipped. +-------------------------- +Collection Effect +Matk +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4351# +FLEE +10 +-------------------------- +Up to max +5 Refine Level: +Perfect Dodge +1 +FLEE +10 +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Wind elemental by 1%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4352# +MaxHP +10% +MaxSP +10% +-------------------------- +Restores 50 HP and 10 SP every 10 seconds +-------------------------- +Collection Effect +AllStats +1 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4353# +Increases HP Recovery Rate by 10%. +-------------------------- +MaxHP +800 + +For each Refine Level: +Decreases the MaxHP bonus. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Poison elemental by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4354# +Adds 30% resistance to the Stun and Silence if base AGI is 90 or higher. +adds 50% resistance to the Stone Curse and Sleep if base VIT is 80 or higher. +-------------------------- +Collection Effect +Stun resistance 2% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4355# +Random chance a defeated Brute monster will drop Bomber Steak. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Neutral elemental by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4356# +Enables the use of Level 1 Cast Cancel. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Ghost elemental by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4357# +MaxHP -50% +-------------------------- +Enables the use of Level 1 Berserk. +-------------------------- +Collection Effect +Str +3 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4358# +STR -6 +-------------------------- +For each Refine Level: +STR +1 +-------------------------- +Collection Effect +Perfect Hit +1 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4359# +Enables the use of Level 3 Cloaking. +-------------------------- +Collection Effect +Agi +3 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4360# +Critical +10 when attacking Demi-Human race monster. +-------------------------- +Collection Effect +Critical +1 when attacking Demi-Human race. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4361# +Adds a 10% chance of destroying an enemy's weapon and a 7% chance of destroying its Armor each time the wearer dealing physical attack. +-------------------------- +Collection Effect +Vit +3 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4362# +HIT +30 +-------------------------- +Increases After Attack Delay by 5%. +-------------------------- +Collection Effect +Hit +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4363# +Random chance to auto-cast Level 5 Assumptio on the wearer when wearer receiving physical or magical attack. +-------------------------- +Collection Effect +Int +3 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4364# +INT +1 +-------------------------- +Random chance to auto-cast Level 5 Lex Divina on attacker when receiving magical attack. +-------------------------- +Collection Effect +Max SP +1% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4365# +Ignores magical defense of Normal class by 100%. +Increases Variable Casting Time of all skills by 100%. +Disables SP Recovery Rate. +Drains 2,000 SP when the compounded headgear is unequipped. +-------------------------- +Collection Effect +Dex +3 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4366# +For each Refine Level: +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +9: +MATK +2% +-------------------------- +Collection Effect +Matk +3% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4367# +Adds 5% chance of absorbing 20% of the physical damage against target by the wearer as HP. +Disables HP Recovery Rate. +-------------------------- +Collection Effect +Luk +3 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4368# +HIT -30 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Collection Effect +ASPD +1% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4369# +For each 18 base AGI: +LUK +1 +-------------------------- +Collection Effect +Bleeding Resistance 1% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4370# +VIT -5 +-------------------------- +For each Refine Level: +VIT +1 +-------------------------- +Collection Effect +Flee +2 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4371# +ATK +10 +-------------------------- +Increases Variable Casting Time of all skills by 20%. +-------------------------- +When equipped with Permeter Card, Freezer Card and Heater Card: +INT +1 +STR +1 +DEF +2 +Increases SP Recovery Rate by 10%. +Increases damage of Shield Chain and Sacrifice by 10%. +Decreases Variable Casting Time by 10%. + +When equipped by Crusader classes: +Enchant Armor with Holy elemental. +-------------------------- +Collection Effect +Dex +1 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4372# +Increases Healing skills effectiveness by 30%. +Increases SP Consumption by 15%. +-------------------------- +Collection Effect +Increases effectiveness of Healing skills by 5% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4373# +LUK -5 +-------------------------- +For each Refine Level: +LUK +1 +Critical +1 +-------------------------- +Collection Effect +Critical +1 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4374# +DEX +2 +-------------------------- +Ignores magical defense of Boss class by 30%. +-------------------------- +Collection Effect +Decreases damage taken from Boss class by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4375# +FLEE +10 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 10%. +-------------------------- +Refine Level +9: +FLEE +5 +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Collection Effect +Decreases damage taken from Undead race by 1%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4376# +MaxSP +50% +MaxHP -40% +-------------------------- +Random chance a defeated monster will drop Banana. +Increases recovery amount gained from Banana by 100%. +-------------------------- +Collection Effect +Max SP +5% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4377# +Random chance a defeated Formless monster will drop Fruit Mix. +-------------------------- +Collection Effect +Decreases damage taken from Holy elemental attacks by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4378# +MaxHP +4% +MaxSP +4% +-------------------------- +Up to max +4 Refine Level: +MaxHP +4% +MaxSP +4% +Increases HP and SP Recovery Rate by 5%. +-------------------------- +Collection Effect +HP +10 +SP +5 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4379# +MaxSP +40 +-------------------------- +Up to max +4 Refine Level: +MaxSP +40 +Increases SP Recovery Rate by 5%. +-------------------------- +Collection Effect +SP +5 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4380# +Increases damage of Fire Pillar and Meteor Storm by 5%. +Drains 50 SP when the compounded weapon is unequipped. +-------------------------- +Collection Effect +Def +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4381# +VIT +1 +MaxHP +10% +-------------------------- +When equipped with Cruiser Card, Anolian Card, Alligator Card and Dragon Tail Card: +DEX +5 +Increases damage of Arrow Vulcan by 5%. +Increases damage of Musical Strike by 10%. +Increases damage of Throw Arrow by 10%. + +When equipped by Bard or Dancer classes: +Random chance to auto-cast Level 2 Tarot Card of Fate when dealing melee physical attack. +-------------------------- +Collection Effect +HP +50 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4382# +MaxHP +500 +-------------------------- +Increases HP Recovery Rate by 10%. +-------------------------- +When equipped with Evil Nymph Card, Miyabi Doll Card, Bloody Butterfly Card and Harpy Card: +INT +3 +Increases damage of Thunderstorm by 10%. +Increases damage of Heaven's Drive by 10%. + +When equipped by Sage classes: +20% chance to reflect magical attacks. +Decreases Variable Casting Time by 20%. +Random chance a defeated monster will drop Red Gemstone or Yellow Gemstone. +-------------------------- +Collection Effect +HP +10 +Increases HP Recovery Rate by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4383# +Random chance to inflict Confuse status on attacker and wearer when receiving physical damage. +-------------------------- +Collection Effect +Decreases damage taken from Angel race by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4384# +Random chance to auto-cast Level 1 Spell Breaker each time the wearer dealing physical attack. +-------------------------- +Collection Effect +Matk +2 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4385# +Random chance a defeated Dragon monster will drop Honey Herbal Tea. +-------------------------- +Collection Effect +Weight Limit +50 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4386# +MDEF -20 +-------------------------- +Prevents Frozen status. +Random chance to auto-cast Level 1 Land Protector when receiving magical attack. +-------------------------- +Collection Effect +Def +10 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4387# +For each 18 base LUK: +AGI +1 +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4388# +Increases damage of Napalm Beat, Soul Strike and Napalm Vulcan by 5%. +Drains 50 SP when the compounded weapon is unequipped. +-------------------------- +Collection Effect +Weight Limit +50 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4389# +Random chance a defeated monster will drop Fireproof Potion, Coldproof Potion, Earthproof Potion or Thunderproof Potion. +-------------------------- +Collection Effect +SP +5 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4390# +ATK +5 +-------------------------- +Random chance to inflict Bleeding status when dealing physical damage. +-------------------------- +Collection Effect +Atk +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4391# +Random chance a defeated Angel monster will drop Fried Sweet Potato. +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4392# +For each 18 base VIT: +DEX +1 +-------------------------- +Collection Effect +Vit +1 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4393# +For each 18 base STR: +INT +1 +-------------------------- +Collection Effect +Critical +1 when attacking Angel race. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4394# +When equipped by Priest classes: +Random chance to auto-cast Level 5 Grand Cross when dealing physical damage. +-------------------------- +Collection Effect +Matk +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4395# +ATK +5 +-------------------------- +Random chance to auto-cast Level 3 Decrease AGI when dealing physical damage. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Neutral elemental by 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4396# +AGI -5 +-------------------------- +For each Refine Level: +AGI +1 +-------------------------- +Collection Effect +Agi +1 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4397# +INT -6 +-------------------------- +For each Refine Level: +INT +1 +-------------------------- +Collection Effect +ASPD +1% +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4398# +Increases Magical Damage against monsters of Angel race by 10%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Angel race by 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4399# +DEF -30 +FLEE -30 +-------------------------- +Enchants compounded weapon with the Investigate skill effect. +Each attack drains 1 SP. +-------------------------- +Collection Effect +Physical Penetration +5% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4400# +Random chance to auto-cast Charming Wink when dealing physical damage. +When worn by Dancer, this chance increases to 10%. +-------------------------- +Collection Effect +Matk +2 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4401# +FLEE +10 +DEF -5 +-------------------------- +Collection Effect +Decreases damage taken from Boss class by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4402# +When equipped by Swordman, Merchant or Thief classes: +STR +2 +MaxHP +5% +-------------------------- +When equipped by Archer, Acolyte or Mage classes: +INT +2 +MaxSP +5% +-------------------------- +Collection Effect +Matk +2 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4403# +Global Cooldown -30%. +-------------------------- +Collection Effect +Global Cooldown -5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4404# +Random chance to inflict Bleeding status on attacker or wearer when receiving physical damage. +-------------------------- +Collection Effect +Matk +2 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4405# +For each Refine Level: +Adds 2% chance to reflect magic attacks. +-------------------------- +When equipped by Mage classes: +MDEF +3 +-------------------------- +Collection Effect +MDEF +1 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4406# +Increases Magical Damage against monsters of Demon race by 2%. +-------------------------- +Collection Effect +Decreases damage taken from Demi-Human race by 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4407# +ATK +10% +-------------------------- +Random chance to auto-cast Level 1 Dispell when dealing physical damage. +-------------------------- +Compounded weapon becomes indestructible in battle +-------------------------- +Collection Effect +Atk +5% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4408# +Increases Physical Damage against enemies of Holy and Shadow elemental by 40%. +Increases Physical Damage against enemies of Angel and Demon race by 40%. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Holy elemental by 5%. +Increases Physical Damage against enemies of Shadow elemental by 5%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4409# +MATK +5% +DEF -10 +-------------------------- +When equipped by Mage classes: +MaxSP +100 +-------------------------- +Collection Effect +Matk +5 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4410# +ATK +15 +-------------------------- +When equipped by Swordman classes: +MaxHP +500 +-------------------------- +Collection Effect +Atk +2 +HP +10 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4411# +STR +2 +-------------------------- +Random chance to increase Critical by 100 for 5 seconds when dealing physical damage. +-------------------------- +Collection Effect +Atk +1% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4412# +INT +2 +-------------------------- +Random chance to Decreases Variable Casting Time by 50% and increases FLEE by 30 for 5 seconds when dealing magical damage. +-------------------------- +Collection Effect +Variable Cast Time - 1% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4413# +Decreases damage taken from Small, Medium and Large size by 15%. +Random chance to increase Perfect Dodge by 30 for 10 seconds when receiving physical or magical attack. +-------------------------- +Collection Effect +Weight Limited +50 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4414# +MDEF +10 +-------------------------- +Enables the use of Level 1 Stone Curse. +Increases resistance against Stone Curse status by 30%. +-------------------------- +Collection Effect +Matk +2 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4415# +Random chance a defeated monster will drop Ice Cream. +Increases recovery amount gained from Ice Cream by 100%. +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4416# +Decreases Variable Casting Time of Cold Bolt by 25%. +Increases damage of Cold Bolt by 25%. +-------------------------- +Collection Effect +Decreases damage taken from Brute race by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4417# +VIT +2 +-------------------------- +Random chance to increase DEF by 10 for 10 seconds when receiving physical or magical attack. +-------------------------- +Collection Effect +Def +2 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4418# +Random chance to auto-cast Level 2 Cold Bolt when dealing physical damage. +-------------------------- +Collection Effect +Def +2 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4419# +Increases Physical Damage against enemies of Fire elemental by 50%, +Random chance to auto-cast Level 10 Frost Nova when receiving physical or magical attack. +-------------------------- +Collection Effect +Increases Physical Damage against enemies of Fire elemental by 5%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4420# +Random chance to auto-cast Level 1 Heal and/or Level 1 Increase AGI to the wearereach time the wearer receives melee physical attacks. +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4421# +Increases Critical by 15 when dealing Ranged Physical Damage. +-------------------------- +Collection Effect +Critical Damage +1% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4422# +FLEE +5 +Perfect Dodge +3 +-------------------------- +Increases Physical Damage against enemies of Water elemental by 10%. +Critical +15 when attacking Fish monster. +-------------------------- +Collection Effect +Flee +2 +Perfect Dodge +1 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4423# +HIT +5 +-------------------------- +Increases Physical Damage against enemies of Water elemental by 5%. +-------------------------- +Collection Effect +Hit +2 +Decreases damage taken from Water elemental by 1%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4424# +Enables use of Find Stone and Throw Stone skills. +-------------------------- +Collection Effect +HP +10 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4425# +ATK +25 +-------------------------- +Random chance to decrease After Attack Delay by 100% for 10 seconds when dealing physical damage. +-------------------------- +Collection Effect +Critical Rate +5 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4426# +When equipped by Rogue classes: +MATK +10% +ATK +10% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4427# +When compounded on a One-Handed Sword or Two-Handed Sword class weapon: +Critical +5 +HIT +5 +Increases damage of Bowling Bash by 25%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4428# +When compounded on a Bow class weapon: +Critical +5 +HIT +5 +Increases damage of Arrow Shower by 50%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4429# +Increases damage of Fire Pillar and Meteor Storm by 40%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4430# +Random chance to auto-cast Earthquake when receiving physical damage. +-------------------------- +For each 10 Job Level: +ATK +1 +HIT +1 +Critical +1 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4431# +Random chance to auto-cast Level 5 Fire Ball or Level 5 Fire Bolt when dealing physical damage. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4432# +ATK +5 +-------------------------- +Increases Physical Damage against enemies of Earth elemental by 5%. +Critical +15 when attacking Plant and Brute race. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4433# +Increases damage of Fire Bolt by 25%. +Decreases Variable Casting Time of Fire Bolt skill by 25%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4434# +Increases Physical Damage against enemies of Formless race by 5%. +Random chance a defeated Formless monster will drop Rough Oridecon or Rough Elunium. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4435# +Increases Damage against monsters of Demi-Human race by 1%. +Recovers 50 HP time a monster is defeated by melee attack. +-------------------------- +When equipped with Ragged Zombie Card: +Recover 2 SP each time a Demi-Human race monster is defeated by melee attack. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4436# +Increases Damage against monsters of Demi-Human race by 1%. +Critical +5 when attacking Demi-Human race monster. +Random chance to inflict Bleeding status to the wearer. +-------------------------- +When equipped with Zombie Slaughter Card: +Recover 2 SP each time a Demi-Human race monster is defeated by melee attack. +-------------------------- +Compound on: Accessory +Weight: 1 +# +4437# +HIT +1 +-------------------------- +Increases recovery amount gained from Meat by 100%. +Random chance to inflict Bleeding status on the target when dealing physical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4438# +When equipped by Mage classes: +MaxSP +100 +MaxHP -100 +Increases damage of Soul Strike, Napalm Beat and Napalm Vulcan by 20%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4439# +Increases resistance against Stun, Curse, Blind and Stone Curse statuses by 30%. +Random chance to inflict Stun, Curse, Blind or Stone Curse statuses on attacker when wearer attacked with melee physical attacks. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4440# +When compounded on a Staff class weapon: +INT +1 +Ignores magical defense of target by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4441# +MATK +10% +MaxSP -50% +-------------------------- +Increases Magical Damage against monsters of Demi-Human and Angel race by 50%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4442# +Decreases damage taken from Neutral elemental by 20%. +Increases Physical Damage against enemies of Neutral elemental by 5%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4443# +Decreases damage taken from Water elemental by 20%. +Increases damage inflicted to Water elemental by 5%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4444# +Decreases damage taken from Earth elemental by 20%. +Increases damage inflicted to Earth elemental by 5%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4445# +Decreases damage taken from Wind elemental by 20%. +Increases damage inflicted to Wind elemental by 5%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4446# +ATK +15 +-------------------------- +Random chance to inflict Stun status on the target when dealing physical damage. +-------------------------- +Base Level at least 100: +Increases Stun chance by 1% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4447# +Decreases damage taken from Poison elemental by 20%. +Increases Physical Damage against enemies of Poison elemental by 5%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4448# +Decreases damage taken from Holy elemental by 20%. +Increases Physical Damage against enemies of Holy elemental by 5%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4449# +Decreases damage taken from Shadow elemental by 20%. +Increases Physical Damage against enemies of Shadow elemental by 5%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4450# +INT +1 +MATK +10 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4451# +MATK +100 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4452# +INT +1 +MATK +3 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4453# +ATK +25 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4454# +No effect. +This card is nothing more then a piece of paper that gives you no advantages. - Valkyrie, it says. +Collectible card that traders may buy. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4455# +No effect. +This card is nothing more then a piece of paper that gives you no advantages. - Valkyrie, it says. +Collectible card that traders may buy. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4456# +INT +5 +-------------------------- +When equipped by High Wizard or Warlock: +Decreases Fixed Casting Time by 50%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4457# +Increases Magical Damage with Ghost element by 30%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4458# +ATK +10 +-------------------------- +Random chance to increase Perfect Dodge by 10 for 4 seconds when dealing physical damage. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4459# +MATK +10 +-------------------------- +Random chance to decrease Fixed Casting Time of all skills by 50% for 4 seconds when dealing magical damage. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4460# +Increases Healing skills effectiveness by 4%. +Increases SP Consumption of Healing skills by 15. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4461# +DEX +1 +AGI +1 +-------------------------- +Random chance to increase Critical by 20 for 4 seconds when dealing physical damage. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4462# +DEF +5 +-------------------------- +Refine Level +12: +DEF +20 +MaxHP +10% +-------------------------- +Refine Level +14: +MaxHP +3% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4463# +Critical +5 +-------------------------- +Refine Level +12: +ATK +35 +-------------------------- +Refine Level +14: +Critical +10 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4464# +Increases Critical Damage by 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4465# +ATK +10 +-------------------------- +When compounded on a Two-Handed Sword class weapon: +Refine Level +10: +ASPD +1 + +Refine Level +14: +ASPD +1 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4466# +Increases Ranged Physical Damage by 3%. +-------------------------- +When compounded on a Bow class weapon: +Refine Level +10: +ASPD +1 + +Refine Level +14: +ASPD +1 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4467# +STR +2 +-------------------------- +When equipped by Merchant classes: +Increases damage of Cart Revolution by 50%. +Increases SP Consumption of Cart Revolution by 12. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4468# +ATK +10 +-------------------------- +Random chance a defeated monster will drop Poisonous Herb. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4469# +Increases Magical Damage against monsters of Fish race by 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4470# +Increases Magical Damage against monsters of Plant race by 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4471# +Increases Magical Damage against monsters of Dragon race by 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4472# +Increases Magical Damage against monsters of Brute race by 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4473# +Increases Magical Damage against monsters of Undead race by 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4474# +Increases Magical Damage against monsters of Demi-Human race by 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4475# +Increases Magical Damage against monsters of Formless race by 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4476# +Increases Magical Damage against monsters of Insect race by 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4477# +Increases Magical Damage against monsters of Demon race by 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4478# +A card with no effect. +\ + -as written on the card. +Maybe merchant will buy it. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4479# +A card with no effect. +\ + -as written on the card. +Maybe merchant will buy it. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4480# +Decreases After Skill Delay by 15%. +-------------------------- +Refine Level +15: +Decreases After Skill Delay of all skill by additional 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4481# +Increases Physical Damage against enemies of Fire elemental by 25%. +Random chance to auto-cast Level 10 Frost Nova when wearer receiving physical or magical attack. +-------------------------- +Refine Level +15: +Increases Damage against monsters of Fire elemental by 10%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4482# +MaxHP +5% +MaxSP +5% +Recover 50 HP and 10 SP every 15 seconds. +-------------------------- +Refine Level +15: +Recover interval shortened to 10 seconds. +MaxHP +2% +MaxSP +2% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4483# +5% chance to absorb 5% of the inflicted damage as SP when dealing physical damage. +-------------------------- +Refine Level +15: +Increases absorption rate to 7%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4484# +Nullifies the Gemstone requirement of certain skills. +Increases SP Consumption by 50%. +-------------------------- +Refine Level +15: +Decreases SP Consumption by 15%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4485# +Increases Physical Damage against enemies of Holy and Shadow elemental and Angel and Demon race monsters by 20%. +-------------------------- +Refine Level +15: +Increases Physical Damage against enemies of Holy and Shadow elemental and Angel and Demon race monsters by additional 10%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4486# +Decreases Variable Casting Time by 15%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4487# +Increases ATK, CRI and HIT based on 50% of your Job Level. +Random chance to auto-cast Level 2 Earthquake when receiving physical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4488# +Random chance to auto-cast Level 5 Meteor Storm when recieving physical damage. +-------------------------- +When equipped with Dark Illusion Card: +MaxHP +10% +MaxSP +10% + +Refine Level +15: +MaxHP +5% +MaxSP +5% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4489# +Decreases SP Consumption by 15%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4490# +Enables the use of Level 1 Increase Agility. +-------------------------- +Refine Level +15: +Enables the use of Level 5 Increase Agility. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4491# +5% chance of absorbing 10% of inflicted physical damage as HP, but also decreases HP Recovery Rate by 100%. +-------------------------- +Refine Level +15: +Increases absorbtion rate by 5%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4492# +Increases resistance against Stun status by 40%. +-------------------------- +VIT +3 +-------------------------- +Refine Level +15: +Increases resistance against Stun status by 20%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4493# +MaxHP +50% +DEF and MDEF -50 +-------------------------- +Refine Level +15: +MaxHP +25% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4494# +ATK +10% +-------------------------- +Random chance to auto-cast Level 10 Magnum Break when dealing physical damage. +-------------------------- +Refine Level +15: +ATK +5% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4495# +All Stats +1 +-------------------------- +Random chance to auto-cast Level 5 Kyrie Eleison when receiving physical damage. +-------------------------- +Refine Level +15: +auto-cast Level 8 Kyrie Eleison instead. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4496# +Weapon size modifier affects you by half the amount instead. +* 75% size modifier becomes 87% +* 50% size modifier becomes 75% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4497# +Random chance to auto-cast Level 1 Storm Gust on the enemy when dealing physical damage. +Physical attacks have a 20% chance of inflicting Freezing status on the enemy. +-------------------------- +Refine Level +15: +Activation chance increases. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4498# +MaxHP -60%, MaxSP +50%. +-------------------------- +Random chance to get Banana^0000 when defeating a monster. +Increases Banana recovery rate by 50%. +-------------------------- +Refine Level +15: +MaxHP +10% +Increases chance to get Banana when defeating a monster. +Increases Banana recovery rate by additional 30%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4499# +Ignores physical defense of Normal class by 100%. +Disables Natural HP Recovery and drains 888 HP every 5 seconds. +Drains 999 HP on equipping. +-------------------------- +Refine Level +15: +Drains 777 HP every 8 seconds instead. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4500# +Reflects 15% damage back to attacker when receiving Melee Physical Damage. +-------------------------- +Refine Level +15: +Reflect 25% of damage back to attacker. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4501# +Random chance to auto-cast Level 1 Assumptio when receiving physical or magical damage. +-------------------------- +Refine Level +15: +It has higher chance to auto-cast the skill. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4502# +Physical attacks have a 5% chance of destroying the weapon and a 4% chance of destroying the armor of the enemy. +-------------------------- +Refine Level +15: +Physical attacks have a 8% chance of destroying the weapon and a 6% chance of destroying the armor of the enemy. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4503# +Ignores magical defense of Boss class by 15%. +-------------------------- +Refine Level +15: +DEX +2 +Ignores magical defense of Boss class by 25%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4504# +Unlimited effect of Endure skill. +-------------------------- +MaxHP -50% +-------------------------- +Refine Level +15: +MaxHP +15% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4505# +MATK +20 +MaxSP -1% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4506# +DEX +2 +-------------------------- +When equipped by Archer classes: +For each 3 Refine Levels: +DEX +1 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4507# +Inflicts 30% more damage damage against Scarabas. +Random chance a defeated monster will drop Scaraba Summoning Scroll. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4508# +ATK +20 +MaxHP -1% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4509# +INT +3 +Decreases damage taken from Insect race by 10%. +-------------------------- +Refine Level +9: +Decreases damage taken from Insect race by additional 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4510# +Random chance to inflict Deep Sleep status on the target when dealing physical damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4511# +Random chance to inflict Silence status on the target when dealing magical damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4512# +Increases Healing skills effectiveness by 3%. +-------------------------- +When equipped by Acolyte classes: +For each 2 Refine Levels: +Increases Healing skills effectiveness by additional 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4513# +Increases Critical Damage by 2%. +-------------------------- +When equipped by Thief classes: +For each 2 Refine Levels: +Increases Critical Damage by additional 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4514# +Increases Physical Damage against enemies of Undead race by 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4515# +Decreases damage taken from Plant race by 30%. +-------------------------- +Collection Effect +Reduce damage from Plant type enemies by 3%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4516# +DEF +50 +FLEE -25 +-------------------------- +Collection Effect +DEF +5, FLEE -2 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4517# +INT +2 +-------------------------- +When equipped by Mage classes: +For each 3 Refine Levels: +INT +1 +-------------------------- +Collection Effect +INT +1 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4518# +Random chance to inflict Burning status on the target when dealing physical damage. +-------------------------- +Collection Effect +Weight Limit +30 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4519# +Increases Physical Damage against enemies of Angel race by 20%. +-------------------------- +Collection Effect +Increase damage dealt to Angel race monsters by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4520# +STR +3 +-------------------------- +when receiving physical or magical damage, there's a high chance to cause Confuse or Fear status. +-------------------------- +Collection Effect +Adds a 5% chance to cause Confusion to an enemy when receiving magical and meelee damage. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4521# +Increases Critical Damage by 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4522# +Random chance to inflict Crystalisation status on the target when dealing melee physical attacks. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4523# +Enchants compounded Armor with Water elemental. +Decreases damage taken from Fish race monsters by 10%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4524# +STR +2 +-------------------------- +When equipped by Swordman classes: +For each 3 Refine Levels: +STR +1 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4525# +FLEE +10 +-------------------------- +Enables the use of Level 1 Hiding and Level 1 Raid. +Raid has a chance to inflict Bleeding status. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4526# +MaxSP +5% +MDEF +50 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4527# +MaxHP +10% +DEF +100 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4528# +MATK +2% +-------------------------- +For each 2 Refine Levels: +MATK +1% +MaxHP -1% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4529# +ATK +2% +-------------------------- +For each 2 Refine Levels: +MaxSP -1% +ATK +1% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4530# +LUK +2 +-------------------------- +When equipped by Merchant classes: +For each 3 Refine Levels: +LUK +1 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4531# +Random chance to inflict Curse status on the target when dealing magical damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4532# +Random chance to auto-cast Level 1 Increase Agility on yourself when dealing physical damage. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4533# +Random chance to inflict Blind status on the target when dealing magical damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4534# +MaxHP +12% +-------------------------- +Enables the use of Level 5 Waterball. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4535# +ATK +5% +Random chance to auto-cast Level 1 Dispell when dealing physical damage. +-------------------------- +Refine Level +15: +ATK +8% +-------------------------- +Compounded weapon becomes indestructible in battle +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4536# +ATK +15 +-------------------------- +Random chance to decrease After Attack Delay by 50% for 10 seconds during physical attacks. +-------------------------- +Refine Level +15: +ATK +25 +Random chance to decrease After Attack Delay by 75% for 10 seconds during physical attacks instead. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4537# +HIT +50 +-------------------------- +Refine Level +15: +HIT +75 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4538# +Increases the effect of the Heal, Sanctuary and Potion Pitcher skills by 15% when they are cast by the wearer, but also increases SP Comsumption by 30%. +-------------------------- +Refine Level +15: +Increases the effect of the Heal, Sanctuary and Potion Pitcher skills by 25% when they are cast by the wearer, but also increases SP Comsumption by 20%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4539# +MATK +5%, MaxSP -50%. +-------------------------- +Increases magic damage to Demi-Human and Angel race by 25%. +-------------------------- +Refine Level +15: +MATK +3% +Increases magic damage on Demi-Human and Angel race by 8%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4540# +Random chance to inflict Coma status on enemies during physical attacks. +Random chance to inflict Stunned, Curse, Silence, Poison, Wound status during physical attacks. +-------------------------- +Refine Level +15: +The chance to inflict the statuses above is increased. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4541# +Ignores magical defense of Normal class by 100%. +Increases Variable Casting Time of all skills by 150%. +Decreases SP Recovery Rate by 150%. +Drains 3000 SP when the compounded headgear is unequipped. +-------------------------- +Refine Level +15: +Increases Variable Casting Time of all skills by 120%. +Decreases SP Recovery by 120%. +Drains 2000 SP when the compounded headgear is unequipped. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4542# +Increases resistance against Freezing status by 40%. +Random chance to auto-cast Level 1 Land Protector when dealing magical damage. +MDEF -20 +-------------------------- +Refine Level +15: +Increases resistance against Freezing status by 20%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4543# +25% chance to inflict Frozen status on the enemy when receiving physical damage. +-------------------------- +Refine Level +15: +There is 40% chance to inflict Frozen status on the enemy instead. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4544# +INT +3. +-------------------------- +Random chance to resist Blind and Curse status. +-------------------------- +Refine Level +15: +Higher chance to resist Blind and Curse status. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4545# +LUK +1 +-------------------------- +When equipped with Criatura Academy Hat: +ATK +5 +MATK +5 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4546# +Card with no effect. +What a certificate of after learning to use any disadvantage to the user. - said, says. +Collectible dealer may buy. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4547# +When equipped by Rogue classes: +ATK +10% +MATK +10% +Random chance to inflict Confuse status on the target when using Body Paint. + +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4548# +Increases damage of Fire Pillar and Meteor Storm by 40%. +Increases Fire Pillar skill cooldown by 2 seconds. +-------------------------- +Refine Level +15: +Decreases Fire Pillar skill cooldown by 2 seconds. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4549# +All Stats +1 +-------------------------- +Enable its user to detect hidden enemies. +Enables the use of Level 1 Ruwach +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4550# +When compounded on a Bow class weapon: +Increases damage of Arrow Shower by 50%. +Critical +5 +HIT +5 +Increases Critical Damage during ranged physical attacks by 20%. +Random chance to auto-cast Level 1 Phantasmic Arrow when dealing physical damage. + +For each 4 Refine Levels: +Increases Critical Damage by 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4551# +When compounded on a Staff class weapon: +INT +1 +Ignores magical defense of target by 2%. + +For each 4 Refine Levels: +Ignores magical defense of target by 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4552# +Ice Age 4 memorial card. +-------------------------- +MaxHP +10 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4553# +Ice Age 4 memorial card. +-------------------------- +MaxHP +100 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4554# +Ice Age 4 memorial card. +-------------------------- +MaxHP +100 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4555# +Ice Age 4 memorial card. +-------------------------- +MaxHP +100 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4556# +MATK +50 +-------------------------- +For each Refine Level: +MATK +5 +Decreases Fixed Casting Time by 70%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4557# +MATK +25 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4558# +Decreases damage taken from Earth elemental attacks by 20%. +Random chance to auto-cast Level 2 Kyrie Eleison when receiving physical damage. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4559# +ASPD +1 +MaxSP -10% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4560# +When compounded on a Musical Instrument or Whip class weapon: +Enables the use of Level 10 Poem of Bragi. +FLEE +20 + +Base VIT at least 110: +FLEE +20 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4561# +Random chance to auto-cast Level 5 Land Protector around the user when receiving magical damage. +-------------------------- +MATK +7% +-------------------------- +Base DEX at least 110: +MATK +7% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4562# +Random chance to auto-cast Level 5 Investigate on attacker when receiving physical damage. +-------------------------- +ATK +7% +-------------------------- +Base AGI at least 110: +ATK +7% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4563# +Random chance to auto-cast Level 5 Acid Terror on attacker when receiving physical damage. +-------------------------- +Critical +20 +-------------------------- +Base STR at least 110: +Critical +20 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4564# +Random chance to auto-cast Level 1 Full Strip on attacker when receiving physical damage. +-------------------------- +HIT +20 +-------------------------- +Base LUK at least 110: +HIT +20 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4565# +Random chance to auto-cast Level 10 Grand Cross when receiving physical damage. +-------------------------- +MaxHP +10% +-------------------------- +Base INT at least 110: +MaxHP +10% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4566# +When compounded on a Whip or Musical Instrument class weapon: +Enables the use of Level 10 Fortune's Kiss. +-------------------------- +FLEE +20 +-------------------------- +Base VIT at least 110: +FLEE +20 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4567# +FLEE +10 +-------------------------- +When equipped by Bard classes: +MaxHP +10% +MaxSP +5% +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4568# +FLEE +10 +-------------------------- +Enables the use of Level 1 Abracadabra. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4569# +FLEE +10 +-------------------------- +Enables the use of Level 2 Call Spirits. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4570# +FLEE +10 +-------------------------- +Increases recovery amount gained from Red Potion, Orange Potion, Yellow Potion and White Potion by 200%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4571# +FLEE +10 +-------------------------- +Enables the use of Level 1 Close Confine. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4572# +FLEE +10 +-------------------------- +Enables the use of Level 3 Auto Guard. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4573# +FLEE +10 +-------------------------- +When equipped by Dancer classes: +MaxHP +10% +MaxSP +5% +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4574# +When compounded on a One-Handed Sword or Two-Handed Sword class weapon: +ATK +100 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4575# +ATK +10 +-------------------------- +When compounded on a Dagger class weapon: +Refine Level +10: +ASPD +1 + +Refine Level +14: +ASPD +1 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4576# +Increases Magical Damage with Wind and Ghost element by 100%. +Decreases resistance to all elemental attacks by 30%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4577# +Increases Magical Damage with Wind and Ghost element by 20%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4578# +Increases Critical Damage by 30%. +Increases damage taken from all monsters by 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4579# +When equipped with Mace class weapon: +ATK +20 +Critical +10 + +For each Refine Level: +ATK +1 +Critical +1 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4580# +Decreases damage taken from Fire, Wind, Water, Earth, Shadow and Undead elemental attacks by 50%. +Increases damage taken from Ghost and Holy elemental attacks by 100%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4581# +Random chance to increase movement speed for 3 seconds and AGI by 44 but at the same time lose 40 SP when dealing physical damage. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4582# +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4583# +Increases Physical Damage against enemies of Poison elemental by 30%. +Ignores physical defense of Plant race by 30%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4584# +MaxSP -1% +-------------------------- +Regain 1 SP with each attack. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4585# +MaxSP +10% +-------------------------- +Drain 666 HPeach time an enemy is killed. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4586# +MATK +10 +-------------------------- +Increases Magical Damage with Wind element by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Wind element by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4587# +Critical +12 when attacking Demi-Human, Brute and Fish race monsters. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4588# +For each 10 base STR: +ATK +5 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4589# +For each 10 base VIT: +MaxHP +200 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4590# +INT +4 +-------------------------- +Random chance to inflict Sleep status on the targets within a 23x23 cell area around wearer when attacke by magical attack. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4591# +STR +4 +-------------------------- +Random chance to inflict Bleeding status on the targets within a 23x23 cell area around wearer when receiving physical damage. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4592# +VIT +4 +-------------------------- +Random chance to inflict Stone Curse on the targets within a 23x23 cell area around wearer when receiving magical attack. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4593# +For each 10 base DEX: +Increases Ranged Physical Damage by 1%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4594# +For each 10 base LUK: +Increases Critical Damage by 2%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4595# +For each 10 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4596# +For each 10 base INT: +MATK +5 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4597# +MATK +10 +-------------------------- +Increases Magical Damage with Water element by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Water element by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4598# +MATK +10 +-------------------------- +Increases Magical Damage with Ghost element by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Ghost element by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4599# +MATK +10 +-------------------------- +Increases Magical Damage with Fire element by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Fire element by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4600# +MATK +10 +-------------------------- +Increases Magical Damage with Earth element by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Earth element by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4601# +ATK +15%. +MATK +15% +-------------------------- +Drains 666 HP and 66 SP every 4 seconds. +Drains 6666 HP and 666 SP as the Armor is unequipped. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4602# +ATK +20%. +MATK +20% +-------------------------- +Drains 666 HP and 66 SP every 6 seconds. +Drains 6666 HP and 666 SP as the Armor is unequipped. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4603# +ATK +20 +-------------------------- +Random chance to inflict Stone Curse, Sleep or Curse on all targets within a 5x5 cells when dealing melee physical attacks. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4604# +ATK +30 +-------------------------- +Random chance to inflict Stone Curse, Sleep or Curse on all targets within a 11x11 cells when dealing melee physical attacks. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4605# +MaxHP -44% +-------------------------- +Recover 200 HP for each defeated monster with physical attacks. +Drains 4444 HP as the Armor is unequipped. + +For each Refine Level: +Increasesy recovery by 10. +-------------------------- +When equipped with Grudge of Royal Knight Card: +Decreases damage taken from Neutral elemental attacks by 20%. +FLEE +20 +Drains 100 HP every 6 seconds. +Drains 6 SP every 6 seconds. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4606# +MaxSP -44% +-------------------------- +Recover 20 SP for each defeated monster with physical attacks. +Drain 444 SP as the garment is unequipped. + +For each Refine Level: +Increasesy recovery by 1. +-------------------------- +When equipped with Agony of Royal Knight Card: +Decreases damage taken from Neutral elemental attacks by 20%. +FLEE +20 +Drains 100 HP every 6 seconds. +Drains 6 SP every 6 seconds. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4607# +ATK +5 +MATK +5 +-------------------------- +When equipped with Book class weapon: +Refine Level +10: +ATK +20 +MATK +20 + +Refine Level +14: +ATK +20 +MATK +20 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4608# +ATK +15 +-------------------------- +Increases Physical Damage against enemies of Medium and Large size by 20%. +-------------------------- +When equipped with Khalitzburg Knight Card: +Increases Physical Damage against enemies of Medium and Large size by 15%. +Decreases damage taken from Medium and Large size by 5%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4609# +DEF +20 +-------------------------- +Decreases Physical and Magical Damage taken from Medium and Large size by 25%. +-------------------------- +When equipped with White Knight Card: +Decreases Physical and Magical Damage taken from Medium and Large size by 5%. +Increases Physical Damage against enemies of Large size by 15%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4610# +When the damage taken exceeds the user's MaxHP, user will only take the amount that exceeds the user's MaxHP. +However, it cannot decrease the static damage. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4611# +A collectible card printed with girl's photo. +-------------------------- +INT +1 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4612# +A collectible card printed with girl's photo. +-------------------------- +INT +1 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4613# +A collectible card printed with girl's photo. +-------------------------- +STR +1 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4614# +A collectible card printed with girl's photo. +-------------------------- +VIT +1 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4615# +A collectible card printed with girl's photo. +-------------------------- +DEX +1 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4616# +A collectible card printed with girl's photo. +-------------------------- +AGI +1 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4617# +A collectible card printed with girl's photo. +-------------------------- +AGI +1 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4618# +A collectible card printed with girl's photo. +-------------------------- +DEX +1 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4619# +A collectible card printed with girl's photo. +-------------------------- +STR +1 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4620# +A collectible card printed with girl's photo. +-------------------------- +VIT +1 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4621# +A collectible card printed with girl's photo. +-------------------------- +LUK +1 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4622# +A collectible card printed with girl's photo. +-------------------------- +LUK +1 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4623# +When compounded on Poring Fedora Hat: +Increases HP Recovery Rate by 25% +Increases SP Recovery Rate by 25% + +Refine Level +7: +Increases HP Recovery Rate by additional 25%. +Increases SP Recovery Rate by additional 25%. + +Refine Level +9: +Increases HP Recovery Rate by additional 25%. +Increases SP Recovery Rate by additional 25%. + +Refine Level +10: +Increases HP Recovery Rate by additional 25%. +Increases SP Recovery Rate by additional 25%. +-------------------------- +When compounded on Boss Beret Hat: +Perfect Dodge +5 + +Refine Level +7: +Perfect Dodge +1 + +Refine Level +9: +Perfect Dodge +1 + +Refine Level +10: +Perfect Dodge +3 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4625# +MATK +20% +-------------------------- +Increases SP Consumption by 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4626# +Increases Magical Damage against monsters of Formless and Demon race by 5%. +-------------------------- +When equipped with a shield compounded with Neo Punk Card: +Pierce magical defense of Formless and Demon monste by 50%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4627# +Increases Physical Damage against enemies of Formless and Demon race by 10%. +-------------------------- +When equipped with a shield compounded with Neo Punk Card: +Ignores physical defense of Formless and Demon race monster 50%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4628# +Decreases damage taken from Formless and Demon race monsters by 25%. +-------------------------- +When equipped with a weapon compounded with Big Ben Card: +Decreases damage taken from Formless and Demon race monsters by additional 5%. +-------------------------- +When equipped with a weapon compounded with Big Bell Card: +Decreases damage taken from Formless and Demon race monsters by additional 5%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4629# +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +For each Refine Level: +Increases Magical Damage with Earth element by 3%. +-------------------------- +When equipped with shoes compounded with Time Keeper Card: +Decreases damage taken from Neutral elemental attacks by additional 5%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4630# +Random chance to inflict Curse status to all targets within 11x11 cells when dealing physical damage. +-------------------------- +When equipped with a garment compounded with Arc Elder Card: +The chance is further increased. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4631# +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4632# +Random chance to auto-cast Level 1 Whirlwind when dealing physical damage. +If the user has mastered the skill at Level 5, it will cast Level 5 instead. +-------------------------- +When equipped with Owl Viscount Card: +Random chance to auto-cast Level 1 Lord of Vermillion when dealing physical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4633# +Increases Ranged Physical Damage by 10%. +-------------------------- +Base Level at least 100: +Increases Ranged Physical Damage by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4634# +Critical +9 +-------------------------- +Base Level at least 100: +Critical +1 +Increases Critical Damage by 5%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4635# +For each Refine Level: +DEF +10 +FLEE -2 +-------------------------- +Base Level at least 100: +MaxHP +500 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4636# +Prevents Frozen status. +-------------------------- +ATK +10% +MATK +10% +-------------------------- +When equipped with a armor compounded with Enhanced Amdarais Card: +Prevents Burning status. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4637# +Recover 50 HP and 5 SP and defeating monsters with Melee Physical Damage. +Disables HP and SP Recovery Rate. +Drains HP 1000 and SP 100 when garment is unequipped. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4638# +ATK +30 +-------------------------- +Drain 5 SP from wearer when receiving physical damage. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4639# +ATK +1% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4640# +MATK +1% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4641# +Decreases SP Recovery Rate by 100%. +Recover 1 SP for each physical attack. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4642# +Perfect Dodge +2 +-------------------------- +Refine Level +7: +Perfect Dodge +2 +-------------------------- +Refine Level +9: +Perfect Dodge +3 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4643# +ATK +10 +-------------------------- +Refine Level +7: +ATK +10 +-------------------------- +Refine Level +9: +ATK +15 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4644# +MDEF +5 +-------------------------- +Refine Level +7: +MDEF +10 +-------------------------- +Refine Level +9: +MDEF +15 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4645# +MaxHP +300 +-------------------------- +Refine Level +7: +MaxHP +300 +-------------------------- +Refine Level +9: +MaxHP +400 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4646# +MaxHP +8% +MaxSP +4% +-------------------------- +When equipped with Shoes compounded with one of the following cards: +Infinite Toad Card, Infinite Vagabond Wolf Card, Infinite Eclipse Card or Infinite Vocal Card: +ATK +10% +MATK +10% +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4647# +Recover 300 HP when defeating monster with melee physical attacks. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +4648# +Random chance to auto-cast Level 10 Provoke on attacker when receiving physical damage. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4649# +Critical +100 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4650# +VIT +3 +-------------------------- +100% chance of inflicting Stun status on attacker when receiving physical damage. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4651# +AGI -10 +MaxHP +10000 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4652# +Increases Magical Damage against Shadow and Undead elemental by 50%. +Increases Magical Damage against monsters of Demon and Undead race by 50%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4653# +Decreases damage taken from Brute and Undead race by 20%. +-------------------------- +When equipped with Nightmare Mimic Card: +Decreases damage taken from Brute and Undead race by 5%. +Pierce magical defense of Brute and Undead race by 50%. +-------------------------- +When equipped with Nightmare Minotaur Card: +Decreases damage taken from Brute and Undead race by 5%. +Ignores physical defense of Brute and Undead race by 50%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4654# +Increases Magical Damage against monsters of Brute and Undead race by 5%. +-------------------------- +When equipped with Nightmare Arclouse Card: +Decreases damage taken from Brute and Undead race by 5%. +Pierce magical defense of Brute and Undead race by 50%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4655# +Increases Physical Damage against enemies of Brute and Undead race by 10%. +-------------------------- +When equipped with Nightmare Arclouse Card: +Decreases damage taken from Brute and Undead race by 5%. +Ignores physical defense of Brute and Undead race 50%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4656# +Random chance to inflict Sleep status to all targets within 11x11 cells when receiving physical or magical damage. +-------------------------- +When equipped with Nightmare Ancient Mummy Card: +Decreases damage taken from Neutral elemental attacks by 5%. +Increases the chance of inflicting Sleep status to all targets within 11x11 cells. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4657# +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +For each Refine Level: +Increases Magical Damage with Fire element by 3%. +-------------------------- +When equipped with Nightmare Mummy Card: +Decreases damage taken from Neutral elemental attacks by 5%. +Increases the chance of inflicting Sleep status to all targets within 11x11 cells. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4658# +MATK +5% +-------------------------- +Refine Level +7: +MATK +3% +-------------------------- +Refine Level +9: +MATK +2% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4659# +LUK +2 +MaxHP +50 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4660# +Decreases Physical and Magical Damage taken from Small and Medium size by 5%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4661# +Decreases Physical and Magical Damage taken from Medium and Large size by 20%. +Increases Damage taken from Small size by 15%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +4662# +MaxHP +1000 +ATK +25 +MATK +25 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases Ranged Physical Damage by 5%. +Increases Critical Damage by 10%. +-------------------------- +For each 10 base STR: +ATK -5 +-------------------------- +For each 10 base AGI: +Increases After Attack Delay by 2%. +-------------------------- +For each 10 base VIT: +MaxHP -200 +-------------------------- +For each 10 base INT: +MATK -5 +-------------------------- +For each 10 base DEX: +Increases Ranged Physical Damage by 1%. +-------------------------- +For each 10 base LUK: +Decreases Critical Damage by 2%. +-------------------------- +All Stats bonuses can't be less than 0. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4663# +MaxSP +5 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4664# +LUK +1 +MaxHP +100 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4665# +ATK +5 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4666# +MaxSP +10 +MaxHP +300 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +4667# +MaxSP +30 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +4668# +VIT +1 +INT +1 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +4669# +Increases Magical Damage against Wind elemental by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage against Wind elemental by additional 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage against Wind elemental by additional 7%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4670# +Increases Magical Damage against monsters of Fire elemental by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage against monsters of Fire elemental by additional 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage against monsters of Fire elemental by additional 7%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4671# +When equipped by Sorcerer: +MaxHP +10% +MATK +10% +-------------------------- +Base Level at least 175: +All Stats +10 +-------------------------- +Refine Level +10: +All Stats +10 +-------------------------- +When equipped with True Celia Aldea Card: +3% chance to transform into Celia Aldea when dealing magical damage for 6 seconds. +During tranformation: +MATK +100 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4672# +When equipped by Sura: +MaxHP +10% +ATK +10% +-------------------------- +Base Level at least 175: +All Stats +10 +-------------------------- +Refine Level +10: +All Stats +10 +-------------------------- +When equipped with True Chen Liu Card: +3% chance to transform into Chen Liu when dealing physical damage for 6 seconds. +During tranformation: +ATK +100 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4673# +When equipped by Minstrel: +MaxHP +15% +MaxSP +10% +-------------------------- +Base Level at least 175: +All Stats +10 +-------------------------- +Refine Level +10: +All Stats +10 +-------------------------- +When equipped with True Alphoccio Basil Card: +3% chance to transform into Alphoccio Basil when dealing physical damage. +During tranformation: +ATK +100 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4674# +When equipped by Guillotine Cross: +ATK +15% +Perfect Dodge +10 +-------------------------- +Base Level at least 175: +All Stats +10 +-------------------------- +Refine Level +10: +All Stats +10 +-------------------------- +When equipped with True Eremes Guile Card: +3% chance to transform into Eremes Guile when dealing physical damage. +During tranformation: +ATK +100 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4675# +When equipped by Archbishop: +MaxHP +10% +Increases Healing skills effectiveness by 15%. +-------------------------- +Base Level at least 175: +All Stats +10 +-------------------------- +Refine Level +10: +All Stats +10 +-------------------------- +When equipped with True Margaretha Sorin Card: +3% chance to transform into Margaretha Sorin when dealing magical damage. +During tranformation: +MATK +100 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4676# +When equipped by Ranger: +Critical +20 +Increases Bow class weapon damage by 15%. +-------------------------- +Base Level at least 175: +All Stats +10 +-------------------------- +Refine Level +10: +All Stats +10 +-------------------------- +When equipped with True Cecil Damon Card: +3% chance to transform into Cecil Damon when dealing physical damage. +During tranformation: +ATK +100 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4677# +When equipped by Mechanic: +HIT +20 +ATK +15% +-------------------------- +Base Level at least 175: +All Stats +10 +-------------------------- +Refine Level +10: +All Stats +10 +-------------------------- +When equipped with True Howard Alt-Eisen Card: +3% chance to transform into Howard Alt-Eisen when dealing physical damage. +During tranformation: +ATK +100 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4678# +When equipped by Warlock: +MATK +15% +MDEF +80 +-------------------------- +Base Level at least 175: +All Stats +10 +-------------------------- +Refine Level +10: +All Stats +10 +-------------------------- +When equipped with True Kathryne Keyron Card: +3% chance to transform into Kathryne Keyron when dealing magical damage. +During tranformation: +MATK +100 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4679# +When equipped by Rune Knight: +ASPD +2 +ATK +15% +-------------------------- +Base Level at least 175: +All Stats +10 +-------------------------- +Refine Level +10: +All Stats +10 +-------------------------- +When equipped with True Seyren Windsor Card: +3% chance to transform into Seyren Windsor when dealing physical damage. +During tranformation: +ATK +100 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4680# +When equipped by Royal Guard: +ATK +10% +DEF +350 +-------------------------- +Base Level at least 175: +All Stats +10 +-------------------------- +Refine Level +10: +All Stats +10 +-------------------------- +When equipped with True Randel Lawrence Card: +3% chance to transform into Randel Lawrence when dealing physical damage. +During tranformation: +ATK +100 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4681# +When equipped by Genetic: +FLEE +20 +ATK +15% +-------------------------- +Base Level at least 175: +All Stats +10 +-------------------------- +Refine Level +10: +All Stats +10 +-------------------------- +When equipped with True Flamel Emure Card: +3% chance to transform into Flamel Emure when dealing physical damage. +During tranformation: +ATK +100 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4682# +When equipped by Shadow Chaserr: +ATK +5% +MATK +15% +-------------------------- +Base Level at least 175: +All Stats +10 +-------------------------- +Refine Level +10: +All Stats +10 +-------------------------- +When equipped with True Gertie Wi Card: +3% chance to transform into Gertie Wi when dealing physical damage. +During tranformation: +ATK +100 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4683# +When equipped by Wanderer: +MaxHP +10% +MaxSP +15% +-------------------------- +Base Level at least 175: +All Stats +10 +-------------------------- +Refine Level +10: +All Stats +10 +-------------------------- +When equipped with True Trentini Card: +3% chance to transform into Trentini when dealing physical damage. +During tranformation: +ATK +100 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +4684# +Increases damage of Cross Impact by 20%. +-------------------------- +When compounded to Level 4 weapon: +Increases damage of Cross Impact by additional 20%. + +Refine Level +10: +Increases damage of Cross Impact by additional 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4685# +Increases damage of Adoramus by 20%. +-------------------------- +When compounded to Level 4 weapon: +Increases damage of Adoramus by additional 20%. + +Refine Level +10: +Increases damage of Adoramus by additional 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4686# +Increases damage of Crimson Rock by 20%. +-------------------------- +When compounded to Level 4 weapon: +Increases damage of Crimson Rock by additional 20%. + +Refine Level +10: +Increases damage of Crimson Rock by additional 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4687# +Increases damage of Cluster Bomb by 20%. +-------------------------- +When compounded to Level 4 weapon: +Increases damage of Cluster Bomb by additional 20%. + +Refine Level +10: +Increases damage of Cluster Bomb by additional 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4688# +Increases damage of Axe Tornado by 20%. +-------------------------- +When compounded to Level 4 weapon: +Increases damage of Axe Tornado by additional 20%. + +Refine Level +10: +Increases damage of Axe Tornado by additional 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4689# +Increases damage of Ignition Break by 20%. +-------------------------- +When compounded to Level 4 weapon: +Increases damage of Ignition Break by additional 20%. + +Refine Level +10: +Increases damage of Ignition Break by additional 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4690# +Increases damage of Earth Drive by 20%. +-------------------------- +When compounded to Level 4 weapon: +Increases damage of Earth Drive by additional 20%. + +Refine Level +10: +Increases damage of Earth Drive by additional 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4691# +Increases damage of Cart Tornado by 20%. +-------------------------- +When compounded to Level 4 weapon: +Increases damage of Cart Tornado by additional 20%. + +Refine Level +10: +Increases damage of Cart Tornado by additional 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4692# +Increases damage of Varetyr Spear by 20%. +-------------------------- +When compounded to Level 4 weapon: +Increases damage of Varetyr Spear by additional 20%. + +Refine Level +10: +Increases damage of Varetyr Spear by additional 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4693# +Increases damage of Rampage Blaster by 20%. +-------------------------- +When compounded to Level 4 weapon: +Increases damage of Rampage Blaster by additional 20%. + +Refine Level +10: +Increases damage of Rampage Blaster by additional 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4694# +Increases damage of Feint Bomb by 20%. +-------------------------- +When compounded to Level 4 weapon: +Increases damage of Feint Bomb by additional 20%. + +Refine Level +10: +Increases damage of Feint Bomb by additional 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4695# +Increases damage of Severe Rainstorm by 20%. +-------------------------- +When compounded to Level 4 weapon: +Increases damage of Severe Rainstorm by additional 20%. + +Refine Level +10: +Increases damage of Severe Rainstorm by additional 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4696# +Increases damage of Reverberation by 20%. +-------------------------- +When compounded to Level 4 weapon: +Increases damage of Reverberation by additional 20%. + +Refine Level +10: +Increases damage of Reverberation by additional 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4697# +MaxSP -300 +Random chance to destroy target's equipped Armor when dealing physical damage. +-------------------------- +When equipped with Kick Step Card: +Nullifies Mado Gear's Fuel Consumption. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4698# +Increases damage of Axe Boomerang by 30%. +-------------------------- +Refine Level +10: +Increases damage of Axe Boomerang by additional 30%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4699# +Increases damage of Canon Arms by 30%. +-------------------------- +Refine Level +10: +Increases damage of Canon Arms by 30%. +-------------------------- +When equipped with Kick Step Card: +Nullifies Mado Gear's Fuel Consumption. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +4700# +STR +1 +# +4701# +STR +2 +# +4702# +STR +3 +# +4703# +STR +4 +# +4704# +STR +5 +# +4705# +STR +6 +# +4706# +STR +7 +# +4707# +STR +8 +# +4708# +STR +9 +# +4709# +STR +10 +# +4710# +INT +1 +# +4711# +INT +2 +# +4712# +INT +3 +# +4713# +INT +4 +# +4714# +INT +5 +# +4715# +INT +6 +# +4716# +INT +7 +# +4717# +INT +8 +# +4718# +INT +9 +# +4719# +INT +10 +# +4720# +DEX +1 +# +4721# +DEX +2 +# +4722# +DEX +3 +# +4723# +DEX +4 +# +4724# +DEX +5 +# +4725# +DEX +6 +# +4726# +DEX +7 +# +4727# +DEX +8 +# +4728# +DEX +9 +# +4729# +DEX +10 +# +4730# +AGI +1 +# +4731# +AGI +2 +# +4732# +AGI +3 +# +4733# +AGI +4 +# +4734# +AGI +5 +# +4735# +AGI +6 +# +4736# +AGI +7 +# +4737# +AGI +8 +# +4738# +AGI +9 +# +4739# +AGI +10 +# +4740# +VIT +1 +# +4741# +VIT +2 +# +4742# +VIT +3 +# +4743# +VIT +4 +# +4744# +VIT +5 +# +4745# +VIT +6 +# +4746# +VIT +7 +# +4747# +VIT +8 +# +4748# +VIT +9 +# +4749# +VIT +10 +# +4750# +LUK +1 +# +4751# +LUK +2 +# +4752# +LUK +3 +# +4753# +LUK +4 +# +4754# +LUK +5 +# +4755# +LUK +6 +# +4756# +LUK +7 +# +4757# +LUK +8 +# +4758# +LUK +9 +# +4759# +LUK +10 +# +4760# +MATK +1% +-------------------------- +Decreases Fixed Casting Time by 1%. +# +4761# +MATK +2% +-------------------------- +Decreases Fixed Casting Time by 1%. +# +4762# +FLEE +6 +# +4763# +FLEE +12 +# +4764# +Critical +5. +# +4765# +Critical +7. +# +4766# +ATK +2% +# +4767# +ATK +3% +# +4768# +STR +1 +# +4769# +STR +2 +# +4770# +STR +3 +# +4771# +INT +1 +# +4772# +INT +2 +# +4773# +INT +3 +# +4774# +VIT +1 +# +4775# +VIT +2 +# +4776# +VIT +3 +# +4777# +AGI +1 +# +4778# +AGI +2 +# +4779# +AGI +3 +# +4780# +DEX +1 +# +4781# +DEX +2 +# +4782# +DEX +3 +# +4783# +LUK +1 +# +4784# +LUK +2 +# +4785# +LUK +3 +# +4786# +MDEF +2 +# +4787# +MDEF +4 +# +4788# +MDEF +6 +# +4789# +MDEF +8 +# +4790# +MDEF +10 +# +4791# +DEF +3 +# +4792# +DEF +6 +# +4793# +DEF +9 +# +4794# +DEF +12 +# +4795# +MaxHP +100 +# +4796# +MaxHP +200 +# +4797# +MaxHP +300 +# +4798# +MaxHP +400 +# +4799# +MaxHP +500 +# +4800# +MaxSP +50 +# +4801# +MaxSP +100 +# +4802# +MaxSP +150 +# +4803# +Decreases cooldown time for Highness Heal by 3 seconds. +# +4804# +Decreases SP Consumption of Coluseo Heal by 30. +# +4805# +Increases Healing skills effectiveness by 3%. +# +4806# +MATK +3% +-------------------------- +Decreases Fixed Casting Time by 1%. +# +4807# +ASPD +1 +# +4808# +ATK +15 +HIT +5 +# +4809# +ATK +12 +HIT +4 +# +4810# +ATK +9 +HIT +3 +# +4811# +ATK +6 +HIT +2 +# +4812# +MATK +15 +-------------------------- +Decreases Variable Casting Time by 10%. +# +4813# +MATK +12 +-------------------------- +Decreases Variable Casting Time by 8%. +# +4814# +MATK +9 +-------------------------- +Decreases Variable Casting Time by 6%. +# +4815# +MATK +6 +-------------------------- +Decreases Variable Casting Time by 3%. +# +4816# +Critical +12 +HIT +4 +# +4817# +Critical +9 +HIT +3 +# +4818# +Critical +6 +HIT +2 +# +4819# +ATK +1% +# +4820# +ATK +18 +HIT +5 +# +4821# +ATK +21 +HIT +5 +# +4822# +ATK +24 +HIT +5 +# +4823# +ATK +27 +HIT +5 +# +4824# +ATK +30 +HIT +5 +# +4825# +ATK +50 +HIT +15 +# +4826# +MATK +18 +-------------------------- +Decreases Variable Casting Time by 10%. +# +4827# +MATK +21 +-------------------------- +Decreases Variable Casting Time by 10%. +# +4828# +MATK +24 +-------------------------- +Decreases Variable Casting Time by 10%. +# +4829# +MATK +27 +-------------------------- +Decreases Variable Casting Time by 10%. +# +4830# +MATK +30 +-------------------------- +Decreases Variable Casting Time by 10%. +# +4831# +MATK +50 +-------------------------- +Decreases Variable Casting Time by 20%. +# +4832# +Increases Ranged Physical Damage by 2%. +# +4833# +Increases Ranged Physical Damage by 4%. +# +4834# +Increases Ranged Physical Damage by 6%. +# +4835# +Increases Ranged Physical Damage by 8%. +# +4836# +Increases Ranged Physical Damage by 10%. +# +4837# +Increases Ranged Physical Damage by 12%. +# +4838# +Increases Ranged Physical Damage by 14%. +# +4839# +Increases Ranged Physical Damage by 16%. +# +4840# +Increases Ranged Physical Damage by 18%. +# +4841# +Increases Ranged Physical Damage by 20%. +-------------------------- +ASPD +1 +# +4842# +ASPD +2 +# +4843# +Critical +14 +HIT +5 +# +4844# +Critical +15 +HIT +6 +# +4845# +There is no special power. Just ordinary stone +# +4846# +Used to be a normal stone until it is filled with love. +-------------------------- +ATK +10, MATK +10. +# +4847# +Used to be a normal stone until it is filled with evil spirit. +-------------------------- +ATK +10, MATK +10. +# +4848# +Decreases damage taken from Neutral elemental attacks by 5%. +# +4849# +Decreases damage taken from Demi-Human race by 5%. +# +4850# +Increases Healing skills effectiveness by 6%. +Increases SP Consumption by 5%. +# +4851# +Increases Healing skills effectiveness by 12%. +Increases SP Consumption by 10%. +# +4852# +Increases Healing skills effectiveness by 20%. +Increases SP Consumption by 15%. +# +4853# +STR +1 +-------------------------- +Refine Level +8: +STR +3 +-------------------------- +Refine Level +9: +ATK +1%. +-------------------------- +Refine Level +12: +Increases Attack Speed (Decreases After Attack Delay by 1%). +Decreases Fixed Casting Time by 7%. +# +4854# +AGI +1 +-------------------------- +Refine Level +8: +AGI +3 +-------------------------- +Refine Level +9: +ATK +1%. +-------------------------- +Refine Level +12: +Increases Attack Speed (Decreases After Attack Delay by 1%). +Decreases Fixed Casting Time by 7%. +# +4855# +VIT +1 +-------------------------- +Refine Level +8: +VIT +3 +-------------------------- +Refine Level +9: +MaxSP +1% +-------------------------- +Refine Level +12: +Increases Attack Speed (Decreases After Attack Delay by 1%). +Decreases Fixed Casting Time by 7%. +# +4856# +INT +1 +-------------------------- +Refine Level +8: +INT +3 +-------------------------- +Refine Level +9: +MATK +1% +-------------------------- +Refine Level +12: +Increases Attack Speed (Decreases After Attack Delay by 1%). +Decreases Fixed Casting Time by 7%. +# +4857# +DEX +1 +-------------------------- +Refine Level +8: +DEX +3 +-------------------------- +Refine Level +9: +MATK +1% +-------------------------- +Refine Level +12: +Increases Attack Speed (Decreases After Attack Delay by 1%). +Decreases Fixed Casting Time by 7%. +# +4858# +LUK +1 +-------------------------- +Refine Level +8: +LUK +3 +-------------------------- +Refine Level +9: +MaxHP +1% +-------------------------- +Refine Level +12: +Increases Attack Speed (Decreases After Attack Delay by 1%). +Decreases Fixed Casting Time by 7%. +# +4859# +FLEE +1 +# +4860# +FLEE +3 +# +4861# +MaxHP +1% +# +4862# +MaxHP +2% +# +4863# +Increases Critical Damage by 4%. +-------------------------- +Critical +1 +# +4864# +Increases Critical Damage by 6%. +-------------------------- +Critical +2. +# +4865# +Increases Critical Damage by 8%. +-------------------------- +Critical +3. +# +4866# +Increases Critical Damage by 10%. +-------------------------- +Critical +4. +# +4867# +MaxHP +3% +# +4868# +MaxHP +4% +# +4869# +Increases Attack Speed (Decreases After Attack Delay by 4%). +# +4870# +MaxSP +25 +# +4871# +MaxSP +75 +# +4872# +Increases Attack Speed (Decreases After Attack Delay by 6%). +# +4873# +Increases Attack Speed (Decreases After Attack Delay by 8%). +# +4874# +Vivid verdant jewel signifying the spring. +Taken in the spring breeze blowing gently coming and that means georige mutter the words of unknown origin. +# +4875# +There is a chance to receive a Str buff of 99 units for a duration of 5 seconds when receive physical attacks. However, during the buff duration, the user will lose 250 HP per second. +When unequipped, drains 300 SP. +# +4876# +There is a chance to receive 99 int for a duration of 10 seconds when using magic attacks, but during the effect, you will lose 100 SP per second. +When unequipped, drains 2000 SP. +# +4877# +There is a chance to receive Aspd +100% and Perfect Dodge +50 for a duration of 5 seconds when performing physical attacks. During this effect, the user will lose 200 HP and 20 SP per second. +When unequipped, drains 300 SP. +# +4878# +There is a chance to receive 500 Defense for a duration of 5 seconds when receiving physical damage, but during this effect, the user's Atk and Matk will be reduced by 50%. +When unequipped, drains 300 SP. +# +4879# +There is a chance to receive a Dex buff of 99 units for a duration of 5 seconds when performing physical attacks. However, during the buff duration, the user will lose 50 SP per second. +When unequipped, drains 300 SP. +# +4880# +There is a chance to receive a Luk buff of 99 units for a duration of 5 seconds when performing physical attacks or receiving physical and magical damage. Additionally, there is a chance to receive a Treasure Box upon defeating monsters. +When unequipped, drains 300 SP. +# +4881# +Increases Attack Speed (Decreases After Attack Delay by 10%). +# +4882# +ATK +1% +# +4883# +MATK +1% +# +4884# +HIT +1 +# +4885# +MATK +5 +-------------------------- +Decreases Variable Casting Time by 3% +# +4886# +MATK +10 +-------------------------- +Decreases Variable Casting Time by 3% +# +4887# +MATK +15 +-------------------------- +Decreases Variable Casting Time by 3% +# +4888# +MATK +20 +-------------------------- +Decreases Variable Casting Time by 3% +# +4889# +MATK +30 +-------------------------- +Decreases Variable Casting Time by 3% +# +4890# +MDEF +1 +# +4891# +MDEF +3 +# +4892# +MDEF +5 +# +4893# +DEF +15 +# +4894# +ATK +4% +# +4895# +ATK +5% +# +4896# +MATK +2% +# +4897# +MATK +3% +# +4898# +MATK +4% +# +4899# +MATK +5% +# +4900# +MaxHP +5% +# +4901# +MDEF +7 +# +4902# +DEF +18 +# +4903# +DEF +21 +# +4904# +ATK +6% +# +4905# +ATK +7% +# +4906# +MATK +6% +# +4907# +MATK +7% +# +4908# +An essence of Satan Morocc. Contains part of demon's power. +-------------------------- +STR +1 +ATK +3 +INT -1 +-------------------------- +Note: This is a special enchant items and therefore not within the card's slot. +Compound on: All slots +Weight: 1 +# +4909# +An essence of Satan Morocc. Contains part of demon's power. +-------------------------- +STR +2 +ATK +6 +INT -2 +-------------------------- +Note: This is a special enchant items and therefore not within the card's slot. +Compound on: All slots +Weight: 1 +# +4910# +An essence of Satan Morocc. Contains part of demon's power. +-------------------------- +STR +4 +ATK +12 +INT -4 +-------------------------- +Note: This is a special enchant items and therefore not within the card's slot. +Compound on: All slots +Weight: 1 +# +4911# +An essence of Satan Morocc. Contains part of demon's power. +-------------------------- +INT +1 +MATK +3 +STR -1 +-------------------------- +Note: This is a special enchant items and therefore not within the card's slot. +Compound on: All slots +Weight: 1 +# +4912# +An essence of Satan Morocc. Contains part of demon's power. +-------------------------- +INT +2 +MATK +6 +STR -2 +-------------------------- +Note: This is a special enchant items and therefore not within the card's slot. +Compound on: All slots +Weight: 1 +# +4913# +An essence of Satan Morocc. Contains part of demon's power. +-------------------------- +INT +4 +MATK +12 +STR -4 +-------------------------- +Note: This is a special enchant items and therefore not within the card's slot. +Compound on: All slots +Weight: 1 +# +4914# +An essence of Satan Morocc. Contains part of demon's power. +-------------------------- +AGI +1 +FLEE +2 +VIT -1 +-------------------------- +Note: This is a special enchant items and therefore not within the card's slot. +Compound on: All slots +Weight: 1 +# +4915# +An essence of Satan Morocc. Contains part of demon's power. +-------------------------- +AGI +2 +FLEE +4 +VIT -2 +-------------------------- +Note: This is a special enchant items and therefore not within the card's slot. +Compound on: All slots +Weight: 1 +# +4916# +An essence of Satan Morocc. Contains part of demon's power. +-------------------------- +AGI +4 +FLEE +8 +VIT -4 +-------------------------- +Note: This is a special enchant items and therefore not within the card's slot. +Compound on: All slots +Weight: 1 +# +4917# +An essence of Satan Morocc. Contains part of demon's power. +-------------------------- +VIT +1 +DEF +3 +MDEF +2 +AGI -1 +-------------------------- +Note: This is a special enchant items and therefore not within the card's slot. +Compound on: All slots +Weight: 1 +# +4918# +An essence of Satan Morocc. Contains part of demon's power. +-------------------------- +VIT +2 +DEF +6 +MDEF +4 +AGI -2 +-------------------------- +Note: This is a special enchant items and therefore not within the card's slot. +Compound on: All slots +Weight: 1 +# +4919# +An essence of Satan Morocc. Contains part of demon's power. +-------------------------- +VIT +4 +DEF +12 +MDEF +8 +AGI -4 +-------------------------- +Note: This is a special enchant items and therefore not within the card's slot. +Compound on: All slots +Weight: 1 +# +4920# +An essence of Satan Morocc. Contains part of demon's power. +-------------------------- +DEX +1 +HIT +2 +LUK -1 +-------------------------- +Note: This is a special enchant items and therefore not within the card's slot. +Compound on: All slots +Weight: 1 +# +4921# +An essence of Satan Morocc. Contains part of demon's power. +-------------------------- +DEX +2 +HIT +4 +LUK -2 +-------------------------- +Note: This is a special enchant items and therefore not within the card's slot. +Compound on: All slots +Weight: 1 +# +4922# +An essence of Satan Morocc. Contains part of demon's power. +-------------------------- +DEX +4 +HIT +8 +LUK -4 +-------------------------- +Note: This is a special enchant items and therefore not within the card's slot. +Compound on: All slots +Weight: 1 +# +4923# +An essence of Satan Morocc. Contains part of demon's power. +-------------------------- +LUK +1 +Critical +1 +DEX -1 +-------------------------- +Note: This is a special enchant items and therefore not within the card's slot. +Compound on: All slots +Weight: 1 +# +4924# +An essence of Satan Morocc. Contains part of demon's power. +-------------------------- +LUK +2 +Critical +2 +DEX -2 +-------------------------- +Note: This is a special enchant items and therefore not within the card's slot. +Compound on: All slots +Weight: 1 +# +4925# +An essence of Satan Morocc. Contains part of demon's power. +-------------------------- +LUK +4 +Critical +4 +DEX -4 +-------------------------- +Note: This is a special enchant items and therefore not within the card's slot. +Compound on: All slots +Weight: 1 +# +4926# +Critical +1 +# +4927# +MaxHP +50 +# +4928# +MaxSP +10 +# +4929# +MaxSP +1% +# +4930# +Increases recovery amount gained from Restorative items by 2%. +# +4931# +Restores 10 HP every 10 seconds. +# +4932# +Restores SP by 1 when defeating monster. +# +4933# +Decreases damage taken from Neutral elemental attacks by 1%. +# +4934# +Decreases damage taken from Neutral elemental attacks by 2%. +# +4935# +Decreases damage taken from Neutral elemental attacks by 3%. +# +4936# +Increases Physical Damage against enemies of Large size by 1%. +# +4937# +Increases Physical Damage against enemies of Medium size by 1%. +# +4938# +Increases Physical Damage against enemies of Small size by 1%. +# +4939# +Critical +2. +# +4940# +Critical +4. +# +4941# +Critical +6. +# +4942# +Perfect Dodge +3 +# +4943# +Perfect Dodge +4 +# +4944# +Perfect Dodge +5 +# +4945# +Decreases SP Consumption by 2% +# +4946# +Decreases SP Consumption by 4% +# +4947# +Decreases SP Consumption by 6% +# +4948# +Decreases After Skill Delay by 2%. +# +4949# +Decreases After Skill Delay by 4%. +# +4950# +Decreases After Skill Delay by 6%. +# +4951# +Increases Physical Damage against enemies of Shadow elemental by 2%. +Increases Magical Damage with Shadow element by 2%. +Decreases damage taken from Shadow elemental attacks by 1%. +# +4952# +Increases Physical Damage against enemies of Fire elemental by 2%. +Increases Magical Damage with Fire element by 2%. +Decreases damage taken from Fire elemental attacks by 1%. +# +4953# +Increases Physical Damage against enemies of Water elemental by 2%. +Increases Magical Damage with Water element by 2%. +Decreases damage taken from Water elemental attacks by 1%. +# +4954# +Increases Physical Damage against enemies of Earth elemental by 2%. +Increases Magical Damage with Earth element by 2%. +Decreases damage taken from Earth elemental attacks by 1%. +# +4955# +Increases Physical Damage against enemies of Holy elemental monsters by 2%. +Increases Magical Damage with Holy element by 2%. +Decreases damage taken from Holy elemental attacks by 1%. +# +4956# +Increases Healing skills effectiveness by 2%. +Increases recovery amount gained from Healing skills and Restorative items by 2%. +# +4957# +MaxHP +832 +# +4958# +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Nidhogur and Loki Hat: +Refine Level of Nidhogur and Loki Hat is +7 or higher: +Decreases After Skill Delay by additional 1%. + +Refine Level of Nidhogur and Loki Hat is +9 or higher: +Decreases After Skill Delay by additional 1%. +# +4959# +Increases Ranged Physical Damage by 1% +-------------------------- +When equipped with Nidhogur and Loki Hat: +Refine Level of Nidhogur and Loki Hat is +7 or higher: +Increases Ranged Physical Damage by additional 2%. + +Refine Level of Nidhogur and Loki Hat is +9 or higher: +Increases Ranged Physical Damage by additional 1%. +# +4960# +Decreases SP Consumption by 2% +-------------------------- +When equipped with Nidhogur and Loki Hat: +Refine Level of Nidhogur and Loki Hat is +7 or higher: +Decreases SP Consumption by additional 2%. + +Refine Level of Nidhogur and Loki Hat is +9 or higher: +Decreases SP Consumption by additional 1%. +# +4961# +MATK +10 +-------------------------- +When equipped with Nidhogur and Loki Hat: +Refine Level of Nidhogur and Loki Hat is +7 or higher: +MATK +10 + +Refine Level of Nidhogur and Loki Hat is +9 or higher: +MATK +10 +# +4962# +ATK +3 +-------------------------- +When equipped with Nidhogur and Loki Hat: +Refine Level of Nidhogur and Loki Hat is +7 or higher: +ATK +2 + +Refine Level of Nidhogur and Loki Hat is +9 or higher: +ATK +5 +# +4963# +ATK +4 +HIT +1 +-------------------------- +When equipped with Nidhogur and Loki Hat: +Refine Level of Nidhogur and Loki Hat is +7 or higher: +ATK +4 +HIT +3 + +Refine Level of Nidhogur and Loki Hat is +9 or higher: +ATK +2 +HIT +1 +# +4964# +MATK +3% +-------------------------- +When equipped with Nidhogur and Loki Hat: +Refine Level of Nidhogur and Loki Hat is +7 or higher: +MATK +1% + +Refine Level of Nidhogur and Loki Hat is +9 or higher: +MATK +1% +# +4965# +Decreases Variable Casting Time by 2% +-------------------------- +When equipped with Nidhogur and Loki Hat: +Refine Level of Nidhogur and Loki Hat is +7 or higher: +Decreases Variable Casting Time by additional 1%. + +Refine Level of Nidhogur and Loki Hat is +9 or higher: +Decreases Variable Casting Time by additional 1%. +# +4966# +ATK +1% +-------------------------- +When equipped with Nidhogur and Loki Hat: +Refine Level of Nidhogur and Loki Hat is +7 or higher: +ATK +1% + +Refine Level of Nidhogur and Loki Hat is +9 or higher: +ATK +1% +# +4967# +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +When equipped with Nidhogur and Loki Hat: +Refine Level of Nidhogur and Loki Hat is +7 or higher: +Increases Attack Speed (Decreases After Attack Delay by additional 1%). + +Refine Level of Nidhogur and Loki Hat is +9 or higher: +Increases Attack Speed (Decreases After Attack Delay by additional 1%). +# +4968# +Increases Healing skills effectiveness by 1% +-------------------------- +When equipped with Nidhogur and Loki Hat: +Refine Level of Nidhogur and Loki Hat is +7 or higher: +Increases Healing skills effectiveness by additional 2%. + +Refine Level of Nidhogur and Loki Hat is +9 or higher: +Increases Healing skills effectiveness by additional 2%. +# +4969# +Increases recovery amount gained from Healing skills and Restorative items by 1%. +-------------------------- +When equipped with Nidhogur and Loki Hat: +Refine Level of Nidhogur and Loki Hat is +7 or higher: +Increases recovery amount gained from Healing skills and Restorative items by 1%. + +Refine Level of Nidhogur and Loki Hat is +9 or higher: +Increases recovery amount gained from Healing skills and Restorative items by additional 1%. +# +4970# +Enchants compounded Armor with Fire elemental. +# +4971# +Enchants compounded Armor with Water elemental. +# +4972# +Enchants compounded Armor with Earth elemental. +# +4973# +Enchants compounded Armor with Wind elemental. +# +4974# +Decreases damage taken from Fire elemental attacks by 25%. +Increases damage taken from Water elemental attacks by 25%. +# +4975# +Decreases damage taken from Water elemental attacks by 25%. +Increases damage taken from Wind elemental attacks by 25%. +# +4976# +Decreases damage taken from Earth elemental attacks by 25%. +Increases damage taken from Fire elemental attacks by 25%. +# +4977# +Decreases damage taken from Wind elemental attacks by 25%. +Increases damage taken from Earth elemental attacks by 25%. +# +4978# +Restores 50 HP every 5 seconds. +-------------------------- +Refine Level +7: +Restores 50 HP every 5 seconds. +# +4979# +Restores 3 SP every 5 seconds. +-------------------------- +Refine Level +7: +Restores 2 SP every 5 seconds. +# +4980# +Increases HP Recovery Rate by 50%. +-------------------------- +Refine Level +7: +Increases HP Recovery Rate by 50%. +# +4981# +Increases SP Recovery Rate by 50%. +-------------------------- +Refine Level +7: +Increases SP Recovery Rate by 50%. +# +4982# +For each 10 base STR: +ATK +5 +-------------------------- +Refine Level +7: +ATK +10 +# +4983# +For each 10 base INT: +MATK +5 +-------------------------- +Refine Level +7: +MATK +10 +# +4984# +DEF +100 +# +4985# +Perfect Dodge +3 +# +4986# +ATK +20 +# +4987# +MATK +20 +# +4988# +MaxHP +5% +# +4989# +MaxSP +3% +# +4990# +Prevents Frozen status. +# +4991# +ASPD +1 +# +4992# +1% chance to absorb 1% physical damage into HP. +# +4993# +1% chance to absorb 1% physical damage into SP. +# +4994# +Refine Level +7: +STR +5 +-------------------------- +Refine Level +10: +ATK +5% +# +4995# +Refine Level +7: +STR +6 +-------------------------- +Refine Level +11: +STR +1 +ATK +7% +# +4996# +Refine Level +7: +STR +7 +-------------------------- +Refine Level +12: +STR +1 +ATK +8% +-------------------------- +Refine Level +13: +STR +1 +ATK +2% +# +4997# +Refine Level +7: +AGI +5 +-------------------------- +Refine Level +10: +Perfect Dodge +5 +# +4998# +Refine Level +7: +AGI +6 +-------------------------- +Refine Level +11: +AGI +1 +Perfect Dodge +7 +# +4999# +Refine Level +7: +AGI +7 +-------------------------- +Refine Level +12: +AGI +1 +Perfect Dodge +5 +-------------------------- +Refine Level +13: +AGI +1 +Perfect Dodge +5 +# +5001# +A strange device that was invented by an old craftsman, but has just recently been completed by his grandson. +-------------------------- +Increases resistance against Curse status by 10%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5002# +This crown, adorned with precious gems, is generally worn by monarchs as a symbol of their rule. +-------------------------- +INT +2 +LUK +1 +MDEF +3 +-------------------------- +Type: Headgear +Defense: 9 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +Swordsman, Merchant and Thief Classes +# +5003# +A comical hat worn by clowns and jesters that is rumored to protect its wearer from magic. +-------------------------- +LUK +2 +MDEF +5 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5004# +Ideal for situations is poisonous or polluted, this mask supplies pure oxygen to its wearer. +-------------------------- +Increases resistance against Poison status by 20%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5005# +A special mask that filters out poisons from the air. +-------------------------- +Increases resistance against Poison by 30%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5006# +70's tough guy style sunglasses that give its wearer a manly swagger. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5007# +An exquisitely made circlet, typically worn by rulers or gentry. +-------------------------- +STR +1 +INT +1 +LUK +1 +MDEF +4 +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 55 +All Jobs except Novice +# +5008# +A wreath of wildflowers made by a woman in love. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5009# +A durable safety helmet created to offer some protection from accidents. +-------------------------- +MDEF +3 +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5010# +A traditional headdress worn by native peoples. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5011# +A mysterious object, possibly a device, that was discovered in the depths of the ocean. +Nobody knows what it is. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5012# +A ceremonial hat worn during one's graduation. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5013# +A special headgear created specifically for Lord Kaho... Whoever he is. +-------------------------- +STR +5 +INT +5 +VIT +10 +AGI +10 +LUK +20 +MDEF +10 +-------------------------- +Type: Headgear +Defense: 30 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5014# +Helment accessories that look just like fins. +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 65 +Swordman classes +# +5015# +A peculiar hat that makes it wearer look freshly hatched. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5016# +A black cap that is usually worn by boys attending schools that require uniforms. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5017# +An incredibly heavy, yet almost impenetrable helmet constructed of bone. +-------------------------- +Increases damage taken from Shadow elemental attacks by 15%. +-------------------------- +Type: Headgear +Defense: 15 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Swordsman and Merchant +# +5018# +A fabulous, feathered hat that turns men into womanizers and women into manizers. +-------------------------- +AGI +1 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Archer +# +5019# +A flamboyant hat worn only by the strongest of pirates. +-------------------------- +VIT +1 +-------------------------- +Type: Headgear +Defense: 11 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5020# +The most recognizable piece of the standard Kafra Employee uniform. +-------------------------- +MDEF +3 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5021# +Head Gear telling the sad story of an unfortunate merchant who have lost everything. +It will make its wearer sad and in a down mood. +However, it will also increase the wearer urge to find more treasure. +-------------------------- +INT +1 +DEX +1 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 38 +Merchant +# +5022# +Hat that is attached with the great wings with the emblem of sun. +Don't ask or wonder how its wearer could walk or move in this hat. +-------------------------- +STR +3 +INT +2 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper, Middle +Weight: 240 +Armor Level: 1 +-------------------------- +Requirement: +2nd Classes +# +5023# +A large piece of cloth, usually polka dotted, that is wrapped around goods which are then carried on the head. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Merchant +# +5024# +A birthday cake replica that won't fit a Dancer inside, but it's almost just as much fun to wear it on top of your head. Almost. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5025# +Wondrous headgear of high defense made of feathers from the wings of angels and constructed by a unknown craftsman. +-------------------------- +AGI +1 +LUK +1 +MDEF +3 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 160 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 74 +2nd Classes +# +5026# +A hat designed to cool a chef's head in a hot kitchen. +-------------------------- +DEX +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +All Jobs except Novice +# +5027# +A stylish formal hat that talented magicians usually wear during a show. +-------------------------- +INT +2 +MaxSP +150 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Magician and Soul Linker classes +# +5028# +A large, slightly used candlestick that can be worn on the head by via a strap attachment. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: None +# +5029# +A headgear made in the form of a Spore's head. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +5030# +A cute and cuddly headgear made in the form of a Panda's head. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +All Jobs except Novice +# +5031# +Safety helmet where a headlight is attached on the forehead, for seeing things in the dark. +It possesses strong durability, which bears most of impact. +-------------------------- +DEX +2 +-------------------------- +Type: Headgear +Defense: 9 +Position: Upper +Weight: 150 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 55 +Swordsman, Acolyte, Merchant and Thief +# +5032# +Fashionable hat with a wide brim,which is very efficient to block strong sunrays. +You might get in trouble with this hat during the rainy days. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5033# +A hat created in the form of Smokie the Raccoon Monster. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +All Jobs except Novice +# +5034# +A hair band with a light bulb attached to it. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5035# +A hat created in the form of the Poring monster. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 38 +All Jobs except Novice +# +5036# +A hairband with a cross mounted on top. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +All Jobs except Novice +# +5037# +A hat made out of half of a fruit. Although it's solid and provides excellent defense, it is very delicate. +Therefore it is may easily break when trying to Refine this item. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 15 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 5 +# +5038# +A hat created in the form of the Deviruchi monster. +-------------------------- +STR +1 +INT +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 64 +All Jobs except Novice +# +5039# +A mysteriously colorful egg shell. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 19 +# +5040# +Two red dots that can be worn on the face to give a blushing impression. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5041# +A cute hairpin with a heart attached to it. Makes its wearer look adorable and charming. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5042# +Well-known item which has been rumored to have been worn by a great woman warrior in ancient times. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 14 +All Jobs except Novice +# +5043# +A mask rumored to have been worn by a romantic hero with an unknown fate. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +5044# +Widely stretched wings. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 35 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +# +5045# +A hat worn by magicians. Rabbits are usually pulled out of this hat. Pretty stout, it won't be destroyed easily. +-------------------------- +DEX +1 +AGI +1 +MaxSP +50 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Magician, Acolyte and Soul Linker +# +5046# +A hat worn by Bongun the monster. For some reason, there's an amulet which has been torn in half. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle, Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5047# +A pair of fashionable sunglasses. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5048# +A hairpin in the shape of a crescent. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5049# +A striped hair band which is good for preventing hair from covering the eyes. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 15 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5050# +A hat made of mysterious fruit. Quite tough for a fruit. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5051# +A bell which can be used as a necklace and makes a clear sound when it rings. +It makes its wearer look harmless and adorable. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +... +# +5052# +A blue colored hair band worn with a rakish slant. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: None +# +5053# +A traditional Egyptian head piece that symbolizes the Egyptian gods. +-------------------------- +STR +2 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Lower +Weight: 300 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 65 +Swordman classes +# +5054# +An exclusive mask for assassins. Covers most of the face. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +Assassin and Priest +# +5055# +An exclusive helmet for new adventurers. +-------------------------- +Type: Headgear +Defense: 6 +Weight: 0.1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Novice +# +5056# +Hairpin with three red berries attached which symbolize the self, family and neighbor. +The stem uniting the three berries together symbolizes society. +This hairpin appears to represent cooperation and trust of humankind. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5057# +A hairband with tiny little black ears attached. It's a copy of the hairband of Wickebine in Morocc. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +# +5058# +A cute kitty doll which can be worn on top of the head. +-------------------------- +MDEF +15 +-------------------------- +Increases resistance against Curse status by 30%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5059# +A hat made to look like a teddy bear's face. It makes a nice present. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5060# +A festive hat for celebrations and any kind of party. +-------------------------- +LUK +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5061# +A hairpin with a red flower attached. It helps hold hair in place. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5062# +A hat knitted together with straw. +-------------------------- +AGI +1 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5063# +A hair accessory which looks just like two bandages. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5064# +A leaf which rumored to be worn by the Smokie monster for transformations. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5065# +A headgear which looks just like a scrumptious fish. It even has the same smell! +-------------------------- +Increases Physical Damage against enemies of Fish race by 10%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5066# +A headgear which resembles the horns of Succubus. +-------------------------- +INT +1 +MDEF +10 +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +All Jobs except Novice +# +5067# +A traditional Mexican hat with a wide, round brim. +-------------------------- +AGI +1 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 35 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5068# +An ear accessory made with Evil Wing. +-------------------------- +STR +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +5069# +A mask rumored to have been worn by certain assassins in order to hide themselves. +-------------------------- +AGI +1 +LUK +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5070# +A headgear which symbolizes hot-blooded challenge and battle vigor. +-------------------------- +STR +2 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5071# +A tribal headgear adorned with a long, white feather. +-------------------------- +DEX +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5072# +A headgear which resembles the horns of Incubus. +-------------------------- +AGI +1 +MDEF +10 +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +All Jobs except Novice +# +5073# +A headgear made of a book topped with an apple. Wear it to learn glamourous posture. +-------------------------- +DEX +2 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5074# +An ear accessory that looks just like white, beautiful angel wings. +-------------------------- +STR +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +5075# +A cowboy hat. It makes men look manlier and is cute when worn by women. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5076# +A knit beanie that protects from the cold. Makes some wearers look cute and gives other wearers street cred. +-------------------------- +LUK +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 35 +Armor Level: 1 +-------------------------- +Requirement: None +# +5077# +A tiny little hairpin shaped like a tulip. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5078# +A hat which looks like the face of a sea-otter. +-------------------------- +VIT +1 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5079# +A hair accessory that looks like an \ +. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5080# +A hair ornament worn by ancient queens. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +# +5081# +A crown which is made after the one worn by Mistress. +-------------------------- +INT +2 +MaxSP +100 +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 75 +All Jobs except Novice +# +5082# +A headgear which you can obtain by chance when you put your head for a prolonged period of time in a dark, damp place. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5083# +A big red ribbon made in the style of the one worn by a legendary female shaman who loved nature. +-------------------------- +MDEF +10 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +# +5084# +A headgear made to look like an annoyed Smokie exhausted by the summer heat. +-------------------------- +Increases resistance against Sleep status by 20%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5085# +A pair of small red ribbons which can be used to decorate the hair of little girls. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +# +5086# +A mask which resembles the face of an Alarm monster. +-------------------------- +Increases resistance against Blind status by 50%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5087# +A mask with a blank expression on it. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5088# +A mask with a surprised expression on it. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5089# +A mask with an annoyed expression on it. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5090# +A mask worn by the Goblin leader. It looks so ferocious, it's ridiculous. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5091# +A hair accessory which is made after Sohee's golden bell. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 35 +All Jobs except Novice +# +5092# +A tight-fitting cap worn under a veil, usually worn by nuns. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +Priest and Assassin +# +5093# +A tight-fitting cap worn under a veil, usually worn by nuns. +-------------------------- +MaxSP +100 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +Priest and Assassin +# +5094# +A headgear bestowed only to true Orc Heroes. +-------------------------- +STR +2 +VIT +1 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 55 +All Jobs except Novice +# +5095# +A headgear bestowed only to true Orc Heroes. +-------------------------- +STR +2 +VIT +1 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5096# +An exclusive mask for assassins. Covers most of the face. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +Assassin and Priest +# +5097# +A festive party hat for celebrating the Holiday Season. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +5098# +A mask rumored to make its wearer ferociously aggressive. +-------------------------- +STR +3 +MaxHP +100 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +5099# +A cute cat-looking hat which enhances its wearer's look. +Has a cat tail which emphasises the appearance. +-------------------------- +LUK +2 +MDEF +10 +-------------------------- +Decreases damage taken from Brute race by 5%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: None +# +5100# +A banner which has a word \ + written on the surface. +Seems to be useful when used for opening a vending shop. +-------------------------- +STR +1 +AGI +1 +LUK +1 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 75 +# +5101# +A Commemorative blindfold named after the most famous of Sages; Takius from the Ragnarok Anime. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5102# +A special item that makes its wearer look absent-minded. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5103# +A hairpin adorned with a sunflower. +-------------------------- +AGI +2 +Critical +5 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 60 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +All Jobs except Novice +# +5104# +A blinder enchanted with dark magic. +-------------------------- +Prevents Blind status. +-------------------------- +Increases resistance against Stun status by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5105# +A birthday cake replica that won't fit a Dancer inside, but it's almost just as much fun to wear it on top of your head. Almost. +-------------------------- +DEX +1 +MaxSP +80 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 24 +# +5106# +A Gravity anniversary hat. +-------------------------- +ATK +10 +MATK +10 +MDEF +10 +-------------------------- +Decreases damage taken from Water elemental attacks by 10%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5107# +A noble headgear created in the proud image of crunchy toast. +Wearing it makes you feel just like a part of a balanced breakfast. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5108# +This type of cap is known to have been worn by a world famous detective. +It feels like a Pipe would perfectly complement this cap for some reason. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 35 +Armor Level: 1 +-------------------------- +Requirement: None +# +5109# +A bonnet favored by women of nobility. +Wearing it supposedly causes inexplicable cravings for tea, but that might just be an aristocratic thing. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +5110# +A hat that looks just like a pacifier. +Wearing it really brings you back to the good old days of hanging in the crib. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5111# +A cute looking cap that makes its wearer look just like Galapago the penguin and the rim, which looks like a beak, actually blocks UV rays. +-------------------------- +Random chance a defeated monster will drop Anodyne. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 55 +# +5112# +A hat that happens to match the Super Novice costume... absolutely perfect. +-------------------------- +All Stats +1 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +Novice +# +5113# +A headgear that finally allows its wearer into express inner rage or slight disgust. +Breathe new life into your Bunny and Kitty Band by looking like an angry kitty. Or bunny. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5114# +A trendy hat whose design is based on the old style hats that used to be worn by men enlisted in the military. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5115# +A furry hat that is an all time favorite during the winter season. +-------------------------- +Increases resistance against Frozen status by 10%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5116# +A hat made in the image of a banana peel, the key ingredient for the most basic practical joke since time immemorial. +Just looking at it causes a primal reaction of pure rage. +-------------------------- +Random chance to auto-cast Level 3 Provoke on the target when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5117# +A hat that looks just like a white rose which enhances the beauty of its wearer. +-------------------------- +Decreases damage taken from Plant race by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5118# +A cute headband that looks just like a pair of adorable puppy ears. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5119# +A hat that happens to match the Super Novice costume... absolutely perfect. +-------------------------- +All Stats +1 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +Novice +# +5120# +A trendy hat whose design is based on the old style hats that used to be worn by men enlisted in the military. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5121# +This mask, which is symbolic of Zealotus, mistress of the Glast Heim Underground Prison. +Makes its wearer feel like looking down on normal human peons. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 5%. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper, Middle +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +All Jobs except Novice +# +5122# +Once owned by Magni, son of Thor, the wearer of this cap is supposedly granted a measure of Magni's awesome might. +-------------------------- +STR +2 +-------------------------- +Type: Headgear +Defense: 9 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +All Jobs except Novice +# +5123# +A woolen hunting cap once worn by Ulle, god of hunting. +Just wearing it makes you feel like you can hunt down any beast. +-------------------------- +DEX +2 +AGI +1 +-------------------------- +When equipped with Odin's Blessing: +Base DEX at least 70: +Decreases SP Consumption by 10%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +All Jobs except Novice +# +5124# +A circlet blessed by Freya, mother of Baldur. +-------------------------- +INT +2 +MDEF +10 +MaxSP +50 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +All Jobs except Novice +# +5125# +A hair ornament that was kissed by the Super Novice's Guardian Angel. +-------------------------- +Increases SP Recovery Rate by 3%. +-------------------------- +When equipped with Angelic Protection, Angelic Cardigan, Angel's Reincarnation and Angelic Guard: +MaxHP +900 +MaxSP +100 +Random chance to auto-cast Level 1 Assumptio when receiving physical attacks. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Novice +# +5126# +A bandana that is one of the three keys to the seal which binds Morpheus. +-------------------------- +INT +2 +-------------------------- +When equipped with Morpheus's Shawl, Morpheus's Ring and Morpheus's Bracelet: +INT +5 +MDEF +11 +MaxSP +20% +Protects from skill cast interruption. +Increases Variable Casting Time of all skills by 25%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 33 +All Jobs except Novice +# +5127# +A helm that was once owned by Morrigan, the goddess of war. +-------------------------- +LUK +2 +ATK +3 +-------------------------- +When equipped with Morrigan's Manteau, Morrigan's Pendant and Morrigan's Belt: +STR +2 +LUK +9 +ATK +18 +Critical +13 +Perfect Dodge +13 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 61 +All Jobs except Novice +# +5128# +One of the few armors that was forged by Goibne the blacksmith. +It is said that the gods valued his armors more than the weapons he had forged. +-------------------------- +VIT +3 +MDEF +3 +-------------------------- +When equipped with Goibne's Spaulders, Goibne's Greaves and Goibne's Armor: +VIT +5 +MaxHP +15% +MaxSP +5% +DEF +5 +MDEF +15 +Decreases damage taken from Water, Wind, Earth and Fire elemental attacks by 10%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 54 +All Jobs except Novice +# +5129# +A mysterious bird's nest that makes the wearer feel like flying. +-------------------------- +AGI +2 +-------------------------- +Decreases damage taken from Brute race by 10%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 55 +# +5130# +Head of a fierce animal that lives deep in forests +Enemies tremble and become speechless when encountering this beast. +-------------------------- +MDEF +1 +-------------------------- +Random chance to inflict Silence status on the target when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 5 +2nd classes +# +5131# +An iron mask that covers the whole face. By covering the whole face, it can protect the wearer from critical attacks. It helps to improve defense. +-------------------------- +VIT +3 +MaxHP +3% +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper, Middle, Lower +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 75 +Swordman classes +# +5132# +A hat, made especially to look like a certain monster that looks like an angel, but it hates the whole human race. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 70 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 38 +# +5133# +A hat that looks like a sheep's head that is so adorable, an enemy might change his mind about attacking. +-------------------------- +Reflects 5% physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 15 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Acolyte +# +5134# +Wearing this item gives you the urge to shameslessly bounce around and cackle like a Jakk. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5135# +A unique eye protector that seems to increase the wearer's Spiritual energy. +-------------------------- +MaxSP +50 +-------------------------- +Type: Headgear +Defense: 0 +Location: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 75 +# +5136# +A hat that Antonio used to wear. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5137# +A hat adorned with an Alice doll. When worn, it seems like Alice is cheering you on from the top of your head. +\ + +-------------------------- +STR +1 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 10%. +-------------------------- +Random chance to inflict Sleep status on wearer when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5138# +A hat that looks like the eyes of a dark Magician, which are rumored to blink sometimes. +-------------------------- +MDEF +5 +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Increases SP Consumption by 20%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +Magician and Soul Linker classes +# +5139# +A flower said to be as beautiful as a fairy in a far east country and usually used as a medicinal herb. +-------------------------- +DEX +1 +INT +1 +MDEF +5 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5140# +A pretty red ribbon decorated with a pink heart in the middle. +-------------------------- +Decreases damage taken from Undead elemental and Demon race monsters by 5%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5141# +A Marionette doll that gives you strange chills when you wear it on your head. +-------------------------- +STR +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +All Jobs except Novice +# +5142# +A sturdy, decorative hat worn by military generals in a far east country. +-------------------------- +VIT +1 +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Type: Headgear +Defense: 20 +Position: Upper, Middle +Weight: 300 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Swordsman and Merchant +# +5143# +A traditional hat that is mainly worn in plays performed in a far east country. +-------------------------- +Increases resistance against Silence status by 30%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle, Lower +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +All Jobs except Novice +# +5144# +It seems like a Hat but specially redesigned for the gamblers. +-------------------------- +LUK +5 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5145# +A hat especially designed for Carnival festival. +-------------------------- +All Stats +3 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5146# +An animal which represent Thailand. Although it is big, it is warm and kind. +This animal can use its nose to suck water and sprinkle it on wide area. +-------------------------- +VIT +1 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5147# +Cap worn to keep the sun from your eyes. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5148# +A hat made for a national holiday of some western nation. +-------------------------- +INT +2 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5149# +A head decoration made out of shiny silver with a star in the center. +-------------------------- +INT +2 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5150# +A hat made specially to commemorate an event. +Produced in the color of the national flag. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5151# +A cool looking set of headphones that have earmuffs designed to resemble music notes. +-------------------------- +MDEF +3 +-------------------------- +Increases resistance against Stun and Frozen statuses by 10%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper, Middle +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5152# +A heavy-looking hat which is decorated with blue and silver gems. It looks suitable for splendid events like weddings. +-------------------------- +INT +1 +MDEF +2 +-------------------------- +Increases resistance against Stun status by 10%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle +Weight: 200 +# +5153# +A headgear inspire from Angelring. You body will feel lighter when you put in on. +-------------------------- +FLEE +5 +-------------------------- +When equipped with Angel's Dress: +LUK +6 +INT +2 +FLEE +5 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: None +# +5154# +Fashionable yet strict-looking sunglasses which is usually worn by the Metaboli players. +-------------------------- +Type: Headgear +Defense: 4 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5155# +A fake white colored moustache, symbol of experience and well aged sophistication. +-------------------------- +ATK +20 +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5156# +Mask used by father. Should be very useful when one catches a cold +-------------------------- +MATK +1% +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5157# +A surprisingly durable helmet that was crafted by expert Orcish smiths. +-------------------------- +Type: Headgear +Defense: 9 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +# +5158# +A flat hat worn by priests and monks that is comfortable and protective. +-------------------------- +MDEF +3 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Acolyte +# +5159# +A gaudy helmet forged from pure gold that effectively provides more defense for a really, really high price. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 9 +Position: Upper +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +All Jobs except Novice +# +5160# +A helmet that has been fashioned to give its wearer the appearance of having mighty goat horns. It's a helm that evokes power! +-------------------------- +STR +1 +-------------------------- +Type: Headgear +Defense: 9 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman and Merchant Classes; +Taekwon Boy/Girl and Star Gladiator +# +5161# +A headband with two dangerously fashionable spikes that somehow make it much stronger than more durable looking helms. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Swordsman, Acolyte, Merchant and Thief classes, Taekwon Boy/Girl and Star Gladiator +# +5162# +An incredibly heavy helmet, constructed of solid bone, that makes it nearly impenetrable. +-------------------------- +Increases damage taken from Shadow elemental attacks by 15%. +-------------------------- +Type: Headgear +Defense: 15 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Swordsman and Merchant +# +5163# +A flamboyant hat worn only by the strongest pirates. +-------------------------- +VIT +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5164# +A jeweled coronet that is said to grant its wearer the wisdom of a queen that had once worn it. +-------------------------- +INT +1 +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +All Jobs except Novice +# +5165# +A jeweled crown that is said to grant the wisdom of a sagacious, ancient king that had once worn it. +-------------------------- +INT +1 +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +All Jobs except Novice +# +5166# +A traditional Egyptian headgear that pays homage to the Egyptian gods. +-------------------------- +STR +2 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Lower +Weight: 300 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 65 +Swordman classes +# +5167# +An exact replica of Munak's turban, complete with queue and talisman. +-------------------------- +Decreases damage taken from Undead race by 10%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle, Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5168# +A hat worn by Bongun the monster, but for some reason, its amulet has been torn in half. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle, Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5169# +A white mask with red blush that is worn by the actor playing the bride in a Korean play. +-------------------------- +When equipped by Taekwon classes: +LUK +2 +Critical +5 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper, Middle +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +5170# +A fancy, feathered cap made of smooth, sky blue material. +-------------------------- +MDEF +1 +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5171# +An ornate, winged helmet worn by the warrior maidens that serve Odin. +-------------------------- +MDEF +5 +-------------------------- +When equipped with Valkyrie Armor, Valkyrie Manteau and Valkyrie Shoes: +All Stats +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +All Transcendent classes except Novice +# +5172# +A bright green, flattened cap that represents bravery. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 70 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5173# +A hat that was once worn by Satto, an official from an ancient eastern land. +-------------------------- +When equipped by Taekwon: +AGI +1 +Increases HP Recovery Rate by 3%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5174# +A red, silken hat that is supposed to be worn by women, but men can wear it too. +-------------------------- +When equipped by Taekwon: +INT +1 +Increases SP Recovery Rate by 3%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5175# +It's basically a black mosiac to place over your eyes to totallyprotect your identity. +Careful though, it doesn't mask your voice. +-------------------------- +MDEF +1 +HIT -5 +-------------------------- +Increases resistance against Curse status by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5176# +A traditional oriental mask that is always perpetualy smiling. +-------------------------- +When equipped by Taekwon: +LUK +1 +Perfect Dodge +2 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5177# +An oriental lion mask with menacing, angry eyes. +-------------------------- +When equipped by Taekwon: +DEX +2 +Increases ATK by 2*Refine Level. +Random chance to inflict Stun status on the enemy with each Physical Melee Attack. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +5178# +A candle used for praying after donating to the temple. +You can feel an aura of the temple holiness on it. +-------------------------- +All Stats +1 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: None +# +5179# +A tiara that has shimmering gold color. A big star in the middle of tiara is impressive. +-------------------------- +INT +2 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5180# +A hat that is tailor-made for the independence day of a western country. +-------------------------- +VIT +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5181# +A forboding helmet that hides part of the face. People wearing this have the appearance of Beelzebub. +-------------------------- +STR +2 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper, Middle +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Swordsman, Merchant and Thief classes +# +5182# +A small brown-colored dog that sits atop your head. It's so cute you'd be barking mad to remove it. +-------------------------- +AGI +1 +-------------------------- +Random chance to auto-cast Level 1 Gloria when dealing physical damage. +Base AGI at least 77: +It will cast Level 3 Gloria instead. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5183# +A bird's nest with a newly hatched baby bird. It takes certain responsibility to keep the baby bird. +-------------------------- +DEX +1 +AGI +1 +-------------------------- +Adds 10% tolerance to Stun. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5184# +Once owned by a famous captain, this hat is now a symbol of leadership and courage. +-------------------------- +Decreases damage taken from Water elemental attacks by 5%. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +All Jobs except Novice +# +5185# +A wreath made with bright blue Leaves and Flowers to make you feel Fresh and rejuvenated. +-------------------------- +LUK +3 +-------------------------- +Increases resistance against Stun and Blind statuses by 5%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5186# +A Geographer which is made for decorative purposes as a headgear. +-------------------------- +INT +1 +-------------------------- +Random chance to auto-cast Level 1 Heal on wearer when receiving melee physical attacks. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5187# +A red ribbon with a white flower. It makes girls prettier. +-------------------------- +MaxSP +30 +MDEF +3 +-------------------------- +Decreases 20% of all physical damage for 2 seconds with low chance when receiving physical damage. +However, MDEF decreased 20% for 2 seconds. +-------------------------- +Decreases 20% of all magical damage for 2 seconds with low chance when receiving magical attack. +However, DEF decreased 20% for 2 seconds. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5188# +It is a pleasant hat with a wide brim that a famous bard used to create a lot of shade. +-------------------------- +INT +1 +DEX +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5189# +Looks like leaves falling in autumn. +You feel something like a brisk autumn breeze when you use it. +-------------------------- +MaxHP +40 +MaxSP +40 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5190# +Indonesian independence celebration. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Armor Level: 1 +-------------------------- +Requirement: None +# +5191# +A long piece of black satin tied together into a neat little ribbon that wards off harmful magic. +-------------------------- +INT +1 +MDEF +3 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5192# +A long piece of yellow satin tied together into a neat little ribbon that wards off harmful magic. +-------------------------- +MDEF +3 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5193# +A long piece of green satin tied together into a neat little ribbon that wards off harmful magic. +-------------------------- +MDEF +3 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5194# +A long piece of pink satin tied together into a neat little ribbon that wards off harmful magic. +-------------------------- +MDEF +3 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5195# +A long piece of red satin tied together into a neat little ribbon that wards off harmful magic. +-------------------------- +MDEF +3 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5196# +A long piece of orange satin tied together into a neat little ribbon that wards off harmful magic. +-------------------------- +MDEF +3 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5197# +A long piece of white cloth satin together into a neat little ribbon that wards off harmful magic. +-------------------------- +MDEF +3 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5198# +A cute bunny doll which can be worn on top of the head. +-------------------------- +DEX +1 +FLEE +2 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5199# +India independence celebration hat. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5200# +Marco's favorite hat. Andrea has written the words His memories to you ... on the inside of the hat. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5201# +Ragnarok event hat cones. +-------------------------- +All Stats +3 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5202# +A special pumpkin hat infused with Halloween Jack's spirit that fills its wearer with excitement. +-------------------------- +Decreases damage taken from Demon race monsters by 5%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5203# +A mask with mischievous expressions, suitable to be worn by kids. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle, Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5204# +A brightly shining deer's nose that resembles Rudolph's. +-------------------------- +Increases resistance against Blind status by 30%. +-------------------------- +Random chance a defeated monster will drop Cookie Bag. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5205# +An honorable Laurel Wreath that was given to a winner by an emperor of some country in ancient days. +-------------------------- +All Stats +1 +MDEF +3 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: None +# +5206# +A cute and romantic white flower that is fashionable and functional at the same time. +-------------------------- +Decreases damage taken from Plant race by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5207# +A dazzling beautiful golden ring which is blessed by an angel. It is given to a great believer. +-------------------------- +LUK +1 +-------------------------- +Add 5% tolerance against attack of Holy property +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5208# +A hat designed to mimic the look of a terrible magic book which attacks people. +-------------------------- +Random chance to absorb 8% physical damage inflicted into HP. +-------------------------- +Random chance to absorb 4% physical damage inflicted into SP. +-------------------------- +Drains 10 HP every 5 seconds while equipped. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +All Jobs except Novice +# +5209# +A yellow baseball cap worn to keep the sun from your eyes. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5210# +A headgear that looks like flapping angel +wings. It makes you feel might lighter +when you wear it, though it also makes you feel pretty dizzy. +-------------------------- +INT +1 +AGI +1 +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Decreases Variable Casting Time by 3%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5211# +A tiny and cute hat that can decorate a part of the head. +This hat, along with a pretty dress, makes the wearer want to go on a picnic. +-------------------------- +STR +1 +INT +1 +MDEF +7 +MATK +2% +ATK +2% +-------------------------- +Increases Healing skills effectiveness by 5%. +-------------------------- +Refine Level +7: +MATK +1% +ATK +1%. +Increases Healing skills effectiveness by 1%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +5212# +It seems like one can receive the signal from another planet when you are wearing it. However, it's just merely a feel. The vision of wearer seems to be wider with it. +-------------------------- +MaxHP +50 +MaxSP +10 +-------------------------- +Enables the use of Level 1 Ruwach. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5213# +A fluffy black bunny headband +-------------------------- +AGI +2 +MDEF +3 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5214# +A hat inspired by the adorable Moonlight Flower. Be sure to hand-wash to prolong the soft Nine Tail Fur lining. +-------------------------- +DEX +2 +-------------------------- +Random chance to auto-cast Level 1 Increase Agility when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper, Middle +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5215# +A beautiful winged shape hat made of a circlet which is glued with the feathers of angels. +The soft touch of the feathers makes one's action swift and agile without knowing it. +-------------------------- +DEX +1 +INT +1 +MDEF +3 +-------------------------- +Decreases damage taken from Demon race monsters by 3%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5216# +Headgear made according to the wings on the demon's back. +It is said that when you wear it, you will feel yourself getting stronger. +-------------------------- +STR +1 +AGI +1 +FLEE +3 +-------------------------- +Decreases damage taken from Demon race monsters by 3%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5217# +A headgear that looks like the horns of goat. +It can capture a lot of attentions when you wears it. Has certain religious meaning. +-------------------------- +STR +2 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Merchant, Taekwon Boy/Girl and Star Gladiator +# +5218# +A hair accessory made according to the shape of bunny's ears. +The headgear seems inproportionate but it looks extremely active. +-------------------------- +INT +2 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5219# +A doll made to be carried around on your head. +It's just your illusion if you ever hear a cat meowing or feel the cat moving on top of your head. +-------------------------- +MDEF +18 +FLEE +3 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5220# +Just say no, especially if you're underage. +-------------------------- +VIT +1 +-------------------------- +Decreases damage taken from Brute race by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Novices +can't smoke, but as +for everyone else... +# +5221# +A pair of small red hairbands that makes girls look really cute when they wear them. +-------------------------- +FLEE +5 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +# +5222# +A headgear that looks just like a scrumptious fish. It even has the same smell! +-------------------------- +AGI +1 +DEX +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5223# +A cute hair accessory inspired by the giant golden bells worn by Sohee. +-------------------------- +AGI +2 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 35 +All Jobs except Novice +# +5224# +A headgear that is only bestowed to true Orc Heroes, the most valiant warriors of the Orc Clan. +-------------------------- +STR +2 +VIT +1 +MaxHP +10% +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 55 +All Jobs except Novice +# +5225# +A blessed hat, you will hear a holy sonance when you equip it. +Because of the celestial benison, an angel will appear whenever you are under attack. +-------------------------- +MDEF +2 +-------------------------- +Increases resistance against Stun status by 10%. +-------------------------- +Random chance to auto-cast Level 5 Angelus or Level 1 Assumptio on wearer when receiving physical damage. +-------------------------- +When equipped by Acolyte or Priest classes: +Random chance to auto-cast Level 1 Lex Aeterna on the target when using Heal skill on the target. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5226# +This hat makes the wearer feel as if he is floating on air. +-------------------------- +AGI +2 +DEX +1 +FLEE +10 +-------------------------- +For each Refine Level: +Decreases Variable Casting Time by 1%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5227# +A cute hat shaped ike a Deviruchi that brings happiness to its wearer and onlookers. +-------------------------- +STR +1 +INT +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 64 +All Jobs except Novice +# +5228# +A cute hat shaped ike a Deviruchi that brings happiness to its wearer and onlookers. +-------------------------- +STR +1 +INT +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 64 +All Jobs except Novice +# +5229# +A cute hat shaped ike a Deviruchi that brings happiness to its wearer and onlookers. +-------------------------- +STR +1 +INT +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 64 +All Jobs except Novice +# +5230# +A cat doll that you can carry on your head. If you think you hear it meow or feel it move, it's just an illusion. +-------------------------- +MDEF +15 +-------------------------- +Increases resistance against Curse status by 30%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5231# +A cat doll that you can carry on your head. If you think you hear it meow or feel it move, it's just an illusion. +-------------------------- +MDEF +15 +-------------------------- +Increases resistance against Curse status by 30%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5232# +A cat doll that you can carry on your head. If you think you hear it meow or feel it move, it's just an illusion. +-------------------------- +MDEF +15 +-------------------------- +Increases resistance against Curse status by 30%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5233# +A cat doll that you can carry on your head. If you think you hear it meow or feel it move, it's just an illusion. +-------------------------- +MDEF +15 +-------------------------- +Increases resistance against Curse status by 30%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5234# +A cat doll that you can carry on your head. If you think you hear it meow or feel it move, it's just an illusion. +-------------------------- +MDEF +15 +-------------------------- +Increases resistance against Curse status by 30%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5235# +An unidentified object look like eye.It comes from space and can give out light. +-------------------------- +LUK +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 35 +Armor Level: 1 +-------------------------- +Requirement: None +# +5236# +A hat woven out of yarn that keeps the head warm, but is mostly worn because of its fashionable look. +-------------------------- +LUK +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 35 +Armor Level: 1 +-------------------------- +Requirement: None +# +5237# +A hat woven out of yarn that keeps the head warm, but is mostly worn because of its fashionable look. +-------------------------- +LUK +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 35 +Armor Level: 1 +-------------------------- +Requirement: None +# +5238# +A crude looking hat that lends a look of cheerfulness and agility, and is coveted by most skilled magic users. +-------------------------- +INT +2 +MaxSP +150 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Magician and Soul Linker classes +# +5239# +A crude looking hat that lends a look of cheerfulness and agility and is coveted by most skilled magic users. +-------------------------- +INT +2 +MaxSP +150 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Magician and Soul Linker classes +# +5240# +A crude looking hat that lends a look of cheerfulness and agility and is coveted by most skilled magic users. +-------------------------- +INT +2 +MaxSP +150 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Magician and Soul Linker classes +# +5241# +A crude looking hat that lends a look of cheerfulness and agility and is coveted by most skilled magic users. +-------------------------- +INT +2 +MaxSP +150 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Magician and Soul Linker classes +# +5242# +A crude looking hat that lends a look of cheerfulness and agility and is coveted by most skilled magic users. +-------------------------- +INT +2 +MaxSP +150 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Magician and Soul Linker classes +# +5243# +A hat made from animal fur. They keep your ears warm in the bitter cold of winter. +-------------------------- +Increases resistance against Frozen status by 10%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +# +5244# +An elven blindfold. +-------------------------- +Prevents Blind status. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5245# +Even elves are very cool creatures. So naturally they wear sunglasses. +-------------------------- +Increases resistance against Blind status by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5246# +AGI +1 +LUK +1 +MDEF +3 +Decreases damage taken from Demon race monsters by 3%. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: None +# +5247# +AGI +1 +LUK +1 +MDEF +3 +Decreases damage taken from Demon race monsters by 3%. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: None +# +5248# +Prevents Blind status. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5249# +Prevents Blind status. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5250# +A robot's ears... no further description yet. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5251# +A human blindfold... no further description yet. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5252# +A hat made to resemble the monster, Nine tails. proud of its great heat-retainablity. +-------------------------- +AGI +1 +DEX +1 +-------------------------- +Random chance to auto-cast Level 1 Gloria when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +5253# +A hat of a drooping Lif Doll. It was made by by a hatter who could not obtain a real Lif of her own. +-------------------------- +INT +1 +-------------------------- +DEF decreases based on the Refine Level. +-------------------------- +MDEF increases based on the Refine Level. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +5254# +A hat made to resemble a little dead devilring which has charming side-spreaded eyes. +-------------------------- +MATK +2% +ATK +2% +-------------------------- +Increases experience gained from defeating monsters by 2%. +-------------------------- +Refine Level +7: +Increases experience gained from defeating monsters by 1%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +5255# +A hat which seems to stack a few of the most popular monster, Poring. +Are they Angelring at the bottom, Masterling in the middle, Poring at the top? +-------------------------- +LUK +3 +-------------------------- +Random chance to auto-cast Level 1 Greed when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 60 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +5256# +A hairband utilizing a Feather from a Valkyrie Angel. +-------------------------- +INT +1 +-------------------------- +Random chance to auto-cast Level 1 Heal on wearer when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +5257# +A halo and a pair of wings that are floating above a head. The item makes the wearer into look like a spirit that is walking on the earth. +-------------------------- +MDEF +2 +-------------------------- +Random chance to auto-cast Level 1 Assumptio on wearer when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +5258# +A fluffy afro-style wig. Wearing it makes you want to party like it's 1999. +-------------------------- +Random chance to auto-cast Level 1 First Aid on wearer when receiving physical damage. +-------------------------- +Decreases damage taken from Neutral elemental attacks by 1%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper, Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5259# +A hat made in the form of a big animal found in one oriental country. +Although it is very big,this animal is innocent and kind. It suck in and sprikle water by using its nose. +-------------------------- +VIT +1 +-------------------------- +Random chance to auto-cast Level 3 Water Ball when dealing physical damage. +-------------------------- +Enables the use of Level 1 Aqua Benedicta. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5260# +A Hat worn by Cookie Xmas, \ +. It covers the ears to protect from cold weather. +-------------------------- +AGI +1 +Perfect Dodge +5 +-------------------------- +Increases Critical Damage by 5%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5261# +A head decoration made out of shiny silver with a star in the center. +-------------------------- +INT +2 +-------------------------- +When equipped by Mage classes: +Increases MATK bonus according to the wearer's job Level. +-------------------------- +When equipped by Acolyte classes: +Decreases SP Consumption according to the wearer's job Level. +-------------------------- +When equipped by Archer classes: +Increases MaxSP according to the wearer's job Level. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5262# +A gold headgear with star in the middle gorgeously glittering its color. +-------------------------- +STR +2 +-------------------------- +If worn by Swordman, Merchant or Thief classes and the character's base DEX is lower than 55, DEX bonus increases according to the wearer's job Level. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5263# +A headgear which is made of many kinds of property rings. It looks very luxurious and charming. +-------------------------- +Decreases damage taken from Water, Wind and Fire elemental attacks by 1%. +-------------------------- +Random chance to inflict Curse status on the target when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper, Middle, Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +5264# +A spirit of Australia. +-------------------------- +All Stats +2 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5265# +Rental Item +A headgear made in honor of the legendary archer known for shooting an apple perched on a friend's head from a great distance. +-------------------------- +DEX +4 +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5266# +Rental Item +A hairband that gives one the appearance of having rabbit ears, a lasting symbol of extremely good luck. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 13 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5267# +Rental Item +A rustic hat knit from rough reeds and bamboos that shields against the rain and the glare of the sun. +Saurabi, the ancient Korean warrior, was known to wear one of these. +-------------------------- +AGI +3 +-------------------------- +Type: Headgear +Defense: 14 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5268# +Rental Item +An exquisitely made circlet, typically worn by rulers or gentry. +-------------------------- +STR +3 +INT +3 +LUK +3 +MDEF +4 +-------------------------- +Type: Headgear +Defense: 14 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5269# +A beautiful headgear that looks just like the wings of an angel in flight. Wearing it makes your spirits feel lighter. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Decreases Variable Casting Time by 3%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5270# +A headgear made from leaves fallen from an enchanted tree. +-------------------------- +Perfect Dodge +5 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5271# +A heavy looking hat with blue and silver jewery decorations. It will match with magnificent events. +-------------------------- +MDEF +3 +-------------------------- +Decreases damage taken from Boss monster depend on Refine Level. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper, Middle +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5272# +A mask with child's clownish face on it. +A chance of auto casting level 5 Provoke when attacking physically. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle, Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5273# +Wig with green, white and red colors. +-------------------------- +DEF +4 +-------------------------- +Enables the use of Level 1 Hiding. +-------------------------- +Increases movement speed. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper, Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5274# +Wig with yellow, orange and gold colors. +-------------------------- +DEF +4 +-------------------------- +Enables the use of Level 1 Hiding. +-------------------------- +Increases movement speed. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper, Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5275# +Wig with pink, white and purple colors. +-------------------------- +DEF +4 +-------------------------- +Enables the use of Level 1 Hiding. +-------------------------- +Increases movement speed. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper, Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5276# +Wig with red, white and black colors. +-------------------------- +DEF +4 +-------------------------- +Enables the use of Level 1 Hiding. +-------------------------- +Increases movement speed. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper, Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5277# +A piece of yellow cloth that has droplets of blood, rumored to be from the shirts of the protesters who were at the Bloodless Revolution. +-------------------------- +VIT +2 +LUK +2 +-------------------------- +Decreases damage taken from Ranged Physical Damage by 10%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +5278# +It's a piece of ribbon that hangs to one side when worn that was created out of old Flags that was torn by bullets. +-------------------------- +VIT +2 +LUK +2 +-------------------------- +Decreases damage taken from Ranged Physical Damage by 10%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +5279# +Rental Item +A cute kitty doll which can be worn on top of the head. +-------------------------- +MDEF +15 +-------------------------- +Increases resistance against Curse status by 30%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5280# +Rental Item +A headgear made from the horns of Baphomet. +-------------------------- +STR +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Merchant, Taekwon Boy/Girl and Star Gladiator +# +5281# +Rental Item +A hat created in the form of the Deviruchi monster. +-------------------------- +STR +1, INT +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5282# +A cap worn to keep the sun from your eyes and focus your sight. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5283# +A hat adorned with a cute chick that brings feelings of joy to those that see it hopping. +-------------------------- +CRIT +3 +-------------------------- +If upgrade level is +5 or higher: +Enables to use Double Attack Lv.1 +-------------------------- +If upgrade level is +7 or higher: +Enables to use Double Attack Lv.2 +-------------------------- +ATK +10 +MaxHP +100 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +Tier: 5 +-------------------------- +Requirement: +Base Level 1 +# +5284# +A headpiece made to resemble a water lily, lends a sense of quiet and stability to the wearer. +-------------------------- +DEX +1 +AGI +1 +MDEF +3 +-------------------------- +If upgrade level is +5 or higher, +Increases HP Recovery Rate by 5%. +Increases SP Recovery Rate by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: +Base Level 1 +# +5285# +A hairpin that looks like a spinning windmill, but it doesn't generate any power, though. +-------------------------- +AGI +2 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5286# +A hairband with PecoPeco wings that lends you a PecoPeco's speed. +-------------------------- +Increases ASPD 5%. +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Increases movement speed. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5287# +A hat that's perfect for vacationing and shields the wearer's face from UV rays. +-------------------------- +VIT +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5288# +Must-have item for the pretty. Can make users 3 times more beautiful. +-------------------------- +INT +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5289# +A cold, soft hat that is shaped like a Vanilmirth. +-------------------------- +MDEF +5 +-------------------------- +Random chance to auto-cast Level 1 Bolt magics when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5290# +A cute rabbit doll that can be worn on the head. +-------------------------- +DEX +1 +FLEE +2 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5291# +A sturdy pot worn on the head that overflows with water if shaken. +-------------------------- +Random chance to auto-cast Level 2 Deluge or Level 3 Waterball with each attack. +-------------------------- +Type: Headgear +Defense: 8 +Location: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5292# +A helmet made from a dragon's skull that provides protection against dragons. +-------------------------- +Decreases damage taken from Dragon race by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5293# +Delicious noodles worn on the head that can be eaten when food is especially scarce. +There's nothing like a good bowl of ramen. +-------------------------- +DEX +4 +-------------------------- +Random chance to auto-cast Level 1 Decreases AGI on attacker when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5294# +A mask shaped like a Whisper that feels like its always massaging your face so it might be good for your skin. +-------------------------- +AGI +3 +-------------------------- +Increases damage taken from Ghost elemental attacks by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper, Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5295# +A special Bandana made of a pure gold mixture. According to legend you will gain magical strength whilst wearing this. +-------------------------- +MDEF +4 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper, Middle +Weight: 240 +# +5296# +A hat made to resemble the monster, Nine tails. proud of its great heat-retainablity. +-------------------------- +AGI +1 +Critical +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5297# +The mysterious wing which is floating above the head. +-------------------------- +All Stats +1 +-------------------------- +Restores SP by 2 per 10 seconds. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5298# +A fluffy afro style wig which is something teenagers go crazy for. Once you wear it, you might want to dance. +-------------------------- +Increases damage taken from Water and Fire elemental attacks by 5%. +-------------------------- +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper, Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5299# +A helm made and mixed from various types of rings. +-------------------------- +Random chance to auto-cast Level 1 Scream when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper, Middle, Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5300# +Fighter hat of legend that was decorated with an emerald. Only the truly brave can wear it. +-------------------------- +MaxHP +100 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +# +5301# +A Ribbon made specially for Day of Victory. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5302# +A hat made from a Brasilis Water Lily flower. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5303# +Wreath, assembled during the day of summer solstice. It protects owner from the evil forces. +-------------------------- +MDEF +5 +MaxSP +50 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5304# +Cap of Blindness +-------------------------- +Increase tolerance to Blind Status by 10%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle, Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +None +# +5305# +A small silver knife that is held between your teeth to allow free use of your hands. +-------------------------- +ATK +5 +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5306# +Rental Item +Crown of Goddess Freya. Transparent crystal in the middle shines in various colors. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +When equipped with Freya Boots, Freya Overcoat and Freya Cape: +MaxHP +20% +Prevents Frozen status. +Decreases damage taken from Demi-Human race by 10%. +Enables the use of Level 10 Frost Nova. +-------------------------- +Type: Headgear +Defense: 20 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5307# +A hat made with tropical fruits. It looks delicious. +-------------------------- +Decreases damage taken from Fire elemental attacks by 5%. +-------------------------- +Refine Level +7: +ATK +15 +MATK +15 +Decreases damage taken from Fire elemental attacks by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +5308# +Brazilia independence celebration hat. +-------------------------- +Increases movement speed. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5309# +A mohawk mask made based on Mohican hair style. +-------------------------- +Enables the use of Level 1 Graffiti. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper, Middle, Lower +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5310# +A hairband decorated with small lamp. Makes wearer feels safe when in darkness. +-------------------------- +Decreases damage taken from Shadow elemental attacks by 10%. +-------------------------- +Enables the use of Level 1 Sight. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5311# +A large hibiscus flower decoration. These flowers can only be seen in Ayothaya. +-------------------------- +MDEF +15 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5312# +An ancient helmet of the Ayothaya warriors, said to be wearable only by the bravest of heroes. +-------------------------- +STR +2 +Increases Physical Damage against enemies of Demi-Human race by 5%. +-------------------------- +If upgrade is +7 or higher, +ATK +10 +Increases Physical Damage against enemies of Demi-Human race by 5%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 20 +Armor Level: 1 +Tier: 5 +-------------------------- +Requirement: +Base Level 1 +All Jobs +# +5313# +A crown decorate with jewel of love. Rumor who wear it will meet real love. +-------------------------- +INT +1 +MATK +3% +-------------------------- +Decreases Variable Casting Time by 3%. +-------------------------- +Increases recovery amount gained from Healing skills and Restorative items by 3%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper, Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5314# +This mask calls the urge to hold a weapon in one's hand and hurt people on the 13th of every month. +-------------------------- +Increases damage on Demihuman monsters by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +All Jobs +# +5315# +A device that can measure opponent's power. Commoners have power Level 5. Heroes have a power Level over 9,000! +-------------------------- +Enables the use of Level 1 Sense. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 35 +All Jobs except Novice +# +5316# +A fancy umbrella that doesn't need a hand and is very handy during monsoon. It prevents you getting wet and also gives you a festival mood. +-------------------------- +Decreases damage taken from Water elemental attacks by 3%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5317# +This sturdy and fireproof light yellow hat is fisherman's favorite. It protects your head from passing rain or sunlight. +-------------------------- +Random chance to auto-cast Level 3 Waterball on the target when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5318# +A little party Poring to take anywhere, put it on your head and dance, sing, drink! +But with moderation, because once laid down, this poring can laugh at you. +-------------------------- +FLEE +6 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 70 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5319# +A very soft textured hat which was inspired from Arch Angeling. +-------------------------- +Mdef +3 +-------------------------- +Increase 5% of the damage inflicted to Angel type monsters. +-------------------------- +Increase 5% of the tolerance to Angel type monsters. +-------------------------- +When hunting Angel type monsters, can drop Box of Sunlight in a certain probability. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5320# +A very special prize that is given to the Champion of Champions. +-------------------------- +All Stats +2 +-------------------------- +Random chance to auto-cast Level 1 Heal on wearer when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5321# +A special bandana that shows the courage of Indonesian patriots. +-------------------------- +Random chance a defeated monster will drop Honey. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5322# +Wonderful Kerchief for that loved. +-------------------------- +FLEE +5 +MDEF +2 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 24 +# +5323# +The adventurers who are brave the item which is provided from the hazard adventurer guild. +-------------------------- +All Stats +2 +-------------------------- +Type: Headgear +Defense: 14 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5324# +This Angelic protector will call down holy wrath on those attacking you. +-------------------------- +DEX +3 +-------------------------- +Random chance to auto-cast Level 3 Grand Cross when receiving physical damage. +-------------------------- +Position: Upper +Defense: 4 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5325# +A weird item that spreads a strange-shaped beam around the eyes. It seems to have been made in outer space. +-------------------------- +ATK +2% +MATK +2% +DEX +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5326# +Rental Item +A black leather mask, shaped like butterfly wings. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 7%. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All excepts Novice +# +5327# +Rental Item +A headgear bestowed only to true Orc Heroes. +-------------------------- +STR +5, VIT +3 +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper, Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5328# +Rental Item +As an ear accessory is made of black wings, feels proud of grace and charisma from devil. Wearer feels like get mystery power through the wing. +-------------------------- +STR +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5329# +Rental Item +The mystical Blindfold for those warriors that can see all. +-------------------------- +Prevents Blind status. +-------------------------- +Increases resistance against Stun by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5330# +Rental Item +A cute kitty doll which can be worn on top of the head. +-------------------------- +MDEF +15 +-------------------------- +Increases resistance against Curse status by 40%. +-------------------------- +Increases resistance against Stun status by 10%. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Headgear +Defense: 9 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5331# +Rental Item +A big hat is used to captain of pirate. To honor for captain made as huge so it's look like a pirate ship. But, it's too old. +-------------------------- +VIT +3 +INT +3 +-------------------------- +Type: Headgear +Defense: 14 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5332# +A mask that imbued with the sweet whispers of Loki. +-------------------------- +Perfect Dodge +3 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle, Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +5333# +A hat designed to transmit electric waves. Sometimes it receives electric waves from external worlds. +-------------------------- +FLEE +5 +Critical +5 +MDEF +5 +-------------------------- +Enables the use of Level 1 Lightning Bolt. +-------------------------- +Random chance to auto-cast Level 5 Thunder Storm when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 150 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5334# +A hat mimicking an Angelring flapping its feeble wings because it wants to fly. +-------------------------- +LUK +2 +MDEF +2 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 70 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5335# +A Poring hat that feels like hopping on top of your head. It brings fortune to the wearer. +-------------------------- +LUK +1 +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5336# +A helm with Guild Member wanted ad on it. Recruit friends and strangers alike. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5337# +A helm with a Party Member wanted ad on it. Your next party member could be your newest friend. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5338# +A helm with a battle field ad on it. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5339# +A helm with a friend wanted ad on it. Never go lonely again with this advertisement. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5340# +So hot! A headgear with the figure of Kafra Defolty! Numerous users are using Kafra storage more than 20 times a day, fascinated by her smiling face. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Random chance to auto-cast Level 10 Angelus when wearer attacked by melee physical attacks. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 60 +# +5341# +So hot! A headgear with the figure of Kafra Glaris! Fascinated by her mature appearance, her advocates call her a teacher. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Recovers 50 HP when a monster is killed by magical attack. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 60 +# +5342# +So hot! A headgear with the figure of Kafra Sorin! Her cute appearance made the price of this hat rise at the auction place. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Random chance to increase ATK by 50 for 10 seconds when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 60 +# +5343# +So hot! A headgear with the figure of Kafra Telling! She is such an active and hard-working lady. So she became the most favorite Kafra among users. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases recovery amount gained from White Potion and White Slim Potion by 10%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 60 +# +5344# +So hot! A headgear with the figure of Kafra Bennit! She has a boyish look, but her hobby is knitting and reading romance novels. She is fully supported by male users who like the short-cut style. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%) for 30 seconds with low chance when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 60 +# +5345# +So hot! A headgear with the figure of Kafra W! There is a rumor that an assassin association wants to scout her, because there are so many guys who become frightened and faint when she calls them. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases Physical Damage against enemies of Undead race by 5%. +-------------------------- +Increases Magical Damage against monsters of Undead race by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 60 +# +5346# +A helm with a girlfriend wanted ad on it. Don't let those dating services fool you. This method is fullproof. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5347# +A ceremonial hat worn during one's graduation. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5348# +An over-sized red ribbon that contains hidden magical power. +-------------------------- +MDEF +3 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5349# +A black cap that is usually worn by boys attending schools that require uniforms. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5350# +A bandana that is the mark of the lawless pirates of the oceans. +-------------------------- +STR +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5351# +Peculiar headgear designed to look like a sunflower. +-------------------------- +Decreases damage taken from Insect race by 10%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5352# +It looks like a Poporing, but don't worry about the poison! +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 38 +All Jobs except Novice +# +5353# +A hat that is said to have been worn by the god of the sun. +-------------------------- +STR +3 +INT +2 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper, Middle +Weight: 240 +Armor Level: 1 +-------------------------- +Requirement: +2nd classes +# +5354# +This is a traditional headgear for male Muslims. +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5355# +This is a traditional costumes for female Muslims. +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5356# +A pumpkin hat for celebrating Halloween: wear it when you go trick-or-treating! +-------------------------- +Increases Physical Damage against monsters of Demon race by 5%. +-------------------------- +Increases Magical Damage against monsters of Demon race by 5%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5357# +This hair accessory is made of Valkyrie's jewel and feathers. +-------------------------- +MDEF +10 +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper, Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5358# +Middle Headgear made by Pecopeco Wings +-------------------------- +AGI +1 +MDEF +2 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +5359# +A replica of the hats worn by the strange antlered captains of the airships that cross Rune Midgard. +-------------------------- +DEX +1 +MaxHP +100 +-------------------------- +Increases Ranged Physical Damage by 7%. +-------------------------- +Type: Headgear +Defense: 3 +Location: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5360# +A pair of cute black cat ears used by Wickebine. +-------------------------- +FLEE +10 +-------------------------- +Increases critical damage on targets by 10%. +-------------------------- +Adds a 5% chance to bypass 25% of magical defense on normal monsters and players for 5 seconds when performing a magical attack. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +All Jobs +# +5361# +A gangster's red scarf. +-------------------------- +ATK +5 +-------------------------- +When equipped by Rogue classes: +Enables Level 1 Gangster Paradise. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5362# +A scroll used by Ninjas to cast spells. +-------------------------- +MATK +1% +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5363# +A helm worn by the Abysmal Knight. +-------------------------- +Reduces damage taken from Boss monster by 10%. +Increases damage taken from Normal monster by 10%. +-------------------------- +Class: Headgear +Position: Upper +Defense: 12 +Weight: 100 +Tier: 4 +-------------------------- +Requires Level: 70 +Usable By: All Jobs +# +5364# +A perfectly balanced hat worn by the Evil Snake Lord. +The yin yang symbol and magic orbs harness the balance necessary to wear this hat. +-------------------------- +Random chance a defeated monster will drop WoE Supply Box. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +5365# +What looks like a fried egg in a skillet is actually a furious Magnolia monster. +-------------------------- +ATK +5 +-------------------------- +Random chance to auto-cast Level 1 Greed when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5366# +This hat is for memorial of 80 year old king to be upon the throne. +-------------------------- +All Stats +5 +-------------------------- +Type: Headgear +Defense: 53 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5367# +A monster Hyegun's hat. It looks nasty and tattered but it has better defense than what you thought. +-------------------------- +MDEF +3 +-------------------------- +Decreases damage taken from Demon race monsters by 10%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5368# +The glistening white feathers collected to make this beautiful headdress. +-------------------------- +Random chance a defeated monster will drop Holy Elemental Scroll. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5369# +The dark feathers collected to make this mysterious headdress. +-------------------------- +Random chance a defeated monster will drop Undead Elemental Scroll. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5370# +A hair band made by orchid and it smells like a scent of a flower. +-------------------------- +INT +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5371# +A hat worn by capable judges striving for justice. +-------------------------- +LUK +1 +MaxSP +30 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5372# +A magical kitty hat which shows various expressions on its face. +-------------------------- +INT +1 +MDEF +3 +MATK +3% +MaxSP +3% +-------------------------- +Decreases After Skill Delay by 3%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5373# +A helm laced with the power of Valkyrie Randgris. It helps its wearer into concentrate better. +-------------------------- +DEX +3 +MDEF +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5374# +A headgear forged from the horns of the Unsealed Baphomet. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 12%. +-------------------------- +Increases ATK depending on the wearer's job Level. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +# +5375# +A true Orc Hero's headgear. It's so big and heavy that it might hurt your neck. +-------------------------- +STR +2 +-------------------------- +Random chance to auto-cast Level 3 Weapon Perfection when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: None +# +5376# +Satanic Wings forged with an unholy incantation. +-------------------------- +MaxSP +120 +-------------------------- +Adds a chance of casting Curse on the user while receiving Physical Damage. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 10 +Armor Level: 1 +Tier: 5 +-------------------------- +Requirement: None +# +5377# +A long smoking pipe used by gentlemen and nobility. +-------------------------- +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5378# +A cute Red Top hat with Bunny Ears! +An energetic Bunny Band, perfect for a magic show! +-------------------------- +AGI +3 +-------------------------- +Adds a chance to cast Lv 5 Increase Agility when user receives physical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5379# +A large knitted hat that can be used to conceal long hair. +-------------------------- +MDEF +2 +-------------------------- +For each 2 Refine Levels: +MATK +1% +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5380# +A gaping fish head fashioned into a hat. A nasty stench is released whenever it opens its mouth. + +Adds a 0.5% chance to cast Endow Tsunami Lv.1 when performing a normal physical attack. + +If upgrade level is +5 or higher, +ATK +10 +Adds a 2% chance to cast Endow Tsunami Lv.1 when performing a normal physical attack, instead of the previous effect. +-------------------------- +Class: Headgear +Position: Upper +Defense: 2 +Weight: 30 +Tier: 4 +Requires Level: 1 +Usable By: All Jobs +# +5381# +A cute hat made from a hopping Poring wearing a Santa's Hat. +-------------------------- +MDEF +2 +-------------------------- +Increases physical damage on Shadow property targets by 3%. +-------------------------- +Reduces damage taken from Shadow property attacks by 3% +-------------------------- +Type: Headgear +Defense: 4 +Location: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5382# +A cute ribbon adorned with jingling bells. +-------------------------- +VIT +1 +-------------------------- +Enables use of Level 1 Angelus. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5383# +This hat is made especially for hunting Brute monster! +-------------------------- +LUK +1 +-------------------------- +Increases Physical Damage against enemies of Brute race by 10%. +-------------------------- +Increases Magical Damage against monsters of Brute race by 5%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5384# +A Santa Hat with two pom-poms instead of one for double the Christmas fun! +-------------------------- +LUK +3 +Increases Attack Speed (Decreases After Attack Delay by 4%). +-------------------------- +Increases resistance against Curse status by 20%. +-------------------------- +Decreases Variable Casting Time by 2%. +-------------------------- +Random chance to increase Critical by 50 10 seconds when dealing melee physical attacks. +-------------------------- +Random chance a defeated monster will drop Piece of Cake, Candy or Candy Cane. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +5385# +A hat of a cute Yoyo that you can use to disguise yourself among the apes. +-------------------------- +Enables the use of Level 1 Hiding. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +5386# +A traditional Payon decorative headgear woven of red silk, worn during celebrations of the New Year. +-------------------------- +FLEE +7 +MDEF +7 +-------------------------- +Reflects 7% Melee Physical Damage. +-------------------------- +Random chance a defeated monster will drop Lucky Rice Cake. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 7 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5387# +A hairband that mixes Kafra Style and Cat Hairband Style. It looks so cute! +-------------------------- +MDEF +5 +-------------------------- +Inflicts a random abnormal status to an enemy when physically attacked. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5388# +This cute animated Boa will keep you company as you meander around on your adventures. +-------------------------- +Enables Double Attack Lv.5. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +Tier: 6 +-------------------------- +Requirement: +Base Level 30 +All Jobs +# +5389# +A golden mask rumored to have been worn by a goddess. +-------------------------- +HIT+15, STR+2 +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5390# +A double-pommed Blue Christmas Cap +-------------------------- +Increases resistance against Frozen status by 30%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5391# +Rental Item +For a busy morning, it its the best heartwarming friend. +When you hold it in your mouth, you feel like you have to quickly rush out. +-------------------------- +MaxHP +100 +-------------------------- +Random chance a defeated monster will drop Old Purple Box. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5392# +A gift hat for kids made by a famous Whitesmith who resides in Louyang. +The materials used for the red color of the hat is meant to bring Luck and Fortune to those that wear it. +-------------------------- +LUK +2 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5393# +A hat which showed that you were falling in love! +You will feel stronger because strength of your love will make you powerful! +-------------------------- +MaxHP +7% +MaxSP +7% +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5394# +Rental Item +Double your flavour! +-------------------------- +Increases experience gained from defeating monsters by 100%. +-------------------------- +When VIP status active: +Increases experience gained from defeating monsters by 50%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5395# +A souvenir hat to celebarate the 4th Anniversary of Europe Ragnarok Online. +-------------------------- +LUK +3 +MaxHP +100 +-------------------------- +For each Refine Level: +MaxHP +20 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5396# +A beautiful headgear with a crested gold ornament and a cursed gemstone in the middle. +-------------------------- +DEX +1 +-------------------------- +Refine Level +9: +DEX +2 +-------------------------- +Increases Physical Damage against enemies of Undead race by 5%. +-------------------------- +Refine Level below +6: +Random chance to inflict Blind status on wearer dealing physical attack. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: None +# +5397# +Scuba glasses meant for divers. +If you wear this on the Ground, people will think you are a person not taking outside views seriously. +-------------------------- +Decreases damage taken from Water elemental attacks by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5398# +Headgear made of the skull of dregon. So hard that it does not easily break. +-------------------------- +STR +2 +MDEF +5 +-------------------------- +Increases resistance against Stun and Bleeding status by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 85 +Transcendent Swordsman and Merchant +# +5399# +A Mandragora has bloomed on this hat. Don't even think about plucking the flower! +-------------------------- +VIT +3 +-------------------------- +Random chance to auto-cast Level 5 Scream when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 85 +Transcendent 2nd classes +# +5400# +Anyone wearing a mask to make you look smart. +-------------------------- +LUK +1 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper, Middle, Lower +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5401# +Why don't you try wearing those stylish black glasses that are part of the latest fashion outfit? +-------------------------- +INT +1 +MDEF +2 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +5402# +Naughty fairies have slightly pointier ears than elves do. +-------------------------- +Perfect Dodge +3 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +5403# +A fish that can bite inside your mouth. It smells bad, but a special process won't let it rot. +-------------------------- +When the wearer kills a monster, they will get a low chance to drop Fresh Fish. +-------------------------- +Increases recovery amount gained from Fresh Fish by 25%. +(Note: A low chance of dropping Fresh Fish is activated when using stamina.) +-------------------------- +Type: Headgear +Defense: 0 +Location: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 1 +# +5404# +The symbol of an honor student! +-------------------------- +Auto casts Lv2 Improve Concentration with low chances when physically attacked. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +# +5405# +Gentle Filir. He is too gentle. He never attacks. +-------------------------- +Reflects 1% damage of melee physical attacks. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 80 +# +5406# +Academy Freshman Hat! You must to say hello to the Academy members. +-------------------------- +INT +1 +VIT +1 +DEX +2 +Decreases After Skill Delay by 5%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5407# +It's offer to you after the Academy. +-------------------------- +INT +2 +DEX +2 +-------------------------- +Random chance to auto-cast Level 1 Assumptio owhen receiving magical attack. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5408# +Rental Item +A bandana of legendary pioneer. +-------------------------- +INT +2 +MaxSP +50 +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5409# +A hat, symbolizing western frontiers, made to celebrate the festival. +-------------------------- +INT +2 +VIT +2 +MaxSP +50 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5410# +A hat in the form of an upside-down paperbag, to celebrate the festival. +-------------------------- +MaxHP +100 +-------------------------- +Decreases damage taken from Demi-Human race by 4%. +-------------------------- +Increases resistance against Stun status by 4%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper, Middle, Lower +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5411# +A white snake that balances naturally on your head. It's beady eyes stare into your soul. +-------------------------- +DEX +2 +-------------------------- +Position: Upper +Defense: 4 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5412# +A delicious candy which is good for the children. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5413# +Popcorn for when you just want to sit back and enjoy the Show! +-------------------------- +Decreases damage taken from Wind elemental attacks by 10%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5414# +When a field camp in the Roman! Campfire hat! +-------------------------- +Decreases damage taken from Fire elemental attacks by 10%. +-------------------------- +Random chance to auto-cast Level 5 Fire Ball on the target when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5415# +A special hat created to celebrate 5th year anniversary of RO. +-------------------------- +MDEF +5 +Critical +5 +FLEE +5 +Perfect Dodge +5 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +5416# +The taste of beer after taking bath is so good~!! Kids shouldn't drink it! +-------------------------- +Perfect Dodge +5 +Critical Rate +5 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 18 +All Jobs except Novice +# +5417# +A Crown Parrot hat on your head. A chatter parrot that never get tired. +-------------------------- +INT +1 +-------------------------- +Prevents Silence status. +-------------------------- +Random chance to auto-cast Level 1 Scream when wearer receiving physical attack.. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5418# +It's feel like you're on the marching band just by wearing this hat. +-------------------------- +STR +1 +-------------------------- +ATK +3% +-------------------------- +Increases SP Consumption by 10%. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +5419# +Thin leaves that attached to lips. +-------------------------- +VIT +1 +-------------------------- +Decreases damage taken from Plant race by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5420# +A mask of Ifrit, the spiritual owner of fire. +-------------------------- +STR +2 +INT +2 +MDEF +5 +-------------------------- +Random chance to auto-cast Level 3 Meteor Storm when dealing physical damage. +-------------------------- +Increases Magical Damage with Fire element by 10%. +-------------------------- +Increases Physical Damage against enemies of Earth elemental by 10%. +-------------------------- +Decreases damage taken from Fire elemental attacks by 10%. +-------------------------- +Increases damage taken from Water elemental attacks by 10%. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper, Middle, Lower +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +All Jobs except Novice +# +5421# +A headgear which imitates ears of Ifrit, the spiritual owner of fire. +-------------------------- +STR +1 +INT +1 +MDEF +3 +-------------------------- +Increases Magical Damage with Fire element by 3%. +-------------------------- +Increases damage of Bash and Magnum Break by 4%. +-------------------------- +Decreases damage taken from Fire elemental attacks by 3%. +-------------------------- +Increases damage taken from Water elemental attacks by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +All Jobs except Novice +# +5422# +A stylish stack of geology text books. +-------------------------- +INT +1 +MDEF +2 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 7 +# +5423# +A heart pounding hat that shows the love for China. +-------------------------- +DEX +3 +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 25 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5424# +Fanta Orange Can Hat. A refreshing orange drink. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5425# +Fanta Grape Can Hat. A refreshing grape drink. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5426# +Karada Meguricha Hat. +-------------------------- +LUK +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5427# +Black Tea Kochakaden Hat +-------------------------- +AGI +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5428# +A bread bag specially designed to celebrate RWC. +-------------------------- +Decreases damage taken from Demi-Human race by 12%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper, Middle, Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5429# +A cute hat based of Dokkaebi monster. +-------------------------- +Increases HP and SP Recovery Rate by 5%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5430# +A crown with sacred fire on it. +-------------------------- +Decreases damage taken from Fire elemental attacks by 20%. +-------------------------- +Enables the use of Level 5 Fire Bolt. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 25 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5431# +Chicken is on your head! It might have alarm option for waking you up in the morning. +-------------------------- +Random chance to increase STR by 3 for 10 seconds when dealing physical damage. +-------------------------- +Random chance to increase INT by 3 for 10 seconds when dealing magical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5432# +Brazil's National Flag Hat which decorated in front the hat. +-------------------------- +For 24 days after 10 September, All Stats +4. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5433# +A golden laurel crown weaved from olive leaves. +-------------------------- +INT +1 +DEX +1 +LUK +1 +-------------------------- +when refined to 7 +ATK +10 +MATK +10 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5434# +Hat made from Cocacola can. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5435# +A jaunty red hat. Given by way of a thank you from Gravity to creative community members +-------------------------- +INT +1 +MaxSP +80 +MDEF +3 +-------------------------- +For each Refine Level above +5: +MaxSP +10 +MDEF +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +5436# +A neatly made wedding corolla. A huge silk ribbon is attached to the back of it. +-------------------------- +LUK +3 +MDEF +2 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5437# +A lotus flower which fairies wear on their heads. +-------------------------- +INT +1 +MDEF +1 +-------------------------- +Decreases damage from Insect type monsters by 5%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5438# +A small Green ribbon emphasizes one's cuteness while wearing this hairband. +-------------------------- +MaxSP +20 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5439# +A small Red ribbon emphasizes one's cuteness while wearing this hairband. +-------------------------- +MaxSP +20 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5440# +A small Blue ribbon emphasizes one's cuteness while wearing this hairband. +-------------------------- +MaxSP +20 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5441# +A small White ribbon emphasizes one's cuteness while wearing this hairband. +-------------------------- +MaxSP +20 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5442# +A salaryman's necktie worn as a headband. +-------------------------- +VIT +1 +-------------------------- +When equipped with Blush: +HIT -5 +Increases Attack Speed (Decreases After Attack Delay by 3%). +Decreases Variable Casting Time by 3%. +Decreases SP Consumption by 5%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +5443# +Statue of a baby angel that could be embarrassing to wear if you're insecure. +-------------------------- +MDEF +2 +-------------------------- +Random chance to auto-cast Level 1 Status Recovery on wearer when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +5444# +A bright red brush worn as a last-minute accessory. +-------------------------- +CRI +6 +-------------------------- +Class: Headgear +Position: Upper +Defense: 0 +Weight: 10 +Tier: 4 +Requires Level: 1 +Usable By: All Jobs +# +5445# +A very sweet candy cane. Brush your teeth after eating this. +-------------------------- +MaxSP +5 +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5446# +A hairpin which resembles the shape of a cat's paw. +-------------------------- +Perfect Dodge +3 +-------------------------- +If refine rate is +5 or higher: +FLEE +5 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +All Jobs +# +5447# +A hat which resembles the Frog God. But even the God of all frogs looks exactly like any other frog. +-------------------------- +MDEF +1 +-------------------------- +Increases Damage against monsters of Insect race by 12%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +5448# +A cardboard box with holes in it. You can show others how you can adventure solo with no problem. +-------------------------- +Enables the use of Level 1 Scribble. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper, Middle, Lower +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5449# +A cardboard box with a peep hole. You can show others how you can adventure solo with no problem. +-------------------------- +Enables the use of Level 1 Scribble. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper, Middle, Lower +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5450# +The cap of sun. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +5451# +A legendary helm, inspired by god of Dragon. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 5%. +-------------------------- +Type: Headgear +Defense: 14 +Position: Upper +Weight: 150 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5452# +A legendary helm, inspired by god of Dragon. +-------------------------- +Decreases damage taken from Demi-Human race by 7%. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 3%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 150 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5453# +A legendary helm, inspired by god of Dragon. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 1%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 150 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5454# +A light brown puppy dog. It looks quite cute sitting on your head. +-------------------------- +STR +1 +INT +1 +-------------------------- +Random chance to increase Critical by 100 for 3 seconds when receive physical attack. +-------------------------- +Random chance to pierce 100% magical defense of target for 3 seconds when dealing magical damage. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5455# +A special decoration geographer designed to rest nicely on your head. +-------------------------- +INT +1 +-------------------------- +Random chance to auto-cast Level 5 Heal on wearer when dealing or receiving physical attack. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5456# +A hat recommended to use for vacations. It helps to protect your face from strong sunshine. +-------------------------- +VIT +5 +-------------------------- +Increases HP Recovery Rate by 20%. +Increases SP Recovery Rate by 15%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5457# +This headgear is a reward for helping the Moon Rabbits recover their runaway rice cake during the Hangawi Moon Festival. +-------------------------- +ATK +5 +MATK +5 +-------------------------- +For each Refine Level above +4: +ATK +1 +MATK +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5458# +A windmill-decorated headband that makes its wearer look cool. +-------------------------- +MaxHP +5% +MaxSP +5% +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: Base Level 1 +Usable By: All Jobs +# +5459# +A cute rabbit shaped doll. Can be put on head. +-------------------------- +DEX +1 +FLEE +2 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5460# +A helmet made from a dragon's skull. +-------------------------- +All Stats +2 +MaxHP +3% +-------------------------- +Type: Headgear +Defense: 14 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5461# +Mask of whisper, it looks like a piece of facial mask. +-------------------------- +DEX +3 +-------------------------- +Decreases damage taken from Ghost elemental attacks by 20%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper, Middle, Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +5462# +Spiked Scarf +-------------------------- +VIT + 1. +Reduces damage taken from Demi-Human monsters by 1%. +Increases physical and magical damage to Demi-Human monsters by 1%. +-------------------------- +Class: Headgear +Position: Lower +Defense: 0 +Weight: 20 +-------------------------- +Requires Level: 75 +Usable By: All Jobs +# +5463# +A colorful scarf. +-------------------------- +Int +1 +MATK +5 +Mdef +2 +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5464# +Zaha doll hat which resembles angel of Zaha. It looks great on your head. +-------------------------- +INT +3 +MDEF +9 +-------------------------- +Increases Magic Damage versus Undead by 10%. +-------------------------- +When using Magic attacks or attacked by Magic jas a chance to transform the wearer into the White Lady for a short period of time. +During the transformation does the following. +-------------------------- +-Increases MAtk by 30 * Refine Level (Minimum 30) +-Reduces Fixed Cast Time by 80 miliseconds * Refine Level (Minimum 80) +-Drains 10 sp/sec from the wearer +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5465# +A hat that celebrates luck provided by the stars. +-------------------------- +LUK +2 +MDEF +5 +Luk increases by 1 for each refine level above 4 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +5466# +A cap of post man who delivers letters with heart. Magic in the cap protects the wearer not to lose their way. +-------------------------- +AGI +2 +-------------------------- +Enables the use of Level 1 Teleport. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: +Base Level 30 +# +5467# +A helmet made from hard scale of Dragon. The wearer of this headgear can get the great power of Dragon. +-------------------------- +STR +2 +INT +2 +DEX +2 +-------------------------- +Refine Level +7: +Increases experience gained from defeating Dragon race monsters by 3%. +-------------------------- +Refine Level +9: +Increases experience gained from defeating Dragon race monsters by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: None +# +5468# +A cap which makes the wearer very happy to go on a parade. +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +For each Refine Level above +5: +Decreases After Skill Delay by 1%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +# +5469# +One for all and all for one is inscribed on the inside of this extravagant hat. +-------------------------- +STR +2 +-------------------------- +Has a chance of auto-casting Level 1 Adrenaline Rush when receiving physical melee attack. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5470# +An eye cover which has gloomy eyes on it. It looks fixed, but someone says the eyes moves sometimes. +-------------------------- +DEX +1 +-------------------------- +Never get Blind. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5471# +A head accessory which is named after Valkyrie Reginleif. If someone wear this, they can get the bless of god. +-------------------------- +Decreases damage taken from Water, Fire, Undead and Ghost elemental attacks by 3%. +MaxHp +2% +Mdef +3 +Reduces damage taken from Players/demihuman monster by 3% +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 80 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +5472# +A hat used during field day to distinguish groups. If you wear a hat differently, it will bring memories of past. +-------------------------- +Random chance a defeated Demi-Human race monster will drop Rice Cake. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5473# +A headgear created from crab's nipper. Beware of its smell. +-------------------------- +Random chance to auto-cast Level 1 Cold Bolt when dealing physical damage. +-------------------------- +Random chance a defeated Fish monster will drop Crystal Blue. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5474# +A sign that says you are \ +. Whether or not you are telling the truth is another story. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5475# +A mask that locked away the powers of Gozer and the Destructor. +-------------------------- +All Stats +1 +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5476# +An elaborate multi-colored headdress made from the feathers of a Grand Peco. +-------------------------- +Increases Physical Damage against enemies of Demi-Human and Brute race by 7%. +-------------------------- +Random chance to inflict Curse status on the target when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +# +5477# +A hat with brazilian flag on its top. +-------------------------- +Enables the use of Level 1 Bash. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5478# +A classic hat. +-------------------------- +STR +2 +MaxHP +300 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5479# +A hair ornament with pink feathers of a Shaman. +-------------------------- +MDEF +3 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +When equipped with Shaman Ring and Shaman Earring: +MaxHP +300 +MATK +5% +Decreases damage taken from Neutral elemental attacks by additional 5%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5480# +A hat made to honor Bijofnil, the legendary bird that lives above the Yggdrasil tree. +-------------------------- +All Stats +2 +-------------------------- +Decreases damage taken from all elemental attacks by 5%. +-------------------------- +Every 10 seconds restores 2% of HP and 1% of SP. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: None +# +5481# +A cap worn by a desert assassin who fought with incredible speed. +-------------------------- +ASPD +10% +ATK -10% +MATK -10% +-------------------------- +If upgrade level is +5 or higher, +ATK +2% +MATK +2% +-------------------------- +If upgrade level is +7 or higher, +ATK +3% +MATK +3% +-------------------------- +Class: Headgear +Position: Upper +Defense: 5 +Weight: 50 +Tier: 3 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +5482# +A mask worn by a knight that used dark magic to curse anyone who wore it but him. +-------------------------- +STR +3 +-------------------------- +When equipped with Dark Knight Belt and Dark Knight Glove: +Increases MaxHP by 15*Base Level. +Increases MaxSP by 1.2*Base Level. +ATK +3% +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle, Lower +Weight: 300 +Armor Level: 1 +-------------------------- +Requirement: None +# +5483# +A mask worn once worn by Odin during a fierce battle between the gods and humans. +-------------------------- +Increase physical damage to all class monsters 5% +Increases ATK by 1 for every 2 of base STR +Increases HIT by 1 for every 3 of base DEX +Increases Critical Damage by 1% for every 5 of base LUK +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5484# +Taiwan's spirit! +-------------------------- +All Stats +5 +Increases resistance against Stun status by 5%. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5485# +A tiger face shaped mask. +-------------------------- +Decreases damage taken from Brute race by 5%. +-------------------------- +Increases Damage against monsters of Brute race by 5%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper, Middle, Lower +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5486# +A hat made to celebrate the 6th Anniversary. +-------------------------- +All Stats +2 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5487# +A hat with Poring on the top of a cake. Just by wearing this hat will make you feels happy. +-------------------------- +LUK +2 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5488# +An adorable Twin Pom Santa Hat. +-------------------------- +LUK +1 +MDEF +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5489# +A yellow tredy hat has a love daddy logo. Thailand people wear it to admire king. +-------------------------- +DEX +2 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5490# +A headdress that resemble the god of darkness, Anubis. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Boss class by 10%. +-------------------------- +Increases recovery amount gained from Healing skills and Restorative items by 10%. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper, Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 65 +# +5491# +Not many people can stand a hot and steamy sand storm that is from far north Brazil. But these natives are well known for standing against heat and humidity with less water and food. +-------------------------- +STR +2 +-------------------------- +Decreases damage taken from Fire elemental attacks by 10%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +# +5492# +A black cap that is usually worn by boys attending schools that require uniforms. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5493# +A wool cap that Ule, the god of Hunt has used. When you wear this, you might be able to hunt animals easily. +-------------------------- +DEX +2 +AGI +1 +-------------------------- +When equipped with Odin's Blessing: +Base DEX at least 70: +Decreases SP Consumption by 10%. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5494# +A traditional Egyptian head piece that symbolizes the Egyptian gods. +-------------------------- +STR +5 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper, Lower +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Swordman classes +# +5495# +Grants those who wear it a small portion of the thunder god Thor. +-------------------------- +INT +1 +DEX +1 +MDEF +3 +-------------------------- +Decreases damage taken from Wind elemental attacks by 7%. +-------------------------- +Refine Level +8: +Random chance to increase ATK by 40 for 6 seconds when dealing melee physical attacks. +Random chance to increase MATK by 40 for 6 seconds when dealing magical damage. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5496# +Props for the table game. It used to be a tool of gamble. +Sum of theeach sides of symmetry is always 7. +-------------------------- +LUK +4 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +5497# +A hat that imitates the shape of King Tiger. +-------------------------- +STR +2 +DEX +2 +-------------------------- +Increases physical damage on Brute race targets by 10%. +-------------------------- +Adds a 0.3% chance Tranform to Eddga!! for 3 seconds when performing a physical attack +Adds 0.1% chance Tranform to Eddga!! for 3 seconds when receiving a physical attack. + +While Transform Atk + 25 per upgrade level of the item +While Transform Drains 5 SP from the user every second. + +Every per upgrade increases the chance of tranform to Eddga!! +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 40 +Armor Level: 1 +Tier: 6 +-------------------------- +Requirement: +Base Level 1 +# +5498# +Made out of a Wolf King's fur and feels like you're surrounded by a dignified force when worn but basically worn for its looks +-------------------------- +AGI +5 +FLEE +10 +-------------------------- +Ignores physical defense of Demi-Human and Brute race by 10%. +-------------------------- +Refine Level +7: +Random chance to inflict Bleeding status to enemies on 5x5 cells when dealing physical damage. +-------------------------- +Refine Level +9: +Random chance to auto-cast Level 1 Howling of Lion when dealing physical damage. +-------------------------- +When equipped with Angry Mouth: +Critical +10 +-------------------------- +Refine Level +7: +Increases Critical Damage by 10%. +-------------------------- +Refine Level +9: +ASPD +1 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5499# +Is there anyone in this world who doesn't like pizza?? +Even a fierce monster won't be able to refuse this tasty food. +You can provoke monsters by wearing this hat. +-------------------------- +Enables the use of Level 1 Provoke. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: None +# +5500# +Having ice cream is a great way to beat the heat. Beware of brain freeze. +-------------------------- +MDEF +3 +-------------------------- +Enables the use of Level 3 Frost Diver. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5501# +The Pride of the Pirate is best expressed with a lurid sea tune and a sea battle for plunder! +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5502# +The Deadly Necromancer's Essence is embodied in this Hood. +-------------------------- +INT +3 +MDEF +3 +-------------------------- +Decreases damage taken from Undead elemental and Demon race monsters by 15%. +-------------------------- +Increases damage taken from Holy elemental by 20%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper, Middle +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5503# +A famous hat of magician. +-------------------------- +DEX +2 +AGI +2 +Aspd +5% +-------------------------- +Decreases After Skill Delay by 4%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +# +5504# +A specially made wedding veil to celebrate the sixth year anniversary of RO. +It is also used to show someone's love and affection. +-------------------------- +MDEF +10 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle, Lower +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +5505# +A hat worn by priests when performing a sacrificial rite. +-------------------------- +DEX +2 +LUK +2 +-------------------------- +Enables the use of Lv.1 Don't Forget Me skill when equipped by Dancer jobs. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5506# +A lovely nightcap. It is cute and you will feel sleepy when you wear it. +-------------------------- +MATK +5% +ATK +5% +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: None +# +5507# +A lovely nightcap. It is cute and you will feel sleepy when you wear it. +-------------------------- +MATK +5% +ATK +5% +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5508# +Sharks are amazingly gentle creatures if you stay away from their food supply. +-------------------------- +STR +1 +AGI +2 +MDEF +1 +-------------------------- +Increases Physical Damage against enemies of Water elemental by 5%. +-------------------------- +Decreases damage taken from Water elemental by 10%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5509# +A hand-shape hat made by mud. It feels weird when you wear it. +-------------------------- +STR +2 +VIT +1 +MDEF +3 +-------------------------- +Random chance to auto-cast Level 1 Earth Spike when receiving physical damage. +-------------------------- +Decreases damage taken from Earth elemental by 5%. +-------------------------- +Increases damage taken from monsters of Fire elemental by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: None +# +5510# +Let's protect the hair! +-------------------------- +MDEF +3 +FLEE +3 +-------------------------- +Decreases damage taken from Water elemental attacks by 10%. +-------------------------- +Decreases damage taken from Fish race monsters by 10%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5511# +A circlet made of samambaia leaf. +-------------------------- +ASPD +1 +MATK +2% +ATK +2% +-------------------------- +Increases Healing skills effectiveness by 2%. +-------------------------- +Decreases Fixed Casting Time by 10%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5512# +This diadem honors Aquarius, the 11th astrological sign in the zodiac calendar. +-------------------------- +STR +2 +FLEE +10 +-------------------------- +Increases resistance to Wind Property attack by 5%. +-------------------------- +Refine Level +7: +DEF +1 +ATK +15 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +5513# +This crown honors Aquarius, the 11th astrological sign in the zodiac calendar. Its power increases defense from Wind attacks. +-------------------------- +STR +2 +FLEE +10 +-------------------------- +Decreases damage taken from Wind elemental attacks by 5%. +-------------------------- +Refine Level +7: +DEF +1 +ATK +15 +-------------------------- +Class: Headgear +Position: Upper +Defense: 6 +Weight: 30 +Tier: 5 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +5514# +This diadem honors Pisces, the 12th astrological sign in the zodiac calendar. Its power increases defense from Water attacks. +-------------------------- +INT +2 +MDEF +5 +-------------------------- +Decreases damage taken from Water elemental attacks by 5%. +-------------------------- +Refine Level +7: +DEF +1 +MATK +2% +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +5515# +This crown honors Pisces, the 12th astrological sign in the zodiac calendar. Its power increases defense from Water attacks. +-------------------------- +INT +2 +MDEF +5 +-------------------------- +Decreases damage taken from Water elemental attacks by 7%. +-------------------------- +Refine Level +7: +DEF +1 +MATK +2% +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +5516# +An artificial eyeball which glitters sharply. +-------------------------- +DEX +1 +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Sniper +# +5517# +An artificial eyeball which glitters sharply. +-------------------------- +Type: Headgear +Defense: 0 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Archer +# +5518# +A headgear made from the horns of Baphomet. +-------------------------- +Decreases damage taken from Demi-Human race by 12%. +-------------------------- +Increases certain amount of ATK based on wearer's Job Level +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5519# +You seems to sing a song like Bard. +-------------------------- +INT +2 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +# +5520# +Celebrate the year of the rabbit and keep your ears warm at the same time. +-------------------------- +MATK +4% +Damage against all monster types increases by 4% +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper, Middle +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +5521# +The fearsome growl of the warrior, highly intimidating. +-------------------------- +Decreases After Skill Delay by 3%. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5522# +A hat made from scratch lemon fanta cans. +Zero calories and zero sugar is popular for both men and women! +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5523# +A hat created to celebrate the partnership campaign. +-------------------------- +DEX +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5524# +A hat created to celebrate the partnership campaign. +-------------------------- +VIT +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5525# +A hat made of flower to celebrate the partnership campaign. +-------------------------- +MaxHP +80 +MaxSP +20 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5526# +The beautiful Lady Tanee Doll will keep you company on your adventures. +-------------------------- +AGI +2 +FLEE +3 +-------------------------- +Decreases damage taken from Wind elemental attacks by 5%. +-------------------------- +Random chance a defeated monster will drop Banana. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5527# +A hat molded out of Lunatic Fluff. +-------------------------- +LUK +3 +Critical +5 +-------------------------- +Increases Physical Damage against enemies of Plant race by 20%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5528# +Looks like an ugly frog but actually it's a handsome prince whose waiting for a lady who can unleash the magic. +-------------------------- +AGI +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +All Jobs except Novice +# +5529# +People say it is made of a frost giant's bones. But nobody can confirm whether it is true or not. +-------------------------- +STR +2, INT +2 +MDEF +2 +-------------------------- +For each Refine Level: +ATK +1, MATK +1. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper, Middle +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: None +# +5530# +A black Raven Cap that has black beak and feathers. It is so black. +-------------------------- +Increases recovery amount gained from Meat by 50%. +-------------------------- +Random chance to inflict Curse status on attacker when wearer receiving melee physical attacks. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5531# +A baby dragon who has been trained to help its master. +-------------------------- +Increases physical and magical damage on Dragon race targets by 10%. +Increases the experience given from Dragon race monsters by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5532# +Hold this knife in your mouth to look like an authentic fierce pirate. Arrrrr!!! +-------------------------- +Reflects 1% damage of melee physical attacks. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5533# +A laurel wreath used in coronation ceremonies for Emperors that represents victory and glory. +-------------------------- +All Stats +1 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +5534# +A mask of a white fox believed to be a god in certain countries. +-------------------------- +AGI +1 +Perfect Dodge +2 +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +5535# +This cap's design is best appreciated when worn slightly off to the side. +-------------------------- +VIT +1 +DEX +1 +MDEF +3 +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 3%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5536# +Rental Item +This monster card has been rejected and deemed defective. +-------------------------- +LUK +1 +Perfect Dodge +1 +-------------------------- +Random chance a defeated monster will drop Santa's Bag, Cookie Bag or Old Purple Box. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5537# +A Coati-shaped Hat with a cute thick tail. This hat comes with a fresh forest scent. +-------------------------- +AGI +3 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 70 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +# +5538# +A bird from the Toucan family with a fabulous yellow colored beak. It has been seen eating sweet-flavored loop cereal. +-------------------------- +DEX +3 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle +Weight: 60 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +# +5539# +A mask of the king of the Amazon the Jaguar. According to rumor, those who wear this get blessings from nature. +-------------------------- +MDEF +2 +-------------------------- +Enables the use of Crazy Uproar skill. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper, Middle, Lower +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 25 +# +5540# +Rental Item +A spiritual circlet granted by Freya. It appears very sturdy, but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +STR +1 +INT +1 +DEX +1 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 70 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +5541# +Rental Item +A spiritual circlet granted by Freya. It appears very sturdy, but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +STR +1 +INT +1 +DEX +1 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 70 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +5542# +Rental Item +A spiritual circlet granted by Freya. It appears very sturdy, but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +STR +1 +INT +1 +DEX +1 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 70 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +5543# +Rental Item +A spiritual circlet granted by Freya. It appears very sturdy, but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +STR +1 +INT +1 +DEX +1 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 70 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +5544# +A hat made to honor the Time Keeper. +-------------------------- +INT +2 +MaxSP +50 +-------------------------- +If refine rate is 7 or higher +SP Consumption - 5% +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5545# +A magnificent diadem created to pay tribute to the 1st sign of the zodiac, Aries the Ram. +-------------------------- +VIT +1 +MaxHP +1% +-------------------------- +Refine Level +7: +MaxHP +2% +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +5546# +A magnificent crown created to pay tribute to the 1st sign of the zodiac, Aries the Ram. +-------------------------- +LUK +2 +-------------------------- +If upgrade level is +7 or higher: +Critical +5 +Increases Critical Damage by 5%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +5547# +A hairband with a small and pretty flower. +-------------------------- +Increases damage of Earth Spike and Heaven's Drive by 15%. +Every Refine Refine Level: Increases damage of Earth Spike and Heaven's Drive by 1%. +-------------------------- +Decreases Variable Casting Time of Earth Spike and Heaven's Drive by 25%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5548# +Scarlet Rose, red in the mouth. Wondering if the dangerous thorns have been removed? +-------------------------- +Increases physical damage against enemies of all sizes by 1%. +MaxSP +30 +MATK +1% +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 1 +All Jobs +# +5549# +A magnificent diadem created to pay tribute to the 2nd sign of the zodiac, Taurus the Bull. +-------------------------- +DEX +2 +MATK +2% +-------------------------- +Decreases After Skill Delay by 2%. +-------------------------- +Random chance to inflict Stun status on the target when dealing physical damage. +Each Refine increase the chance of inflicting Stun. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +5550# +A magnificent crown created to pay tribute to the 2nd sign of the zodiac, Taurus the Bull. +-------------------------- +AGI +2 +FLEE +10 +-------------------------- +Random chance to inflict Stun status on the target when dealing physical damage. +Each Refine increase the chance of inflicting Stun. +-------------------------- +Refine Level +7: +ATK +15 +ASPD +5% +-------------------------- +Class: Headgear +Position: Upper +Defense: 6 +Weight: 30 +Tier: 5 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +5551# +A hat made from magical egg. +-------------------------- +Random chance to auto-cast Level 1 Heal on the user when receives physical attack. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5552# +Rental Item +Limited Promo! Summer Festival Grand Circlet! 4 weeks rental item. +-------------------------- +STR +3, INT +3 +MDEF +3 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5553# +Rental Item +Limited Promo! Summer Festival Bunny Band! 4 weeks rental item. +-------------------------- +MDEF +4 +-------------------------- +Decreases damage taken from Demi-Human race by 9%. +-------------------------- +Type: Headgear +Defense: 14 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5554# +Ridiculous Octopus with a gentleman's hat. It feels like it's making fun of me as I look at it. +-------------------------- +MDEF +3 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5555# +A hat which resembles a cute Leaf Cat. The power to cure dwells within it. +-------------------------- +AGI +2 +-------------------------- +Random chance to auto-cast Level 3 Heal on wearer when wearer receive physical melee attack. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 10 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: None +# +5556# +Very warm hat which a monster \ + is wearing. +-------------------------- +ATK +5, MATK +5 +-------------------------- +Decreases damage taken from Water elemental attacks by 7%. +-------------------------- +Increases Physical Damage against enemies of Water elemental by 25%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle, Lower +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5557# +A hat which resembles the wild cat, Wild Rose. +-------------------------- +AGI +3 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +5558# +This hat is a legend to the people from whild festival world. +-------------------------- +Random chance a defeated Plant monster will drop Blue Herb. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5559# +A pure white cloth that bearing unknown power. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5560# +An armored helmet created from melting down battle worn armors donated by powerful gladiators of times past. +Only the most distinguished duelists can wear this helmet. +-------------------------- +MaxHP +100 +-------------------------- +Prevents knock-back effect. +-------------------------- +Increases damage taken from physical and magical attack by 30%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 300 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 75 +# +5561# +A top hat modeled after a magician who became famous for making rabbits appear out of thin air. +-------------------------- +INT +1 +MaxSP +50 +-------------------------- +Random chance to auto-cast Level 1 Heal on its wearer when receiving physical damage. +-------------------------- +Random chance to auto-cast Lightning Bolt, Fire Bolt or Cold Bolt between Level 1 to 3 when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +# +5562# +Only the couple which swears a truth one love will be able to use the veil of legend. +-------------------------- +MDEF +10 +-------------------------- +Decreases Variable Casting Time by 3%. +-------------------------- +Decreases SP Consumption of by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper, Middle +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +# +5563# +A Dolor of Thanatos laying on your head. It's rumored that the doll is trying to speak with his owner. +-------------------------- +Random chance to auto-cast Level 1 Lex Aeterna when dealing physical damage. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5564# +A deceptive crown that was once used to summon monsters. +-------------------------- +INT +4 +Mdef +10 +Decreases Variable Casting Time by 10%. +-------------------------- +If upgrade level is +7 or higher +increase your MATK by 1%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper, Middle +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5565# +A mask wore by a dragon follower. +-------------------------- +Increases Physical Damage against enemies of Player by 10%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle, Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5566# +복호 나한의 가면. +-------------------------- +Increases Physical Damage against enemies of Player by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle, Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5567# +A hat to commemorate the Sinulog Festival, you felt stronger while wearing it. +-------------------------- +STR +2 +Critical Rate +10 +Hit +10 +Increase attack speed 2% +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5568# +A Bonnet looks like a cute rabbit that made by legendary hat maker. It looks so soft and weak but it might have extraordinary things inside of it. +-------------------------- +INT +2 +-------------------------- +Decreases After Skill Delay by 3%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper, Middle +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: None +# +5569# +A magnificent Diadem created to pay tribute to the 3rd sign of the zodiac, Gemini the Twins. +Attached to the crown is an Alexandrite gemstone, the birthstone for those born under this sign. +-------------------------- +DEX +2 +-------------------------- +Decreases After Skill Delay by 2%. +-------------------------- +Decreases damage taken from Wind elemental attacks by 5%. +-------------------------- +Refine Level +7: +DEX +1 +MATK +30 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5570# +A magnificent crown created to pay tribute to the 3rd sign of the zodiac, Gemini the Twins. Attached to the crown is an Alexandrite gemstone, the birthstone for those born under this sign. +-------------------------- +AGI +2 +FLEE +10 +-------------------------- +Decreases damage taken from Wind elemental attacks by 5%. +-------------------------- +If upgrade level is +7 or higher: +HIT +5 +ATK +30 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 30 +Armor Level: 1 +Tier: 5 +-------------------------- +Requirement: None +# +5571# +Death Rock singer-style wig. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5572# +The hat made according to the shape of Savage Babe. +-------------------------- +VIT +2 +-------------------------- +Random chance to inflict Stun status on the target when dealing melee physical attacks. +-------------------------- +Increases damage taken from monsters of Brute race by 10%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5573# +Baby Dokkaebi's strong firm horn. Some say this brings you wealth. +-------------------------- +Add a chance of dropping Jewelry when defeating a monster. +-------------------------- +When dealing Physical Damages, Random chance to auto-cast Level 5 Mammonite.(Consume zeny, but will not triggered when not enough zeny.) +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5574# +A popular snack while taking tests. It makes one look more studious but, it's days may be numbered if it stays in somebody's mouth any longer. +-------------------------- +HIT +3 +-------------------------- +When equipped with Model Training Hat: +DEX +2 +DEF +2 +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5575# +Made with love, this onigiri is very tasty. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5576# +A beautiful lacquerware red cup. +-------------------------- +Random chance a defeated monster will drop Mastela Fruit Wine. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5577# +A mask worn by a knight that used dark magic to curse anyone who wore it but him. +-------------------------- +DEX +3 +-------------------------- +When equipped with Dark Knight Belt and Dark Knight Glove: +Increases MaxHP by 15*Base Level. +Increases MaxSP by 1.2*Base Level. +ATK +3% +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle, Lower +Weight: 300 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +5578# +A hat that is given to brave sailors. +-------------------------- +AGI +2 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +5579# +A rustic hat made of bamboo that was worn by a heroic wandering adventurer. It shadows your eyes with its wide brim. +-------------------------- +AGI +2 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5580# +This cap is symbolic of the manpower. +-------------------------- +All Stats +3 +MDEF +3 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5581# +A magnificent diadem created to pay tribute to the 4th sign of the zodiac, Cancer the Crab. Attached to the crown is a Ruby gemstone, the birthstone for those born under this sign. +-------------------------- +INT +2 +-------------------------- +Decreases damage taken from Water elemental attacks by 5%. +-------------------------- +Refine Level +7: +MDEF +1 +MATK +2% +Increases Healing skills effectiveness by 3%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +5582# +A magnificent crown created to pay tribute to the 4th sign of the zodiac, Cancer the Crab. Attached to the crown is a Ruby gemstone, the birthstone for those born under this sign. +-------------------------- +STR +2 + +Decreases damage taken from Water elemental attacks by 5%. +-------------------------- +If upgrade level is +7 or higher: +ATK +15 +DEF +1 +FLEE +10 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +Tier: 5 +-------------------------- +Requirement: +Base Level 1 +# +5583# +A hat that channels the power of Genesis, granting both physical and magical might. +-------------------------- +ATK +5, MATK +5 +-------------------------- +When Base Level is 30 or higher: +ATK +2, MATK +2 +When Base Level is 60 or higher: +ATK +3, MATK +3 +When Base Level is 90 or higher: +ATK +5, MATK +5 +-------------------------- +Cannot be refined. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Base Level 1 +All Jobs +# +5584# +The horns imbued with full of Devil Spirit. Feels so tight and harsh. +-------------------------- +Decreases damage taken from Demon race monsters by 3%. +-------------------------- +Restores 1 SP when defeating target. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +5585# +A hairband embroidered with Runes and golden thread. +-------------------------- +HIT +5 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 3%. +-------------------------- +Random chance to absorb physical damage inflicted 10% to HP and 5% to SP. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +5586# +Look like emit out mosquitoes. feel like is work to ant and Cockroach. +-------------------------- +100% bonus damage to Anopheles. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +AllJob +# +5587# +A hat which gives out a smell that mosquitos hates. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5588# +A magnificent crown created to pay tribute to the 5th sign of the zodiac, Leo the Lion. Attached to the crown is a Peridot gemstone, the birthstone for those born under this sign. +-------------------------- +STR +2 +-------------------------- +Decreases damage taken from Fire elemental attacks by 5%. +-------------------------- +Refine Level +7: +FLEE +10 +DEF +1 +Random chance to auto-cast Level 4 Mild Wind on wearer when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5589# +A magnificent diadem created to pay tribute to the 5th sign of the zodiac, Leo the Lion. Attached to the diadem is a Peridot gemstone, the birthstone for those born under this sign. +-------------------------- +DEX +2 +-------------------------- +Decreases damage taken from Fire elemental attacks by 5%. +-------------------------- +Refine Level +7: +FLEE +10 +Increases Attack Speed (Decreases After Attack Delay by 3%). +Adds 0.1% chance of adding splash damage on basic attacks for 10 seconds when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5590# +A poring shaped cake decorated with candles. +-------------------------- +LUK +3 +MaxSP +50 +MaxHP increases by (Base Level*2). +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5591# +This hat is coming from an old soldier who used to live in the desert. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5592# +Ear adornments that symbolize rebirth. They have the ability to change its effects depending on the job of the wearer. +-------------------------- +Novice Bonus: +MaxHP +80 +MaxSP +30 +-------------------------- +When equipped by Swordman, Merchant, Thief or Taekwon: +Str +1 +-------------------------- +When equipped by Mage, Acolyte, Ninja or Soul Linker: +Int +1 +-------------------------- +When equipped by Archer or Gunslinger: +Dex +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5593# +A bonnet made to resemble a rabbit. Despite it's cute appearance this hat gives its wearer attack strength. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +Decreases damage taken from Demi-Human race by 3%. +-------------------------- +Decreases After Skill Delay by 3%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper, Middle +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5594# +Chewing on this deliciously glazed ring-shaped fried cake will make you happy. +-------------------------- +MaxHP +100 +Restores 1 HP every 10 seconds. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5595# +A horn imbued with spirit of devil. Could feel full of vital force from it. +-------------------------- +MDEF +2 +-------------------------- +Decreases damage taken from Neutral and Water elemental attacks by Job Level/14. +-------------------------- +Swordsman, Merchant, Thief classes: Increase AGI by Job Level/14. +-------------------------- +Magician, Archer, Acolyte classes: Increases INT by Job Level/14. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +5596# +Rental Item +A Four-leafed clover that brings its wearer luck. +-------------------------- +ATK +5 +MATK +5 +MDEF +2 +-------------------------- +When VIP status active: +All Stats +1 +Increases experience gained from defeating monsters by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5597# +Rental Item +Huge balloon looking bubble gum. You can even blow it much bigger! +Caution: May seem ghetto to others. +-------------------------- +ATK +5 +MATK +5 +MDEF +2 +-------------------------- +Type: Headgear +Defense: 2 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5598# +A magnificent crown created to pay tribute to the 6th sign of the zodiac, Virgo the Virgin. Attached to the crown is a Sapphire gemstone, the birthstone for those born under this sign. +-------------------------- +DEX +2 +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Refine Level +7: +Decreases damage taken from Earth elemental attacks by 5%. +Random chance to increase DEX by 20 for 6 seconds when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5599# +A magnificent diadem created to pay tribute to the 6th sign of the zodiac, Virgo the Virgin. Attached to the crown is a Sapphire gemstone, the birthstone for those born under this sign. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Decreases damage taken from Earth elemental attacks by 5%. +-------------------------- +Refine Level +7: +Random chance to auto-cast Level 1 Excruciating Palm when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5600# +A cute ribbon has one sied yellow the other side is green. +-------------------------- +MDEF +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5601# +A two-toned banana yellow and green colored beret. +-------------------------- +Luk +3 +MDEF +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5602# +A mask that mimic the face of king of jungle. +-------------------------- +Increases Physical Damage against enemies of Fire elemental by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle, Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +5603# +A legendary helmet,will be awarded to the First Best warrior. +-------------------------- +All Stats +3 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Increases Damage against monsters of Demi-Human race by 10%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: None +# +5604# +A legendary helmet,will be awarded to Second Best warrior. +-------------------------- +All Stats +2 +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Decreases Fixed Casting Time by 0.3 seconds. +-------------------------- +Increases Damage against monsters of Demi-Human race by 5%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: None +# +5605# +A legendary helmet,will be awarded to third Best warrior. +-------------------------- +All Stats +1 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Decreases Fixed Casting Time by 0.1 second. +-------------------------- +Increases Damage against monsters of Demi-Human race by 3%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: None +# +5606# +A helmet featuring CompuME, where Middle east Buys Technology! +-------------------------- +All Stats +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 3 +# +5607# +A doll resemble lyria, her innocence empower people. +-------------------------- +MaxHP +500 +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 60 +# +5608# +A doll resemble Dorothy, you can feel her strong will. +-------------------------- +MaxSP +80 +-------------------------- +Decreases damage taken from Demi-Human by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 60 +# +5609# +When you wear it, you will feel a gorgeous atmosphere of Qing nobility. +-------------------------- +LUK +3 +MDEF +4 +-------------------------- +When you are under physical attack, it uses Lv5 Mammonite skill by low chance. +(if you don't have zeny, it doesn't work.) +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 60 +# +5610# +This is Earrings which made of ice and special compound. When you wear it, you can feel cool! +-------------------------- +LUK +1 +-------------------------- +Random chance to auto-cast Level 5 Cold Bolt on attacker when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5611# +A disgruntled snapping turtle sits above your head. Count your fingers after putting this on. +-------------------------- +AGI +1 +-------------------------- +Random chance to auto-cast Level 3 Decrease Agility on attacker when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5612# +A cat doll that you can carry on your head. If you think you hear it meow or feel it move, it's just an illusion. +-------------------------- +MDEF +15 +-------------------------- +Increases resistance against Curse status by 30%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: +All Jobs +# +5613# +A headgear that looks like flapping angelwings. +It makes you feel might lighter when you wear it, though it also makes you feel pretty dizzy. +-------------------------- +INT +1 +Increases Attack Speed (Decreases After Attack Delay by 3%). +Increases Variable Casting Time of all skills by 3%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5614# +Just say no. Especially if you're underage. +-------------------------- +VIT +1 +-------------------------- +Decreases damage taken from Brute race by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Novices can't smoke, but as for everyone else... +# +5615# +A pair of small red hairbands that makes girls look really cute when they wear them. +-------------------------- +FLEE +5 +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +# +5616# +A headgear that looks just like a scrumptious fish. +It even has the same smell! +-------------------------- +AGI +1 +DEX +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5617# +A flower said to be as beautiful as a fairy in a far east country and usually used as a medicinal herb. +-------------------------- +DEX +1 +INT +1 +MDEF +5 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5618# +A cute cat-looking hat which enhances its wearer's look. +Has a cat tail which emphasises the appearance. +-------------------------- +LUK +2 +MDEF +10 +-------------------------- +Decreases damage taken from Brute race by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5619# +A hare accessory that looks just like bunny ears. +This may seem like inappropriate, risque attire, but only if you travel in those kinds of circles. +-------------------------- +INT +2 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5620# +A headgear fashioned after the horns of a goat that captures the attention of onlookers. +It has a certain religious meaning to some people. +-------------------------- +STR +2 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Merchant, Taekwon Boy/Girl and Star Gladiator +# +5621# +A hat that looks like a sheep's head that is so adorable, an enemy might change his mind about attacking. +-------------------------- +Reflects 5% physical damage. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 15 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Acolyte +# +5622# +This hat makes the wearer feel as if he is floating on air. +-------------------------- +AGI +2 +DEX +1 +FLEE +10 +-------------------------- +This headgear's Refine Level affects the percentage of Variable Casting Time reduction. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5623# +A hat adorned with an Alice doll. When worn, it seems like Alice is cheering you on from the top of your head. +\ +-------------------------- +STR +1 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 10%. +-------------------------- +Random chance to inflict Sleep status on wearer when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +All Jobs except Novice +# +5624# +A must-have item for those that care about appearances: It can increase your beauty threefold. +-------------------------- +MDEF +5 +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5625# +A hat adorned with a cute chick that brings feelings of joy to those that see it hopping. +-------------------------- +MaxHP +50 +MaxSP +50 +-------------------------- +Enables Level 2 Double Attack. +-------------------------- +Adds 3% resistance to Demi-Human, Demi-Human Player, Animal Class monsters. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5626# +A cute hat shaped like a Deviruchi that brings happiness to its wearer and onlookers. +-------------------------- +STR +1 +INT +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 64 +All Jobs except Novice +# +5627# +A hairpin that looks like a spinning windmill, but it doesn't generate any power, though. +-------------------------- +AGI +2 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5628# +A hairband with PecoPeco wings that lends you a PecoPeco's speed. +-------------------------- +Increases After Attack Delay by 10%. +-------------------------- +Increases Variable Casting Time of all skills by 25%. +-------------------------- +Increases movement speed. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +5629# +A hat that's perfect for vacationing and shields the wearer's face from UV rays. +-------------------------- +VIT +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5630# +A pretty red ribbon decorated with a pink heart in the middle. +-------------------------- +Decreases damage taken from Undead elemental and Demon race monsters by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5631# +A training cap that lends a sense of quiet and stability to the wearer. +-------------------------- +DEX +1, AGI +1 +MDEF +3 +-------------------------- +Increases HP Recovery Rate by 5%. +-------------------------- +Increases SP Recovery Rate by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5632# +A cold, soft hat that is shaped like a Vanilmirs. +-------------------------- +MDEF +5 +-------------------------- +Random chance to auto-cast Level 1 Bolt skills when dealing physical damage. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5633# +A cute rabbit doll that can be worn on the head. +-------------------------- +DEX +1 +FLEE +2 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5634# +A sturdy pot worn on the head that overflows with water if shaken. +-------------------------- +Random chance to auto-cast Level 2 Deluge or Level 3 Waterball when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5635# +A helmet made from a dragon's skull that provides protection against dragons. +-------------------------- +Decreases damage taken from Dragon race by 5%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5636# +Delicious noodles worn on the head that can be eaten when food is especially scarce. +There's nothing like a good bowl of ramen. +-------------------------- +DEX +4 +-------------------------- +Random chance to auto-cast Level 1 Decreases AGI on attacker when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5637# +A hat woven out of yarn that keeps the head warm, but is mostly worn because of its fashionable look. +-------------------------- +LUK +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 35 +Armor Level: 1 +-------------------------- +Requirement: None +# +5638# +A small brown-colored dog that sits atop your head. It's so cute you'd be barking mad to remove it. +-------------------------- +AGI +1 +-------------------------- +Auto casts Level 1 Gloria with low percent chance; if AGI is over 77, the cast increases to Level3 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5639# +A hat that looks like the eyes of a dark Magician, which are rumored to blink sometimes. +-------------------------- +Reduce Cast Time by 10% and increase SP Consumption by 20%. +-------------------------- +MDEF +5 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +Magician and Soul Linker classes +# +5640# +A Poring hat that feels like hopping on top of your head. It brings fortune to the wearer. +-------------------------- +LUK +1 +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5641# +A weird item that spreads a strange-shaped beam around the eyes. It seems to have been made in outer space. +-------------------------- +DEX +1 +ATK +2% +MATK +2% +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5642# +A crude looking hat that lends a look of cheerfulness and agility and is coveted by most skilled magic users. +-------------------------- +INT +2 +MaxSP +150 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Magician and Soul Linker classes +# +5643# +A sturdy, decorative hat worn by military generals in a far east country. +-------------------------- +VIT +1 +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper, Middle +Weight: 300 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Swordsman and Merchant +# +5644# +A mask rumored to make its wearer ferociously aggressive. +-------------------------- +STR +3 +MaxHP +100 +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +5645# +Wig with red, white and black colors. +-------------------------- +Enables the use of Level 1 Hiding. +-------------------------- +Increases movement speed. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper, Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5646# +A mask shaped like a Whisper that feels like its always massaging your face so it might be good for your skin. +-------------------------- +AGI +3 +-------------------------- +Increases damage taken from Ghost elemental attacks by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper, Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5647# +Rental Item +A hairband that gives one the appearance of having rabbit ears, a lasting symbol of extremely good luck. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 9 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5648# +Rental Item +A small flower made of steel. +-------------------------- +Has a low chance to cast Level 1 Recovery when its wearer receiving physical attack. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5649# +Rental Item +A headgear made in honor of the legendary archer known for shooting an apple perched on a friend's head from a great distance. +-------------------------- +DEX +4 +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5650# +Rental Item +A fashion accessory that gives ears that vaunted, elvish look. For some, it is an incredible turn-on. +-------------------------- +INT +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +5651# +Rental Item +An ancient brooch. +-------------------------- +AGI +4 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5652# +Rental Item +A headgear made from the horns of Baphomet. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 12%. +-------------------------- +Increases ATK based on the wearer's Job Level. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +# +5653# +A Helm crafted by Demons specially for the Dark Lord. +Has several powers set to Dark Lords from the past generations. +-------------------------- +Additional bonus when combined with: +[Eyes of Darkness] +[White Wing Ears] +[Evil Wing Ears] +[Peco Ears] +[Black Frame Glasses] +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +5654# +A marching hat with holy angel wings affixed to the sides made famous by a righteous Rune Midgardian band. +-------------------------- +INT +1 +MATK +2% +MDEF +5 +-------------------------- +Refine Level +7: +Increases Healing skills effectiveness by 5%. +Refine Level +9: +MATK +5% +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5655# +A hat that Dark Snake Lord wears. Feels like being a king when wear this. +-------------------------- +INT +2 +AGI +2 +DEX -2 +-------------------------- +When dealing magical attacks, adds a chance for 5 sec decreasing Variable Casting Time by 50% and increasing FLEE by 30. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5656# +A safety equipment when riding a scooter. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5657# +An antique pipe for making a perfect fashion of captain. +-------------------------- +When equipped with Captain Hat: +For each Refine Level of Captain Hat: +Increases Ranged Physical Damage by 1%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5658# +A hat that mimic Imp, the mascot of Thor Volcano Dungeon. +-------------------------- +Random chance to enchant equipped weapon with Fire elemental for 60 sec when dealing physical damage. +-------------------------- +Random chance to increase Magical Damage with Fire element by 10% for 60 sec when dealing magical damage. +-------------------------- +Refine Level +7: +Increases the chance of increasing Magical Damage with Fire element. +Refine Level +9: +Random chance to auto-cast Level 1 Pulse Strike when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +5659# +A baby Sleeper monster from the Sograt desert. +-------------------------- +Random chance to auto-cast Level 1 Seismic Weapon when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +5660# +A hat that resemble monster Gryphon. +-------------------------- +AGI +2 +-------------------------- +Refine Level +7: +AGI +2 +Refine Level +9: +Increases Physical Damage against enemies of Demon and Undead race by 10%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +5661# +A mark of a good pirate can be gauged by the quality of their bandanas. +-------------------------- +STR +1, DEX +1 +Increases Attack Speed (Decreases After Attack Delay by 2%). +Decreases Variable Casting Time by 2%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5662# +A magnificent crown created to pay tribute to the 7th sign of the zodiac, Libra the Balance. +Attached to the crown is an Opal gemstone, the birthstone for those born under this sign. +-------------------------- +DEX +3, +-------------------------- +Decreases damage taken from Wind elemental attacks by 7%. +-------------------------- +Refine Level +7: +MATK +3% +Refine Level +9: +MATK +5% +Random chance to auto-cast Level 5 Frost Nova when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5663# +A magnificent diadem created to pay tribute to the 7th sign of the zodiac, Libra the Balance. Attached to the crown is an Opal gemstone, the birthstone for those born under this sign. +-------------------------- +ATK +7 +-------------------------- +If upgrade level is +7 or higher, +Random chance to auto-cast Mild Wind Lv.2 when dealing physical damage. +-------------------------- +If upgrade level is +9 or higher, +FLEE +5 +ATK +3% +-------------------------- +Class: Headgear +Position: Upper +Defense: 3 +Weight: 30 +Tier: 5 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +5664# +A cute headgear made in the form of Filir's wings, the most popular bird-like homunclus. +-------------------------- +ASPD +2% +Reduces Global Cooldown by 2% +-------------------------- +Class: Headgear +Position: Middle +Defense: 1 +Weight: 30 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +5665# +A hat used to communicate with the spirits. +-------------------------- +MDEF +5 +-------------------------- +When equipped by Mage classes: +Decreases Variable Casting Time by 3%. +-------------------------- +When equipped by Soul Linker: +Random chance to auto-cast Level 5 Estun when dealing magical damage. +-------------------------- +Refine Level +7: +INT +2 +INT +1 for every Refine Level above +10. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +5666# +Hat worn when on special national events. +-------------------------- +INT +1, DEX +1, LUK +1 +-------------------------- +Refine Level +7: +ATK +5, MATK +5 +Refine Level +9: +MATK +2% +ATK +2% +Refine Level +12: +MATK +3% +ATK +3% +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5667# +This frightening hooded mask is so scary that you don't have to worry about the nasty ghosts bothering you as you Trick or Treat! +-------------------------- +Decreases damage taken from Undead elemental and Demon race monsters by 10%. +-------------------------- +Refine Level +7: +Adds a chance for 10 sec of increasing HIT by 10 and Critical by 30 when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper, Middle +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5668# +A hat for halloween event. +-------------------------- +MDEF +5 +-------------------------- +Random chance a defeated monster will drop Pumpkin Pie. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5669# +Hat resemble poring that ready to party. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5670# +A hat that wear on anniversary event. +-------------------------- +AGI +1 +-------------------------- +Random chance to auto-cast Level 1 Steal when dealing melee physical attacks. +-------------------------- +When equipped with Monocle: +Increases the chance to auto-cast Level 1 Steal. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5671# +An unusually cute doll of the usually hideous Incarnation of Morocc monster. +-------------------------- +When killing enemy with Physical or Magical Damages, restores SP by 2. +-------------------------- +Random chance to inflict Level 2 Critical Wound on attacker when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +5672# +A beautiful hairband made from fabric with enchantment, it's 100% handmade. +-------------------------- +INT +1 +-------------------------- +Ignores magical defense of Boss class by 5%. +-------------------------- +Refine Level +6: +Increases the rate of piercing magical defense of Boss class monsters. +-------------------------- +When equipped with Magical Booster: +Increases Magical Damage against monsters of Boss class by 2%. +When Refine Level of Southern Cross is +5 or higher: +Increases Magical Damage against monsters of Boss class by 3%. +Increases damage taken from monsters of Normal class by 5%. +When Refine Level of Southern Cross is +7 or higher: +Increases Magical Damage against monsters of Boss class by 4%. +Increases damage taken from monsters of Normal class by 5%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5673# +A cute hair ornament made from Sakura blossom. +-------------------------- +Protects from skill cast interruption. +-------------------------- +Increases Variable Casting Time of all skills by 35%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5674# +A good place to store spare change. You never know when you might need zeny here or there for a potion. +-------------------------- +Random chance to gain zeny when defeating monster. +-------------------------- +Increases after cast delay by 10%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5675# +A love letter that sealed with a poring seal. +-------------------------- +Increases Physical Damage against enemies of Plant race by 5%. +-------------------------- +Random chance a defeated monster will drop Unripe Apple. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5676# +A magnificent crown created to pay tribute to the 8th sign of the zodiac, Scorpio the Scorpion. +Attached to the crown is a Topaz gemstone, the birthstone for those born under this sign. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Decreases damage taken from Water elemental attacks by 5%. +-------------------------- +Refine Level +7: +Random chance to auto-cast Level 3 Mild Wind when dealing physical damage. +Refine Level +8: +Increases Attack Speed (Decreases After Attack Delay by 2%). +Refine Level +9: +Random chance to auto-cast Level 5 Frost Nova when dealing physical damage. +Refine Level +10: +ATK +5 +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5677# +A magnificent diadem created to pay tribute to the 8th sign of the zodiac, Scorpio the Scorpion. Attached to the crown is a Topaz gemstone, the birthstone for those born under this sign. +-------------------------- +DEX +2 +-------------------------- +Refine Level +7: +DEX +1 +ATK +5 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5678# +A headband with shape of 8 note. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5679# +An old engineer cap. +-------------------------- +Increases Physical Damage against enemies of Formless race by 10%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5680# +This headgear makes you more sensitive and you could get high concentration. +-------------------------- +HIT +10 +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 1 +# +5681# +A long piece of green satin tied together into a neat little ribbon that wards off harmful magic. +-------------------------- +MDEF +3 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5682# +A fluffy big red hat that made with rune of magic. +-------------------------- +INT +1 +-------------------------- +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +Adds a chance of reflecting magical attack with 40% chance for 2 seconds when receiving magical attack. +Refine Level +7: +MATK +10 +Increases the reflect chance by 60%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5683# +An imitation of the famous Majestic Goat. Though, it seems like it doesn't have any magical effects. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5684# +An imitation of Jewel Crown. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5685# +A well-made replica which can't be distinguished if one doesn't look at it carefully. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5686# +A replica of old fashioned Feather Bonnet. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5687# +A replica of Orc Helm. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5688# +On a yellow heart written in red \ +. +-------------------------- +During event: +All Stats +5 +Decreases damage taken from Demi-Human race by 5%. +Increases HP and SP Recovery Rate by 10%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5689# +Beautiful and bright crown queen ants. +-------------------------- +Random chance to auto-cast Level 1 Sight when receiving physical damage. +-------------------------- +Decreases damage taken from Insect race by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 75 +# +5690# +A red driver's hat decorated with white wings. +-------------------------- +Increases HP and SP Recovery Rate by 20%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: None +# +5691# +This is something that many sailors of Alberta wear when sailing through the seven seas. It helps prevent seasickness and its bright color makes it easier to see men who have fallen overboard. +-------------------------- +DEX +1 +-------------------------- +Increases resistance against Poison status by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +5692# +This is a good companion to have when spending months sailing on a ship. Sailors of Alberta also believe that it is a good luck charm against bad luck and curses. +-------------------------- +DEX +1 +-------------------------- +Increases resistance against Curse status by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +5693# +It's what's inside the man that makes him who he really is. Got the Balls for it? +-------------------------- +STR +1 +INT +1 +DEX +1 +MaxHP +700 +-------------------------- +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +When equipped with NoFear Shoes and NoFear Belt: +Prevents Frozen status +Increases experience gained from defeating monsters by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +5694# +A headband with word written in bold. Got Game? +-------------------------- +VIT +1 +MaxHP +100 +-------------------------- +Decreases damage taken from Demi-Human by 2%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +5737# +The friendly Potted Muka likes to encourage you by aggravating your opponents! +-------------------------- +Random chance a defeated Plant monster will drop Cactus Needle. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5738# +A hat that is a constant reminder of the Winter season. +-------------------------- +STR +1 +INT +1 +MDEF +3 +-------------------------- +Increases resistance to Water property by 7%. +-------------------------- +Random chance to auto-cast Level 1 Frost Joker when receive physical or magical damage. +-------------------------- +If refined to 8: +auto-casts Level 5 Frost Joker instead. +-------------------------- +Type: Headgear +Defense: 4 +Location: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5739# +A magnificent crown created to pay tribute to the 9th sign of the zodiac, Sagittarius the Archer. +Attached to the crown is a Zircon gemstone, the birthstone for those born under this sign. +-------------------------- +DEX +2 +-------------------------- +Decreases damage taken from Fire elemental attacks by 7%. +-------------------------- +Refine Level +7: +ASPD +2% +-------------------------- +Refine Level +8: +AGI +2 +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +10: +Adds 0.3% chance to increase DEX and AGI by 10 for 10 seconds when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +Tier: 5 +-------------------------- +Requirement: None +# +5740# +A magnificent diadem created to pay tribute to the 9th sign of the zodiac, Sagittarius the Archer. +Attached to the crown is a Zircon gemstone, the birthstone for those born under this sign. +-------------------------- +DEX +2 +MDEF +3 +-------------------------- +Decreases damage taken from Fire elemental attacks by 7%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 3%. +-------------------------- +Refine Level +8: +Random chance to auto-cast Level 1 Sightrasher when dealing magical damage. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 2%. +-------------------------- +Refine Level +10: +MATK +4% +-------------------------- +Type: Headgear +Defense: 3 +Position: Uppper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5741# +Hat made from eternal shell egg. Wearing it make you feel immortal. +-------------------------- +Increases recovery amount gained from Potions by 10% and Healing skills by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5742# +Rudolf the red-nosed reindeer had a very shiny Hat! +-------------------------- +Increases recovery amount gained from Piece of Cake and Well-baked Cookie by 100%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5743# +A hat that ideal for New year celebration. +-------------------------- +LUK +3 +-------------------------- +Random chance a defeated monster will drop Orange. +-------------------------- +When equipped with Pet Mochi: +When pet intimacy is Cordial: +Random chance to auto-cast Level 1 Kyrie Eleison when dealing physical damage. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5744# +A magnificent crown created to pay tribute to the 10th sign of the zodiac, Capricorn the Goat. +Attached to the crown is a Garnet gemstone, the birthstone for those born under this sign. +-------------------------- +DEX +2, VIT +2 +-------------------------- +Refine Level +7: +Random chance to auto-cast Level 1 Mild Wind when dealing melee physical attacks. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5745# +A magnificent diadem created to pay tribute to the 10th sign of the zodiac, Capricorn the Goat. Attached to the crown is a Garnet gemstone, the birthstone for those born under this sign. +-------------------------- +DEX +2 +MDEF +5 +-------------------------- +Increases resistance to Earth property by 5%. +-------------------------- +If refined to 7 or higher +INT +2 +-------------------------- +If refined to 8 or higher +Decreases Variable Casting Time by 3%. +-------------------------- +If refined to 9 or higher +increases the effectiveness of Heal and Sanctuary skills by 4%. +-------------------------- +If refined to 10 or higher +when attacked, has a low chance of auto-casting Lv 5 Hammer Fall. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5746# +A runic circlet designed for a Rune Knight. +-------------------------- +STR +1, INT +1 +MDEF +5 +-------------------------- +Base STR at least 120: +ATK +10, MATK +5 +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +5747# +A hat which is used for ceremonies by bishops. +-------------------------- +INT +1, VIT +1 +MDEF +5 +-------------------------- +Increases Healing skills effectiveness by 5%. +-------------------------- +Base INT at least 120: +MATK +10 +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +5748# +A specially designed goggle for snipers. +-------------------------- +DEX +1, AGI +1 +MDEF +5 +-------------------------- +Base AGI at least 120: +ASPD +1 +Increases Ranged Physical Damage by 4%. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper, Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Ranger +# +5749# +A special hairband which is designed to use the most frequently used tools. +-------------------------- +STR +1 +DEX +1 +MDEF +5 +-------------------------- +Base STR at least 120: +ATK +10 +Critical +3 +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +5750# +A mini crown which is made at Shadow Artworks. Masterpiece of the designer Doomk. +-------------------------- +INT +1 +AGI +1 +MDEF +5 +-------------------------- +Base AGI at least 120: +ATK +10 +FLEE +3 +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +5751# +A hat of a famous minstrel. Fancy and plentiful black feathers adorn this hat. +-------------------------- +INT +1 +LUK +1 +MDEF +5 +-------------------------- +Increases Ranged Physical Damage by 5%. +-------------------------- +Decreases SP Consumption of Windmill Rush by 10. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Minstrel +# +5752# +Free gift of a famous Genetic Bob Rose's book. Midas mark looks cute. +-------------------------- +STR +1 +DEX +1 +MDEF +5 +-------------------------- +Base STR at least 120: +ATK +5 +ASPD +1 +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Genetic +# +5753# +A hat which is decorated with minerals from an unknown world that has magical power in it. +-------------------------- +INT +1 +DEX +1 +MDEF +5 +-------------------------- +Base DEX at least 120: +MATK +10 +Decreases Variable Casting Time by 2%. +-------------------------- +Type: Headgear +Defense: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Warlock +# +5754# +A hat made for those who decide to become a Sura. It expresses a burning spirit. +-------------------------- +STR +1 +VIT +1 +MDEF +5 +-------------------------- +Base STR at least 120: +ATK +10 +HIT +3 +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Sura +# +5755# +A costume mask which is designed for Guillotine Cross. +-------------------------- +AGI +1 +MDEF +5 +-------------------------- +Base AGI at least 120: +ATK +10 +FLEE +5 +-------------------------- +Type: Headgear +Defense: 6 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +5756# +A hat for a ritual ceremony which is made from a spiritual feather. +-------------------------- +INT +1 +DEX +1 +MDEF +5 +-------------------------- +Base INT at least 120: +MATK +10 +FLEE +3 +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +5757# +A headgear which is focused on defense. It covers almost all of the face. +-------------------------- +INT +1 +VIT +2 +MDEF +5 +-------------------------- +Base INT at least 120: +MATK +10 +DEF +5 +-------------------------- +Type: Headgear +Defense: 17 +Position: Upper, Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Royal Guard +# +5758# +A beautiful head ornament of a ballerina. +-------------------------- +INT +1 +LUK +1 +MDEF +5 +-------------------------- +Increases Ranged Physical Damage by 5%. +-------------------------- +Decreases SP Consumption of Swing Dance and Symphony of Lover by 10. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Wanderer +# +5759# +A Noah's hat which she got from his father when she was a child. +This hat tittled as the best Midgard's Chromium based production. +-------------------------- +MDEF +3 +Increases SP Recovery Rate by 3%. +-------------------------- +When equipped by Acolyte classes: +Increases damage of Holy Light by 5%. +Refine Level +7: +Increases damage of Holy Light by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5760# +A special hairband which is designed to use the most frequently used tools. +-------------------------- +STR +1 +DEX +1 +MDEF +5 +-------------------------- +Base STR at least 120: +ATK +10 +Critical +3 +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +5761# +This cute Sloth must think you look like a tree. At least it warms the top of your head. +-------------------------- +AGI +2 +-------------------------- +Random chance to auto-cast Level 5 Sonic Blow when dealing melee physical attacks. +(his effect will override any previous effect) +-------------------------- +Class: Headgear +Position: Upper +Defense: 3 +Weight: 80 +Tier: 6 +Required Level: 1 +Usable By: All Jobs +# +5762# +A hat similar to the MVP Duneyrr. +-------------------------- +All Stats +1 +MDEF +5 +-------------------------- +Decreases damage taken from Demi-Human and Brute race by 2%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5763# +A hairband that attracts men. You can wear it when you want to look sexy. +-------------------------- +AGI +2 +MDEF +3 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5764# +A hood made by a renowned doll maker with the love toward bunnies. +-------------------------- +Random chance to auto-cast Level 3 Gloria when dealing physical damage. +Base AGI at least 80: +Increases auto-cast rate. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper, Middle, Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5765# +Dark neat black ribbon. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Decreases damage taken from Ranged Physical Damage by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Uppper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5766# +Smooth fluffy cap inspired by Homunculus Amistr. +-------------------------- +VIT +1 +Adds a 6% chance to auto-cast Pierce Lv.5 when performing a normal physical attack. +-------------------------- +For each 2 Refine Levels: +VIT +1 +-------------------------- +When equipped with Romantic Leaf: +Reflect melee physical damage by 1%. +For each 2 Refine Levels: +Reflect melee physical damage by additional 1%. +-------------------------- +When equipped with Romantic Flower: +MaxSP +20. +For each 2 Refine Levels: +MaxSP +10. +-------------------------- +When equipped with Scarlet Rose: +For each Refine Level: +ATK +1%, MATK +1%. +-------------------------- +When equipped with Crunch Toast: +MaxHP +100. +-------------------------- +Refine Level +7 or higher: +MaxHP +100. +-------------------------- +Refine Level +9 or higher: +MaxHP +200. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +All Jobs +# +5767# +Amatsu warrior Samurai wearing mask during the War time. +-------------------------- +ATK +1%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +5768# +A beautiful pink corolla. +-------------------------- +MaxSP +25 +-------------------------- +When equipped with Romantic Flower: +INT +1 +-------------------------- +For each Refine Level above +6 of Sakura Coronet: +MaxSP +1% +-------------------------- +When equipped with Romantic White Flower: +DEX +1 +-------------------------- +For each Refine Level above +4 of Sakura Coronet: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Romantic Leaf: +STR +1 +-------------------------- +For each Refine Level above +3 of Sakura Coronet: +Decreases SP Consumption by 1%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +# +5769# +A statue of Baby Angel made from Gold. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5770# +A cute Pouring who's jumping on your head. +-------------------------- +AGI +3 +-------------------------- +Random chance to enchant equipped weapon with Wind element for 3 minutes when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5771# +Let's show your love to your family! +-------------------------- +DEX +1 +MDEF +1 +MaxHP +2% +MaxSP +2% +-------------------------- +Enables the use of Level 1 Magnificat. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5772# +This is the hat worn by great Admirals of the navy fleet that defends the port of Alberta. +Only those who have spent a lot of time helping the people of Alberta can earn this honorable hat. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 95 +# +5773# +This is a navy blue beret worn by the elite soldiers of the Navy of Alberta. +It is very effective when battling pirates on the high seas. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 95 +# +5774# +Aaarrrgghhhh, this hat be made out of bona fide unidentified dead animal leather. +With time, aging and weathering, most of the hat formed into it's current shape and dyed a bright red. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +5775# +Chewing on this chocolate ring-shaped fried cake will make you happy. +-------------------------- +MaxHP +100. +Recover 1 HP every 10 seconds. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5776# +A blazing small Sun. Much powerful than it looks. Eye protection recommended. +-------------------------- +Decreases Variable Casting Time of Fire Bolt and Fire Ball by 5%. +-------------------------- +Increases damage of Fire Bolt and Fire Ball by 5%. +-------------------------- +Increases damage of Fire Wall and Meteor Storm by 3%. +-------------------------- +Increases SP Consumption by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5777# +A replica of a fireman helmet. Not as durable as the real one. +-------------------------- +MDEF +1 +-------------------------- +Random chance a defeated Formless monster will drop Empty Bottle, Ditrimindexta or Karvodailnirol. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5778# +Having saved her from the roasting pan this Turkey now rests comfortably on your head. +-------------------------- +STR +2 +-------------------------- +Random chance to Reduces After Attack Delay by 5% for 10 seconds when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5779# +A cute turtle hat, \ + is a legend between brazil about a beautiful woman. +-------------------------- +INT +2 +-------------------------- +Random chance to increase MATK by 3% for 10 seconds when dealing magical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5780# +A masterpiece of craftmanship which modeled after the monster Tendrillion. +-------------------------- +Enables the use of Level 3 Earth Spike +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5781# +A hairpin made by aromatic floral leaf which is known as a first symbol of spring. +-------------------------- +FLEE +1 +MaxSP +20 +-------------------------- +When equipped with Romantic Flower: +INT +1 +MaxSP +30 +-------------------------- +When equipped with Romantic Leaf: +LUK +1 +FLEE +2 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5782# +A Helm used in ancient western country that was famous for close formation and tight defense. +-------------------------- +MaxHP +3% +-------------------------- +When equipped with Pike: +ATK +3% +-------------------------- +When equipped with Gladius: +ATK +3% +-------------------------- +When equipped with Strong Shield: +DEF +2 +Decreases damage taken from all elemental physical attack by 5%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper, Middle, Lower +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: None +# +5783# +A hairband that attracts men. You can wear it when you want to look sexy. +-------------------------- +STR +1 +INT +1 +DEX +2 +-------------------------- +Refine Level +9: +ATK +2% +MATK +2% +-------------------------- +Refine Level +10: +ATK +2% +MATK +2% +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5784# +A hairband that attracts men. You can wear it when you want to look sexy. +-------------------------- +STR +1 +INT +2 +DEX +1 +-------------------------- +Refine Level +9: +ATK +2% +MATK +2% +-------------------------- +Refine Level +10: +ATK +4% +MATK +4% +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5785# +A hairband that attracts men. You can wear it when you want to look sexy. +-------------------------- +STR +2 +INT +1 +DEX +1 +-------------------------- +Refine Level +9: +ATK +2% +MATK +2% +-------------------------- +Refine Level +10: +ATK +4% +MATK +4% +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5786# +An accessory with the spirit of an ancient elf who loved nature. + +LUK +1, Max HP +100, Max SP +30. + +When equipped Romantic Leaf, +LUK +5 +Increase physical damage against all class monster by 2%. + +When equipped Romantic Flower, +INT +5 +MATK +2% +-------------------------- +Class: Headgear +Position: Middle +Defense: 0 +Weight: 20 +Requires Level: 1 +Usable By: All Jobs +# +5788# +Mysterious glasses which are said to show objects stereoscopically. +-------------------------- +When equipped by Swordman, Merchant, Archer or Gunslinger: +Increases ATK +-------------------------- +When equipped by Mage, Acolyte, Ninja or Soul Linker: +Increases MATK +-------------------------- +When equipped by Thief classes: +Increases FLEE +-------------------------- +When equipped by Novice, Super Novice, Taekwon/Girl or Star Gladiator: +Increases MaxHP and MaxSP +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5789# +Thanatos Odium wore mask. Cute design with high def rate. +-------------------------- +VIT +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper, Middle, Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5790# +A hat full of mother's love. Sacrifice herself to help you. +-------------------------- +Decreases damage taken from Demi-Human and Undead race by 5%. +-------------------------- +Random chance to auto-cast Level 1 Blessing on the target when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper, Middle +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +# +5791# +A ramen that was made to celebrate Tenkaippin event. +-------------------------- +INT -1 +DEX +4 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5792# +A fish-shaped pin. It's pretty but doesn't seem very powerful. +-------------------------- +Decreases damage from fish-type monsters by 1%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5793# +Rental Item +Yellow, green matching cute ribbon item. +-------------------------- +INT +1 +MDEF +2 +-------------------------- +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +When VIP status active: +All Stats +1 +INT +2 +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5794# +Rental Item +A mysterious glasses that can see 3d object. Wearer's job affect the bonus given. +-------------------------- +When equipped by Swordman, Merchant, Archer, Gunslinger classes: +Increases ATK. +-------------------------- +When equipped by Mage, Acolyte, Ninja, Soul Linker classes: +Increases MATK. +-------------------------- +When equipped by Thief classes: +Increases FLEE. +-------------------------- +When equipped by Novice, Super Novice Taekwondo, Star Gladiator classes: +Increases MaxHP and MaxSP. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5795# +A bright and beautiful miniature hat worn mostly for special occasions. +-------------------------- +MDEF +7 +-------------------------- +For each 2 Refine Levels: +MDEF+1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +5796# +Rental Item +Passionate red Cheering Scarf. +-------------------------- +Increases experience gained from defeating monsters by 20%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5797# +Rental Item +Passionate red Cheering Scarf. +-------------------------- +Increases experience gained from defeating monsters by 20%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5798# +Rental Item +Passionate red Cheering Scarf. +-------------------------- +Increases experience gained from defeating monsters by 30%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5799# +Rental Item +Passionate red Cheering Scarf. +-------------------------- +Increases experience gained from defeating monsters by 40%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5800# +A blushing impression of a bridegroom. +-------------------------- +Reduces damage from Demi-Human race by 3%. +-------------------------- +Class: Headgear +Position: Middle +Defense: 0 +Weight: 5 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +5801# +Pretty red ribbon. You can feel the sweetness of love. +-------------------------- +All Stats +2 +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Random chance to auto-cast Level 5 Heal on wearer when receiving physical damage. +(Casts Level 10 Heal instead, if Level 10 Heal is learned.) +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5802# +An animal representing Thailand. It's huge but very innocent and kind to human. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5803# +Braids woven with a subtle floral fragrance. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5804# +An eye bandage worn by infamous pirates back in the old day. +Makes its wearer feel out of perspective when worn. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5805# +A headband given to the winner. It was said that only a true warrior can wear it. +-------------------------- +MaxHP +15% +Increases SP Recovery Rate by 5%. +-------------------------- +Type: Headgear +Defense: 2 +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +5806# +A hat of Poet Natalia, its made from reed and bamboo. +-------------------------- +Type: Headgear +Defense: 9 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5807# +The cap which makes you look better in the fest. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +All Jobs except Novice +# +5808# +A strong diadem which has been covered the face of Satan Morocc. It can be possessed only by the ones who have overcome the fear of Satan Morocc. +-------------------------- +Increases resistance against Stone Curse, Frozen and Stun by 20%. +-------------------------- +For each Refine Level: +Increases resistances by 2% (up to +10). +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle, Lower +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent classes +# +5809# +A hat that seems to explode at any moment. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5810# +A ceremonial hat worn during one's graduation. +-------------------------- +INT +5 +VIT +3 +DEX +3 +-------------------------- +Increases damage taken from Shadow, Undead and Fire elemental attacks by 5%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +5811# +A beard that seems to make you let out a guffaw. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5812# +For water experts only! +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5813# +A red graduation hat. +-------------------------- +INT +1 +Restore small amount of SP when killing enemy with magical attacks. +Restores HP by 1 for every 10 second. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5814# +Rental Item +A headgear which is made of many kinds of property rings. It looks very luxurious and charming. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Decreases damage taken from Water, Fire and Wind elemental attacks by 5%. +-------------------------- +Decreases damage taken from Ghost elemental by 10%. +-------------------------- +Increases Physical Damage against enemies of Ghost element and Demi-Human race by 50%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle, Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +5815# +A classic hat. +-------------------------- +STR +1 +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 5%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5816# +A hat, symbolizing western frontiers, made to celebrate the festival. +-------------------------- +ATK +15 +FLEE -5 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +5817# +A special emblem that is given to the winner of the Valentine's Hottest Contest. +-------------------------- +All Stats +2 +MATK +3% +FLEE +10 +ASPD +1 +MDEF +3 +ATK +3% +Increases recovery amount gained from Healing skills, Potion Pitcher and recovery class Potions by 10%. +-------------------------- +Type: Accessory +Defense: 6 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5818# +A hat which made to celebrate the festival. +'Made especially for you.' +-------------------------- +All Stats +3 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5819# +A Circlet that will be used in Carnival festival +'Made especially for you.' +-------------------------- +All Stats +3 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5820# +An ears modeled after the ears of Elven. It has black color. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5821# +Made in the form of a golden tulip shiny bezel. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5822# +The little chick converted from love energy. Please handle with care. +-------------------------- +LUK +4 +MaxHP +100 +MaxSP +100 +-------------------------- +Decreases damage taken from Demi-Human and Brute race by 7%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5823# +It is said that people, which gets an arrow of Cupid, fall in love with the first got in the way of man. +-------------------------- +DEX +5 +AGI +5 +-------------------------- +Type: Accessory +Defense: 2 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5824# +Funny hats made for April Fool's Day. +-------------------------- +Type: Headgear +Defense: 6 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5825# +A badge engraved with Pegasus patern, symbolizes the spirit of Knight. +-------------------------- +MaxHP +1500 +ATK +10% +MATK +10% +DEF +1 +MDEF +1 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5826# +Valkyrie helmet with the powerful energy of the Gods. +This thing is not designed for people so you can not use it for too long. +-------------------------- +STR +2 +AGI +2 +INT +2 +DEX +2 +MDEF +5 +Increases Attack Speed (Decreases After Attack Delay by 3%). +Decreases Variable Casting Time by 3%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5827# +A stylish stack of geology text books. +-------------------------- +Int +1 +-------------------------- +Gives the Wearer 5% resistance to Earth Property Attacks +-------------------------- +For every refine level up to +9 gives the wearer an atk/matk bonus of 1% with a maximum of +9% +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5828# +Gold ring engraved with \ +. +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: None +# +5829# +An ordinary armor, nobody knows that it can be Refined or not. +-------------------------- +Type: Armor +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5830# +Enhanced version of Sakkat from the Midgard Crowd Control event. +-------------------------- +Decreases damage taken from Demi-Human by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5831# +Enhanced version of Big Ribbon from the Midgard Crowd Control event. +-------------------------- +Decreases damage taken from Demi-Human by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5832# +Enhanced version of Vane Hairpin from the Midgard Crowd Control event. +-------------------------- +Decreases damage taken from Demi-Human by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5833# +Enhanced version of Sunday Hat from the Midgard Crowd Control event. +-------------------------- +Decreases damage taken from Demi-Human by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5834# +Enhanced version of Crown from the Midgard Crowd Control event. +-------------------------- +Decreases damage taken from Demi-Human by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5835# +Enhanced version of Tiara from the Midgard Crowd Control event. +-------------------------- +Decreases damage taken from Demi-Human by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5836# +Enhanced version of Boy's Cap from the Midgard Crowd Control event. +-------------------------- +Decreases damage taken from Demi-Human by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5837# +Enhanced version of Sunglasses from the Midgard Crowd Control event. +-------------------------- +Decreases damage taken from Demi-Human by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +5838# +Enhanced version of Fin Helm from the Midgard Crowd Control event. +-------------------------- +Decreases damage taken from Demi-Human by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +5839# +Enhanced version of Blush from the Midgard Crowd Control event. +-------------------------- +Decreases damage taken from Demi-Human by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +5840# +Enhanced version of Elven Ears from the Midgard Crowd Control event. +-------------------------- +Decreases damage taken from Demi-Human by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +5841# +A red small hat with the fabulous pheasant feather. It seems to be used to communicate with souls. +-------------------------- +Decreases damage taken from magical attacks by 3%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5845# +If you wear any message that appears above the head, this step is very, very light. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +5846# +Delicious gum ball biting on the mouth. +-------------------------- +MDEF +5 +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5847# +Helmet stupid enough electrolytes to legend. +Bemused expression and sediment strength, slow ... but it is actually a wise action! +-------------------------- +INT +5, VIT -3 +-------------------------- +Random chance to auto-cast Level 10 Blessing on wearer when dealing physical or magical attack. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5848# +A simple mask that you can use to disguise yourself with. Well, at least your eyes won't look the same. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5849# +Wearing this will help disguise you as a real doctor. +Warning: This is just a costume. Un-licensed medical service is against the law. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5850# +A Cute little Golden Savage doll hat. +-------------------------- +Increases HP and SP Recovery Rate by 5%. +MaxHP +250 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5851# +Rental Item +A hat that holds spirit of sun. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Random chance to auto-cast Level 1 Sight or Sight Trasher when wearer receiving physical or magical attack. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper, Middle +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5852# +A colorful egg shell that seems fragile but has mysterious healing power within. +-------------------------- +MDEF -7 +-------------------------- +Recover 1% HP every 10 seconds. +-------------------------- +Refine Level +7: +FLEE +2 +-------------------------- +Refine Level +9: +Recover 1% SP every 10 seconds. +-------------------------- +Type: Headgear +Defense: -7 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +5855# +Real masters don't blame the tool. +I feel like I could fishing all, fishing rod seems mediocre but it's not. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5856# +A hat which makes you feel the air of festivity. Play all over the ground with amazing vitality!! +-------------------------- +STR +2 +DEX +2 +-------------------------- +Random chance to increase damage inflicted with Ranged Physical Damage by 5% and reducing FLEE by 15 for 10 sec when dealing melee physical attacks. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: None +# +5857# +A hat which makes you feel the air of festivity. +Throw a great shot with the outstanding strength!! +-------------------------- +STR +2, INT +1, VIT +1, DEX +2, AGI +2, LUK +2. +MDEF +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5858# +A hat which makes you feel the air of festivity. +Make the other team overwhelmed with your smart strategy!! +-------------------------- +STR +1, INT +2, VIT +1, DEX +2, AGI +2, LUK +2. +MDEF +1. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5859# +A hat which makes you feel the air of festivity. +Fight to death for the moment of glory!! +-------------------------- +All Stats +1 +ASPD +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +5860# +Enhanced version of Army Cap from the Midgard Crowd Control event. +-------------------------- +Decreases damage taken from Demi-Human by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5861# +Enhanced version of Kafra Band from the Midgard Crowd Control event. +-------------------------- +Decreases damage taken from Demi-Human by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5862# +Enhanced version of Sweet Gent from the Midgard Crowd Control event. +-------------------------- +Decreases damage taken from Demi-Human by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5863# +Enhanced version of Zoro Mask from the Midgard Crowd Control event. +-------------------------- +Decreases damage taken from Demi-Human by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +5864# +A tool that can control brain waves to amplify one's skills. +-------------------------- +ASPD +1 +Reduces Global Skill Cooldown by 1%. +-------------------------- +Type: Headgear +Position: Middle +Defense: 0 +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: Base Level 1 +Usable By: All Jobs +# +5865# +A cute headgear made in the form of Filir's wings, the most popular bird-like homunclus. +-------------------------- +Increases Physical Damage against enemies of Insect race by 5%. +-------------------------- +Decreases damage taken from Insect race by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5866# +A branch of Crimson Cherry Blossom filled with the power of fire. +-------------------------- +Increases damage of Meteor Storm and Crimson Rock by 3%. +-------------------------- +Increases SP Consumption by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5867# +A hat that imitate cat that sleeping on cushion under the sunlight. +-------------------------- +Decreases damage taken from Fish race monsters by 5%. +-------------------------- +Refine Level +6: +Decreases damage taken from Fish race monsters by 5%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5868# +This is not a regular fake moustache, this one has been made from a real one that was grown over years with affection and care. Feels strong. +-------------------------- +ATK +10, MATK +10 +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5869# +A helmet made by mysterious eggs. +-------------------------- +Random chance to inflict Stone Curse status on the target when dealing physical damage. +-------------------------- +Increases movement speed. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5870# +Helmet made by mysterious eggs. Pink bunny is so cute. +-------------------------- +AGI +3 +ASPD +1 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5871# +Helmet made by mysterious eggs. Picky is hippity-hoppity on the head. +-------------------------- +VIT +3 +MDEF +2 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5872# +A special wreath. +-------------------------- +All Stats +1 +MDEF +5 +-------------------------- +Random chance a defeated monster will drop Mother's Day Cake. +Refine Level +6: +Increases the drop rate. +-------------------------- +Refine Level +10: +All Stats +1 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5873# +A helmet which has been worn by a legendary dragon slayer. This hat is made of real dragon wings and a piece of dragon skin. +Wearing this hat makes you feel epic and powerful. +-------------------------- +All Stats +5 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Decreases damage taken from Dragon race by 5%. +-------------------------- +Random chance to auto-cast Level 5 Assumptio on wearer when receiving physical damage. +-------------------------- +Drains 600 HP every 4 seconds. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +Transcendent Swordsman and Merchant +# +5874# +The golden falcon is a sign of destiny and will protect its owner from evil forces. +It has been worn by a brave woman. The power of this circet makes you feel very brave. +-------------------------- +All Stats +5 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Decreases damage taken from Dragon race by 5%. +-------------------------- +Random chance to auto-cast Level 5 Kyrie Eleison on wearer when receiving physical damage. +-------------------------- +Drains 400 HP every 4 seconds. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +Transcendent Archer and Thief +# +5875# +This diadem has been worn by a heroic woman. The legend says she had supernatural powers. +You can feel a strong magic flow when wearing it. +-------------------------- +All Stats +5 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Decreases damage taken from Dragon race by 5%. +-------------------------- +Random chance to auto-cast Level 5 Endure on wearer when receiving physical damage. +-------------------------- +Drains 300 HP every 4 seconds. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5876# +This stylish bandeezy expresses your patriotic spirit and makes you feel like some kind of professional grappler. +-------------------------- +All Stats +1 +-------------------------- +Enables the use of Level 1 Bash. +-------------------------- +Refine Level +7: +Increases damage to all monsters by 10%. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5877# +These colors don't run, but you will (faster) when wearing this Old Glory adorned hat. +-------------------------- +Increases movement speed. +-------------------------- +Refine Level +7: +LUK +10 +FLEE +10 +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +5878# +A blue rose which shouldn't exist. Geneticists dream of being able to make this. +-------------------------- +LUK +1 +Adds a 5% chance to cast Aspersio Lv.1 on the user when performing a physical attack. +-------------------------- +Casting Aspersio does not need to consume Holy Water.. +-------------------------- +Class: Headgear +Position: Lower +Defense: 0 +Weight: 30 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +5879# +Sunglasses shaped like Poring. This is the season item for your fashion. +-------------------------- +Decreases damage taken from Plant race by 5%. +-------------------------- +Increases Physical Damage against enemies of Plant race by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5880# +A whistle that makes you cheer up. +-------------------------- +STR +1 +-------------------------- +Random chance to auto-cast Level 1 Magnificat on wearer when receiving physical or magical attack. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5881# +Yummy beer made of wheat and yeast. A secret recipe has been developed for hundreds of years. +Note: You can be drunken because its taste is so so good! +-------------------------- +MaxHP +3% +MaxSP +3% +DEX -10 +-------------------------- +Refine Level +7: +MaxHP +5% +MaxSP +5% +DEX -5 +When equipped, you're doing someething strange because you're drunk. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5888# +A transparent veil worn by brides on the day of their wedding. +-------------------------- +MDEF +5 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Female Only; +# +5889# +A true Orc Hero's headgear. It's so big and heavy that it might hurt your neck. +-------------------------- +STR +2 +-------------------------- +Nullifies reduction in damage against monsters resulting from monster's size. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: None +# +5890# +An Earring collected from the wings of Angel. +-------------------------- +All Stats +1 +MDEF +3 +-------------------------- +When equipped with Luna's Blessing: +Increases Physical Damage against enemies of all monsters by 3%. +-------------------------- +When equipped with Safety Ring: +DEF +7 +MDEF +7 +-------------------------- +When equipped with Critical Ring: +Critical +7 +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5891# +A hat decorated with black cat. +-------------------------- +Random chance to auto-cast Level 5 Scream when the user receives Physical or Magical Damage. +-------------------------- +When equipped with Romantic Leaf or Romantic Flower: +All Stats +1 +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5896# +A hat made based of freshly baked tart. +-------------------------- +DEX +2, LUK +1 +MDEF +3 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +5897# +A replica of the legendary artifact left behind by the greatest Super Novice to ever walk the earth. +The real one has been lost for ages, but this replica can imitate some of its awesome power. +-------------------------- +ATK +30, MATK +30 +HIT, FLEE, CRIT, MDEF +10. +Perfect Dodge +5. +ASPD +2. +Decreases Variable Casting Time by 20%. +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Refine Level +7: +MaxHP +1000 +MaxSP +100 +Refine Level +9: +All Stats +5 +-------------------------- +Type: Headgear +Defense: 20 +Position: Upper +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Super Novice +# +5898# +A hairband with an array of autumn leaves attached to it. It displays the beauty of an autumn forest for all to see. +-------------------------- +Decreases SP Consumption of Wind Walk by 20. +-------------------------- +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +7: +Increases ATK by 2 for every 5 base INT. +Refine Level +9: +Increases damage of Arrow Storm by 2% for every 10 Base Level. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Ranger +# +5899# +A simple black ribbon that promotes focus no matter how intense the battle is. +-------------------------- +Increases damage of Sonic Wave and Wind Cutter by 50%. +-------------------------- +Refine Level +7: +ATK +2 for every 5 base AGI. +Refine Level +9: +Increases damage of Ignition Break by 30%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +5900# +A majestic hat that displays the divine authority that has been invested in the wearer. +-------------------------- +Decreases damage taken from Small, Medium and Large size monsters by 5%. +-------------------------- +Refine Level +7: +Random chance to auto-cast Level 5 Heal on yourself when wearer receive physical attack. (Or activate based on learned skill Level) +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +5901# +A green beret that helps the user to refocus their energy into more meaningful attacks. The star on the front is inscribed with the character for Dragon. +-------------------------- +Random chance to auto-cast Level 1 Fallen Empire when using Dragon Combo. (Or activate based on learned skill Level) +-------------------------- +Refine Level +7: +Adds 3% chance of increasing ASPD by 2 for 5 sec when dealing physical damage. +Refine Level +9: +Increases damage of Fallen Empire by 30%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Sura +# +5902# +A good-luck hat worn by farmers to make sure they collect an exceptionally good harvest. Some say it was blessed by the Harvest Goddess herself. +-------------------------- +Random chance a defeated monster will drop Blood Sucker Plant Seed or Bomb Mushroom Spore. +-------------------------- +Refine Level +7: +Random chance a defeated monster will drop Thorn Seed. +Refine Level +9: +Increases damage of Cart Cannon by 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Genetic +# +5903# +A normal ghost bandana with a red spiral insignia on the front. +It demonstrates a strong connection between the wearer and the afterlife. +-------------------------- +Random chance to auto-cast highest Level learned Eswoo on wearer when receiving physical damage. +-------------------------- +For each Refine Level: +Critical +2 +Decreases Fixed Casting Time by 2%. +-------------------------- +Refine Level +7: +MATK +20 +Increases Variable Casting Time of Eswoo by 3%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 20%. +Decreases SP Consumption of Estun and Esma by 5. +-------------------------- +Type: Headgear +Defense: 15 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Magician and Soul Linker classes +# +5904# +A simple hat that would look inconspicuous in any crowd. Its very helpful to anyone who is trying to blend in. +-------------------------- +MATK +7% +-------------------------- +Refine Level +7: +For each 5 base INT: +MATK +2 +-------------------------- +Refine Level +9: +MATK +5% +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +5905# +A finely crafted hat designed just for minstrel. +You can't see from the outside, but on the inside is written every song a Maestro needs to make it big! +-------------------------- +Increases damage of Severe Rainstorm by 15%. +-------------------------- +Refine Level +7: +Decreases Fixed Casting Time by 4% For each Level of Voice Lessons learned. +-------------------------- +Refine Level +9: +Decreases SP Consumption of Severe Rainstorm by 10. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Minstrel +# +5906# +Twisted horns that were supposedly crafted to look like those of a race of demons that died out long ago. +Apparently placing them on your head can grant you a small amount of their power. +-------------------------- +Increases damage of Counter Slash by 10% For each Level of Weapon Blocking learned. +-------------------------- +Refine Level +7: +ATK +20 +HIT +5 +-------------------------- +Refine Level +9: +Random chance to auto-cast Level 1 Cross Impact when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +5907# +A crisp white hat most often used by the captains of large naval craft. +It came to be seen as a sign of unwavering strength in the eyes of naval crews everywhere. +-------------------------- +Increases damage of Axe Tornado and Axe Boomerang by 20%. +-------------------------- +Refine Level +7: +each learned Level of Weaponry Research increases damage of Axe Tornado by an additional 1% +-------------------------- +Refine Level +9: +each learned Level of Axe Training increases damage of Axe Tornado by an additional 1% +-------------------------- +Type: Headgear +Defense: 20 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +5908# +A special decoration wore by person whose terminating the undead. +-------------------------- +MDEF +3 +-------------------------- +Increases Damage against monsters of Undead race by 5%. +-------------------------- +Decreases damage taken from Undead race by 5%. +-------------------------- +Random chance a defeated Undead monster will drop Giggling Box. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +5909# +A costume that proove someone is valkyrie delegation. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +5910# +A decoration Earrings. +-------------------------- +STR +2 +MaxSP +50 +MDEF +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5911# +A costume made of feathers of Gryphon. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +5912# +A costume that resemble the devil's servant. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +5913# +A golden mask of Wind Goddes. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +5914# +A costume with sparkling and shining butterfly. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +5915# +A veil made from a lot feathers, its give you feeling being wrapped by angel's wings. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +5916# +A sunglasses specially made to counter a demon. +-------------------------- +Increases Physical Damage against monsters of Demon race by 5%. +-------------------------- +Decreases damage taken from Demon race monsters by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5917# +A scarf with a peaceful color. Wore by people who participate in demonstration. +-------------------------- +Decreases damage taken from Ranged Physical Damage by 3%. +-------------------------- +When equipped with Yellow Hood: +Refine Level of Yellow Hood +5 or higher: +Decreases damage taken from Ranged Physical Damage by 3%. +Refine Level of Yellow Hood +7 or higher: +Decreases damage taken from Ranged Physical Damage by 4%. +-------------------------- +When equipped with Yellow Ribbon: +Refine Level of Yellow Ribbon +5 or higher: +Decreases damage taken from Ranged Physical Damage by 3%. +Refine Level of Yellow Ribbon +7 or higher: +Decreases damage taken from Ranged Physical Damage by 4%. +-------------------------- +When equipped with Long Mace: +Increases damage taken from Ranged Physical Damage by 10%. +-------------------------- +When equipped by Archer classes and combined with Heaven Wing of Imperial Dragon: +Increases damage taken from Ranged Physical Damage by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 90 +# +5918# +A gambler seal that attached to cheek for a lucky charm. +-------------------------- +Critical +3 +-------------------------- +Increases Critical Damage by 3%. +-------------------------- +Decreases damage taken from Arrow Storm and Gate of Hell by 10%. +-------------------------- +For each 10 base LUK: +Critical +1 +ATK +2 +MATK +2 +-------------------------- +Base LUK at least 108: +Critical +5 +Increases Critical Damage by 10%. +-------------------------- +Base LUK at least 120: +Critical +10 +Increases Critical Damage by 17% +Decreases damage taken from Arrow Storm and Gate of Hell by 30%. +-------------------------- +For each 10 base DEX: +Decreases critical damage by 2% +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +5919# +A colorful camelia hairpin. +-------------------------- +MDEF +20 +-------------------------- +Random chance to auto-cast Level 1 Pneuma when dealing physical damage. +For each Refine Level: +Increases the auto cast rate. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5920# +A pair of shoes that can amplify the healing power of its wearer. +-------------------------- +Increases Healing skills effectiveness by 10%. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Coluseo Heal by 5. +-------------------------- +For each 2 Refine Levels: +Increases Healing skills effectiveness by 2%. +-------------------------- +When equipped with Light of Recovery: +For each Refine Level of Light of Recovery: +Decreases SP Consumption of Heal by 6. +Decreases SP Consumption of Coluseo Heal by 10. +Decreases SP Consumption of Highness Heal by 14. +-------------------------- +When equipped with Benevolent Guardian: +For each 2 Refine Level of Benevolent Guardian: +Increases Healing skills effectiveness by 3%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5921# +A strange gill that can empower its wearer. +-------------------------- +Increases Physical Damage against enemies of Fish race by 5%. +-------------------------- +Decreases damage taken from Fish race monsters by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5924# +A mysterious eyepatch that worn by Dragon Knight. +-------------------------- +Increases Physical Damage against enemies of Dragon race by 5%. +-------------------------- +Decreases damage taken from Dragon race by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5925# +A hat with gold poring wrapped with wreath. +-------------------------- +LUK +3 +MDEF +5 +-------------------------- +Refine Level +5: +LUK +2 +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race monster by 5%. +-------------------------- +Refine Level +11: +Decreases damage taken from Ranged Physical Damage by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5926# +It is said that the force of fire dwelling inside this charm. +-------------------------- +Increases Physical Damage against enemies of Earth elemental by 2%. +-------------------------- +Random chance a defeated monster will drop Red Blood. +-------------------------- +When equipped with Claytos's Rupture of Earth: +Increases Physical Damage against enemies of Earth elemental by 2%, +For each Refine Level above +5 of Claytos's Rupture of Earth: +Increases Physical Damage against enemies of Earth elemental by 1%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5927# +It is said that the force of water dwelling inside this charm. +-------------------------- +Increases Physical Damage against enemies of Fire elemental by 2%. +-------------------------- +Random chance a defeated monster will drop Crystal Blue. +-------------------------- +When equipped with Lucius's Fierce of Volcano: +Increases Physical Damage against enemies of Fire elemental by 2%, +For each Refine Level above +5 of Lucius's Fierce of Volcano: +Increases Physical Damage against enemies of Fire elemental by 1%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Refineable: No +-------------------------- +Requirement: None +# +5928# +It is said that the force of wind dwelling inside this charm. +-------------------------- +Increases Physical Damage against enemies of Water elemental by 2%. +-------------------------- +Random chance a defeated monster will drop Wind of Verdure. +-------------------------- +When equipped with Sapien's Wail of Ocean: +Increases Physical Damage against enemies of Water elemental by 2%, +For each Refine Level above +5 of Sapien's Wail of Ocean: +Increases Physical Damage against enemies of Water elemental by 1%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5929# +It is said that the force of Earth dwelling inside this charm. +-------------------------- +Increases Physical Damage against enemies of Wind elemental by 2%. +-------------------------- +Random chance a defeated monster will drop Green Live. +-------------------------- +When equipped with Ebecee's Rage of Typhoon: +Increases Physical Damage against enemies of Wind elemental by 2%, +For each Refine Level above +5 of Ebecee's Rage of Typhoon: +Increases Physical Damage against enemies of Wind elemental by 1%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5930# +A hairband made with a magical feather. +-------------------------- +Increases Magical Damage against monsters of Holy, Shadow, Ghost and Undead race by 5%. +-------------------------- +For each Refine Level above +: +Increases Magical Damage against monsters of Holy, Shadow, Ghost and Undead race by 5%. +-------------------------- +Random chance to auto-cast Level 1 Holy Light on attacker when receiving physical damage. +-------------------------- +Every learned Level of Impositio Manus, Increases Holy Light SP cost by 15 and damage inflicted. +Every learned Level of Demon Bane, Increases trigger rate of Holy Light skill. +-------------------------- +When using First Aid skill, add chance for 10 second transform its wearer into Nasarin. +-------------------------- +You can turn off the equipment effect with /effect command. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +5931# +A hat with a motif of Hylozoist's bunny. +-------------------------- +Increases Physical Damage against enemies of Nifleheim monsters by 5%. +-------------------------- +Refine Level +5: +Increases Physical Damage against enemies of Nifleheim monsters by 5%. +Refine Level +7: +Increases Physical Damage against enemies of Nifleheim monsters by 10%. +Refine Level +9: +Increases Physical Damage against enemies of Nifleheim monsters by 20%. +-------------------------- +when wearer receiving Physical or Magical Damages, adds chance to curse enemies on 11x11 AoE, every Refine increases the trigger rate. +-------------------------- +Enables the use of Level 1 Return to Nifleheim. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +5932# +A decoration of bird and its eggs. +-------------------------- +LUK +5 +Critical +5 +Perfect Dodge +5 +-------------------------- +When equipped with Grand Peco Card: +Random chance to auto-cast Level 5 Gloria when dealing physical damage. +-------------------------- +When equipped by Ranger class: +For each Refine Level: +Increases damage of Blizz Beat by 5%. +-------------------------- +When equipped with Ixion Wing: +Every Refine of bow: Increases damage of Blizz Beat by 5%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +5933# +A mask of fallen shinobi. +-------------------------- +ATK +1%. +Increases Ranged Physical Damage by 2%. +-------------------------- +Base STR at least 108: +ATK +1%. +Increases Ranged Physical Damage by 2%. +-------------------------- +Base STR at least 120: +ATK +2% +Increases Ranged Physical Damage by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 80 +# +5934# +A balloon that floating on the back of head. +-------------------------- +MDEF +5 +-------------------------- +Random chance a defeated monster will drop Gift Box. +-------------------------- +When equipped with Myst Case Card: +Base LUK at least 77: +Random chance a defeated monster will drop Happy Box. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5935# +Magnificent Artworks have been painted with this brush. +Created by Sahima's during the Ragnar? Online Workshop at the \ +. +-------------------------- +Enables the use of Level 1 Scribble. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5936# +An Earrings that imbued with the power of dragon. +-------------------------- +Increases Magical Damage against monsters of Dragon race by 4%. +-------------------------- +Decreases damage taken from Dragon race by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5937# +This hat makes it's possible to look around when flying on high speed. +-------------------------- +MDEF +5 +-------------------------- +Restore SP by 5 when defeating Dragon monster with melee physical attacks. +-------------------------- +Restores HP by 100 when defeating monster with melee physical attacks. +-------------------------- +Refine Level +5: +Decreases damage taken from Dragon race by 5%. +Refine Level +7: +Decreases damage taken from Dragon race by 5%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +5938# +A hat made based of sea creature. +-------------------------- +MDEF +8 +-------------------------- +Increases recovery amount gained from Fresh Fish by 50%. +Increases recovery amount gained from Sashimi and Sushi by 125%. +-------------------------- +Refine Level +5: +Increases recovery amount gained from Fresh Fish by 50%. +Increases recovery amount gained from Sashimi and Sushi by 125%. +Refine Level +6: +Increases recovery amount gained from Fresh Fish by 50%. +Increases recovery amount gained from Sashimi and Sushi by 125%. +Refine Level +7: +Increases recovery amount gained from Fresh Fish by 50%. +Increases recovery amount gained from Sashimi and Sushi by 125%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 88 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5940# +A hat made based of appearance of Guardian of Brasilis waterfall. +-------------------------- +MDEF +5 +-------------------------- +When killing Brute monster with physical attacks, restore SP by 5. +-------------------------- +when defeating monsters with physical attacks, restore HP by 100. +-------------------------- +Refine Level +5: +Decreases damage taken from Brute race by 5%. +Refine Level +7: +Decreases damage taken from Brute race by 5%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +5941# +AGI +5, DEX +5 +When dealing Physical Damages, adds chance to auto-cast Level 5 Adrenaline Rush. +when wearer receive physical attacks, adds chance to auto-cast Level 5 Improve Concentration. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5942# +All Stats +3 +when wearer receive physical attacks, adds chance to auto-cast Level 1 Charming Wink. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5943# +A fashionable silk hat of Owl Viscount. +-------------------------- +INT +2 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +For each Refine Level: +MATK +7 +-------------------------- +Refine Level +5: +Random chance to Reduces After Attack Delay by 5% for 30 seconds when dealing magical damage. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%) instead. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 40%) instead. +-------------------------- +Type: Headgear +Defense: 15 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +5944# +MDEF +5 +Recovery 5 SP when killing demihuman monsters with melee physical damage. +-------------------------- +Recovery 100 HP when killing monsters with melee physical damage. +-------------------------- +If refine rate is 5 or higher: +reduces damage taken from demihuman monsters by 5%. +Refine Level +7: +Decreases damage taken from Demi-Human race monster (except player) by 5%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +5945# +With a strong mind, mysterious flame will be sparkled by rolling this red pencil. +-------------------------- +STR +1 +-------------------------- +Random chance to enchant equipped weapon with Fire elemental for 60 seconds when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5946# +An old wind-key used in theater for many years. +-------------------------- +MDEF +5 +-------------------------- +Restore SP by 5 when defeating Formless race. +Restores HP by 100 when defeating monster. +-------------------------- +Refine Level +5: +Decreases damage taken from Formless race by 5%. +Refine Level +7: +Decreases damage taken from Formless race by 5%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +5947# +An eggshell with red bunny ears on top of it. +-------------------------- +All Stats +1 +-------------------------- +Increases movement speed. +-------------------------- +Enables the use of Level 1 Odin's Power. +-------------------------- +Random chance to auto-cast Level 10 Kyrie Eleison when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +5948# +A mask for Assassins. +-------------------------- +ATK -10% +MATK -10% +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +Assassin classes +# +5949# +This stylish hat is always in seasons. When worn it fills its wearer with a sense of confidence. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +5950# +Rental equipment customized for beginners. +Let's try it out. +-------------------------- +Physical attacks have a certain chance to ignore physical defense of monsters by 100% for 7 seconds. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5951# +Rental equipment customized for beginners. +Let's try it out. +-------------------------- +Recieving magical damage has a certain chance to increase FLEE by 30 and decrease Variable Casting Time by 50% for 5 seconds. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5952# +Rental equipment customized for beginners. +Let's try it out. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5953# +A special benevolent created for beginner. +-------------------------- +Increases recovery amount gained from Healing skills and Restorative items by 5%. +-------------------------- +Increases Healing skills effectiveness by 2% +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper, Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5954# +Rental equipment customized for beginners. +Let's try it out. +-------------------------- +Defeating monsters has a certain chance to drop Flame Heart, Mystic Frozen, Rough Wind and Great Nature. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5955# +Rental equipment customized for beginners. +Let's try it out. +-------------------------- +Enables the use of Level 2 Double Attack. +If you have learned a higher level, use that level instead. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5956# +Customized for beginner +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5957# +Customized for beginner +-------------------------- +Decreases SP Consumption by 5% +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5958# +Customized for beginner +-------------------------- +Increases HP Recovery Rate by 20% +Increases SP Recovery Rate by 20% +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5959# +Rental equipment customized for beginners. +Let's try it out. +-------------------------- +Increases damage of Triple Attack by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5960# +Rental equipment customized for beginners. +Let's try it out. +-------------------------- +Physical attacks have a chance to auto-cast Level 6 Stone Skin. +Stone Skin Level 6: +Decreases physical damage taken from all enemies by 20% and increases magical damage taken from all enemies by 20% for 2 seconds. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5961# +Rental equipment customized for beginners. +Let's try it out. +-------------------------- +Physical attacks have a chance to auto-cast Level 1 Increase Agility. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper, Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5963# +This headphone is the latest style in the more hip regions of Rune Midgard. +-------------------------- +For each Refine Level: +MATK +1% +-------------------------- +Refine Level +6: +Increases damage of Reverberation by 30%. +Decreases SP Consumption of Reverberation by 18. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by of Metallic Sound. +-------------------------- +Type: Headgear +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +5965# +A high performance IC chip. Has ability to activate special effects. +-------------------------- +Decreases Fixed Casting Time by 50%. +-------------------------- +For each Refine Level: +MATK +1% +-------------------------- +When equipped with Broken Chip(Green): +Decreases After Skill Delay by 15%. +-------------------------- +When equipped with EarthBroken Chip(Red): +Decreases Variable Casting Time by 20%. +-------------------------- +When enchanted with Fire Property Reactor: +Increases Physical Damage against enemies of Fire elemental by 10%. +-------------------------- +When enchanted with Water Property Reactor: +Increases Physical Damage against enemies of Water elemental by 10%. +-------------------------- +When enchanted with Earth Property Reactor: +Increases Physical Damage against enemies of Earth elemental by 10%. +-------------------------- +When enchanted with Wind Property Reactor: +Increases Physical Damage against enemies of Wind elemental by 10%. +-------------------------- +When enchanted with Supportive Reactor Frozen: +MaxHP +1000 +-------------------------- +When enchanted with Fire Resistance Reactor: +Decreases damage taken from Fire elemental attacks by 25%. +-------------------------- +When enchanted with Water Resistance Reactor: +Decreases damage taken fromWater elemental attacks by 25%. +-------------------------- +When enchanted with Earth Resistance Reactor: +Decreases damage taken fromEarth elemental attacks by 25%. +-------------------------- +When enchanted with Wind Resistance Reactor: +Decreases damage taken fromWind elemental attacks by 25%. +-------------------------- +When enchanted with Recovery Reactor 101: +Every 5 seconds, restore 1500 HP +-------------------------- +When enchanted with Recovery Reactor 102: +Every 5 seconds, restore 25 SP +-------------------------- +When enchanted with Recovery Reactor 201: +Increases HP Recovery Rate by 350% +-------------------------- +When enchanted with Recovery Reactor 202: +Increases SP Recovery Rate by 50% +-------------------------- +When enchanted with Supportive Reactor STR: +ATK +3% +-------------------------- +When enchanted with Supportive Reactor INT: +MATK +3% +-------------------------- +When enchanted with Supportive Reactor DEF: +DEF +500 +-------------------------- +When enchanted with Supportive Reactor Perfect: +Perfect Dodge +2 +-------------------------- +When enchanted with Supportive Reactor Attack: +ATK +15 +-------------------------- +When enchanted with Supportive Reactor Magic: +MATK +15 +-------------------------- +When enchanted with Supportive Reactor MaxHP: +MaxHP +7500 +-------------------------- +When enchanted with Supportive Reactor MaxSP: +MaxSP +150 +-------------------------- +When enchanted with Supportive Reactor ASPD: +ASPD +1 +-------------------------- +When enchanted with A-Tolerance: +For each Refine Level: +Decreases damage taken from Demi-Human and Formless race by 1%. +-------------------------- +When enchanted with A-Hit: +For each 3 Refine Levels: +HIT +5 +-------------------------- +When enchanted with A-Flee: +Every 3 Refine Levels +FLEE +5 +-------------------------- +When enchanted with A-Mdef: +MDEF +20 +-------------------------- +When enchanted with either S-Atk, S-Matk, S-Avoid, S-MaxHP, S-Quick or S-Cri: +For each 2 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +When enchanted with either Z-Knockback, Z-Immortal, Z-Killgain, Z-Reincarnation, Z-NoDispell, Z-Clairvoyance or Z-CastFixed: +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +When equipped with Accelerator Chip: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +MATK +10% +Ignores physical and magical defense of all monsters by 30%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +5966# +An ears ornament modeled after the ears of king of Lapines. +-------------------------- +For each 10 base DEX: +MATK +2 +-------------------------- +Base DEX at least 108: +MATK +60 +Decreases Variable Casting Time by 10%. +-------------------------- +Base DEX at least 120: +MATK +40 +Decreases Variable Casting Time by 5%. +-------------------------- +When equipped with Book or Staff class weapon and Tendrillion Card: +For each Refine Level of weapon Increases Magical Damage against monsters of Demi-Human race by 2%. +-------------------------- +When equipped with Lapine Shield: +Refine Level of Lapine Shield is +7 or higher: +Decreases Comet skill cooldown by 20 seconds. + +Refine Level of Lapine Shield is +9 or higher: +Decreases Comet skill cooldown by 40 seconds. +When equipped with Fallen Bishop Card or Runaway Magic stone: +The cooldown reduction will not activated. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +5967# +A galapago that has a dream to fly high in the sky. +-------------------------- +AGI +1 +-------------------------- +Has a chance to autocast Blitz Beat when dealing physical attack. +Learned level of Blitz Beat will be cast. +The chance to trigger autocast is affected by base LUK and the level of Blitz Beat learned. +-------------------------- +Increases Blitz Beat damage by 10% per Level of Steel Crow +-------------------------- +This item has no effect in WOE & PVP. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 1 +# +5968# +A cap that will alert its wearer when there are people in hurt or injured. +-------------------------- +Increases Healing skills effectiveness by 3%. +-------------------------- +Protects from skill cast interruption. +-------------------------- +Refine Level +5: +Increases Healing skills effectiveness by 3%. +-------------------------- +Refine Level +7: +Increases Healing skills effectiveness by 3%. +-------------------------- +Refine Level +9: +Increases Healing skills effectiveness by 3%. +-------------------------- +When equipped with Rosario Necklace: +Perfect Dodge +1 +Increases Healing skills effectiveness by 2%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5969# +A large hat worn by the famous pirate. Due to his cruelty, it is always red with blood. +-------------------------- +STR +5 +ATK +1 per refine level. +Increases physical damage against all monsters by 6%. +-------------------------- +If upgrade level is +5 or higher: +Increases physical damage against all monsters by an additional 1%. +Adds a 3% chance to restore 5% of damage as HP when performing a physical attack. +-------------------------- +If upgrade level is +7 or higher: +Increases physical damage against all monsters by an additional 2%. +Adds a 1% chance to restore 1% of damage as SP when performing a physical attack. +-------------------------- +If upgrade level is +9 or higher: +Increases physical damage against all monsters by an additional 3%. +Negates weapon size penalties. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +Tier: 6 +-------------------------- +Requirement: Base Level 1 +Usable By: All Jobs +# +5970# +A mysterious helm that can amplify the magic power of its wearer. +-------------------------- +VIT +3 +MaxHP +4% +-------------------------- +Base Level is below 100: +For each 2 Refine Levels: +VIT +1. +-------------------------- +Base Level at least 100: +For each Refine Level: +VIT +1 +When Rune Knight activate rune stone skills, grant various effects or additional rune stone skill. +Has no effect in WoE, PVP and Turbo Track areas. +-------------------------- +Type: Headgear +Defense: 15 +Position: Upper +Weight: 300 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +5971# +An eyepatch with the power of Hatii dwelling inside. +-------------------------- +Decreases damage taken from Water elemental attacks by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +5972# +A clever talkative parrot. +-------------------------- +For each 50 Base Level: +MATK +1% +-------------------------- +For each 30 base INT: +Decreases Variable Casting Time by 1%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 80 +# +5973# +An ornament with the shape of long ears of elf. +-------------------------- +LUK +10 +Perfect Dodge +2 +MDEF +10 +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +5974# +A silver helmet named after the legendary Unicorn beast. +-------------------------- +MDEF +10 +-------------------------- +Decreases damage taken from Shadow elemental attacks by 15%. +-------------------------- +Enables the use of Level 1 Grand Cross. +-------------------------- +For each Level of Faith: +Increases damage taken from Holy elemental attacks by 2%. +-------------------------- +Refine Level +7: +Enables use of Grand Cross with Level equal to Refine Level. +-------------------------- +Refine Level +8: +Decreases damage taken from Shadow elemental attacks by 5%. +-------------------------- +Type: Headgear +Defense: 16 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +5975# +A doll to celebrate the 61st generation of royal family. +-------------------------- +Decreases damage taken from Boss class by 10%. +-------------------------- +When you have Zherlthsh pet: +Decreases damage taken from Boss class by additional 5%. + +When intimacy is Loyal: +Decreases damage taken from Boss class by additional 5%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5976# +Decoration created from Marina's fragment, Swordfish's scale, Mystic Frozen and Moss of Izlude cave. +-------------------------- +Random chance a defeated Fish monster will drop Malangdo Special Can or Delicious Jelly. +-------------------------- +When equipped by Bard: +When Musical Lesson is mastered, activate mastered Level of Dance Lesson. +-------------------------- +When equipped by Dancer: +When Dance Lesson is mastered, activate mastered Level of Musical Lesson. +-------------------------- +Indestructible in battle +-------------------------- +The following effect only active in City maps. +-------------------------- +When equipped with Cat Hand Glove: +Allows wearer into transform into Red Eruma, Sropho, Phen, Swordfish and Marine Sphere +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +5977# +Gives you a feeling of advantage over your enemies. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +5978# +A toy syringe. +-------------------------- +MDEF +3 +-------------------------- +Increases recovery amount gained from Red Slim Potion, Yellow Slim Potion and White Slim Potion by 150%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +5979# +Fluttering costume wings.It seems to hear God's bless from fluttering wings. +This equipment's visual appearance relies on special effects. +If /effect is turned OFF the headgear will not be fully displayed. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +5980# +A gorgeous small fur hat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +5981# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +5982# +A mask wore by Loki when he was young. +-------------------------- +Increases damage of Sonic Blow by 5%. +-------------------------- +Increases damage of Meteor Assault by 10%. +-------------------------- +Random chance to transform wearer into Loki for 5 sec when dealing physical damage. +Transformation bonus: AGI +10, ATK +10. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 95 +Assassin classes +# +5983# +A mask wore by Loki when he was young. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +5985# +A silver mask worn by nobles. +-------------------------- +MaxHP +1% +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Increases damage of Sacrifice by (Base Level*2)%. +-------------------------- +Decreases Variable Casting Time of Devotion and Pressure by 2 seconds. +-------------------------- +Base Level at least 100: +MaxHP +1% +Increases Attack Speed (Decreases After Attack Delay by 1%). +Base Level at least 150: +MaxHP +1% +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +5986# +Wickebine's black cat Ears. +-------------------------- +FLEE +10 +Critical +3 +Increases Critical Damage by 10%. +Decreases defense by 50%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +All Jobs except Novice +# +5987# +Bone circlet with enormous power. +It is made with a completely different manufacturing method from the usual one, and has a different power. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases damage of Cross Impact and Dark Illusion by 10%. +-------------------------- +For each Refine Level: +Decreases After Skill Delay by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Increases damage of Cross Impact and Dark Illusion by additional 20%. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Increases damage of Cross Impact and Dark Illusion by additional 15%. +-------------------------- +Refine Level +10: +Decreases Hallucination Walk skill cooldown by 60 seconds. +-------------------------- +When equipped with Manteau of the Fallen: +MaxHP +20% and doubles the effect received from base stats bonus. +-------------------------- +When equipped with Old Convoy Ring: +When using Counter Slash, increases STR by 200 for 10 seconds. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +5988# +Ballerina's hair ornament with enormous power. +It is made with a completely different manufacturing method from the usual one, and has a different power. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Enables the use of Musical Lesson, skill level is based on Dancing Lesson. +-------------------------- +Increases damage of Reverberation by 10%. +-------------------------- +For each Refine Level: +All Stats +1 +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Increases damage of Reverberation by additional 30%. +Enables the use of Poem of Bragi, skill level is based on Fortune's Kiss when equipped with an Musical Instrument or Whip class weapon. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Increases damage of Reverberation by additional 20%. +When using Gloomy Shyness, inflicts Stone Curse 11x11 cells around the target. +-------------------------- +Refine Level +10: +Physical attacks have a certain chance to increase damage of Severe Rainstorm by 100% for 5 seconds. +-------------------------- +When equipped with Manteau of the Fallen: +MaxHP +20% and doubles the effect received from base stats bonus. +-------------------------- +When equipped with Old Convoy Ring: +Prevents Stun status. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Wanderer +# +5989# +A whisper of the wind with enormous power. +It is made with a completely different manufacturing method from the usual one, and has a different power. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Decreases Striking skill cooldown by 2 seconds. +-------------------------- +For each Refine Level: +MaxHP +1% +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Decreases Extreme Vacuum skill cooldown by 3 seconds. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Decreases Variable Casting Time of Summon Aqua by 100%. +Decreases Fixed Casting Time of Summon Aqua by 100%. +-------------------------- +Refine Level +10: +Recieving physical or magical damage has a certain chance to recover 5000 HP every second for 11 seconds. +-------------------------- +When equipped with Manteau of the Fallen: +MaxHP +20% and doubles the effect received from base stats bonus. +-------------------------- +When equipped with Old Convoy Ring: +Enables the use of Level 3 Trample. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +5990# +Blazing soul with enormous power. +It is made with a completely different manufacturing method from the usual one, and has a different power. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases damage of Ride in Lightning by 10%. +-------------------------- +For each Refine Level: +MDEF +1 +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Increases damage of Ride in Lightning by additional 30%. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Increases damage of Ride in Lightning by additional 20%. +-------------------------- +Refine Level +10: +Physical attacks have a certain chance to decrease Variable Casting Time by 100% for 5 seconds. +When using Ride in Lightning, auto-cast Level 1 Dangerous Soul Collect. +-------------------------- +When equipped with Manteau of the Fallen: +MaxHP +20% and doubles the effect received from base stats bonus. +-------------------------- +When equipped with Old Convoy Ring: +Increases damage of Ride in Lightning by additional 70%. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Sura +# +5991# +A magic stone hat with enormous power. +It is made with a completely different manufacturing method from the usual one, and has a different power. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases damage of Crimson Rock by 10%. +-------------------------- +Increases damage of Comet by 5%. +-------------------------- +For each Refine Level: +Decreases Variable Casting Time by 7%. +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Increases damage of Crimson Rock by additional 30%. +Increases damage of Comet by additional 15%. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Increases damage of Crimson Rock by additional 20%. +Increases damage of Comet by additional 10%. +-------------------------- +Refine Level +10: +Decreases Comet skill cooldown by 30 seconds. +-------------------------- +When equipped with Manteau of the Fallen: +MaxHP +20% and doubles the effect received from base stats bonus. +-------------------------- +When equipped with Old Convoy Ring: +MATK +100 +Decreases Crimson Rock skill cooldown by 0.5 seconds. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Warlock +# +5992# +Midas whisper with enormous power. +It is made with a completely different manufacturing method from the usual one, and has a different power. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Decreases Mandragora Howling skill cooldown by 4 seconds. +-------------------------- +For each Refine Level: +ATK +7, MATK +7 +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Decreases Mandragora Howling skill cooldown by 6 seconds. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Decreases Mandragora Howling skill cooldown by 2 seconds. +-------------------------- +Refine Level +10: +Increases recovery rate of Red Slim Potion, Yellow Slim Potion and White Slim Potion by 200%. +-------------------------- +When equipped with Manteau of the Fallen: +MaxHP +20% and doubles the effect received from base stats bonus. +-------------------------- +When equipped with Old Convoy Ring: +Decreases Variable Casting Time of Mandragora Howling by 100%. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Genetic +# +5993# +Minstrel song hat with enormous power. +It is made with a completely different manufacturing method from the usual one, and has a different power. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Enables the use of Dancing Lesson, skill level is based on Musical Lesson. +-------------------------- +Increases damage of Reverberation by 10%. +-------------------------- +For each Refine Level: +All Stats +1 +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Increases damage of Reverberation by additional 30%. +Enables the use of Fortune's Kiss, skill level is based on Poem of Bragi when equipped with an Musical Instrument or Whip class weapon. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Increases damage of Reverberation by additional 20%. +When using Gloomy Shyness, inflicts Confuse 11x11 cells around the target. +-------------------------- +Refine Level +10: +Physical attacks have a certain chance to increase damage of Severe Rainstorm by 100% for 5 seconds. +-------------------------- +When equipped with Manteau of the Fallen: +MaxHP +20% and doubles the effect received from base stats bonus. +-------------------------- +When equipped with Old Convoy Ring: +Prevents Frozen status. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Minstrel +# +5994# +A shadow crown with enormous power. +It is made with a completely different manufacturing method from the usual one, and has a different power. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Decreases SP Consumption of Triangle Shot by 4. +-------------------------- +For each Refine Level: +DEX +2 +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Increases movement speed. +Decreases SP Consumption of Triangle Shot by additional 4. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Prevents Confuse status. +Decreases SP Consumption of Triangle Shot by additional 4. +-------------------------- +Refine Level +10: +Physical attacks have a certain chance to increase DEX by 100 for 5 seconds. +-------------------------- +When equipped with Manteau of the Fallen: +MaxHP +20% and doubles the effect received from base stats bonus. +-------------------------- +When equipped with Old Convoy Ring: +Increases damage of Triangle Shot by 70%. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +5995# +A driver band with enormous power. +It is made with a completely different manufacturing method from the usual one, and has a different power. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases damage of Cold Slower and Flame Launcher by 10%. +-------------------------- +For each Refine Level: +Decreases SP Consumption by 2%. +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Increases damage of Cold Slower and Flame Launcher by additional 30%. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Increases damage of Cold Slower and Flame Launcher by additional 20%. +-------------------------- +Refine Level +10: +Nullifies Mado Gear Fuel requirement of certain skills. +-------------------------- +When equipped with Manteau of the Fallen: +MaxHP +20% and doubles the effect received from base stats bonus. +-------------------------- +When equipped with Old Convoy Ring: +Increases damage of Cold Slower and Flame Launcher by additional 70%. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +5996# +A driver band with enormous power. +It is made with a completely different manufacturing method from the usual one, and has a different power. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases damage of Cold Slower and Flame Launcher by 10%. +-------------------------- +For each Refine Level: +Decreases SP Consumption by 2%. +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Increases damage of Cold Slower and Flame Launcher by additional 30%. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Increases damage of Cold Slower and Flame Launcher by additional 20%. +-------------------------- +Refine Level +10: +Nullifies Mado Gear Fuel requirement of certain skills. +-------------------------- +When equipped with Manteau of the Fallen: +MaxHP +20% and doubles the effect received from base stats bonus. +-------------------------- +When equipped with Old Convoy Ring: +Increases damage of Cold Slower and Flame Launcher by additional 70%. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +5997# +Mitra with enormous power. +It is made with a completely different manufacturing method from the usual one, and has a different power. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Decreases Expiatio skill cooldown by 1 second. +-------------------------- +For each Refine Level: +Decreases damage taken from Demon and Undead race by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Enables the use of Level 2 Odin's Power. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Decreases Variable Casting Time of Highness Heal by 100%. +Decreases Highness Heal skill cooldown by 1 second. +-------------------------- +Refine Level +10: +Recieving physical or magical damage has a certain chance to decrease After Skill Delay by 100% for 5 seconds. +-------------------------- +When equipped with Manteau of the Fallen: +MaxHP +20% and doubles the effect received from base stats bonus. +-------------------------- +When equipped with Old Convoy Ring: +MaxHP +50% +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +5998# +A rune circlet with enormous power. +It is made with a completely different manufacturing method from the usual one, and has a different power. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases damage of Wind Cutter by 50%. +-------------------------- +Increases damage of Storm Blast by 20%. +-------------------------- +For each Refine Level: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Increases damage of Wind Cutter by additional 200%. +Increases damage of Storm Blast by additional 50%. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Increases damage of Wind Cutter by additional 150%. +Increases damage of Storm Blast by additional 30%. +-------------------------- +Refine Level +10: +Decreases Storm Blast re-use delay by 7 seconds. +-------------------------- +When equipped with Manteau of the Fallen: +MaxHP +20% and doubles the effect received from base stats bonus. +-------------------------- +When equipped with Old Convoy Ring: +Decreases Fixed Casting Time of Storm Blast by 100%. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +5999# +A camouflage rabbit hood with enormous power. +It is made with a completely different manufacturing method from the usual one, and has a different power. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Decreases SP Consumption of Warg Strike by 10. +-------------------------- +For each Refine Level: +HIT +2 +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Physical attacks have a certain chance to auto-cast Warg Bite at learned skill level. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Physical attacks have a certain chance to auto-cast Warg Strike at learned skill level. + +For each Level of Warg Strike: +Increases the trigger chance further. + +For each base LUK: +Increases the trigger chance of Warg Strike. +Up to Base LUK 120 +-------------------------- +Refine Level +10: +Deals more damage depending on the target's Defense. +-------------------------- +When equipped with Manteau of the Fallen: +MaxHP +20% and doubles the effect received from base stats bonus. +-------------------------- +When equipped with Old Convoy Ring: +Critical +70 +Increases Critical Damage by 70%. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Ranger +# +6000# +A dark ash imbued with mysterious magical power and darkness. +-------------------------- +Type: Quest +Weight: 0 +# +6001# +An essence of fire that is holding the pure spirit of Thor, god of thunder. It has the mysterious force to restrain vices and darkness. +-------------------------- +Type: Quest +Weight: 1 +# +6002# +A token that certifies the aspiration of its owner to obey all evil; and proves a member of the diabolists. +-------------------------- +Type: Quest +Weight: 1 +# +6003# +A pendant that was been used to confine wandered souls from unknown places. +-------------------------- +Type: Quest +Weight: 1 +# +6004# +A Doll imbued with Baphomet's curse. It seems to be compounded with something. +-------------------------- +Type: Quest +Weight: 1 +# +6005# +맛있는 흰떡. 떡국을 만들어 먹으면 더 맛있다. +-------------------------- +Weight: 1 +# +6006# +잘 포장된 떡이 들어있는 Box. +-------------------------- +Weight: 1 +# +6007# +선비 휼의 어머님 손맛을 그대로 재현했다. +그 맛을 Memory하고 있는 친척분들이라면 매우 좋아할 것 같다. +이벤트 종료 시 삭제되는 Item 입니다. +-------------------------- +Weight: 0 +# +6008# +Good quality wood. It makes the wooden building it is a tightly good lumber. +-------------------------- +Type: Quest +Weight: 0 +# +6009# +Magical Fan that can stir up a strong wind. Let's try it under the cherry blossom tree. +-------------------------- +Weight: 0 +# +6010# +A gardening tool, but be careful! This could also be used as a fearful weapon. +-------------------------- +Weight: 1 +# +6011# +A card marked with the letter \ + which is used for special events. +-------------------------- +Weight: 1 +# +6012# +Traditional first time allows you to learn the good-natured character C card which is used for special events. +-------------------------- +Weight: 1 +# +6013# +Traditional first time allows you to learn the good-natured character J card which is used for special events. +-------------------------- +Weight: 1 +# +6015# +Traditional first time allows you to learn the good-natured character M card which is used for special events. +-------------------------- +Weight: 1 +# +6016# +Traditional first time allows you to learn the good-natured character Q card which is used for special events. +-------------------------- +Weight: 1 +# +6017# +Traditional first time allows you to learn the good-natured character T card which is used for special events. +-------------------------- +Weight: 1 +# +6018# +Traditional first time allows you to learn the good-natured character V card which is used for special events. +-------------------------- +Weight: 1 +# +6019# +Traditional first time allows you to learn the good-natured character Z card which is used for special events. +-------------------------- +Weight: 1 +# +6020# +Beautiful Silver colored fur that can be sold to merchant NPCs at a high price. +-------------------------- +Type: Collectible +Weight: 1 +# +6021# +A small, red colored peaked hat that can be sold to merchant NPCs at a high price. +-------------------------- +Type: Collectible +Weight: 1 +# +6022# +Gray colored Hard Skin. Too hard that it seems impossible to be even processed. It can be sold to merchant NPC at a high price. +-------------------------- +Type: Collectible +Weight: 1 +# +6023# +Beautiful long, white colored horn with the very strong magical power. It can be sold to merchant NPC at a high price. +-------------------------- +Type: Collectible +Weight: 1 +# +6024# +17 Carat Diamond. +-------------------------- +Weight: 1 +# +6025# +A towel that helps you remember those that have passed on. +-------------------------- +Weight: 0 +# +6026# +This written oath professes undying love, loyalty and union. +Forever in life and eternally beyond death. +-------------------------- +Weight: 1 +# +6027# +A crystal bearing strong dark forces. Blood stains on the surface give it the feeling of evil. +-------------------------- +Weight: 0 +# +6028# +A sealed scroll hiding magical spells. +-------------------------- +Weight: 0 +# +6029# +A record of tracing Rayan Moore who was the leader of unsealing Satan Morocc along with the investigation of the Dimensional Gorge. +It is pretty messy for a report to be submitted to the superior office. +Writer: Echinacea, Kid, Rin +-------------------------- +Weight: 0 +# +6030# +My heart's pounding! Where is the treasure paper? +-------------------------- +Weight: 1 +# +6031# +You're lucky! Run to Pierre before too late! +-------------------------- +Weight: 1 +# +6032# +A hard horn that grows on Hillslion's head. +-------------------------- +Type: Collectible +Weight: 1 +# +6033# +A hard horn that grows on Tendrilion's head. +-------------------------- +Type: Collectible +Weight: 1 +# +6034# +A very worn-out piece of some part or a machine. +-------------------------- +Weight: 0 +# +6035# +An old, decaying stem of a plant. +-------------------------- +Weight: 0 +# +6036# +Rune-Midgard's investigator, Ryosen has filled out this Meeting Invitation. The agenda and the schedule of the meeting are written. +-------------------------- +Weight: 1 +# +6037# +A bundle of ripped and crumpled files. +-------------------------- +Weight: 1 +# +6038# +A nicely sorted document file. A small thank you note is attached on the bottom of the file. +-------------------------- +Weight: 1 +# +6039# +A piece of raw fish. +-------------------------- +Weight: 1 +# +6040# +Looks like a part of the expedition's report. Some parts are destroyed and wrinkled and can hardly be recognized. +-------------------------- +Weight: 0 +# +6041# +A strong looking vine. Looks useful for various uses. +-------------------------- +Type: Collectible +Weight: 5 +# +6042# +Strong looking branch. Looks useful for various uses. +-------------------------- +Weight: 1 +# +6043# +A letter written by Lugen to his close friend, Otto. +-------------------------- +Weight: 1 +# +6044# +Otto's reply letter to Lugen. You can feel their close friendship in it. +-------------------------- +Weight: 1 +# +6045# +A box with various supplies. Many living supplies with the articles of comfort are contained. +-------------------------- +Weight: 0 +# +6046# +Revamp your wardrobe by embracing the Stylist System and updating your clothing style. +-------------------------- +Weight: 0 +# +6047# +If you give this coupon to the NPC, she will dye your costume to its original color. +-------------------------- +Weight: 0 +# +6048# +A mineral not found in Rune Midgard that any scientist would love to study. +-------------------------- +Weight: 1 +# +6049# +A fish called Marlin. But, it looks a bit different from what you saw in a book. +-------------------------- +Weight: 1 +# +6050# +A document that verifying the contract with mercenary. +-------------------------- +Weight: 1 +# +6051# +Unknown ore. Whose identity is hard to possess supernatural powers. +-------------------------- +Weight: 1 +# +6052# +The heads of your favorite girl. Many the people love to purchase a gift for their women. +-------------------------- +Weight: 1 +# +6053# +A symbol of the wealth. +-------------------------- +Weight: 10 +# +6054# +A card with the letter 6 printed on it. +-------------------------- +Weight: 1 +# +6055# +A card with the letter Week printed on it. +-------------------------- +Weight: 1 +# +6056# +A card with the letter Year printed on it. +-------------------------- +Weight: 1 +# +6057# +A card with the letter Lee printed on it. +-------------------------- +Weight: 1 +# +6058# +A card with the letter Ben printed on it. +-------------------------- +Weight: 1 +# +6059# +A card with the letter Project printed on it. +-------------------------- +Weight: 1 +# +6060# +Invitation ticket to see the moon. Only available on special days.. +-------------------------- +Weight: 1 +# +6061# +Some merhants collecting this items in large number of quantity, rumor says they use this for refining something. +-------------------------- +Weight: 5 +# +6062# +A Moon Snack which has \ + written in the center in Chinese. +-------------------------- +Weight: 1 +# +6063# +A Moon Snack which has \ + written in the center in Chinese. +-------------------------- +Weight: 1 +# +6064# +A Moon Snack which has \ + written in the center in Chinese. +-------------------------- +Weight: 1 +# +6065# +A Moon Snack which has \ + written in the center in Chinese. +-------------------------- +Weight: 1 +# +6066# +A Moon Snack which has \ + written in the center in Chinese. +-------------------------- +Weight: 1 +# +6067# +A Moon Snack which has \ + written in the center in Chinese. +-------------------------- +Weight: 1 +# +6068# +A leather from special rabbit . I think anyone who really need it. +-------------------------- +Weight: 1 +# +6070# +An ancient manuscript that can only be read by those familiar with the old Shaman language. +A strange woman at the northeastern corner of the city of Rachel can help you read it. +-------------------------- +Weight: 1 +# +6071# +The remains of a sword that was fabled to have broken the curse of a Dark Knight. +There is a soldier in the Northwest corner of Glast Heim that may have fallen under the Dark Knight's curse. +-------------------------- +Weight: 1 +# +6072# +A beautiful feather from a legendary bird named Bijofnil with mysterious powers. +There is a chicken researcher in the southwestern part of Geffen that knows about Bijofnil. +-------------------------- +Weight: 1 +# +6073# +Mysterious blue mane of a dragon. It is used for decoration, due to its beautiful color and silky touch. +-------------------------- +Weight: 0 +# +6074# +Slightly worn notes. Be careful not to lose any pages! +-------------------------- +Weight: 0 +# +6075# +The one and only tear drop of the Aqua Elemental. +-------------------------- +Weight: 0 +# +6076# +A toolbox that consists of portable tools for collecting ores or plants. +They include a small rockhammer and a radar. +-------------------------- +Weight: 0 +# +6077# +Roughly collected ore. +-------------------------- +Type: Quest +Weight: 0 +# +6078# +Small fragments of the broken stone. +-------------------------- +Type: Quest +Weight: 0 +# +6079# +A wild flower easily found in Alfheim. +-------------------------- +Type: Quest +Weight: 0 +# +6080# +Currency used in Manuk. +-------------------------- +Type: Valuable +Weight: 0 +# +6081# +Lapine tribe coin that stands for \ +. +-------------------------- +Type: Valuable +Weight: 0 +# +6082# +Perfume made from distilled flowers of Alfheim. It smells cozy and nostalgic. +-------------------------- +Type: Quest +Weight: 0 +# +6083# +A tiny capsule which contains a cute doll. +-------------------------- +Weight: 1 +# +6084# +Fragmented Bradium's piece. Lapines were experimenting on it and its quality is now different from the Refined Bradium at Manuk. +-------------------------- +Type: Quest +Weight: 0 +# +6085# +A Muffler made out of unacquainted materials and techniques. It is the Manuk Sapha tribe's favorite muffler. +It's worn out. The name is inscribed on the tip of the muffler. +-------------------------- +Type: Quest +Weight: 0 +# +6086# +A completely withered flower. Wonder how it looked when it was at its full-bloom. +-------------------------- +Weight: 1 +# +6087# +Brightly shining jewel of a very small size. Some of the rare ones are blessed by fairies. +-------------------------- +Weight: 1 +# +6088# +Brightly shining jewel of a very small size. Some of the rare ones are blessed by fairies. +-------------------------- +Weight: 1 +# +6089# +A bead that keeps the dusk and the darkness inside. It feels like you could look beyond the universe through it, if you were to look closely. +-------------------------- +Weight: 1 +# +6090# +Purified Bradium which is the Ore of another world. It looks like ice, but it's warm. +-------------------------- +Weight: 5 +# +6091# +A huge magical bloody-red dragon scale. Luckily, it doesn't smell fishy. +-------------------------- +Weight: 1 +# +6092# +A piece of crystal which sings and seems enchanted, to memorize songs. +-------------------------- +Weight: 1 +# +6093# +A draco's egg about to be hatched. If you take good care of it, you may have the chance to see a baby draco. +-------------------------- +Weight: 0 +# +6094# +A traditional irresistible cookie. +-------------------------- +Type: Pet Food +Pet: White Lady +Weight: 1 +# +6095# +An alcoholic beverage brewed. +-------------------------- +Type: Pet Food +Pet: Civil Servant +Weight: 1 +# +6096# +A blue fresh-water fish. +-------------------------- +Type: Pet Food +Pet: Leaf Cat +Weight: 1 +# +6097# +A pie made of fresh pumpkins. +-------------------------- +Type: Pet Food +Pet: Loli Ruri +Weight: 1 +# +6098# +A flower that remarkably blooms in the snow. +-------------------------- +Type: Pet Food +Pet: Marionette +Weight: 1 +# +6099# +A grilled rice treat that satisfies a Shinobi's hunger. +-------------------------- +Type: Pet Food +Pet: Shinobi +Weight: 1 +# +6100# +A cloud of edible smoke. +-------------------------- +Type: Pet Food +Pet: Whisper +Weight: 1 +# +6101# +This attendance card can not be replaced with cash. +-------------------------- +Weight: 0 +# +6102# +Report from Splendide expedition in order to brief atmosphere in Splendide. +Every details about Splendide were written. +-------------------------- +Type: Quest +Weight: 0 +# +6103# +Report from Manuk expedition in order to brief atmosphere in Manuk. +Every details about Manuk were written. +-------------------------- +Type: Quest +Weight: 0 +# +6104# +A shell of an animal that's surprisingly edible. +-------------------------- +Type: Pet Food +Pet: Goblin Leader +Weight: 1 +# +6105# +Fresh water harvested from the leaves of plants early in the morning. +-------------------------- +Type: Pet Food +Pet: Evil Nymph +Weight: 1 +# +6106# +An exquisitely ripe berry. +-------------------------- +Type: Pet Food +Pet: Miyabi Doll +Weight: 1 +# +6107# +A cocktail made with layers to look like a Rune Midgard sunset. +-------------------------- +Type: Pet Food +Pet: Dullahan +Weight: 1 +# +6108# +Pudding flavored with ripe green apples. +-------------------------- +Type: Pet Food +Pet: Medusa +Weight: 1 +# +6109# +An additive used to enhance plant growth. +-------------------------- +Type: Pet Food +Pet: Stone Shooter +Weight: 1 +# +6110# +A flower that suppresses the hunger of an Incubus. +-------------------------- +Type: Pet Food +Pet: Incubus +Weight: 1 +# +6111# +A soft crystal stone. +-------------------------- +Type: Pet Food +Pet: Golem +Weight: 1 +# +6112# +Select leaves from a tree in Glast Heim. +-------------------------- +Type: Pet Food +Pet: Nightmare Terror +Weight: 1 +# +6113# +A flower that suppresses the hunger of a Succubus. +-------------------------- +Type: Pet Food +Pet: Succubus +Weight: 1 +# +6114# +A fiery gemstone that Imps love to eat. +-------------------------- +Type: Pet Food +Pet: Imp +Weight: 1 +# +6115# +A type of dough that is filled with grinded meat, usually served hot. +-------------------------- +Type: Pet Food +Pet: Green Maiden +Weight: 1 +# +6116# +Congratulation! Beautiful Succubus will be always with you! Enable to exchange it with 1 Succubus Egg. +-------------------------- +Weight: 0 +# +6117# +Congratulation! Pretty Imp will be always with you! Enable to exchange it with 1 Imp Egg. +-------------------------- +Weight: 0 +# +6118# +Congratulation! Cute Green Maiden will be always with you! Enable to exchange it with 1 Green Maiden Egg. +-------------------------- +Weight: 0 +# +6119# +A leather piece of cow. +-------------------------- +Weight: 0 +# +6120# +A paint that is safe for skin. It's used for body painting. +-------------------------- +Type: Skill necessity +Weight: 2 +# +6121# +A brush that can draw little and delicate pictures. Exclusively for body painting. +-------------------------- +Type: Skill necessity +Weight: 0 +# +6122# +A brush which is wide and has a long hand grip. Exclusively for ground graffiti. +-------------------------- +Type: Skill necessity +Weight: 0 +# +6123# +A paint with a vivid and intense color. Exclusively for ground graffiti. +-------------------------- +Type: Skill necessity +Weight: 3 +# +6124# +A very tiny flute. It sounds like a wolf tamed by a ranger. +-------------------------- +Type: Skill necessity +Weight: 0 +# +6125# +A box that brings a feeling of prosperity. Every time you think about opening it you resist the temptation. Perhaps a professional Gift Opener could be of assistance. +You must be above base Level 40 in order to have a Gift Opener open this box +-------------------------- +You seem to recall seeing such a gal at: +Prontera 164 110 +Payon 162 124 +Aldebaran 124 114 +Juno 179 187 +-------------------------- +Weight: 1 +-------------------------- +Be sure to open them immediately as they will stop being sold a few hours prior to the Box Opener Girls being removed which may not be during maintenance. +# +6126# +The joyful color of yellow makes you feel strangely happy. Every time you think about opening it you resist the temptation. Perhaps a professional Gift Opener could be of assistance. +-------------------------- +You seem to recall seeing such a gal at: +Prontera 164 110 +Payon 162 124 +Aldebaran 124 114 +Juno 179 187 +-------------------------- +Weight: 1 +# +6127# +A purity stone that can remove the after effect of the Endless Tower at a time. +You can enter the Endless Tower without any restriction with this item. +-------------------------- +Weight: 0 +# +6128# +An antidote for Guillotine Cross only. +-------------------------- +Type: Skill necessity +Weight: 0 +# +6129# +A cute pet Nightmare Terror tickets. +-------------------------- +Weight: 1 +# +6130# +I call upon a creature of the night ...in the name of the moon! - Sofiel +Weight: 1 +# +6131# +A cute pet Goblin Leader tickets. +-------------------------- +Weight: 1 +# +6132# +A cute pet Incubus tickets. +-------------------------- +Weight: 1 +# +6133# +A cute pet Miyabi Ningyo tickets. +-------------------------- +Weight: 1 +# +6134# +A cute pet Giant Whisper tickets. +-------------------------- +Weight: 1 +# +6135# +A cute pet Evil Nymph tickets. +-------------------------- +Weight: 1 +# +6136# +A cute pet Medusa tickets. +-------------------------- +Weight: 1 +# +6137# +A cute pet Stone Shooter tickets. +-------------------------- +Weight: 1 +# +6138# +A cute pet Marionette tickets. +-------------------------- +Weight: 1 +# +6139# +A cute pet Leaf Cat tickets. +-------------------------- +Weight: 1 +# +6140# +A cute pet Dullahan tickets. +-------------------------- +Weight: 1 +# +6141# +A cute pet Shinobi tickets. +-------------------------- +Weight: 1 +# +6142# +A cute pet Golem tickets. +-------------------------- +Weight: 1 +# +6143# +A cute pet Civil Servant tickets. +-------------------------- +Weight: 1 +# +6144# +A heartbreaking tear for others. Sometimes a miracle happens by this tear. +-------------------------- +Weight: 0.2 +# +6145# +A bullet which is used for skills. +-------------------------- +Weight: 0.2 +# +6146# +Fuel that is used for most of Mado Gear skills. Advanced skills consumes more fuel. +-------------------------- +Weight: 3 +# +6147# +A bullet which effuses cold air. +-------------------------- +Weight: 0.3 +# +6148# +A cold chocolate that will never melt. +-------------------------- +Weight: 0 +# +6149# +A simple hand made chocolate. +-------------------------- +Weight: 0 +# +6150# +A key with a gorgeous glyph. +This glyph symbolizes the Goddess Freya of Arunafeltz. +-------------------------- +Weight: 0 +# +6151# +A huge piece of Bradium. You can feel the mysterious power. +-------------------------- +Weight: 0 +# +6152# +A crystal that emits a mysterious light. It's peculiar that it is transparent but doesn't reflect the opposite side. +-------------------------- +Weight: 0 +# +6153# +A very special exchange ticket. You can exchange it with something good. +-------------------------- +Weight: 0 +# +6154# +A golden shining piece. It might have once been a piece of a beautiful horn pipe. +-------------------------- +Weight: 1 +# +6155# +The secret dishes available to the Members Card. +-------------------------- +Weight: 0 +# +6156# +A report from staff Rust requested for an approval to be given to Test Supervisor Caution. +-------------------------- +Weight: 1 +# +6157# +A cute pet Poring exchange coupon. +You can exchange this coupon with cute pet Poring by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6158# +A cute pet Drops exchange coupon. +You can exchange this coupon with cute pet Drops by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6159# +A cute pet Poporing exchange coupon. +You can exchange this coupon with cute pet Poporing by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6160# +A cute pet Lunatic exchange coupon. +You can exchange this coupon with cute pet Lunatic by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6161# +A cute pet Picky exchange coupon. +You can exchange this coupon with cute pet Picky by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6162# +A cute pet Pecopeco exchange coupon. +You can exchange this coupon with cute pet Pecopeco by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6163# +A cute pet Savage Babe exchange coupon. +You can exchange this coupon with cute pet Savage Babe by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6164# +A cute pet Spore exchange coupon. +You can exchange this coupon with cute pet Spore by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6165# +A cute pet Poison Spore exchange coupon. +You can exchange this coupon with cute pet Poison Spore by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6166# +A cute pet Chonchon exchange coupon. +You can exchange this coupon with cute pet Chonchon by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6167# +A cute pet Steel Chonchon exchange coupon. +You can exchange this coupon with cute pet Steel Chonchon by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6168# +A cute pet Petite exchange coupon. +You can exchange this coupon with cute pet Petite by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6169# +A cute pet Deviruchi exchange coupon. +You can exchange this coupon with cute pet Deviruchi by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6170# +A cute pet Isis exchange coupon. +You can exchange this coupon with cute pet Isis by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6171# +A cute pet Smokie exchange coupon. +You can exchange this coupon with cute pet Smokie by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6172# +A cute pet Dokkaebi exchange coupon. +You can exchange this coupon with cute pet Dokkaebi by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6173# +A cute pet Baby Desert Wolf exchange coupon. +You can exchange this coupon with cute pet Baby Desert Wolf by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6174# +A cute pet Yoyo exchange coupon. +You can exchange this coupon with cute pet Yoyo by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6175# +A cute pet Sohee exchange coupon. +You can exchange this coupon with cute pet Sohee by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6176# +A cute pet Rocker exchange coupon. +You can exchange this coupon with cute pet Rocker by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6177# +A cute pet Hunter Fly exchange coupon. +You can exchange this coupon with cute pet Hunter Fly by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6178# +A cute pet Orc Warrior exchange coupon. +You can exchange this coupon with cute pet Orc Warrior by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6179# +A cute pet Bapho Jr. exchange coupon. +You can exchange this coupon with cute pet Bapho Jr. by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6180# +A cute pet Munak exchange coupon. +You can exchange this coupon with cute pet Munak by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6181# +A cute pet Bongun exchange coupon. +You can exchange this coupon with cute pet Bongun by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6182# +A cute pet Christmas Goblin exchange coupon. +You can exchange this coupon with cute pet Christmas Goblin by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6183# +A cute pet Rice Cake exchange coupon. +You can exchange this coupon with cute pet Rice Cake by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6184# +A cute pet Zherlthsh exchange coupon. +You can exchange this coupon with cute pet Zherlthsh by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6185# +A cute pet Alice exchange coupon. +You can exchange this coupon with cute pet Alice by talking to trader in Prontera and Alberta. +-------------------------- +Weight: 0 +# +6186# +A consumable item used for destroying a fixed installed fort. +-------------------------- +Weight: 1 +# +6187# +This card appears to be defective because it's blank! +The manufacturer may have forgotten to put in it's stats or it may be someone's cruel joke. +Bring this to the Kafra Staff in the Kafra Headquarters in Aldebaran. +-------------------------- +Weight: 1 +# +6188# +Troy in Payon is going to do the safe slotting attempts for the price of this coupon. No Zeny, no Elunium, just this ad +the gear you are trying to slot! +Now is the time to use up all these coupons to get the gear you wanted slotted! +Come visit us in Payon as we amaze you with our Brand new service of adding a Card slot to normal equipment! +You've never seen something so amazing; Watch as Troy adds a slot with his eyes closed, it is an adventure for the whole family! +-------------------------- +This old advertisement is from many years ago, but it does promise the best of service from the best item Socket expert the world has ever known. +The map on the 2nd page of the flyer looks like the shop would be north of the grain mill in Payon. +-------------------------- +Weight: 1 +# +6189# +The information about the fire attribute magic, Fire Bolt, was written in magical language, but it seems to be outdated and cannot be used anymore. +-------------------------- +Weight: 0 +# +6190# +The information about the water elemental magic, Cold Bolt, was written in magical language, but they are worn out and cannot be used anymore. +-------------------------- +Weight: 0 +# +6191# +The information about the wind elemental magic, Lightning Bolt, was written in magical language, but they are worn out and cannot be used anymore. +-------------------------- +Weight: 0 +# +6192# +The information about the water elemental magic, Storm Gust, was written in magical language, but they are worn out and cannot be used anymore. +-------------------------- +Weight: 0 +# +6193# +The information about the wind elemental magic, Lord of Vermilion, was written in magical language, but they are worn out and cannot be used anymore. +-------------------------- +Weight: 0 +# +6194# +The information about the fire elemental magic, Meteor Storm, was written in magical language, but they are worn out and cannot be used anymore. +-------------------------- +Weight: 0 +# +6195# +The information about the fire elemental magic, Comet, was written in magical language, but they are worn out and cannot be used anymore. +-------------------------- +Weight: 0 +# +6196# +The information about the four elemental magic, Tetra Vortex, was written in magical language, but they are worn out and cannot be used anymore. +-------------------------- +Weight: 0 +# +6197# +The information about the wind elemental magic, Thunderstorm, was written in magical language, but they are worn out and cannot be used anymore. +-------------------------- +Weight: 0 +# +6198# +The information about the wind elemental magic, Jupital Thunder, was written in magical language, but they are worn out and cannot be used anymore. +-------------------------- +Weight: 0 +# +6199# +The information about the water elemental magic, Water Ball, was written in magical language, but they are worn out and cannot be used anymore. +-------------------------- +Weight: 0 +# +6200# +The information about the earth elemental magic, Heaven's Drive, was written in magical language, but they are worn out and cannot be used anymore. +-------------------------- +Weight: 0 +# +6201# +The information about the earth elemental magic, Earth Spike, was written in magical language, but they are worn out and cannot be used anymore. +-------------------------- +Weight: 0 +# +6202# +The information about the earth elemental magic, Earth Strain, was written in magical language, but they are worn out and cannot be used anymore. +-------------------------- +Weight: 0 +# +6203# +The information about the wind elemental magic, Chain Lightning, was written in magical language, but they are worn out and cannot be used anymore. +-------------------------- +Weight: 0 +# +6204# +The information about the fire elemental magic, Crimson Rock, was written in magical language, but they are worn out and cannot be used anymore. +-------------------------- +Weight: 0 +# +6205# +The information about the neutral elemental magic, Drain Life, was written in magical language, but they are worn out and cannot be used anymore. +-------------------------- +Weight: 0 +# +6206# +A cushion embroidered with the words \ +. +Today's saying is written on the back. +'I only looked up at the roof to see a dog that was chasing a chicken.' +-------------------------- +Weight: 0 +# +6207# +A cushion embroidered with the words \ +. +Today's saying is written on the back. +'No news are good news.' +-------------------------- +Weight: 0 +# +6208# +A cushion embroidered with the words \ +. +Today's saying is written on the back. +'The more you hurry, the more you go back.' +-------------------------- +Weight: 0 +# +6209# +A coin which symbolizing the spirit of the pegasus knight are engraved. +-------------------------- +Weight: 0 +# +6210# +Be careful of the sharp thorns that surround this. +It is used for Genetic Skill, Thorn Trap, Thorn Wall and Crazy weed. +-------------------------- +Weight: 0.1 +# +6211# +An unpleasant seed that is used for reddish fruits, it looks as if blood is inside of it. +It's used for Genetic Skill, Blood Sucker. +-------------------------- +Weight: 0.1 +# +6212# +A purplish spore. When it's touched a purple dust curls up that you need to be careful of. +It's consumed for Genetic Skill, Spore Explosion. +-------------------------- +Weight: 0.1 +# +6213# +A black powder that explodes when heated. It's more explosive than gunpowder. +-------------------------- +Weight: 0.1 +# +6214# +A snow-white powder. It's so light that it stays in the air for a long time. Do not breathe it in or it can be fatal. +-------------------------- +Weight: 0.1 +# +6215# +Gas that stimulates the eyes and nose. When exposed to this gas, do not rub your eyes. Cleanse with clear water immediately if you that happens. +-------------------------- +Weight: 0.1 +# +6216# +A bottle filled with inedible oil. +-------------------------- +Weight: 0.1 +# +6217# +A Mandragora flowerpot used for an experiment. Fragile. Never pull out recklessly. +-------------------------- +Weight: 0.1 +# +6218# +A delivery box from Dieshin Man in Morocc Ruins. +-------------------------- +Weight: 0 +# +6219# +A token that certifies a member of the Eden Group. It's made to be very portable. +-------------------------- +Type: Quest +Weight: 0 +# +6220# +Various colors are mixed into this mysterious dye mixture. +Can be used to dye a Beanie, Drooping Cat, Magician Hat, or Deviruchi Hat to a different color. +-------------------------- +Weight: 1 +# +6221# +A ball with mysterious power. +-------------------------- +Weight: 0 +# +6222# +Small purity beads. +-------------------------- +Weight: 0 +# +6223# +The strongest metal on the midgard continent, and because of its strength is incredibly difficult to forge. +Used for refining and toughening Armor that level of refinement more than +10. +When attempting to upgrade and if the upgrade attempt fails, it will only downgrade 3 level instead of 1 like a HD Carnium. +-------------------------- +Type: Forging material +Weight: 15 +# +6224# +The strongest mineral found in the Ash Vacuum. +It seems very difficult to work with, but with research its come to be the best ore for forging weapons that level of refinement more than +10. +when attempting to upgrade and if the upgrade attempt fails, it will only downgrade 3 level instead of 1 like a HD Bradium. +-------------------------- +Type: Forging material +Weight: 15 +# +6225# +A high density Carnium used in upgrading armor. +Used for refining and toughening Armor that level of refinement more than +10 and higher. +This Carnium's density guarantees that your armor will NOT break when attempting to upgrade +And if the upgrade attempt fails, it will only downgrade 1 level instead of 3 like a normal Carnium. +-------------------------- +Type: Forging material +Weight: 1 +# +6226# +A high density Bradium used in upgrading weapons. +Used for refining and forging weapons at +10 and higher. +This Bradium's density guarantees that your weapon will NOT break when attempting to upgrade +And if the upgrade attempt fails, it will only downgrade 1 level instead of 3 like a normal Bradium. +-------------------------- +Type: Forging material +Weight: 1 +# +6227# +A stone that was once embedded in the body of an old orc shrine maiden to brainwash the orc. +It contains abominable magical powers. +-------------------------- +Weight: 1 +# +6228# +You can Refine your weapon to +9, visit Prontera's Refining Expert. -1 time limited- +-------------------------- +Weight: 0 +# +6229# +You can Refine your weapon to +8, visit Prontera's Refining Expert. -1 time limited- +-------------------------- +Weight: 0 +# +6230# +You can Refine your weapon to +7, visit Prontera's Refining Expert. -1 time limited- +-------------------------- +Weight: 0 +# +6231# +You can Refine your weapon to +6, visit Prontera's Refining Expert. -1 time limited- +-------------------------- +Weight: 0 +# +6232# +You can Refine your armor to +9, visit Prontera's Refining Expert. -1 time limited- +-------------------------- +Weight: 0 +# +6233# +You can Refine your armor to +8, visit Prontera's Refining Expert. -1 time limited- +-------------------------- +Weight: 0 +# +6234# +You can Refine your armor to +7, visit Prontera's Refining Expert. -1 time limited- +-------------------------- +Weight: 0 +# +6235# +You can Refine your armor to +6, visit Prontera's Refining Expert. -1 time limited- +-------------------------- +Weight: 0 +# +6236# +Lucky number seven card. Let's collect seven! +-------------------------- +Weight: 0 +# +6237# +The most famous fruit from Brasilis. This fruit has natural properties that boost concentration and speed. +-------------------------- +Weight: 0 +# +6238# +You can Refine your weapon to +11, visit Prontera's Refining Expert. -1 time limited- +-------------------------- +Weight: 0 +# +6239# +You can Refine your armor to +11, visit Prontera's Refining Expert. -1 time limited- +-------------------------- +Weight: 0 +# +6240# +A High Density Oridecon that has been buried deep underground. +Used as a material to strengthen weapons currently from Refine Levels 7 through 9. +This item's density ensures that Refine attempts will not break the weapon and if the attempt fails it will only downgrade by 1. +Only a Blacksmith named Mighty Hammer can use this ore to Refine. +-------------------------- +Type: Forging material +Weight: 1 +# +6241# +A High Density Elunium that has been buried deep underground. +Used as a material to strengthen armor currently from Refine Levels 7 through 9. +This item's density ensures that Refine attempts will not break the armor and if the attempt fails it will only downgrade by 1. +Only a Blacksmith named Mighty Hammer can use this ore to Refine. +-------------------------- +Type: Forging material +Weight: 1 +# +6242# +A coin made from 24K pure gold issued by the Kingdom of Rune Midgard. It is used for very special purposes and also has a high collection value. +-------------------------- +Type: Valuable +Weight: 1 +# +6243# +A token that can be exchanged for cash items. +-------------------------- +Weight: 0 +# +6244# +Dangerous powder which has a dark color that is used to make a bomb. Have to handle with care! +-------------------------- +Weight: 0.1 +# +6245# +Matt black colored very fine powder. Be careful with it or it will blow up. +-------------------------- +Weight: 0.1 +# +6246# +Yellow powder with no smell nor taste. Burns with blue sparks when heated. +-------------------------- +Weight: 0.1 +# +6247# +A salty White powder with no smell. +-------------------------- +Weight: 0.1 +# +6248# +A jar which contain a mixed chowder. +-------------------------- +Weight: 1 +# +6249# +The most delicious part of a Savage. +-------------------------- +Weight: 1 +# +6250# +Long iron skewer for barbecue dishes. +-------------------------- +Weight: 1 +# +6251# +A kind of fuel which is made of wood. It adds great taste to food. +-------------------------- +Weight: 1 +# +6252# +Blood of a Desert Wolf which is used for medications. +-------------------------- +Weight: 1 +# +6253# +A lump of very very cold ice. +-------------------------- +Weight: 1 +# +6254# +Well roasted pressed meat. +-------------------------- +Weight: 1 +# +6255# +A large cooking pot which can cook a large amount of food. +-------------------------- +Weight: 1 +# +6256# +A fragment of ice made when it's crushed. +-------------------------- +Weight: 1 +# +6257# +A transparent crystal of ice. +-------------------------- +Weight: 1 +# +6258# +The most common fruit on Comodo island. It has a sour and sweet flavor unlike it's shape. +-------------------------- +Weight: 1 +# +6259# +A sticky Drosera tentacle which is widely grown in Arunafeltz. It's hard to collect because of it's stickyness. +-------------------------- +Weight: 1 +# +6260# +Tail of Petite. It'll grow again when it's cut. +-------------------------- +Weight: 1 +# +6261# +White and thin noodle. It's a summer delicacy. +-------------------------- +Weight: 1 +# +6262# +A basic ingredient of cooking. It requires hours of boiling to make it. It's essential especially for noodles. +-------------------------- +Type: Cooking ingredient +Weight: 1 +# +6263# +Fruit of coconut tree. It contains fruit juice within. +-------------------------- +Type: Cooking ingredient +Weight: 1 +# +6264# +Round and green net patterned fruit. It has a sweet smell. +-------------------------- +Type: Cooking ingredient +Weight: 1 +# +6265# +A fruit with a sour and sweet flavor. The peel of the fruit is tough but the fruit inside is delicious. +-------------------------- +Type: Cooking ingredient +Weight: 1 +# +6266# +A Key which is nicknamed \ +. You're not sure what this key is for. +-------------------------- +Type: Quest +Weight: 0 +# +6267# +A Key which nicknamed \ +. You're not sure what this key is for. +-------------------------- +Type: Quest +Weight: 0 +# +6268# +A Key which nicknamed \ +. You're not sure what this key is for. +-------------------------- +Type: Quest +Weight: 0 +# +6269# +A legendary brush which is used by a Master of dark arts. People says it's made of the best ivory and hair of a god. +-------------------------- +Type: Quest +Weight: 0 +# +6270# +A picture of Maestro Song that was taken in front of Thanatos tower. Written on the back is \ +. +-------------------------- +Type: Quest +Weight: 0 +# +6271# +A receipt from a shop in Juno. There's a signature which looks like it was signed by Maestro Song\ +, + +, + +, + +# +6272# +A seed of a plant which is widely used for experiments that grows fast and is easy to modify. +-------------------------- +Type: Quest +Weight: 0 +# +6273# +An altered seed which is influenced by external factors. Nobody knows what kind of plant will bloom from it. +-------------------------- +Type: Quest +Weight: 0 +# +6274# +Traces of a cloth which has been worn by a Saint. +-------------------------- +Type: Quest +Weight: 0 +# +6275# +A Cross shield which is said to have been used by King Schmitz. It's so old and shabby that it seems impossible to use. +-------------------------- +Type: Quest +Weight: 0 +# +6276# +A transparent reagent without any impurities. +-------------------------- +Type: Quest +Weight: 0 +# +6277# +A red colored reagent. +-------------------------- +Type: Quest +Weight: 0 +# +6278# +A black colored reagent. +-------------------------- +Type: Quest +Weight: 0 +# +6279# +List of ingredients required to make an Apple bomb. +Material: +1 Apple +1 Scell +1 Gun Powder +1 Detonator +-------------------------- +Type: Genetic item +Weight: 1 +# +6280# +List of ingredients required to make a Pineapple bomb. +Material: +1 Pineapple +1 Cactus Needle +3 Gun Powder +1 Detonator +-------------------------- +Type: Genetic item +Weight: 1 +# +6281# +List of ingredients required to make a Coconut bomb. +Material: +1 Coconut +2 Gun Powder +1 Detonator +-------------------------- +Type: Genetic item +Weight: 1 +# +6282# +List of ingredients required to make a Melon bomb. +Material: +1 Melon +1 Sticky Mucus +2 Gun Powder +1 Detonator +-------------------------- +Type: Genetic item +Weight: 1 +# +6283# +List of ingredients required to make a Banana bomb. +Material: +1 Banana +1 Mould Powder +4 Gun Powder +1 Detonator +-------------------------- +Type: Genetic item +Weight: 1 +# +6284# +A cultivation method essential for manufacturing thorn seeds, vampire plant seeds, and bomb mushroom spores. +-------------------------- +Thorn Plant Seed: Prickly Fruit 10 +Blood Sucker Plant Seed: Maneater Root 10 +Bomb Mushroom Spore:Mushroom Spore 10, Poison Spore 5, Gun Powder 2 +-------------------------- +Type: Genetic item +Weight: 1 +# +6285# +This is the manual book for producing Enriched White PotionZ, Vitata500, Enriched Celermine Juice and Cure Free. +-------------------------- +Enriched White PotionZ: Empty Test Tube 10 +White potion 20 +White herb 10 +Alcohol 1 +Vitata500: Empty Test Tube 10 +Grape 10 +Honey 10 +Blue Herb 10 +Enrich Celermine Juice: Empty Test Tube 10 +Awakening Potion 5 +Concentration Potion 5 +Spicy Sauce 5 +Cure Free: Empty Test Tube 10 +Panacea 5 +Green Herbs 20 +Mastela Fruit 1 +Yggdrasil Leaf 1 +Golden Yesterday: Empty Test Tube 10 +Yggdrasil Berry 10 +Gold 5 +Red Herb Activator: Empty Test Tube 10 +Red Herb 45 +Yggdrasil Seed 5 +Blue Herb Activator: Empty Test Tube 10 +Blue Herb 15 +Yggdrasil Seed 5 +Concentrated Red Syrup Potion: Empty Test Tube 10 +Empty Potion Bottle 5 +Red Syrup 15 +Concentrated Blue Syrup Potion: Empty Test Tube 10 +Empty Potion Bottle 5 +Blue Syrup 15 +Concentrated Golden Syrup Potion: Empty Test Tube 10 +Empty Potion Bottle 5 +White Syrup 10 +Yellow Syrup 10 +-------------------------- +Type: Genetic item +Weight: 1 +# +6286# +A Gym Pass that can be given to a special NPC to learn a skill that will increase your Maximum Weight Capacity by 200 For each skill Level. +This special skill can only be learned up to Level 10. +-------------------------- +Weight: 1 +# +6287# +If you give this coupon to the Stylist Dinorah Lacostt at Prontera or Eden Group Headquarters, she will dye your costume to 1 of 3 different color variations. +-------------------------- +Weight: 0 +# +6288# +The joyful color of yellow makes you feel strangely happy. Every time you think about opening it you resist the temptation. Perhaps a professional Gift Opener could be of assistance. +-------------------------- +You seem to recall seeing such a gal at: +Prontera 164 110 +Payon 162 124 +Aldebaran 124 114 +Juno 179 187 +-------------------------- +Weight: 1 +# +6289# +Various colors are mixed into this mysterious dye. It is a primary ingredient for dying certain headgears. +-------------------------- +Weight: 1 +# +6290# +This coupon can be exchanged, along with the required materials, to a hair dresser to change your hairstyle. +This item is not required for those who have VIP status. +-------------------------- +Weight: 0 +# +6291# +Concentrated Elunium that has been buried deep underground. +Used as a material to strengthen armor. +Enhances a chance of successful upgrade. +Only Suhnbi of Payon is capable of refining with this material. +-------------------------- +Type: Forging material +Weight: 1 +# +6292# +Dense Oridecon that has been buried deep underground. +Used as a material to strengthen weapons. +Enhances a chance of successful upgrade. +Only Suhnbi of Payon is capable of refining with this material. +-------------------------- +Type: Forging material +Weight: 1 +# +6293# +A certificate imbued with the power of the invulnerable Siegfried which allows its bearer to overcome death. +Revives the dead character. +-------------------------- +Weight: 1 +# +6294# +This written oath professes undying love, loyalty and union. +Forever in life and eternally beyond death. +-------------------------- +Weight: 1 +# +6295# +If you give this coupon to the NPC, she will dye your costume to its original color. +-------------------------- +Weight: 0 +# +6296# +There are information about the reservist training participants name, listed along with the registration date. +-------------------------- +Weight: 1 +# +6297# +A special bottle which is designed for throwing. Caution! It's fragile. +-------------------------- +Weight: 1 +# +6298# +A crushed pumpkin. It must have been dropped and stepped on by someone. +-------------------------- +Weight: 0 +# +6299# +A worn fabric. Its a transparent and clean cloth. +-------------------------- +Weight: 0 +# +6300# +A lottery from Dragon festival. +-------------------------- +Weight: 0 +# +6301# +A lottery from Dragon festival. You can get 1 out of 10 a lottery card. +-------------------------- +Weight: 0 +# +6302# +A special bond received from a GM. +Each bond is worth 2,147,483,647 zeny. +-------------------------- +Weight: 0 +# +6304# +A certificate given by Sapha leaders for meritorious deeds. +-------------------------- +Type: Quest +Weight: 0 +# +6305# +A piece of skin that is frozen solid. Something is very strange about it... +-------------------------- +Type: Quest +Weight: 0 +# +6306# +A mass made of somebody or something's blood. It is not similar to any human or creature's blood that you've ever seen before. +-------------------------- +Type: Quest +Weight: 0 +# +6307# +Mineral with an odd pulse similar to the dimensional crack. You sense a magic that is not of this world from it. +-------------------------- +Type: Quest +Weight: 0 +# +6308# +An unappraised ancient item. It's true nature is unknown. +-------------------------- +Weight: 0 +# +6316# +A certificate imbued with the power of the invulnerable Siegfried which allows its bearer to overcome death. +-------------------------- +Revives the dead character. +-------------------------- +Weight: 1 +# +6319# +A shard from a broken piece of Bradium. +-------------------------- +Weight: 1 +# +6320# +There is a rumor this stone able to reset character's stats. +-------------------------- +Take it and head toReseterprontera,146,304,0,100,0,0 +Prontera 146 304 +-------------------------- +Base Lv 1-40: reset for free. +Base Lv 41-75: 1 Premium Reset Stone required. +Base Lv 76-85: 2 Premium Reset Stones required. +Base Lv 86-98: 3 Premium Reset Stones required. +Base Lv 99: 4 Premium Reset Stones required. +-------------------------- +Type: Valuable +Weight: 0 +# +6321# +A sturdy helm with hooked horns. Can be sold to Item Collectors. +-------------------------- +Type: Collectible +Weight: 1 +# +6322# +A slim helm with stag horns. Can be sold to Item Collectors. +-------------------------- +Type: Collectible +Weight: 1 +# +6323# +A helm with small horns on both sides. Can be sold to Item Collectors. +-------------------------- +Type: Collectible +Weight: 1 +# +6324# +A helm decorated with a single horn. Can be sold to Item Collectors. +-------------------------- +Type: Collectible +Weight: 1 +# +6325# +White leg of a Manuk region spider. Can be sold to Item Collectors. +-------------------------- +Type: Collectible +Weight: 1 +# +6326# +A beautiful wing fragment of a large insect. Gorgeous colors are displayed between the torn hide. +-------------------------- +Type: Collectible +Weight: 1 +# +6327# +The density and solidity has been heightened by repeated experiments from Rune Midgard's scholars. It seems that it becomes more difficult for weapon upgrade. +When you fail while upgrading defense weapon whose Refine Level is over +10, it won't be destroyed. +(When the upgrade fails, Refine Level gets -1) +Bastaitemmall,25,71,0,100,0,0 +Weight: 1 +# +6328# +A calender with \ + word written on it. +It's the begin of new year. +-------------------------- +Weight: 0 +# +6329# +A calender with \ + word written on it. +It's the month of giving and receiving chocolate. +-------------------------- +Weight: 0 +# +6330# +A calender with \ + word written on it. +It's the beginning of spring. +-------------------------- +Weight: 0 +# +6331# +A calender with \ + word written on it. +There is day when people plant trees for the blue planet. +-------------------------- +Weight: 0 +# +6332# +A calender with \ + word written on it. +There is day when kids and parents are having fun together. +-------------------------- +Weight: 0 +# +6333# +A calender with \ + word written on it. +There is day when people honoring their ancestors. +-------------------------- +Weight: 0 +# +6334# +A calender with \ + word written on it. +The beginning of exiting summer holidays. +-------------------------- +Weight: 0 +# +6335# +A calender with \ + word written on it. +This is the month when RO celebrating their anniversary. +-------------------------- +Weight: 0 +# +6336# +A calender with \ + word written on it. +This is the month when people celebrating crop harvest by watching the moon. +-------------------------- +Weight: 0 +# +6337# +A calender with \ + word written on it. +This is the birth month of great character. +-------------------------- +Weight: 0 +# +6338# +A calender with \ + word written on it. +This is the month when the wishing day celebrated. +-------------------------- +Weight: 0 +# +6339# +A calender with \ + word written on it. +This is the month when kids and adults ca have an exciting day. +-------------------------- +Weight: 0 +# +6340# +An old piece of sheet music filled with notes inscribed in green ink. +-------------------------- +Weight: 1 +# +6341# +An old piece of sheet music filled with notes inscribed in red ink. +-------------------------- +Weight: 1 +# +6342# +An old piece of sheet music filled with notes inscribed in purple ink. +-------------------------- +Weight: 1 +# +6343# +An old piece of sheet music filled with notes inscribed in blue ink. +-------------------------- +Weight: 1 +# +6344# +A special edition of an extremely maniac novel that focuses on muscle. +There are rumors that some women want this... +-------------------------- +Weight: 0 +# +6345# +Filled with loving varied colors. +-------------------------- +Weight: 0 +# +6347# +A paper from Baphomet server marked with wishes. +2010 is a bright year! The year of Tiger! Young Businessman? Get lost! +There is small prints at the bottom of the paper. +'If you found this, please go to the Port Town!' +-------------------------- +Weight: 0 +# +6348# +A paper from Baphomet server marked with wishes. +Stay healthy and be happy with your family. We want stay with us for a long time in this ragnarok story. +There is small prints at the bottom of the paper. +'If you found this, please go to the Port Town!' +-------------------------- +Weight: 0 +# +6349# +A paper from Sarah server marked with wishes. +Just as the new year of 2010 begins, Ragnarok discards all of the good and bad memories of the past and starts from the beginning again and wishes a wonderful resurrection! +-------------------------- +Weight: 0 +# +6350# +This is a virtue for the low evil of the Randgris server. +In the new year, everything you wish for will come true. +-------------------------- +Weight: 0 +# +6351# +This is a virtue of the few royal thugs on the Randgris server. +Like the band of the white tiger in the year of Gyeongin, receiving the energy of a strong and courageous tiger, always healthy and full of good things, wishing for infinite development. +-------------------------- +Weight: 0 +# +6352# +This is a virtue of the lack of J.J on the Thanatos server. +Half my life companion! ragnarok. I wish you a good 2010 year. +-------------------------- +Weight: 0 +# +6353# +This is a virtue of the Baphomet server's few Power Force Rangers. +After finishing well this year, the coming year is the year of the tiger, as if a tiger died and left a leather, Ragnarok! Long long in memory of users! +-------------------------- +Weight: 0 +# +6354# +It is a virtue that few people lick the back of the Randgris server. +In the new year, I hope that Gravity can be more and more happy with users. +-------------------------- +Weight: 0 +# +6355# +This is a virtue of Baphomet's server's little angularity. +Honestly, the global economic situation was bad this year.. But, as there are uphill roads if there is a downhill road, I hope that next year will be full of only good things. +-------------------------- +Weight: 0 +# +6356# +This is a virtue of the little Seungsoon of the flower snake on the Tanatos server. +I hope that in 2010, we will be full of energy so that we can all die for the prosperity of our individual family state. +-------------------------- +Weight: 0 +# +6357# +Even the number one fortune cookie maker sometimes makes such a mistake. +...Maybe a collection merchant buys you. +-------------------------- +Weight: 1 +# +6358# +5,000 won free cash voucher. +- You can check it on the Ragnarok website after March 10, 2010. +-------------------------- +Weight: 0 +# +6359# +Guidebook voucher. +- You can check it on the Ragnarok website after March 10, 2010. +-------------------------- +Weight: 0 +# +6360# +A fire elemental gemstone, a small piece split from Red Blood. +-------------------------- +Type: Skill necessity +Weight: 0.5 +# +6361# +A water elemental gemstone, a small piece split from Crystal Blue. +-------------------------- +Type: Skill necessity +Weight: 0.5 +# +6362# +A wind elemental gemstone, a small piece split from Wind of Verdure. +-------------------------- +Type: Skill necessity +Weight: 0.5 +# +6363# +An Earth elemental gemstone, a small piece split from Green Live. +-------------------------- +Type: Skill necessity +Weight: 0.5 +# +6364# +A coin from a treasure chest. Can be exchanged with strong equipment. +-------------------------- +Type: Valuable +Weight: 0 +# +6365# +A coin from a treasure chest. Can be exchanged with strong equipment. +-------------------------- +Type: Valuable +Weight: 0 +# +6366# +A coin from a treasure chest. Can be exchanged with strong equipment. +-------------------------- +Type: Valuable +Weight: 0 +# +6367# +A coin from a treasure chest. Can be exchanged with strong equipment. +-------------------------- +Type: Valuable +Weight: 0 +# +6368# +A coin from a treasure chest. Can be exchanged with strong equipment. +-------------------------- +Type: Valuable +Weight: 0 +# +6369# +There are several beads with different letters written on them. +When all types are prepared...? +-------------------------- +Weight: 0 +# +6370# +There are several beads with different letters written on them. +When all types are prepared...? +-------------------------- +Weight: 0 +# +6371# +There are several beads with different letters written on them. +When all types are prepared...? +-------------------------- +Weight: 0 +# +6372# +There are several beads with different letters written on them. +When all types are prepared...? +-------------------------- +Weight: 0 +# +6373# +There are several beads with different letters written on them. +When all types are prepared...? +-------------------------- +Weight: 0 +# +6374# +There are several beads with different letters written on them. +When all types are prepared...? +-------------------------- +Weight: 0 +# +6375# +There are several beads with different letters written on them. +When all types are prepared...? +-------------------------- +Weight: 0 +# +6376# +A badge that is provided to warriors who have brought honor on the Krieger Von Midgard field. +This badge can be used as KVM Points and exchanged for rewards from the KVM Logistic Officer in the Battle Field Waiting Room. +Personal KVM Points will be used before this item is used for the reward requirement. +Speak to a Maroll Battle Recruiter in Prontera, Morocc, Aldebaran, Geffen, Payon, Lighthalzen or Rachel to be sent to the Battle Field Room. +-------------------------- +Weight: 0 +# +6377# +An official license from the Merchant Guild that allows you to open a Bulk Buyer Vending Shop. +You must have at least 1 of the items in your inventory that you wish to Buy in Bulk from others. +-------------------------- +Weight: 1 +# +6378# +A token given to winner of server tournament. Can be exchanged with items. +-------------------------- +Weight: 0 +# +6379# +A card dedicated for currency replacement. +-------------------------- +Type: Valuable +Weight: 1 +# +6380# +A small coin with a polished surface. It is used for many purposes in the Village of Mora. +-------------------------- +Type: Valuable +Weight: 0 +# +6381# +A tool for digging. Some people seem to use it to make Ramyeon, fry eggs and scoop up rice. +-------------------------- +Weight: 1 +# +6382# +A small case used for keeping ashes of the dead safe. +-------------------------- +Weight: 1 +# +6383# +A piece of paper with a few words written on it. When you put all of them together, you may be able to find out Lope's whereabouts. +-------------------------- +Type: Quest +Weight: 0 +# +6384# +A wedding ring, a symbol of Lope's love for Euridi. +-------------------------- +Type: Quest +Weight: 0 +# +6385# +A bag that contains all the research tools used by researchers. +-------------------------- +Type: Quest +Weight: 0 +# +6386# +A sample of bath water, taken to study the mysterious power of the bath water. +-------------------------- +Type: Quest +Weight: 0 +# +6387# +A tooth sample thought to be from the unidentified creature in the mysterious bath in Mora Village. +-------------------------- +Type: Quest +Weight: 0 +# +6388# +A scale sample thought to be from the unidentified creature in the mysterious bath in Mora Village. +-------------------------- +Type: Quest +Weight: 0 +# +6389# +A sample of puddle water, taken to study the bath in Mora Village. +-------------------------- +Type: Quest +Weight: 0 +# +6390# +A small pocket dropped by a Lapine. It contains something. +-------------------------- +Type: Quest +Weight: 0 +# +6391# +A box containing all kinds of commodities and food. Feels quite heavy. +-------------------------- +Weight: 200 +# +6392# +A box full of Bradium mined in Manuk. It is made to look plain so that one can't tell what's inside by looking at it. +-------------------------- +Weight: 1 +# +6393# +A soft, light and round feather. It seems useful for decorating things. +-------------------------- +Weight: 1 +# +6394# +A sparkly and luxurious fur ball. It seems useful for decorating things. +-------------------------- +Weight: 1 +# +6395# +Mysterious powder, rumored to be used by naughty fairies to play tricks. Carries a hint of magical power. +-------------------------- +Weight: 1 +# +6396# +Tools that can be used to make socket. Disappears if the Socket Enchantment succeeds or fails. +Piercing Expertitemmall,16,65,0,100,0,0 +-------------------------- +Weight: 1 +# +6397# +An application ticket that says, if you apply, the prize will be in my hand!!! +You can exchange products according to the number of tickets at Whigel's prize vending machine! +-------------------------- +Weight: 0 +# +6398# +The warehouse service from Cat Hand has begin! +[1 time use only] +Find a cat warehouse staff and show this flyer for opportunity to use their warehouse for free! Don't miss it! +-------------------------- +Weight: 0 +# +6399# +A ticket for marketing team. Can be exchanged with something. +Open http://www.ragnarok.co.kr/news/listEvent.asp for more information. +-------------------------- +Weight: 1 +# +6400# +A new year greeting card written by Operating team. +-------------------------- +Weight: 0 +# +6401# +Vegetable oil from oil palm fruit. It's very heavy!! +-------------------------- +Weight: 50 +# +6402# +An oil palm fruit. It is used when vegetable oil is made. +-------------------------- +Weight: 5 +# +6403# +A leather of comodo. It is used when weapon or shield is made. +-------------------------- +Weight: 1 +# +6404# +It's a handle of weapon. +-------------------------- +Weight: 10 +# +6405# +It's a feather of bird called Cendrawasih. It's splendid and has a strong green color. +-------------------------- +Weight: 1 +# +6406# +It's a feather used when the 1st Jaty Crown was made. Shows beautiful light. +-------------------------- +Weight: 10 +# +6407# +A special crystal fragment that can only be processed by the bombus. +Take it to the bombas at the campsite. +-------------------------- +Weight: 1 +# +6408# +A special crystal that can be processed only by bombas. +Take it to the bombas at the campsite. +-------------------------- +Weight: 2 +# +6409# +A special lump of crystals that can only be processed by the bombas. +Take it to the bombas at the campsite. +-------------------------- +Weight: 3 +# +6410# +Kartu ucapan selamat Idul Fitri yang sering dikirmkan pada keluarga, kerabat dan teman pada waktu Lebaran tiba. +-------------------------- +Weight: 1 +# +6411# +A ripe watermelon. +-------------------------- +Weight: 1 +# +6412# +A medal from winning a monster race. Can be exchanged with something. +-------------------------- +Type: Quest +Weight: 0 +# +6413# +A contract of heart that nullifies Experience penalty upon KO'ed. +If You have this item in your inventory when KO'ed, this item will be used to prevent experience loss. +Even the current experience is 0%, this item will still be used. +-------------------------- +Weight: 1 +# +6414# +ATK +1000, MATK +1000, ASPD 193. +-------------------------- +YOU JUST ACTIVATED MY TRAP CARD!! +-------------------------- +Type: Card +Compound on: Wounded Heart +Weight: 1 +# +6415# +Your precious Homunculus rebuilt into this Strange Embryo. +-------------------------- +Weight: 1 +# +6416# +Coupons that can be exchanged with the pet wanderer! +Pet traders in Prontera or Alberta will look for this coupon. +-------------------------- +Type: Quest +Weight: 0 +# +6417# +Sunkissed Silvervine Fruit. Humans think that it is normal and tastes bad but it is valuable in Malangdo. +-------------------------- +Type: Quest +Weight: 0 +# +6418# +Glittering high class coin. Used for enchanting luxurious Level 4 weapons. +-------------------------- +Type: Valuable +Weight: 0 +# +6419# +Glittering high class coin. Used for enchanting luxurious Level 4 weapons. +-------------------------- +Type: Valuable +Weight: 0 +# +6420# +General normal coin. Used for enchanting middle class weapons. +-------------------------- +Type: Valuable +Weight: 0 +# +6421# +General normal coin. Used for enchanting middle class weapons. +-------------------------- +Type: Valuable +Weight: 0 +# +6422# +Poor low class coin. A high number of these can be used to enchant weapons. +-------------------------- +Type: Valuable +Weight: 0 +# +6423# +Relic of Seagod's anger. Nobody knows about the ability of this weapon. +-------------------------- +Type: Valuable +Weight: 0 +# +6424# +A piece of a soul's spirit that refuses to rest in peace. +-------------------------- +Type: Quest +Weight: 0 +# +6425# +A certificate that says that you have helped liberate a soul from being damned in the afterlife. +-------------------------- +Type: Quest +Weight: 0 +# +6426# +It looks like normal canned food but the surface is rusted here and there. It actually grosses you out. +-------------------------- +Type: Quest +Weight: 1 +# +6427# +Sack full of poor quality canned food. It's actual purpose is suspicious... +-------------------------- +Type: Quest +Weight: 0 +# +6428# +Adventure Card from Meow Adventure Club. This card is necessary for experiencing the adventure of the Meow Adventure Club. +-------------------------- +Type: Valuable +Weight: 0 +# +6429# +Adventure Card from Meow Adventure Club. This card is necessary for experiencing the adventure of the Meow Adventure Club. +-------------------------- +Type: Valuable +Weight: 0 +# +6430# +A fragment of a picture which was found in the treasure hunt. When all the fragments are gathered, it will become a complete picture. +-------------------------- +Type: Quest +Weight: 0 +# +6431# +A normal, ordinary bucket. Seems like anything can be carried with it. +-------------------------- +Type: Quest +Weight: 10 +# +6432# +A bucket with water filled to the top. It is pretty heavy, so be careful not to spill it. +-------------------------- +Type: Quest +Weight: 300 +# +6433# +A brush which is proper for cleaning. The bristles are abrasive enough so they will let a fine, well cleaning. +-------------------------- +Type: Quest +Weight: 30 +# +6434# +A Fixing Kit box for a crack in the ground. There is everything for fixing like shovel, saw, adhesives, stapler, sea cucumber and sea squirt. +-------------------------- +Type: Quest +Weight: 100 +# +6435# +A freshly picked fruit of Yggdrasil. Smells fresh too! +Weight: 10 +# +6436# +Rental Item +A token in which Protection of the Seagod was endowed into. It allows you to have a special ability to survive deep under the sea. Used to access the Culvert Memorial Dungeon +-------------------------- +Weight: 0 +# +6437# +A perfume made to make one smell like a Scaraba. Spraying this will help you avoid Scarabas from mobbing you. +-------------------------- +Weight: 0 +# +6438# +An oridecon which is blessed by the smith God. +When refining weapon with Refine Level between +6 and +12, weapon won't vanish even if the Refine fails. +-------------------------- +Type: Forging material +Weight: 1 +# +6439# +An elunium which is blessed by the smith God. +When refining weapon with Refine Level between +6 and +12, armor won't vanish even if the Refine fails. +-------------------------- +Type: Forging material +Weight: 1 +# +6440# +A lubricant which helps removing cards which are already stuck in a slot of equipment. +However, this will only help the card removal. +The equipment and its Refine Level may have a problem after trying. +-------------------------- +Weight: 0 +# +6441# +A lubricant which helps removing cards which are already stuck in a slot of equipment. +However, this will only help the card removal. +The equipment and its Refine Level may have a problem after trying. +-------------------------- +Weight: 0 +# +6442# +Rental Item +A special hunting stick to hunt Giant Octopus. Use this item to access the Culvert Memorial Dungeon. +-------------------------- +Weight: 0 +# +6443# +[Handle with care] +The legendary agent which is said to melt the surface of an object so anything can be separated. It will be perfect for taking off MVP cards. +[Richard]malangdo,220,160,0,100,0,0 +-------------------------- +Weight: 0 +# +6444# +Merely owning this gloriously resplendent gem is said to be a sign of being chosen by fate to wield great power. +# +6446# +A suspicious Green Paper. +-------------------------- +Weight: 0 +# +6447# +The Green Paper has changed its color to Red. Bring this to the Christmas tree in Lutie so the Witch can experience a White Christmas. +-------------------------- +Weight: 0 +# +6448# +A piece of paper with a picture of White snow. +-------------------------- +Weight: 0 +# +6449# +A Casaul diary that has entries about the daily life of an average kid. +-------------------------- +Weight: 0 +# +6450# +A Honest diary that has entries about the good deeds a kid has done on a daily basis. +-------------------------- +Weight: 0 +# +6451# +Bring these to Pipielle in Malangdo and he will exchange them for Malangdo Coins. +-------------------------- +Weight: 0 +# +6452# +Ludwig's engagement ring for his girlfriend, Etoille, that he left at the Rekenber Headquarters. +-------------------------- +Weight: 1 +# +6453# +A gift stolen from Santa's gift bag by the monsters in Toy Factory. +-------------------------- +Weight: 1 +# +6454# +One of Santa's Gift Bags that he uses when he delivers gifts to the children of the world. +-------------------------- +Weight: 1 +# +6455# +A redemption voucher required to receive the pet [Tiny]. +-------------------------- +You can receive [Tiny's Egg] if you give it to \ + in Izlude. +-------------------------- +Can only be moved to storage. +-------------------------- +Weight: 1 +# +6456# +You can Refine your weapon to +5, visit Refine Master at Prontera. +-1 time limited - +-------------------------- +Weight: 0 +# +6457# +You can Refine your armor to +5, visit Refine Master at Prontera. +-1 time limited - +-------------------------- +Weight: 1 +# +6458# +[bRO item] +# +6459# +An envelope sealed with gold rope. +-------------------------- +Weight: 0 +# +6460# +A mysterious box. +-------------------------- +Weight: 0 +# +6461# +A mysterious box. +-------------------------- +Weight: 0 +# +6462# +A mysterious box. +-------------------------- +Weight: 0 +# +6463# +A mysterious box. +-------------------------- +Weight: 0 +# +6464# +Filled with darkness of hatred and jealousy. +-------------------------- +Type: Quest +Weight: 0 +# +6465# +Official certified guardian agent's coin. It seems can be used insinde Guardian Union. +-------------------------- +Type: Valuable +Weight: 1 +# +6469# +A collection of biological relics from various warriors. +Used for combining biological materials in a testing lab +-------------------------- +Type: Valuable +Weight: 1 +# +6470# +Reactionary forces causes the thirst for blood. +Used for combining biological materials in a testing lab +-------------------------- +Type: Valuable +Weight: 1 +# +6471# +The darkness of Nifflheim is lumped into this. +Used for combining biological materials in a testing lab +-------------------------- +Type: Valuable +Weight: 1 +# +6472# +A lustrous small jewel. It's a very important part to form the Blue Ribbon. +-------------------------- +Weight: 0 +# +6473# +A pearl written as (Bean Cherry). +There seems to be some beads with different letters written on them. +When all types are prepared...? +-------------------------- +Weight: 0 +# +6474# +A pearl written as (Clove Cherry). +There seems to be some beads with different letters written on them. +When all types are prepared...? +-------------------------- +Weight: 0 +# +6475# +A pearl written as (Cold Scarlet Cherry). +There seems to be some beads with different letters written on them. +When all types are prepared...? +-------------------------- +Weight: 0 +# +6476# +A pearl written as (Deep Mountain Cherry). +There seems to be some beads with different letters written on them. +When all types are prepared...? +-------------------------- +Weight: 0 +# +6477# +A pearl written as (Village Cherry). +There seems to be some beads with different letters written on them. +When all types are prepared...? +-------------------------- +Weight: 0 +# +6478# +A pearl written as (Mountain Cherry). +There seems to be some beads with different letters written on them. +When all types are prepared...? +-------------------------- +Weight: 0 +# +6479# +A pearl written as (Edo Higan). +There seems to be some beads with different letters written on them. +When all types are prepared...? +-------------------------- +Weight: 0 +# +6480# +A special coin dropped from the King Poring himself. +Bring these to the coin exchanger in Prontera. +-------------------------- +Weight: 0 +# +6481# +A shard of a Holy Rock, recreating the entire Holy rock will help unlock the past. +-------------------------- +Weight: 0 +# +6482# +A key with a secret power that allows access into the Old city of Payon. +Bring this item to the Old Timer in the Eden Group Bar and he can show you the pathway. +-------------------------- +Weight: 0 +# +6483# +A scroll with secret power. This allows access into the memory of Morocc. +Bring this item to the Old Timer in the Eden Group Bar and he can show you the pathway. +-------------------------- +Weight: 0 +# +6484# +Bring this book and 1 Slotting Advertisement to Troy at the second floor of Eden Group Headquarters and he will remove all cards from 1 item in your equipped inventory. +All cards will be returned but the item that they are slotted in will be destroyed forever. +1 Book is required for every card being removed. +-------------------------- +Weight: 1 +# +6485# +The letter 2 card which could be good for learning letters for the first time. It's frequently used for event. +-------------------------- +Weight: 1 +# +6486# +The letter 0 card which could be good for learning letters for the first time. It's frequently used for event. +-------------------------- +Weight: 1 +# +6487# +The letter 1 card which could be good for learning letters for the first time. It's frequently used for event. +-------------------------- +Weight: 1 +# +6488# +A ticket that can be exchanged for various goods. +Thanks Ticket Vending Machinemalangdo,215,119,0,100,0,0 +-------------------------- +Weight: 1 +# +6489# +A certificate given by the cats paw merchants to invest in certain perks. +-------------------------- +Weight: 1 +# +6490# +A piece of special clay that can be processed only by bombas. +Take it to the bombas at the campsite. +-------------------------- +Weight: 1 +# +6491# +A special clay that can be processed only by bombas. +Take it to the bombas at the campsite. +-------------------------- +Weight: 2 +# +6492# +A special lump of clay that can be processed only by bombas. +Take it to the bombas at the campsite. +-------------------------- +Weight: 3 +# +6493# +Metal piece with sharp needles. Would be painful if stepped on. Will be useful to evade pursuers by throwing on the ground in emergencies. +-------------------------- +Weight: 0.1 +# +6494# +A sparkling coin minted in the Kafra Headquarters in Aldebaran. +These can be exchanged for various goods and services. +-------------------------- +Type: Valuable +Weight: 0 +# +6495# +The Eden Group recognizes the bearer of this badge as one who has done great deeds. +These can be exchanged for various goods and services. +-------------------------- +Type: Valuable +Weight: 0 +# +6496# +Tikbalang's thick and tough spine. Sell to a collection dealer. +-------------------------- +Weight: 1 +# +6497# +Paper that protects a player from harm's way or casts special abilities. +A faint energy can be felt. +-------------------------- +Weight: 5 +# +6498# +Looks similar to a Large Jellopy but with a shinier crystal. +-------------------------- +Weight: 1 +# +6499# +Paper that protects a player from harm's way or casts special abilities. +-------------------------- +Weight: 1 +# +6500# +Bamboo piece trimmed to be pointy. Looks like it was cut tilted from a thick bamboo. +-------------------------- +Weight: 0 +# +6501# +Bag used to contain sea salt manufactured from the seashore. Said to scare off bad spirits. +-------------------------- +Weight: 0 +# +6502# +Cross-shaped ornament made of silver. Used to scare off demons. +-------------------------- +Weight: 0 +# +6503# +Portable spiritual protection made with holy energy from silver and exorcising energy from salt. Used to prevent bad spirits from approaching. +-------------------------- +Weight: 0 +# +6504# +Large caldron made from hard iron. Lets off a rich and full clunk sound when hit. Used to stun Bakonawa by making loud noises from it instead of cooking with it. +-------------------------- +Weight: 0 +# +6505# +Wholly cleaned out bone was an Evil Spirit Bone purified by Mumbaki to get rid of all evilness. Guard dog Vantai especially likes it. +-------------------------- +Weight: 0 +# +6506# +Flower bouquet made to comfort wandering or victimized souls. Offer flowers with a true heart and the souls may actually rest. +-------------------------- +Weight: 0 +# +6507# +Animal bones with a hint of evil spirit. Won't be able to as dog treats at this state. +-------------------------- +Weight: 0 +# +6508# +Hellish silver bracelet. Looks more like a restraint. +-------------------------- +Weight: 1 +# +6509# +Mysteriously colorful flower. Looks like it was made from a rainbow. +-------------------------- +Weight: 1 +# +6510# +Soft and gentle looking elegant flower. +-------------------------- +Weight: 1 +# +6511# +Ordinary flower that can be found anywhere. +-------------------------- +Weight: 1 +# +6512# +An amulet that ninjas carry to protect themselves from harm. A skilled ninja can use this amulet to cast various spells. +-------------------------- +Weight: 0.1 +# +6513# +An amulet that ninjas carry to protect themselves from harm. A skilled ninja can use this amulet to cast various spells. +-------------------------- +Weight: 0.1 +# +6514# +An amulet that ninjas carry to protect themselves from harm. A skilled ninja can use this amulet to cast various spells. +-------------------------- +Weight: 0.1 +# +6515# +An amulet that ninjas carry to protect themselves from harm. A skilled ninja can use this amulet to cast various spells. +-------------------------- +Weight: 0.1 +# +6516# +Doll made to look like Bakonawa. Cuter than its original. +-------------------------- +Weight: 1 +# +6517# +Doll made to look like Bangungot. Suspicious of the creator's taste. +-------------------------- +Weight: 1 +# +6518# +Doll made to look like Buwaya. Popular among Port Malaya children. +-------------------------- +Weight: 1 +# +6519# +Animal samples collected for a special purpose. Smells nasty. +-------------------------- +Weight: 0 +# +6520# +Belong to a missing Port Malaya villager. +-------------------------- +Type: Quest +Weight: 0 +# +6521# +A seal with King's stamp. This certificate can be exchanged for a compensation. +Kingdom Vending Machinemalangdo,234,187,0,100,0,0 +-------------------------- +Weight: 0 +# +6522# +There is fade out King's stigma imprinted on it. This seems can't be used as a token. +-------------------------- +Weight: 0 +# +6523# +Transparent item which imprisons Bakonawa's Spirit. Rumor says you can see Bakonawa when held up to moonlight. +-------------------------- +Weight: 1 +# +6524# +Transparent item which imprisons Bangungot's Spirit. Rumor says you can hear Bangungot's screeching screams when placed in a dark room. +-------------------------- +Weight: 1 +# +6525# +Transparent item which imprisons Buwaya's Spirit. Rumor says you can hear Buwaya's angry shrieks when touched with water. +-------------------------- +Weight: 1 +# +6526# +This Happy Word Card is dedicated to the event. +-------------------------- +Weight: 1 +# +6527# +This Enjoy Word Card is dedicated to the event. +-------------------------- +Weight: 1 +# +6528# +This Light Word Card is dedicated to the event. +-------------------------- +Weight: 1 +# +6529# +This Middle Word Card is dedicated to the event. +-------------------------- +Weight: 1 +# +6530# +This Autumn Word Card is dedicated to the event. +-------------------------- +Weight: 1 +# +6531# +A seal with King's stamp. This is 1 out of 5 certificate issued by kingdom. +-------------------------- +Weight: 0 +# +6532# +A rice cake that filled with honey instead of bean jam. Ogun master like this very much. +-------------------------- +Weight: 1 +# +6535# +A material to create Raccoon Hurray Team's Christmas Sock, though you're sure they mean Stocking +-------------------------- +Weight: 1 +# +6536# +A material to create Raccoon Hurray Team's Christmas Sock, though you're sure they mean Stocking +-------------------------- +Weight: 1 +# +6537# +A medal made of a very light material invented by the Rockstar Company. +It can be used for mini games and various services during the event. +-------------------------- +Weight: 0 +# +6538# +A mysterious card made by Rockstar Shokai and puppeteers for the event. +When handed over to the puppeteer's disciple \ +, he will enchant \ +. +-------------------------- +Weight: 0 +# +6539# +An old dusty jewelry that used to be shiny and beautiful. +-------------------------- +Weight: 0 +# +6540# +Golden leaf fallen out from the home tree. Doesn't seem that important. +-------------------------- +Weight: 0 +# +6541# +A research result by dark scientist Avant. Includes core research on Orb magic formula. +-------------------------- +Weight: 0 +# +6542# +Heavy mushroom grows in Alfheim forest. Can be used for making medicine. +-------------------------- +Weight: 10 +# +6543# +A coin given to person that Leveled up to 110 in short time. +-------------------------- +Weight: 0 +# +6544# +A coin given to person that Leveled up to 120 in short time. +-------------------------- +Weight: 0 +# +6545# +Sapha Tribe's hair. It looks like a wood branch. But it is hair. +-------------------------- +Weight: 0 +# +6546# +A letter from the brother with his love for the youngster. +-------------------------- +Weight: 0 +# +6547# +Report about shape shifting. It has some kind of stain all over it. +-------------------------- +Weight: 0 +# +6548# +High class Lapine wing piece. It looks like it will take you to somewhere. But it doesn't work. +-------------------------- +Weight: 0 +# +6549# +Paper coupon which has a cute painting and letters on it, given as a reward for requests taken from Gelkah in Eden Group. +Give this to Gelkah in Eden Group Headquarter and exchange it for prizes. +-------------------------- +Type: Quest +Weight: 0 +# +6550# +A voucher required to receive the pet [Domovoy]. +-------------------------- +You can receive [Domovoy Eggs] by handing it to Professor Takeyama in Izlude. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 0 +# +6552# +A box containing letters from Splendide to Eclage. +-------------------------- +Weight: 0 +# +6553# +A big piece of bridge made with many weaved leaves together. +-------------------------- +Weight: 0 +# +6554# +A delivery box for Red and Blue Seeds. Please handle with care. +-------------------------- +Weight: 0 +# +6555# +Birthday Candle, place on tall stands for 10 years, short stands for 1 year. +-------------------------- +Weight: 0 +# +6556# +A paper marked with \ +. +Only given to a winner! +-------------------------- +Weight: 0 +# +6557# +Big and fancy fairy wing. It looks pretty expensive. +-------------------------- +Weight: 1 +# +6558# +A stack of small acorns. Not enough for anyone. +-------------------------- +Weight: 1 +# +6559# +A potion good for dried eyes. 5ml size. +-------------------------- +Weight: 1 +# +6560# +A dusty bookmark left alone for a long time. It's so dry, you might break it easily. +-------------------------- +Weight: 1 +# +6561# +Dust, seems like this may be bad for our health. +-------------------------- +Weight: 1 +# +6562# +Throw this near by Dominic. +He will be frightened by the mouse. +-------------------------- +Weight: 0 +# +6563# +Wild weed that looks like it would grow anywhere. +Let's plant it near the bookshelf. +-------------------------- +Weight: 0 +# +6564# +A Hatchling who ran way from home. Take this to the Black dragon in Malangdo. +-------------------------- +Weight: 1 +# +6566# +Magic Recipe which will teach you how to make a fierce Cacao 99. +It seems like there's a certain place for using this recipe. +Essencial Ingredients : 99 Cacao beans, 1 Milk. +-------------------------- +Weight: 0 +# +6567# +Magic Recipe which will teach you how to make a cool chocolate drink. +It seems like there's a certain place for using this recipe. +Essencial Ingredients : 30 Cacao beans, 3 Chocolates, 2 Milk +-------------------------- +Weight: 0 +# +6568# +Giant shrimp scissors. +It is suitable for crushing objects rather than pinching and cutting them. +-------------------------- +Weight: 1 +# +6569# +Shrimp antennae with a supple curve. +-------------------------- +Weight: 1 +# +6570# +A translucent white cloth. +Perfect for making dresses with a smooth sheen. +-------------------------- +Weight: 1 +# +6571# +Big and pop button. +It can be used as a decoration. +-------------------------- +Weight: 1 +# +6572# +What was an octopus jar. +Uncooked shards. +-------------------------- +Weight: 1 +# +6573# +Seawater that is clean and rich in nutrients. +However, it is not recommended to drink as it is. +-------------------------- +Weight: 1 +# +6574# +Antennae emitting current. +If you hold it as it is, you will get an electric shock. +-------------------------- +Weight: 1 +# +6575# +Liquid with strong viscosity and water retention. +It is slimy. +-------------------------- +Weight: 1 +# +6576# +Eyes of the sea monster \ +. +It shines sharply even in the bottom of the dark sea. +-------------------------- +Weight: 1 +# +6577# +A part of the head of the sea monster \ +. +I grew up too much and cannot expect the taste. +-------------------------- +Weight: 1 +# +6578# +Part of the foot of the sea monster \ +. +The tight sucker is also huge. +-------------------------- +Weight: 1 +# +6579# +This rope has been protecting the sacred territory since ancient times. +Even after a long time, the rope cannot be untied. +-------------------------- +Weight: 1 +# +6580# +A flower bearing the name of the snake Jormungand that surrounds the world at the bottom of the sea. +It is a pale pink color and at first glance it is mistaken for coral. +-------------------------- +Weight: 1 +# +6581# +Beautiful jewelry with devine power. +You can only use its great powerful with legitimate ownership. +Nothing will happen with illegal possesion. +-------------------------- +Weight: 1 +# +6582# +A mysterious pocket watch with special magic. +It seems that there is a surgeon who resets the status when you hand over this pocket watch. +-------------------------- +The usage period of this item is from the end of scheduled maintenance on March 13, 2012 to the start of scheduled maintenance on April 10, 2012. +-------------------------- +Weight: 0 +# +6584# +Take this certificate, do upgradable Weapon in Prontera Hall, If he fails on the upgrade when the item to +12,the item will not break and it will stay at its current Refine Level. -A Single Use.- +-------------------------- +Weight: 0 +# +6585# +Take this certificate, do upgradable Armor in Prontera Hall, If he fails on the upgrade when the item to +12,the item will not break and it will stay at its current Refine Level. -A Single Use.- +-------------------------- +Weight: 0 +# +6586# +A \ + that run away from magic school's library. Don't close your ears to its screm, he may bite you. +-------------------------- +Weight: 0 +# +6587# +A pearl created by Yoshinaga Ishida, the owner of the Amatsu Castle, crushing refined stone. +There are (A) and (B). +-------------------------- +Weight: 0 +# +6588# +A pearl created by Yoshinaga Ishida, the owner of the Amatsu Castle, by crushing refined stone. +There are (A) and (B). +-------------------------- +Weight: 0 +# +6589# +A crystallized fire fragments. +-------------------------- +Weight: 0 +# +6590# +A ticket thanked by the refined stone spirit. +-------------------------- +Weight: 0 +# +6591# +A redemption voucher required to receive the pet [Wanderman]. +-------------------------- +You can receive [Wanderman Egg] by passing it to \ + in Izlude. +-------------------------- +Weight: 0 +# +6592# +A small wooden box that was discovered in a guild stronghold. It contains something very precious for someone. +-------------------------- +Weight: 1 +# +6593# +Hair coupon for Crytura academy only. +It gives something special hair style to someone who is looking for unique one. +-------------------------- +Type: Quest +Weight: 0 +# +6594# +A bronze ingot that is imbued with powerful rune magic. +-------------------------- +Weight: 100 +# +6595# +Blacksmith Velund's hammer. +It shows a lot of wear and tear. +-------------------------- +Weight: 50 +# +6596# +Blacksmith Velund's anvil. +All the legendary weapons and armor made by Velund were hammered on this anvil. +-------------------------- +Weight: 200 +# +6597# +Velund made this exquisite bracelet for his loving wife. +-------------------------- +Weight: 50 +# +6598# +This rib extracted from the giant snake, Jormungand, boasts incredible size and durability. +-------------------------- +Weight: 100 +# +6599# +The spirit of Hugin, Odin's familiar crow that governs memories, is given shape and form. +This has the ability to suppress Jormungand's magical force. +-------------------------- +Weight: 10 +# +6600# +The spirit of Munin, Odin's familiar crow that governs memories, is given shape and form. +This has the ability to suppress Jormungand's magical force. +-------------------------- +Weight: 10 +# +6601# +This chisel can carve and shape even the strongest rock. It's just too big for hands smaller than a Giant's. +-------------------------- +Weight: 100 +# +6602# +This old book is filled with various rune spells that call upon Odin. +-------------------------- +Weight: 10 +# +6603# +A scrap of thick fur severed from a monstrous bird. +This has the ability to suppress Jormungand's magical force. +-------------------------- +Weight: 50 +# +6604# +The essence of rune mana that is extracted from rune stones. +Only a gifted gemcutter can bring out its pure power. +-------------------------- +Weight: 0 +# +6605# +Midgard's strongest minerals are purified and fused into this substance. +It's highly resistant to flames, but extremely difficult to process. +-------------------------- +Weight: 0 +# +6606# +Only available for merchant class character. +The special coupon that can remodel your pushcart to new design cute cart! +There are 3 new designs are available! +-------------------------- +Weight: 1 +# +6607# +A rare crystal formed by a distortion of time. +-------------------------- +Type: Valuable +Weight: 1 +# +6608# +A spell that has somehow become solid. +-------------------------- +Type: Valuable +Weight: 1 +# +6609# +Surprisingly clean nails from the monsters of Glast Heim's past. +-------------------------- +Type: Collectible +Weight: 1 +# +6610# +Teeth from the monsters of Glast Heim's past. +-------------------------- +Type: Collectible +Weight: 1 +# +6611# +A colorful key that can be sold to merchants. +-------------------------- +Weight: 1 +# +6612# +A basket full of gold coins that can be sold to traders for profit. +-------------------------- +Weight: 20 +# +6613# +A big and beautiful brooch. It looks like it could be worth a lot even though it is old and dusty. +'Happy 10th birthday Lowenburg. F. Earich' +-------------------------- +Weight: 1 +# +6614# +This ancient relic is a piece of larger ancient ruin and is covered with hieroglyphics. It hums with faint magic energy. +-------------------------- +Weight: 30 +# +6615# +This coin is made to commemorate every achievement of the guilds that own castles in the Midgard Continent. +Collect this coin and exchange with special prizes. +-------------------------- +Type: Valuable +Weight: 1 +# +6616# +A commemorative card for Shining Adventures of the Icefield 4! The card is expensive. +-------------------------- +Weight: 1 +# +6617# +A commemorative card for Shining Adventures of the Icefield 4! The card is expensive. +-------------------------- +Weight: 1 +# +6618# +A commemorative card for Shining Adventures of the Icefield 4! The card is expensive. +-------------------------- +Weight: 1 +# +6619# +A commemorative card for Shining Adventures of the Icefield 4! The card is expensive. +-------------------------- +Weight: 1 +# +6620# +A special magic shell powder that can be processed only by bombas. +-------------------------- +Weight: 1 +# +6621# +A special piece of magic shell that can be processed only by bombas. +-------------------------- +Weight: 2 +# +6622# +A special magic shell pearl that can be processed only by bombas. +-------------------------- +Weight: 3 +# +6623# +An energy source that helps you increase the ability of certain items. +Contains a small amount of energy. +-------------------------- +Weight: 1 +# +6624# +A Refined energy source that helps you increase the ability of certain items. +Contains an advanced concentrated form of energy. +-------------------------- +Weight: 1 +# +6625# +A mighty energy source that helps you increase the ability of certain items +The purest form of Energy Crystal. +-------------------------- +Weight: 1 +# +6626# +This item is not tradable. +Very thin and fine powder that even can't be touched. +-------------------------- +Weight: 0 +# +6627# +This item is not tradable. +Lamp that makes strange words. However, don't understand what that mean it is. +-------------------------- +Weight: 0 +# +6628# +This item is not tradable. +Flash light that used by battery. Ivention of century! +Weight: 0 +# +6629# +This item is not tradable. +it feels strange lantern. +-------------------------- +Weight: 0 +# +6630# +This item is not tradable. +Genie's gift. If someone open this box, he will never be hungry. +-------------------------- +Weight: 0 +# +6635# +Fragments from which part of a huge Adamantine has fallen off. +I feel a quite strong magical power. +The quantity used depends on refine level of equipment. +-------------------------- +Weight: 0 +# +6636# +Enchant Effect +-------------------------- +STR + 1 +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6637# +Enchant Effect +-------------------------- +INT + 1 +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6638# +Enchant Effect +-------------------------- +AGI + 1 +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6639# +Enchant Effect +-------------------------- +DEX + 1 +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6640# +Enchant Effect +-------------------------- +VIT + 1 +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6641# +Enchant Effect +-------------------------- +LUK + 1 +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6642# +Enchant Effect +-------------------------- +ATK + 1% +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6643# +Enchant Effect +-------------------------- +MATK + 1% +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6644# +Enchant Effect +-------------------------- +HIT + 1 +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6645# +Enchant Effect +-------------------------- +FLEE + 1 +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6648# +An old, dented crown that is missing gemstones made of pure gold. +It can be sold to a Merchant for zeny. +-------------------------- +Weight: 1 +# +6649# +A broken and bent singlehorn. It's not worth any reward it can fetch. +-------------------------- +Weight: 1 +# +6650# +The tiny text inscribed on the inside of this ring is rubbed out and illegible. +-------------------------- +Weight: 1 +# +6651# +A rusty and discolored bracelet. It has tiny initials inscribed on it. +-------------------------- +Weight: 1 +# +6652# +An old, dirty photo album. Only a few pictures are left inside. +-------------------------- +Weight: 1 +# +6653# +This pill covered with black fungi is carefully wrapped in a package along with the memo: \ +-------------------------- +Weight: 1 +# +6654# +Everywhere Along the Thread and Needle. Stuff only seen in Halloween. +-------------------------- +Weight: 0 +# +6655# +Pumpkins Decorated near Trees.One Can Create Jack O Lantern with this. Only Useful in Halloween. +-------------------------- +Weight: 0 +# +6656# +A Mysterious Amulet that Can Defeat All Demons of the World,Only Useful in Halloween. +-------------------------- +Weight: 0 +# +6657# +Jack Memories is Filled with its Soul,Disappear Like a Mirage afte rHalloween. +-------------------------- +Weight: 0 +# +6658# +Currency used in Realm of Undead, vanishes after Halloween event. +-------------------------- +Weight: 0 +# +6665# +Take this ticket to the RWC Enchanter so that you can change the enchantment of your RWC 2012 Ring or RWC 2012 Pendant. +-------------------------- +Weight: 1 +# +6668# +Used when paying a monthly salary to a coupler. +-------------------------- +Weight: 5 +# +6669# +The fresh leaves of small trees. +Great food for Woodie. +-------------------------- +Weight: 0 +# +6670# +Collected hard branches of small trees. +-------------------------- +Weight: 1 +# +6671# +This coin, given to the participants of the Geffen Magic Tournament, can be exchanged for prizes. +-------------------------- +Type: Valuable +Weight: 0 +# +6672# +This shard is sustained with Sakray's old, abandoned memories that have the ability to resist the Cursed Knight. +-------------------------- +Type: Valuable +Weight: 0.1 +# +6673# +Entrance to the Bossnia. +-------------------------- +Weight: 0 +# +6674# +A beautiful colorful nipper. Mainly used as a decoration. +-------------------------- +Weight: 0 +# +6675# +A special cake to celebrate the 10th anniversary of RO. +-------------------------- +Weight: 0 +# +6676# +A special cake to celebrate the 10th anniversary of RO. +-------------------------- +Weight: 0 +# +6677# +A special cake to celebrate the 10th anniversary of RO. +-------------------------- +Weight: 0 +# +6678# +Philip's blood, used to cast a magic. +-------------------------- +Type: Quest +Weight: 0 +# +6679# +Isabella's blood, used to cast a magic. +-------------------------- +Type: Quest +Weight: 0 +# +6680# +A mysterious fruit with a special magical power. +There seems to be a surgeon who resets the status through this fruit. +-------------------------- +You can reset the status by handing it to \ + in the Refresh Room. +-------------------------- +Rebirth Classes, 3rd Classes, Kagerou/Oboro, Rebellion, Super Novice after breaking their limits and Summoner needs this to use the status reset service. +-------------------------- +Weight: 0 +# +6681# +The key ingredient to build the cookie house for Raccoon Hooray team for Christmas. +-------------------------- +Weight: 1 +# +6682# +The bag has a lot of goods that Raccoon Hooray team borrowed without permission. You should give this back to the owner. +-------------------------- +Weight: 1 +# +6683# +A flower that dried. +There is crisp sound when you touch it. +-------------------------- +Weight: 1 +# +6684# +A token of hero. +-------------------------- +Type: Valuable +Weight: 0 +# +6685# +A certificate given to people who help rebuilding Morocc. +-------------------------- +Type: Valuable +Weight: 0 +# +6686# +A construction material used for restoration of Morocc. +-------------------------- +Type: Quest +Weight: 200 +# +6687# +A construction material used for restoration of Morocc. +-------------------------- +Type: Quest +Weight: 200 +# +6688# +A construction material used for restoration of Morocc. +-------------------------- +Type: Quest +Weight: 200 +# +6689# +A very hot insect shell. +Very popular because it can be a subtitute for heating pad, you will never feel cold. +-------------------------- +Type: Collectible +Weight: 0 +# +6690# +Quite primitive form of plant stem. +It feels warm inside it. +Very popular because of its taste! +-------------------------- +Type: Collectible +Weight: 0 +# +6691# +A hell feather of Fire condor. +There is fire around it which always moving and protecting it from damage. +-------------------------- +Type: Collectible +Weight: 0 +# +6692# +A jurnal of Flaming Basin patrol written on it. +Does not seem like detailed written. +-------------------------- +Weight: 0.1 +# +6693# +A hell body part of fire golem. Unlike its name, it has bad shape. +-------------------------- +Type: Collectible +Weight: 1 +# +6694# +A bottle containing blood from monster of Flaming Basin. It's not clear whether if drinking it will harm or not. +-------------------------- +Type: Collectible +Weight: 1 +# +6695# +A teeth of Fire Golem. It's much heavier than you think. +-------------------------- +Type: Collectible +Weight: 10 +# +6696# +A frill of Fire Frildora. +-------------------------- +Type: Collectible +Weight: 1 +# +6697# +A coupon that can be used to exchange existing headgear into costume. +Eve Pattersonmal_in01,11,110,0,100,0,0 +Weight: 1 +# +6698# +A simple axe that used by lumberjack. +-------------------------- +Type: Quest +Weight: 100 +# +6699# +Ancient relic, a moment of silence, the silence is composed of a set crystals that are dirty but can be used for investigation. +-------------------------- +Weight: 0 +# +6700# +Snake scale with pure white color. +-------------------------- +Weight: 0 +# +6701# +The anvil of master smith dwarf, the most prized treasure. +-------------------------- +Weight: 0 +# +6702# +A bottle filled with sweat of Master Smith Dwarf. +-------------------------- +Weight: 0 +# +6703# +A tough warrior's purest tears. +-------------------------- +Weight: 0 +# +6704# +The blazing anger of warrior that can burn anything. +-------------------------- +Weight: 0 +# +6705# +A proof of warrior that abutted death. +-------------------------- +Weight: 0 +# +6706# +A wish to Guardian Flower upon the safe return of warrior that went to the battlefield. +-------------------------- +Weight: 0 +# +6707# +Chief Hair Designer Jeremyitemmall,19,71,0,100,0,0 hairstyle change coupon. He can make you ultimately stylish! +-------------------------- +Weight: 0 +# +6708# +This crystallized mana is extracted from evil Demons, but its energy is untainted. +-------------------------- +Type: Quest +Weight: 0 +# +6709# +Smooth and shiny silk. +Somehow it seems brittle. +# +6710# +Fake bundled octopus 8 legs. +-------------------------- +Weight: 0 +# +6711# +An egg with a special power prepared by a fairy of sweets. +There seems to be good things to collect a lot. +-------------------------- +Weight: 0 +# +6712# +A sweet magic wand, feeling lovely just by holding it. +# +6713# +Dark tribe Ahat's soul created by Morocc. +You need this to open the true gate of the war against Dark lord. +-------------------------- +Weight: 0 +# +6714# +Dark tribe Shnayim's soul created by Morocc. +You need this to open the true gate of the war against Dark lord. +-------------------------- +Weight: 0 +# +6715# +An evil spirit obtained after defeating Satan Morocc. +You can feel demonic aura from it. +-------------------------- +Type: Quest +Weight: 1 +# +6716# +A stone that increases CRIT. +Gives below stats on Costume upper slot. +Critical +1 +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6717# +A stone that increases HP. +Gives below stats on Costume mid slot. +MaxHP +50. +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6718# +A stone that increases Magic HP. +Gives below stats on Costume Lower slot. +MaxSP +10. +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6719# +A tooth pulled from the monster piano, Jitterbug. It's shaped like a piano key. +-------------------------- +Weight: 10 +# +6720# +Allow 3 retries to reset stats in 1 hour. +People with this book can reset their stats. +-------------------------- +Be sure to have zero weight when using this book. +And release Cart and Pets, etc. +-------------------------- +Mystic Clownitemmall,35,63,0,100,0,0 +-------------------------- +Weight: 0 +# +6721# +Enable 3 retries to reset stats in 1 hour. +People with this book can reset their stats. +-------------------------- +Be sure to have zero weight when using this book. +And release Cart and Pets, etc. +-------------------------- +Weight: 0 +# +6722# +Clam Flesh A delicious meal for your pet. +This emphasizes the competition. +-------------------------- +Weight: 0 +# +6723# +Delicious canned cat food, a solemn mark. +-------------------------- +Weight: 0 +# +6724# +Savage captured Box. Handle with care +-------------------------- +Weight: 0 +# +6725# +Grand Peco captured Box. Handle with care +-------------------------- +Weight: 0 +# +6726# +Desert Wolf captured Box. Handle with care +-------------------------- +Weight: 0 +# +6727# +Arranged photo album containing a strapping young person in the city of prontera. +-------------------------- +Weight: 0 +# +6728# +A key that can open the gate in the corridor of Shikigami. +It is characterized by a scarlet wings-like decoration, and the red gate can be opened. +-------------------------- +Weight: 0 +# +6729# +A key that can open the gate in the corridor of Shikigami. +The blue-colored gate can be opened with a characteristic blue-scale decoration. +-------------------------- +Weight: 0 +# +6730# +A key that can open the gate in the corridor of Shikigami. +The decoration imitating green nails is characteristic, and the green gate can be opened. +-------------------------- +Weight: 0 +# +6731# +A key that can open the gate in the corridor of Shikigami. +It features a decoration that imitates yellow tusk, and the yellow gate can be opened. +-------------------------- +Weight: 0 +# +6732# +Gold coin created with obsolete coins of the same material. +-------------------------- +Weight: 1 +# +6733# +A secret weapon to wake the tiger!, Make tickling his nose. +-------------------------- +Weight: 0 +# +6740# +Enchant Effect +-------------------------- +Increases the recovery rate of recovery skills and recovery items 2%. +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6741# +Enchant Effect +-------------------------- +increases the recovery rate of recovery skills by 3%. +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6742# +Enchant Effect +-------------------------- +Restores 10 HP to the user every 10 seconds. +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6743# +Enchant Effect +-------------------------- +MaxHP + 1% +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6744# +Enchant Effect +-------------------------- +MaxSP + 1% +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6745# +Enchant Effect +-------------------------- +Restores 1 SP to the user when a monster is killed by a physical or a magical attack. +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6746# +An unfinished iron found in iron forge. Because of its non-standard, it can't be used for assembling. +-------------------------- +Weight: 0 +# +6747# +Standard sized gun part. Perfect for use in the production of a revolver class weapon. +-------------------------- +Weight: 0 +# +6748# +The Artnard Excavation Team's daily report on its exploration and excavation of Phantasmagorika. +-------------------------- +Type: Quest +Weight: 0 +# +6749# +All the machines found in Phantasmagorika have this component installed in the center of their mechanisms. The Excavation Team has named it the Power Control Device. +-------------------------- +Type: Quest +Weight: 0 +# +6750# +A broken engine. Maybe it can be refurbished. +-------------------------- +Weight: 1 +# +6751# +A dented iron plate. Maybe it can be flattened and reusable. +-------------------------- +Weight: 1 +# +6752# +Burnt parts of Charleston. +Take it to Mass Charleston. +Maybe some of its parts can be salvaged. +-------------------------- +Type: Quest +Weight: 0 +# +6753# +The Doom Prayers carry this token with them. +-------------------------- +Type: Valuable +Weight: 0 +# +6754# +A herb with wound-healing ability. +-------------------------- +Type: Quest +Weight: 0 +# +6755# +Ill be contaminated substances emitted magical power. Plainly seems hard to manage. +-------------------------- +Type: Quest +Weight: 1 +# +6756# +Specially enriched energy found from Verus City location. +Maybe this could help us reveal the secret of Verus City power core..? +-------------------------- +Type: Quest +Weight: 0 +# +6757# +Unique record found from Verus City ruins. +You can have a peek of ancient Verus civilization life or some historical cases. +-------------------------- +Type: Quest +Weight: 0 +# +6758# +The elephant? nose is long and long, and the powerful proboscis will accompany you. It can be exchanged for 1 Proboscis Elephant pet egg. +-------------------------- +Weight: 0 +# +6759# +The spiritual gold ape must understand what the owner is thinking. It can be exchanged for 1 Golden Ape pet egg. +-------------------------- +Weight: 0 +# +6760# +The lion of the king of beasts, with a very long Q, will be by your side at any time. It can be exchanged for 1 QQ Lion pet egg. +-------------------------- +Weight: 0 +# +6761# +The fat rhino makes people feel very cute. The fat rhino wants the owner to give it more love. It can be exchanged for 1 Fat Rhino pet egg. +-------------------------- +Weight: 0 +# +6762# +Canned bananas with high nutritional content are feed for Proboscis Elephant pets. +-------------------------- +Weight: 0 +# +6763# +Spicy spicy rice cakes are the favorite feed for Golden Ape pets. +-------------------------- +Weight: 0 +# +6764# +Can add a lot of flavors of hot dog fort, is the favorite feed of QQ Lion pets. +-------------------------- +Weight: 0 +# +6765# +Ferris wheel biscuits with a unique style are the favorite feed for Fat Rhino pets. +-------------------------- +Weight: 0 +# +6766# +Heat to avoid ice express train ticket to go to the country. But really do not ride the train. Tickets will disappear after the summer. +-------------------------- +Weight: 0 +# +6767# +Coin used in the summer festival. There is no real value of money. Available only in the summer and after summer disappears. +-------------------------- +Weight: 0 +# +6768# +A boiled sweet red bean. Falling absolute essential ingredient in ice water should not! +-------------------------- +Weight: 0 +# +6769# +It is possible to quell the cold in the mouth if you eat with. Shaved ice sweet rice cake was chewy. +-------------------------- +Weight: 0 +# +6770# +A shark, predator of the sea and symbol of fear. +It is praised as one of the best food ever because of its rareness and toughness to catch. +-------------------------- +Weight: 1 +# +6771# +The best fish specy used in many dishes. People can't have it often because of its high cost. +-------------------------- +Weight: 1 +# +6772# +Mollusks with 8 legs. Be careful of his ink that he sprays in danger. +-------------------------- +Weight: 1 +# +6773# +Colorful and tasty Sea Bream. It is a high Leveled specy and cooked into many dishes. +-------------------------- +Weight: 1 +# +6774# +A fish with such a hideous teeth. Some people raise them for house decoration. +-------------------------- +Weight: 1 +# +6775# +A Salmon which has an instinct to want to go back to its born-place. +It is so colorful and tasty that mostly women likes it. +-------------------------- +Weight: 1 +# +6776# +An eel famous for its strength. Nothing is better for your stamina than this. +-------------------------- +Weight: 1 +# +6777# +A carp which has been loved as food, medicine and ornament. +In some places, it is considered a lucky totem. +-------------------------- +Weight: 1 +# +6778# +A squid that can be cooked to many dishes, sometimes can be used as a fishing bait. +-------------------------- +Weight: 1 +# +6779# +A mackerel with blue back and a lot of DHA. +It sometimes can be used as a fishing bait. +-------------------------- +Weight: 1 +# +6780# +A small and common carp found in anywhere. +It sometimes can be used as a fishing bait. +-------------------------- +Weight: 1 +# +6781# +A fleshy Earthworm. +It works perfectly as a fishing bait. +-------------------------- +Weight: 1 +# +6782# +Very fresh-looking prawn. +It works perfectly as a fhshing bait. +-------------------------- +Weight: 1 +# +6783# +A special ticket that you can receive to complete the \ + of the Adventurer Academy. +It contains the magical powers of subdued monsters and can be used in the \ + and \ +. +-------------------------- +Weight: 0 +# +6784# +Squid skewers specially designed for barbecuing. Let's take it to Mr. Le. +-------------------------- +Weight: 0 +# +6785# +Mr Kwijeul special sauce ideal to give a special flavor to barbecued squid. Let's take it to Mr. Le. +-------------------------- +Weight: 0 +# +6786# +The latest barbecue fresh squid. No matter you have a little sand. Let's take it to Mr. Le. +-------------------------- +Weight: 0 +# +6787# +Barbecued squid for burning firewood. Let's take it to Mr. Le. +-------------------------- +Weight: 0 +# +6788# +Special knife for barbecued squid. It has a nice rose engraved on the blade. Let's take it to Mr. Le. +-------------------------- +Weight: 0 +# +6789# +Add a custom dish for barbecued squid. Let's take it to Mr. Le. +-------------------------- +Weight: 0 +# +6790# +Enchant Effect +-------------------------- +Increases physical damage on Large size targets by 1%. +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6791# +Enchant Effect +-------------------------- +Increases physical damage on Medium size targets by 1%. +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6792# +Enchant Effect +-------------------------- +Increases physical damage on Small size targets by 1%. +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6793# +Parts required to repair an instrument. +-------------------------- +Weight: 1 +# +6794# +Instrument used in the festival. +-------------------------- +Weight: 10 +# +6795# +Sebuah tiket khusus untuk memeriahkan perayaan hadirnya RO2 di indonesia. +# +6796# +Sebuah kartu special yang dapat membuat nama pemegang kartu ini melegenda. +# +6797# +11th anniversary coin carved in the center with an angel. Collect many of them to obtain valuable items. +-------------------------- +Type: Valuable +Weight: 0 +# +6798# +A ticket required to receive the \ + series (Weapon). +-------------------------- +Weight: 10 +# +6799# +A ticket required to receive the \ + series (Armor). +-------------------------- +Weight: 10 +# +6800# +A ticket required to receive the \ + series (Accessory). +-------------------------- +Weight: 10 +# +6801# +A coin in the form of rewards obtained by investigating ancient ruins. +It shines faintly. +-------------------------- +Weight: 0 +# +6802# +Special type of stone used to Refine pRO 10th Armors. +-------------------------- +Weight: 20 +# +6803# +Fragment of Gigantes. It seems that some people want these fragments. +-------------------------- +Type: Valuable +Weight: 1 +# +6804# +There is a sticker on this pumpkin that says \ + -Blasphemous Alex (Nifflheim). +-------------------------- +Weight: 1 +# +6805# +Frankly, it is hard to distinguish this with organic one. +It doesn't even have a sticker on it +-------------------------- +Weight: 1 +# +6806# +Stone contained with water magic. +-------------------------- +Weight: 1 +# +6807# +Stone contained with fire magic. +-------------------------- +Weight: 1 +# +6808# +Stone contained with wind magic. +-------------------------- +Weight: 1 +# +6809# +Stone contained with Earth magic. +-------------------------- +Weight: 1 +# +6810# +Stone contained with holy magic. +-------------------------- +Weight: 1 +# +6811# +Stone contained with dark magic. +-------------------------- +Weight: 1 +# +6812# +It's a mysterious drop that you can feel the power of the groundwater fire breeze. When you give it to a \ +, it seems to create special costume equipment. +-------------------------- +The NPCs that can use this item will be available until the scheduled maintenance starts on Tuesday, January 28, 2014. +-------------------------- +Weight: 0 +# +6813# +A special, one-time use ticket that allows you to use any one of the Kafra Services free of charge. +-------------------------- +Weight: 1 +# +6814# +Walking the road with sword and spear for lifetime, a soul of man who has become a shield for his colleagues on the battlefield. +-------------------------- +Type: Quest +Weight: 1 +# +6815# +Undestanding calculation to come up with a resolution for lifetime, a soul of man who sought the truth through experiment and research. +-------------------------- +Type: Quest +Weight: 1 +# +6816# +Walking in darkness for lifetime, a soul of man who wanted to keep the balance between light and dark. +-------------------------- +Type: Quest +Weight: 1 +# +6817# +Studying magic for lifetime, a soul of man who tried to reach the pinnacle of ultimate power. +-------------------------- +Type: Quest +Weight: 1 +# +6818# +Reading the flow of the wind for lifetime, a soul of man who was powerful supporter on the battlefield. +-------------------------- +Type: Quest +Weight: 1 +# +6819# +Walking the road of servitude and judgment for lifetime, a soul of man who always fought in accordance to God's will. +-------------------------- +Type: Quest +Weight: 1 +# +6820# +Concentrated energy. Looks too small, seems will fade away if left alone. +-------------------------- +Weight: 1 +# +6821# +A token proves to become a member of solo. +I was born solo and I'll live with solo. +Couple means betrayal! +-------------------------- +Weight: 0 +# +6822# +A redemption voucher required to receive the pet [Chun'e]. +-------------------------- +You can receive [Chun'e's Egg] if you give it to \ + in Izlude. +-------------------------- +Can only be moved to storage. +-------------------------- +Weight: 0 +# +6823# +A redemption voucher required to receive the pet [Chun'e (Peach)]. +-------------------------- +You can receive [Chun'e's (Peach) Egg] if you give it to \ + in Izlude. +-------------------------- +Can only be moved to storage. +-------------------------- +Weight: 0 +# +6824# +Record medium found in the ruins and underground facilities of Verus City laboratories. +Contains various information of the situations and events at that time. +-------------------------- +Type: Quest +Weight: 0 +# +6825# +A technical masterpiece for an air purifier shelter. The finished product is quite heavy. +-------------------------- +Weight: 1000 +# +6826# +Recently harvested fresh grapes. +-------------------------- +Weight: 10 +# +6827# +Machine component found in the last room. Take it to Fruit to find out what it is. +-------------------------- +Type: Quest +Weight: 0 +# +6828# +A device made via Fruit's research. +Says if you hand it to \ + by the underground bunker entrance you can reach the last room without problems but it is apprehensive. +-------------------------- +Type: Quest +Weight: 10 +# +6829# +It seems to be necessary in order to perform the Houra Shichi refinement in the game of \ +. +-------------------------- +- Take it to NPC \ + at izlude coordinates (118 107). +-------------------------- +This item will be available until September 23, 2020 (Wednesday) for regular maintenance. +-------------------------- +Can only be stored. +-------------------------- +Weight: 0 +# +6830# +-------------------------- +Items needed when drilling holes. It will disappear after the hole punching job is over. +-------------------------- +Weight: 1 +# +6832# +Oddly shaped object. It contains a small amount of gold inside. Rumor has it that may have a high price for its sale. +-------------------------- +Weight: 1 +# +6833# +A certificate that has the force of invulnerable Siegfried. +It has been told that a man who possesses this can overcome death. +Revives the dead character. +When player is KO'ed, this item will be consumed and player will be resurrected on the spot. +-------------------------- +Weight: 1 +# +6834# +Exist blue unicorns only in payon that have a fabulous fur! +Infinitely more soft, warm and comfortable than any other... +-------------------------- +Weight: 1 +# +6835# +Exist blue unicorns only in payon that have a fabulous mane! +Incredibly soft ...! +-------------------------- +Weight: 1 +# +6836# +Strange piece used for the possession of the soul +-------------------------- +Weight: 0 +# +6837# +The Mouse spirit, one of 12 chinese zodiacs. +-------------------------- +Weight: 0 +# +6838# +Secret orders directly written by the prophet K. +Contains a chapter on his prediction. +-------------------------- +Weight: 0 +# +6839# +A chocolate coin wrapped with gold paper. Please do not try to eat this. +Bring this to Bitta who is at the southeast area of Einbroch. +-------------------------- +Weight: 0 +# +6840# +A chocolate coin wrapped with silver paper. Please do not try to eat this. +Bring this to Bitta who is at the southeast area of Einbroch to exchange it for gold coins. +-------------------------- +Weight: 0 +# +6841# +A chocolate coin wrapped with bronze paper. Please do not try to eat this. +Bring this to Bitta who is at the southeast area of Einbroch to exchange it for silver coins. +-------------------------- +Weight: 0 +# +6842# +Jewelry created by a thoughtful sculptor. +Thank you very much but has a colossal size. +-------------------------- +Weight: 0 +# +6843# +Humble ring made with a flower stream. +-------------------------- +Weight: 0 +# +6844# +Colorful stone with a mild texture to it. Used as an ingredient for making many kinds of jewelry. +-------------------------- +Weight: 0 +# +6845# +A natural ingredient used as fertilizer. +The odor is strong but no as bothersome as normal monster excrement... +-------------------------- +Weight: 0 +# +6846# +The bearer of this gym memberships allows you to increase the weight you can carry. +If you show the pass to a certain NPC, the NPC will teach specific skills that will increase the weight you can carry. +Each gives you a Level of skill can take 200 more extra weight to a maximum of 10 Levels. +-------------------------- +Weight: 1 +# +6847# +A Tiny Box. However, the weight is unimaginable. Its weight depends on your imagination. +-------------------------- +Weight: 0 +# +6848# +Although the size is large, this box has super light weight. You can hear some sounds when you shake it. +-------------------------- +Weight: 0 +# +6849# +A certificate given after completing a quest. Has no value, but if you bring it to somewhere... +-------------------------- +Weight: 0 +# +6850# +A suspicious box with strange sound inside. Let's listen carefully. Sigh.. I want to finish delivery.. I want to see you, Mom!! +Weight: 0 +# +6851# +A dried old paper. There are a lot of stains on it, make it harder to read. It seems written by human. +-------------------------- +Weight: 1 +# +6852# +A super neutralizer that produced from a corrosive of chemical. A small amount of it can gives great effect. +-------------------------- +Weight: 0 +# +6853# +A gorgeous bouquet created by combining gratitude. +-------------------------- +Weight: 0 +# +6854# +A captured Novus. Sometime it wriggling when you touch it. +-------------------------- +Weight: 0 +# +6855# +A captured Tatacho. Sometime it wriggling when you touch it. +-------------------------- +Weight: 0 +# +6856# +A manuscript of popular novel written by Termir for seven years. The writer's tears, sighs and sweats are poured on every single manuscript. +-------------------------- +Weight: 0 +# +6857# +A solid stone with beautiful patterns. Only skilled artisan can process this stone. +-------------------------- +Weight: 0 +# +6858# +Captured Lude. Sometime light flashes from it. +-------------------------- +Weight: 0 +# +6859# +Captured Wanderman. Sometime sound of stomping can be hear from it. +-------------------------- +Weight: 0 +# +6860# +The Cow spirit, one of 12 chinese zodiacs. +-------------------------- +Weight: 0 +# +6861# +It seems to be necessary to perform hyper enchantment in the game of \ +. +-------------------------- +- Take it to NPC \ + at izlude coordinates (139 130). +-------------------------- +This item will be available until September 23, 2020 (Wednesday) for regular maintenance. +-------------------------- +Can only be stored. +-------------------------- +Weight: 0 +# +6862# +The Tiger spirit, one of 12 chinese zodiacs. +-------------------------- +Weight: 0 +# +6863# +The Strong Tiger spirit, one of 12 chinese zodiacs. +This piece has strong spirit of tiger embedded on it. +-------------------------- +Weight: 0 +# +6864# +Take this certificate, do upgradable Weapon in Prontera Hall, If he fails on the upgrade when the item to +19,the item will not break and it will stay at its current Refine Level. -A Single Use.- +-------------------------- +Weight: 0 +# +6865# +Take this certificate, do upgradable Armor in Prontera Hall, If he fails on the upgrade when the item to +19,the item will not break and it will stay at its current Refine Level. -A Single Use.- +-------------------------- +Weight: 0 +# +6866# +The Rabbit spirit, one of 12 chinese zodiacs. +-------------------------- +Weight: 0 +# +6867# +A box containing a big sized insect. +-------------------------- +Weight: 0 +# +6868# +A box containing a medium sized insect. +-------------------------- +Weight: 0 +# +6869# +Dust came into the box together with insects. +-------------------------- +Weight: 0 +# +6870# +Take this certificate, do upgradable Weapon in Prontera Hall, +If he fails on the upgrade when the item to +13,the item will not break and it will stay at its current Refine Level. -A Single Use.- +-------------------------- +Weight: 0 +# +6871# +Take this certificate, do upgradable Weapon in Prontera Hall, +If he fails on the upgrade when the item to +14,the item will not break and it will stay at its current Refine Level. -A Single Use.- +-------------------------- +Weight: 0 +# +6872# +Take this certificate, do upgradable Weapon in Prontera Hall, +If he fails on the upgrade when the item to +15,the item will not break and it will stay at its current Refine Level. -A Single Use.- +-------------------------- +Weight: 0 +# +6873# +Take this certificate, do upgradable Weapon in Prontera Hall, +If he fails on the upgrade when the item to +16,the item will not break and it will stay at its current Refine Level. -A Single Use.- +-------------------------- +Weight: 0 +# +6874# +Take this certificate, do upgradable Weapon in Prontera Hall, +If he fails on the upgrade when the item to +17,the item will not break and it will stay at its current Refine Level. -A Single Use.- +-------------------------- +Weight: 0 +# +6875# +Take this certificate, do upgradable Weapon in Prontera Hall, +If he fails on the upgrade when the item to +18,the item will not break and it will stay at its current Refine Level. -A Single Use.- +-------------------------- +Weight: 0 +# +6876# +Take this certificate, do upgradable Armor in Prontera Hall, +If he fails on the upgrade when the item to +13,the item will not break and it will stay at its current Refine Level. -A Single Use.- +-------------------------- +Weight: 0 +# +6877# +Take this certificate, do upgradable Armor in Prontera Hall. +If he fails on the upgrade when the item to +14,the item will not break and it will stay at its current Refine Level. +-A Single Use.- +-------------------------- +Weight: 0 +# +6878# +Take this certificate, do upgradable Armor in Prontera Hall. +If he fails on the upgrade when the item to +15,the item will not break and it will stay at its current Refine Level. +-A Single Use.- +-------------------------- +Weight: 0 +# +6879# +Take this certificate, do upgradable Armor in Prontera Hall. +If he fails on the upgrade when the item to +16,the item will not break and it will stay at its current Refine Level. +-A Single Use.- +-------------------------- +Weight: 0 +# +6880# +Take this certificate, do upgradable Armor in Prontera Hall +If he fails on the upgrade when the item to +17,the item will not break and it will stay at its current Refine Level. +-A Single Use.- +-------------------------- +Weight: 0 +# +6881# +Take this certificate, do upgradable Armor in Prontera Hall. +If he fails on the upgrade when the item to +18, the item will not break and it will stay at its current Refine Level. -A Single Use.- +-------------------------- +Weight: 0 +# +6882# +Splendid feather shaped bait. Fishes who see this would rush into it knowing it as a food. +-------------------------- +Weight: 0 +# +6883# +Coupon exchangeable for pet snown rabbit!. +In prontera and alberta pet exchange traders recognize this coupon. +-------------------------- +Weight: 1 +# +6884# +Coupon exchangeable for pet tikbalang!. +In prontera and alberta pet exchange traders recognize this coupon. +-------------------------- +Weight: 1 +# +6885# +The spirit of dragon introduced on a zodiac piece. +-------------------------- +Weight: 0 +# +6886# +The spirit of strong dragon introduced on a zodiac piece. +-------------------------- +Weight: 0 +# +6887# +A redemption voucher required to receive the pet [Topalit]. +-------------------------- +You can receive [Topalite Egg] by handing it to \ + in Izlude. +-------------------------- +Can only be stored. +-------------------------- +Weight: 0 +# +6888# +A redemption voucher required to receive the pet [Amelit]. +-------------------------- +You can receive [Amelit Egg] by handing it to \ + in Izlude. +-------------------------- +Can only be stored. +-------------------------- +Weight: 0 +# +6889# +A redemption voucher required to receive the pet [Mislit]. +-------------------------- +You can receive [Mislit Egg] by handing it to \ + in Izlude. +-------------------------- +Can only be stored. +-------------------------- +Weight: 0 +# +6890# +A redemption voucher required to receive the pet [Tamadora]. +-------------------------- +You can receive [Tamadora Egg] by handing it to \ + in Izlude. +-------------------------- +Can only be stored. +-------------------------- +Weight: 0 +# +6891# +A mysterious stone with a special magical power. +-------------------------- +Weight: 0 +# +6892# +Some Insect monster dropped this. +Judging by the text, map and the schematic, this is probably an Invasion plan. Let's learn what it meant. +-------------------------- +Weight: 1 +# +6893# +A book with unrecognizable texts and pictures, only the author can understand it. +-------------------------- +Weight: 1 +# +6894# +A badge of office worn by an insectoid champion. +-------------------------- +Weight: 1 +# +6895# +Ancient stone created with the fusion of other ancient stones to make it a very powerful magical stone. It is the best way to collect them. +-------------------------- +Weight: 0 +# +6896# +Mystic stone created with the fusion of other mystic stones to make it a very powerful magical stone. It is the best way to collect them. +-------------------------- +Weight: 0 +# +6897# +The top Sea-living mammal. +It proudly has the largest body among all of them and known to be the biggest animal existing on the earth +-------------------------- +Weight: 1 +# +6898# +The top Sea-living mammal. It is smart and mild but no carnivore sea animal can mess with him. +-------------------------- +Weight: 1 +# +6899# +A legendary king Octopus living in the deep sea. +Despite of gentle and mild behavior comparing to its largeness, you will get overwhelmed by its size when you see it. +-------------------------- +Weight: 1 +# +6900# +A legendary king Squid living in the deep sea. +You must never think about going back home when you meet this guy at the Sea. +-------------------------- +Weight: 1 +# +6901# +Predator of the Sea. The Symbol of fear, Shark. +Sturgeon, among them, is famous for its viciousness. +-------------------------- +Weight: 1 +# +6902# +Big and fleshy king Prawn. It is so-called \ +. +It perfectly suits for bait. +-------------------------- +Weight: 1 +# +6903# +A big and beautiful Earthworm. +It perfectly suits for bait. +-------------------------- +Weight: 1 +# +6904# +The Snake spirit, one of 12 chinese zodiacs. +-------------------------- +Type: Quest +Weight: 0 +# +6905# +A piece of magic stone. It seems like some special people need it. +-------------------------- +Type: Quest +Weight: 0 +# +6906# +It has been compressed for such a long time that the density and solidity is heightened. It seems that it becomes more difficult for Defense Weapon Upgrade. +When you fail while upgrading defense weapon whose Refine Level is over +10, it won't be destroyed. +(When the upgrade fails, Refine Level gets -1) +Bastaitemmall,25,71,0,100,0,0 +Weight: 1 +# +6907# +The Horse spirit, one of 12 chinese zodiacs. +-------------------------- +Weight: 0 +# +6908# +Enchant Effect +-------------------------- +ASPD +1 +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +6909# +Silvervine cat fruit. There is a fruit with a fragrance that puts it on another Level. It's very rare form too far to understand. +-------------------------- +Type: Quest +Weight: 0 +# +6910# +Fine ore to ensure the safety of valuable equipment.. +- Used as a material to strengthen weapon currently from Refine Levels +7 through +10. - +(This item's density ensures that Refine attempts will not break the weapon and if the attempt fails it will only downgrade by 1.) +Mighty Hammer Blacksmithitemmall,27,75,0,100,0,0 +Shadow Blacksmithitemmall,31,75,0,100,0,0 - Shadow Equipment Refine +-------------------------- +Weight: 1 +# +6911# +Fine ore to ensure the safety of valuable equipment. +- Used as a material to strengthen armor currently from Refine Levels +7 through +10. - +(This item's density ensures that Refine attempts will not break the armor and if the attempt fails it will only downgrade by 1.) +Mighty Hammer Blacksmithitemmall,27,75,0,100,0,0 +Shadow Blacksmithitemmall,31,75,0,100,0,0 - Shadow Equipment Refine +-------------------------- +Weight: 1 +# +6912# +The Sheep spirit, one of 12 chinese zodiacs. +-------------------------- +Weight: 0 +# +6913# +A blessed Rosary. It can distiguish whether dead and alive. Disappears after event period. +-------------------------- +Type: Quest +Weight: 0 +# +6914# +A dangerous soul which was captured while escaping from Niflheim. The only place to return is Niflheim and it goes back to Niflheim after event is over. +-------------------------- +Type: Quest +Weight: 0 +# +6915# +A freely wandering soul which was captured while escaping from Niflheim. The only place to return is Niflheim and it goes back to Niflheim after event is over. +-------------------------- +Type: Quest +Weight: 0 +# +6916# +The Monkey spirit, one of 12 chinese zodiacs. +-------------------------- +Type: Quest +Weight: 0 +# +6917# +The Chicken spirit, one of 12 chinese zodiacs. +-------------------------- +Type: Quest +Weight: 0 +# +6918# +Ticket attached to \ +. +It seems to be necessary to perform the quest in the game of \ +. +-------------------------- +Let's take it to NPC \ + in Prontera, the capital of Rune Midgards. +-------------------------- +The use period of this item is until March 3, 2015 (Tuesday) regular maintenance start. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 0 +# +6919# +A special token received from Prontera Castle. +-------------------------- +Type: Valuable +Weight: 0 +# +6920# +A mysterious powder that has rune power, it can grant enchanted spell. +-------------------------- +Type: Quest +Weight: 1 +# +6921# +Leave in damp place to removes moisture from the air. +-------------------------- +Type: Quest +Weight: 1 +# +6922# +Paper or cloth affixed to the outside of the flexible abrasive materials. +Used primarily as an abrasive grinding to smooth writing surface. +-------------------------- +Type: Quest +Weight: 1 +# +6923# +Taken from the great torch lights. Shines brighter than small torch. +-------------------------- +Type: Quest +Weight: 1 +# +6924# +Shiny red eye of a monster. Its sparkling favourited by monster. +-------------------------- +Type: Quest +Weight: 1 +# +6925# +A letter for prisoner's acquaintance. It has many stories written on it. +-------------------------- +Type: Quest +Weight: 1 +# +6926# +A book contain histories of Rune Midgard. 12 volumes published so far. +-------------------------- +Type: Quest +Weight: 0 +# +6927# +A rare stone found in Comodo Beach. This transparant stone also known mermaid's gift, it showing an ocean. +When under the sunlight it looks more mysterious. +-------------------------- +Type: Quest +Weight: 0 +# +6928# +The ultimate cleaning mop for cleaning a kitchen. +Rub a few times on stricken oil. +-------------------------- +Type: Quest +Weight: 0 +# +6929# +A sealed letter with stamp of royal family. +-------------------------- +Type: Quest +Weight: 0 +# +6930# +A sample of under development new item of co-development of Roegen Hamburg Van Wolff and Wigner Van Isaac. +-------------------------- +Type: Quest +Weight: 0 +# +6931# +A document to report secret information. For security reason, it locked with magic. +-------------------------- +Type: Quest +Weight: 0 +# +6932# +An old book from a long time ago. Already out of print since a long time ago, a 5 rated star book people says. +-------------------------- +Type: Quest +Weight: 0 +# +6933# +A banquet invitation from Prontera Castle. +It stated that only people who involved in Ash Vacum expedition is invited. +-------------------------- +Type: Quest +Weight: 0 +# +6934# +A cuisine that look like a fine painting. It seem not enough if you are not a royal caliber. +-------------------------- +Type: Quest +Weight: 100 +# +6935# +A very luxury plate that only used in royal banquet. +-------------------------- +Type: Quest +Weight: 1 +# +6936# +A bead with cold air flowing from it. A collectible that can sold to merchant, +-------------------------- +Weight: 1 +# +6937# +Slightly soft shell. A collectible that can be sold to Merchant. +-------------------------- +Weight: 1 +# +6938# +Porcupine quills that has high value. A collectible that can be sold to Merchant. +-------------------------- +Weight: 1 +# +6939# +A worn out leather belt. A collectible that can be sold to Merchant. +-------------------------- +Weight: 1 +# +6940# +A suspicious substance that got cut off from the body. +A collectible that can be sold to Merchant. +-------------------------- +Weight: 1 +# +6941# +It contains some of the power of valkyrie. +A collectible that can be sold to Merchant. +-------------------------- +Weight: 1 +# +6942# +A powerful capsule, it seem alive and moving. +A collectible that can be sold to Merchant. +-------------------------- +Weight: 1 +# +6943# +A stone that increases attack power. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +ATK +1% +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6944# +A stone that increases magical attack power. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +MATK +1% +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6945# +A stone that increases ATK. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +STR +1 +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6946# +A stone that increases INT. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +INT +1 +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6947# +A stone that increases AGI. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +AGI +1 +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6948# +A stone that increases DEX. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +DEX +1 +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6949# +A stone that increases VIT. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +VIT +1 +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6950# +A stone that increases LUK. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +LUK +1 +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6951# +A stone that increases HP. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +MaxHP +1% +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Weight: 10 +# +6952# +The ultimate ticket made with attention to material, design and all parts. +-------------------------- +- Special smelting will be performed when you bring it to the NPC \ + at the izlude coordinate (139 130). +-------------------------- +This item will be available for use until March 24, 2020 (Tuesday) scheduled maintenance. +-------------------------- +Can only be stored. +-------------------------- +Weight: 0 +# +6953# +You can Refine Article Controller Mantle Mall to +9. +Find the NPC to discover the truth +-------------------------- +Weight: 1 +# +6954# +The dog spirit, one of 12 chinese zodiacs. +-------------------------- +Weight: 0 +# +6955# +The pig spirit, one of 12 chinese zodiacs. +-------------------------- +Weight: 0 +# +6956# +A captured lost sheep. Bring it back to Bori the Shepherd. +-------------------------- +Weight: 0 +# +6957# +Warm lamb's wool useful for making apparel. +-------------------------- +Weight: 0 +# +6958# +It might be useful in creating something... +-------------------------- +Weight: 0 +# +6959# +Ticket to change dress. +You can change from your original outfit to your second costume, or from your second outfit to your original outfit. +Take it to your stylist. +If you do not want to use it, please sell it to NPC. Each change costs 1 ticket. +-------------------------- +[Stylist] +[Prontera]prt_in,243,168,0,100,0,0 +[Alberta]alberta_in,58,142,0,100,0,0 +[Lighthalzen]lhz_in02,100,143,0,100,0,0 +[Rachel]ra_in01,186,148,0,100,0,0 +[Lasagna]lasagna,134,113,0,100,0,0 +-------------------------- +Weight: 0 +# +6960# +A key used to enter fortress somewhere in the sky. +-------------------------- +Weight: 1 +# +6961# +Look like it can be used somewhere. Can be placed in desired place. +-------------------------- +Weight: 100 +# +6962# +An old fuel tank with some fuels left inside it. Seem useless. +-------------------------- +Weight: 10 +# +6963# +Stone which can absorb HP +Give ability to costume garment slot. +1% chance to absorb 1% physical damage into HP. +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +6964# +Stone which can absorb SP. +Give ability to costume garment slot. +1% chance to absorb 1% physical damage into SP. +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +6965# +A reactor designed to grant Armor with fire elemental. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6966# +A reactor designed to grant Armor with water elemental. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6967# +A reactor designed to grant Armor with Earth elemental. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6968# +A reactor designed to grant Armor with wind elemental. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6969# +A reactor designed to resist fire elemental. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6970# +A reactor designed to resist water elemental. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6971# +A reactor designed to resist Earth elemental. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6972# +A reactor designed to resist wind elemental. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6973# +A reactor designed to help HP restoration at time interval. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6974# +A reactor designed to help SP restoration at time interval. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6975# +A reactor designed to help HP Recovery Rate at time interval. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6976# +A reactor designed to help SP Recovery Rate at time interval. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6977# +A reactor designed to increase damage done by STR. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6978# +A reactor designed to increase damage done by INT. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6979# +A reactor designed to increase defense. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6980# +A reactor designed to increase perfect dodge. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6981# +A reactor designed to increase physical damage. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6982# +A reactor designed to increase magic damage. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6983# +A reactor designed to increase MaxHP. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6984# +A reactor designed to increase MaxSP. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6985# +A reactor designed to resist Frozen state. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6986# +A reactor designed to increase attack speed. +MARS_01 Maybe you will learn something when you take it to him. +-------------------------- +Weight: 1 +# +6987# +One-time password (OTP) or special coin sent to ID lock users. +-------------------------- +It can be used at NPC \ + in Izlude. +-------------------------- +Can only be stored. +-------------------------- +Weight: 0 +# +6988# +One-time password (OTP) or special copper coin sent to ID lock users. +-------------------------- +If you show this to the NPC \ +, you will be able to receive special magic. +-------------------------- +Can only be stored. +-------------------------- +This item will automatically disappear 168 hours after it is obtained. +-------------------------- +Weight: 0 +# +6989# +One-time password (OTP) or special silver coin sent to ID lock users. +-------------------------- +If you show this to the NPC \ +, you will be able to receive special magic. +-------------------------- +Can only be stored. +-------------------------- +This item will automatically disappear 168 hours after it is obtained. +-------------------------- +Weight: 0 +# +6990# +One-time password (OTP) or special gold coin sent to ID lock users. +-------------------------- +If you show this to the NPC \ +, you will be able to receive special magic. +-------------------------- +Can only be stored. +-------------------------- +This item will automatically disappear 168 hours after it is obtained. +-------------------------- +Weight: 0 +# +6991# +One-time password (OTP) or special rainbow coin sent to ID lock users. +-------------------------- +If you show this to the NPC \ +, you will be able to receive special magic. +-------------------------- +Can only be stored. +-------------------------- +This item will automatically disappear 168 hours after it is obtained. +-------------------------- +Weight: 0 +# +6993# +You can Refine your weapon to +10 through Prontera's Refining Expert. -1 time limited- +-------------------------- +Weight: 0 +# +6994# +You can Refine your armor to +10 through Prontera's Refining Expert. -1 time limited- +-------------------------- +Weight: 0 +# +6995# +A stone that gives warm feeling when you touch it. You can bring it to someone who can process it. +-------------------------- +Weight: 0 +# +6996# +A doll with a rabbit shape. +-------------------------- +Weight: 0 +# +6997# +An old arrow. +-------------------------- +Weight: 0 +# +6998# +It seems to be necessary to perform the quest in the game of \ +. +-------------------------- +Take it to the NPC \ + in Prontera, the capital of the Rune Midgard Kingdom. +-------------------------- +This item will be available for use until May 26, 2015 (Tuesday) scheduled maintenance. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 0 +# +6999# +A stone can absorb HP. +Adds enchantment in upper slot costume. +Adds 1% chance of absorbing 3% damage given to target as HP. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +7000# +A special coin that can only be used during the event. +If you collect a lot, you can exchange them for enchant stones or special costumes. +-------------------------- +[Mysterious Confectionery]malangdo,124,152,0,100,0,0 +-------------------------- +Weight: 0 +# +7001# +A handful of soft, powdery mold that is strangely silken to the touch. +-------------------------- +Type: Collectible +Weight: 1 +# +7002# +A tooth extracted from the mouth of a proud Orc Warrior. +-------------------------- +Type: Collectible +Weight: 1 +# +7003# +A sticky piece of Anolian skin. +-------------------------- +Type: Collectible +Weight: 1 +# +7004# +A gloppy, unpleasant lump of wet, dirty mud. +-------------------------- +Type: Collectible +Weight: 1 +# +7005# +A skull taken from a corpse. +-------------------------- +Type: Collectible +Weight: 1 +# +7006# +A wing from a red bat. +-------------------------- +Type: Collectible +Weight: 1 +# +7007# +A toe nail from a huge, disease ridden rodent. +-------------------------- +Type: Collectible +Weight: 1 +# +7008# +A tough horn that might break, but will never bend. +-------------------------- +Type: Collectible +Weight: 1 +# +7009# +A shell that sparkles with dazzling light. +-------------------------- +Type: Collectible +Weight: 1 +# +7010# +A stinger ripped out of the body of a steel scorpion. +-------------------------- +Type: Collectible +Weight: 1 +# +7011# +A monkey's claw that was used to peel many a banana. +-------------------------- +Type: Collectible +Weight: 1 +# +7012# +A stem with a tough surface that feels like it's covered with thick, protective scales. +-------------------------- +Type: Collectible +Weight: 1 +# +7013# +A small chunk of a reef formed by corals in clear, tropical waters. +-------------------------- +Type: Collectible +Weight: 1 +# +7014# +An old, fragile portrait of a girl that you can't quite identify, although she seems very pretty. +-------------------------- +Type: Collectible +Weight: 10 +# +7015# +An old leaf that can be used as a bookmark or to remind its owner of something quite important. +-------------------------- +Type: Collectible +Weight: 2 +# +7016# +A spoon that looks like it was used to dig some sort of underground tunnel... +-------------------------- +Type: Collectible +Weight: 2 +# +7017# +A glove worn when performing executions that has absorbed all sorts of memories that are related to death and obligation. +-------------------------- +Type: Valuable +Weight: 3 +# +7018# +A fresh, young twig that evokes feelings of purity and innocence. +-------------------------- +Type: Valuable +Weight: 1 +# +7019# +A strange object in which the seductive whispers of Loki can be faintly heard... +-------------------------- +Type: Valuable +Weight: 1 +# +7020# +A mother's nightmares that have been given physical form. +-------------------------- +Type: Valuable +Weight: 1 +# +7021# +A symbol of Hod, the blind god who was tricked into killing his brother Balder, god of light. +-------------------------- +Type: Valuable +Weight: 1 +# +7022# +An old hilt broken off a heavy sword. +-------------------------- +Type: Valuable +Weight: 3 +# +7023# +A blade imbued with a suffocating aura that repels the light. +-------------------------- +Type: Valuable +Weight: 4 +# +7024# +A blade stained with blood that can't be cleansed. +-------------------------- +Type: Valuable +Weight: 4 +# +7025# +A gem that is said to be key to opening the path to the mysterious, ancient land of Geffenia. +-------------------------- +Type: Quest +Weight: 5 +# +7026# +An ornate key that can open what is locked in the Clock Tower. +-------------------------- +Type: Collectible +Weight: 3 +# +7027# +The key that can unlock the underground door in the Clock Tower. +-------------------------- +Type: Collectible +Weight: 3 +# +7028# +An invitation to an honorable duel. +# +7029# +Admission to watch a duel between honorable combatants. +# +7030# +A claw pried from a Desert Wolf's paw. +-------------------------- +Type: Collectible +Weight: 1 +# +7031# +An old frying pan that has outlived its usefulness. +-------------------------- +Type: Collectible +Weight: 1 +# +7032# +An eggshell fragment that protected its egg to the final, tragic end. +-------------------------- +Type: Collectible +Weight: 1 +# +7033# +A clump of spores from a toxic mushroom. +-------------------------- +Type: Collectible +Weight: 1 +# +7034# +A Christmas stocking from which presents were stolen through a hole made in the bottom. +-------------------------- +Type: Collectible +Weight: 1 +# +7035# +A phosphorus tipped stick that can be used to start a fire. +-------------------------- +Type: Valuable +Weight: 1 +# +7036# +A sharp fang dislodged from Hatii's mouth. +-------------------------- +Type: Valuable +Weight: 1 +# +7037# +A coupon that can be redeemed for a service or to receive a discount. +-------------------------- +Weight: 1 +# +7038# +A wound up ball of fluffy knitting yarn. +-------------------------- +Type: Collectible +Weight: 1 +# +7039# +An identification tag that certifies that its owner is a Novice. +-------------------------- +Weight: 1 +# +7040# +A funnel shaped device that is used to amplify one's voice. +-------------------------- +Weight: 1 +# +7041# +A crystal made entirely of fine sand. +-------------------------- +Type: Collectible +Weight: 1 +# +7042# +A mysterious leather bag that seems to contain a limitless supply of sand. +-------------------------- +Weight: 1 +# +7043# +Sand whose grains are so fine that it cannot be gathered with bare hands. +-------------------------- +Type: Collectible +Weight: 1 +# +7044# +An awesome tonic that brings enormous vigor to he who imbibes it. +-------------------------- +Weight: 1 +# +7045# +Paint that has been endowed with magical qualities. +-------------------------- +Weight: 1 +# +7046# +A set of disassembled parts for making a cart. +-------------------------- +Weight: 1 +# +7047# +An apron worn by Alice. +-------------------------- +Type: Collectible +Weight: 1 +# +7048# +A Griffon's sharp talon. +-------------------------- +Type: Collectible +Weight: 1 +# +7049# +Just a simple stone that you can pick up around anywhere. +-------------------------- +Type: Collectible +Weight: 3 +# +7050# +A sturdy mat woven from cotton. +-------------------------- +Weight: 1 +# +7051# +A fine, luxurious mat knit woven from very expensive silk. +-------------------------- +Weight: 1 +# +7052# +Old, discarded and crumpled paper. +-------------------------- +Weight: 1 +# +7053# +A blue crystal that faintly shines with muddled light. +-------------------------- +Type: Collectible +Weight: 1 +# +7054# +A rare, red mineral. +-------------------------- +Type: Collectible +Weight: 1 +# +7055# +Animal feces which make a horrible gift for a girl, or anyone for that matter. +-------------------------- +Weight: 5 +# +7056# +Kafra employee's paycheck stub. +-------------------------- +Weight: 5 +# +7057# +A great bugle made from an animal's horn whose thunderous sound can be heard for miles. +-------------------------- +Weight: 50 +# +7058# +Impossibly strong thread woven from the sound of a cat's footsteps, woman's moustache, stone root, fish spirit, bird sputem and bear sinew. +-------------------------- +Weight: 50 +# +7059# +A ticket that entitles the bearer to use the Kafra Storage one time without paying any fee. +-------------------------- +Weight: 0 +# +7060# +A ticket that entitles the bearer to use the Kafra Teleport Service one time free of charge. +-------------------------- +Weight: 0 +# +7061# +A ticket that entitles the bearer to use the Kafra Pushcart Rental Service one time without incurring the usual fee. +-------------------------- +Weight: 1 +# +7062# +A sturdy, solid turtle's shell. +-------------------------- +Type: Collectible +Weight: 1 +# +7063# +A feather that is soft enough to be used as stuffing in a quilt. +-------------------------- +Type: Collectible +Weight: 1 +# +7064# +A dragonfly wing. +-------------------------- +Type: Collectible +Weight: 1 +# +7065# +Sea otter fur that is soft and downy enough to be used in making clothing. +-------------------------- +Type: Collectible +Weight: 1 +# +7066# +A miraculous lump of ice that wil never melt. +-------------------------- +Type: Collectible +Weight: 1 +# +7067# +A small piece of rock that has been broken from a larger stone. +-------------------------- +Type: Collectible +Weight: 1 +# +7068# +A burnt piece of wood that seems to have little practical value, despite the fact that shops will still buy it for zeny. +-------------------------- +Type: Collectible +Weight: 1 +# +7069# +Pieces of armor that have been damaged beyond repair. +-------------------------- +Type: Collectible +Weight: 1 +# +7070# +A damaged turtle's shell. In ancient times, turtle shells were used to foretell the future. +-------------------------- +Type: Collectible +Weight: 1 +# +7071# +Worn out clothes. +-------------------------- +Type: Collectible +Weight: 1 +# +7072# +An old, rusty shuriken that has little hope of being thrown by an awesome ninja. +-------------------------- +Type: Collectible +Weight: 1 +# +7073# +A sparkling clear gemstone said to have been formed from the tears of the goddess Freya. +-------------------------- +Weight: 50 +# +7074# +A pair of steel gauntlets rumored to have been worn by Thor, god of thunder, when wielding Mjolnir. +Unfortunately, they're impossible to wear. +-------------------------- +Weight: 50 +# +7075# +An instrumen used for torture. +-------------------------- +Weight: 50 +# +7076# +A curious wheel whose actual purpose is truly mysterious. +-------------------------- +Weight: 50 +# +7077# +An ornament made out of silver which can be used to decorate various things. +-------------------------- +Weight: 50 +# +7078# +The pure rage of the Valkyries, female warriors in Norse myth, that has condensed into physical form. +-------------------------- +Weight: 50 +# +7079# +A feather from an angel's wing. +-------------------------- +Weight: 50 +# +7080# +The sound of cat footsteps that has been materialized into physical form. +-------------------------- +Weight: 50 +# +7081# +Weird facial hair from a woman. Though, it may be possible its owner is a she-male. +-------------------------- +Weight: 50 +# +7082# +Actual roots from a stone that are a rare commodity since most stones are proven not to have roots at all. +-------------------------- +Weight: 50 +# +7083# +A transparent blue bottle that contains the spirit of a fish. It looks very beautiful with it's transparent blue color. +-------------------------- +Weight: 50 +# +7084# +A bottle containing bird sputum, a very rare item considering that almost all birds do not even salivate. +-------------------------- +Weight: 50 +# +7085# +A small bunch of amazingly rare bear sinew. +-------------------------- +Weight: 50 +# +7086# +A golden, shining bead that is a symbol of the god of the sun. +-------------------------- +Weight: 50 +# +7087# +Exhaled from a spirit, this breath causes the living to feel an unnatural chill. +-------------------------- +Weight: 50 +# +7088# +A crystal of ice that has fallen from the sky with the snow. +-------------------------- +Weight: 50 +# +7089# +A strange orb that can be used to predict when windstorms will occur. +-------------------------- +Weight: 50 +# +7090# +A conic receptacle that contains a single ripple from the ocean. +-------------------------- +Weight: 50 +# +7091# +A sculpture of a huge billow rushing towards the shore. +-------------------------- +Weight: 50 +# +7092# +A gorgeous sculpture made by an artist who claimed to be able to sense forms within the drifting air. +-------------------------- +Weight: 50 +# +7093# +A cogwheel used in a machine. +-------------------------- +Type: Collectible +Weight: 1 +# +7094# +A strange object with metal pieces attached to it. It could be a piece of a very large machine. +-------------------------- +Type: Collectible +Weight: 1 +# +7095# +An unidentified metal fragment. +-------------------------- +Type: Collectible +Weight: 1 +# +7096# +A chunk of lava that containing minerals. +-------------------------- +Type: Collectible +Weight: 1 +# +7097# +A stone heart that is aflame with magic. +-------------------------- +Type: Collectible +Weight: 1 +# +7098# +A live coal. +-------------------------- +Type: Collectible +Weight: 1 +# +7099# +An old, worn-out magic scroll that is extremely valuable to the Magician Academy. +-------------------------- +Type: Collectible +Weight: 1 +# +7100# +A sharp leaf. +-------------------------- +Type: Collectible +Weight: 1 +# +7101# +A rare feather from the wing of a Peco Peco. +-------------------------- +Type: Collectible +Weight: 1 +# +7102# +A mysterious stone rumored to bring nightmares to its owner. +-------------------------- +Type: Collectible +Weight: 1 +# +7103# +A bottle carrying unidentified liquid. +-------------------------- +Type: Collectible +Weight: 1 +# +7104# +A wing from a phony angel. +-------------------------- +Type: Collectible +Weight: 1 +# +7105# +A heavenly halo from a phony angel. +-------------------------- +Type: Collectible +Weight: 1 +# +7106# +An impressive horn from an antelope. +-------------------------- +Type: Collectible +Weight: 1 +# +7107# +Some dirty fur from an antelope. +-------------------------- +Type: Collectible +Weight: 1 +# +7108# +A piece of broken shield that looks strong and durable. +-------------------------- +Type: Collectible +Weight: 1 +# +7109# +A shiny spear blade. +-------------------------- +Type: Collectible +Weight: 1 +# +7110# +A damaged sword that no longer looks usable. +-------------------------- +Type: Collectible +Weight: 1 +# +7111# +Smooth, sleek paper that looks suitable for writing love letters. +-------------------------- +Type: Collectible +Weight: 1 +# +7112# +Incredibly sharp and stout paper that looks as though it could be used like a knife. +-------------------------- +Type: Collectible +Weight: 1 +# +7113# +A broken emblem of Pharaoh that seems to possess some mysterious power. +-------------------------- +Type: Collectible +Weight: 1 +# +7114# +A golden mask that is rumored to be worn by an ancient Egyptian king. +-------------------------- +Type: Collectible +Weight: 1 +# +7115# +A feather from a Harpy. The Harpy's wings are effective in paralyzing its enemies. +-------------------------- +Type: Collectible +Weight: 1 +# +7116# +A Talon from a Harpy. +-------------------------- +Type: Collectible +Weight: 1 +# +7117# +An old magic book that is seriously damaged. +-------------------------- +Type: Collectible +Weight: 1 +# +7118# +A piece of a scroll. +-------------------------- +Type: Collectible +Weight: 1 +# +7119# +Aerobic bacteria. Often resides on metal chains. +-------------------------- +Type: Collectible +Weight: 1 +# +7120# +A burning horseshoe. Should probably only be shod on a burning horse. +-------------------------- +Type: Collectible +Weight: 1 +# +7121# +An empty pot that carried honey once upon a time, but contains sweet goodness no longer. +-------------------------- +Type: Collectible +Weight: 1 +# +7122# +Tussled red hair that looks like it's on fire. +-------------------------- +Type: Collectible +Weight: 1 +# +7123# +A piece of skin from a dragon. +-------------------------- +Type: Collectible +Weight: 1 +# +7124# +A lump of wet sand. +-------------------------- +Type: Collectible +Weight: 1 +# +7125# +A claw from a scorpion. +-------------------------- +Type: Collectible +Weight: 1 +# +7126# +A huge jellopy. +-------------------------- +Type: Collectible +Weight: 1 +# +7127# +A book with instructions for creating Alcohol. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7128# +A book with instructions for creating Fire Bottles. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7129# +A book with instructions for creating Acid Bottles. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7130# +A book with instructions for catching Floras and trapping them in bottles. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7131# +A book with instructions for catching Marine Spheres and trapping them in bottles. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7132# +A book with instructions for creating Glistening Coats. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7133# +A book with instructions for creating Condensed Potions. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7134# +A porcelain bowl used for grinding herbs or other substances to make medicine. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7135# +A bottle containing flammable liquid. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7136# +A bottle holding highly corrosive acid. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7137# +A bottle containing a dormant Flora. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7138# +A bottle containing a dormant Marine Sphere. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7139# +A bottle which contains shining liquid. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7140# +A seed filled with vitality. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7141# +Morning dew gathered from Yggdrasilberries. It glimmers faintly with the gentle light of life. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7142# +An embryo. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7143# +An empty tube that can hold a creature. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7144# +A book that describes how to create potions. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7145# +A cotton shirt with the Ragnarok logo printed on it. +The owner of this T-shirt can apply for an event by talking to Kurt in front of the Prontera castle. +-------------------------- +Weight: 1 +# +7146# +A ticket which allows its owner to apply for a summer vacation event. +-------------------------- +Weight: 1 +# +7147# +A beautiful flower with a unique fragrance. Serves a number of purposes and can be used in various teas. +-------------------------- +Weight: 1 +# +7148# +A letter written with loving words by a warm hearted mother to her children. +-------------------------- +Weight: 1 +# +7149# +A polished plate made out of yellow clay. +-------------------------- +Type: Collectible +Weight: 1 +# +7150# +A piece of bamboo from a bamboo tree. +-------------------------- +Type: Collectible +Weight: 1 +# +7151# +A piece of yellowish paper with a waxy surface that repels water. +-------------------------- +Type: Collectible +Weight: 1 +# +7152# +A tied bunch of shining human hair. +-------------------------- +Type: Collectible +Weight: 1 +# +7153# +A beautiful but worn-out kimono. +-------------------------- +Type: Collectible +Weight: 1 +# +7154# +A bottle of poisonous powder which may poison enemies when mixed with water or alcohol. +-------------------------- +Type: Collectible +Weight: 1 +# +7155# +A piece of skin from the back of a poisonous toad. +-------------------------- +Type: Collectible +Weight: 1 +# +7156# +A broken shuriken that is no longer useful. Usually, it is a lethal weapon used by ninjas. +-------------------------- +Type: Collectible +Weight: 1 +# +7157# +Dark colored mask made from fabric. Used to cover the entire face. +-------------------------- +Type: Collectible +Weight: 1 +# +7158# +A piece of a broken liquor jar on which the tempting scent of alcohol still lingers. +-------------------------- +Type: Collectible +Weight: 1 +# +7159# +A nose part of the mask that the Tengu monster wears. +The nose attached on this redish mask is quite long and ugly. +-------------------------- +Type: Collectible +Weight: 1 +# +7160# +An authorized ticket which allows its owner to enter a prohibited area. +-------------------------- +Type: Quest +Weight: 1 +# +7161# +A bad smelling piece of skin peeled from a black bear. +-------------------------- +Type: Collectible +Weight: 1 +# +7162# +A bottle which contains cloud crumbs. +-------------------------- +Type: Collectible +Weight: 1 +# +7163# +A sharp, solid feeler. +-------------------------- +Type: Collectible +Weight: 1 +# +7164# +A peach that is so stout and solid, that it appears it can even withstand blows from a sword. +Inedible, but might make a good weapon. +-------------------------- +Type: Collectible +Weight: 1 +# +7165# +A transparent celestial robe which is made with very light and soft fabric. +-------------------------- +Type: Collectible +Weight: 1 +# +7166# +An expensive fabric that is knit with high quality silk threads. +-------------------------- +Type: Collectible +Weight: 1 +# +7167# +Unidentified piece of steel which is possibly used as a hinge for something. +-------------------------- +Type: Collectible +Weight: 1 +# +7168# +Wings from a giant butterfly. +However, it does not seem to have the same ability as a butterfly wing. +-------------------------- +Type: Collectible +Weight: 1 +# +7169# +A talisman with a Yin-Yang symbol carved in the middle of it. +-------------------------- +Type: Collectible +Weight: 1 +# +7170# +A formal suit which is usually worn by the Groom during a wedding ceremony. +Although it enhances its wearer's looks, some people refer to it as a penguin suit. +-------------------------- +Type: Collectible +Weight: 1 +# +7171# +Peeled off leopard skin. +There is a rumor of a man who ruled the jungle, wearing this skin as a loincloth. +-------------------------- +Type: Collectible +Weight: 1 +# +7172# +A sharp claw extracted from a leopard. +-------------------------- +Type: Collectible +Weight: 1 +# +7173# +Deep-red bun buster bag. +-------------------------- +Weight: 1 +# +7174# +Long and thin lace used to decorate a gift box. +-------------------------- +Type: Collectible +Weight: 1 +# +7175# +Shiny, beautiful paper used to decorate a gift box. +-------------------------- +Type: Collectible +Weight: 1 +# +7176# +A royal congratulatory certificate given in recognition of defeating monsters. +-------------------------- +Weight: 1 +# +7177# +Pieces of sobbing starlight. It might be possible to assemble them together. +-------------------------- +Type: Quest +Weight: 0 +# +7178# +A beautiful jewel that was named after a star in the sky. +Sometimes, it seems to show ancient letters from behind. +-------------------------- +Type: Quest +Weight: 0 +# +7179# +A certificate that shows its owner donated money to the poor. +Authenticated with Tristram the 3rd's signature. +-------------------------- +Weight: 1 +# +7180# +A recommendation letter given to Jamgeum as a token of Sukbong's gratitute for her favor. +Jamgeum informed Sukbong of his mother's news. +-------------------------- +Weight: 1 +# +7181# +A small paper which is used as a proof of purchase. +-------------------------- +Type: Quest +Weight: 1 +# +7182# +A nut from the Cacao tree that is naturally found in warm climes. It must be dried into cacao beans, fried and then ground to become cacao paste. Chocolate is made by solidying the cacao paste with milk. The fat extracted from the cacao paste is used as cacao butter, so it's not ready to eat yet. +-------------------------- +Weight: 2 +# +7183# +A letter written by a younger sister to her brother. +-------------------------- +Type: Quest +Weight: 1 +# +7184# +A white key which was came from a broken piano. +-------------------------- +Weight: 1 +# +7185# +A ticket that is needed to participate in an OX quiz. +-------------------------- +Weight: 1 +# +7186# +A thin trunk which is used by people to climb up to higher places. +-------------------------- +Weight: 1 +# +7187# +A mask that is worn during festivals. +-------------------------- +Type: Collectible +Weight: 1 +# +7188# +A tree root that still has soil clinging to it. +-------------------------- +Type: Collectible +Weight: 1 +# +7189# +An artificial heart made out of wood which is used to give life to a Wooden Golem. +-------------------------- +Type: Collectible +Weight: 1 +# +7190# +An insect husk that seems very hard and stout. +-------------------------- +Type: Collectible +Weight: 1 +# +7191# +A beautiful lamp made with red paper. +-------------------------- +Type: Collectible +Weight: 1 +# +7192# +A vane with sharp blades suspected to be used for assassinations. +-------------------------- +Type: Collectible +Weight: 1 +# +7193# +A sprout grown out of a vegetable seed. +-------------------------- +Type: Collectible +Weight: 1 +# +7194# +A very soft blade of grass. +-------------------------- +Type: Collectible +Weight: 1 +# +7195# +A tool consisting of a Y-shaped wooden stick with an elastic band between the arms. Used to attack distant objects. +-------------------------- +Type: Collectible +Weight: 1 +# +7196# +A primitive protector made out of wood that is worn on the shoulders. +-------------------------- +Type: Collectible +Weight: 1 +# +7197# +A tough vine which can be used as rope. +-------------------------- +Type: Collectible +Weight: 1 +# +7198# +A huge leaf which can be worn one's head in the rain. +-------------------------- +Type: Collectible +Weight: 1 +# +7199# +Ragnarok 13th anniversary coin. +13th Anniversary Rewards Staffcomodo,190,141,0,200,0,0 +Weight: 0 +# +7200# +An amazing length of flexible material which returns to its original form after being stretched. +-------------------------- +Type: Collectible +Weight: 1 +# +7201# +A piece of wood that seems like it could be made into something. +-------------------------- +Type: Collectible +Weight: 1 +# +7202# +A pincher from a beetle. +-------------------------- +Type: Collectible +Weight: 1 +# +7203# +A tree branch which can be used in various ways as a simple tool. +-------------------------- +Type: Collectible +Weight: 1 +# +7204# +Explosive powder. +-------------------------- +Type: Collectible +Weight: 1 +# +7205# +A piece of jet black cloth that cannot be seen in the dark. +-------------------------- +Type: Collectible +Weight: 1 +# +7206# +A doll which resembles a black cat that almost seems alive. +-------------------------- +Type: Collectible +Weight: 1 +# +7207# +A old, exhausted manteau. +-------------------------- +Type: Collectible +Weight: 1 +# +7208# +A dull edged, rusty kitchen knife stained with blood. +-------------------------- +Type: Collectible +Weight: 1 +# +7209# +A helm that is said to be worn by Dullahan. +-------------------------- +Type: Collectible +Weight: 1 +# +7210# +A broken piece of armor said to be worn by Dullahan. +-------------------------- +Type: Collectible +Weight: 1 +# +7211# +A broken piece of a stone with writing carved in an ancient language. +-------------------------- +Type: Collectible +Weight: 1 +# +7212# +A doll hung on a rope that appears to hold some sort of cursed spell. +-------------------------- +Type: Collectible +Weight: 1 +# +7213# +A packet, made with fabric, that is used to hold needles in place. +-------------------------- +Type: Collectible +Weight: 1 +# +7214# +A cage which is used to hold a bat. +-------------------------- +Type: Collectible +Weight: 1 +# +7215# +Pieces of a broken needle. +-------------------------- +Type: Collectible +Weight: 1 +# +7216# +A red-colored fabric worn around the neck to protect its wearer from the cold. +-------------------------- +Type: Collectible +Weight: 1 +# +7217# +A sewing tool on which thread is wound. +-------------------------- +Type: Collectible +Weight: 1 +# +7218# +An old, rotten rope. +-------------------------- +Type: Collectible +Weight: 1 +# +7219# +A sock decorated with various colored stripes. +-------------------------- +Type: Collectible +Weight: 1 +# +7220# +Green translucent liquid that is disgustingly sticky. +-------------------------- +Type: Collectible +Weight: 1 +# +7221# +A clump of chains that are hard to untangle. +-------------------------- +Type: Collectible +Weight: 1 +# +7222# +A gnarl of a tree. +-------------------------- +Type: Collectible +Weight: 1 +# +7223# +A self-portrait of someone contorting his facial expression. +-------------------------- +Type: Collectible +Weight: 1 +# +7224# +A hot and soft, red colored stone. +This illusive stone contains mysterious power that will change non-metal into gold. +-------------------------- +Type: Collectible +Weight: 1 +# +7225# +A funny lantern made with a pumpkin, carved with a smily face, containing a lit candle. +-------------------------- +Type: Collectible +Weight: 1 +# +7226# +A small, round pill that looks like it will taste bitter. +-------------------------- +Type: Collectible +Weight: 1 +# +7227# +Ragnarok Trading Card. +-------------------------- +Weight: 1 +# +7228# +A pure gold ore in a rectangular shape. Its flexibility and durability make it a suitable substitute for money. +-------------------------- +Type: Collectible +Weight: 30 +# +7229# +A pure silver ore in a rectangular shape. Its flexibility and beauty make it a suitable substitute for money. +-------------------------- +Type: Collectible +Weight: 30 +# +7230# +A bar of pure platinum. Platinum is a very rare metal and is more valuable than gold. +-------------------------- +Type: Collectible +Weight: 30 +# +7231# +An ore containing gold which can be purified to make gold. +-------------------------- +Type: Collectible +Weight: 15 +# +7232# +An ore containing silver which can be purified to make silver. +-------------------------- +Type: Collectible +Weight: 15 +# +7233# +An ore containing mythril which can be purified to make mythril. +-------------------------- +Type: Collectible +Weight: 15 +# +7234# +A statue which stands for the comraderie of guildsmen. +-------------------------- +Weight: 1 +# +7235# +A statue honoring the spirit of brave warriors. +-------------------------- +Weight: 1 +# +7236# +A statue made in recognition of protective warriors. +-------------------------- +Weight: 1 +# +7237# +A statue symbolizing the spirit of cooperation. +-------------------------- +Weight: 1 +# +7238# +A statue which stands for the spirit of harmony. +-------------------------- +Weight: 1 +# +7239# +A statue honoring exemplary leadership. +-------------------------- +Weight: 1 +# +7240# +A statue which symbolizes trust. +-------------------------- +Weight: 1 +# +7241# +A statue honoring the spirit of beginners. +-------------------------- +Weight: 1 +# +7242# +A statue which stands for teamwork. +-------------------------- +Weight: 1 +# +7243# +A statue which describes spirit of assistance. +-------------------------- +Weight: 1 +# +7244# +A statue sybolizing the spirit of unity for a common cause. +-------------------------- +Weight: 1 +# +7245# +A statue which stands for friendship. +-------------------------- +Weight: 1 +# +7246# +A statue symbolizing peace. +-------------------------- +Weight: 1 +# +7247# +A statue which symbolizes challenge. +-------------------------- +Weight: 1 +# +7248# +A statue which stands for honor. +-------------------------- +Weight: 1 +# +7249# +A statue which stands for sacrifice. +-------------------------- +Weight: 1 +# +7250# +A statue which symbolizes the joy of achievement. +-------------------------- +Weight: 1 +# +7251# +A statue which signifies the spirit of emerging victorious. +-------------------------- +Weight: 1 +# +7252# +A herbal medicine which is used in the eastern countries. +-------------------------- +Weight: 1 +# +7253# +A golden Korean national flag. +-------------------------- +Weight: 1 +# +7254# +A small, square shaped paper which has www.op.co.kr written on it. +-------------------------- +Weight: 1 +# +7255# +A red orb engraved with the word \ + that is said to be from the east God's territory and to have the power to cure any disease. +There are rumors that this orb has other hidden powers. +-------------------------- +Weight: 10 +# +7256# +A red orb engraved with the word \ + that is said to be from the east God's territory and to have the power to cure any disease. +There are rumors that this orb has other hidden powers. +-------------------------- +Weight: 10 +# +7257# +A red orb engraved with the word \ + that is said to be from the east God's territory and to have the power to cure any disease. +There are rumors that this orb has other hidden powers. +-------------------------- +Weight: 10 +# +7258# +A red orb engraved with the word \ + that is said to be from the east God's territory and to have the power to cure any disease. +There are rumors that this orb has other hidden powers. +-------------------------- +Weight: 10 +# +7259# +A red orb with an engraving that reads \ + It's said to be from the east Sea God's territory and can cure any disease. +There are rumors that it also contains other powers. +-------------------------- +Weight: 10 +# +7260# +A red orb engraved with the word \ + that is said to be from the east God's territory and to have the power to cure any disease. +There are rumors that this orb has other hidden powers. +-------------------------- +Weight: 10 +# +7261# +A red orb engraved with the number \ + that is said to be from the east God's territory and to have the power to cure any disease. +There are rumors that this orb has other hidden powers. +-------------------------- +Weight: 10 +# +7262# +A folding fan which is very useful in summer. +-------------------------- +Type: Collectible +Weight: 1 +# +7263# +A gem which looks like the eye of a cat. It's very rare and beautiful. +-------------------------- +Type: Collectible +Weight: 1 +# +7264# +Dry sand which can be easily found on the street. +-------------------------- +Type: Collectible +Weight: 1 +# +7265# +A decorative horn from a dragon mask. +-------------------------- +Type: Collectible +Weight: 1 +# +7266# +A tooth cut from a dragon mask. It seems to be made from a different material than the rest of the mask, which is wooden. +-------------------------- +Type: Collectible +Weight: 1 +# +7267# +A panty made of tiger skin. It looks warm, yet wild and untamed. +-------------------------- +Type: Collectible +Weight: 1 +# +7268# +A kind of spirit that has a red ribbon on its head. +-------------------------- +Type: Collectible +Weight: 1 +# +7269# +A soft cloth which is worn around the neck of an infant to protect the chest from spilled milk and baby drool. +-------------------------- +Type: Collectible +Weight: 1 +# +7270# +Milk that is bottled for infants. +-------------------------- +Type: Collectible +Weight: 1 +# +7271# +Ragnarok Novice Figure. +-------------------------- +Weight: 1 +# +7272# +A doll which resembles a lump of rice. +-------------------------- +Weight: 1 +# +7273# +A golden necklace made for celebrating RWC. +-------------------------- +Weight: 1 +# +7274# +The door leading to the great power can be found under the twilight sky from the tower of the heaven. +The key to the door will be the grass living under the Sun. +-------------------------- +Type: Quest +Weight: 1 +# +7275# +Paper with writing in an ancient language obtained from \ +. +-------------------------- +Type: Quest +Weight: 1 +# +7276# +A message made of pictures doodled by a little child. +-------------------------- +Type: Quest +Weight: 0 +# +7277# +A doll made in the appearance of a young girl. +-------------------------- +Type: Collectible +Weight: 1 +# +7278# +A letter written by a husband to his wife. It describes how anxious he is her. +-------------------------- +Type: Quest +Weight: 1 +# +7279# +kRO event item. +-------------------------- +Weight: 1 +# +7280# +An entry for Quiz event. +-------------------------- +Weight: 1 +# +7281# +An entry for Quiz event. +-------------------------- +Weight: 1 +# +7282# +An entry for Quiz event. +-------------------------- +Weight: 1 +# +7283# +An entry for Quiz event. +-------------------------- +Weight: 1 +# +7284# +An entry for Quiz event. +-------------------------- +Weight: 1 +# +7285# +A skein of threads which possesses a holy power within. +-------------------------- +Weight: 1 +# +7286# +A kind of spice in a vivid red color. +Adds a spicy taste in food. +-------------------------- +Type: Cooking ingredient +Weight: 1 +# +7287# +A skein of threads enchanted with a holier power than a normal holy threads. +-------------------------- +Weight: 1 +# +7288# +A solid, beautiful engagement ring which a word \ + is etched within. +-------------------------- +Weight: 1 +# +7289# +A gemstone which is also called as \ +. +Symbolizes the peace of mind and wisdom. +-------------------------- +Type: Valuable +Weight: 10 +# +7290# +A pearl gray gemstone which means \ +. +Symbolizes motherly love. +-------------------------- +Type: Valuable +Weight: 10 +# +7291# +A very hard stone which is used to make jewellery. +Symbolizes protection and stability. +-------------------------- +Type: Valuable +Weight: 10 +# +7292# +A silicate mineral which has a pearly luster. +Symbolizes motivation recovery. +-------------------------- +Type: Valuable +Weight: 10 +# +7293# +A pinkish quartz which is used as a gemstone or as an ornamental stone. +Symbolizes self-esteem. +-------------------------- +Type: Valuable +Weight: 10 +# +7294# +A bluish green stone which is commonly used as a gem or an ornamental stone. +Symbolizes mental power. +-------------------------- +Type: Valuable +Weight: 10 +# +7295# +A topaz which used to be belived as a frozen ice by the ancient people. +Symbolizes communicative conversation and mental calm. +-------------------------- +Type: Valuable +Weight: 10 +# +7296# +A group of crystallin silicate mineral common in igneous and metamorphic rocks. +Symbolizes cure and restoration. +-------------------------- +Type: Valuable +Weight: 10 +# +7297# +A common dark mica. +Symbolizes spiritual support. +-------------------------- +Type: Valuable +Weight: 10 +# +7298# +An emergency clothes made with two giant leaves. +-------------------------- +Weight: 1 +# +7299# +A basket made with straws. +-------------------------- +Weight: 1 +# +7300# +An ore of gems. There are many minerals mixed within the ore, it would be possible to extract various gems from it. +-------------------------- +Weight: 1 +# +7301# +A bunch of short and red threads which seems to be used for decorating the hilt of a sword. +-------------------------- +Weight: 1 +# +7302# +A small boat made with banana leaves and decorated with flowers. +It is used for making a wish or comforting a spirit. +-------------------------- +Weight: 1 +# +7303# +A bag made out of straw that is used to store rince within. +-------------------------- +Weight: 80 +# +7304# +A worn out scroll with illegible text written in an ancient language. +The only word you can read is \ +. +-------------------------- +Type: Quest +Weight: 1 +# +7305# +An emblem which signifies the authority to rule over the nine realms of the dead. Seers can sense its ominous powers. +-------------------------- +Type: Quest +Weight: 0 +# +7306# +A strange object which looks like a tiny soul is flickering from within. +-------------------------- +Type: Quest +Weight: 0 +# +7307# +A curious object that almost seems alive, especially since it faintly whispers to you. +-------------------------- +Type: Quest +Weight: 1 +# +7308# +An enchanted tonic that causes the loss of key memories of your past. +-------------------------- +Type: Quest +Weight: 1 +# +7309# +A crow's wing that can temporarily grant a person the power of flight. +-------------------------- +Type: Quest +Weight: 1 +# +7310# +A ticket that can be used once to waive the fee for a Peco Peco rental. (Dragon Available.) +-------------------------- +Weight: 1 +# +7311# +A ticket that can be used once to waive the fee for riding the Airship. +-------------------------- +Weight: 1 +# +7312# +A crystallization, dropped from monsters, whose name means joyous celebration. +-------------------------- +Type: Collectible +Weight: 1 +# +7313# +A medal rewarded to honorable witches. +-------------------------- +Type: Quest +Weight: 1 +# +7314# +A voucher that allows entrance into Valhalla. +-------------------------- +Type: Quest +Weight: 1 +# +7315# +A sharp, shiny fragment broken off a dark crystal. +-------------------------- +Type: Collectible +Weight: 1 +# +7316# +A severed bug's leg that is as sharp as a scythe. +-------------------------- +Type: Collectible +Weight: 1 +# +7317# +A rusty screw that has come off a machine. It might be usuable if it were polished enough. +-------------------------- +Type: Collectible +Weight: 1 +# +7318# +A tool used to break rocks or the ground. +-------------------------- +Type: Collectible +Weight: 1 +# +7319# +A battered iron plate that seems to have fallen off some machine. It might be handy for covering a hole in another machine. +-------------------------- +Type: Collectible +Weight: 1 +# +7320# +Very small, dry particles, dispersed widely in the air, are a major cause of environmental pollution. +-------------------------- +Type: Collectible +Weight: 1 +# +7321# +A small piece of a pretty crystal that looks like it has a symbol of an eye in its center. +-------------------------- +Type: Collectible +Weight: 1 +# +7322# +Poisonous gas that can be very harmful, if not lethal, when inhaled. +-------------------------- +Type: Collectible +Weight: 1 +# +7323# +This kettle isn't in the best condition, but it can still be used. +-------------------------- +Type: Collectible +Weight: 1 +# +7324# +Loot from the Deep Sea Kraken. +Very good adhesion. +-------------------------- +Weight: 1 +# +7325# +A long, thin, pipe-like tube made to transport liquids or gases. +-------------------------- +Type: Collectible +Weight: 1 +# +7326# +A sticky, flourescent liquid which glows in the darkness. +-------------------------- +Type: Collectible +Weight: 1 +# +7327# +A flashlight that used to be attached to a miner's helmet. +-------------------------- +Type: Collectible +Weight: 1 +# +7328# +Written in an ancient, forgotten language, this scroll contains the legend of Songkran. +-------------------------- +Weight: 1 +# +7329# +A small bronze key. +-------------------------- +Weight: 1 +# +7330# +A red orb with the word \ + engraved on, which is told to be from the east Sea God's territory. +It is rumored that this orb has very special abilities besides of curing every desease. +-------------------------- +Weight: 10 +# +7331# +An extremely rare flower that only blooms in heaven. It is believed to bring incredibly good luck to its owner. +-------------------------- +Weight: 1 +# +7332# +A solid tablet that is cold to the touch. +-------------------------- +Weight: 1 +# +7333# +\ +-------------------------- +--The First Man +-------------------------- +Weight: 1 +# +7334# +\ +-------------------------- +--The Second Man +-------------------------- +Weight: 1 +# +7335# +\ +-------------------------- +--The Third Man +-------------------------- +Weight: 1 +# +7336# +\ +-------------------------- +--The Fourth Man +-------------------------- +Weight: 1 +# +7337# +Hellion Revenant's Eye. +-------------------------- +Weight: 1 +# +7338# +A special ticket that allows its user to use the Kafra Teleport Service one time for free. +# +7339# +A special pass that allows use of the Kafra Teleport Service for a limited amount of times without any zeny charge. +# +7340# +A dark oval stone with seven red eyes that's believed to act as a sort of nucleus for some monsters. +-------------------------- +Type: Collectible +Weight: 5 +# +7341# +An old pendant, which seems to have been damaged with age, that makes one shudder with a feeling of dread upon looking at it for some inexplicable reason. +-------------------------- +Weight: 1 +# +7342# +A file folder that holds unknown documents. +-------------------------- +Weight: 1 +# +7343# +A file folder, protected by some sort of seal, that contains some kind of unknown documents. +-------------------------- +Weight: 1 +# +7344# +A file containing all of the details of the Shinokas case. +-------------------------- +Weight: 1 +# +7345# +A pair of metal restraints which still seem to smell of blood. +-------------------------- +Type: Collectible +Weight: 1 +# +7346# +One of the pieces of Ymir's Heart which have been used to power the Airships and Guardians. +It glows with a strange and unearthly light. +-------------------------- +Weight: 1 +# +7347# +A chart, written in a language you can't recognize, that details the history of research. +-------------------------- +Type: Collectible +Weight: 1 +# +7348# +A card for members of the \ + organization. +-------------------------- +Weight: 1 +# +7349# +A permit which allows the holder to enter the archive. +The number \ + is written on the back. +-------------------------- +Weight: 1 +# +7350# +Holding on to this pass will grant you authorization to enter a certain area. +-------------------------- +Type: Quest +Weight: 1 +# +7351# +An old diary in which many petty, personal secrets have been written. +-------------------------- +Type: Quest +Weight: 1 +# +7352# +A marvelous see-through plate that is light, solid and has strange writing in an unknown language etched on the surface. +-------------------------- +Weight: 1 +# +7353# +A marvelous see-through plate that is light, solid and has strange writing in an unknown language etched on the surface. +-------------------------- +Weight: 1 +# +7354# +A marvelous see-through plate that is light, solid and has strange writing in an unknown language etched on the surface. +-------------------------- +Weight: 1 +# +7355# +A marvelous see-through plate that is light, solid and has strange writing in an unknown language etched on the surface. +-------------------------- +Weight: 1 +# +7356# +A piece of an ancient crest, whose purpose is unknown, that has many spikes nailed on its backside. +-------------------------- +Type: Collectible +Weight: 1 +# +7357# +A piece of an ancient crest, whose purpose is unknown, that has many spikes nailed on its backside. +-------------------------- +Type: Collectible +Weight: 1 +# +7358# +A piece of an ancient crest, whose purpose is unknown, that has many spikes nailed on its backside. +-------------------------- +Type: Collectible +Weight: 1 +# +7359# +A piece of an ancient crest, whose purpose is unknown, that has many spikes nailed on its backside. +-------------------------- +Type: Collectible +Weight: 1 +# +7360# +An invitation which has the word \ + written in a foreign language. +-------------------------- +Weight: 1 +# +7361# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7362# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7363# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7364# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7365# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7366# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7367# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7368# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7369# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7370# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7371# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7372# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7373# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7374# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7375# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7376# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7377# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7378# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7379# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7380# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7381# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7382# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7383# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7384# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7385# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7386# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7387# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7388# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7389# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7390# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7391# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7392# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7393# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7394# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7395# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7396# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7397# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7398# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7399# +The word Selamat is written in the middle of a white paper. +-------------------------- +Weight: 1 +# +7400# +The word Hari is written in the middle of a white paper. +-------------------------- +Weight: 1 +# +7401# +The word Kemerdekaan is written in the middle of a white paper. +-------------------------- +Weight: 1 +# +7402# +The word Republik is written in the middle of a white paper. +-------------------------- +Weight: 1 +# +7403# +The word Indonesia is written in the middle of a white paper. +-------------------------- +Weight: 1 +# +7404# +The word Ke-60 is written in the middle of a white paper. +-------------------------- +Weight: 1 +# +7405# +A misshapen can with some traces of content still within. +-------------------------- +Weight: 1 +# +7406# +A Moon Snack which has \ + written in the center in Chinese. +-------------------------- +Weight: 1 +# +7407# +A Moon Snack which has \ + written in the center in Chinese. +-------------------------- +Weight: 1 +# +7408# +A Moon Snack which has \ + written in the center in Chinese. +-------------------------- +Weight: 1 +# +7409# +A Moon Cake that's inscribed with a letter or word. +-------------------------- +Weight: 1 +# +7410# +A Moon Cake that's inscribed with a letter or word. +-------------------------- +Weight: 1 +# +7411# +A Moon Cake that's inscribed with a letter or word. +-------------------------- +Weight: 1 +# +7412# +A Moon Cake that's inscribed with a letter or word. +-------------------------- +Weight: 1 +# +7413# +A Moon Cake that's inscribed with a letter or word. +-------------------------- +Weight: 1 +# +7414# +A Moon Cake that's inscribed with a letter or word. +-------------------------- +Weight: 1 +# +7415# +A mystical stone with magical summoning properties. Used in ancient tribal ceremonies. +-------------------------- +Weight: 1 +# +7416# +A well written letter of recommendation that is recognized by the Assassin Guild. +# +7417# +A written request from the Dandelion Organization, asking you to capture Raiyan Moore, who is suspected of kidnapping children from the Dandelion daycare center. +-------------------------- +Reward: 1 Wrapped Mask +# +7418# +A written request from Mr. R, asking you to protect him and help complete his research, which should help in finding the children missing from Morocc. +-------------------------- +Request Reward: 1 Jewelry Box +# +7419# +A reference for Alchemists in which the Embryo creation formula is written. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7420# +A skull in which someone's name has been carved. +-------------------------- +Weight: 1 +# +7421# +A thin, transparent and shining red key. +-------------------------- +Type: Quest +Weight: 0 +# +7422# +A thin, transparent and shining yellow key. +-------------------------- +Type: Quest +Weight: 0 +# +7423# +A thin, transparent and shining blue key. +-------------------------- +Type: Quest +Weight: 0 +# +7424# +A thin, transparent and shining green key. +-------------------------- +Type: Quest +Weight: 0 +# +7425# +A thin, transparent and shining black key. +-------------------------- +Type: Quest +Weight: 0 +# +7426# +A mysterious red colored charm stone in which fantastic powers are stored. +# +7427# +A mysterious yellow colored charm stone in which fantastic powers are stored. +# +7428# +A mysterious blue colored charm stone in which fantastic powers are stored. +# +7429# +A mysterious green colored charm stone in which fantastic powers are stored. +# +7430# +A mysterious black colored charm stone in which fantastic powers are stored. +# +7431# +A heavy pile of books. +-------------------------- +Type: Quest +Weight: 0 +# +7432# +A sturdy, leather pouch used to contain goods. +# +7433# +A blank scroll on which magic spells can be written. These blanks were developed by the Schweicherbil Magic Academy. +-------------------------- +Weight: 1 +# +7434# +\ +-------------------------- +Author: Pisrik Quve +-------------------------- +Coldproof Potion +3 Hearts of Mermaid +1 Blue Gemstone +-------------------------- +Thunderproof Potion +3 Moth Dust +1 Blue Gemstone +-------------------------- +Earthproof Potion +2 Large Jellopies +1 Yellow Gemstone +-------------------------- +Fireproof Potion +2 Frills +1 Red Gemstone +-------------------------- +Type: Skill necessity +Weight: 1 +# +7435# +A beautiful golden ornament that seems to be created by an otherworldly power. +-------------------------- +Type: Valuable +Weight: 1 +# +7436# +A fragment that is the manifestation of sheer agony. +-------------------------- +Type: Collectible +Weight: 1 +# +7437# +A fragment that is the manifestation of pure misery. +-------------------------- +Type: Collectible +Weight: 1 +# +7438# +A fragment that is the manifestation of intense hatred. +-------------------------- +Type: Collectible +Weight: 1 +# +7439# +A fragment that is the manifestation of unfathomable despair. +-------------------------- +Type: Collectible +Weight: 1 +# +7440# +A large, yet light, white feather that has a red gleam. +-------------------------- +Type: Valuable +Weight: 1 +# +7441# +A large, yet light, white feather that has a blue gleam. +-------------------------- +Type: Valuable +Weight: 1 +# +7442# +A dark heart stamped with a bloody seal. +-------------------------- +Type: Valuable +Weight: 1 +# +7443# +The head from a fearsome three-headed dragon that still looks very threatening. +-------------------------- +Type: Valuable +Weight: 1 +# +7444# +An ancient treasure box filled with old coins, ornaments and jewelry. +-------------------------- +Type: Valuable +Weight: 1 +# +7445# +A beautiful green bijou that is symbolic of the earth. +In the east, people believe that this bijou can help wishes come true. +-------------------------- +Type: Collectible +Weight: 1 +# +7446# +A beautiful blue bijou that is symbolic of the ocean. +In the east, people believe that this bijou can help wishes come true. +-------------------------- +Type: Collectible +Weight: 1 +# +7447# +A beautiful red bijou that is symbolic of firey blaze. +In the east, people believe that this bijou can help wishes come true. +-------------------------- +Type: Collectible +Weight: 1 +# +7448# +A beautiful golden bijou that totally captivates the eye and mind. +People in the east believe that this bijou can help dreams become true. +-------------------------- +Type: Collectible +Weight: 1 +# +7449# +Its surface is marked with old, dried blood stains... +-------------------------- +Type: Collectible +Weight: 1 +# +7450# +A broken piece of armor that was worn by a ghostly Swordman. +-------------------------- +Type: Collectible +Weight: 1 +# +7451# +A red dragon's scale that seems to possess some kind of magical power. +-------------------------- +Type: Collectible +Weight: 1 +# +7452# +A yellow spice that adds a unique scent and flavor to almost any food. +-------------------------- +Type: Cooking ingredient +Weight: 1 +# +7453# +A very sweet sauce that accentuates the flavor of foods, but is quite disgusting when drunk by itself. +-------------------------- +Type: Cooking ingredient +Weight: 1 +# +7454# +A speical sauce that enhances the savory quality of most foods. +-------------------------- +Type: Cooking ingredient +Weight: 1 +# +7455# +An extremely spicy hot sauce that can make people cry just by smelling it. +-------------------------- +Type: Cooking ingredient +Weight: 1 +# +7456# +A spicy flavoring that complements few foods, but is a necessary ingredient for some dishes. +-------------------------- +Type: Cooking ingredient +Weight: 1 +# +7457# +Healthy cooking oil that is used for stir frying or deep frying. +-------------------------- +Type: Cooking ingredient +Weight: 1 +# +7458# +The most precious treasure of Baphomet which is said to bring great luck to the holder. +-------------------------- +Weight: 1 +# +7459# +An unique card which is usually used to give Felicitation at idul fitri feast day of Ramadan. +-------------------------- +Weight: 1 +# +7460# +An express ticket to Niflheim, the realm of the dead that is forbidden to the living. +-------------------------- +Weight: 1 +# +7461# +A card marked with the letter \ + which is used for special events. +-------------------------- +Weight: 1 +# +7462# +A card marked with the letter \ + which is used for special events. +-------------------------- +Weight: 1 +# +7463# +A card marked with the letter \ + which is used for special events. +-------------------------- +Weight: 1 +# +7464# +A card marked with the letter \ + which is used for special events. +-------------------------- +Weight: 1 +# +7465# +A card marked with the letter \ + which is used for special events. +-------------------------- +Weight: 1 +# +7466# +A card marked with the letter \ + which is used for special events. +-------------------------- +Weight: 1 +# +7467# +A card marked with the letter \ + which is used for special events. +-------------------------- +Weight: 1 +# +7468# +A card marked with the letter \ + which is used for special events. +-------------------------- +Weight: 1 +# +7469# +A card marked with the letter \ + which is used for special events. +-------------------------- +Weight: 1 +# +7470# +A card marked with the letter \ + which is used for special events. +-------------------------- +Weight: 1 +# +7471# +A card marked with the letter \ + which is used for special events. +-------------------------- +Weight: 1 +# +7472# +Level 1 Recipes +\ + +-------------------------- +Fried Grasshopper Legs +5 Grasshopper Legs +1 Old Frying Pan +1 Cooking Oil +-------------------------- +Grape Juice Herb Tea +3 Grapes +2 Red Potions +-------------------------- +Honey Grape Juice +1 Honey +2 Grapes +1 Red Potion +-------------------------- +Frog Eggs and Squid Ink Soup +1 Bag of Grain +10 Spawns +1 Squid Ink +-------------------------- +Steamed Crab Nippers +10 Nippers +10 Green Herbs +1 Yellow Potion +-------------------------- +Fried Monkey Tails +5 Yoyo Tails +1 Old Frying Pan +1 Cooking Oil +-------------------------- +Weight: 1 +# +7473# +Level 2 Recipes +\ + +-------------------------- +Seasoned Sticky Webfoot +20 Sticky Webfoots +10 Green Herbs +10 Yellow Herbs +1 Savory Sauce +-------------------------- +Autumn Red Tea +5 Blue Herbs +10 Red Herbs +10 Yellow Herbs +-------------------------- +Chocolate Mousse Cake +10 Cacao +1 Piece of Cake +1 Milk +1 China +-------------------------- +Smooth Noodles +1 Bag of Grain +1 Savory Sauce +5 Jack o' Pumpkins +3 Carrots +-------------------------- +Assorted Seafood +10 Clam Fleshes +5 Gills +5 Fins +1 Fresh Fish +-------------------------- +Mixed Juice +3 Apple Juices +2 Carrot Juices +1 Grape Juice +2 Orange Juices +-------------------------- +Weight: 1 +# +7474# +Level 3 Recipes +\ + +-------------------------- +Bomber Steak +4 Meats +1 Old Frying Pan +10 Green Herbs +5 Red Chiles +1 Spicy Sauce +-------------------------- +Honey Herbal Tea +2 Honey +10 White Herb +1 Yellow Spice +-------------------------- +Fruit Mix +5 Apples +5 Bananas +5 Oranges +5 Strawberries +1 Yellow Spice +-------------------------- +Tentacle Cheese Gratin +10 Tentacles +10 Cheeses +5 Yams +1 Sweet Sauce +-------------------------- +Clam Soup +20 Clam Fleshes +10 Conches +1 Honey +1 Sweet Sauce +-------------------------- +Fried Sweet Potato +10 Potatos +10 Yams +1 Sweet Potato +1 Sweet Sauce +-------------------------- +Weight: 1 +# +7475# +Level 4 Recipes +\ + +-------------------------- +Herb Marinade Beef +5 Meats +3 Red Herbs +2 Yellow Herbs +3 Green Herbs +1 Sweet Sauce +1 Lemon +-------------------------- +Morocc Fruit Wine +10 Strawberries +4 Lemons +10 Oranges +2 Alcohols +5 Grapes +-------------------------- +Cream Sandwich +5 Breads +15 Milks +10 Cheeses +10 Yellow Herbs +1 Meat +1 Sweet Sauce +-------------------------- +Lutie Cold Noodle +3 Bags of Grain +1 Spicy Sauce +10 Ice Cubics +10 Carrots +10 Jack o' Pumpkins +-------------------------- +Seasoned Jellyfish +30 Tentacles +10 White Herbs +10 Soft Leaves +1 Old Frying Pan +20 Squid Inks +-------------------------- +Steamed Ancient Lips +10 Ancient Lips +10 Raccoon Leaves +10 White Herbs +5 Fresh Fishes +2 Sweet Sauces +-------------------------- +Weight: 1 +# +7476# +Level 5 Recipes +\ + +-------------------------- +Lutie Lady's Pancake +10 Potatos +2 Honeys +1 Cooking Oil +3 Carrots +1 Bag of Grain +-------------------------- +Mastela Fruit Wine +4 Mastela Fruits +1 Blue Potion +2 Alcohols +2 Lemons +1 Yellow Spice +-------------------------- +Green Salad +2 Hinale Leaflets +3 Aloe Leaflets +10 Sharp Leaves +6 Huge Leaves +1 Sweet Sauce +1 Yellow Spice +-------------------------- +Steamed Bat Wing in Pumpkin +20 Red Bat Wings +20 Pumkin Heads +1 Pot +10 Hinale Leaflets +10 Red Herbs +-------------------------- +Spicy Fried Bao +20 Baos +10 Yellow Herbs +1 Spicy Sauce +1 Red Spice +20 Green Herbs +-------------------------- +Fried Scorpion Tails +20 Scorpion Tails +10 Bug Leg +10 Huge Leaf +2 Old Frying Pan +1 Cooking Oil +-------------------------- +Weight: 1 +# +7477# +Level 6 Recipes +\ + +-------------------------- +Shiny Marinade Beef +10 Meats +2 Honeys +1 Yellow Herb +1 Mastela Fruit +20 Shining Scales +-------------------------- +Red Mushroom Wine +3 Edible Mushrooms +3 Grape Juices +20 Mushroom Spores +1 Alcohol +1 Red Spice +-------------------------- +Peach Cake +20 Solid Peaches +10 Pieces of Cake +10 Cheeses +10 Milks +5 Orange Juices +1 Sweet Sauce +-------------------------- +Chile Shrimp Gratin +20 Red Chiles +20 Shrimps +1 Sweet Sauce +20 Lemons +-------------------------- +Awfully Bitter Bracer +20 Brown Roots +10 Maneater Roots +20 Mushroom Spores +1 Cooking Oil +2 Honeys +-------------------------- +Lucky Soup +5 Reptile Tongues +5 Tongues +10 Clovers +10 Witch Starsands +1 Aloe +-------------------------- +Weight: 1 +# +7478# +Level 7 Recipes +\ + +-------------------------- +Whole Roast +10 Meats +1 Live Coal +2 Coals +1 Spicy Sauce +15 Trunks +10 White Herbs +-------------------------- +Special Royal Jelly Herbal Tea +4 Royal Jellys +2 Honeys +5 White Herbs +10 Hinale Leaflets +1 Yellow Spice +-------------------------- +Soul Haunted Bread +10 Breads +5 Mastela Fruits +1 Sweet Sauce +5 Ments +5 Amulets +2 Unripe Apples +-------------------------- +Steamed Alligator with Vegetable +10 Anolian Skins +10 Jack o' Pumpkins +10 Carrots +10 Aloe Leaflets +10 Yellow Herbs +1 Yellow Spice +-------------------------- +Sumptuous Feast +10 Fish Tails +5 Aloe Leaflets +10 Manes +2 Fresh Fishes +10 Pet Foods +1 Sweet Sauce +-------------------------- +Assorted Shish Kebob +10 Scale Skins +5 Gills +10 Soft Leaves +5 Meats +10 Edible Mushrooms +10 Clam Fleshes +-------------------------- +Weight: 1 +# +7479# +Level 8 Recipes +\ + +-------------------------- +Bearfoot Special +20 Bear's Footskins +10 Carrots +10 Jack o' Pumpkins +2 Aloe Leaflets +1 Hinale Leaflet +1 Savory Sauce +-------------------------- +Royal Family Tea +4 Prickly Fruits +10 Hinale Leaflets +3 Yggdrasil Leaves +10 Aloe Leaflets +6 Royal Jellys +1 Yellow Spice +-------------------------- +Special Toast +10 Breads +2 Royal Jellys +5 Meats +10 Strawberries +1 Spicy Sauce +10 Cheeses +1 Sweet Sauce +-------------------------- +Incredibly Spicy Curry +1 Aloe Vera +1 Spicy Sauce +10 Meats +10 Hinale Leaflets +10 Jack o' Pumpkins +10 Carrots +-------------------------- +Giant Burito +20 Fig Leaves +20 Meats +5 Rainbow Carrots +10 Jack o' Pumpkins +1 Savory Sauce +2 Bags of Grain +-------------------------- +Strawberry Rice Ball +10 Strawberries +5 Bags of Grain +10 Fig Leaves +1 Yellow Spice +2 Red Spice +1 Savory Sauce +-------------------------- +Weight: 1 +# +7480# +Level 9 Recipes +\ + +-------------------------- +Tendon Satay +40 Tendons +1 Pot +10 Cheeses +1 Spicy Sauce +2 Coals +30 Green Herbs +10 Squid Inks +-------------------------- +Tristram 12 +10 Yggdrasil Leaves +10 Oranges +5 Alcohols +4 Royal Jellys +2 Blue Potions +1 Yellow Spice +10 Aloe Leaflets +-------------------------- +Heavenly Fruit Juice +5 Unripe Apples +10 Oranges +10 Strawberries +1 Red Spice +1 Tropical Banana +5 Grape Juices +2 Alcohols +-------------------------- +Special Meat Stew +10 Meats +5 Royal Jellys +20 Shoots +4 Savory Sauces +5 Yellow Herbs +10 White Herbs +5 Red Herbs +-------------------------- +Ascending Dragon Soup +10 Dragon Skins +20 Dragon Tails +3 Yggdrasil Leaves +6 Royal Jellys +1 Spicy Sauce +1 Red Spice +1 Fatty Chubby Earthworm +-------------------------- +Blood Flavored Soda +1 Animal Gore +2 Anodynes +2 Aloe Veras +2 Alcohols +6 Royal Jellys +1 Red Spice +10 Apple Juices +-------------------------- +Weight: 1 +# +7481# +Level 10 Recipes +\ + +-------------------------- +Steamed Tongue +20 Tongues +1 Pot +1 Alcohol +2 Aloe Vera +1 Spicy Sauce +5 Royal Jellys +10 Yggdrasil Leaves +2 Blue Potions +-------------------------- +Dragon Breath Cocktail +10 Maneater Roots +1 Singing Plant +5 Aloe Leaflets +5 Royal Jellys +5 Lemons +5 Prickly Fruits +1 Yggdrasilberry +10 Blue Herb +-------------------------- +Hwergelmir's Tonic +1 Yggdrasilberries +10 Ice Cubics +10 Bacilluses +4 Royal Jellys +3 Concentration Potions +5 Alcohols +2 Prickly Fruits +1 Illusion Flower +-------------------------- +Steamed Desert Scorpions +20 Scorpion Tails +20 Scorpion Claws +2 Aloe Veras +3 Yggdrasil Leaves +3 Bitter Herbs +10 Royal Jellys +1 Spicy Sauce +1 Pot +-------------------------- +Stew of Immortality +20 Immortal Hearts +10 Mementos +1 Yggdrasil Seed +2 Anodynes +10 Hearts of Mermaid +2 Spicy Sauces +10 Amulets +2 Bitter Herbs +-------------------------- +Cooked Nine Tail's Tails +10 Nine Tails +2 Four Leaf Cloves +10 Maneater Roots +10 Sharp Leaves +4 Yggdrasil Leaves +1 Savory Sauce +1 Yellow Spice +2 Izidors +-------------------------- +Weight: 1 +# +7482# +A round, fairly deep cooking vessel covered by a lid with a handle. +-------------------------- +Type: Cooking ingredient +Weight: 1 +# +7483# +The key that can be used to release the 9th Geffenia Seal. +-------------------------- +Weight: 1 +# +7484# +용사를 상징하는 구슬. 번쩍번쩍하는 황금빛이 눈부시다. +-------------------------- +Weight: 1 +# +7485# +Pass to the 2nd floor. +-------------------------- +Weight: 1 +# +7486# +Pass to the 3rd floor. +-------------------------- +Weight: 1 +# +7487# +A bottle of fine, sweet scented culinary wine obtained from the Juno Pub. +# +7488# +A delivery package containing a bag of flour and eggs that must be handled very carefully. +# +7489# +An extra key for Kyel Hyre's Cottage that will let you enter through the back door, allowing you to avoid the cottage keeper. +# +7490# +A letter that is labeled, \ + and closed with a distinctive red seal. +# +7491# +A steel box with a tiny keyhole on its lid. Its contents must be what Kyel Hyre wanted to give to Elly. +# +7492# +A flat, translucent yellow keycard that enables access to the secret path near the dormitory on the Kyel Hyre Academy campus. +# +7493# +Elly's golden key which can be used to open a special box. +# +7494# +A shiny and elegant gold button engraved with a beautiful rose. +# +7495# +A flat, translucent blue keycard that enables access to Allysia's hideout in Kyel Hyre's factory. +# +7496# +A flat, translucent red keycard that enables access to a specific restricted area. +# +7497# +A peculiar looking metallic fragment. +# +7498# +A keyring that has many of the keys used for the Rosimier Mansion. +# +7499# +A portrait of an elite, high class family with 4 members. +# +7500# +A portrait of beautiful woman named Allysia. +Her warm, welcoming smile can be felt in the depths of your heart. +# +7501# +A letter written by a man with the initials, K.H., for a woman named Allysia. +_ +\ +, + +, + +, + +, + +, + + +# +7502# +A letter addressed to Allysia and written by a man named James. + +\ +, + +, + +, + +. +# +7503# +A portrait of a young man that looks fairly depressed. +# +7504# +A complex mechanical device that can disrupt the energy in a robot. +# +7505# +An elaborate toy key made of plastic. +# +7506# +A flat and transparent black key which enables access to a front door. +# +7507# +A square piece of rusty iron. +-------------------------- +Type: Collectible +Weight: 1 +# +7508# +The engagement ring that belonged to Allysia. +# +7509# +A fancy, rainbow colored key that enables access to Kyel Hyre's Factory and Laboratory. +# +7510# +An enigmantic flower that can only be seen within Valhalla, the sacred battlegrounds of the ancient gods. +-------------------------- +Weight: 1 +# +7511# +A dark rune with ancient writing engraved inside it. +-------------------------- +Weight: 1 +# +7512# +A burnt part of some device. +-------------------------- +Weight: 1 +# +7513# +An old silver pocket watch. +-------------------------- +Weight: 1 +# +7514# +A certificate given to Monster Race bettors that enable them to check the monster on which they wagered. +This can only be used in Hugel's Monster Race Arena. +# +7515# +A medal crafted from a rare and mysterious metal that can only be found in Hugel. +# +7516# +A flat, translucent green keycard that enables access to a secret safe. +# +7517# +A gold coin forged by the leprechauns. +Leprechauns value gold over any other metal in the world. +-------------------------- +Weight: 10 +# +7518# +Women's Medal. +-------------------------- +Weight: 1 +# +7519# +An empty lottery envelope. Maybe you can get money when you hover your hand inside. +-------------------------- +Weight: 1 +# +7520# +The words in the scrolls \ +. Will be rewarded Hover those in need. +-------------------------- +Weight: 1 +# +7521# +A bead, imbued with the Fire element, that is used as a catalyst by Ninjas when performing some of their skills. +-------------------------- +Weight: 1 +# +7522# +A bead, imbued with the Water element, that is used as a catalyst by Ninjas when performing some of their skills. +-------------------------- +Weight: 1 +# +7523# +A bead, imbued with the Wind element, that is used as a catalyst by Ninjas when performing some of their skills. +-------------------------- +Weight: 1 +# +7524# +An orb that is used as a catalyst to enable a Ninja to realize his latent abilities and skills. +-------------------------- +Weight: 2 +# +7525# +A ticket that lets you participate in The Summer Festival. +-------------------------- +Weight: 1 +# +7526# +A part of Joshua's missing manuscript. +It's full of meaningful content that really touches the soul. +# +7527# +A book written by a novel writer called Ayala about how humans can have better lives if they live as a shared entity. +-------------------------- +Weight: 10 +# +7528# +Indonesian lottery ticket. +# +7529# +A stolen sandal. +# +7530# +[Amatsu the Land of Destiny] +The people of Amatsu carry themselves with honor and tranquility. +During your visit you should see the Beautiful Water Shrine. The Lord of Amatsu is much more open +than rulers in other lands, they will talk to visitors and citizens alike. +The Legendary Tree in Amatsu has many legends about it, such as the Legend that when you propose under +its branches your marriage will be blessed. +While in Amatsu you should see the Coy Pond, nobility of Amatsu keep wonderful gardens or plants, sand and rocks. +Their careful balance and flow reflect the keeper's state of mind. +Part of garden is a Coy Pond, these frolicsome fish are a delight to all. +[Don't forget to take photos of all these things and show them to your Tour Guide.] +# +7531# +[Kunlun The Hermit Land] +Kunlun is a land in the clouds. +Being so high in the air affords an unprecedented view of the world, it also gives +a different mindset to those whom allow themselves to think freely. +The Statue of Kunlun's Greatest Philosopher, stands proudly in the middle of town, ready to +inspire great thoughts from all those that gaze upon him. All around Kunlun are spectacular Overlooks of the World. +But there are particular spots that are exceptionally breathtaking, please watch your step. +There is a small hill in Kunlun that is said to of been the Great Philosophers favorite meditation spot, +you should visit there and see if any grand thoughts take you. +No matter how great a culture is, there will always be a few among its citizenry that just don't 'get it'. +Those in Kunlun's history that always thought small eventually truly shrank and eventually disappeared. +But before that time they had a Mini-town that they lived in on ground beneath Kunlun. +That place is an object lesson against stagnant thinking. +[Don't forget to take photos of all these things and show them to your Tour Guide.] +# +7532# +[Louyang] +Louyang is a spiritual country, where the warrior spirit and clear thinking are highly prized. +Such wondrous sites such as the Statue of the Man and the Tiger may inspire you to do your best. +Louyang has a different perspective on healing the mind and the body. While Rune-Midgard relies on the science of potions, +and Faith for healing, the Louyang healers practice their art at a \ +. +At a Hospital, your body will be cured by a system of body manipulations and diet. +The beautiful Palace that is protected by the Great Wall of Louyang is truly a sight to behold for every visitor. +To go along with their proud heritage of Martial Arts and spirit training, they often practice making their bodies +more robust through exercise. Some of these exercises target the legs others the Lungs. +Outside Louyang some practice their Shouting on the Tower. If you have seen all these sites in Louyang, +you will have quite a few good memories to take home. +[Don't forget to take photos of all these things and show them to your Tour Guide.] +# +7533# +[Ayothaya] +Thoughts of transcending your limitations and finding Life's perfect philosophy is Ayothaya's Heritage. +In Ayothaya's history is great Philosopher that all Ayothayans seek to emulate. +There are numerous statues representing this Philosopher exist in and around Ayothaya. +You should visit them to see what differences and significance these Reclining Philosopher Statues mean to you. +Part of the Philosophy involves many hours of meditation a day to keep balance in your mind and body. +You should visit the Shrine in Ayothaya and meditate upon your life's journey. +And when you complete your regimen of Exercise and Introspection you can refuel your body by visiting +the Tom Yum Goong restaurant. The famous soup made here is truly delicious. +Don't leave Ayothaya without sampling the dishes there. +[Don't forget to take photos of all these things and show them to your Tour Guide.] +# +7534# +Upon seeing all the sites and sights in Amatsu the Rune Midgard Tour Agency has stamped this photo album with their official seal. +# +7535# +Upon seeing all the sites and sights in Kunlun the Rune Midgard Tour Agency has stamped this photo album with their official seal. +# +7536# +Upon seeing all the sites and sights in Louyang the Rune Midgard Tour Agency has stamped this photo album with their official seal. +# +7537# +Upon seeing all the sites and sights in Ayothaya the Rune Midgard Tour Agency has stamped this photo album with their official seal. +# +7538# +Fine sand of higher Level of process which is filtered from the normal sand. It is used for the patching up of buildings. +-------------------------- +Weight: 0 +# +7539# +A small coin with a monster Poring engraved in it. +# +7540# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7541# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7542# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7543# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7544# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7545# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7546# +The number \ + is written on this Lotto Ball. +-------------------------- +Weight: 1 +# +7547# +Something you should kick and place in something called 'net'. +Only a few people are allowed to touch it during the game. +-------------------------- +Weight: 1 +# +7548# +The spiky things on the bottom are there to give more traction while running. +-------------------------- +Weight: 1 +# +7549# +The flag of a western nation, famous for their long parties. +It consists of a green background, a yellow center and a simple blue design. +-------------------------- +Weight: 1 +# +7550# +1st Brazilian Cup Ticket. Location: Brazil Olympic Stadium. Date: 13 June 4 P.M. +-------------------------- +Weight: 1 +# +7551# +1st Brazilian Cup Ticket. Location: Brazil Olympic Stadium. Date: 18 June 1 P.M. +-------------------------- +Weight: 1 +# +7552# +1st Brazilian Cup Ticket. Location: Brazil Olympic Stadium. Date: 22 June 4 P.M. +-------------------------- +Weight: 1 +# +7553# +A delicate flower found in the depths of Brasilis. +-------------------------- +Weight: 0 +# +7554# +A red and white striped candle. +# +7555# +It will swell up it attaches and the smell me the green stick. +# +7556# +A mind longing for a friend. +# +7557# +2006/07/19 +Secret Garden. +# +7558# +2006/07/19 +You are invited to the Secret Garden. +# +7559# +The flower garden member whole aspect key of the secret where the yellow gold color pattern is beautiful. +# +7560# +A mind longing for a friend. +# +7561# +A frozen heart that will give you chills if you touch it. +-------------------------- +Type: Collectible +Weight: 1 +# +7562# +A scale made of thin ice that won't melt for some reason. +-------------------------- +Type: Collectible +Weight: 1 +# +7563# +A glowing, blood red rune that has a symbol engraved on it. +-------------------------- +Type: Collectible +Weight: 1 +# +7564# +A rotting piece of meat that is definitely unsafe for you to eat. +-------------------------- +Type: Pet Food +Pet: Roween +Weight: 1 +# +7565# +Sticky, poisonous fluid from plants that can be used in many different ways. +-------------------------- +Type: Collectible +Weight: 1 +# +7566# +A stone embedded with seven bright red eyes. +Looking at it makes you feel uneasy. +-------------------------- +Type: Collectible +Weight: 1 +# +7567# +A hat that covers the entire face, but it has two holes that you can see through. +-------------------------- +Type: Collectible +Weight: 1 +# +7568# +A spooky mask tha effectively conceals the wearer's identity. +-------------------------- +Type: Collectible +Weight: 1 +# +7569# +A strong, sturdy hammer imbued with the power of wind. +# +7570# +A lottery ticket that is given to those that make donations to the temple in Rachel, Cheshrumnir. +-------------------------- +Weight: 1 +# +7571# +An effeminate diary with the word, \ + written on the cover. +Perhaps that is the name of its owner? +# +7572# +A necklace that was supposedly crafted by skilled Dwarves. +# +7573# +A glowing necklace enchanted with an ancient magic. +# +7574# +A very cold powder enchanted with very powerful ice magic. +You risk freezing youself if you touch it. +# +7575# +A shiny red jewel. +-------------------------- +Weight: 5 +# +7576# +A shiny blue jewel. +-------------------------- +Weight: 5 +# +7577# +A shiny yellow jewel. +-------------------------- +Weight: 5 +# +7578# +A mythical crystal that is said to dispel any kind of forbidden magic. Only Cloud Hermits have it. +-------------------------- +Weight: 1 +# +7579# +A silk handkerchief made by Zhi Nu (also known as Vega). You can feel the love of Zhi Nu toward Niu Lang (also known as Altair) when holding it. +-------------------------- +Weight: 1 +# +7580# +Black colored bead. +-------------------------- +Weight: 1 +# +7581# +A document made to celebrate the 3rd anniversary of Ragnarok Online, which can be traded in for prizes. +-------------------------- +Weight: 1 +# +7582# +A jewel rumored to make the one who bears it evil. You feel a powerful force of darkness. +-------------------------- +Weight: 1 +# +7583# +An evil aura emits from the object. You might be corrupted by the aura too if you stare at it for too long. +-------------------------- +Weight: 1 +# +7584# +The first document awarded to those who defeats an evil foe. +-------------------------- +Weight: 1 +# +7585# +The second document awarded to those who defeats an evil foe. +-------------------------- +Weight: 1 +# +7586# +The third document awarded to those who defeats an evil foe. +-------------------------- +Weight: 1 +# +7587# +The fourth document awarded to those who defeats an evil foe. +-------------------------- +Weight: 1 +# +7588# +Spend a cool summer with an IPOD. +-------------------------- +Weight: 1 +# +7589# +A Moon Snack which has 'We' written in the center in Chinese. +-------------------------- +Weight: 1 +# +7590# +A Moon Snack which has 'Enjoy' written in the center in Chinese. +-------------------------- +Weight: 1 +# +7591# +A Moon Snack which has 'Moon' written in the center in Chinese. +-------------------------- +Weight: 1 +# +7592# +A Moon Snack which has 'Festival' written in the center in Chinese. +-------------------------- +Weight: 1 +# +7593# +A Moon Snack which has 'Together' written in the center in Chinese. +-------------------------- +Weight: 1 +# +7594# +Sonia's letter for Grandma Emma. +-------------------------- +Weight: 1 +# +7595# +A sword that was produced by Giancarlo that radiates something unique. +-------------------------- +Weight: 1 +# +7596# +Solid-looking shield, that radiates something unique. +-------------------------- +Weight: 1 +# +7597# +A stone with a very special aura. +-------------------------- +Weight: 1 +# +7598# +A card with the letter I printed on it. +-------------------------- +Weight: 1 +# +7599# +A card with the letter D printed on it. +-------------------------- +Weight: 1 +# +7600# +A card with the letter K printed on it. +-------------------------- +Weight: 1 +# +7601# +A card with the letter S printed on it. +-------------------------- +Weight: 1 +# +7602# +A card with the letter R printed on it. +-------------------------- +Weight: 1 +# +7603# +Invitations Ragnarok party. +-------------------------- +Weight: 1 +# +7604# +A bag of finely +milled and ground +wheat flour that can +be used in a variety +of different foods. +-------------------------- +Weight: 1 +# +7605# +An egg that was +laid by a chicken, +and is very tasty +and nutritious after +it's been cooked. +-------------------------- +Weight: 1 +# +7606# +This Token of the Ox is a symbol of the vigor and power of the Year of the Ox. +-------------------------- +Weight: 1 +# +7607# +The supply and demand of the dreaded Maryong, both eyes are full of revenge and anger, and it seems that they are emitting sparks even now. +-------------------------- +Weight: 1 +# +7608# +A ticket proving membership in the \ +. This ticket allows you to enjoy various premium services in Ragnarok. +-------------------------- +Weight: 1 +# +7609# +Halloween Jack's true essense, a form of glowing mind and soul that can only be described as \ +-------------------------- +Halloween Jack wants it back desperately. +-------------------------- +Weight: 1 +# +7610# +The ticket it could be exchanged with the high-class food. +-------------------------- +Weight: 1 +# +7611# +Looks as a fox. +-------------------------- +Weight: 10 +# +7612# +The Fox Queen's Heart. You have to keep it very carefully. +-------------------------- +Weight: 10 +# +7613# +A still warm and small lump of rice dough. +-------------------------- +Weight: 1 +# +7614# +A roll of special wrapping paper. +-------------------------- +Weight: 1 +# +7615# +Monster in a sealed card. Feel the power of the monster which sealed. +-------------------------- +Weight: 1 +# +7616# +Monster in a sealed card. +-------------------------- +Weight: 1 +# +7617# +Monster in a sealed card. +-------------------------- +Weight: 1 +# +7618# +A Crystal monster which is searched for by collectors. +-------------------------- +Weight: 10 +# +7619# +A concentrated Elunium, buried deep underground. +is used as a material to create stronger armor. +It is used in refinement system to increase the success rate of refinement armor. +-------------------------- +Weight: 1 +# +7620# +A dense Oridecon, buried deep underground. +is used as a material to create stronger weapon. +It is used in refinement system to increase the success rate of refinement armor. +-------------------------- +Weight: 1 +# +7621# +A certificate imbued with the power of the invulnerable Siegfried which allows its bearer to overcome death. +-------------------------- +Type: Supportive +Effect: Revives KO'ed character +Weight: 1 +# +7622# +Transform your hairstyle by utilizing the services of the Stylist System and revamp your look. +-------------------------- +Weight: 0 +# +7623# +New name for new adventure! A ticket for Name Change Service. +-------------------------- +Weight: 0 +# +7625# +Can be exchanged with special reward. Get more to get better reward. +-------------------------- +Weight: 0 +# +7626# +A soft red gum. Can be exchanged with something. +-------------------------- +Weight: 1 +# +7627# +A key that can open Earth box. +-------------------------- +Weight: 0 +# +7628# +A key that can open Earth box. +-------------------------- +Weight: 0 +# +7629# +A gift box that adored by women. +-------------------------- +Weight: 0 +# +7630# +A broom full of aloe fragrance. +-------------------------- +Weight: 0 +# +7631# +Residue of garbage that smell very bad. +-------------------------- +Weight: 0 +# +7632# +You can't believe your eyes but this report card actually has an F- grade on it. +-------------------------- +Weight: 0 +# +7633# +A report card with straight A's on it. +-------------------------- +Weight: 0 +# +7634# +A rose given to your Father. +-------------------------- +Weight: 0 +# +7635# +A small item that wishes for good luck. +-------------------------- +Weight: 0 +# +7636# +A bottle that holds magical power of monster 'Shining Plant'. +-------------------------- +Weight: 0 +# +7637# +2010년 아버지의 날 전용 Gift Box. +-------------------------- +Weight: 1 +# +7638# +Contain first ingredient to create Father's Gift Box. +-------------------------- +Weight: 1 +# +7639# +Contain second ingredient to create Father's Gift Box. +-------------------------- +Weight: 1 +# +7640# +A butterfly-like hairpin. Used for fastening long hair. +-------------------------- +Weight: 1 +# +7641# +A first-aid kit. It also comes with a simple, easy-to-follow manual. +# +7642# +An ancient coin stained with blood. The stain has dried and turned black with the passage of time. +-------------------------- +Weight: 0 +# +7643# +A sheet of old letter crumpled and bloodstained in places. Fortunately you can recognize the writings. +I may have made my masterpiece, not just some doll. When this letter comes to you, all of my work may be complete. I'd like to show my last work, no, my daughter to you. +-------------------------- +Type: Quest +Weight: 1 +# +7644# +A clean and unsealed letter that was never sent. +I've kept talking to a doll because I cannot stand that this will be the last doll I craft when I started to make the millionth doll. Haha, I'm getting silly as I grow old. Do you understand how I feel, my friend? +-------------------------- +Type: Quest +Weight: 0 +# +7646# +The bookmark that is written with the blessing content and decorated by lucky clover. +-------------------------- +Weight: 1 +# +7647# +The coin is made to pray for the luck. +-------------------------- +Weight: 0 +# +7648# +The bookmark that is written with the blessing content and decorated by lucky clover. +-------------------------- +Weight: 1 +# +7649# +The bookmark that is written with the blessing content and decorated by lucky clover. +-------------------------- +Weight: 1 +# +7650# +A secret recipe for refining recorded by a world-class blacksmith. +On Refinement at +13 ~ +14, there is a chance not to fail and destroy equipment. Regardless of the success or failure of refining, this item will disappear after the blessing is used and the amount needed will be increased according to refining. +-------------------------- +Weight: 0 +# +7651# +Egg contains mysterious items. +-------------------------- +Weight: 1 +# +7654# +Universal anti-up operation voucher. +-------------------------- +Weight: 1 +# +7655# +Can be use with RO Consumption Voucher +-------------------------- +Weight: 1 +# +7656# +Can be used to wrap a present. +Weight: 5 +# +7657# +Can be used to wrap a present. +Weight: 5 +# +7659# +A symbol of purity between mother and children. +-------------------------- +Weight: 0 +# +7660# +A symbol of gratitude to mother's lve. +-------------------------- +Weight: 0 +# +7661# +A symbol of mother's love. +-------------------------- +Weight: 0 +# +7662# +A symbol of gratitude to mother's hard work. +-------------------------- +Weight: 0 +# +7663# +Full metal jacket, known as FMJ. Penetration will be maximized to give high damage. +This item is consumed when using 'Mass Spiral' skill. +-------------------------- +Type: Skill necessity +Weight: 0.2 +# +7664# +Landmine that can be used as a projection mine. +This item is consumed when using 'Howling Mine' skill. +-------------------------- +Type: Skill necessity +Weight: 0.3 +# +7665# +Missile for grenade launcher that has the nickname 'Evil Tail'. Trace the target and give damage. +This item is consumed when using 'Dragon Tail' skill. +-------------------------- +Type: Skill necessity +Weight: 10 +# +7666# +An old book which looks like little a kid's text book. +there is a spell that can remove one specific existence. +-------------------------- +Weight: 0 +# +7667# +A little machine. It is still in good condition. +-------------------------- +Weight: 0 +# +7668# +A Clean bandage for wounds. +-------------------------- +Weight: 0 +# +7669# +A rubbing alcohol that cleans wounds. +NOT FOR Consumption. +-------------------------- +Weight: 0 +# +7670# +Very Sour grass that make your face grimace. Chewing this relieves pain. +-------------------------- +Weight: 0 +# +7671# +A box with 187 types of medicine. +-------------------------- +Weight: 0 +# +7672# +A bag provided for emergencies that looks small but has 7 days worth of food inside. +-------------------------- +Weight: 0 +# +7673# +A coin with a porline drawn from Dora Cat Kuromo. +Collecting these coins will allow you to exchange special items from Chromo. +-------------------------- +Weight: 0 +# +7674# +Mysterious liquid with perfect smell. Someone in Hugel who can cook Bretzel will cook something yummy with this. +-------------------------- +Weight: 0 +# +7677# +Dispatch unit supply receipt. +If you take it to the supply section, it will be exchanged for supply materials. +-------------------------- +Weight: 0 +# +7678# +A gem full of moonlight energy. +-------------------------- +Weight: 10 +# +7683# +A coin prepared by Guy Rockstar for Comodo Festa G. +A flame pattern symbolizing a hot soul is engraved on the coin. +It can be used for attractions and various services during the event. +-------------------------- +Weight: 0 +# +7684# +A coin prepared by Natsumi for Comodo Festa G. +Pretty flowers and butterfly patterns are engraved on the coin. +It can be used for attractions and various services during the event. +-------------------------- +Weight: 0 +# +7685# +It is surprisingly delicious. It has an addictive taste. +-------------------------- +Weight: 1 +# +7689# +One-time password (OTP) or special token sent to ID lock users. +-------------------------- +If you show this to the NPC \ +, you will be able to receive special magic. +-------------------------- +Can only be stored. +-------------------------- +Weight: 0 +# +7690# +Coupon to exchange for a special gift +-------------------------- +Weight: 0 +# +7696# +A redemption voucher required to receive the cuppet [Rubylit]. +-------------------------- +You can receive [Rubylit's Egg] by giving it to \ + in Izlude. +-------------------------- +Can only be stored. +-------------------------- +Weight: 0 +# +7698# +A redemption voucher required to receive the cuppet [Sapphilit]. +-------------------------- +You can receive [Sapphilit's Egg] by giving it to \ + in Izlude. +-------------------------- +Can only be stored. +-------------------------- +Weight: 0 +# +7700# +A redemption voucher required to receive the cuppet [Emelit]. +-------------------------- +You can receive [Emelit's Egg] by giving it to \ + in Izlude. +-------------------------- +Can only be stored. +-------------------------- +Weight: 0 +# +7701# +A strong white crystal contain the spirit of dragon. +-------------------------- +Weight: 1 +# +7702# +Special gear which good for repairing damage machine in the tower clock. +-------------------------- +Weight: 1 +# +7703# +Cutting of gear. You earn to make special Gear of this cutting. +-------------------------- +Weight: 1 +# +7704# +A device that can measure the ground's temperature. +However, its readings don't seem very reliable. +-------------------------- +Weight: 0 +# +7705# +A note written by a Geologist. +-------------------------- +1WN +2ES +2EC +-------------------------- +Weight: 0 +# +7706# +Bottled carrot juice that's easy to digest. +-------------------------- +Weight: 4 +# +7707# +Bottled banana juice that's easy to digest. +-------------------------- +Weight: 4 +# +7708# +Bottled apple juice that's easy to digest. +-------------------------- +Weight: 4 +# +7709# +Bottled grape juice that's easy to digest. +-------------------------- +Weight: 4 +# +7710# +An enchanted crystal that is used in conjunction with certain magic spells. Once used, it is powerless and immediately destroyed. +-------------------------- +Weight: 3 +# +7711# +마을이 새로 추가된 것을 기념하기 위한 이??? 티켓. 사막도시 베인스의 디벨로퍼 라는 NPC에게 가져다 주면 좋은 일이 생길 것 같다. +-------------------------- +Weight: 1 +# +7712# +The new Nokia 5500 Sport features a stainless body for enhanced durability with resistance to shock, water and dust elements. Use for Ragna_Nokia Festival. +-------------------------- +Weight: 1 +# +7713# +A card with the letter A printed on it. +-------------------------- +Weight: 1 +# +7714# +A card with the letter R printed on it. +-------------------------- +Weight: 1 +# +7715# +A magic copy of the +recipe for making +Hand-made Chocolate +that can be used at +a Kitchen Counter. +Ingredients: +5 Chocolates +1 Milk +Weight: 0 +# +7716# +A magic copy of the +recipe for making +Chocolate Strawberries +that can be used at +a Kitchen Counter. +Ingredients: +1 White Chocolate +2 Strawberries +1 Chocolate +Weight: 0 +# +7717# +A magic copy of the +recipe for making +Chocolate Tarts that +can be used at a +Kitchen Counter. +Ingredients: +3 Chocolates +1 Flour +3 Milk +1 Egg +Weight: 0 +# +7718# +A fermented and +dried Cacao Bean +that has been shelled +from a raw Cacao. +-------------------------- +Weight: 1 +# +7719# +A card with the letter G printed on it. +-------------------------- +Weight: 1 +# +7720# +A peculiar gold coin that doesn't resemble any currency that you can recognize. Still, impressive bling. +-------------------------- +Weight: 80 +# +7721# +A treasure box that belongs to a would-be pirate J Roger in Comodo. +-------------------------- +Weight: 0 +# +7722# +A loan document that includes the amount lended and the signatures of the loaner and lendee. +-------------------------- +Weight: 0 +# +7723# +A precisely crafted diamond that emits an ominous vibe; it seems that it would be incredibly valuable. +-------------------------- +Weight: 0 +# +7724# +A book that contains forbidden secrets of alchemy and magic that is usually kept safe in Prontera Library. +-------------------------- +Weight: 0 +# +7725# +A strangely shaped emerald that brings an impending sense of great misfortune to whomever holds it. +-------------------------- +Weight: 0 +# +7726# +The perfectly crafted, intricate and official royal seal of the King of the Rune-Midgarts Kingdom. +-------------------------- +Weight: 0 +# +7727# +A ticket from a special doctor in Geffen town with which you can get HP treatment from his assistant at a field and dungeon. +-------------------------- +Weight: 0 +# +7728# +A ticket from a special doctor in Geffen town with which you can get SP treatment from his assistant at a field and dungeon. +-------------------------- +Weight: 0 +# +7729# +It's a symbol of respect and admiration that's given only to those that truly deserve it. +Some say it's a fair imitation of a police officer's badge. +-------------------------- +Weight: 10 +# +7730# +A ticket proving that the bearer has completed a mission. +This certificate is required to begin a new mission. +-------------------------- +Weight: 1 +# +7731# +A ticket proving that the bearer has completed a mission. +This certificate is required to begin a new mission. +-------------------------- +Weight: 1 +# +7732# +A ticket proving that the bearer has completed a mission. +This certificate is required to begin a new mission. +-------------------------- +Weight: 1 +# +7733# +A ticket proving that the bearer has completed a mission. +This certificate is required to begin a new mission. +-------------------------- +Weight: 1 +# +7734# +A ticket proving that the bearer has completed a mission. +This certificate is required to begin a new mission. +-------------------------- +Weight: 1 +# +7735# +A ticket proving that the bearer has completed a mission. +This certificate is required to begin a new mission. +-------------------------- +Weight: 1 +# +7736# +A ticket proving that the bearer has completed a mission. +This certificate is required to begin a new mission. +-------------------------- +Weight: 1 +# +7737# +A ticket proving that the bearer has completed a mission. +This certificate is required to begin a new mission. +-------------------------- +Weight: 1 +# +7738# +A ticket proving that the bearer has completed a mission. +This certificate is required to begin a new mission. +-------------------------- +Weight: 1 +# +7739# +A ticket proving that the bearer has completed a mission. +This certificate is required to begin a new mission. +-------------------------- +Weight: 1 +# +7740# +A ticket proving that the bearer has completed a mission. +This certificate is required to begin a new mission. +-------------------------- +Weight: 1 +# +7741# +A ticket proving that the bearer has completed a mission. +This certificate is required to begin a new mission. +-------------------------- +Weight: 1 +# +7742# +A jar of Kaong harvested from Palm Trees. +-------------------------- +Weight: 1 +# +7743# +A jar of Gulaman made from strawberry flavored gelatin. +-------------------------- +Weight: 1 +# +7744# +A jar of Leche Flan made from creamy eggs and milk. +-------------------------- +Weight: 1 +# +7745# +A jar of Ube made from yummy sweet purple yams. +-------------------------- +Weight: 1 +# +7746# +A jar of Sago made of Tapioca cooked in brown sugar. +-------------------------- +Weight: 1 +# +7747# +A jar of Langka made of sweetened Jackfruit. +-------------------------- +Weight: 1 +# +7748# +A jar of Sweet Beans made of sweetened Kidney beans. +-------------------------- +Weight: 1 +# +7749# +A jar of Sweet bananas made of firm and ripe bananas cooked in sugar syrup. +-------------------------- +Weight: 1 +# +7750# +A jar of Macapuno made from young coconut meat cooked in sugar syrup. +-------------------------- +Weight: 1 +# +7751# +A worn-out white cloth that can be sold to Merchant NPCs. +-------------------------- +Type: Collectible +Weight: 1 +# +7752# +A clattering skull that occasionally breaks out in song that can be sold to Merchant NPCs. +-------------------------- +Type: Collectible +Weight: 1 +# +7753# +A seemingly useless farming tool that can be sold to Merchant NPCs. +-------------------------- +Type: Collectible +Weight: 1 +# +7754# +An antique crown that was once worn by the ruler of an ancient kingdom; it used to sparkle with magnificence. +It can be sold to Merchant NPCs. +-------------------------- +Type: Collectible +Weight: 1 +# +7755# +Much of the writing on this note isn't legible since it's badly damaged. +-------------------------- +Weight: 0 +# +7756# +A book whose contents are locked behind a tight seal. +-------------------------- +Weight: 1 +# +7757# +순수한 미스릴 광석을 정제하여 만든 광석. 미스릴을 사용하면 어떠한 방어구라도 무조건 제련에 성공한다고 한다. +-------------------------- +Weight: 10 +# +7758# +하늘에서 떨어지는 별똥별에서만 얻을 수 있다는 환상의 금속. 이 금속을 사용하면 어떠한 무기라도 무조건 제련에 성공한다고 한다. +-------------------------- +Weight: 10 +# +7759# +좌표와 온도, 비고란으로 나뉘어 작성하게끔 되어있는 지질학자의 제출용 보고서. +# +7760# +Baba Yaga's magic book which tells the reader how to practice the strongest dark arts. +-------------------------- +Weight: 1 +# +7761# +A marvelous bottle that can carry human languages inside. +-------------------------- +Weight: 1 +# +7762# +Baba Yaga always carries this. All of the markings on it have been rubbed off. +-------------------------- +Weight: 1 +# +7763# +It has a sticky liquid that makes you feel bad. It can be used as glue by grinding it. +-------------------------- +Weight: 1 +# +7764# +It's the highest strength adhesive, which can stick anything together. +-------------------------- +Weight: 1 +# +7765# +This is a unique liquid made by Baba Yaga. It makes sure that winter does not come again! +-------------------------- +Weight: 1 +# +7766# +A fresh leaf from the Louyang region. +-------------------------- +Type: Pet Food +Weight: 1 +# +7767# +Cake which looked to be it is really delicious. Food manufactured to feed Green Maiden. +-------------------------- +Weight: 1 +# +7768# +A frozen squid ready for a long-term delivery, it value is cheaper compared to fresh one. +-------------------------- +Weight: 1 +# +7769# +Egg yolk. A cooking ingredients. Can be use to make dumpling. +-------------------------- +Weight: 1 +# +7770# +Steamed glutinous rice that is used to make dumplings. +-------------------------- +Weight: 1 +# +7771# +Aquatic botany. The leaf is used to wrap the dumpling. +-------------------------- +Weight: 1 +# +7772# +Strings that is use to tie the dumpling. +-------------------------- +Weight: 1 +# +7773# +A badge indicating that the wearer is currently participated in the war. It was taken off from a failure of the battle. +# +7774# +Written with big letters as 'You win 'Green Maiden Egg'!! Please come and get it now! +-------------------------- +Weight: 1 +# +7775# +Written with big letters as 'You win 'Spring Rabbit Egg'!! Please come and get it now! +-------------------------- +Weight: 1 +# +7776# +A Gym Pass that can be given to a special NPC to learn a skill that will increase your Maximum Weight Capacity by 200 For each skill Level. +This special skill can only be learned up to Level 10. +Find Ripped Cabuspayon,173,141,0,100,0,0 in Payon. +-------------------------- +Weight: 1 +# +7777# +금으로 세공된 조각으로 장식된 아름다운 Box. 열면 A chance to 희귀한 아이템을 얻을 수 있다고 하나, 단단히 잠겨 있다. +-------------------------- +Weight: 1 +# +7778# +은으로 세공된 조각으로 장식된 아름다운 Box. 열면 A chance to 희귀한 아이템을 얻을 수 있다고 하나, 단단히 잠겨 있다. +-------------------------- +Weight: 1 +# +7779# +A Golden key to open the box. +-------------------------- +Weight: 1 +# +7780# +A Silver key to open the box. +-------------------------- +Weight: 1 +# +7781# +The box which two hearts are coming to carve in the surface. +It is sinking with the latent heat iron which is strange is two holes. +To inside there probably is a what kind of thing, there is not a possibility of knowing. +-------------------------- +Weight: 1 +# +7782# +The Episode 13.1 Poporing Key allows early access to the Episode 13.1 content, on Valkyrie, to the character holding it. +The Episode 13.1 Poporing Key will disappear on 7/07/09 during maintenance; +at that time, the Episode 13.1 content will be fully available to everyone on Valkyrie. +-------------------------- +This item can be put in storage. +-------------------------- +Weight: 1 +# +7783# +The 13.2 Poring Key allows early access to the 13.2 content, on Valkyrie, to the character holding it. +The 13.2 Poring Key will disappear on 012/22/08 during maintenance; +at that time, the 13.2 content will be fully available to everyone on Valkyrie. +-------------------------- +This item can be put in storage. +-------------------------- +Weight: 1 +# +7784# +The coupon where the person who conveys the sorry be mind is coming to be put in full. +-------------------------- +Weight: 1 +# +7785# +The coupon where the person who conveys the sorry be mind is coming to be put in full. +-------------------------- +Weight: 1 +# +7786# +The coupon where the person who conveys the sorry be mind is coming to be put in full. +-------------------------- +Weight: 1 +# +7787# +The coupon where the person who conveys the sorry be mind is coming to be put in full. +-------------------------- +Weight: 1 +# +7788# +The coupon where the person who conveys the sorry be mind is coming to be put in full. +-------------------------- +Weight: 1 +# +7789# +The coupon where the person who conveys the sorry be mind is coming to be put in full. +-------------------------- +Weight: 1 +# +7790# +The coupon where the person who conveys the sorry be mind is coming to be put in full. +-------------------------- +Weight: 1 +# +7791# +The coupon where the person who conveys the sorry be mind is coming to be put in full. +-------------------------- +Weight: 1 +# +7792# +A perennial grass that called Old Testament. +-------------------------- +Weight: 1 +# +7793# +Magic apple shines gold. +-------------------------- +Weight: 0 +# +7794# +The Oliver Hilpert novel that received the Youngest Literary Award of Honor. +-------------------------- +Weight: 0 +# +7795# +Mammi's photo album that contained various pictures of Mammi, who used to be the envoy of Public Relations in Morocc. +On the cover, it says, Love and a true heart message from Angel Mammi, just for you! +-------------------------- +Weight: 1 +# +7796# +Oliver Hilpert's autograph is on this note. +You can recognize his poor handwriting. +-------------------------- +Weight: 1 +# +7797# +Ancient Weapon - unknown motive. +Seclusion - the letter from a lady disciple. +Stepmother - karma from a previous life? +-------------------------- +Weight: 1 +# +7798# +A dark fragment imbued with a gloomy spirit. Once you stare into it, you might feel absorbed into it. +-------------------------- +Weight: 1 +# +7799# +A dark crystal which is hiding heavy shadows inside of it. +You might feel a strong dangerous power from this crystal. When you are close to it, you could realize something is sucking all the power from the near atmosphere. +-------------------------- +Weight: 1 +# +7800# +Exquisite aroma proceeds from the fairytale apple. +-------------------------- +Weight: 0 +# +7801# +The pan letter of the young girl where ardent love where comes to feel. +-------------------------- +Weight: 1 +# +7802# +An enveloped and to receive every string one notebook of the use which keeps. +-------------------------- +Weight: 1 +# +7803# +Only usable by a character Level 40 or below. For 30 minutes, grants 3x exp for 30 minutes. +-------------------------- +Weight: 1 +# +7804# +Octopig's legs are neatly trimmed. +Don't worry too much, as they say they will grow back soon. + +...But where can I use it? +-------------------------- +Weight: 0 +# +7805# +A brown colored family ring which it wears by Jenoss. +-------------------------- +Weight: 1 +# +7806# +Holffar Received a God's Anvil. +-------------------------- +Weight: 1 +# +7807# +Torros Received a God's Minerals. +-------------------------- +Weight: 1 +# +7808# +Gonk Received a God's Hammer. +-------------------------- +Weight: 1 +# +7809# +Lapio Received a God's Furnaces. +-------------------------- +Weight: 1 +# +7810# +A symbol of Wealth to Ravela. +-------------------------- +Weight: 1 +# +7811# +Anvil made of gold. +-------------------------- +Weight: 1 +# +7812# +A symbol of Courage to Ravela. +-------------------------- +Weight: 1 +# +7813# +A red colored family ring which it wears by Jenoss. +-------------------------- +Weight: 1 +# +7814# +A green colored family ring which it wears by Jenoss. +-------------------------- +Weight: 1 +# +7815# +A blue colored family ring which it wears by Jenoss. +-------------------------- +Weight: 1 +# +7816# +A symbol of the Faith to Ravela. +-------------------------- +Weight: 1 +# +7817# +A symbol of the Peace to Ravela. +-------------------------- +Weight: 1 +# +7818# +The necklaces of the Jessur. +-------------------------- +Weight: 1 +# +7819# +Get the musical vibe going with the Nokia 5300 XpressMusic phone. With the dedicated music keys that play / pause, forward and rewind, it's easy to be melodiously mobile. +-------------------------- +Weight: 0 +# +7820# +It seems like a piece of Morocc skin. There is a burned mark on the edge of it. +-------------------------- +Weight: 0 +# +7821# +A sour apple eaten by Knife Goblins. +-------------------------- +Type: Pet Food +Monster: Goblin Knife +Weight: 1 +# +7822# +A skewer of barbequed savage meat. +-------------------------- +Type: Pet Food +Monster: Deleter +Weight: 1 +# +7823# +A skewer of meat and veggies that's a favorite of Diabolics. +-------------------------- +Type: Pet Food +Monster: Diabolic +Weight: 1 +# +7824# +This highly toxic liquid is consumed by Wandering souls. +-------------------------- +Type: Pet Food +Monster: Wanderer +Weight: 5 +# +7825# +A mysterious stone that reveals its true power when a real hero has it. +-------------------------- +Type: Quest +Weight: 1 +# +7826# +\ +-------------------------- +Continental Guard, Balrog. +-------------------------- +Type: Quest +Weight: 0 +# +7827# +광물의 진품 여부를 가리는 감정서. 유통기한이 있는 듯 하니 모으는 데로 사용하자. +-------------------------- +Weight: 0 +# +7828# +A badge that is provided to warriors who have brought great honor from the Battlefield. +-------------------------- +Weight: 0 +# +7829# +A badge that is provided to warriors who have brought great honor from the Battlefield. +-------------------------- +Weight: 0 +# +7830# +A clear and transparent gem that reflects light beautifully. +-------------------------- +Weight: 50 +# +7831# +A token that symbolises Valkyrie. +-------------------------- +Weight: 50 +# +7832# +A piece of wrecked armor of Valkyrie, Brynhild. +-------------------------- +Weight: 50 +# +7833# +Ashes of a hero, Siegfried. +-------------------------- +Weight: 50 +# +7834# +The ring of Andvary that has been protected by the dragon Pavvnir. +-------------------------- +Weight: 50 +# +7835# +This liquid has a color of red dusk. +-------------------------- +Weight: 50 +# +7836# +It posseses the power of rising sun. +-------------------------- +Weight: 50 +# +7837# +The force of moonlight has been gathered. +-------------------------- +Weight: 50 +# +7838# +A group of stars that lies beautifully in night sky. +-------------------------- +Weight: 50 +# +7839# +A piece of crystal that is used as a key of the assessment. It contains a rune as a charm against a bad luck towards the assessment. +-------------------------- +Weight: 0 +# +7840# +A flower from Valkyrie Wishmaiden. When it's decorated, the flower as a big festival mood. +-------------------------- +Weight: 0 +# +7841# +The pieces are painted something. Although it does not look good. +-------------------------- +Weight: 0 +# +7842# +The pieces are painted something. Although it does not look good. +-------------------------- +Weight: 0 +# +7843# +The pieces are painted something. Although it does not look good. +-------------------------- +Weight: 0 +# +7844# +The pieces are painted something. Although it does not look good. +-------------------------- +Weight: 0 +# +7845# +The pieces are painted something. Although you don't know further reply. +-------------------------- +Weight: 0 +# +7846# +The pieces are painted something. Although you don't know further reply. +-------------------------- +Weight: 0 +# +7847# +The pieces are painted something. Although you don't know further reply. +-------------------------- +Weight: 0 +# +7848# +The pieces are painted something. Although you don't know further reply. +-------------------------- +Weight: 0 +# +7849# +This signal is modified of the soul... +-------------------------- +Weight: 1 +# +7850# +The magic log, which can be used for the bonfire. +-------------------------- +Weight: 0 +# +7851# +RO together with Wii! Wii raffle ticket. +-------------------------- +Weight: 1 +# +7852# +RO together with Divx! Divx Player raffle ticket. +-------------------------- +Weight: 1 +# +7853# +RO together with iPod nano! iPod nano raffle ticket. +-------------------------- +Weight: 1 +# +7854# +Joyful Comodo Festival! This Ticket is serviceable only from Comodo Festival. +-------------------------- +Weight: 1 +# +7855# +It thinks a troublesome army song warm mind. +-------------------------- +Weight: 1 +# +7857# +A black cat doll which made by good craftsman. +-------------------------- +Weight: 3 +# +7858# +흑암대지에만 있는 꿈의 금속조각, 구석구석 매끈해서 흠집이 없음. 금속내부의 물질은 천천히 흔들리고 있음. +-------------------------- +Weight: 1 +# +7859# +신비인에게 가져가면 Mysterious 무엇을 받을 듯한 예감이 든다. +-------------------------- +Weight: 10 +# +7860# +A candy made with marshmallow. It is formed into a candy of various shapes and children like it very much. +-------------------------- +Weight: 5 +# +7861# +A jelly like confectionary in the shape of a bean. It is made with many flavors, primarily fruits. +-------------------------- +Weight: 5 +# +7862# +A soft confectionary make from sugar or corn syrup. It is tender and soft. +-------------------------- +Weight: 5 +# +7863# +A Hwang gold which commemorates the a special day. +-------------------------- +Weight: 20 +# +7864# +Cacao stolen from Pinkamenia in Moscovia while she was baking. Return them to her and she will give you some rewards. +-------------------------- +Weight: 0 +# +7865# +Gold bag receive from Baren. Must be deliver with the group protects environment. +-------------------------- +Weight: 0 +# +7866# +Certificate from Tidy. Contribute to be with help the group protects environment. +-------------------------- +Weight: 0 +# +7867# +A very small bag with Sesame seeds inside. +-------------------------- +Weight: 10 +# +7868# +1급수에서만 구할 수 있는 맑고 깨끗한 물. +-------------------------- +Weight: 0 +# +7869# +A sack that contains rice. +-------------------------- +Weight: 10 +# +7870# +Beautifully bred Corn which most people like to eat. +-------------------------- +Weight: 2 +# +7871# +A very small bag with Bean seeds inside. +-------------------------- +Weight: 2 +# +7872# +Light grass that is wet with dew. +-------------------------- +Weight: 3 +# +7873# +A scroll used to summon a very powerfull monster. +-------------------------- +Weight: 1 +# +7874# +A scroll used to summon monster. +-------------------------- +Weight: 1 +# +7875# +A recovered Treasure box +that was Lost by +Pirate Captain Wesley +many years ago. +Perhaps with his help +you can open it. Part of +the 2007 4th Anniversary +Event. +# +7876# +A shiny golden key which is rumored to be able to open locks enchanted with spells. +-------------------------- +Weight: 5 +# +7877# +Mashenka's red ring. It seems to have a sad story. +-------------------------- +Weight: 10 +# +7878# +Hair of the water fairy Lusalka, who drowned on the eve of her marriage. +-------------------------- +Weight: 1 +# +7879# +A spool wrapped with golden fine thread. +-------------------------- +Weight: 1 +# +7880# +Baba Yaga's silver spoon stolen by pirates. +-------------------------- +Weight: 1 +# +7881# +A mysterious magic book published by MOMOTARO Publishing. +-------------------------- +Weight: 5 +# +7882# +A branch broken off from a thornbush. +-------------------------- +Weight: 0 +# +7883# +A flute made by a shepherd who has an amazing talent for music. +-------------------------- +Weight: 0 +# +7884# +A broken jade that seems valuable, no one knows who it belongs to. +-------------------------- +Weight: 0 +# +7885# +Arrows make by the great smith in town. Sacred weapon as said by Hou Yi. +-------------------------- +Weight: 0 +# +7886# +Crushes cooked red beans into the form of paste so that it could be made into the fillings for cookies or bread. +-------------------------- +Weight: 1 +# +7887# +A present given by Mr.Taeum. A tool used to dry and increase the sugar capacity of fruits. +-------------------------- +Weight: 3 +# +7888# +Packet which contains certain fruits which posess a hard shell. +-------------------------- +Weight: 3 +# +7889# +Contain certain nutrition loved by chickens. However, the ingredients are unknown. +-------------------------- +Weight: 2 +# +7891# +A cute mug crafted by hand. +-------------------------- +Weight: 10 +# +7892# +A wood charcoal that was carbonized from the firm wood. It is a type of fuel and essential for making BBQ. +It's also used to make a gun powder. +-------------------------- +Weight: 1 +# +7893# +A yellow crystalline solid that is also known for the distinctive smell. +It is also used to make a gun powder. +-------------------------- +Weight: 1 +# +7894# +A food additive which tastes salty and a bit refreshing. +It's also used to make a gun powder. +-------------------------- +Weight: 1 +# +7895# +Rama was created five years for the commemorative of the book. +-------------------------- +Weight: 0 +# +7896# +Roy Krasnoyarsk created for the book to celebrate the Day of Thailand. +-------------------------- +Weight: 0 +# +7897# +The book was created to celebrate Constitution Day. +-------------------------- +Weight: 0 +# +7898# +VV Strong Balmung made by Meow. +-------------------------- +Weight: 0 +# +7899# +VV Strong Dagger made by Meow. +-------------------------- +Weight: 0 +# +7900# +Jonathan 'family of exchange received a ring. +-------------------------- +Weight: 0 +# +7901# +Jillberriel 'family of exchange received a ring. +-------------------------- +Weight: 0 +# +7902# +Jessur 'family of exchange received a ring. +-------------------------- +Weight: 0 +# +7903# +Jenoss 'received a ring. +-------------------------- +Weight: 0 +# +7904# +The piano keys that can be open and locked. +-------------------------- +Weight: 0 +# +7905# +A new type of ROK Star badge. +-------------------------- +Weight: 10 +# +7906# +A poppy wreath placed at +a location of strong +personal meaning to +commemorate the memories +of events and people +that have shaped +your life. +# +7907# +A thread from the goddes of fate. +-------------------------- +Weight: 1 +# +7908# +A hairstyling coupon +that can be redeemed +for a one time free +hairstyle change +service from Artist +Louise during the +event period. +-------------------------- +Weight: 1 +# +7909# +A cookie that was +stolen from the +factory in Lutie. +-------------------------- +Weight: 1 +# +7910# +A candy that was +stolen from the +factory in Lutie. +-------------------------- +Weight: 1 +# +7911# +Yulia claims that +this hat was stolen +from her by a strange, +suspicious man in the +middle of the night. +-------------------------- +Weight: 1 +# +7912# +A machine that holds +the Essence of Cold, made +by the scientist Willis in Morocc. +It can holds a Snowman +and protects it from heat +while the Snowman is +outside of the machine. +-------------------------- +Weight: 0 +# +7913# +A certificate to confirm the capability of applicant recruits. +-------------------------- +Weight: 0 +# +7914# +An old letter which seems to have been written with heart by someone. +-------------------------- +Weight: 0 +# +7915# +A shiny bronze coin, but can't be used as a currency. +-------------------------- +Weight: 1 +# +7916# +A silver coin forged by the leprechauns. +Leprechauns use these coins to fill their pots when they run out of gold. +-------------------------- +Weight: 1 +# +7917# +Divine force by the potion. +-------------------------- +Weight: 0 +# +7918# +A fragment of memory from Thanatos. +-------------------------- +Weight: 10 +# +7919# +Evidence that you really enjoyed the festival! +-------------------------- +Weight: 1 +# +7920# +Box of Hero's weapon. +-------------------------- +Weight: 0 +# +7921# +A something that contains the power of Dragon. +-------------------------- +Weight: 1 +# +7922# +RWC event ticket. Let's celebrate RWC in Taiwan! +If you give it to RWC event NPC, you would get some gifts. +-------------------------- +Weight: 1 +# +7923# +A tribute to luck and fortune throughout the year. +-------------------------- +Weight: 0 +# +7925# +Essence that is said to have been made by purifying substances of another dimension. +It is not known who and how such a task is possible. +-------------------------- +Weight: 0 +# +7928# +The flag of the western countries famous for it's passionate festivals. There is a simple pattern of yellow and sky blue in the middle of the green background. +-------------------------- +Weight: 1 +# +7929# +A magic coin from the Forbidden Pot of Leprechaun. It seems to be a very valuable thing to them. +-------------------------- +Weight: 1 +# +7930# +Very large ring. Stink behind him. Everyone can be have this item. +-------------------------- +Weight: 100 +# +7931# +Basic tools for poison making are all stocked. It's a gift set for those who dream of making poison. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7932# +Fragile. You'll get into trouble when attracted by a red beautiful flower and fragrance. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7933# +Fragile. The red berry ripened but the fragrance seems like it's of a domestic animal. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7934# +Fragile. It's not green tea even if it uses the very end of a young leaf. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7935# +Fragile. It does not have any scent unlike a beautiful figure. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7936# +Fragile. The purplish, small and cute flower seems charming but when you touch, it's very itchy. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7937# +Fragile. It seems like a weed that grows anywhere but it looks dangerous. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7938# +A golden crystal. It seems very warm as if sunshine has been put into it. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7939# +A little branch that is extracted from an old tree that grows in a sacred place. +Rune Knights use these to make Rune stones. +-------------------------- +Type: Skill necessity +Weight: 1 +# +7940# +A trap that is reformed for hunters whose weights were a burden. +-------------------------- +Type: Skill necessity +Weight: 0.2 +# +7941# +The mark of a foolish deed, like getting tagged by a zombie. +-------------------------- +You can exchange it for a gift. +-------------------------- +Weight: 0 +# +7942# +치코 세자르'의 편지. +봉투의 겉에는 [To. 디냐씨에게] 라고 적혀있다. +-------------------------- +Weight: 0 +# +7943# +까스끼냐 디 시리나 보보 디 까마라오' +라는 요리로 '치코 세자르'를 위해 '디냐'가 조리한 음식. +-------------------------- +Weight: 0 +# +7944# +모양이 신기한 Box. +안에 어떤 물건이 들어있는 거 같다. +알 수 없는 힘에 의해 봉인되어져있다. +-------------------------- +Weight: 1 +# +7945# +Mysterious 힘이 느껴지는 부적. +어떠한 봉인이라도 풀 수 있다고 적혀있다. +-------------------------- +Weight: 1 +# +7946# +Send this to your girl to show your love. +-------------------------- +Weight: 0 +# +7947# +Send this to your guy to show your love. +-------------------------- +Weight: 0 +# +7948# +An ordinary paper box. +It looks so flat, it definitely needs some ornaments. +-------------------------- +Weight: 1 +# +7949# +솜털에서 짜낸 천. +-------------------------- +Weight: 0 +# +7950# +A ticket to Ayothaya Festival. +-------------------------- +Weight: 0 +# +7951# +삼림 미궁 깊숙한 곳에서만 피어난다는 황금색의 아름다운 튤립. +매우 희귀하다고 한다. +-------------------------- +Weight: 0 +# +7952# +줄리엣지'를 향한 '로미로스'의 마음이 담긴 선물 Box +-------------------------- +Weight: 0 +# +7953# +로미로스'를 향한 '줄리엣지'의 마음이 담긴 선물 Box +-------------------------- +Weight: 0 +# +7954# +Summer is here! Summer festival event ticket! +-------------------------- +Weight: 1 +# +7955# +Dirgahayu +-------------------------- +Weight: 0 +# +7956# +Republik +-------------------------- +Weight: 0 +# +7957# +Indonesia +-------------------------- +Weight: 0 +# +7958# +Ke 64 +-------------------------- +Weight: 0 +# +7959# +The UP Coin is a Gift from O'Riley the Leprechaun. +You can acquire more by purchasing them at PlaySpan.com. Use them to purchase kafra points and packages to improve your Ragnarok Adventure! +# +7960# +A weird silver coin from suspicious women. It is very important to her. +-------------------------- +Weight: 0 +# +7961# +월드 투어 엔피씨에게 가면 무기를 보상으로 받을 수 있다. +-------------------------- +Weight: 0 +# +7962# +A map with abstract painting. +Only vulcanic terrain that can be identified which have a written in odd letters : 'Ifrit will lead you to hell'. +-------------------------- +Weight: 0 +# +7963# +A map with abstract painting. +Only dark blue cave that can be identified which have a written in odd letters : 'A mysterious place, deep lake with dark blue dragon guarding'. +-------------------------- +Weight: 0 +# +7964# +A map with abstract painting. +Only an institute that can be identified which have a written in odd letters : 'In the edge of darkness, a body moving without a mind'. +-------------------------- +Weight: 0 +# +7965# +A map with abstract painting. +Only a church that can be identified which have a written in odd letters : 'Where the king slumber in eternal, will risking your life'. +-------------------------- +Weight: 0 +# +7966# +A Parchment written in ancient language. Maybe it was part of a map? +-------------------------- +Weight: 0 +# +7967# +A Parchment written in ancient language. Maybe it was part of a map? +-------------------------- +Weight: 0 +# +7968# +A Parchment written in ancient language. Maybe it was part of a map? +-------------------------- +Weight: 0 +# +7969# +A Parchment written in ancient language. Maybe it was part of a map? +-------------------------- +Weight: 0 +# +7970# +Kami putra dan putri Indonesia mengaku, bertumpah darah satu, tanah Indonesia +라고 쓰여진 편지 한 장. +-------------------------- +Weight: 0 +# +7971# +Kami putra dan putri Indonesia mengaku, berbangsa satu, bangsa Indonesia +라고 쓰여진 편지 한 장. +-------------------------- +Weight: 0 +# +7972# +Kami putra dan putri Indonesia mengaku.bertanah air satu, tanah air Indonesia. +Kami putra dan putri Indonesia mengaku.berbangsa satu, bangsa Indonesia. Kami putra dan putri Indonesia mengaku. +berbahasa satu, bahasa Indonesia +라고 말하는 청년의 맹세가 쓰여진 편지. +-------------------------- +Weight: 0 +# +7973# +A white egg. Has a same size of pigeon egg. If you look closely you can see something is moving. +-------------------------- +Weight: 0 +# +7974# +A piece that Misty's illusion left behind. +-------------------------- +Weight: 0 +# +7975# +A chocolate received from Cupid's Fairy to commemorate Valentine's Day. +Remember to give it to someone special. +-------------------------- +Weight: 0 +# +7976# +This Geffen Magic Coin can be used to buy magic items from Geffen Magic City Quest. +-------------------------- +Type: Valuable +Weight: 0 +# +7977# +Mercenary Badge given out during the Midgard Crowd Control Event. +Save this up to trade for headgears with the quest NPC. +-------------------------- +Weight: 0 +# +9001# +Uncommon Egg: +An egg in which a Poring pet rests. +This pet will Give stats when you pop out. +-------------------------- +Vit + 2 +-------------------------- +Collection Effect +FLEE +2 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9002# +Uncommon Egg: +An egg in which a Drops pet rests. +This pet will Give stats when you pop out. +-------------------------- +Dex + 2 +-------------------------- +Collection Effect +HIT +5 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9003# +Uncommon Egg: +An egg in which a Poporing pet rests. +This pet will Give stats when you pop out. +-------------------------- +Atk + 2 / Matk + 2 +-------------------------- +Collection Effect +Weight limit+20 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9004# +Uncommon Egg: +An egg in which a Lunatic pet rests. +This pet will Give stats when you pop out. +-------------------------- +Luk + 2 +-------------------------- +Collection Effect +Critical Rate +1 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9005# +Uncommon Egg: +An egg in which a Picky pet rests. +This pet will Give stats when you pop out. +-------------------------- +Str + 2 +-------------------------- +Collection Effect +ATK +1 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9006# +Uncommon Egg: +An egg in which a Chonchon pet rests. +This pet will Give stats when you pop out. +-------------------------- +Agi + 2 +-------------------------- +Collection Effect +Increase resistance to Silence status by 1% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9007# +An egg in which a Steel Chonchon cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +FLEE +6 +-------------------------- +When intimacy is Loyal: +FLEE +9 +-------------------------- +Type: Monster Egg +Diet: Iron Ore +# +9008# +An egg in which a Hunter Fly cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +Perfect Dodge +2 +-------------------------- +When intimacy is Loyal: +Perfect Dodge +2 +HIT +1 +-------------------------- +Type: Monster Egg +Diet: Red Gemstone +# +9009# +An egg in which a Savage Bebe cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +VIT +1 +MaxHP +50 +-------------------------- +When intimacy is Loyal: +VIT +2 +MaxHP +75 +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9010# +Uncommon Egg: +An egg in which a Baby Desert Wolf pet rests. +This pet will Give stats when you pop out. +-------------------------- +Int + 2 +-------------------------- +Collection Effect +Matk +1 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9011# +Uncommon Egg: +An egg in which a Rocker pet rests. +This pet will Give stats when you pop out. +-------------------------- +Atk + 5 +-------------------------- +Collection Effect +Increase resistance to Blind status by 1% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9012# +Uncommon Egg: +An egg in which a Spore pet rests. +This pet will Give stats when you pop out. +-------------------------- +Critical Rate + 2 +-------------------------- +Collection Effect +Increase resistance to Curse status by 1% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9013# +An egg in which a Poison Spore cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +STR +1 +INT +1 +-------------------------- +When intimacy is Loyal: +STR +2 +INT +2 +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9014# +Uncommon Egg: +An egg in which a Pecopeco pet rests. +This pet will Give stats when you pop out. +-------------------------- +Matk + 5 +-------------------------- +Collection Effect +Max Hp+50 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9015# +An egg in which a Smokie cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +AGI +1 +Perfect Dodge +1 +-------------------------- +When intimacy is Loyal: +AGI +2 +Perfect Dodge +1 +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9016# +An egg in which a Yoyo cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +Critical +3 +-------------------------- +When intimacy is Loyal: +Critical +5 +-------------------------- +Type: Monster Egg +Diet: Banana Juice +# +9017# +Rare Egg: +An egg in which a Orc Warrior rests. +This pet will Give stats when you pop out. +-------------------------- +Luk + 3 +Perfect Dodge + 3 +-------------------------- +Collection Effect +Perfect Dodge +2 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9018# +An egg in which a Munak cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +INT +1 +DEF +1 +-------------------------- +When intimacy is Loyal: +INT +2 +DEF +2 +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9019# +An egg in which a Dokkaebi cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +MATK +1% +-------------------------- +When intimacy is Loyal: +MATK +2% +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9020# +Rare Egg: +An egg in which a Sohee rests. +This pet will Give stats when you pop out. +-------------------------- +Str + 3 +Weight Limit + 500 +-------------------------- +Collection Effect +Weight Limit + 200 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9021# +Rare Egg: +An egg in which a Isis rests. +This pet will Give stats when you pop out. +-------------------------- +Agi + 3 +ASPD + 3% +-------------------------- +Collection Effect +Increase resistance to Chaos status by 2% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9022# +Rare Egg: +An egg in which a Green Petite rests. +This pet will Give stats when you pop out. +-------------------------- +Vit + 5 +HP Recovery + 20% +-------------------------- +Collection Effect +Hp Recovery Rate +5% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9023# +Rare Egg: +An egg in which a Deviruchi rests. +This pet will Give stats when you pop out. +-------------------------- +Int + 3 +SP Recovery + 5% +-------------------------- +Collection Effect +SP Recovery +3% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9024# +Rare Egg: +An egg in which a Baphomet Jr. rests. +This pet will Give stats when you pop out. +-------------------------- +Dex + 3 +Hit + 10 +-------------------------- +Collection Effect +Increase resistance to Stun status by 2% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9025# +Rare Egg: +An egg in which a Bongun rests. +This pet will Give stats when you pop out. +-------------------------- +Atk + 5 / Matk + 5 +Atk + 2% / Matk + 2% +-------------------------- +Collection Effect +Increase resistance to Stone Curse status by 2% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9026# +An egg in which a Zealotus cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +Increases Damage against monsters of Demi-Human race by 2%. +-------------------------- +When intimacy is Loyal: +Increases Damage against monsters of Demi-Human race by 3%. +-------------------------- +Type: Monster Egg +Diet: Immortal Heart +# +9027# +Rare Egg: +An egg in which a Alice rests. +This pet will Give stats when you pop out. +-------------------------- +Critical Rate + 5 +Critical Damage + 3% +-------------------------- +Collection Effect +Critical Rate + 3 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9028# +An egg in which a Hard Rice Cute Cake Pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +Decreases damage taken from Neutral elemental attacks by 1%. +-------------------------- +When intimacy is Loyal: +Decreases damage taken from Neutral elemental attacks by 2%. +-------------------------- +Type: Monster Egg +Diet: Green Herb +# +9029# +An egg in which a X-mas Goblin cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +MaxHP +30 +Decreases damage taken from Water elemental attacks by 1%. +-------------------------- +When intimacy is Loyal: +MaxHP +45 +Decreases damage taken from Water elemental attacks by 2%. +-------------------------- +Type: Monster Egg +Diet: Scell +# +9030# +An egg in which a Green Maiden cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +DEF +1 +Decreases damage taken from Demi-Human race by 1%. +-------------------------- +When intimacy is Loyal: +DEF +2 +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +Type: Monster Egg +Diet: Bun +# +9031# +An egg in which an Eclipse cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +Type: Monster Egg +Diet: Bok Choy +# +9032# +An egg in which a Knife Goblin cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +Type: Monster Egg +Diet: Green Apple +# +9033# +An egg in which a Flail Goblin cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +Type: Monster Egg +Diet: Green Apple +# +9034# +An egg in which a Hammer Goblin cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +Type: Monster Egg +Diet: Green Apple +# +9035# +An egg in which a Earth Deleter cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +Type: Monster Egg +Diet: Whole Barbecue +# +9036# +An egg in which a Diabolic cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +Type: Monster Egg +Diet: Meat Veg Skewer +# +9037# +An egg in which a Wanderer cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +AGI +3 +-------------------------- +When intimacy is Loyal: +AGI +4 +-------------------------- +Type: Monster Egg +Diet: Spirit Liquor +# +9038# +An egg in which a New Year Doll cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +Type: Monster Egg +Diet: Mochi +# +9039# +An egg in which a White Lady cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +Type: Monster Egg +Diet: Traditional Cookie +# +9040# +An egg in which a Civil Servant cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +MaxSP +10 +-------------------------- +When intimacy is Loyal: +MaxSP +15 +-------------------------- +Type: Monster Egg +Diet: Flavored Alcohol +# +9041# +An egg in which a Leaf Cat cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +Decreases damage taken from Brute race by 3%. +-------------------------- +When intimacy is Loyal: +Decreases damage taken from Brute race by 5%. +-------------------------- +Type: Monster Egg +Diet: Fish With Blue Back +# +9042# +An egg in which a Loli Ruri cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +MaxHP +3% +Random chance to auto-cast Level 1 Heal on master when receiving physical damage. +-------------------------- +When intimacy is Loyal: +MaxHP +5% +Random chance to auto-cast Level 2 Heal on master when receiving physical damage. +-------------------------- +Type: Monster Egg +Diet: Pumpkin Pie +# +9043# +An egg in which a Marionette cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +when wearer receive physical attacks, adds a chance for 3 second to increase neutral resistance by 20% and recover 100 HP. +-------------------------- +When intimacy is Loyal: +when wearer receive physical attacks, adds a chance for 5 second to increase neutral resistance by 20% and recover 100 HP. +-------------------------- +Type: Monster Egg +Diet: Small Snow Flower +# +9044# +An egg in which a Shinobi cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +AGI +2 +-------------------------- +When intimacy is Loyal: +AGI +3 +-------------------------- +Type: Monster Egg +Diet: Grilled Rice Cake +# +9045# +An egg in which a Whisper cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +FLEE +7 +Enables the use of Level 1 Hiding. +-------------------------- +When intimacy is Loyal: +FLEE +10 +Enables the use of Level 1 Hiding. +-------------------------- +Type: Monster Egg +Diet: Damp Darkness +# +9046# +An egg in which a Goblin Leader cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +Increases Physical Damage against enemies of Demi-Human race by 3%. +-------------------------- +When intimacy is Loyal: +Increases Physical Damage against enemies of Demi-Human race by 5%. +-------------------------- +Type: Monster Egg +Diet: Big Scell +# +9047# +An egg in which a Wicked Nymph cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +MaxSP +30 +Increases SP Recovery Rate by 5%. +-------------------------- +When intimacy is Loyal: +MaxSP +45 +Increases SP Recovery Rate by 8%. +-------------------------- +Type: Monster Egg +Diet: Morning Dew +# +9048# +An egg in which a Miyabi Ningyo cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +INT +1 +Decreases Variable Casting Time by 3%. +-------------------------- +When intimacy is Loyal: +INT +2 +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Monster Egg +Diet: Well Ripened Berry +# +9049# +An egg in which a Dullahan cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +Critical +5 +-------------------------- +When intimacy is Loyal: +Critical +8 +-------------------------- +Type: Monster Egg +Diet: Sunset on The Rock +# +9050# +An egg in which a Medusa cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +VIT +1 +Increases resistance against Curse status by 5%. +-------------------------- +When intimacy is Loyal: +VIT +2 +Increases resistance against Curse status by 8%. +-------------------------- +Type: Monster Egg +Diet: Apple Pudding +# +9051# +An egg in which a Stone Shooter cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +Decreases damage taken from Fire elemental attacks by 3%. +-------------------------- +When intimacy is Loyal: +Decreases damage taken from Fire elemental attacks by 5%. +-------------------------- +Type: Monster Egg +Diet: Plant Neutrient +# +9052# +Rare Egg: +An egg in which a Incubus rests. +This pet will Give stats when you pop out. +-------------------------- +Atk + 10 +Atk + 3% +-------------------------- +Collection Effect +ATK +1% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9053# +An egg in which a Golem cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +MaxHP +100 +-------------------------- +When intimacy is Loyal: +MaxHP +150 +-------------------------- +Type: Monster Egg +Diet: Mystic Stone +# +9054# +An egg in which a Nightmare Terror cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +Prevents Sleep status. +-------------------------- +When intimacy is Loyal: +Prevents Sleep status. +INT +1 +-------------------------- +Type: Monster Egg +Diet: Fresh Plant +# +9055# +Rare Egg: +An egg in which a Succubus rests. +This pet will Give stats when you pop out. +-------------------------- +Matk + 10 +Matk + 3% +-------------------------- +Collection Effect +MATK +1% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9056# +An egg in which a Imp cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +Decreases damage taken from Fire elemental attacks by 2%. +Increases Physical Damage against enemies of Fire elemental by 1%. +-------------------------- +When intimacy is Loyal: +Decreases damage taken from Fire elemental attacks by 3%. +Increases Physical Damage against enemies of Fire elemental by 2%. +-------------------------- +Type: Monster Egg +Diet: Flame Gemstone +# +9057# +An egg in which a Tiny Pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +Type: Monster Egg +Diet: Apple +# +9058# +An egg that has a Christmas Snow Rabbit inside. +These rabbits love to eat Candy. +Can be hatched by using a Pet Incubator. +-------------------------- +Cordial/Loyal Bonus +During Christmas, increases EXP by 2%. +MATK +2% +-------------------------- +Type: Monster Egg +Diet: Candy +# +9059# +An egg in which a Tikbalang cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +Increases Physical Damage against enemies of Bakonawa, Bangungot and Buwaya by 10%. +MDEF +3 +-------------------------- +When intimacy is Loyal: +Increases Physical Damage against enemies of Bakonawa, Bangungot and Buwaya by 10%. +MDEF +5 +-------------------------- +Type: Monster Egg +Diet: Monster's Feed +# +9060# +An egg in which a Domovoi Pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Loyal : +Increases Physical Damage against enemies of Demihuman by 1%. +Increases Magical Damage against Demihuman by 1%. +Decreases physical damage from Demihuman by 1%. +-------------------------- +Type: Monster Egg +Diet: +# +9061# +An egg in which a Marin Pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +Type: Monster Egg +Diet: Fruit Sundae +# +9062# +An egg in which a Baby Poring pet rests. +This pet will Give stats when you pop out. +-------------------------- +Hp + 20 +Sp + 20 +-------------------------- +Type: Monster Egg +# +9063# +An egg in which a Woodie cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +Cordial/Loyal Bonus +MaxHP +150, LUK +2. +-------------------------- +Type: Monster Egg +Diet: +# +9064# +An animal that love playing with water. +DEX +1 +When intimcary Cordial: DEX +3 +Weight: 0 +# +9065# +The true king of jungle. +STR +2. +When intimcary Cordial: ATK +5 +Weight: 0 +# +9066# +The king of Savana. +MaxSP +10. +When intimcary Cordial: INT +3 +Weight: 0 +# +9067# +An animal that love playing in mud. +MaxHP +100. +When intimcary Cordial: VIT +3 +Weight: 0 +# +9068# +An egg that has Cute-pet blue unicorn sleeping in it. Can be hatched by using a Pet Incubator. +During the event, increase you walk speed. +-------------------------- +Type: Monster Egg +Weight: 0 +# +9069# +An egg in which a Mastering cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +LUK +2 +Critical +1 +-------------------------- +When intimacy is Neutral: +LUK +3 +Critical +1 +-------------------------- +When intimacy is Cordial: +LUK +3 +Critical +2 +-------------------------- +When intimacy is Loyal: +LUK +3 +Critical +3 +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9070# +An egg in which a Savage cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +VIT +1 +MaxHP +50 +-------------------------- +When intimacy is Neutral: +VIT +2 +MaxHP +50 +-------------------------- +When intimacy is Cordial: +VIT +2 +MaxHP +100 +-------------------------- +When intimacy is Loyal: +VIT +2 +MHaxP +200 +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9071# +An egg in which a Grand Peco cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +MaxHP +150 +MaxSP -10 +-------------------------- +When intimacy is Neutral: +MaxHP +200 +-------------------------- +When intimacy is Cordial: +MaxHP +300 +-------------------------- +When intimacy is Loyal: +MaxHP +400 +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9073# +Legendary Egg: +An egg in which a Orc Lord rests. +This pet will Give stats when you pop out. +-------------------------- +Agi + 15 +ASPD + 20% +Movespeed Bonus 5% +ASPD + 2 +-------------------------- +Collection Effect +Agi +10 +Aspd +1 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9074# +An egg in which a Rubylit cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +ATK +10 +-------------------------- +When intimacy is Loyal: +ATK +10 +-------------------------- +Type: Monster Egg +Weight: 0 +# +9075# +An egg in which a Sapphilit cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +MaxHP +100 +-------------------------- +When intimacy is Loyal: +MaxHP +100 +-------------------------- +Type: Monster Egg +Weight: 0 +# +9076# +An egg in which a Emelit cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +MaxHP +50, MaxSP +25 +-------------------------- +When intimacy is Loyal: +MaxHP +50, MaxSP +25 +-------------------------- +Type: Monster Egg +Weight: 0 +# +9077# +An egg in which a Topalit cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +MaxSP +50 +-------------------------- +When intimacy is Loyal: +MaxSP +50 +-------------------------- +Type: Monster Egg +Weight: 0 +# +9078# +An egg in which a Amerit cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +MATK +10 +-------------------------- +When intimacy is Loyal: +MATK +10 +-------------------------- +Type: Monster Egg +Weight: 0 +# +9079# +An egg in which a Mythlit cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +All Stats +1 +-------------------------- +When intimacy is Loyal: +All Stats +1 +-------------------------- +Type: Monster Egg +Weight: 0 +# +9080# +An egg in which a Tamadora cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +Physical attacks have a certain chance to auto-cast Level 1 Heal on yourself. +-------------------------- +When intimacy is Loyal: +Enables the use of Level 1 Heal additionally. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Monster Egg +Weight: 0 +# +9087# +An egg in which a High Orc cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +ATK +10 +DEF -3 +-------------------------- +When intimacy is Neutral: +ATK +15 +-------------------------- +When intimacy is Cordial: +ATK +20 +-------------------------- +When intimacy is Loyal: +ATK +25 +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9088# +Epic Egg: +An egg in which a Angeling rests. +This pet will Give stats when you pop out. +-------------------------- +Str + 5 +Weight Limit + 2000 +Def + 50 +-------------------------- +Collection Effect +Def +20 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9089# +An egg in which an Am Mut cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +MATK +1% +-------------------------- +When intimacy is Neutral: +MATK +2% +-------------------------- +When intimacy is Cordial: +MATK +3% +-------------------------- +When intimacy is Loyal: +MATK +4% +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9090# +An egg in which a Little Isis cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +ATK +1%. +-------------------------- +When intimacy is Neutral: +ATK +2% +-------------------------- +When intimacy is Cordial: +ATK +3% +-------------------------- +When intimacy is Loyal: +ATK +4% +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9091# +An egg in which a Choco cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +Critical +3 +-------------------------- +When intimacy is Neutral: +Critical +5 +Increases Ranged Physical Damage by 1%. +-------------------------- +When intimacy is Cordial: +Critical +7 +Increases Ranged Physical Damage by 2%. +-------------------------- +When intimacy is Loyal: +Critical +9 +Increases Ranged Physical Damage by 3%. +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9092# +An egg in which an Eggring cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +HIT +3 +ATK +3 +-------------------------- +When intimacy is Neutral: +HIT +5 +ATK +5 +-------------------------- +When intimacy is Cordial: +HIT +7 +ATK +7 +-------------------------- +When intimacy is Loyal: +HIT +9 +ATK +9 +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9093# +An egg in which a Hyegun cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +VIT +1 +Increases resistance against Stun status by 1%. +-------------------------- +When intimacy is Neutral: +VIT +2 +Increases resistance against Stun status by 2%. +-------------------------- +When intimacy is Cordial: +VIT +3 +Increases resistance against Stun status by 3%. +Random chance to absorb 1% damage against target into SP. +-------------------------- +When intimacy is Loyal: +VIT +4 +Increases resistance against Stun status by 4%. +Random chance to absorb 1% damage against target into SP. +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9094# +An egg in which a Leaf Lunatic cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +ATK +2 +Critical +2 +-------------------------- +When intimacy is Neutral: +ATK +3 +Critical +3 +-------------------------- +When intimacy is Cordial: +ATK +4 +Critical +4 +Increases Damage against monsters of Formless race by 3%. +-------------------------- +When intimacy is Loyal: +ATK +5 +Critical +5 +Increases Damage against monsters of Formless race by 6%. +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9095# +An egg in which a Nine Tails cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +HIT +2 +Critical +2 +-------------------------- +When intimacy is Loyal: +HIT +2 +Critical +3 +-------------------------- +Type: Monster Egg +Diet: Suspicious Bottle +# +9096# +Epic Egg: +An egg in which a Cat o' Nine Tails rests. +This pet will Give stats when you pop out. +-------------------------- +Agi + 5 +ASPD + 5% +Movespeed Bonus 3% +-------------------------- +Collection Effect +Aspd +3% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9097# +An egg in which a Diabolic cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +MATK +1% +ATK +1%. +-------------------------- +When intimacy is Neutral: +MaxHP +1% +MaxSP +1% +MATK +1% +ATK +1%. +-------------------------- +When intimacy is Cordial: +MaxHP +1% +MaxSP +1% +MATK +2% +ATK +2% +Random chance to auto-cast Level 3 Fire Bolt when dealing melee physical attacks. +-------------------------- +When intimacy is Loyal: +MaxHP +2% +MaxSP +2% +MATK +2% +ATK +2% +Random chance to auto-cast Level 3 Fire Bolt when dealing melee physical attacks. +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9098# +An egg in which an Earth Deleter cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +When intimacy is Neutral: +AGI +1 +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +When intimacy is Cordial: +AGI +2 +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +When intimacy is Loyal: +AGI +3 +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9099# +An egg in which a Teddy Bear cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +MaxSP +50 +-------------------------- +When intimacy is Loyal: +MaxSP +100 +-------------------------- +Type: Monster Egg +Diet: Cotton Wads +# +9100# +An egg in which a Gremlin cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +DEX +1 +HIT +1 +-------------------------- +When intimacy is Loyal: +DEX +2 +HIT +1 +-------------------------- +Type: Monster Egg +Diet: Cheap Lubricant +# +9101# +A crate in which a Scatleton pet rests. +Ignore DEF&MDEF 5% to all monsters and players +Can be awoken by using a Pet Incubator. +Effect will expire after 5 Nov 2023 +-------------------------- +Type: Monster Egg +Diet: Fresh Fish +# +9102# +An egg in which a Mummy cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +HIT +4 +-------------------------- +When intimacy is Loyal: +HIT +5 +-------------------------- +Type: Monster Egg +Diet: Memento +# +9103# +An egg in which a Willow cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +INT +2 +-------------------------- +When intimacy is Loyal: +INT +3 +-------------------------- +Type: Monster Egg +Diet: Fine-grained Trunk +# +9104# +An egg in which a Roween cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +MATK +2% +-------------------------- +When intimacy is Loyal: +MATK +3% +-------------------------- +Type: Monster Egg +Diet: Rotten Meat +# +9105# +An egg in which a Hodremlin cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +DEX +1 +HIT +1 +-------------------------- +When intimacy is Neutral: +DEX +2 +HIT +1 +-------------------------- +When intimacy is Cordial: +DEX +2 +HIT +2 +Increases Critical Damage by 7%. +-------------------------- +When intimacy is Loyal: +DEX +2 +HIT +2 +Increases Critical Damage by 9%. +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9106# +An egg in which a Metaller cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +MaxHP +25 +Increases HP Recovery Rate by 5%. +-------------------------- +When intimacy is Neutral: +MaxHP +38 +Increases HP Recovery Rate by 10%. +-------------------------- +When intimacy is Cordial: +MaxHP +55 +Increases HP Recovery Rate by 15%. +Increases Damage against monsters of Plant race by 3%. +-------------------------- +When intimacy is Loyal: +MaxHP +70 +Increases HP Recovery Rate by 20%. +Increases Damage against monsters of Plant race by 6%. +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9107# +An egg in which an Ancient Mummy cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +HIT +4 +-------------------------- +When intimacy is Neutral: +HIT +5 +-------------------------- +When intimacy is Cordial: +HIT +6 +Increases Damage against monsters of Dragon race by 3%. +-------------------------- +When intimacy is Loyal: +HIT +6 +Increases Damage against monsters of Dragon race by 6%. +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9108# +An egg in which an Abandoned Teddy Bear cute pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +MaxSP +50 +-------------------------- +When intimacy is Neutral: +MaxSP +100 +-------------------------- +When intimacy is Cordial: +MaxSP +150 +Random chance to restore 30 SP per second for 5 sec by when dealing magical damage. +-------------------------- +When intimacy is Loyal: +MaxSP +150 +Random chance to restore 40 SP per second for 5 sec by when dealing magical damage. +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9109# +An egg in which a Sweet Drops Pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Loyal: +Increases experience gained from defeating monsters by 1%. +-------------------------- +Type: Monster Egg +Diet: Candy +# +9111# +An egg in which a Phreeoni pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +HIT +6 +-------------------------- +When intimacy is Neutral: +HIT +10 +Perfect HIT +5% +-------------------------- +When intimacy is Cordial: +HIT +14 +Perfect HIT +10% +-------------------------- +When intimacy is Loyal: +HIT +18 +Perfect HIT +15% +-------------------------- +Type: Monster Egg +Diet: Luxurious Pet Food +# +9112# +Legendary Egg: +An egg in which a Moonlight Flower rests. +This pet will Give stats when you pop out. +-------------------------- +Int + 15 +SP Recovery + 25% +Mdef + 50 +8% chance of restoring 5% of damage as SP when performing a physical attack. +-------------------------- +Collection Effect +Int +10 +Mdef +20 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9113# +An egg in which a Skelion pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +Type: Monster Egg +Diet: Delicious Meat +# +9115# +An egg in which a Bacsojin pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +MaxSP +2% +-------------------------- +When intimacy is Neutral: +MaxSP +3% +Decreases After Skill Delay by 1%. +-------------------------- +When intimacy is Cordial: +MaxSP +4% +Decreases After Skill Delay by 2%. +-------------------------- +When intimacy is Loyal: +MaxSP +5% +Decreases After Skill Delay by 3%. +-------------------------- +Type: Monster Egg +Diet: Luxurious Pet Food +# +9116# +An egg in which a Rigid Nightmare Terror pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +INT +1 +-------------------------- +When intimacy is Neutral: +INT +2 +-------------------------- +When intimacy is Cordial: +INT +3 +MaxSP +1% +Prevents Sleep status. +-------------------------- +When intimacy is Loyal: +INT +4 +MaxSP +3% +Prevents Sleep status. +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9117# +An egg in which a Contaminated Wanderer pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +AGI +4 +-------------------------- +When intimacy is Neutral: +AGI +4 +Critical +1 +-------------------------- +When intimacy is Cordial: +AGI +4 +Critical +2 +Increases Critical Damage by 5%. +-------------------------- +When intimacy is Loyal: +AGI +4 +Critical +3 +Increases Critical Damage by 7%. +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9118# +An egg in which a Eliot pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +When intimacy is Neutral: +Increases Attack Speed (Decreases After Attack Delay by 3%). +HIT +6 +-------------------------- +When intimacy is Cordial: +Increases Attack Speed (Decreases After Attack Delay by 4%). +HIT +9 +-------------------------- +When intimacy is Loyal: +Increases Attack Speed (Decreases After Attack Delay by 5%). +HIT +12 +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9119# +An egg in which a Alicel pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +Decreases Variable Casting Time by 2%. +-------------------------- +When intimacy is Neutral: +Decreases Variable Casting Time by 3%. +-------------------------- +When intimacy is Cordial: +Decreases Variable Casting Time by 4%. +Increases Magical Damage with Neutral element by 3%. +-------------------------- +When intimacy is Loyal: +Decreases Variable Casting Time by 5%. +Increases Magical Damage with Neutral element by 3%. +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9120# +An egg in which a Aliza pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +MDEF +4 +-------------------------- +When intimacy is Neutral: +MDEF +5 +Increases Healing skills effectiveness by 2%. +-------------------------- +When intimacy is Cordial: +MDEF +6 +Increases Healing skills effectiveness by 4%. +-------------------------- +When intimacy is Loyal: +MDEF +7 +Increases Healing skills effectiveness by 6%. +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9121# +An egg in which a Orc Hero pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +ATK +1% +-------------------------- +When intimacy is Neutral: +ATK +2% +-------------------------- +When intimacy is Cordial: +ATK +3% +Increases Critical Damage by 1%. +-------------------------- +When intimacy is Loyal: +ATK +7% +Increases Critical Damage by 3%. +-------------------------- +Type: Monster Egg +Diet: Luxurious Pet Food +# +9122# +An egg in which a Gloom Under Night pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +MATK +10 +-------------------------- +When intimacy is Neutral: +MATK +20 +-------------------------- +When intimacy is Cordial: +MATK +30 +Increases Magical Damage with Ghost and ire element by 5%. +-------------------------- +When intimacy is Loyal: +MATK +40 +Increases Magical Damage with Ghost and ire element by 7%. +-------------------------- +Type: Monster Egg +Diet: Luxurious Pet Food +# +9123# +An egg in which a Child Admin Beta Pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Neutral: +Increases Damage against monsters in Vivarium Lost Valley and Sewage Treatment Plant maps by 3%. +-------------------------- +When intimacy is Cordial: +Increases Damage against monsters in Vivarium Lost Valley and Sewage Treatment Plant maps by 6%. +-------------------------- +When intimacy is Loyal: +Increases Damage against monsters in Vivarium Lost Valley and Sewage Treatment Plant maps by 10%. +-------------------------- +Type: Monster Egg +Diet: Cloud Cotton +# +9124# +An egg in which a Child Admin Alpha Pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Neutral: +Increases Damage against monsters in Magic Power Plant and Storage Tartarus maps by 4%. +-------------------------- +When intimacy is Cordial: +Increases Damage against monsters in Magic Power Plant and Storage Tartarus maps by 8%. +-------------------------- +When intimacy is Loyal: +Increases Damage against monsters in Magic Power Plant and Storage Tartarus maps by 15%. +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9125# +An egg in which a Wandering Duck Doll Pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +Perfect HIT +5% +-------------------------- +When intimacy is Loyal: +Perfect HIT +10% +-------------------------- +Type: Monster Egg +Diet: Cotton Wads +# +9126# +An egg in which a Kiel-D-01 pet rests. +Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +Increases Attack Speed (Decreases After Attack Delay by 4%). +HIT +9 +-------------------------- +When intimacy is Neutral: +Increases Attack Speed (Decreases After Attack Delay by 5%). +HIT +12 +Increases Melee Physical Damage by 1%. +-------------------------- +When intimacy is Cordial: +Increases Attack Speed (Decreases After Attack Delay by 6%). +HIT +15 +Increases Melee Physical Damage by 3%. +-------------------------- +When intimacy is Loyal: +Increases Attack Speed (Decreases After Attack Delay by 7%). +HIT +18 +Increases Melee Physical Damage by 5%. +-------------------------- +Type: Monster Egg +Diet: Luxurious Pet Food +# +9128# +An egg in which a Dark Priest pet rests. Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +INT +1 +Increases Magical Damage against enemies of Holy element by 3%. +-------------------------- +When intimacy is Loyal: +INT +2 +Increases Magical Damage against enemies of Holy element by 5%. +-------------------------- +Type: Monster Egg +Diet: Evil Water +# +9129# +An egg in which a Desert Wolf pet rests. Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +INT +1, MaxSP +50 +-------------------------- +When intimacy is Neutral: +INT +2, MaxSP +75 +-------------------------- +When intimacy is Cordial: +INT +3, MaxSP +105 +Increases continuous Magical Damage by 3%. +-------------------------- +When intimacy is Loyal: +INT +4, MaxSP +130 +Increases continuous Magical Damage by 3%. +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9130# +An egg in which a Chaos Baphomet Jr. pet rests. Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +FLEE +6 +-------------------------- +When intimacy is Neutral: +FLEE +9, MaxSP +1%. +-------------------------- +When intimacy is Cordial: +FLEE +12, MaxSP +2%. +-------------------------- +When intimacy is Loyal: +FLEE +15, MaxSP +3%. +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9131# +An egg in which a Flame Golem pet rests. Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +MaxHP +200 +-------------------------- +When intimacy is Neutral: +MaxHP +300 +-------------------------- +When intimacy is Cordial: +MaxHP +400 +Increases Magical Damage with Fire element by 3%. +-------------------------- +When intimacy is Loyal: +MaxHP +500 +Increases Magical Damage with Fire element by 5%. +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9137# +An egg in which a Baphoment pet rests. Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +FLEE +8, MaxSP +1% +-------------------------- +When intimacy is Neutral: +FLEE +12, MaxSP +3% +Increases Ranged Physical Damage by 1%. +-------------------------- +When intimacy is Cordial: +FLEE +16, MaxSP +5% +Increases Ranged Physical Damage by 3%. +-------------------------- +When intimacy is Loyal: +FLEE +20, MaxSP +7% +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Monster Egg +Diet: Luxurious Pet Food +# +9138# +An egg in which a Familiar pet rests. Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Cordial: +INT +3 +Increases resistance to Curse status by 10%. +-------------------------- +When intimacy is Loyal: +INT +5 +Increases resistance to Curse status by 20%. +-------------------------- +Type: Monster Egg +Diet: Complex Fruit Juice +# +9139# +An egg in which a Dark Illusion pet rests. Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +Decreases Variable Casting Time by 2%. +-------------------------- +When intimacy is Neutral: +Decreases Variable Casting Time by 3%. +-------------------------- +When intimacy is Cordial: +Decreases Variable Casting Time by 4%. +Increases Magical Damage with Shadow element by 3%. +-------------------------- +When intimacy is Loyal: +Decreases Variable Casting Time by 5%. +Increases Magical Damage with Shadow element by 5%. +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9140# +An egg in which a Blue Moon Loli Ruri pet rests. Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +VIT +1, MaxHP +1% +-------------------------- +When intimacy is Neutral: +VIT +2, MaxHP +2% +-------------------------- +When intimacy is Cordial: +VIT +3, MaxHP +3% +Random chance to auto-cast Level 2 Kyrie Eleison on yourself when recieving physical damage. +(If you learned a higher Level, it will auto cast that Level instead.) +-------------------------- +When intimacy is Loyal: +VIT +4, MaxHP +5% +Random chance to auto-cast Level 2 Kyrie Eleison on yourself when recieving physical damage. +(If you learned a higher Level, it will auto cast that Level instead.) +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9141# +An egg in which a Wild Rose pet rests. Can be hatched by using a Pet Incubator. +-------------------------- +When intimacy is Awkward: +Critical +2 +-------------------------- +When intimacy is Neutral: +Critical +3 +-------------------------- +When intimacy is Cordial: +Critical +5 +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +When intimacy is Loyal: +Critical +7 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Type: Monster Egg +Diet: Pet Food +# +9159# +Epic Egg: +An egg in which a Chimera rests. +This pet will Give stats when you pop out. +-------------------------- +Vit + 5 +HP Recovery + 50% +Healing Items effectiveness +10% (HP/SP) +-------------------------- +Collection Effect +Hp Recovery Rate +30% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9160# +Epic Egg: +An egg in which a Dark Illusion rests. +This pet will Give stats when you pop out. +-------------------------- +Int + 5 +SP Recovery + 10% +Mdef + 10 +-------------------------- +Collection Effect +Mdef +5 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9161# +Epic Egg: +An egg in which a Ghostring rests. +This pet will Give stats when you pop out. +-------------------------- +Dex + 5 +Hit + 15 +Long Ranged Attack Damage + 5% +-------------------------- +Collection Effect +Long Ranged Attack Damage + 2% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9162# +Epic Egg: +An egg in which a Gryphon rests. +This pet will Give stats when you pop out. +-------------------------- +Luk + 5 +Perfect Dodge + 5 +Flee + 20 +-------------------------- +Collection Effect +Perfect Dodge +3 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9163# +Epic Egg: +An egg in which a Hydro rests. +This pet will Give stats when you pop out. +-------------------------- +Critical Rate + 10 +Critical Damage + 5% +Max HP + 5% +-------------------------- +Collection Effect +Cri Rate +5 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9164# +Epic Egg: +An egg in which a Maya Purple rests. +This pet will Give stats when you pop out. +-------------------------- +Atk + 10 / Matk + 10 +Atk + 4% / Matk + 4% +Max SP + 5% +-------------------------- +Collection Effect +Atk +5 +Matk +5 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9165# +Epic Egg: +An egg in which a Mutant Dragon rests. +This pet will Give stats when you pop out. +-------------------------- +Atk + 15 +Atk + 5% +Increases resistance against Frozen status by 50% +-------------------------- +Collection Effect +Atk +3% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9166# +Epic Egg: +An egg in which a Owl Baron rests. +This pet will Give stats when you pop out. +-------------------------- +Matk + 15 +Matk + 5% +Variable Cast Time - 15% +-------------------------- +Collection Effect +Matk +3% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9167# +Legendary Egg: +An egg in which a Doppelganger rests. +This pet will Give stats when you pop out. +-------------------------- +Str + 10 +Weight Limit + 5000 +Def + 100 +Has a 5% chance to recover 777 HP per second for 5 times when dealing physical damage. +-------------------------- +Collection Effect +Def +50 +Weight Limit +3000 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9168# +Legendary Egg: +An egg in which a Maya rests. +This pet will Give stats when you pop out. +-------------------------- +Vit + 10 +HP Recovery + 100% +Increases effectiveness of Healing skills by 20% +Increase resistance to Neutral Property attacks by 15% +-------------------------- +Collection Effect +Healing Items effectiveness +10% (HP/SP) +Increase resistance to Neutral Property attacks by 10% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9169# +Legendary Egg: +An egg in which a Baphomet rests. +This pet will Give stats when you pop out. +-------------------------- +Dex + 10 +Hit + 30 +Long Range Attack Damage + 10% +SP Consumption - 20% +-------------------------- +Collection Effect +Dex +5 +Long Range Attack +5% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9170# +Legendary Egg: +An egg in which a Mistress rests. +This pet will Give stats when you pop out. +-------------------------- +Luk + 10 +Perfect Dodge + 10 +Flee + 30 +Decrease fixed cast time by 20% +-------------------------- +Collection Effect +Perfect Dodge +5 +Reduce the fixed cast time on skills by 10% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9171# +Legendary Egg: +An egg in which a Eddga rests. +This pet will Give stats when you pop out. +-------------------------- +Critical Rate + 15 +Critical Damage 10% +Max HP + 10% +Add a 3% chance of auto casting Level 1 Lex Aeterna on an enemy when attacking. +-------------------------- +Collection Effect +Cri Rate +10 +Cri Damage +10% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9172# +Legendary Egg: +An egg in which a Osiris rests. +This pet will Give stats when you pop out. +-------------------------- +Atk + 20 / Matk + 20 +Atk + 9% / Matk + 9% +Max SP + 10% +Increase Damage & Magic Damage to Player w/o monster by 5% +-------------------------- +Collection Effect +Atk +10 +Matk +10 +Atk +5% +Matk +5% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9173# +Legendary Egg: +An egg in which a Dark Lord rests. +This pet will Give stats when you pop out. +-------------------------- +Atk + 30 +Atk + 10% +Immunity to Frozen status. +Pierces physical defense of all monsters w/o player by 10% +-------------------------- +Collection Effect +Atk +15 +Pierces physical defense of all monsters w/o player by 5% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9174# +Legendary Egg: +An egg in which a Stormy Knight rests. +This pet will Give stats when you pop out. +-------------------------- +Matk + 30 +Matk + 10% +Variable Cast Time - 35% +Pierces magical defense of all monsters w/o player by 10% +-------------------------- +Collection Effect +Matk +15 +Pierces magical defense of all monsters w/o player by 5% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9175# +Uncommon Egg: +An egg in which a Poring pet rests. +This pet will Give stats when you pop out. +-------------------------- +Vit + 1 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9176# +Uncommon Egg: +An egg in which a Drops pet rests. +This pet will Give stats when you pop out. +-------------------------- +Dex + 1 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9177# +Uncommon Egg: +An egg in which a Poporing pet rests. +This pet will Give stats when you pop out. +-------------------------- +Atk + 1 / Matk + 1 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9178# +Uncommon Egg: +An egg in which a Lunatic pet rests. +This pet will Give stats when you pop out. +-------------------------- +Luk + 1 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9179# +Uncommon Egg: +An egg in which a Picky pet rests. +This pet will Give stats when you pop out. +-------------------------- +Str + 1 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9180# +Uncommon Egg: +An egg in which a Chonchon pet rests. +This pet will Give stats when you pop out. +-------------------------- +Agi + 1 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9181# +Uncommon Egg: +An egg in which a Baby Desert Wolf pet rests. +This pet will Give stats when you pop out. +-------------------------- +Int + 1 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9182# +Uncommon Egg: +An egg in which a Rocker pet rests. +This pet will Give stats when you pop out. +-------------------------- +Atk + 2 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9183# +Uncommon Egg: +An egg in which a Spore pet rests. +This pet will Give stats when you pop out. +-------------------------- +Critical Rate + 1 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9184# +Uncommon Egg: +An egg in which a Pecopeco pet rests. +This pet will Give stats when you pop out. +-------------------------- +Matk + 2 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9185# +Rare Egg: +An egg in which a Orc Warrior rests. +This pet will Give stats when you pop out. +-------------------------- +Luk + 3 +Perfect Dodge + 3 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9186# +Rare Egg: +An egg in which a Sohee rests. +This pet will Give stats when you pop out. +-------------------------- +Str + 3 +Weight Limit + 100 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9187# +Rare Egg: +An egg in which a Isis rests. +This pet will Give stats when you pop out. +-------------------------- +Agi + 3 +ASPD + 1% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9188# +Rare Egg: +An egg in which a Green Petite rests. +This pet will Give stats when you pop out. +-------------------------- +Vit + 3 +HP Recovery + 5% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9189# +Rare Egg: +An egg in which a Deviruchi rests. +This pet will Give stats when you pop out. +-------------------------- +Int + 3 +SP Recovery + 5% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9190# +Rare Egg: +An egg in which a Baphomet Jr. rests. +This pet will Give stats when you pop out. +-------------------------- +Dex + 3 +Hit + 5 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9191# +Rare Egg: +An egg in which a Bongun rests. +This pet will Give stats when you pop out. +-------------------------- +Atk + 3 / Matk + 3 +Atk + 1% / Matk + 1% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9192# +Rare Egg: +An egg in which a Alice rests. +This pet will Give stats when you pop out. +-------------------------- +Critical Rate + 3 +Critical Damage + 2% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9193# +Rare Egg: +An egg in which a Incubus rests. +This pet will Give stats when you pop out. +-------------------------- +Atk + 5 +Atk + 1% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9194# +Rare Egg: +An egg in which a Succubus rests. +This pet will Give stats when you pop out. +-------------------------- +Matk + 5 +Matk + 1% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9195# +Epic Egg: +An egg in which a Angeling rests. +This pet will Give stats when you pop out. +-------------------------- +Str + 5 +Weight Limit + 300 +Def + 25 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9196# +Epic Egg: +An egg in which a Cat o' Nine Tails rests. +This pet will Give stats when you pop out. +-------------------------- +Agi + 5 +ASPD + 2% +Movespeed Bonus 3% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9197# +Epic Egg: +An egg in which a Chimera rests. +This pet will Give stats when you pop out. +-------------------------- +Vit + 5 +HP Recovery + 10% +Increases the recovery rate of recovery skills by 3% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9198# +Epic Egg: +An egg in which a Dark Illusion rests. +This pet will Give stats when you pop out. +-------------------------- +Int + 5 +SP Recovery + 10% +Mdef + 5 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9199# +Epic Egg: +An egg in which a Ghostring rests. +This pet will Give stats when you pop out. +-------------------------- +Dex + 5 +Hit + 10 +Long Ranged Attack Damage + 5% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9200# +Epic Egg: +An egg in which a Gryphon rests. +This pet will Give stats when you pop out. +-------------------------- +Luk + 5 +Perfect Dodge + 5 +Flee + 10 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9201# +Epic Egg: +An egg in which a Hydro rests. +This pet will Give stats when you pop out. +-------------------------- +Critical Rate + 5 +Critical Damage + 5% +Max HP + 5% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9202# +Epic Egg: +An egg in which a Maya Purple rests. +This pet will Give stats when you pop out. +-------------------------- +Atk + 5 / Matk + 5 +Atk + 2% / Matk + 2% +Max SP + 3% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9203# +Epic Egg: +An egg in which a Mutant Dragon rests. +This pet will Give stats when you pop out. +-------------------------- +Atk + 10 +Atk + 3% +Increases resistance against Frozen status by 20% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9204# +Epic Egg: +An egg in which a Owl Baron rests. +This pet will Give stats when you pop out. +-------------------------- +Matk + 10 +Matk + 3% +Variable Cast Time - 5% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9205# +Event Egg: +An egg in which a Luna rests. +This pet will Give stats when you pop out. +-------------------------- +All Status + 5 +Expiration date 31-12-2023 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9206# +An egg in which a Crystal rests. +This pet will Give stats when you pop out. +Critical Rate + 50 +Expiration date 18-02-2024 +No effect in WoE areas +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9207# +Adopt your very own Ultraman pet! This adorable creature will bring you joy and happiness. +This pet will Give stats when you pop out. +MaxHp +1000 +MaxSp +50 +Def +30 +Mdef +15 +Flee +15 +Atk +15 +Matk +15 +Critical Dmg +15% +Variable Cast Time - 10% +Aspd +1 +Expiration date 24-03-2024 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9208# +An egg in which a Imp rests. +This pet will Give stats when you pop out. +-------------------------- +There's a 10% chance of dropping a Fire Potion when defeating monsters +-------------------------- +Provides 10% resistance to both physical and magical attacks from fire elements +-------------------------- +Increases physical and magical attack power by 10% for fire elements +-------------------------- +When dealing physical damage, there is a chance to cast Fire Bolt Level 5 on the enemy +-------------------------- +Expiration date 8-05-2025 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9209# +When you open it you will receive Nose Tea Monster +To improve the following capabilities +-------------------------- +If digested, it will be received [Event] Adventure ROL Scroll 5 ea +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9210# +Uncommon Egg: +An egg in which a Savage Babe pet rests. +This pet will Give stats when you pop out. +-------------------------- +Agi +1, Dex +1 +-------------------------- +Collection Effect +Weight limit+20 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9211# +Rare Egg: +An egg in which a Smokie rests. +This pet will Give stats when you pop out. +-------------------------- +Flee + 5 +Long Range Attack + 2% +-------------------------- +Collection Effect +Long Range Attack + 1% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9212# +Epic Egg: +An egg in which a Zealotus rests. +This pet will Give stats when you pop out. +-------------------------- +Agi +2, Dex +2 +Flee + 15 +Sp Consumption -10% +-------------------------- +Collection Effect +Flee + 7 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9213# +Legendary Egg: +An egg in which a Dracula rests. +This pet will Give stats when you pop out. +-------------------------- +Agi +5, Dex +5 +Flee + 30 +Immunity to Stone Curse status. +4% chance of restoring 3% of damage as HP when performing a physical attack +-------------------------- +Collection Effect +Flee + 15 +2% chance of restoring 1% of damage as HP when performing a physical attack. +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9214# +Uncommon Egg: +An egg in which a Snake pet rests. +This pet will Give stats when you pop out. +-------------------------- +STR +1 / ATK +1 +-------------------------- +Collection Effect +ATK +1 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9215# +Rare Egg: +An egg in which a Side Winder pet rests. +This pet will Give stats when you pop out. +-------------------------- +STR +2 / ATK +2 +Increases Melee physical attack by 2% +-------------------------- +Collection Effect +Increases Melee physical attack by 1% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9216# +Epic Egg: +An egg in which a Medusa pet rests. +This pet will Give stats when you pop out. +-------------------------- +Str +5 +ATK +10 +Increases Melee physical attack by 5% +-------------------------- +Collection Effect +Increases Melee physical attack by 2% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9217# +Legendary Egg: +An egg in which a Evil Snake Lord pet rests. +This pet will Give stats when you pop out. +-------------------------- +Str +10, Vit +10 +Hp +6000 +Receive 20% less damage from Medium size monster. +Random chance to inflict Stone Curse, Stun, Silence, Chaos, Curse on attacker when receiving physical damage. +-------------------------- +Collection Effect +HP + 15% +Str +4, Vit +4 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9218# +Uncommon Egg: +Pet eggs that have Ambernite Staying inside +This pet will grant status bonuses when you hatch it. +-------------------------- +AGI +1 / LUK +1 +-------------------------- +Collection Ability +FLEE + 1 / CRI + 1 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9219# +Rare Egg: +Pet eggs that have Cornutus Staying inside +This pet will grant status bonuses when you hatch it. +-------------------------- +DEF+ 5 +MDEF+ 3 +-------------------------- +Collection Ability +HP + 300 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9220# +Epic Egg: +Eggs that have Assulter A cute pet is sleeping inside. +Can be hatched using Pet Incubator +-------------------------- +ATK+15 +Has a 2% chance to restore HP by 2% of the physical damage dealt. +Has a 2% chance to recover SP for 2% of physical damage dealt. +-------------------------- +Collection Ability +Has a 1% chance to restore SP by 1% of the physical damage dealt. +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9221# +Legendary Egg: +Eggs that have Pet Turtle General Sleeping soundly +This pet will grant a status bonus when you hatch it. +-------------------------- +MDEF + 20 +DEF + 50 +Reduces damage from Earth, Water, Wind, and Fire elements by 15%. +Has a 3% chance to cast Assumptio Lv.2 when receiving physical and magic attacks. +-------------------------- +Collection Ability +Reduces damage from Earth, Water, Wind, and Fire elements by 5%. +HP + 5% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9222# +Uncommon Egg: +Pet eggs that have False Angel Staying inside +This pet will grant status bonuses when you hatch it. +-------------------------- +INT +1 / VIT +1 +-------------------------- +Collection Ability +SP +10 / HP+ 30 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9223# +Rare Egg: +Pet eggs that have Dame of Sentinel Staying inside +This pet will grant status bonuses when you hatch it. +-------------------------- +Movement Speed +2% +MDEF+ 5 +-------------------------- +Collection Ability +Movement Speed +1% +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9224# +Epic Egg: +Eggs that have Arc Angeling A cute pet is sleeping inside. +Can be hatched using Pet Incubator +-------------------------- +VIT+5 +Increases resistance to Neutral element by 7%. +Has a 5% chance to cast Sanctuary Lv.3 when hit by physical or magical attacks. +-------------------------- +Collection Ability +Increases resistance to Neutral element by 4%. +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9225# +Legendary Egg: +Eggs that have Pet Valkyrie Randgris Staying inside +This pet will grant a status bonus when you hatch it. +-------------------------- +Dex+5 / INT+5 +Reduces damage taken from all types of monsters by 7%. +Fix Cast Time - 0.1s +Has a 3% chance to automatically cast Land Protector Lv.1 when receiving physical or magical attacks. +-------------------------- +Collection Ability +Dex +3 / INT +3 +Reduces casting time by 10%. +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9226# +Uncommon Egg: +Eggs that have Muka Egg A cute pet is sleeping inside. +Can be hatched using Pet Incubator +-------------------------- +VIT +1 / DEF +5 +-------------------------- +Collection Effect +DEF +1 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9227# +Rare Egg: +Pet eggs that have Alligator Staying inside +This pet will grant status bonuses when you hatch it. +-------------------------- +Dex +5 +Decreases Variable Casting Time by 5%. +-------------------------- +Collection Ability +Dex +2 / Decreases Variable Casting Time by 2%. +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9238# +Epic Egg: +Eggs that have Mavka A cute pet is sleeping inside. +Can be hatched using Pet Incubator +-------------------------- +VIT +3 +DEF +25 +Adds a 5% chance to recover 120 HP per 1 sec for 5 secs when performing a physical attack or a magical attack. +-------------------------- +Collection Effect +DEF +10 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9240# +Rare Egg: +Pet eggs that have Parasite Staying inside +This pet will grant status bonuses when you hatch it. +-------------------------- +VIT +2 / DEF +10 +Adds a 3% chance to recover 40 HP per 1 sec for 5 secs when performing a physical attack or a magical attack. +-------------------------- +Collection Ability +DEF +5 +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9244# +Pet eggs that have Malicious Pitaya Staying inside +This pet will grant status bonuses when you hatch it. +-------------------------- +Adds a 1% chance to restore 2% of damage as HP when performing a physical attack. + +Adds a 2% chance to restore 100 HP every second for 5 seconds when performing magical attack. +-------------------------- +Effect expired: 11 September 2025 after MA. +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9245# +Pet eggs that have Spiritual Pitaya Staying inside +This pet will grant status bonuses when you hatch it. +-------------------------- +Adds a 1% chance to restore 1% of damage as SP when performing a physical attack. + +Adds a 2% chance to restore 20 SP every second for 5 seconds when performing magical attack. +-------------------------- +Effect expired: 11 September 2025 after MA. +-------------------------- +Type: Monster Egg +-------------------------- +Weight: 0 +# +9510# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +Sura Stone II(Garment) +Sorcerer Stone II(Garment) +Shadow Chaser Stone II(Garment) +and 9 enchantment stones more have been added. +Stones from existing costume enchant stone boxes can also be obtained with a relatively low chance. +-------------------------- +Weight: 1 +# +9514# +Permit to enchant an Einbech weapon with a special ability. +Can be modified by physical ability. +-------------------------- +[Enchantable Items] +Grinder Huuma Shuriken +Rubber Hammer +Welding Wand +Detecting Staff +Metal Detector Mk47 +Jewel Detector Mk47 +Blocking Spear +Saw Axe +Claw Sword +Safety Knuckles +Safety Whip +Safety Manual +Safety Lute +Safety Saber +Safety Foxtail +Bolt Crusher +Bolt Shooter +Bolt Revolver +-------------------------- +Weight: 1 +# +9515# +-------------------------- +Weight: 1 +# +9517# +Unidentified gemstone +If you remove the soil that covers the surface, you can see what kind of ore it is. +-------------------------- +Weight: 1 +# +9523# +A ticket that can strengthen weapons made of steel. +If you put the following weapons, you can get +7 refined Metal weapons. +-------------------------- +Metal Dagger[1] +Metal Two-Handed Sword[1] +Metal Two-Handed Axe[1] +Metal Lance[1] +Metal Katar[1] +Metal Book[1] +Metal Bow[1] +Metal Staff[1] +Metal Mace[1] +Metal Revolver[1] +Huuma Metal Shuriken[1] +Metal Foxtail[1] +-------------------------- +Weight: 0 +# +9529# +Permit to enchant an Einbech weapon with a special ability. +Can be modified with magical abilities. +-------------------------- +[Enchantable Items] +Grinder Huuma Shuriken +Rubber Hammer +Welding Wand +Detecting Staff +Metal Detector Mk47 +Jewel Detector Mk47 +Blocking Spear +Saw Axe +Claw Sword +Safety Knuckles +Safety Whip +Safety Manual +Safety Lute +Safety Saber +Safety Foxtail +Bolt Crusher +Bolt Shooter +Bolt Revolver +-------------------------- +Weight: 1 +# +9530# +PC Room 300 Points Reward Costume Box +-------------------------- +Weight: 1 +# +9539# +A box containing 10x [Event] Blue Potions. +Perfect for taking out andd writing whenever you need it. +-------------------------- +\ +-------------------------- +Weight: 0 +# +9550# +Jewel with timeless power. +It is said that special abilities can be given to special armors that respond to the power of time. +-------------------------- +[Enchantable Items] +Soaring Power Armor[1] +Strong Magic Armor[1] +Hardened Vitality Armor[1] +Excellent Dexterity Armor[1] +Brilliant Rapid Armor[1] +Unexpected Lucky Armor[1] +-------------------------- +Gemstone of Time can be obtained from +[Cat Salesman Nyarom]itemmall,41,50,0,100,0,0, +by using Silvervine Cat Fruit or Zeny. +-------------------------- +Weight: 0 +# +9551# +The key with timeless power. +It is said that special abilities can be given to special manteaus that respond to the power of time. +-------------------------- +[Enchantable Items] +Temporal STR Manteau[1] +Temporal AGI Manteau[1] +Temporal VIT Manteau[1] +Temporal INT Manteau[1] +Temporal DEX Manteau[1] +Temporal LUK Manteau[1] +-------------------------- +Seal of Time Key can be obtained from +[Cat Salesman Nyarom]itemmall,41,50,0,100,0,0, +by using Silvervine Cat Fruit or Zeny. +-------------------------- +Weight: 0 +# +9553# +A box containing one Infinite Cat Hand Ticket that can be used for a week. +-------------------------- +Rental Item +A Cat Hand Ticket issue from the Cat Hand Headquarters. +The service from the Cat Hand Headquarters where business grows year after year. +When used, you can use the Cat Hand Storage Service. +-------------------------- +Weight: 1 +-------------------------- +Box Weight: 1 +# +9569# +Noodles boiled with white and smooth noodles and garnished with broth. Make and share on special days. +-------------------------- +Decreases damage taken from Fire elemental attacks by 7% for 15 minutes. +Increases Attack Speed (Decreases After Attack Delay by 7%). +Decreases Variable Casting Time by 7%. +-------------------------- +Weight: 0 +# +9581# +A card that got wet and sloppy. It seems to have to be opened carefully so as not to tear. +-------------------------- +Weight: 0 +# +9582# +They gathered small flower branches and made them gorgeous. +-------------------------- +FLEE +30, Perfect Dodge +2, Increases Attack Speed (Decreases After Attack Delay by 5%) and Decreases Variable Casting Time by 5% for 30 minutes. +-------------------------- +Weight: 10 +# +9585# +A branch of a flowering tree with bright spring flowers in bloom. When you shake a branch full of flowers, you can feel the vitality with a dense floral scent. +-------------------------- +MaxHP/Max HP +3% for 10 minutes. +-------------------------- +Weight: 5 +# +9586# +Box containing 2019 Superstar R tickets. +It's specially sealed, so you don't know how many sheets it contains until you open it. +-------------------------- +Weight: 0 +# +9587# +A package containing 20 each of [Event] Small Life Potion, [Event] Medium Life Potion and [Event] Mysterious Life Potion. +-------------------------- +Weight: 0 +# +9588# +A box containing 20 [Event] Brilliant Protection Scrolls. +-------------------------- +Weight: 0 +# +9589# +A box containing 10 [Event] Almighty. +-------------------------- +Weight: 0 +# +9590# +A box containing 10 [Event] Power Booster. +-------------------------- +Weight: 0 +# +9610# +The water of life made by condensing this and that recovery potion on the market. It tastes medium to small. +-------------------------- +When used, restores 4% MaxHP every 3 seconds for 10 minutes. +The effect does not activate in Berserk. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +9785# +A mysterious box that refines a +4 Illusion of Underwater equipment to +7~10 randomly. +-------------------------- +[Target Item] +Illusion Huuma Fluttering Snow, +Illusion Combo Battle Gloves, +Illusion Cap, +Illusion Survivor's Manteau, +Illusion Illusion Herald of God. +-------------------------- +Weight: 1 +# +9897# +The right size button for the doll. +I think a duck doll who likes to be shiny because it is shiny will like it. +-------------------------- +Type: Taming Item +Monster: Wandering Duck Doll +Weight: 1 +# +9932# +A box containing secret royal items. +-------------------------- +Weight: 1 +# +9933# +A refinement package that refines Trois Equipment to +9 provided in hunting competitions. +Someone's note is on it. +\ + +-------------------------- +[Target Items] +Troi Hunting Mail[1] +Troi Hunting Manteau[1] +Troi Hunting Boots[1] +-------------------------- +Weight: 1 +# +9934# +A kit that enables additional custom crafting on trois equipment provided at hunting competitions. +-------------------------- +[Target Items] +Troi Hunting Mail[1] +Troi Hunting Manteau[1] +Troi Hunting Boots[1] +Troi Hunting Physical Ring[1] +Troi Hunting Magical Ring[1] +-------------------------- +Weight: 1 +# +9935# +A kit that enables additional custom crafting on trois equipment provided at hunting competitions. +-------------------------- +[Target Items] +Troi Hunting Mail[1] +Troi Hunting Manteau[1] +Troi Hunting Boots[1] +Troi Hunting Physical Ring[1] +Troi Hunting Magical Ring[1] +-------------------------- +Weight: 1 +# +9991# +A box containing 1 Boarding Halter. Available for 7 days. +-------------------------- +A mysterious halter that can be used to summon a creature to ride on it. +The type of creature depends on the Class. +-------------------------- +Weight: 1 +# +9999# +Ambitiously organized by the Sweets Festival Committee +It is said that the snack box is specially sealed to prevent melting. +Be careful not to shake! +-------------------------- +Weight: 0 +# +10001# +A pristine helmet made from an animal skull. +-------------------------- +Type: Cute Pet Accessory +Pet: Baphomet Jr. +# +10002# +A protective mask for tiny Cute Pets. +-------------------------- +Type: Cute Pet Accessory +Pet: Chonchon, Steel Chonchon, Hunter Fly +# +10003# +A round, bubble-like helmet that offers magical protection to Cute Pets. +-------------------------- +Type: Cute Pet Accessory +Pet: Baby Desert Wolf +# +10004# +A rubber device that helps babies endure teething, but can also be used to silence noisy Cute Pets. +-------------------------- +Type: Cute Pet Accessory +Pet: Deviruchi +# +10005# +A multi-colored wig usually worn by clowns. +-------------------------- +Type: Cute Pet Accessory +Pet: Dokkaebi +# +10006# +A hair accessory, said to be worn by an ancient queen, that is fitting for vain, yet glamorous, Cute Pets. +-------------------------- +Type: Cute Pet Accessory +Pet: Isis +# +10007# +A cute ribbon knit from smooth silk that would look cute on a fluffy Cute Pet. +-------------------------- +Type: Cute Pet Accessory +Pet: Lunatic +# +10008# +A club that, in the olden days, was used to punish stupidity in classrooms. +-------------------------- +Type: Cute Pet Accessory +Pet: Munak +# +10009# +A wildflower whose scent is so nice that even the most savage of warriors will admit to enjoying its fragrance. +-------------------------- +Type: Cute Pet Accessory +Pet: Orc Warrior +# +10010# +An old cooking pot that is just perfect(?) for placing on a Peco Peco's head. +-------------------------- +Type: Cute Pet Accessory +Pet: Peco Peco +# +10011# +A hairpin decorated with cute little stars. +-------------------------- +Type: Cute Pet Accessory +Pet: Green Petite +# +10012# +A cup shaped fragment of eggshell that would fit on top of a baby chick's head. +-------------------------- +Type: Cute Pet Accessory +Pet: Picky +# +10013# +A backpack made especially for short, round shaped, bouncy children or Cute Pets. +-------------------------- +Type: Cute Pet Accessory +Pet: Poring, Drops, Poporing +# +10014# +A pair of eyeglasses that make its wearer look like a total geek. +-------------------------- +Type: Cute Pet Accessory +Pet: Rocker +# +10015# +Green lace that can be worn by a baby, or even a piglet. +-------------------------- +Type: Cute Pet Accessory +Pet: Savage Bebe +# +10016# +A golden bell that can be worn in the hair of an adorable Cute Pet. +-------------------------- +Type: Cute Pet Accessory +Pet: Sohee +# +10017# +A pair of crude shorts made from rough tree bark. +-------------------------- +Type: Cute Pet Accessory +Pet: Spore, Poison Spore +# +10018# +A circlet made to fit a monkey, just like in the old Monkey Hero tales. +-------------------------- +Type: Cute Pet Accessory +Pet: Yoyo +# +10019# +A very stylish crimson muffler inspired by the one worn by a retro hero. +-------------------------- +Type: Cute Pet Accessory +Pet: Smokie +# +10020# +A ceremonial sword used by gravekeepers to lead the dead to the great beyond. +-------------------------- +Type: Cute Pet Accessory +Pet: Bongun +# +10021# +A circular shape, headgear for a Goddess. +-------------------------- +Type: Cute Pet Accessory +Pet: Bacsojin +# +10022# +Old fashioned gold Earring. +-------------------------- +Type: Cute Pet Accessory +Pet: Civil Servant +# +10023# +Green silk jewelery pouch. Contains some random stuffs and snack. +-------------------------- +Type: Cute Pet Accessory +Weight: 0 +Pet: Leaf Cat +# +10024# +Red and blue fashionable glasses that aren't suited for everyone. +-------------------------- +Type: Cute Pet Accessory +Pet: Loli Ruri +# +10025# +A headgear that a little girl would like, star shaped. +-------------------------- +Type: Cute Pet Accessory +Pet: Marionette +# +10026# +A tassel at the end of a durumagi. Antique feeling. +-------------------------- +Type: Cute Pet Accessory +Pet: Shinobi +# +10027# +Accessory only for the dead. Gold and shiny. +-------------------------- +Type: Cute Pet Accessory +Pet: Whisper +# +10028# +A badge that indicates of high rank. Has a symbol of a special flower. +-------------------------- +Type: Cute Pet Accessory +Pet: Goblin Leader +# +10029# +Oriental accessory made of a mysterious green stone. +-------------------------- +Type: Cute Pet Accessory +Weight: 0 +Pet: Wicked Nymph +# +10030# +Everyone needs this for summer. It has a refreshing drawing. +-------------------------- +Type: Cute Pet Accessory +Pet: Miyabi Ningyo +# +10031# +A ring that symbolizes one who surpassed death. It feels like metal and it's cold. +-------------------------- +Type: Cute Pet Accessory +Pet: Dullahan +# +10032# +A symbol of authority of high ranked women. Has a regal sense of feeling. +-------------------------- +Type: Cute Pet Accessory +Pet: Medusa +# +10033# +Hairstyle that had huge sensation. It's for outstanding. +-------------------------- +Type: Cute Pet Accessory +Pet: Stone Shooter +# +10034# +A mask to disguise yourself in a party. Its gorgeously decorated. +-------------------------- +Type: Cute Pet Accessory +Pet: Incubus +# +10035# +It imitated a device for exterior power of an ancient toy. It looks kind of cute. +-------------------------- +Type: Cute Pet Accessory +Pet: Golem +# +10036# +Horrifying horn from hell. It only has horrifying feeling not like the unicorn's. +-------------------------- +Type: Cute Pet Accessory +Pet: Nightmare Terror +# +10037# +A mask that looks like a wing of a huge black butterfly decorated with beautiful symbols. +-------------------------- +Type: Cute Pet Accessory +Pet: Succubus +# +10038# +A protective barrier for an Imp's horn. +-------------------------- +Type: Cute Pet Accessory +Pet: Imp +# +10039# +Backpack flag sticking out the side of the gap, quite unpatriotic. +-------------------------- +Type: Cute Pet Accessory +Pet: Marin +# +10040# +A cute red collar with a bell attached in front of it. +It seem fits well when wore by a small animal. +-------------------------- +Type: Cute Pet Accessory +Pet: Scatleton +# +10042# +A cool looking dark mane, you will feel like a true king. +-------------------------- +Type: Cute Pet Accessory +Pet: Skelion +# +10043# +We added cuteness to a little antenna on a headdress. +-------------------------- +Type: Cute Pet Accessory +Pet: Child Admin Beta +# +10044# +The performance is enhanced by both the cute manager's communication antenna and the cuteness of the head dress. +-------------------------- +Type: Cute Pet Accessory +Pet: Child Admin Alpha +# +10045# +A doll button modeled after a sparkling star. +-------------------------- +Type: Cute Pet Accessory +Pet: Child Admin Alpha +# +10564# +A box that contains 30 Fire Armor Scrolls. +-------------------------- +Endow a character's armor with the Fire element for a 30 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +10565# +A box that contains 30 Water Armor Scrolls. +-------------------------- +Endow a character's armor with the Water element for a 30 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +10566# +A box that contains 30 Wind Armor Scrolls. +-------------------------- +Endow a character's armor with the Wind element for a 30 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +10567# +A box that contains 30 Earth Armor Scrolls. +-------------------------- +Endow a character's armor with the Earth element for a 30 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +10625# +A package that includes 50 Small Mana Potion, 300 Brilliant Protection Scroll, 200 Mysterious Life Potion, 200 Small Life Potion and 200 Medium Life Potion. +In addition, 1 Modified Hero's Weapon Refine Hammer V is included. +-------------------------- +[Modified Hero's Weapon Refine Hammer V] +A refine hammer that increases the refinement level of a specific Hero's Weapon modified by Team Richiet by +1. +It can only be used on Hero's Weapon-LT with refine level between +9 and +11. +Each time it is used, 14 Blacksmith's Blessings are consumed as materials. +-------------------------- +[Target Items] +Oriental Sword-LT +Dragonic Slayer-LT +Katar of Shiver-LT +Blade Katar-LT +-------------------------- +Weight: 1 +# +11000# +A book documenting the history of Prontera. There's a whole chapter dedicated to Tristam III. +# +11001# +A new novel from best selling author, Mihir. +-------------------------- +Weight: 1 +# +11002# +A famous novel by a kRO player that was published in Monthly RO that's entitled \ +-------------------------- +Weight: 1 +# +11003# +A famous novel by a kRO player that was published in Monthly RO that's about the Kafra Corporation. +-------------------------- +Weight: 1 +# +11004# +A worn-out, dusty and badly damaged book that's missing its cover. +-------------------------- +Weight: 1 +# +11005# +A suspicious book stamped with the seal of the Rune-Midgarts Kingdom. +The page with information about the author has been torn out. +-------------------------- +Weight: 1 +# +11006# +A book published in Arunafeltz, the country that worships the goddess Freya. +This story used to be of mouth, but has been religiously embellished in printed form. +-------------------------- +Weight: 1 +# +11007# +A book published in Arunafeltz, the country that worships the goddess Freya. +This story used to be of mouth, but has been religiously embellished. +-------------------------- +Weight: 1 +# +11008# +A book of notes that contains a partial copy of a giant biographical dictionary. +-------------------------- +Weight: 1 +# +11009# +Volume two of the Assassin adventure series written by Mihir, a popular fiction author. +-------------------------- +Weight: 1 +# +11011# +Doctor Varmundt's notebook. +Short memos are written in hand writing. +Most of them are about Thanatos Tower and Historical relics that he discovered. +-------------------------- +Weight: 0 +# +11012# +The first report of the expedition with the Commander's seal. +The report records all the information related to ecological environment, situations of the species and the expedition in another world. +-------------------------- +Weight: 0 +# +11013# +Expedition Report Vol.1, sorted by Abidal. +The information on the expedition's settlement and occupation are all written in here. +-------------------------- +Weight: 0 +# +11014# +Expedition Report Vol.2 which reports the dimensional gorge and the traces of Satan Morocc. +-------------------------- +Weight: 0 +# +11015# +Expedition Report Vol.3 which reports the ecological environment and the species. +-------------------------- +Weight: 0 +# +11016# +Expedition Report Vol.4 which reports the internal situation of the expedition and the investigation. +It also introduces the future plans. +-------------------------- +Weight: 0 +# +11018# +Splendide Selling Item. +-------------------------- +Weight: 1 +# +11019# +Manuk Selling Item. +-------------------------- +Weight: 1 +# +11020# +Japanese Book 1. +-------------------------- +Weight: 1 +# +11021# +Japanese Book 2. +-------------------------- +Weight: 1 +# +11022# +The latest book of Alchemist Monthly! It contains trendy recipes of 'Mix cooking' and other useful information. +-------------------------- +Weight: 5 +# +11023# +A popular Alchemist's monthly series \ +. +Alchemist Da Lucia's endless research of health improvement has finally completed! +-------------------------- +Weight: 5 +# +11024# +A popular Alchemist's monthly series \ +. +This book contains Alchemist Vein and Vejin's study of increasing SP and recipes for making reagent. +-------------------------- +Weight: 5 +# +11025# +A book with the basics for living as a Swordsman. +-------------------------- +Weight: 0 +# +11028# +A book with the basics for living as a Thief. +-------------------------- +Weight: 0 +# +11031# +A book with the basics for living as a Archer. +-------------------------- +Weight: 0 +# +11034# +A book with the basics for living as a Acolyte. +-------------------------- +Weight: 0 +# +11037# +A book with the basics for living as a Magician. +-------------------------- +Weight: 0 +# +11040# +A book with the basics for living as a Merchant. +-------------------------- +Weight: 0 +# +11043# +A book with the basics for living as a Taekwon. +-------------------------- +Weight: 0 +# +11046# +A book with the basics for living as a Ninja. +-------------------------- +Weight: 0 +# +11049# +A book with the basics for living as a Gunslinger. +-------------------------- +Weight: 0 +# +11052# +A book with the basics for living as a Super Novice. +-------------------------- +Weight: 0 +# +11055# +A book with the basics for living as an adventurer. +-------------------------- +Weight: 0 +# +11056# +A singlepath of the study of spirits! 'Earthde Lagon' unravels the mystery of spirit magic. +Only Lagon tells you the points of the Spirit Magic! Only the key points are in it!' +'At the moment you open this book you are the upper 1% among the spiritists!!' +-------------------------- +Weight: 1 +# +11057# +A cooking book where you can find creative and yummy chocolate-using desserts' recipe. +The most wanted book for the lovers in between Winter and Spring! +The Author: Charles Orlean, the Chocolate Expert and the famous Patissier. +-------------------------- +Weight: 5 +# +11058# +'Too easy! Yoyo.. Even Fabre can handle this!' +A combining manual easier than instant cook book. Just follow what they are saying. +Caution : To start combination, you must use a Combination Kit item. +Caution : You must have all Ingredients ready before combining or the Combination Kit will be wasted. +-------------------------- +Weight: 1 +# +11064# +The one of a Spiritology's only way of life! The second mystery of advanced spiritism unraveled by 'Earth Dragon'. +'A new advanced spirit skill point that Ragon only tells you! I just picked out the core!' +'If you have learned the new advanced spirit skills, you must read it!!' +-------------------------- +Weight: 1 +# +11500# +A yellow potion that has been condensed to Reduces its weight and increase its effectiveness. +-------------------------- +Type: Restorative +Heal: 175 ~ 235 HP +Weight: 1 +# +11501# +A white potion that has been condensed to Reduces its weight and increase its effectiveness. +-------------------------- +Type: Restorative +Heal: 325 ~ 405 HP +Weight: 1 +# +11502# +A bottle of potion made from grinded Blue Herbs that restores about 60 SP. +-------------------------- +Type: Restorative +Heal: 40 ~ 60 SP +Weight: 1 +# +11503# +A White Potion which weighs less than normal. +-------------------------- +Type: Restorative +Heal: 400 ~ 500 HP +Weight: 10 +# +11504# +A Blue Potion which weighs less than normal. +-------------------------- +Type: Restorative +Heal: 50 ~ 70 SP +Weight: 10 +# +11505# +A plant that brings up your spirit. +-------------------------- +Type: Restorative +Heal: 150 SP +Weight: 3 +# +11506# +Flavor of the orange exact in refreshing carbonic acid! +Recovers a small amount of HP & SP. +-------------------------- +Weight: 1 +# +11507# +Flavor of the sweet grape spreads the mouth all the way! +Recovers a small amount of HP & SP. +-------------------------- +Weight: 1 +# +11508# +Karada Meguri-cha. +Recovers a small amount of HP & SP. +-------------------------- +Weight: 10 +# +11509# +Black Tea Kochakaden. +Recovers a small amount of HP & SP. +-------------------------- +Weight: 10 +# +11510# +The same taste of the original coca cola without the added sugar. +Recovers a small amount of HP & SP. +-------------------------- +Weight: 10 +# +11511# +Although no calorie content, the coca cola it's tasty. +You can taste lightly, the coca cola of 0 kilo calories. +Recovers a small amount of HP & SP. +-------------------------- +Weight: 10 +# +11512# +Stimulation of carbon dioxide and unique flavor, not only healing thirst, +but refreshing both heart and body! +Recovers a small amount of HP & SP. +-------------------------- +Weight: 10 +# +11513# +A fresh candy for sore throats. +A very small amount of HP recovery. +Weight: 0.1 +# +11514# +It has the same effect with a white slim potion. [Not to be sold.] +-------------------------- +Weight: 5 +# +11515# +A tropical fruit with a hard shell. Drinking the juice of this fruit quenches thirst. +Recover HP 300. +Weight: 12 +# +11516# +A famous berry used in Brasilis deserts. It is made into ice-cream or juice during the hot summer months. +Recover small amount HP. +Weight: 2 +# +11517# +A potion that has a special effect. +HP Recovery +400 +Weight: 10 +# +11518# +A bottle of potion made from grinded Blue Herbs. +-------------------------- +Type: Restorative +Heal: 5 SP +Weight: 1 +# +11519# +Unique snack food of Mora Village. Various vegetables and fruit are sandwiched between fried meat patties. A leaf wrapped around them adds a refreshing touch. +Restores approximately 200 HP. +Weight: 4 +# +11520# +Refreshing fruit occasionally found wild in the vicinity of Bifrost. +Restores approximately 50 SP. +Weight: 2 +-------------------------- +Requirement: +Base Level 100 +# +11521# +A beverage made by mixing Pinguicula Berry Juice with fizzy juice. Tastes surprisingly good. +Restores approximately 400 HP and 50 SP. +Weight: 5 +-------------------------- +Requirement: +Base Level 100 +# +11522# +Red sap with amazing healing power. You wouldn't want to find out what it's made from. +Restores approximately 400 -600 HP. +ooldown Time: 1 Second +Weight: 10 +-------------------------- +Requirement: +Base Level 100 +# +11523# +Yellow sap with amazing healing power. You wouldn't want to find out what it's made from. +Restores approximately 600 -800 HP. +ooldown Time: 1 Second +Weight: 12 +-------------------------- +Requirement: +Base Level 110 +# +11524# +White sap with amazing healing power. You wouldn't want to find out what it's made from. +Restores approximately 800 -1,000 HP. +ooldown Time: 1 Second +Weight: 14 +-------------------------- +Requirement: +# +11525# +Tea made by infusing dried plants, rarely found even in Mora Village. Smells extremely good. +Restores approximately 1500 HP. +ooldown Time: 5 Seconds +Weight: 15 +-------------------------- +Requirement: +Base Level 120 +# +11526# +A cold beverage made by blending Pingui berries with syrup and ice. +Restores approximately 120 SP. +Weight: 10 +-------------------------- +Requirement: +Base Level 120 +# +11527# +A sweet restorative that heals an extensive amount of HP & SP +-------------------------- +Weight: 10 +# +11528# +Very sweet desert just like vermicelli and pastry. +-------------------------- +Recover HP 300, SP 240. +-------------------------- +Weight: 20 +# +11530# +A sweet fruit that grows in Palm trees in Desert Oasis. +-------------------------- +Recover HP 30 +-------------------------- +Weight: 10 +# +11531# +A brewed drink prepared from roasted seeds, commonly called coffee beans, of thecoffee plant.. +-------------------------- +Recover SP 10 +-------------------------- +Weight: 10 +# +11532# +It's the seasoned fried rice mixed with seafoods, meat and vegitables. +-------------------------- +Recovers small amount of HP. +-------------------------- +Weight: 2 +# +11533# +Skewered chopped meat with a special barbeque sauce on it. +-------------------------- +Recovers small amount of HP. +-------------------------- +Weight: 2 +# +11534# +It's a Coconut Juice. +-------------------------- +Recovers small amount of HP and SP. +-------------------------- +Weight: 5 +# +11535# +Sweet almonds coated with a lot of chocolate. +-------------------------- +Recover small amount of SP. +-------------------------- +Weight: 20 +# +11536# +Food that the fleet of Cat Paw Merchant Association had in the voyage. It is a hardtack biscuit which facilitated its storage. +Those Cat sailors call it the Teeth Grinder or Worm Castle. Some HP can be recovered when it is eaten. +-------------------------- +Weight: 1 +# +11537# +A chubby worm which was caught when the biscuit was almost eaten. +It can be an important energy fountain in a survival situation, but... +-------------------------- +Weight: 1 +# +11538# +A fresh legs of octopus. +Restore small amount of HP and SP. +Acquired from malangdo festival. +-------------------------- +Weight: 3 +# +11539# +Heart-shaped hand-made chocolates with the feeling of the tail. +One of the chocolates I made a lot to give to someone is this chocolate. +An extraordinary effort can be seen. +-------------------------- +Type: Restorative +Heal: Some HP and SP +-------------------------- +Weight: 8 +# +11540# +Heart-shaped handmade chocolate packed with the best of the technology that Shy can think of. +It's an enormously colorful chocolate. +-------------------------- +Type: Restorative +Heal: Some HP and SP +-------------------------- +Weight: 8 +# +11541# +Heart-shaped handmade chocolate carefully made by Mid. +It is a dish that you can see from the attitude that you are kind and kind to the students of the academy. +-------------------------- +Type: Restorative +Heal: Some HP and SP +-------------------------- +Weight: 8 +# +11542# +Handmade chocolates made with the best materials and gratitude by the Jonda event. +It's a perfection that I can't think was made by an amateur. +-------------------------- +Type: Restorative +Heal: Some HP and SP +-------------------------- +Weight: 8 +# +11543# +Heart-shaped handmade chocolate made by the Kaito Anniversary. +Chocolate that feels like something ridiculous will be stolen. +-------------------------- +Type: Restorative +Heal: Some HP and SP +-------------------------- +Weight: 8 +# +11544# +Heart-shaped handmade chocolate made by Hucke. +The appearance and shape are very good, and it seems that those who taste it can roll around. +-------------------------- +Type: Restorative +Heal: Some HP and SP +-------------------------- +Weight: 8 +# +11545# +Heart-shaped handmade chocolate made by Rune after a long time. +According to the story I heard from Mid, it seems to be chocolate with a click, but it seems that there is no problem. +-------------------------- +Type: Restorative +Heal: Some HP and SP +-------------------------- +Weight: 8 +# +11546# +Heart-shaped handmade chocolate made by the Pope with a priest. +Some enthusiastic followers want to get it even if they lose everything. +-------------------------- +Type: Restorative +Heal: Some HP and SP +-------------------------- +Weight: 8 +# +11547# +Can only be used in WoE & PVP area. +A potion made of a mixed many restorative herbs. +-------------------------- +Type: Restorative +Heal: +500-700 HP +60-85 SP +Weight: 8 +# +11548# +Can only be used in WoE & PVP area. +The youngest leaves of the white organic herb are used to make this potion. +-------------------------- +Type: Restorative +Heal: 10% HP +Weight: 8 +# +11549# +Can only be used in WoE & PVP area. +The freshest blue organic herbs are used to make this potion. +-------------------------- +Type: Restorative +Heal: 10% SP +Weight: 8 +# +11550# +A cake made with smashed moist pumpkin. +-------------------------- +Type: Restorative +Heal: 5% HP, 5% SP +Weight: 4 +# +11551# +Healthy herb mix with strange power giving. +-------------------------- +Type: Cooked Food +Effect: STR +1 +Heal: 25 HP +Effect duration: 3 minutes +Weight: 1 +# +11552# +A harmony of apple and carrot! As fresh as a salad can get. +-------------------------- +Type: Cooked Food +Effect: AGI +1 +Heal: 25 HP +Effect duration: 3 minutes +Weight: 1 +# +11553# +A stew made with whatever you want to put in. +-------------------------- +Type: Cooked Food +Effect: VIT +1 +Heal: 25 HP +Effect duration: 3 minutes +Weight: 1 +# +11554# +Fully roasted apple toast. Glossy color makes you wanna take a bite of it. +-------------------------- +Type: Cooked Food +Effect: DEX +1 +Heal: 25 HP +Effect duration: 3 minutes +Weight: 1 +# +11555# +A recovery potion made by combining Red Herb and Hydra's Sap. +Retores 325 HP. +Weight: 4 +# +11556# +A recovery potion made by combining Blue Herb and Yggdrasil's Sap. +Restores 60 SP. +Weight: 9 +# +11557# +Only available to use in the WoE TE zone. +A health potion made up of ground white herbs. +Restores 325 HP. +-------------------------- +Weight: 30 +# +11558# +Only available to use in the WoE TE zone. +Provides the same effects as TE White Potion, but this potion is lighter in weight. +-------------------------- +Weight: 10 +# +11559# +Stripped fresh magical shellfish. +-------------------------- +Weight: 5 +# +11560# +Fresh magic shellfish sashimi. +-------------------------- +Weight: 5 +# +11561# +A pillar of fresh magical shellfish. +-------------------------- +Weight: 5 +# +11562# +Mellow chocolate in 64 layers of crispy pie! +-------------------------- +Recovers a small amount of HP and SP. +-------------------------- +Weight: 3 +# +11563# +A warm cup of black tea. +-------------------------- +Restores 100 SP. +-------------------------- +Weight: 2 +# +11564# +A sweet honey biscuit. It is said to be a good match with a cup of tea. +-------------------------- +Restores 1000 HP. +-------------------------- +Weight: 2 +# +11565# +A bottle of potion made from grinded White Herbs. +-------------------------- +Type: Restorative +Heal: 325 ~ 405 HP +Weight: 15 +# +11566# +A bottle of potion made from grinded Yellow Herbs. +-------------------------- +Type: Restorative +Heal: 175 ~ 235 HP +Weight: 13 +# +11567# +An exclusive red potion for Novices! +-------------------------- +Type: Restorative +Heal: 44 ~ 66 HP +Weight: 1 +# +11568# +A condensed Red Potion that weighs significantly less. +-------------------------- +Type: Restorative +Heal: 45 ~ 65 HP +Weight: 2 +# +11569# +A bottle of potion made from grinded Red and Yellow Herbs. +-------------------------- +Type: Restorative +Heal: 105 ~ 145 HP +Weight: 10 +# +11570# +A bottle of potion made from grinded Red Herbs. +-------------------------- +Type: Restorative +Heal: 45 ~ 65 HP +Weight: 7 +# +11571# +A bottle of potion made from grinded Green Herbs. +-------------------------- +Type: Restorative +Cure: Poison, Silence, Blind, Confuse, Hallucination +Weight: 7 +# +11572# +A bottle of potion made from grinded Blue Herbs. +-------------------------- +Type: Restorative +Heal: 40 ~ 60 SP +Weight: 15 +# +11573# +A condensed white potion that weighs significantly less. +-------------------------- +Type: Restorative +Heal: 325 ~ 405 HP +Weight: 5 +# +11574# +A condensed yellow potion that weighs significantly less. +-------------------------- +Type: Restorative +Heal: 175 ~ 235 HP +Weight: 3 +# +11575# +A cookie which is rumored to bring luck to whomever eats it. +-------------------------- +Type: Restorative +Heal: 165 ~ 200 HP +Weight: 3 +# +11576# +A candy cane which is rumored to bring luck to whomever eats it. +-------------------------- +Type: Restorative +Heal: 105 ~ 145 HP +Weight: 4 +# +11577# +A lump of rice which can be eaten for lunch. +-------------------------- +Type: Restorative +Heal: 200 HP +Weight: 3 +# +11578# +A striped cane of peppermint candy. Sugar daddies love it! +-------------------------- +Type: Restorative +Heal: 105 ~ 145 HP +Weight: 4 +# +11579# +A candy which is rumored to bring luck to whomever eats it. +-------------------------- +Type: Restorative +Heal: 45 ~ 65 HP +Weight: 3 +# +11580# +A confection of sugar, chocolate and other flavorings. Kids love it! +-------------------------- +Type: Restorative +Heal: 45 ~ 65 HP +Weight: 3 +# +11581# +A sweet slice of cake covered in icing and topped with a cherry. Recovers a suitable amount of HP. +-------------------------- +Type: Restorative +Heal: 270 ~ 330 HP +Weight: 10 +# +11582# +A warm, scrumptious cookie. +-------------------------- +Type: Restorative +Heal: 160 ~ 200 HP +Weight: 3 +# +11583# +A kind of drink made from chocolate and milk from one of the Royal Court Dessert Specialist's recipes. +Although the Dessert Chef wishes for people to drink this treat elegantly, it's usually gulped down, enjoyed with hand sloppily placed on the waist. +-------------------------- +Type: Restorative +Heal: +330 ~ 410 HP +45 ~ 65 SP +Cure: Poison, Silence, Blind, Confuse, Curse, Illusion +Weight: 15 +# +11584# +White chocolate which is used to propose to a girl by a boy during White Day. +-------------------------- +Type: Restorative +Heal: +50 HP +50 SP +Weight: 8 +# +11585# +A collection of chocolates that are gathered and arranged to make a beautiful item. This is often used in courtship and sometimes even used effectively. +-------------------------- +Type: Restorative +Heal: +50 HP +50 SP +Weight: 8 +# +11586# +White chocolate which is used to propose to a girl by a boy during White Day. +-------------------------- +Type: Restorative +Heal: +50 HP +50 SP +Weight: 8 +# +11587# +Fried and grinded Cacao that is solidified with Milk and cacao paste. Delicious and bittersweet. +-------------------------- +Type: Restorative +Heal: +1 HP +1 SP +Weight: 2 +# +11588# +Fragrant fruit that you can get a limited period. +Recovers a small amount of HP & SP. +-------------------------- +Weight: 1 +# +11589# +It is cool and to the inside of. Chest cold oyster ice red beans and ice, milk, rice cake entered. +Recovery HP/SP by 5%. +The item have a chance the add ice frozen state during 2 seconds. +Weight: 5 +# +11590# +Girinah skewers pro! 20 years of experience in the craftsmanship of skewers, Edward confidently recommended choice of skewers! One taste of the skewer conclude the discussion of fashion! +Weight: 30 +# +11592# +Transform user into Bloody Murderer for 10 minutes. +During transformation: MaxHP +1000. +-------------------------- +Restores about 45 HP. +Weight: 3 +# +11593# +Transform user into Bathory for 10 minutes. +During transformation: MaxSP +100. +-------------------------- +Restores about 45 HP. +Weight: 3 +# +11594# +Transform user into Jack for 10 minutes. +During transformation: Increases restoration gained from Pumpkin by 2000%. +-------------------------- +Restores about 45 HP. +Weight: 3 +# +11595# +Transform user into Quve for 10 minutes. +During transformation: HIT +10, FLEE +20. +-------------------------- +Restores about 45 HP. +Weight: 3 +# +11596# +A skull shaped cup filled with blood. It obviously has some mysterious powers. +Restores about 600 HP. +-------------------------- +Weight: 5 +# +11597# +A ghastly bug that eats away at metal things. However it is a good source of protein. +-------------------------- +Weight: 1 +# +11598# +Before processing cocoa beans.I wanted to eat something sweet, but I get the impression that is bittersweet. +-------------------------- +Weight: 15 +# +11599# +A product obtained when the selected monster hunts in the event super star R. This monster potion has a horrible taste. +-------------------------- +Weight: 1 +# +11600# +A flask of holy water which shines ever so bright. +Decreases damage taken from Ritual Room and Prontera Invasion Dungeon monsters by 10% for 3 minutes. +Affected monsters: +Powerful Soldier Skeleton +Powerful Skeleton +Powerful Amdarais +Powerful Amdarais +Powerful Archer Skeleton +Bijou +Immortal Corpse +Zombie Guard +-------------------------- +Type: Restorative +Heal: 1000 HP +Cure: Poison, Silence, Curse +Weight: 1.5 +# +11601# +A delicious salt water sardine. A small silver fish that can be caught in Lasagna. Restores small amount of HP. +-------------------------- +Weight: 2 +# +11602# +A small fruit from malangdo. Restores small amount of HP. Can be used when using Doram skill. +-------------------------- +Weight: 0.1 +# +11603# +A shiny, purple fruit picked from the boughs of the Mastela tree. Restores greate amount of HP. +-------------------------- +Type: Restorative +Heal: 400 ~ 600 HP +Weight: 3 +# +11604# +Highly nutritious jelly secreted from honeybees that they only feed to larvas and future queens. +-------------------------- +Weight: 15 +# +11605# +Crisp buttery cookie with sweet chunky chocolates inside. +Try not to let it fly away. +restore HP, SP 3% +-------------------------- +Weight: 0 +# +11606# +A condensed white potion that weighs significantly less. +-------------------------- +Type: Restorative +Heal: 325 ~ 405 HP +Weight: 1 +# +11607# +Fresh fruit and whip cream wrapped with thin dough. +-------------------------- +Type: Restorative +Cure: Poison, Curse, Silence, Confuse, Blind, Illusion +Weight: 10 +# +11608# +Delicious eggs coated with chocolate and painted with colored patterns. +When biting, a soft milk chocolate mousse flows out. +-------------------------- +Type: Restorative +Heal: about 325 HP +Weight: 5 +# +11609# +Delicious eggs decorated with savory and sweet marzipan. +The inside is made of soft butter cookies when you bite the chewy outside. +-------------------------- +Type: Restorative +Heal: about 60 SP +Weight: 5 +# +11610# +A fragrant melon that fills your mouth just by looking at it. +It seems to be a different variety from the melon I've seen so far. +-------------------------- +Type: Restorative +Heal: about 350 HP +Weight: 5 +# +11611# +One white, tasty popcorn. When you put it in your mouth, it melts. It would be more delicious if you made it with savory butter popcorn. +-------------------------- +Type: Restorative +Heal: about 235 HP +Weight: 3 +# +11612# +Popcorn made savory and savory by mixing melted butter and sprinkling salt. It is packed in plenty so that you can enjoy the festival and eat to your heart's content. +It would be more delicious if you eat it while wearing a festival costume. +-------------------------- +Type: Restorative +Heal: about 800 HP +Weight: 5 +# +11613# +Sweets made to commemorate the harvest festival. The shape of everyone sitting around the fire and sharing food was expressed as a snack. +-------------------------- +Type: Restorative +Heal: about 275 HP, about 30 SP +Weight: 3 +# +11614# +Freshly squeezed milk. It is widely used as a nutritional food for children's growth period and restores a small amount of HP. +-------------------------- +Type: Restorative +Weight: 3 +# +11615# +Freshly plucked purple tuber roots. It has a lot of starch and is sweet, so it is often used for food. It restores a small amount of HP. +-------------------------- +Type: Restorative +Weight: 2 +# +11616# +Skelion's favorite meat. Pet food merchant sells this meat. +-------------------------- +Type: Pet Food +Pet: Skelion +Weight: 5 +# +11617# +A chocolate ball dropped by a bad cucumber cat. +The soft and sweet chocolate is covered with pieces of dogtail evenly. +-------------------------- +Type: Restorative +Heal: ~ 500 HP, ~ 25 SP +Weight: 5 +# +11620# +Nassrian's skin fragment. +From the part where the bear doll and Nassrian's soul stone are joined, it begins to degenerate and spreads throughout the body. +And so delicious... +-------------------------- +Weight: 1 +# +11621# +A potion made from compressed well-planted Red Herb. +-------------------------- +Type: Restorative +Heal: about 325 HP +Cooldown: 1 second +Weight: 7 +-------------------------- +Requirement: +Base Level 60 +# +11622# +A potion made from compressed well-planted Yellow Herb. +-------------------------- +Type: Restorative +Heal: about 900 HP +Cooldown: 1 second +Weight: 10 +-------------------------- +Requirement: +Base Level 60 +# +11623# +A potion made from compressed well-planted White Herb. +-------------------------- +Type: Restorative +Heal: about 1800 HP +Cooldown: 1 second +Weight: 14 +-------------------------- +Requirement: +Base Level 60 +# +11624# +A potion made from compressed well-planted Blue Herb. +-------------------------- +Type: Restorative +Heal: about 180 SP +Cooldown: 10 seconds +Weight: 10 +-------------------------- +Requirement: +Base Level 60 +# +11625# +Popcorn is made with fresh organic butter and natural salt. +-------------------------- +Type: Restorative +Heal: about 550 HP, about 20 SP +Weight: 4 +# +11629# +A must-have snack for long trips with young octopus. +The sweetness as if the cheeks melt and the tingling disappears! +-------------------------- +Type: Restorative +Heal: about 600 HP, about 100 SP +Weight: 3 +# +11630# +A nutritious lunch box that Octopigs eat when they go out. +Octopigs, who eat every hour, are said to carry a lot of lunch boxes. +-------------------------- +(The speed bonus does not stack with other movement speed increasing effects.) +-------------------------- +Type: Restorative +Heal: 50% HP, 50% SP +Effect: Increases Movement Speed for 1 minute. +Weight: 15 +# +11701# +Well-designed bouquet. Feel the heat of the one who packed. +-------------------------- +Weight: 5 +# +11702# +Candy made according to the shape of mmon. If you stare at it, it will remind you of someone. +-------------------------- +Cures every abnormal status. Provide effect of Level 7 Blessing when used. +Blessing will not be activated after the event period has ended. +-------------------------- +Weight: 30 +# +11703# +Blood extracted from things without life. It is said to have tremendous power. +-------------------------- +Type: Restorative +Heal: about 30 SP +Weight: 1 +# +11704# +This is a special food for recreation after fasting ceremony in particular country. +It's not for being full up the stomach, but eating slowly and making strengthen one's health. +-------------------------- +Weight: 1 +# +11705# +It is a special potion for children made by a man who likes children so much. +Recovering HP, it's better than others. +-------------------------- +Weight: 1 +# +11706# +Grilled steak with a cut of tenderloin. It is famous for its soft texture. +-------------------------- +Type: Restorative +Heal: about 700 HP +Weight: 20 +# +11707# +A dish that is cut into large chunks and grilled wildly. The taste is also wild. +-------------------------- +Type: Restorative +Heal: about 100 SP +Weight: 20 +# +11708# +The lean portion of meat located at the lower part of the beef. +-------------------------- +Type: Restorative +Heal: Some HP and SP +-------------------------- +Weight: 10 +# +11709# +The refreshing lemon flavor is perfect for a pleasant moment when a group of people gather, or when you want to feel cool after a bath or exercise! +-------------------------- +Type: Restorative +Heal: Some HP and SP +Weight: 10 +# +11710# +An exquisite drink that gives you a refreshing, sweet and sour mood with cherry flavor! +-------------------------- +Type: Restorative +Heal: Some HP and SP +Weight: 10 +# +11711# +Royal milk tea with a new taste with a cherry blossom flavor applied to the rich royal milk tea. +-------------------------- +Type: Restorative +Heal: Some HP and SP +Weight: 10 +# +11712# +For daily body care! Japan's first \ + extract formulation. Excellent taste made with carefully selected tea leaves. +-------------------------- +Type: Restorative +Heal: Some HP and SP +Weight: 10 +# +11713# +A special taste candy by Julia. +-------------------------- +Type: Restorative +Heal: 45 HP +Weight: 3 +# +11714# +Very tasty home-made Maamoul. Good smell. Recover a lot of HP. +-------------------------- +Type: Restorative +Heal: a lot HP +Weight: 0 +# +11715# +Fresh salad with various fruits. +-------------------------- +Effect: +MaxSP +10% for 3 minutes +Decrease SP Consumption by 10%. +Recover HP and SP for a certain amount. +-------------------------- +Weight: 1 +# +11716# +Effect: +Received Heal and the recovery amount of Potions items would be increased by 20% for 3 minutes. +Recovery HP and counteracts poison. +-------------------------- +Weight: 1 +# +11717# +Yogurt made from milk. +-------------------------- +Effect: +MaxSP +5% for 3 minutes, +Increases SP Recovery Rate by 10%. +Recovery SP for a certain amount. +-------------------------- +Weight: 14 +# +11718# +Kebab made from Sushi. +-------------------------- +Effect: +Recovery MaxHP +4% every 4 seconds for 1 minute. +Recovery HP for a certain amount and counteracts the effects of poison. +-------------------------- +Weight: 6 +# +11719# +Dessert made from biscuits. +-------------------------- +Effect: +Recover HP and SP. +Increases experience gained by 100% for 30 minutes. +Attention: The effect of this item will not stack with Battle Manual. +-------------------------- +Weight: 20 +# +11720# +A sweet flavoured candy. +-------------------------- +Type: Restorative +Heal: 100 % HP and SP +Cooldown: 5 seconds +Weight: 1 +# +11723# +A piece of green spilled from a crystal that is said to carry one year of happiness. +-------------------------- +Weight: 0.1 +# +11724# +Heart-shaped handmade chocolate made by Misty. +Misty says it tastes better than Hucke's chocolate. +-------------------------- +Type: Restorative +Heal: Some HP and SP +Weight: 8 +# +11725# +Heart-shaped handmade chocolate made by Jed while struggling. +Like him, the season has a deep taste that can't be said. +-------------------------- +Type: Restorative +Heal: Some HP and SP +Weight: 8 +# +11726# +A heart-shaped handmade chocolate made by Niruen with charity. +Chocolate that is sweet and has a good scent that makes small children happy. +-------------------------- +Type: Restorative +Heal: Some HP and SP +Weight: 8 +# +11727# +Heart-shaped handmade chocolate made politely by Natsumi. +The taste, aroma, and appearance are all perfect, and those who receive it will be impressed. +-------------------------- +Type: Restorative +Heal: Some HP and SP +Weight: 8 +# +11728# +Heart-shaped handmade chocolate made by Guy Rockstar. +It is a passionate dish that gives you deep emotions when you eat it. +-------------------------- +Type: Restorative +Heal: Some HP and SP +Weight: 8 +# +11729# +Heart-shaped handmade chocolate made by Nydhoggur over time. +It is very carefully made, has a very mellow texture and has a nice floral scent. +-------------------------- +Type: Restorative +Heal: Some HP and SP +Weight: 8 +# +11730# +Heart-shaped handmade chocolates made by Loki's unfamiliar hands. +A little malformed, but with a mint, it has a cool taste. +-------------------------- +Type: Restorative +Heal: Some HP and SP +Weight: 8 +# +11735# +Extremely delicious melon with gold color. +-------------------------- +Type: Restorative +Heal: Some HP and SP +Weight: 10 +# +11736# +A light and effective drug with prontera emblem printed on it. +-------------------------- +Type: Restorative +Heal: 337 HP +-------------------------- +Weight: 4 +# +11737# +A skewed meat. A special food that made by dewata people. +-------------------------- +Activate Level 2 Ressurection when used. +-------------------------- +Weight: 2 +# +11740# +A soul drink that has created an enthusiastic drinker. +-------------------------- +Can only be used on WoE, WoE:SE and WoE:TE maps. +-------------------------- +Type: Restorative +Heal: 80 SP +Weight: 3 +# +12000# +A spell scroll which was made by the essence of ancient magic. +Allows to use Level 5 Frost Diver. +-------------------------- +Weight: 1 +# +12001# +A holy paper which was baptized by a noble priest. +Allows to use Level 3 Heal. +-------------------------- +Weight: 1 +# +12002# +A holy paper which was baptized by a noble priest. +Allows to use Level 5 Heal. +-------------------------- +Weight: 1 +# +12003# +A holy paper which was baptized by a noble priest. +Allows to use Level 1 Teleport. +-------------------------- +Weight: 1 +# +12004# +A quiver which contains 500 normal arrows within. +-------------------------- +Weight: 25 +# +12005# +A quiver which contains 500 iron arrows within. +-------------------------- +Weight: 25 +# +12006# +A quiver which contains 500 steel arrows within. +-------------------------- +Weight: 25 +# +12007# +A quiver which contains 500 oridecon arrows within. +-------------------------- +Weight: 25 +# +12008# +A quiver which contains 500 fire arrows within. +-------------------------- +Weight: 25 +# +12009# +A quiver which contains 500 silver arrows within. +-------------------------- +Weight: 25 +# +12010# +A quiver which contains 500 wind arrows within. +-------------------------- +Weight: 25 +# +12011# +A quiver which contains 500 stone arrows within. +-------------------------- +Weight: 25 +# +12012# +A quiver which contains 500 crystal arrows within. +-------------------------- +Weight: 25 +# +12013# +A quiver which contains 500 shadow arrows within. +-------------------------- +Weight: 25 +# +12014# +A quiver which contains 500 immaterial arrows within. +-------------------------- +Weight: 25 +# +12015# +A quiver which contains 500 rusty arrows within. +-------------------------- +Weight: 25 +# +12016# +A potion which increases the moving speed of a character for a set duration. +-------------------------- +Type: Supportive +Effect: Increases movement speed +Effect duration: 5 seconds +Weight: 10 +# +12017# +A potion which decreases the moving speed of a character for a set duration. +-------------------------- +Type: Supportive +Effect: Reduces movement speed +Effect duration: 5 seconds +Weight: 10 +# +12018# +A playstuff which makes beatiful fireworks in the sky when it is lit. +-------------------------- +Type: Usable +Weight: 2 +# +12019# +A decorative egg, traditionally exchanged with other people, which symbolizes rebirth. Can be used to resurrect dead people. +-------------------------- +Weight: 15 +# +12020# +A bottle of cursed water. +-------------------------- +Type: Supportive +Effect: Enchants equipped weapon with Shadow elemental +Effect duration: 20 minutes +Weight: 3 +# +12021# +Savory pork that is very tempting. +-------------------------- +Weight: 1 +# +12022# +Delicious beef specially marinated in soy sauce. +-------------------------- +Weight: 1 +# +12023# +A wrapped box that seems to contain a gift. +-------------------------- +Weight: 20 +# +12024# +Most people who see this pretty red pouch are seized by the urge to open it and see what's inside. +-------------------------- +Weight: 5 +# +12025# +An egg that seems to contain something inside. +According to the custom, balancing one of these eggs on its end without any support is a sign of good luck. +-------------------------- +Weight: 20 +# +12026# +An egg that seems to contain something inside. +According to the custom, balancing one of these eggs on its end without any support is a sign of good luck. +-------------------------- +Weight: 20 +# +12027# +Type: Restorative +Heal: 9% HP +Effect: 30% chance of inflicting Curse status for 30 seconds +Weight: 20 +# +12028# +Type: Supportive +Effect: Increases movement speed +Effect duration: 20 seconds +Weight: 20 +# +12029# +Type: Supportive +Effect: Casts Level 1 Improve Concentration +Weight: 20 +# +12030# +Type: Stat booster +Effect: ATK +20 +Effect duration: 1 minute +Weight: 20 +# +12031# +Type: Stat booster +Effect: MATK +20 +Effect duration: 1 minute +Weight: 20 +# +12032# +Type: Supportive +Effect: Enchants equipped weapon with Water elemental +Effect duration: 3 minutes +Weight: 20 +# +12033# +Type: Supportive +Effect: Enables user to detect hidden characters +Effect duration: 30 seconds +Weight: 20 +# +12034# +Type: Restorative +Heal: 9% SP +Effect: 30% chance of inflicting Silence status for 30 seconds +Weight: 20 +# +12035# +A sealed box that contains a Lotto Ball from numbers 1-10. +-------------------------- +Weight: 2 +# +12036# +A sealed box that contains a Lotto Ball from numbers 11-20. +-------------------------- +Weight: 2 +# +12037# +A sealed box that contains a Lotto Ball from numbers 21-30. +-------------------------- +Weight: 2 +# +12038# +A sealed box that contains a Lotto Ball from numbers 31-40. +-------------------------- +Weight: 2 +# +12039# +A sealed box that contains a Lotto Ball from numbers 41-50. +-------------------------- +Weight: 2 +# +12040# +An enchanted stone rumored to transmute any matter into gold. +-------------------------- +Weight: 1 +# +12041# +A dish that is easy and convenient for beginner chefs; it has a fresh, grassy taste, strangely enough. +-------------------------- +Type: Cooked Food +Effect: STR +1 +Heal: 5% HP +Effect duration: 20 minutes +Weight: 6 +# +12042# +A dish that looks slightly unappetizing, but its taste and scent are quite pleasant. +-------------------------- +Type: Cooked Food +Effect: STR +2 +Heal: 5% HP +Effect duration: 20 minutes +Weight: 50 +# +12043# +It looks like an ordinary steak, but it is explosively flavorful and juicy. +-------------------------- +Type: Cooked Food +Effect: STR +2 +Heal: 5% HP +Effect duration: 20 minutes +Weight: 50 +# +12044# +Tender beef that has been marinated with herbs and sauces, using a secret Payon recipe. +-------------------------- +Type: Cooked Food +Effect: STR +4 +Heal: 5% HP +Effect duration: 20 minutes +Weight: 50 +# +12045# +A sweet pancake made by Thachentze, the kind lady chef living in Lutie. +-------------------------- +Type: Cooked Food +Effect: STR +5 +Heal: 10% HP +Effect duration: 20 minutes +Weight: 50 +# +12046# +A sweetly scented tea made by mixing herbs and grape juice. +-------------------------- +Type: Cooked Food +Effect: INT +1 +Heal: 5% SP +Effect duration: 20 minutes +Weight: 10 +# +12047# +A tea made with 3 different herbs that give it a refreshingly strong scent, but also give it a bland flavor. +-------------------------- +Type: Cooked Food +Effect: INT +2 +Heal: 5% SP +Effect duration: 20 minutes +Weight: 50 +# +12048# +An invigoratingly hot herbal whose flavor is enhanced with the sweetness of honey. +-------------------------- +Type: Cooked Food +Effect: INT +3 +Heal: 5% SP +Effect duration: 20 minutes +Weight: 50 +# +12049# +A sweet and sour fruit wine that was invented by a merchant from Morocc. Ladies love it. +-------------------------- +Type: Cooked Food +Effect: INT +4 +Heal: 5% SP +Effect duration: 20 minutes +Weight: 30 +# +12050# +Wine distilled from Mastela fruit that helps the drinker to maintain clarity of thought. +-------------------------- +Type: Cooked Food +Effect: INT +5 +Heal: 10% SP +Effect duration: 20 minutes +Weight: 40 +# +12051# +A simple dish made from steamed crab nippers and herbs. +-------------------------- +Type: Cooked Food +Effect: VIT +1 +Heal: 5% HP +Effect duration: 20 minutes +Weight: 10 +# +12052# +Assorted seafood that makes people that live near the sea feel very homesick. +Unless, of course, they're eating this food at home. +-------------------------- +Type: Cooked Food +Effect: VIT +2 +Heal: 5% HP +Effect duration: 20 minutes +Weight: 20 +# +12053# +A soup made with boiled clam meat. +-------------------------- +Type: Cooked Food +Effect: VIT +3 +Heal: 5% HP +Effect duration: 20 minutes +Weight: 30 +# +12054# +Steamed tenacles flavored with herbs and squid ink dressing that, weirdly enough, is a delicious health food. +-------------------------- +Type: Cooked Food +Effect: VIT +4 +Heal: 5% HP +Effect duration: 20 minutes +Weight: 50 +# +12055# +A bao that is fried and seasoned with spicy sauce. +If you're not used to spicy food, it's not a good idea to eat too many. +-------------------------- +Type: Cooked Food +Effect: VIT +5 +Heal: 10% HP +Effect duration: 20 minutes +Weight: 80 +# +12056# +A soup made with squid ink broth and frog eggs that most people can't eat until they close their eyes. +-------------------------- +Type: Cooked Food +Effect: AGI +1 +Heal: 3% HP, 1% SP +Effect duration: 20 minutes +Weight: 10 +# +12057# +Incredibly smooth, slick and slippery noodles that are very difficult to eat. +-------------------------- +Type: Cooked Food +Effect: AGI +2 +Heal: 3% HP, 1% SP +Effect duration: 20 minutes +Weight: 10 +# +12058# +Cheese gratin with steamed tentacles mixed into it for a unique flavor. +-------------------------- +Type: Cooked Food +Effect: AGI +3 +Heal: 3% HP, 1% SP +Effect duration: 20 minutes +Weight: 50 +# +12059# +Spicy, cold noodles garnished with sliced pumpkin. +-------------------------- +Type: Cooked Food +Effect: AGI +4 +Heal: 3% HP, 1% SP +Effect duration: 20 minutes +Weight: 40 +# +12060# +Steamed pumpkin and Red Bat Wings wrapped in a Hinale leaflet that have a combined flavor that is... indescribable. +-------------------------- +Type: Cooked Food +Effect: AGI +5 +Heal: 6% HP, 2% SP +Effect duration: 20 minutes +Weight: 50 +# +12061# +A special mixed drink of grape juice and honey that has a sweet and sour taste. +-------------------------- +Type: Cooked Food +Effect: DEX +1 +Heal: 2% HP, 2% SP +Effect duration: 20 minutes +Weight: 10 +# +12062# +A special chocolate mousse cake with a smooth luxurious flavor that even Charles Orlean would be proud of. +-------------------------- +Type: Cooked Food +Effect: DEX +2 +Heal: 2% HP, 2% SP +Effect duration: 20 minutes +Weight: 20 +# +12063# +A mix of various, crisp fruit flavored with light, sweet syrup. +-------------------------- +Type: Cooked Food +Effect: DEX +3 +Heal: 2% HP, 2% SP +Effect duration: 20 minutes +Weight: 20 +# +12064# +A hearty sandwich made with slices of freshly baked bread, ground meat and cream cheese that is a favorite dish to eat for lunch. +-------------------------- +Type: Cooked Food +Effect: DEX +4 +Heal: 2% HP, 2% SP +Effect duration: 20 minutes +Weight: 50 +# +12065# +A trendy green salad that is topped with sweet Umbala dressing. +-------------------------- +Type: Cooked Food +Effect: DEX +5 +Heal: 5% HP, 5% SP +Effect duration: 20 minutes +Weight: 20 +# +12066# +Lightly spiced monkey tails deep fried in oil that are popular as a side dish for drinking. +-------------------------- +Type: Cooked Food +Effect: LUK +1 +Heal: 3% HP, 2% SP +Effect duration: 20 minutes +Weight: 6 +# +12067# +A cocktail mixed from various fruit juices. +-------------------------- +Type: Cooked Food +Effect: LUK +2 +Heal: 3% HP, 2% SP +Effect duration: 20 minutes +Weight: 20 +# +12068# +Crunchy, fried sweet potatoes topped with light syrup. +-------------------------- +Type: Cooked Food +Effect: LUK +3 +Heal: 3% HP, 2% SP +Effect duration: 20 minutes +Weight: 50 +# +12069# +Steamed fish with ancient lips wrapped in a fresh leaf that is supposedly good for a man's vigor. +-------------------------- +Type: Cooked Food +Effect: LUK +4 +Heal: 3% HP, 2% SP +Effect duration: 20 minutes +Weight: 50 +# +12070# +A fried tail from a scorpion, which is said to be the most nutritious and tasty part of a scorpion. +There are trace bits of poison, so don't eat too much. +-------------------------- +Type: Cooked Food +Effect: LUK +5 +Heal: 5% HP, 2% SP +Effect duration: 20 minutes +Weight: 40 +# +12071# +A marinated beef dish whose spendorous flavor can only be described as...shiny. +-------------------------- +Type: Cooked Food +Effect: STR +6 +Heal: 10% HP, 2% SP +Effect duration: 20 minutes +Weight: 80 +# +12072# +A great meal for meat lovers, this roast is spiced up with a special sauce. +-------------------------- +Type: Cooked Food +Effect: STR +7 +Heal: 10% HP, 4% SP +Effect duration: 20 minutes +Weight: 100 +# +12073# +One of the finest dishes from Louyang, a delicacy made from a bear's meaty foot. +-------------------------- +Type: Cooked Food +Effect: STR +8 +Heal: 15% HP, 6% SP +Effect duration: 20 minutes +Weight: 50 +# +12074# +A fresh and juicy satay made from thick tendons. +-------------------------- +Type: Cooked Food +Effect: STR +9 +Heal: 15% HP, 8% SP +Effect duration: 20 minutes +Weight: 100 +# +12075# +The epitome of Louyang cuisine. +It's ingredients may be hard to find, but culinarily speaking, it's a masterpiece. +-------------------------- +Type: Cooked Food +Effect: STR +10 +Heal: 20% HP, 10% SP +Effect duration: 20 minutes +Weight: 100 +# +12076# +A fragrant grape wine mixed with Red Mushrooms. +-------------------------- +Type: Cooked Food +Effect: INT +6 +Heal: 2% HP, 10% SP +Effect duration: 20 minutes +Weight: 30 +# +12077# +A herbal tea mixed with royal jelly that has a pungent scent, but a refreshing flavor. +-------------------------- +Type: Cooked Food +Effect: INT +7 +Heal: 4% HP, 10% SP +Effect duration: 20 minutes +Weight: 80 +# +12078# +A sweetly scented tea, one of Charles Orlean's specialties, that is regularly enjoyed by the royal family. +-------------------------- +Type: Cooked Food +Effect: INT +8 +Heal: 6% HP, 10% SP +Effect duration: 20 minutes +Weight: 100 +# +12079# +One of the most exquisite drinks ever created that was presented in celebration of the coronation of King Tristram III. +-------------------------- +Type: Cooked Food +Effect: INT +9 +Heal: 8% HP, 15% SP +Effect duration: 20 minutes +Weight: 100 +# +12080# +A cocktail with an unforgettable flavor as impressive as a dragon's breath. +-------------------------- +Type: Cooked Food +Effect: INT +10 +Heal: 10% HP, 20% SP +Effect duration: 20 minutes +Weight: 100 +# +12081# +A strange medicine said to have as much healing power as its bitterness. +-------------------------- +Type: Cooked Food +Effect: VIT +6 +Heal: 13% HP +Effect duration: 20 minutes +Weight: 50 +# +12082# +A magnificent feast fit for gods that would make mortals cry tears of joy. +-------------------------- +Type: Cooked Food +Effect: VIT +7 +Heal: 16% HP +Effect duration: 20 minutes +Weight: 40 +# +12083# +A jumbo sized burrito for jumbo sized apPetites. +-------------------------- +Type: Cooked Food +Effect: VIT +8 +Heal: 19% HP +Effect duration: 20 minutes +Weight: 100 +# +12084# +A spicy soup with dragon meat whose flavor gives one the sensation of flight. +-------------------------- +Type: Cooked Food +Effect: VIT +9 +Heal: 22% HP +Effect duration: 20 minutes +Weight: 100 +# +12085# +A stew with a funky smell that looks quite suspicious, but it really does give the feeling of immortality. +-------------------------- +Type: Cooked Food +Effect: VIT +10 +Heal: 25% HP +Effect duration: 20 minutes +Weight: 100 +# +12086# +Shrimp and chile gratin that is so spicy, it burns. +-------------------------- +Type: Cooked Food +Effect: AGI +6 +Heal: 7% HP, 2% SP +Effect duration: 20 minutes +Weight: 80 +# +12087# +A special Umbala dish made with steamed alligator meat wrapped in vegetables. +-------------------------- +Type: Cooked Food +Effect: AGI +7 +Heal: 8% HP, 2% SP +Effect duration: 20 minutes +Weight: 80 +# +12088# +A spicy curry with a spice known to have the flavor of patience. +Fortunately, the taste is balanced with pumpkin. +-------------------------- +Type: Cooked Food +Effect: AGI +8 +Heal: 9% HP, 2% SP +Effect duration: 20 minutes +Weight: 100 +# +12089# +Louyang's specialty stew laced with all sorts of meat that has a tempting scent +-------------------------- +Type: Cooked Food +Effect: AGI +9 +Heal: 10% HP, 2% SP +Effect duration: 20 minutes +Weight: 100 +# +12090# +One of the four best dishes in the Sograt Desert, this scorpion dish is cooked using the heat of the desert sands. +-------------------------- +Type: Cooked Food +Effect: AGI +10 +Heal: 15% HP, 5% SP +Effect duration: 20 minutes +Weight: 100 +# +12091# +A sweet and lightly scrumptious cake made with peaches grown in Kunlun. +-------------------------- +Type: Cooked Food +Effect: DEX +6 +Heal: 5% HP, 6% SP +Effect duration: 20 minutes +Weight: 80 +# +12092# +A deliciously sweet bread, haunted by flavor. +-------------------------- +Type: Cooked Food +Effect: DEX +7 +Heal: 5% HP, 7% SP +Effect duration: 20 minutes +Weight: 80 +# +12093# +Large toasted bread garnished with huge amounts of meat, cheese and vegetables. +It's so big, no one has ever finished it.8 +-------------------------- +Type: Cooked Food +Effect: DEX +8 +Heal: 5% HP, 8% SP +Effect duration: 20 minutes +Weight: 100 +# +12094# +Heavenly tasting juice that makes the drinker feel refreshed and relaxed. +-------------------------- +Type: Cooked Food +Effect: DEX +9 +Heal: 5% HP, 9% SP +Effect duration: 20 minutes +Weight: 50 +# +12095# +Named after the legendary spring believed to be the source of the world's rivers, this beverage is famous for its amazing taste. +-------------------------- +Type: Cooked Food +Effect: DEX +10 +Heal: 10% HP, 10% SP +Effect duration: 20 minutes +Weight: 100 +# +12096# +A soup that is rumored to bring good luck when it is eaten hot. +-------------------------- +Type: Cooked Food +Effect: LUK +6 +Heal: 6% HP, 3% SP +Effect duration: 20 minutes +Weight: 30 +# +12097# +Marinated meat and vegetables roasted on a skewer. +-------------------------- +Type: Cooked Food +Effect: LUK +7 +Heal: 7% HP, 3% SP +Effect duration: 20 minutes +Weight: 80 +# +12098# +A riceball garnished with strawberries that give it an unexpectedly delicious taste. +-------------------------- +Type: Cooked Food +Effect: LUK +8 +Heal: 8% HP, 3% SP +Effect duration: 20 minutes +Weight: 40 +# +12099# +A strangely sweet drink that children seem to like, although the aftertaste is pretty gross. +-------------------------- +Type: Cooked Food +Effect: LUK +9 +Heal: 10% HP, 4% SP +Effect duration: 20 minutes +Weight: 100 +# +12100# +A rare specialty dish from Payon that bestows luck on those fortunate enough to eat it. +-------------------------- +Type: Cooked Food +Effect: LUK +10 +Heal: 14% HP, 8% SP +Effect duration: 20 minutes +Weight: 50 +# +12101# +A citrus fruit characterized by its thick rind and small sections. +Generally, it is eaten preserved or in bakery goods, such as fruitcakes. (The candied peel rather than the fruit is often used in cooking.) +-------------------------- +Weight: 30 +# +12102# +A long pin for holding meat, fish, or vegetable in position while it is being roasted. +-------------------------- +Weight: 30 +# +12103# +An ancient, gnarled branch with a contract written in blood upon the bark that can summon stronger creatures than regular Dead Branches. +-------------------------- +Type: Supportive +Effect: Summons a random Boss monster +Weight: 20 +# +12104# +An unlabeled arrow quiver. +-------------------------- +Type: Container +Effect: Gives random elemental arrows +Weight: 20 +# +12105# +A beautifully decorated gift set that contains a taming item and Pet Accessory. +-------------------------- +Type: Container +Effect: Gives random Pet accesory and taming item +Weight: 20 +# +12106# +A beautiful Jewelry Box that contains an Accessory. +-------------------------- +Type: Container +Effect: Gives 1 random accessory +Weight: 20 +# +12107# +A mask that has been carefully wrapped. +-------------------------- +Type: Container +Effect: Gives 1 random mask +Weight: 20 +# +12108# +A scroll that has been packaged and carefully wrapped. +-------------------------- +Type: Container +Effect: Gives 1 random Magic Scroll +Weight: 20 +# +12109# +A wrapped box stamped with the Poring seal. You +can faintly hear rustling coming from inside of it. +-------------------------- +Weight: 20 +# +12110# +A first aid kit that should contain potions, although they're known to hold other things... +-------------------------- +Type: Container +Effect: Gives a random potion item +Weight: 20 +# +12111# +A bundle of food that contains various dishes. +-------------------------- +Type: Container +Effect: Gives 1 random food +Weight: 20 +# +12112# +A delicious alcoholic beverage made with exotic fruits found only in Morocc. +It's very sweet, so people can get drunk off it without realizing it. +-------------------------- +Type: Usable +Effect: Inflicts Confuse and Curse +Effect duration: 10 sec +Weight: 10 +# +12113# +A scarlet colored cocktail, favored by the ladies, that gives the drinker the feeling of lounging on the beach. +-------------------------- +Type: Usable +Effect: Inflicts Blind and Stun +Effect duration: 10 sec +Weight: 10 +# +12114# +Temporarily enchants the user's weapon with the Fire elemental. +-------------------------- +Type: Magic scroll +Effect: Endows equipped weapon with Fire elemental +Effect duration: 20 minutes +Weight: 1 +# +12115# +Temporarily enchants the user's weapon with the Water elemental. +-------------------------- +Type: Magic scroll +Effect: Endows equipped weapon with Water elemental +Effect duration: 20 minutes +Weight: 1 +# +12116# +Temporarily enchants the user's weapon with the earth elemental. +-------------------------- +Type: Magic scroll +Effect: Endows equipped weapon with Earth elemental +Effect duration: 20 minutes +Weight: 1 +# +12117# +Temporarily enchants the user's weapon with the Wind elemental. +-------------------------- +Type: Magic scroll +Effect: Endows equipped weapon with Wind elemental +Effect duration: 20 minutes +Weight: 1 +# +12118# +A potion that will +temporarily increase +the user's resistance +to the Fire element +at the cost of increasing +damage from the Water +element for the potion's active duration. +-------------------------- +Type: Supportive +Effect: +Fire resistances +20% +Water resistance -15% +Effect duration: 20 minutes +Weight: 1 +# +12119# +A potion that will +temporarily increase +the user's resistance +to the Water element +at the cost of increasing +damage from the Wind +element for the potion's active duration. +-------------------------- +Type: Supportive +Effect: +Water resistances +20% +Wind resistance -15% +Effect duration: 20 minutes +Weight: 1 +# +12120# +A potion that will +temporarily increase +the user's resistance +to the earth element +at the cost of increasing +damage from the Fire +element for the potion's active duration. +-------------------------- +Type: Supportive +Effect: +Earth resistances +20% +Fire resistance -15% +Effect duration: 20 minutes +Weight: 1 +# +12121# +A potion that will +temporarily increase +the user's resistance +to the Wind element +at the cost of increasing +damage from the earth +element for the potion's active duration. +-------------------------- +Type: Supportive +Effect: +Wind resistances +20% +Earth resistance -15% +Effect duration: 20 minutes +Weight: 1 +# +12122# +Doughy, chewy snacks made out of pine pollen, chestnut flour and honey, which enhance the flavor of teas. +-------------------------- +Type: Stat booster +Effect: HIT +30 +Effect duration: 3 minutes +Weight: 7 +# +12123# +These traditional crackers from a nation in the far east are made of mixed flour, honey and sweet liquor. +-------------------------- +Type: Stat booster +Effect: FLEE +30 +Effect duration: 3 minutes +Weight: 7 +# +12124# +A colorful rice cake that is used as a party food in the far east. +-------------------------- +Type: Stat booster +Effect: ATK +10, MATK +10 +Effect duration: 1 minutes +Weight: 7 +# +12125# +A cooking kit that is designed for outdoor use. +It's a little crude, but it's also portable. +-------------------------- +Type: Cooking Tool +Weight: 2 +# +12126# +A cooking kit designed for use in the home. +It's sophisticated enough for you to craft meals with that homemade quality. +-------------------------- +Type: Cooking Tool +Weight: 3 +# +12127# +A professional cooking kit that only great chefs generally use to make food of professional quality. +These are wasted on mere tyros. +-------------------------- +Type: Cooking Tool +Weight: 3 +# +12128# +A cooking kit said to be used by chefs working in the royal palace to craft nobly exquisite dishes. +-------------------------- +Type: Cooking Tool +Weight: 7 +# +12129# +The legendary cooking kit that is said to make any recipe wondrously, sublimely delicious. +-------------------------- +Type: Cooking Tool +Weight: 7 +# +12130# +A bag, stuffed with +various snacks, that's +generally coveted by +those with a sweet tooth. +Weight: 7 +# +12131# +A drink that is already past its expiration date and no longer has any potency. +Or does it? +-------------------------- +Weight: 10 +# +12132# +A small, red bag that magically changes your clothes into a Santa Suit for 10 minutes. +-------------------------- +Weight: 20 +# +12133# +One of McDonald's desert menu. Just thinking about McDonald's reminds you of this Ice Cone. +Restores one half of Maximum HP and SP and lets you forget about the heat. +You can only buy it once a day and only until xx. +-------------------------- +Weight: 8 +# +12134# +A Red envelope filled with good fortune, given by married couples to friends and family to celebrate new beginnings. +-------------------------- +Weight: 1 +# +12135# +A wonderfully +refreshing drink that +may cause stumbling +and regrettably hazy +memories of the night +before when drank in +excess. Recovers 50% +of MaxHP and SP, but +has a 10% chance of +casting the Confuse +effect on its user. +This can be consumed 10 seconds aftereach use. +-------------------------- +Weight: 25 +# +12136# +If you use it, you can get Chocolate, Candy, Woman Glory or Women's Medal. +-------------------------- +Weight: 10 +# +12137# +First stage item. +# +12138# +Second stage item. +# +12139# +Third stage item. +# +12140# +Fourth stage item. +# +12141# +Fifth stage item. +# +12142# +A book of magic written by Ayala. +Increases your AGI by 10 for 30 minutes. +-------------------------- +Weight: 10 +# +12143# +A drink that can quench any thirst. Let's drink it cold! +Restores one quarter of Maximum HP and SP. +-------------------------- +Weight: 30 +# +12144# +An ammo case that contains 500 Lightning Spheres. +-------------------------- +Weight: 35 +# +12145# +An ammo case that contains 500 Blind Spheres. +-------------------------- +Weight: 35 +# +12146# +An ammo case that contains 500 Poison Spheres. +-------------------------- +Weight: 35 +# +12147# +An ammo case that contains 500 Freezing Spheres. +-------------------------- +Weight: 35 +# +12148# +An ammo case that contains 500 Flare Spheres. +-------------------------- +Weight: 35 +# +12149# +An ammo case that contains 500 regular Bullets. +-------------------------- +Weight: 25 +# +12150# +An ammo case that contains 500 Bloody Bullets. +-------------------------- +Weight: 25 +# +12151# +An ammo case that contains 500 Silver Bullets. +-------------------------- +Weight: 25 +# +12152# +A box which contains a gift. +-------------------------- +Weight: 10 +# +12153# +Summon a 1st Grade Bow Mercenary. +-------------------------- +Weight: 10 +# +12154# +Summon a 2nd Grade Bow Mercenary. +-------------------------- +Weight: 10 +# +12155# +Summon a 3rd Grade Bow Mercenary. +-------------------------- +Weight: 10 +# +12156# +Summon a 4th Grade Bow Mercenary. +-------------------------- +Weight: 10 +# +12157# +Summon a 5th Grade Bow Mercenary. +-------------------------- +Weight: 10 +# +12158# +Summon a 6th Grade Bow Mercenary. +-------------------------- +Weight: 10 +# +12159# +Summon a 7th Grade Bow Mercenary. +-------------------------- +Weight: 10 +# +12160# +Summon a 8th Grade Bow Mercenary. +-------------------------- +Weight: 10 +# +12161# +Summon a 9th Grade Bow Mercenary. +-------------------------- +Weight: 10 +# +12162# +Summon a 10th Grade, which is the top rank, Bow Mercenary. +This item can only be put into storage. +-------------------------- +Weight: 0 +# +12163# +Summon a 1st Grade Sword Mercenary. +-------------------------- +Weight: 10 +# +12164# +Summon a 2nd Grade Sword Mercenary. +-------------------------- +Weight: 10 +# +12165# +Summon a 3rd Grade Sword Mercenary. +-------------------------- +Weight: 10 +# +12166# +Summon a 4th Grade Sword Mercenary. +-------------------------- +Weight: 10 +# +12167# +Summon a 5th Grade Sword Mercenary. +-------------------------- +Weight: 10 +# +12168# +Summon a 6th Grade Sword Mercenary. +-------------------------- +Weight: 10 +# +12169# +Summon a 7th Grade Sword Mercenary. +-------------------------- +Weight: 10 +# +12170# +Summon a 8th Grade Sword Mercenary. +-------------------------- +Weight: 10 +# +12171# +Summon a 9th Grade Sword Mercenary. +-------------------------- +Weight: 10 +# +12172# +Summon a 10th Grade, which is the top rank, Sword Mercenary. +This item can only be put into storage. +-------------------------- +Weight: 0 +# +12173# +Summon a 1st Grade Spear Mercenary. +-------------------------- +Weight: 10 +# +12174# +Summon a 2nd Grade Spear Mercenary. +-------------------------- +Weight: 10 +# +12175# +Summon a 3rd Grade Spear Mercenary. +-------------------------- +Weight: 10 +# +12176# +Summon a 4th Grade Spear Mercenary. +-------------------------- +Weight: 10 +# +12177# +Summon a 5th Grade Spear Mercenary. +-------------------------- +Weight: 10 +# +12178# +Summon a 6th Grade Spear Mercenary. +-------------------------- +Weight: 10 +# +12179# +Summon a 7th Grade Spear Mercenary. +-------------------------- +Weight: 10 +# +12180# +Summon a 8th Grade Spear Mercenary. +-------------------------- +Weight: 10 +# +12181# +Summon a 9th Grade Spear Mercenary. +-------------------------- +Weight: 10 +# +12182# +Summon a 10th Grade, which is the top rank, Spear Mercenary. +-------------------------- +Weight: 0 +# +12183# +A quiver that contains 500 Holy Arrows. +-------------------------- +Weight: 25 +# +12184# +A HP Potion provided by the Mercenary Guild that can only be used for Mercenaries. +It cannot restore HP for players. +Recovers 1,000 HP for targeted Mercenary. +-------------------------- +Weight: 10 +# +12185# +A SP Potion provided by the Mercenary Guild that can only be used for Mercenaries. +It cannot restore SP for players. +Recovers 100 SP for targeted Mercenary. +-------------------------- +Weight: 10 +# +12186# +A box that glows with a mysterious, red color. If you open it, something good may be inside. +-------------------------- +Weight: 20 +# +12187# +A box that glows with a mysterious, green color. If you open it, something good may be inside. +-------------------------- +Weight: 20 +# +12188# +A moon cake made by grace of moon fairy. +Increases HP and SP Recovery by 50%. +-------------------------- +Weight: 30 +# +12189# +A box that glows with a mysterious, red color. If you open it, something good may be inside. +-------------------------- +Weight: 20 +# +12190# +A sweet and finest moon cake. It makes your body feel light. +Temporarily Increases movement speed. +-------------------------- +Weight: 30 +# +12191# +A special moon cake. It is fragrant and the silver one grade taste is born. When it eats and the body comes to be light and the impression which comes to be nimble holds. +Temporarily Increases Attack Speed, Increases movement speed. +-------------------------- +Weight: 30 +# +12192# +A tasty pumpkin flavored treat, usually enjoyed during the fall season. +-------------------------- +Type: Restorative +Heal: 5% HP, 5% SP +Weight: 1 +# +12193# +Looks so yummy that you will feel like to have a bite instantly. +-------------------------- +Type: Restorative +Heal: 5% HP, 5% SP +Weight: 2 +# +12194# +A small bundle that reminds you of your hometown, you will feel warmth when hold it in your hand. +-------------------------- +Weight: 20 +# +12195# +Delicious cookies whose taste contains just a bit of liquor. +-------------------------- +Type: Restorative +Heal: 20% SP +Weight: 10 +# +12196# +A white Rice Cake that makes you feel full once you eat it. +-------------------------- +Type: Restorative +Heal: 50% HP +Weight: 10 +# +12197# +A salty Rice Cake. +-------------------------- +Type: Restorative +Heal: 10% HP, 10% SP +Weight: 2 +# +12198# +A Rice Cake that is flavored with a hint of Vanilla. +-------------------------- +Type: Stat booster +Effect: LUK +21 +Effect duration: 20 minutes +Weight: 10 +# +12199# +The tasty smell from the paper. +-------------------------- +Weight: 0 +# +12200# +A Christmas cake that is only available during the Christmas season. +Automatically casts Level 3 Magnificat and restores a small amount of HP. +-------------------------- +Weight: 5 +# +12201# +The criticism which is the possibility of seeing frequently the red box which it commits. +-------------------------- +Weight: 20 +# +12202# +A very pricey Louyang dish that tastes absolutely superb. +-------------------------- +Type: Cooked Food +Effect: STR +10 +Heal: 20% HP, 10% SP +Effect duration: 30 minutes +Weight: 1 +# +12203# +This scorpion dish is cooked with the heat of the desert sand and is one of the four best dishes in Sograt Desert cuisine. +-------------------------- +Type: Cooked Food +Effect: AGI +10 +Heal: 15% HP, 5% SP +Effect duration: 30 minutes +Weight: 1 +# +12204# +A cocktail whose unforgettable flavor is as potent as the breath of a dragon. +-------------------------- +Type: Cooked Food +Effect: INT +10 +Heal: 10% HP, 20% SP +Effect duration: 30 minutes +Weight: 1 +# +12205# +This beverage is named after the legendary spring that is believed to be the source of the world's rivers and is famous for its pure, amazing taste. +-------------------------- +Type: Cooked Food +Effect: DEX +10 +Heal: 10% HP, 10% SP +Effect duration: 30 minutes +Weight: 1 +# +12206# +A rare, specialty Payon dish that bestows luck to those fortunate enough to eat it. +-------------------------- +Type: Cooked Food +Effect: LUK +10 +Heal: 14% HP, 8% SP +Effect duration: 30 minutes +Weight: 1 +# +12207# +A funky smelling, suspicious looking stew that really does make you feel like an immortal when you eat it. +-------------------------- +Type: Cooked Food +Effect: VIT +10 +Heal: 25% HP +Effect duration: 30 minutes +Weight: 1 +# +12208# +This well written, detailed manual explains effective battle methods. +-------------------------- +Type: Supportive +Effect: Experience gained +50% +Effect duration: 30 minutes +Weight: 1 +# +12209# +A life insurance certificate issued by Kafra Headquarters. +-------------------------- +Type: Supportive +Effect: Disable EXP loss penalty when character dies +Effect duration: 30 minutes +Weight: 1 +# +12210# +Sweet, tasty bubble gum. +-------------------------- +Type: Supportive +Effect: Item Droprate +100% +Duration: 30 minutes +Weight: 1 +# +12211# +A Kafra name card issued by the Kafra Headquarters. +-------------------------- +Type: Supportive +Effect: Open kafra storage +Weight: 1 +# +12212# +An enchanted, giant wing from an ancient creatures. +-------------------------- +Type: Supportive +Effect: Teleport all party members to random cell when used by a Party Leader +Weight: 1 +# +12213# +Pressing the button on this stick will flash blinding light that seems to cause memory loss. +Resets the Skill Tree and gives the corresponding number of Skill Points. +This item can only be used in town and the character must less than 600 weight. +Cannot be equipped with a Pushcart, Falcon or PecoPeco. +Cannot be used by Novice Class. +-------------------------- +Weight: 0 +# +12214# +A clean convex mirror that can be used to detect the appearance of Boss class monsters. +10 minute duration that is canceled when the player leaves the map or logs out. +Lord of the Dead and Boss monster in the Bio Lab, Ktullanux, Memory of Thanatos and some other event MVP monsters cannot be detected by using this item. +-------------------------- +Weight: 1 +# +12215# +A scroll in which a single use of Level 10 Blessing has been recorded. +-------------------------- +Type: Magic scroll +Cast: Level 10 Blessing +Weight: 1 +# +12216# +A scroll in which a single use of Level 10 Increase Agility has been recorded. +-------------------------- +This item will not work while your character is casting a skill or has less than 16 HP. +-------------------------- +Type: Magic scroll +Cast: Level 10 Increase Agility +Weight: 1 +# +12217# +A scroll in which a single use of Level 5 Aspersio has been recorded. Requires 1 Holy Water. +-------------------------- +Type: Magic scroll +Cast: Level 5 Aspersio +Weight: 1 +# +12218# +A scroll in which a single use of Level 5 Assumptio has been recorded. +-------------------------- +Type: Magic scroll +Cast: Level 5 Assumptio +Weight: 1 +# +12219# +A scroll in which a single use of Level 10 Wind Walk has been recorded. +-------------------------- +Type: Magic scroll +Cast: Level 10 Wind Walk +Weight: 1 +# +12220# +A scroll in which a single use of Level 5 Adrenaline Rush has been recorded. +-------------------------- +Type: Magic scroll +Cast: Level 5 Adrenaline Rush +Weight: 1 +# +12221# +A suspicious looking piece of machinery that allows server wide broadcasting. +-------------------------- +Type: Usable +Effect: Broadcasts message to all players in server +Weight: 1 +# +12223# +2019 Sweets Festival Buff Item. +# +12224# +2019 Sweets Festival Buff Item. +# +12225# +A candy cane that is so sweet, it can melt the human tongue. +-------------------------- +Type: Taming Item +Monster: Santa Goblin +Weight: 5 +# +12232# +Square flat pastry from the milk, the flour, the honey and other products. +-------------------------- +Type: Stat booster +Effect: Increases movement and attack speed +Effect duration: 15 minutes +Weight: 15 +# +12233# +Foam beverage of brown color. Looks like home-brewed beer, but nonalcoholic. +Traditionally it is drank out of the figured wineglasses. +-------------------------- +Type: Restorative +Heal: 100% HP, 100% SP +Weight: 20 +# +12234# +A chocolate bar whose content is 99% Cacao: +It tastes more bitter than sweet, but chocolate aficionados love it for its rugged flavor and various health benefits. +-------------------------- +Type: Restorative +Heal: 25% HP +Weight: 10 +# +12235# +A ripe, sweet strawbery covered in a smooth layer of luscious chocolate. +-------------------------- +Weight: 10 +# +12236# +A crunchy tart +filled with rich +chocolate and topped +with fresh cream. +-------------------------- +Weight: 10 +# +12237# +This chocolate has +obviously been cooked +too long and its burnt stench can be smelled +from a distance. +-------------------------- +Weight: 10 +# +12238# +It is old but from when it eats and the stomach disorder is same the day thing. +-------------------------- +Weight: 10 +# +12239# +It is old but from when it eats and the stomach disorder is same the day thing. +-------------------------- +Weight: 10 +# +12240# +The box which the color fades very old yellow. What will come out and anyone which falls it does not know. +-------------------------- +Weight: 20 +# +12241# +A Concentration Potion for Mercenaries that slightly increases ASPD. +-------------------------- +Weight: 10 +# +12242# +An Awakening Potion for Mercenaries that increases ASPD. +-------------------------- +Weight: 15 +# +12243# +A Berserk Potion for Mercenaries that greatly increases ASPD. +-------------------------- +Weight: 20 +# +12244# +Some the gift box which seems old. The silence will not be included pedigree the deep futures. +-------------------------- +Weight: 20 +# +12245# +A frothy green ale brewed by O'Riley the Leprechaun. +-------------------------- +Weight: 50 +# +12246# +Powerful spirits are sealed within this album. +What will happen if the seal is undone? +-------------------------- +Weight: 5 +# +12247# +A glass of sweetened fruits and desserts served with crushed ice and lots of milk. A Filipino dessert that never fails to help quench the summer heat. +All Stats +3 for 10 minute duration. +Limited to Level 20 or above players. +-------------------------- +Weight: 10 +# +12248# +A box containing Fancy Ball ornament. +-------------------------- +Weight: 1 +# +12249# +A payment statement for the Kafra Employees. +-------------------------- +Weight: 1 +# +12250# +The epitome of Louyang cuisine. It's ingredients may be hard to find, but culinarily speaking, it's a masterpiece. +-------------------------- +Type: Stat booster +Effect: STR +10 +Effect duration: 60 minutes +Weight: 1 +# +12251# +One of the four best dishes in the Sograt Desert, this scorpion dish is cooked using the heat of the desert sands. +-------------------------- +Type: Stat booster +Effect: AGI +10 +Effect duration: 60 minutes +Weight: 1 +# +12252# +A cocktail with an unforgettable flavor as impressive as a dragon's breath. +-------------------------- +Type: Stat booster +Effect: INT +10 +Effect duration: 60 minutes +Weight: 1 +# +12253# +Named after the legendary spring believed to be the source of the world's rivers, this beverage is famous for its amazing taste. +-------------------------- +Type: Stat booster +Effect: DEX +10 +Effect duration: 60 minutes +Weight: 1 +# +12254# +A rare specialty dish from Payon that bestows luck on those fortunate enough to eat it. +-------------------------- +Type: Stat booster +Effect: LUK +10 +Effect duration: 60 minutes +Weight: 1 +# +12255# +A stew with a funky smell that looks quite suspicious, but it really does give the feeling of immortality. +-------------------------- +Type: Stat booster +Effect: VIT +10 +Effect duration: 60 minutes +Weight: 1 +# +12256# +Item to celebrate 4th anniversary of RO in Philipine. +-------------------------- +Weight: 1 +# +12257# +A white pill that helps your body to overcome cold. +-------------------------- +Type: Restorative +Heal: 25% HP, 25% SP +Weight: 10 +-------------------------- +Requirement: +Base Level 50 +# +12258# +A box with a bomb capsule. When you use a bomb poring is summoned. Flammable!. +-------------------------- +Weight: 1 +# +12259# +An enchanted tonic that made by a dream flower. +-------------------------- +Type: Supportive +Effect: Gives 3,000,000 base experience; Gives 1,500,000 job experience +Weight: 0 +# +12260# +This refreshing outfit truly is the sidearm of an experienced adventurer. +Allowing one to remain cool in the face of adversity. +-------------------------- +Warning: Do not wear outfit when in battle; it is only to be used in relaxed situations. +-------------------------- +Weight: 10 +# +12261# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 2,000,000 base experience; Gives 1,000,000 job experience +Weight: 0 +# +12262# +A badge made out of bronze that was used in an ancient asian country. +It was given to government officials who went on business trips and they could use this badge to rent horses anywhere. +-------------------------- +Type: Supportive +Effect: Increases movement speed +Effect duration: 9 minutes +Weight: 1 +# +12263# +This well written, detailed manual explains effective battle methods. +-------------------------- +Type: Supportive +Effect: Experience gained +50% +Effect duration: 30 minutes +Weight: 1 +# +12264# +Chewy and sweet bubble gum. If you are chewing this gum, you will feel like you have to give up everything you have. +-------------------------- +Type: Supportive +Effect: Item drop rate +100% +Effect duration: 30% minutes +Weight: 1 +# +12265# +A life insurance certificate issued by Kafra Headquarter. +-------------------------- +Type: Supportive +Effect: Disable EXP loss penalty when character dies +Effect duration: 30 minutes +Weight: 1 +# +12266# +Doughy, chewy snacks made out of pine pollen, chestnut flour and honey, which enhance the flavor of teas. +Embossed with the characters for safety, luck and longevity, these cookies are made to wish good fortune to those who eat them. +-------------------------- +Type: Stat booster +Effect: HIT +30 +Effect duration: 3 minutes +Weight: 7 +# +12267# +These traditional crackers from a nation in the far east are made of mixed flour, honey and sweet liquor. +-------------------------- +Type: Stat booster +Effect: FLEE +30 +Effect duration: 3 minutes +Weight: 7 +# +12268# +A colorful rice cake that is used as a party food in the far east. +-------------------------- +Type: Stat booster +Effect: ATK +10 for 1 minutes, MATK +10 for 2 minutes +Weight: 7 +# +12269# +Foodstuffs prepared for urgent situations. Don't eat too fast, you might choke on it. +-------------------------- +Type: Stat booster +Effect: ATK +10 +Effect duration: 10 minutes +Weight: 7 +# +12270# +Foodstuffs prepared for urgent situations. Don't eat too fast, you might choke on it. +-------------------------- +Type: Supportive +Effect: MATK +10 +Effect duration: 10 minutes +Weight: 7 +# +12271# +Meal Ready to eat. Improved Ration A, which is convenient for a busy life. Don't be so sure about the taste. +-------------------------- +Type: Restorative +Heal: 5% HP +Weight: 7 +# +12272# +Meal Ready to eat. Improved Ration B, which is convenient for a busy life. Don't be so sure about the taste. +-------------------------- +Type: Stat booster +Effect: HIT +33 +Effect duration: 10 minutes +Weight: 7 +# +12273# +Meal Ready to eat. Improved Ration C, which is convenient for a busy life. Don't be so sure about the taste. +-------------------------- +Type: Stat booster +Effect: FLEE +33 +Effect duration: 10 minutes +Weight: 7 +# +12274# +A pill made by preparing various herbal medicines and herbs in a specific combination. +Only one of eastern religious group can create this. +-------------------------- +Type: Stat booster +Effect: MaxHP +5%, HP Recovery Rate +10% +Effect duration: 60 minutes +Weight: 1 +# +12275# +A pill made from various magical medicines. +-------------------------- +Type: Stat booster +Effect: MaxSP +5%, SP Recovery Rate +10% +Effect duration: 60 minutes +Weight: 1 +# +12276# +A book that can summon a monster Mimic as a Mercenary. Don't need to feed him though. +Mercenary disappears when its owner has drained all energy. +-------------------------- +Weight: 1 +# +12277# +A book that can summon a monster Disguise as a Mercenary. He looks little delinquent but he is actually nice when you get to know him. +Mercenary disappears when its owner has drained all energy. +-------------------------- +Weight: 1 +# +12278# +A mercenary contract with Alice to assist you in your battles. +Mercenary disappears when its owner has drained all energy. +-------------------------- +Weight: 0 +# +12279# +A scroll endowed with undead elemental magic. +-------------------------- +Type: Supportive +Effect: Increases resistance against Fire, Water, Wind and Earth by 20%. +Effect duration: 5 minutes +Weight: 1 +# +12280# +A scroll endowed with Holy elemental magic. +-------------------------- +Type: Supportive +Effect: Blesses equipped armor with Holy elemental. +Effect duration: 5 minutes +Weight: 1 +# +12281# +A box containing treasure? This contains a huge treasure cases maybe not ... +-------------------------- +Weight: 15 +# +12282# +A bag with 10 Amber Pearl inside. +-------------------------- +Weight: 1 +# +12283# +A bag with 50 Amber Pearl inside. +-------------------------- +Weight: 1 +# +12284# +aRO item. +# +12286# +A box containing fancy ball ornament. +-------------------------- +Weight: 1 +# +12287# +An item which when you breathe in this powder, your font becomes cute. +To make the best use of it, its best used when you want to express your love, or when you want to say that you're sorry after making a big mistake. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 0 +# +12288# +An item which when you breathe in this powder, your font becomes a bit evil. +To make the best use of it, its best used when you have something you want to complain about, or when you want to do something awful. +When double clicked, your font changes and when used again, your font goes back to normal +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 0 +# +12289# +An item which when you breathe in this powder, your font becomes humorous. +To make the best use of it, its best used when you have something you want to talk about thats funny. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 0 +# +12290# +A New Year Cat's present. Having a description in small letters: A premium can for cats containing tuna 45% +HP Recovery +5%, Enables the use of Level 5 Blessing. +-------------------------- +Weight: 10 +# +12291# +A New Year Cat's present. Having a description in small letters: Royal mineral water made of Prontera aquifer water +SP Recovery +5%, Increase Agility Level 5. +-------------------------- +Weight: 10 +# +12292# +Unripe Fruit from the Yggdrasil tree which brings life to our world. +Restores 20% HP. +-------------------------- +Weight: 20 +# +12293# +A Dried candied Yggdrasilberry that recovers 20% SP when consumed. +-------------------------- +Weight: 20 +# +12294# +녹슨 기념 주화가 나오는 Box. 상자 개봉 시, 기념주화의 지속시간은 1시간이니 유념할 것. +-------------------------- +Weight: 1 +# +12295# +일반 기념 주화가 나오는 상자, 상자 개봉 시, 기념주화의 지속시간은 1시간이니 유념할 것. +-------------------------- +Weight: 1 +# +12296# +반짝이는 기념 주화가 나오는 상자, 상자 개봉 시, 기념주화의 지속시간은 1시간이니 유념할 것. +-------------------------- +Weight: 1 +# +12297# +반짝이는 기념 주화가 나오는 상자, 상자 개봉 시, 기념주화의 지속시간은 2시간이니 유념할 것. +-------------------------- +Weight: 1 +# +12298# +Reduced SP cost of skills by 15% for 1 hour. +-------------------------- +Weight: 1 +# +12299# +Adds 10% resistance to the status effects of: +Stun +Frozen +Stone Curse +Curse +Poison +Silence +Blind +Sleep +Bleeding +Confuse +Weight: 1 +# +12300# +A mercenary contract with a Wild Rose to assist you in your battles. +Can be stored. +-------------------------- +Weight: 0 +# +12301# +A mercenary contract with Doppelganger to assist you in your battles. +Can be stored. +-------------------------- +Weight: 0 +# +12302# +A mercenary contract with Egnigem Cenia to assist you in your battles. +Can be stored. +-------------------------- +Weight: 0 +# +12303# +Have some fun pouring the water on you during the Water event! +LUK +5 for 1 minute. +-------------------------- +Weight: 1 +# +12304# +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 0 +# +12305# +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 0 +# +12306# +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 0 +# +12307# +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 0 +# +12308# +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 0 +# +12309# +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 0 +# +12310# +a branch of cherry blossom Tree with full-blown cherry blossoms. It feels like your body lightens with rich scent of a flower when you wave it. +Increases FLEE by 10 points for 5 minutes +-------------------------- +Weight: 5 +# +12311# +Made bigger and be more splendid with many spray of flowers put together. Doubled Scent! Doubled Elegance! +Increases FLEE of the party members by 10 for 5 minutes. If not in a party, it will have no effect. +-------------------------- +Weight: 10 +# +12312# +A Battle Manual that takes twice as long to read. +150% Exp/Jexp for 60 minutes. +Can only be stored. +-------------------------- +Weight: 1 +# +12313# +천사의 수호력이 깃든 카드. 평소 고마웠던 분에게 사용해 감사의 마음을 전해 보자. +자신에게는 사용불가. 타인에게만 사용가능. +-------------------------- +Weight: 10 +# +12314# +A box containing: +Steamed Tongue Box(10) +Steamed Desert Scorpions Box(10) +Dragon Breath Cocktail Box(10) +Hwergelmir's Tonic Box(10) +Cooked Nine Tail's Tails Box(10) +Stew of Immortality Box(10) +Blessing Scroll Box(10) +Increase Agility Scroll Box(10) +Bubble Gum Box(10) +Small Life Potion Box(10) +[Event] Battle_Manual Box(5). +-------------------------- +Weight: 1 +# +12315# +You have the blessings of the goddess! +-------------------------- +Weight: 1 +# +12316# +The angel's blessing be with you! +-------------------------- +Weight: 1 +# +12317# +A magic powder that gives the appearance that it is snowing when used. +-------------------------- +Weight: 1 +# +12318# +This item is expected to create an atmosphere of love, please! +-------------------------- +Weight: 1 +# +12319# +A snack sent from the Rune-Midgarts Kingdom flavored with strawberries. +-------------------------- +Type: Stat booster +Effect: ATK & MATK +5 +Effect duration: 10 minutes +Weight: 30 +# +12320# +A snack sent from Schwartzwalt. Ice cold fruit juice quenches your throat and cools your whole body. +-------------------------- +Type: Stat booster +Effect: HIT +10, FLEE +20 +Effect duration: 10 minutes +Weight: 30 +# +12321# +A snack sent from Arunafeltz. This sandwich helps developing stamina with its spicy taste. +-------------------------- +Type: Stat booster +Effect: Critical +7 +Effect duration: 10 minutes +Weight: 30 +# +12322# +A pie covered with sweet chocolate. This isn't pretty but the taste is excellent. +It reminds you of the taste of homemade pie. +-------------------------- +Type: Restorative +Heal: 5% HP, 5% SP +Weight: 5 +# +12323# +The wings cut from fly to be made into enchanted item. +-------------------------- +Type: Supportive +Effect: Teleport to random cell +Weight: 0 +# +12324# +An enchanted butterfly's wing that instantly sends its user to his Save Point when waved in the air. +-------------------------- +Type: Supportive +Effect: Teleport to Save Point +Weight: 0 +# +12325# +A magnifying glass used for appraises unidentified items and equipment. Use [Ctrl +Left Click] directly on an unknown item to identify it. +-------------------------- +Type: Supportive +Effect: Identify unknown item +Weight: 0 +# +12326# +A firecracker that shoots up into the sky when lit. +-------------------------- +Weight: 2 +# +12327# +A talisman that is rumored to bring good luck if worn. +-------------------------- +LUK +20 for 1 hour. +-------------------------- +Warning: If you stack buffs of the same effect, the effect of this item will disappear. +-------------------------- +Weight: 5 +# +12328# +Legend has it that lovers who love each other can overcome all difficulties once they use this amulet. +-------------------------- +All Stats +10 for 20 seconds. +-------------------------- +Weight: 10 +# +12329# +Summon supporting Male Game Master to Fight at your side for 30 minutes. +-------------------------- +Weight: 0 +# +12330# +Summon supporting Female Game Master to Fight at your side for 30 minutes. +-------------------------- +Weight: 0 +# +12331# +Strong fragance of ginseng. It good for body. +-------------------------- +Type: Restorative +Heal: 6% HP +Weight: 1 +# +12332# +Slightly sour smell of the fruit juice. One cup of vitamin and iron. +-------------------------- +Type: Restorative +Heal: 6% SP +Weight: 1 +# +12333# +A crystal that is shining with mysterious color. +-------------------------- +Type: Restorative +Heal: 15% SP +Weight: 1 +# +12334# +A box that contains rare helm. +-------------------------- +Weight: 1 +# +12335# +Onion, Beef, chicken, etc were inserted into this bamboo skewer. +-------------------------- +Type: Restorative +Heal: 60% HP, 60% SP +Weight: 35 +# +12336# +A perfect dish for people that don't like getting fat. +-------------------------- +Type: Restorative +Heal: 30% HP, 30% SP +Weight: 30 +# +12337# +A Grilled Sausages served with garlic. +-------------------------- +Type: Restorative +Heal: 20% HP, 20% SP +Weight: 20 +# +12338# +The golden corn is really beautiful. +-------------------------- +Type: Stat booster +Effect: STR +2, INT +2, AGI +2 +Effect duration: 3 minutes +Weight: 10 +# +12339# +Ragnarok special edition for readers to buy treasure edition box! +Get 1 random item of 5 kinds item. +-------------------------- +Weight: 1 +# +12340# +A chewy rice powder that has a mysterious shine. It can be used harden Hot Rice Cake dough. +-------------------------- +Type: Taming Item +Monster: Rice Cake +Weight: 1 +# +12341# +A box that is filled with one hundred reformed traps. +-------------------------- +Weight: 10 +# +12342# +Supplement made by the Manuk Research Center. It is officially recommended to the Mine Workers. +Physical Attack Damage done to the monsters in Manuk Area increases by 10% for 10 minutes. +(Nepenthes, Centipede, Centipede Larva, Hillslion, Tatacho, Hardrock Mammoth) +-------------------------- +Weight: 5 +# +12343# +Supplement made by the Manuk Research Center. It is officially recommended to the Mine Workers. +Physical & Magical Damage from the monsters in Manuk Area decreased by 10% for 10minutes. +(Nepenthes, Centipede, Centipede Larva, Hillslion, Tatacho, Hardrock Mammoth) +-------------------------- +Weight: 5 +# +12344# +Sweet Jam made out of a Pinguicula's fruit. +Physical Attack Damage done to the monsters in Splendide Area increases by 10% for 10 minutes. +(Pinguicula, Luciola Vespa, Cornus, Naga, Tendrillion) +-------------------------- +Weight: 5 +# +12345# +Jam made out of Luciola's Honey and Herb. +Physical & Magical Damage from the monsters in Splendide Area decrease by 10% for 10 minutes. +(Pinguicula, Luciola Vespa, Cornus, Naga, Tendrillion) +-------------------------- +Weight: 5 +# +12346# +Puckery unripe acorn. It's best not to eat this. +-------------------------- +Weight: 0 +# +12347# +Jelly made out of unripe acorn flour. +Usually acorn jelly is delicately-flavored, but this is quite sour tasting. +-------------------------- +Weight: 5 +# +12348# +Supplement made by the Manuk Research Center. It is officially recommended to the Mine Workers. +Magical Attack Damage done to the monsters in Manuk Area increases by 10% for 10 minutes. +(Nepenthes, Centipede, Centipede Larva, Hillslion, Tatacho, Hardrock Mammoth) +-------------------------- +Weight: 5 +# +12349# +Potion made out of Cornus' Tears. You don't know how the tear drops were obtained. +Magical Attack Damage done to the monsters in Manuk Area increases by 10% for 10 minutes. +(Pinguicula, Luciola Vespa, Cornus, Naga, Tendrillion) +Weight: 5 +# +12350# +A blessed potion bottle. +-------------------------- +Type: Supportive +Effect: Cast Level 5 Blessing and Angelus +Weight: 10 +# +12351# +A portable bullhorn. +-------------------------- +Type: Supportive +Effect: Cast Level 1 Crazy Uproar +Weight: 5 +# +12352# +A scroll with lots of dungeon & field coordination written on it. You can go to the place you want by tearing the paper into pieces. +When used allows you to teleport to a specific dungeon or field from the following list: +Ice Cave 01,Thor's Volcano Dungeon 01,Abyss Lakes Underground Cave 01,Thanatos Tower,Lighthalzen,Juperos 02,Geffenia,Kiel Hyre's Academy,Hidden Temple 03 +Nifflheim,Sunken Ship 01,Veins Field,Valkyrie Realm,Britoniah Guild,Greenwood Lake Guild +Luina, the satellite of Aldebaran,Schwarzwald Realm,Schwaltzvalt Guild Castle. +-------------------------- +Weight: 1 +# +12353# +A small bottle with water in it that's almost freezing. +-------------------------- +Type: Supportive +Effect: Endows weapon with Water element +Effect duration: 90 seconds +Weight: 1 +# +12354# +A chocolate roll cake in the form of firewood covered with snow. When you see it, you can feel Christmas is coming. +-------------------------- +Type: Stat booster +Effect: HIT +3, Critical +7, HP & SP Recovery Rate +3% +Effect duration: 10 minutes +Weight: 5 +# +12355# +It is rumored that you can get this box once a year. If you cry, you are excluded from Santa's list. +-------------------------- +Weight: 10 +# +12356# +A costume branded by the artist, Louise Kim. Its design is similar to yours, but what does it matter? +-------------------------- +Weight: 10 +# +12357# +A cookie made of gingerbread eaten by White Lady monsters. +-------------------------- +Type: Taming Item +Monster: White Lady +Weight: 5 +# +12358# +A fan made of blue feathers used to lure Civil Servant monsters. +-------------------------- +Type: Taming Item +Monster: Civil Servant +Weight: 5 +# +12359# +A pliable leaf that lures Leaf Cats. +-------------------------- +Type: Taming Item +Monster: Leaf Cat +Weight: 5 +# +12360# +Loli Ruris drink this blood-red juice. +-------------------------- +Type: Taming Item +Monster: Loli Ruri +Weight: 5 +# +12361# +Marionettes can't resist this shaved ice recipe. +-------------------------- +Type: Taming Item +Monster: Marionette +Weight: 5 +# +12362# +A samurai dagger used to lure Shinobi. +-------------------------- +Type: Taming Item +Monster: Shinobi +Weight: 5 +# +12363# +A coffin that can capture a Whisper's soul. +-------------------------- +Type: Taming Item +Monster: Whisper +Weight: 5 +# +12364# +Goblin leader's always need a spare staff. +-------------------------- +Type: Taming Item +Monster: Goblin Leader +Weight: 5 +# +12365# +Evil Nymphs chase these pink flowers. +-------------------------- +Type: Taming Item +Monster: Evil Nymph +Weight: 5 +# +12366# +A girl's doll that is irresistible to Miyabi Dolls. +-------------------------- +Type: Taming Item +Monster: Miyabi Doll +Weight: 5 +# +12367# +Dullahan's drink this luxurious whisky. +-------------------------- +Type: Taming Item +Monster: Dullahan +Weight: 5 +# +12368# +Medusas are the only ones that can peer at themselves in this mirror. +-------------------------- +Type: Taming Item +Monster: Medusa +Weight: 5 +# +12369# +Stone Shooters are drawn to this tropical scent. +-------------------------- +Type: Taming Item +Monster: Stone Shooter +Weight: 5 +# +12370# +A letter written to a secret love. Incubus is drawn to it's naivety. +-------------------------- +Type: Taming Item +Monster: Incubus +Weight: 5 +# +12371# +The magic used to give Golem's life is written on this stone tablet. +-------------------------- +Type: Taming Item +Monster: Golem +Weight: 5 +# +12372# +Nightmare Terror steeds can be captured with this ancient transcript. +-------------------------- +Type: Taming Item +Monster: Nightmare Terror +Weight: 5 +# +12373# +A letter written by a boy to his first love. +Succubus finds its naivety irresistible. +-------------------------- +Type: Taming Item +Monster: Succubus +Weight: 5 +# +12374# +Imps are drawn to its flame. +-------------------------- +Type: Taming Item +Monster: Imp +Weight: 5 +# +12375# +A special sandwich that boost ability. +-------------------------- +Type: Stat booster +Effect: HIT +5, Reduces After Attack Delay by 10% +Effect duration: 20 minutes +Weight: 8 +# +12376# +The second new item of Mysterious Can. Fresh mackerel flavor. +Best nutrition for children in the growing period. +Recover 3% HP. Enables the use of Level 2 Gloria. +-------------------------- +Weight: 10 +# +12377# +The second new item of Mysterious PET Bottle. Blue ocean flavor. +Due to its smell, the ocean spreads right in front of one's eyes. +Recover 3% SP. Enables the use of Level 1 Magnificat. +-------------------------- +Weight: 10 +# +12378# +A new year payon tradition soup. +Restore HP & SP by 50%. +-------------------------- +Weight: 10 +# +12379# +\ + It's been made as a special production in Sessrumnir temple. It has been modeled after current pope. +There's an issue with this as a blasphemy and likely been prohibited but, it's still popular within close associates. +There's a rumor that the fan club of the girl pope made this. The taste is not bad. eat before an expiration date. +For 20 minutes ATK, MATK +3%, all elemental resistance 3%. +-------------------------- +Weight: 1 +# +12380# +A flute that emits high frequency sounds only to a wolf. A disposable. +-------------------------- +Weight: 1 +# +12381# +A scroll written with an unknown language. +-------------------------- +Weight: 1 +# +12382# +A scroll written with an unknown language. +-------------------------- +Weight: 1 +# +12383# +A magazine with a thousand Vulcan Bullets. It's portable. +-------------------------- +Weight: 50 +# +12384# +Strong magic energy is whirling about in a rainbow color sealed with a Warlock's Frost Misty magic. +-------------------------- +Weight: 5 +# +12385# +Strong magic energy is whirling about in a rainbow color sealed with a Warlock's Crimson Lock magic. +-------------------------- +Weight: 5 +# +12386# +Strong magic energy is whirling about in a rainbow color sealed with a Warlock's Chain Lightning magic. +-------------------------- +Weight: 5 +# +12387# +Strong magic energy is whirling about in a rainbow color sealed with a Warlock's Earth Strain magic. +-------------------------- +Weight: 5 +# +12388# +A trial rune stone for Rune Knight's job change quest. +-------------------------- +Weight: 1 +# +12389# +A trial rune stone for Rune Knight's job change quest. +-------------------------- +Weight: 1 +# +12390# +A trial rune stone for Rune Knight's job change quest. +-------------------------- +Weight: 1 +# +12391# +A pretty colored egg. +-------------------------- +Weight: 1 +# +12392# +Restores a certain amount of HP to Mado Gear. +-------------------------- +Weight: 10 +# +12393# +Restores a proper amount of HP to Mado Gear. +-------------------------- +Weight: 14 +# +12394# +Restores HP to Mado Gear. +-------------------------- +Weight: 18 +# +12395# +A bowl of Tantan Noodles that Green Maidens find hard to resist. +-------------------------- +Type: Taming Item +Weight: 5 +# +12396# +A very suspicious box. You don't know what will happen when you open it. +-------------------------- +Weight: 1 +# +12397# +A very suspicious box. You don't know what will happen when you open it. +-------------------------- +Weight: 1 +# +12398# +A well wrapped gift box. +-------------------------- +Weight: 1 +# +12399# +A chest with colorful decoration. It's very heavy, it seems contain many coins. +-------------------------- +Weight: 100 +# +12400# +Let's have a good time throwing water! +-------------------------- +Weight: 1 +# +12402# +This fruit has a sweet smell. +Restore HP and SP by 5%. +-------------------------- +Weight: 0 +# +12403# +A pretty colored egg. +-------------------------- +Weight: 1 +# +12404# +A potion that able to increase attack power. +ATK, MATK +2% for 2 minutes. +Increases recovery from the heal skill and recovery items by 10%. +Effect disappear upon death. +-------------------------- +Weight: 1 +# +12405# +A lesser seed of Yggdrasil. +Restore HP and SP by 30%. +Cast Level 3 Blessing. +-------------------------- +Weight: 5 +# +12406# +Scroll enables character type as fire for 10 seconds. Effect lasts after player's death. +-------------------------- +Weight: 1 +# +12407# +잘 포장된 Gift Box. 무엇이 들어있는지는 알 수 없다. +-------------------------- +Weight: 1 +# +12408# +A strange ball that can capture Strange Hydra. +-------------------------- +Weight: 0 +# +12409# +Ignorance is delicious +-------------------------- +Weight: 0 +# +12410# +Strengthens relationships with distant friends and family. +-------------------------- +Weight: 0 +# +12411# +This well written, detailed manual explains High Efficiency battle methods. +EXP rate increases to 200% for 15 minutes. +-------------------------- +Weight: 1 +# +12412# +A High Efficiency bubble gum that packs double the punch. +Item drop rate increases by 200% for 15 minutes. +-------------------------- +Weight: 1 +# +12413# +A well packed gift box. No one knows what is in it. +-------------------------- +Weight: 1 +# +12414# +A candy made of guarana fruit. Don't eat too much at once beacuse it increases concentration. +-------------------------- +Type: Stat booster +Effect: Reduces After Attack Delay by 10%, Cast Level 5 Increase Agi +Effect duration: 30 minutes +Weight: 1 +# +12415# +A scroll with many castle coordinates written. If you tear the scroll at the right spot, it will warp you to that location. +Allows warp to Mardol, Syr, Horn, Gefn, Banadis, Himinn, Andlangr, Vidblainn, Hljod, Skidbladnir. +-------------------------- +Weight: 1 +# +12416# +A pretty colored egg. +-------------------------- +Weight: 1 +# +12417# +A potion that slightly boosts attack speed. +Duration 500 seconds. +-------------------------- +Weight: 1 +# +12418# +A potion that increases ATK a little. Duration: 500 seconds. +-------------------------- +Weight: 5 +# +12419# +A potion that increases MATK a little. Duration: 500 seconds. +-------------------------- +Weight: 5 +# +12420# +A potion that slightly boosts MaxHP. +Duration 500 seconds. +-------------------------- +Weight: 1 +# +12421# +A potion that can slightly boosts MaxSP. +Duration 500 seconds. +-------------------------- +Weight: 1 +# +12422# +A small bottle of potion that can Increases MaxHP. +-------------------------- +Type: Restorative +Heal: 1% HP +Effect: Slightly increases MaxHP +Effect duration: 500 sec +Weight: 2 +# +12423# +A potion that can Increases MaxHP. +-------------------------- +Type: Restorative +Heal: 2% HP +Effect: Moderately increases MaxHP +Effect duration: 500 sec +Weight: 4 +# +12424# +A big bottle of potion that can Increases MaxHP. +-------------------------- +Type: Restorative +Heal: 5% HP +Effect: Considerably increases MaxHP +Effect duration: 500 sec +Weight: 8 +# +12425# +A small bottle of potion that can Increases MaxSP. +-------------------------- +Type: Restorative +Heal: 2% SP +Effect: Slightly increases MaxSP +Effect duration: 500 sec +Weight: 2 +# +12426# +A bottle of potion that can Increases MaxSP. +-------------------------- +Type: Restorative +Heal: 4% SP +Effect: Moderately increases MaxSP +Effect duration: 500 sec +Weight: 4 +# +12427# +A big bottle of potion that increases MaxSP. +-------------------------- +Type: Restorative +Heal: 8% SP +Effect: Considerably increases MaxSP +Effect duration: 500 sec +Weight: 8 +# +12428# +A bottle of potion that recovers a large amount of HP. +-------------------------- +Type: Restorative +Heal: 1000 HP(Fixed) +Effect: HP Recovery Rate +20% +Effect duration: 500 sec +Weight: 7 +# +12429# +A very wild dish made out of a whole Savage with a slight barbecue flavor! +-------------------------- +Type: Cooked Food +Effect: STR +20 +Effect duration: 5 minutes +Weight: 5 +# +12430# +A deep red colored cocktail containing wolf's blood. +-------------------------- +Type: Cooked Food +Effect: INT +20 +Effect duration: 5 minutes +Weight: 5 +# +12431# +Meat of a Minor's head. Famous for it's soft and tender textures. +-------------------------- +Type: Cooked Food +Effect: VIT +20 +Effect duration: 5 minutes +Weight: 5 +# +12432# +Fantastic combination of transparent ice and tea. +-------------------------- +Type: Cooked Food +Effect: DEX +20 +Effect duration: 5 minutes +Weight: 5 +# +12433# +One of the best delicacies in Arunafeltz that has a chewy texture. +-------------------------- +Type: Cooked Food +Effect: AGI +20 +Effect duration: 5 minutes +Weight: 5 +# +12434# +A Geffen delicacy that is decorated with the best part of the Petite, the tail. +-------------------------- +Type: Cooked Food +Effect: LUK +20 +Effect duration: 5 minutes +Weight: 5 +# +12435# +A black scary thing that smells burnt. It looks like a failure of something, so it couldn't preserve it's original shape. +Decreases All Stats by 5 to 10. +Duration: 5 min. +-------------------------- +Weight: 5 +# +12436# +A popular healthy drink. +-------------------------- +Type: Restorative +Heal: 200 SP +Effect: SP Recovery Rate +20%, MaxSP +5% +Effect duration: 500 seconds +Weight: 5 +# +12437# +A juice that made of various potions. +-------------------------- +Type: Stat booster +Effect: Reduces After Attack Delay by 10% +Effect duration: 500 seconds +Weight: 5 +# +12438# +An enchanted, giant wing from an ancient creatures. +-------------------------- +Type: Supportive +Effect: Teleport all party members to random cell when used by a Party Leader +Weight: 1 +# +12439# +This well written, detailed manual explains effective battle methods. +EXP rate increases to +150% for 30 minutes. +-------------------------- +Weight: 1 +# +12440# +A life insurance certificate issued by Kafra Headquarters. +This item loses its effect once the player receives its benefit. +If the character dies within 30 minutes after using this item, there will be no EXP loss penalty. +-------------------------- +Weight: 1 +# +12441# +Sweet, tasty bubble gum. +Item drop rate increases by 100% for 30 minutes. +-------------------------- +Weight: 1 +# +12442# +A Kafra name card issued by the Kafra Headquarters. +Using this card will call up the Kafra Service. +-------------------------- +This will open storage. +-------------------------- +Weight: 1 +# +12443# +Pressing the button on this stick will flash blinding light that seems to cause memory loss. +Resets the Skill Tree and gives the corresponding number of Skill Points. +This item can only be used in town. +The character must carry 0 weight and cannot be equipped with a Pushcart, Falcon, or PecoPeco. +Cannot be used by Novice Class. +-------------------------- +Weight: 0 +# +12444# +A teleport scroll that warps you to the Siege Areas. +Valkyrie Realms +Britoniah +Greenwood Lake +Luina +ValFreya +Nidhoggur +-------------------------- +Weight: 1 +# +12445# +The epitome of Louyang cuisine. It's ingredients may be hard to find, but culinarily speaking, it's a masterpiece. +-------------------------- +Type: Stat booster +Effect: STR +10 +Effect duration: 30 minutes +Weight: 1 +# +12446# +One of the four best dishes in the Sograt Desert, this scorpion dish is cooked using the heat of the desert sands. +-------------------------- +Type: Stat booster +Effect: AGI +10 +Effect duration: 30 minutes +Weight: 1 +# +12447# +A cocktail with an unforgettable flavor as impressive as a dragon's breath. +-------------------------- +Type: Stat booster +Effect: INT +10 +Effect duration: 30 minutes +Weight: 1 +# +12448# +Named after the legendary spring believed to be the source of the world's rivers, this beverage is famous for its amazing taste. +-------------------------- +Type: Stat booster +Effect: DEX +10 +Effect duration: 30 minutes +Weight: 1 +# +12449# +A rare specialty dish from Payon that bestows luck on those fortunate enough to eat it. +-------------------------- +Type: Stat booster +Effect: LUK +10 +Effect duration: 30 minutes +Weight: 1 +# +12450# +A stew with a funky smell that looks quite suspicious, but it really does give the feeling of immortality. +-------------------------- +Type: Stat booster +Effect: VIT +10 +Effect duration: 30 minutes +Weight: 1 +# +12451# +An enchanted butterfly's wing that instantly sends its user to the towns of the Rune Midgarts Kingdom. +Locations: Prontera, Geffen, Payon, Morocc, Al De Baran or Alberta when waved in the air. +-------------------------- +Weight: 1 +# +12452# +An enchanted butterfly's wing that instantly sends its user to the towns of the Schwartzwalt Republic. +Locations: Juno, Lighthalzen, Einbroch or Hugel when waved in the air. +-------------------------- +Weight: 1 +# +12453# +An enchanted butterfly's wing that instantly sends its user to the towns of Arunafeltz. +Locations: Veins or Rachel +-------------------------- +Weight: 1 +# +12454# +An enchanted butterfly's wing that instantly sends its user to the island towns of Rune Midgard. +Locations: Ayothaya, Amatsu, Luoyang, Kunlun Moscovia +-------------------------- +Weight: 1 +# +12455# +A teleport scroll that warps you to the Siege Areas. +Valkyrie Realms +Britoniah +Greenwood Lake +Luina +ValFreya +Nidhoggur +Weight: 1 +# +12456# +Enables a single cast of Greed. +Caution! -Cannot be used in town. When used, only scroll gets destroyed. +-------------------------- +Weight: 1 +# +12457# +A glass of illusion made from morning dew from an Illusion Flower. +Drink the dew to create an illusion that will make it more difficult for enemies to hit you. +Increases your Perfect Dodge by 20 for 1 minute. Only one may be consumed per 5 minutes. +-------------------------- +Weight: 1 +# +12458# +An abrasive that adds sharpness to a weapon. +Increases Critical by 30 for 5 minutes. +If you are incapacitated, the item effect will disappear. +When assassin class using only give 15 critical rate +Using katar weapon type will double critical rate to 30. +-------------------------- +Weight: 1 +# +12459# +A sizeable bottle of Yggdrasil Tree Sap that is effective in healing wounds. +Restores an amount of HP equal of 7% of your MaxHP every 4 seconds for a 10 minute duration. +-------------------------- +Weight: 1 +# +12460# +A sizeable bottle of Yggdrasil Tree Sap that is effective in healing wounds. +Restores an amount of HP equal of 7% of your MaxHP every 4 seconds for a 10 minute duration. +-------------------------- +Weight: 1 +# +12461# +A magic potion made with alchemy and magic. +A Rosary is rumored tobe one of the secret ingredients in making this potion. +Increases the HP recovery effect of some potions and the Heal skill by 20% for 30 minutes. +-------------------------- +Weight: 1 +# +12462# +A secret potion made using pixie mustache. +Adds 3% resistance to Magical Attacks for 3 minutes. +-------------------------- +Weight: 1 +# +12463# +A secret potion made using pixie mustache. +Adds 3% resistance to Magical Attacks for 1 minute. +-------------------------- +Weight: 1 +# +12464# +A secret potion made using tough dragon scales. +Adds 3% resistance to Physical Attacks for 3 minutes. +-------------------------- +Weight: 1 +# +12465# +A secret potion made using tough dragon scales. +Adds 3% resistance to Physical Attacks for 1 minute. +-------------------------- +Weight: 1 +# +12466# +A scroll in which a single use of Level 10 Blessing has been recorded. +-------------------------- +Type: Magic scroll +Cast: Level 10 Blessing +Weight: 1 +# +12467# +A scroll in which a single use of Level 10 Increase Agility has been recorded. +-------------------------- +Type: Magic scroll +Cast: Level 10 Increase Agility +Weight: 1 +# +12468# +A scroll in which a single use of Level 5 Aspersio has been recorded. Requires 1 Holy Water. +-------------------------- +Type: Magic scroll +Cast: Level 5 Aspersio +Weight: 1 +# +12469# +A scroll in which a single use of Level 5 Assumptio has been recorded. +-------------------------- +Type: Magic scroll +Cast: Level 5 Assumptio +Weight: 1 +# +12470# +A scroll in which a single use of Level 10 Wind Walk has been recorded. +-------------------------- +Type: Magic scroll +Cast: Level 10 Wind Walk +Weight: 1 +# +12471# +A scroll in which a single use of Level 5 Adrenaline Rush has been recorded. +-------------------------- +Type: Magic scroll +Cast: Level 5 Adrenaline Rush +Weight: 1 +# +12472# +A clean convex mirror that can be used to detect the appearance of Boss class monsters. +10 minute duration that is canceled when the player leaves the map or logs out. +Lord of the Dead and Boss monster in the Bio Lab, Ktullanux, Memory of Thanatos and some other event MVP monsters cannot be detected by using this item. +-------------------------- +Weight: 1 +# +12473# +A 2009 RWC payment box given to all participants of the event. +-------------------------- +Weight: 1 +# +12474# +A 2009 RWC payment box given to all final participants of the event. +-------------------------- +Weight: 1 +# +12475# +A bottle of potion that can cure various status effects. +-------------------------- +Type: Restorative +Heal: 500 HP +Cure: Poison, Silence, Bleeding, Curse, Orcish Curse and Undead Curse +Weight: 1 +# +12476# +A well wrapped gift box. +-------------------------- +Weight: 1 +# +12477# +A gift box from GM that filled with sad heart. +-------------------------- +Weight: 0 +# +12478# +You can test your luck by oppening this box. +Lucky egg, Lucky egg? Lucky egg? contain one of this. +-------------------------- +Weight: 1 +# +12479# +A box contains 1 Caracas Ring +Rental duration: 3 days +Item description: +-------------------------- +텔레포트, 힐 사용가능. +캐스팅이 끊어지지 않는다. +attack speed increase(attack after delay 10% decrease), +Variable Casting Time 10% decrease. +-------------------------- +Type: Accessory +Weight: 0 +-------------------------- +Requirement: +Base Level 100 +성제, Soul Reaper 계열 +-------------------------- +Weight: 0 +# +12480# +'3Days attendance' are stamped on seal of this box. +-------------------------- +Weight: 1 +# +12481# +'7Days attendance' are stamped on seal of this box. +-------------------------- +Weight: 1 +# +12482# +'10Days attendance' are stamped on seal of this box. +-------------------------- +Weight: 1 +# +12483# +'15Days attendance' are stamped on seal of this box. +-------------------------- +Weight: 1 +# +12484# +'20Days attendance' are stamped on seal of this box. +-------------------------- +Weight: 1 +# +12485# +'25Days attendance' are stamped on seal of this box. +-------------------------- +Weight: 1 +# +12486# +A limited Gold PC Cafe box that contain 1 Ring. +-------------------------- +Weight: 1 +# +12487# +A box that contains 1 Four Leaf Clover In Mouth R inside. +-------------------------- +Weight: 1 +# +12488# +Summon a Valkyrie Mercenary. +-------------------------- +Weight: 1 +# +12489# +열어보면 선물이 들어 있는 Box. 무엇이 들어있을지는 열어보기 전에는 모른다. +-------------------------- +Weight: 1 +# +12490# +A parchment that plays random christmas music when used. +-------------------------- +Weight: 0 +# +12491# +When consumed, you have the choice of receiving moderate HP & SP restoration, Level 10 Endure, Restore all SP or returning to your save point. +-------------------------- +Weight: 0 +# +12492# +A wrinkled sheaf of paper. +-------------------------- +Weight: 1 +# +12493# +A pretty colored egg. +-------------------------- +Weight: 1 +# +12497# +Sweet, tasty bubble gum. +-------------------------- +Type: Supportive +Effect: Item drop rate +50% +Effect duration: 30 minutes +Weight: 1 +# +12501# +A very pricey Louyang dish that tastes absolutely superb. +-------------------------- +Type: Cooked Food +Effect: STR +10 +Heal: 20% HP, 10% SP +Effect duration: 30 minutes +Weight: 1 +# +12502# +This scorpion dish is cooked with the heat of the desert sand and is one of the four best dishes in Sograt Desert cuisine. +-------------------------- +Type: Cooked Food +Effect: AGI +10 +Heal: 15% HP, 5% SP +Effect duration: 30 minutes +Weight: 1 +# +12503# +A cocktail whose unforgettable flavor is as potent as the breath of a dragon. +-------------------------- +Type: Cooked Food +Effect: INT +10 +Heal: 10% HP, 20% SP +Effect duration: 30 minutes +Weight: 1 +# +12504# +This beverage is named after the legendary spring that is believed to be the source of the world's rivers and is famous for its pure, amazing taste. +-------------------------- +Type: Cooked Food +Effect: DEX +10 +Heal: 10% HP, 10% SP +Effect duration: 30 minutes +Weight: 1 +# +12505# +A rare, specialty Payon dish that bestows luck to those fortunate enough to eat it. +-------------------------- +Type: Cooked Food +Effect: LUK +10 +Heal: 14% HP, 8% SP +Effect duration: 30 minutes +Weight: 1 +# +12506# +A funky smelling, suspicious looking stew that really does make you feel like an immortal when you eat it. +-------------------------- +Type: Cooked Food +Effect: VIT +10 +Heal: 25% HP +Effect duration: 30 minutes +Weight: 1 +# +12507# +An enchanted butterfly's wing that instantly sends its user to the towns of the Rune Midgarts Kingdom. +Locations: \ +, \ +, \ +, \ +, \ + or \ + when waved in the air. +Warning: If no town is selected in 1 minute, the item will disappear. +-------------------------- +Weight: 1 +# +12508# +An enchanted butterfly's wing that instantly sends its user to the towns of the Schwaltzwalt Republic. +Locations: \ +, \ +, \ +, \ +, \ + when waved in the air. +Warning: If no town is selected in 1 minute, the item will disappear. +-------------------------- +Weight: 1 +# +12509# +An enchanted butterfly's wing that instantly sends its user to the towns of the Rachel's towns. +Locations: \ +, \ + when waved in the air. +Warning: If no town is selected in 1 minute, the item will disappear. +-------------------------- +Weight: 1 +# +12510# +An enchanted butterfly's wing that instantly sends its user to the localized towns. +Locations: \ +, \ +, \ +, \ +, \ +, \ +, \ + when waved in the air. +Warning: If no town is selected in 1 minute, the item will disappear. +-------------------------- +Weight: 1 +# +12514# +An abrasive that adds sharpness to a weapon. +Increases Critical by 30 for 5 minutes. +If you are incapacitated, the item effect will disappear. +When assassin class using only give 15 critical rate +Using katar weapon type will double critical rate to 30. +-------------------------- +Weight: 1 +# +12515# +A sizeable bottle of Yggdrasil Tree Sap that is effective on healing wounds. +-------------------------- +Restores an amount of HP equal of 7% of your MaxHP every 4 seconds for a 10 minute duration. +If you are incapacitated, the item effect will disappear. +Has no effect in Berserk state. +-------------------------- +Weight: 1 +# +12516# +A small bottle of Yggdrasil Tree Sap that is effective in healing wounds. +For 10 minutes, you regenerate 5% of your Maximum HP every 5 seconds. +Can not be used while in Frenzy. +If you die don't lost the effect!! +-------------------------- +Weight: 1 +# +12522# +A scroll in which a single use of Level 10 Blessing has been recorded. +Caution!- Casts Level 10 Blessing on the user when used. +-------------------------- +Weight: 1 +# +12523# +A scroll in which a single use of Level 10 Increase Agility has been recorded. +-------------------------- +This item will not work while your character is casting a skill or has less than 16 HP. +-------------------------- +Type: Magic scroll +Cast: Level 10 Increase Agility +Weight: 1 +# +12529# +A box contain White Slim Potion. +Caution! Opening box while exceeding weight limit or carrying amount will cause item loss. +-------------------------- +Type: Container +A box contains 1 200 White Slim Potion +Weight: 0 +# +12530# +A box containing the essence of Mastela Fruit. Be careful when opening. +-------------------------- +Type: Container +A box contains 1 200 Mastela Fruit +Weight: 0 +# +12531# +A box that contains White Potion. +-------------------------- +Type: Container +A box contains 1 100 White Potion +Weight: 0 +# +12532# +A box that contains Royal Jelly. +-------------------------- +Type: Container +A box contains 1 100 Royal Jelly +Weight: 0 +# +12533# +A box that contains Blue Herbs. +-------------------------- +Type: Container +A box contains 1 100 Blue Herb +Weight: 0 +# +12534# +A box that contains Yggdrasil Seeds. +-------------------------- +Type: Container +A box contains 1 30 Yggdrasil Seed +Weight: 0 +# +12535# +A box that contains Yggdrasil Berries. +-------------------------- +Type: Container +A box contains 1 15 Yggdrasil Berry +Weight: 0 +# +12536# +A nutritious rice cake soup made of sliced octopus meat. +-------------------------- +Type: Restorative +Heal: 20% HP, 20% SP +Weight: 10 +# +12537# +A basket of carefully packed chocolates to present to someone. +-------------------------- +Weight: 1 +# +12538# +Filled with firecrackers for events. +-------------------------- +Weight: 1 +# +12539# +A fancy hand painted metal box. +Weight: 10 +# +12540# +A scroll created for mobile convenience. +-------------------------- +Weight: 1 +# +12541# +A sweet cookie made from alot of sugar and butter. +-------------------------- +Weight: 1 +# +12542# +A sweet cookie made from alot of sugar and butter. +-------------------------- +Weight: 1 +# +12543# +A sweet cookie made from alot of sugar and butter. +-------------------------- +Weight: 1 +# +12544# +There is rumor that this branch of old tree from Payon contain magic power. +-------------------------- +Weight: 1 +# +12545# +A very cute egg scroll. It feels so fancy that makes you expect something from it. +-------------------------- +Weight: 1 +# +12546# +A dishes that you can't eat. +Why you call it dishes in first place? +Weight: 5 +# +12547# +A box acquired from Amatsu festival. +What could be inside the box? +-------------------------- +Weight: 20 +# +12548# +A questionable license that allows you to open a Bulk Buyer Vending Shop. The Merchant Guild's stamp looks like it has been hand drawn. +You must have at least 1 of the items in your inventory that you wish to Buy in Bulk from others. +(One time use) +Weight: 1 +# +12549# +A box that contains Condensed White Potions. +-------------------------- +Type: Container +A box contains 1 100 White Slim Potion +Weight: 0 +# +12550# +A box that contains Poison Bottles. +-------------------------- +Produces 10 Poison Bottle. +-------------------------- +Type: Container +Weight: 0 +# +12553# +Contains a permanent Brisingamen, which is UNTRADABLE, you can trade a permanent Godly Item at the Godly item Confiscator in Prontera Castle. +-------------------------- +Please give this box to the account that is to OWN the God item. +-------------------------- +Weight: 100 +# +12554# +Contains all the parts to make an Asprika, it is still up to you to get the Dwarf to construct it for you. +-------------------------- +WARNING: This box has no contents if opened on the Valkyrie server. +-------------------------- +Weight: 1 +# +12555# +Contains all the parts to make a Brynhild, it is still up to you to get the Dwarf to construct it for you. +-------------------------- +WARNING: This box has no contents if opened on the Valkyrie server. +-------------------------- +Weight: 1 +# +12556# +Contains a permanent Sleipnir, which is UNTRADABLE, you can trade a permanent Godly Item at the Godly item Confiscator in Prontera Castle. +-------------------------- +Please give this box to the account that is to OWN the God item. +WARNING: This box has no contents if opened on the Valkyrie server. +-------------------------- +Weight: 100 +# +12557# +Contains a permanent Mjolnir, which is UNTRADABLE, you can trade a permanent Godly Item at the Godly item Confiscator in Prontera Castle. +-------------------------- +Please give this box to the account that is to OWN the God item. +WARNING: This box has no contents if opened on the Valkyrie server. +-------------------------- +Weight: 100 +# +12558# +Contains a permanent Megingjord, which is UNTRADABLE, you can trade a permanent Godly Item at the Godly item Confiscator in Prontera Castle. +-------------------------- +Please give this box to the account that is to OWN the God item. +WARNING: This box has no contents if opened on the Valkyrie server. +-------------------------- +Weight: 100 +# +12559# +A sacred ramen soup. +-------------------------- +Restore 5% HP +-------------------------- +Weight: 20 +# +12560# +A sacred ramen soup. +-------------------------- +Restore 5% SP +-------------------------- +Weight: 20 +# +12561# +A seed of the plants frequently found in the Maze of the Hazy Forest in Bifrost. It has a natural inclination to go back to its home, the Maze of the Hazy Forest. +-------------------------- +Weight: 1 +# +12562# +A sweet and crisp bubble gum. +-------------------------- +For 60 minutes: item drop rate +100% +-------------------------- +Weight: 1 +# +12563# +This well written, detailed manual explains effective battle methods. +-------------------------- +Type: Supportive +Effect: Experience gained +75% +Effect duration: 30 minutes +Weight: 1 +# +12564# +A box containing 1 3D Glasses. +Rental duration: 1 hour +-------------------------- +A mysterious glasses that can see 3d object. Wearer's job affect the bonus given. +-------------------------- +When equipped by Swordman, Merchant, Archer, Gunslinger classes: +Increases ATK. +-------------------------- +When equipped by Mage, Acolyte, Ninja, Soul Linker classes: +Increases MATK. +-------------------------- +When equipped by Thief classes: +Increases FLEE. +-------------------------- +When equipped by Novice, Super Novice Taekwondo, Star Gladiator classes: +Increases MaxHP and MaxSP. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Box Weight: 1 +# +12565# +A box containing 1 Cherring Scarf. +Rental duration: 7 days +-------------------------- +Box Weight: 10 +# +12566# +-------------------------- +A box containing 1 Cherring Scarf. +Rental duration: 1 week +-------------------------- +Weight: 1 +# +12567# +-------------------------- +A box containing 1 Cherring Scarf. +Rental duration: 1 week +-------------------------- +Weight: 1 +# +12568# +-------------------------- +A box containing 1 Cherring Scarf. +Rental duration: 1 week +-------------------------- +Weight: 1 +# +12569# +-------------------------- +A box containing 1 Cherring Scarf. +Rental duration: 1 week +-------------------------- +Weight: 1 +# +12570# +-------------------------- +A box containing 1 Cherring Scarf. +Rental duration: 1 week +-------------------------- +Weight: 1 +# +12571# +-------------------------- +A box containing 1 Cherring Scarf. +Rental duration: 1 week +-------------------------- +Weight: 1 +# +12572# +-------------------------- +A box containing 1 Cherring Scarf. +Rental duration: 2 week +-------------------------- +Weight: 1 +# +12573# +A fruit basket with all kinds of fruit in it. It may contain special fruit only found in Bifrost. +-------------------------- +Weight: 5 +# +12574# +Red, fragrant fruit. +It is rumored that once you take a bite of the fruit, you can never forget it. +Restores approximately 50 SP. +Increases your resistance to native monsters of Bifrost. +-------------------------- +Weight: 2 +-------------------------- +Requirement: +Base Level 120 +# +12575# +A quiver containing 500 Elven Arrows. +-------------------------- +Weight: 25 +-------------------------- +Requirement: +Base Level 100 +# +12576# +A quiver containing 500 Hunting Arrows. +-------------------------- +Weight: 25 +# +12577# +A very cute, football looking scroll. Limited Edition! It feels so fancy that makes you expect something from it. +-------------------------- +Weight: 1 +# +12578# +Potion contains verious recovery herb juice. Effective for faster wound healing. +Recovers 6% of MaxHP every 3 seconds for 10 minutes. +Not available in berserk condition. +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +# +12579# +A box containing 1 Valkyrie Ring. +Rental duration: 4 days. +-------------------------- +Weight: 1 +# +12580# +Trial product which has been researched from the Geffen Magic Academy. +A magical scroll which is able to 'search what items are on sale and what items are being purchased'. +Able to search open vendors only in the same map you're located. +Up to 10 valid searches can be conducted per use. +-------------------------- +Weight: 1 +# +12581# +Advanced product from the Geffen Magic Academy! +A magical scroll which is able to 'search what items are on sale and what items are being purchased'. Able to sell or buy items from the searched link! +Able to search open vendors only in the same map you're located. +Up to 10 valid searches can be conducted per use. +-------------------------- +Weight: 1 +# +12582# +A box containing various supplies needed for siege. +-------------------------- +Weight: 10 +# +12583# +A small box that prepared for certain event. +-------------------------- +Weight: 1 +# +12584# +A small box that prepared for certain event. +-------------------------- +Weight: 1 +# +12585# +A small box that prepared for certain event. +-------------------------- +Weight: 1 +# +12586# +A small box that prepared for certain event. +-------------------------- +Weight: 1 +# +12587# +지금 라그나로크를 즐기고 있는 당신에게 어느날 갑자기 하늘에서 선물이 떨어지는데...! 작은 글씨로 전형적인 영화 트레일러 광고문구 같은 것이 적혀있다. +-------------------------- +Weight: 1 +# +12588# +지금 라그나로크를 즐기고 있는 당신에게 어느날 갑자기 하늘에서 선물이 떨어지는데...! 작은 글씨로 전형적인 영화 트레일러 광고문구 같은 것이 적혀있다. +-------------------------- +Weight: 1 +# +12589# +지금 라그나로크를 즐기고 있는 당신에게 어느날 갑자기 하늘에서 선물이 떨어지는데...! 작은 글씨로 전형적인 영화 트레일러 광고문구 같은 것이 적혀있다. +-------------------------- +Weight: 1 +# +12590# +A cylinder that holds many coins. +When you open it, you will get 10 random type of coins. +-------------------------- +Weight: 1 +# +12591# +Advanced product from the Geffen Magic Academy! +A magical scroll which is able to 'search what items are on sale and what items are being purchased'. Able to sell or buy items from the searched link! +Able to search open vendors only in the same map you're located. +Up to 10 valid searches can be conducted per use. +-------------------------- +Weight: 1 +# +12595# +A box that contains 1 Incarnation of Morocc Doll +Description: +An unusually cute doll of the usually hideous Incarnation of Morocc monster. +Gain 2 SP when defeating monsters. Has a low chance of casting Critical Wound if being melee attacked. ++9 bonus will be added to this headgear in November. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +12596# +A magic candy that can clean your teeth after eat foods. +For 1 minute: + +MATK +30 + +Decreases Fixed Casting Time by 70%. + +Protects from skill cast interruption.(Casting will not be interrupted. This effect does not apply in WoE.) + +Decreases SP by 90 every 10 seconds. + +(3 minutes cooldown) +(When character's KO'ed, the effect will disappear) +-------------------------- +Weight: 1 +# +12599# +A special fruit that usually eaten in Ramadhan. +All Stats +2 for 5 minute. +-------------------------- +Weight: 10 +# +12600# +You can summon a hideout treasure chest. +(Can only be used inside City, Village and Quest type map) +Please note: Use when there are no other character around. +Use after confirmation dialog. +-------------------------- +Weight: 0 +# +12601# +Juice made of a deliciously grinded watermelon. +recovers 5% of HP and SP. +-------------------------- +Weight: 10 +# +12602# +Look like you can get a particular item from it. The higher the number, better item will come out. +-------------------------- +Weight: 10 +# +12603# +Look like you can get a particular item from it. The higher the number, better item will come out. +-------------------------- +Weight: 10 +# +12604# +Look like you can get a particular item from it. The higher the number, better item will come out. +-------------------------- +Weight: 10 +# +12605# +Look like you can get a particular item from it. The higher the number, better item will come out. +-------------------------- +Weight: 10 +# +12606# +Look like you can get a particular item from it. The higher the number, better item will come out. +-------------------------- +Weight: 10 +# +12607# +Rental Item +A box contain usable 3 days Delicious Lollipop. +-------------------------- +Weight: 1 +# +12608# +Metal box which contain gorgeous hand painted. +-------------------------- +Weight: 10 +# +12609# +An old and dirty box. When you lift it there are sound of some ores inside it. +-------------------------- +Weight: 10 +# +12610# +Mysterious small egg. It's showing color between its crack. Look like it's a single-layer egg. +-------------------------- +Weight: 1 +# +12611# +A special scroll that can quickly teleport to Eden Group. +-------------------------- +Weight: 0 +# +12612# +A small, worn out bag which makes a tiny sound. Cling! No one has any idea what's in it. +-------------------------- +Weight: 1 +# +12613# +A small bag which makes a tiny sound. Cling! It is said that sometimes a pretty good Coin was discovered in it. +-------------------------- +Weight: 1 +# +12614# +A small bag which makes a tiny sound. Cling! It is said that sometimes a fairly fine Coin was discovered in it. +-------------------------- +Weight: 1 +# +12615# +A small bag which makes a tiny sound. Cling! +It is said that you should not be expecting something good. +-------------------------- +Weight: 1 +# +12616# +A bag containing coin A, coin B and some other stuff too. If you are lucky, you can even get Seagod's Anger. +-------------------------- +Weight: 1 +# +12617# +This is a bag with A coin, B coin and C coin, If you are lucky, you will get more cans or coins. +-------------------------- +Weight: 1 +# +12618# +This is a bag with B coin, C coin and D coin, If you are lucky, you will get more cans or coins. +-------------------------- +Weight: 1 +# +12619# +This is a bag with C coin, D coin and E coin, If you are lucky, you will get more cans or coins. +-------------------------- +Weight: 1 +# +12620# +This is a bag with D coin and E coin, If you are lucky, you will get more cans or coins. +-------------------------- +Weight: 1 +# +12621# +This is a bag with E coin, If you are lucky, you will get extra cans or coins. +-------------------------- +Weight: 1 +# +12622# +A mysterious halter that summon creature to ride on. +-------------------------- +Type: Supportive +Weight: 0 +# +12623# +A hard box with beautiful details. there are many high-end equipments. +-------------------------- +Weight: 1 +# +12624# +Yummy brown jelly. you will be happy when you eat. It might melt, so please not to keep in warm place. +Recover 3% of HP and SP. +-------------------------- +Weight: 5 +# +12625# +A bag contains Sapha Certification. +-------------------------- +Weight: 0 +# +12626# +The scroll can summon mercenary monster \ +. +-------------------------- +Weight: 1 +# +12627# +The scroll can summon mercenary monster \ +. +-------------------------- +Weight: 1 +# +12628# +The scroll can summon mercenary monster \ +. +-------------------------- +Weight: 1 +# +12629# +The scroll can summon mercenary monster \ +. +-------------------------- +Weight: 1 +# +12630# +The scroll can summon mercenary monster \ +. +-------------------------- +Weight: 1 +# +12631# +An automatic practice that can be used for 1 hour. +-------------------------- +Weight: 0 +# +12632# +An automatic practice item. +-------------------------- +Weight: 0 +# +12633# +Special produce from Malangdo, made as a can so you can save easily. Strangely It was known to give power to people. +Increases exp and job exp by 10% for 20mins. (can overlap with other exp item and only apply for monster hunting.) +Increases 20% of item drop rate for 20mins +-------------------------- +Weight: 5 +# +12634# +An automatic practice that can be used for 24 hours. +-------------------------- +Weight: 0 +# +12635# +An automatic practice that can be used for 7 days. +-------------------------- +Weight: 0 +# +12636# +Delicious canned food from Malangdo. +You will think about sea and Malangdo see sights in your mind when you eat it.... once you look around, you will notice you are in Malangdo. +-------------------------- +Weight: 0 +# +12637# +A bag with 200 Gong Bugs. +Can feel something not good movement inside of the bag. +-------------------------- +Weight: 50 +# +12638# +A bag with 200 Dried Squids. +Watch out when you unpack, it is compressed in a small bag. +-------------------------- +Weight: 200 +# +12639# +A bag with 200 Flying fishes +Quite surprised that how many there are in this small bag.. +-------------------------- +Weight: 200 +# +12640# +A Bag with 200 Star fishes +Packed neatedly +-------------------------- +Weight: 50 +# +12641# +A package with a devil shape, open it will may obtain unexpected surprise! +-------------------------- +Weight: 1 +# +12642# +A box contain 100 Mastela Fruits. +-------------------------- +Type: Container +A box contains 1 100 Mastela Fruit +Weight: 0 +# +12643# +An old and thin coin bag. 50 E coins are in the bag. +-------------------------- +Weight: 1 +# +12644# +A well wrapped present box. +-------------------------- +Weight: 1 +# +12645# +A sacred scroll that Enables the use of Level 5 Aspersio skill without Holy Water. +-------------------------- +Weight: 1 +# +12646# +A well cooked octopus leg made for the new year's celebration event. +-------------------------- +Type: Stat booster +Effect: LUK +10, ATK +20, MATK +20 +Effect duration: 10 minutes +Weight: 3 +# +12647# +This ball coated with thick oil. +-------------------------- +Weight: 3 +# +12648# +Contain 10 of: Red Potion, Orange Potion, Yellow Potion, White Potion and Blue Potion. +-------------------------- +Weight: 10 +# +12649# +A box awarded to those who achieve Level 70. +-------------------------- +Weight: 1 +# +12650# +A box awarded to those who achieve Level 90. +-------------------------- +Weight: 1 +# +12651# +A box awarded to those who achieve Level 110. +-------------------------- +Weight: 1 +# +12652# +A box awarded to those who achieve Level 130. +-------------------------- +Weight: 1 +# +12653# +A box awarded to those who achieve Level 150. +-------------------------- +Weight: 1 +# +12654# +A limited angel-shaped package, you might get something if you open it. +-------------------------- +Weight: 1 +# +12658# +A scroll that will transform your body into the form of a Deviruchi for 20 minutes. +-------------------------- +Weight: 2 +# +12659# +A scroll that will transform your body into the form of a Raydric Archer for 20 minutes. +-------------------------- +Weight: 2 +# +12660# +A scroll that will transform your body into the form of a Mavka for 20 minutes. +-------------------------- +Weight: 2 +# +12661# +A scroll that will transform your body into the form of a Marduk for 20 minutes. +-------------------------- +Weight: 2 +# +12662# +A scroll that will transform your body into the form of a Banshee for 20 minutes. +-------------------------- +Weight: 2 +# +12663# +A scroll that will transform your body into the form of a Poring for 20 minutes. +-------------------------- +Weight: 2 +# +12664# +A scroll that will transform your body into the form of a Golem for 20 minutes. +-------------------------- +Weight: 2 +# +12672# +A box for returning and new player +-------------------------- +Weight: 1 +# +12673# +This box contains one of the 3 Safe to 7 Upgrade Certificates; either Gear, Weapon or Headgear. +Take the certificate and the appropriate piece of equipment to Mighty Hammer to do a safe attempt at upgrading! +Even if the upgrade attempt fails the equipment is safe and unchanged. +-------------------------- +Weight: 1 +# +12674# +A small, solid black lacquered box that contains several materials. +-------------------------- +Weight: 50 +# +12675# +A supply box with various weapons stamped with the seal of a forgotten guild. +-------------------------- +Weight: 50 +# +12676# +A box containing 50 different potions and theoretical studies for expensive weapons. +-------------------------- +Weight: 20 +# +12677# +A quiver that contains 200 WoE Arrow S. +-------------------------- +Weight: 10 +-------------------------- +Requirement: +Base Level 130 +# +12678# +A quiver that contains 200 WoE Arrow A. +-------------------------- +Weight: 10 +-------------------------- +Requirement: +Base Level 95 +# +12679# +A box that contains 30 WoE White Potions. +-------------------------- +Weight: 20 +# +12680# +A box that contains 10 WoE Blue Potions. +-------------------------- +Weight: 20 +# +12681# +Lemon flavor fresh Nestea that makes your summer cool. +Recover HP, SP 20%. +-------------------------- +Weight: 5 +# +12682# +Black nestea that makes your summer cool. +Recover HP 20%. +-------------------------- +Weight: 3 +# +12683# +A box that contains 200 WoE Violet Potions. +Weight: 20 +# +12684# +The Bonus ASPD is affected by character's AGI point +If this potion is used with those other ASPD up potion, the effect will be maximized. +Increases ASPD for 15 minutes. +Follow the NPC below to make True ASPD Enhanced Potion. +-------------------------- +Weight: 1 +# +12685# +Limited edition of Griffon's Egg +Contain one of : +Griffon's Hat, Safe to 9 Armor Certificate, Enchant Book, Bloody Dead Branch, Magic Card Album etc. +-------------------------- +Weight: 1 +# +12690# +This album seems to contain the cards for headgears. It is pretty shabby which shows an old, unknown power. +-------------------------- +Weight: 5 +# +12691# +This album seems to contain the cards for armors. It is pretty shabby which shows an old, unknown power. +-------------------------- +Weight: 5 +# +12692# +This album seems to contain the cards for shields. It is pretty shabby which shows an old, unknown power. +-------------------------- +Weight: 5 +# +12693# +This album seems to contain the cards for garments. It is pretty shabby which shows an old, unknown power. +-------------------------- +Weight: 5 +# +12694# +This album seems to contain the cards for shoes. It is pretty shabby which shows an old, unknown power. +-------------------------- +Weight: 5 +# +12695# +This album seems to contain the cards for accessories. It is pretty shabby which shows an old, unknown power. +-------------------------- +Weight: 5 +# +12696# +Special Firecracker to celebrate 2011 RWC. You will have 10 seconds fun! +-------------------------- +Weight: 2 +# +12697# +Special Firecracker to celebrate 2011 RWC. You will have 10 seconds fun! +-------------------------- +Weight: 2 +# +12698# +This album seems to contain the cards for weapons. It is pretty shabby which shows an old, unknown power. +-------------------------- +Weight: 5 +# +12699# +Special belt made to control Tikbalang as a servant. Be careful since Tikbalang will struggle violently when used. +-------------------------- +Type: Taming Item +Weight: 5 +# +12700# +Common shirt turned inside out. Used to break Tikbalang's curse that makes people get lost. +Can warp back to the 'Port Malaya' village when used directly. +-------------------------- +Weight: 1 +# +12701# +A mysterious blue box that seems to hold something inside, but you'll have to open it to find out. +It contains Wii Raffle Ticket,Divx Player Raffle Ticket,iPod Nano Raffle Ticket. +-------------------------- +Weight: 20 +# +12702# +A mysterious blue box whose appearance resembles Old Blue Box. +It seems to hold something inside, but you'll have to open it to find out. +-------------------------- +Weight: 20 +# +12703# +The egg of sanctity. There is something important with it if the egg hatches. +-------------------------- +Weight: 5 +# +12704# +A pill made from precious herbs and it was believed to be able to prolong the life of the user. +Recover full HP +-------------------------- +Weight: 1 +-------------------------- +Requirement: +Base Level 85 +# +12705# +An emblem given by the Emperor. Use it; your battle experience rate will increase for a certain period. +You will gain double experience for 30 minutes by using it. +-------------------------- +Weight: 10 +-------------------------- +Requirement: +Base Level 90 +# +12706# +Cookie that contains a note of fortune. It is said that the note is used to tell your fortune. +Provied effect of Cast Level 5 Gloria when used. +-------------------------- +Weight: 10 +# +12707# +Cookie that contains a note of fortune. It is said that the note is used to tell your fortune. +Provide effect of Cast Level 1 Magnificat when used. +-------------------------- +Weight: 10 +# +12708# +Cookie that contains a note of fortune. It is said that the note is used to tell your fortune. +Provide effect of Cast Level 3 Impositio Manus when used. +-------------------------- +Weight: 10 +# +12709# +Candy that made from special medicine. Tasty candy that is sweet and sour. +Recover HP and SP by 30%. +-------------------------- +Weight: 15 +# +12710# +Once eat the pudding while it's cold, it soothes summer heat for a while. +Increases movement speed 5 minutes for 2 period of the character. +-------------------------- +Weight: 20 +# +12711# +A special snack which you can have in Midgard party. +-------------------------- +Weight: 10 +# +12712# +Cool green beer brewed in Hugel Moutainous area. It will freezes your soul. +-------------------------- +Weight: 10 +# +12713# +A crystal that glares fearfully. If the one has a courage to break it, it shall grant the power of monster to the one. +-------------------------- +Weight: 1 +# +12714# +A scroll which has the secrets on Bonguns Ability. +If you're able to read it, you will be able to get back Bonguns Item. +-------------------------- +Weight: 1 +# +12715# +[This item will be removed from the game 1 week after the event is ended.] +A chest that seems to contain something extremely valuable. +Let's see what's inside. +-------------------------- +Weight: 0 +# +12716# +Rice cake that made by Indian rice you will be impressed by its taste. +Recover HP/SP by 15%. +-------------------------- +Weight: 1 +# +12717# +A poison that paralyzes senses. +Lasts for 300 seconds and decreases ASPD(After attack delay increases for 10%), -10% Flee, movement speed decreases slightly. +-------------------------- +Type: Skill necessity +Weight: 2 +# +12718# +A poison which has the same effect of a leech. +It drains some HP for 300 seconds. +-------------------------- +Type: Skill necessity +Weight: 2 +# +12719# +An ash powder that causes the Oblivion state. +Oblivion lasts for 300 seconds. If under Oblivion state, SP doesn't recover naturally and cannot be canceled by Lex Divine or Green Potion. +You cannot use skills while caught by Oblivion ashes. +-------------------------- +Type: Skill necessity +Weight: 2 +# +12720# +A poison that pollutes a wound. +When a target is caught by this poison for 300 seconds, recovery skills decrease in effect by 20%. +The poison is extra potent if also inflicted by Critical Wound. +-------------------------- +Type: Skill necessity +Weight: 2 +# +12721# +A poison that numbs nerves. +It continues for 300 seconds and generates damage every 3 seconds. This ignores the weapons or card options which don't disconnect spell. +-------------------------- +Type: Skill necessity +Weight: 2 +# +12722# +A poison that causes a feverish state. +For 300 seconds, it spells darkness that can't be removed and causes hallucination. Gets 100 damages for one second and while getting damages if casting was ongoing, the casting also can be cancelled. +-------------------------- +Type: Skill necessity +Weight: 2 +# +12723# +A poison that has the effect of a laughing mushroom. +For 300 seconds, one loses 3% of HP for every 4 seconds and casts random skills. +-------------------------- +Type: Skill necessity +Weight: 2 +# +12724# +A poison that reduces physical strength. +MaxHP decreases by 15% for 15 seconds. +-------------------------- +Type: Skill necessity +Weight: 2 +# +12725# +Casts \ +, removing all abnormal states and debuffs and prevents any abnormal state or debuff effects for 60 seconds. +Recovers 25% HP and can be used while Stunned, Frozen or Deep Sleep status. +Removeable Debuffs: +Stun, Sleep, Curse, Petrification, Poison +Blind, Silence, Bleeding, Confusion, Frozen, +Deep Sleep, Burning, Freezing, +Guillotine Cross Poisons +Marsh of Abyss and Mandragora Howling. +-------------------------- +Type: Runestone +Weight: 1 +# +12726# +Casts \ +, which greatly increases your melee physical attacks by drawing out all of your power to strike a strong blow to your target. +There is a 20% chance to destroy your equipped weapon after the skill is activated. +The effect is automatically canceled if you change your equipment or do not attack for 30 seconds. +-------------------------- +Type: Runestone +Weight: 1 +# +12727# +Casts \ +, randomly summoning 2~4 magic shields. +This shield has the same DEF and MDEF as the person casting and has 1000 HP. +If you take more damage than the shield has, the number of shields will decrease, +but the damage that exceeds the shield's HP is ignored. +-------------------------- +Type: Runestone +Weight: 1 +# +12728# +Casts \ +, maximizing your natural health recovery. +HP Recovery effects are increased by 1.5x times. +Decreases damage taken from melee reflected damage by 50%. +-------------------------- +Type: Runestone +Weight: 1 +# +12729# +Casts \ +, which increases your ATK. +The ATK increases further depending on the Rune Mastery skill Level. +-------------------------- +Type: Runestone +Weight: 1 +# +12730# +Casts \ +, recovering 60 SP for every 10 seconds. +-------------------------- +Type: Runestone +Weight: 1 +# +12731# +Casts \ +, heightening power and attack strength tremendously. +STR increases by 30 and has a 30% chance to deal 2.5 the normal damage while melee attacking. +If the caster is a Rune Knight, it also increases physical attack damage by 250% (125% in Siege and PvP Areas). +Rhydo Runestone's Crushing Strike damage won't be affected by this runestone) +-------------------------- +Type: Runestone +Weight: 1 +# +12732# +Casts \ +, momentarily discharging a destructible power from the Rune Stone. +Generates a 7x7 shockwave around yourself and damages all targets. +The damage increases according to the caster's Rune Mastery skill Level +and the STR and Base Level and can also deal critical damage +according to the caster's Critical chance. +Also, this spell does not stop casting due to damage during casting. +-------------------------- +Type: Runestone +Weight: 1 +# +12733# +Casts \ +, changing your skin into a solid shell. Has a chance of destroying weapons of attacking enemies. +Consumes 25% of your HP and this skin possesses the same amount of HP consumed. +It disappears when all the HP is consumed. +For monsters, it decreases 25% of ATK for 10 seconds at a fixed rate. +This skill cannot be used for a Boss class monsters. +-------------------------- +Type: Runestone +Weight: 1 +# +12734# +A rough Rune Stone with a luxurious color that gives a better chance of successfully creating Refined Rune Stones. +-------------------------- +Type: Skill necessity +Weight: 10 +# +12735# +An old rough Rune Stone that gives a higher chance of successfully creating Refined Rune Stones. +-------------------------- +Type: Skill necessity +Weight: 10 +# +12736# +A mysteriously colored rough Rune Stone that significantly increases the success rate of creating Refined Rune Stones. +-------------------------- +Type: Skill necessity +Weight: 10 +# +12737# +An ordinary rough Rune Stone used to create Refined Rune Stones.. +-------------------------- +Type: Skill necessity +Weight: 10 +# +12738# +A rare rough Rune Stone that gives a high chance of successfully creating Refined Rune Stones. +-------------------------- +Type: Skill necessity +Weight: 10 +# +12739# +A rare Flower Grown of Snow, be careful or it will melt. +-------------------------- +Weight: 1 +# +12740# +뇌신 토르가 흘린 Scroll. when used STR +20의 효능이 1분간 지속된다. +-------------------------- +Weight: 0 +# +12741# +여신 프레이아가 남긴 Scroll. when used INT +20의 효능이 1분간 지속된다 +-------------------------- +Weight: 0 +# +12742# +A box containing a ring which is an exchanging gift for Valentine's Day. +-------------------------- +Weight: 0 +# +12743# +A box containing a ring which is an exchanging gift for Valentine's Day. +-------------------------- +Weight: 0 +# +12744# +A sweet chocolate box that is tastefully decorated. +Surely all the best wishes are in it. +-------------------------- +Weight: 0 +# +12745# +A notation that a Carol is memorized. +But nobody knows which song was memorized. +-------------------------- +Weight: 0 +# +12746# +Use this item to increase your physical damage against Angel, Holy and Boss class by 5% for 30 minutes. This effect persists through death. +-------------------------- +Weight: 1 +# +12747# +Use this item to Reduces Boss monster damage by 5% for 30 minutes. This effect persists through death. +-------------------------- +Weight: 1 +# +12748# +Use this item to Reduces Neutral damage by 5% for 30 minutes. This effect persists through death. +-------------------------- +Weight: 1 +# +12749# +Use this item to increase your magical damage by 5% and decrease casting time by 5%. This effect persists through death. +-------------------------- +Weight: 1 +# +12750# +Use this item to increase your physical damage by 5% and Reduces After Attack Delay by 5% for 30 minutes. This effect persists through death. +-------------------------- +Weight: 1 +# +12751# +Use this item to increase your DEF by 5 and FLEE by 10 for 30 minutes. This effect persists through death. +-------------------------- +Weight: 1 +# +12752# +Use this item to increase your MDef by 5 and Perfect Dodge by 10 for 30 minutes. This effect persists through death. +-------------------------- +Weight: 1 +# +12753# +Use this item to increase your MaxHP by 5% and MaxSP by 5% for 30 minutes. This effect persists through death. +-------------------------- +Weight: 1 +# +12754# +King dumplings are specially made for the Lunar New Year. +-------------------------- +Recovers HP and SP by 30%. +-------------------------- +Weight: 1 +# +12760# +So delicious. It strong flavor. +[STR +10 for 20 minutes] +-------------------------- +Weight: 1 +# +12761# +So delicious. It strong flavor. +[INT +10 for 20 minutes] +-------------------------- +Weight: 1 +# +12762# +So delicious. It strong flavor. +[DEX +10 for 20 minutes] +-------------------------- +Weight: 1 +# +12763# +So delicious. It strong flavor. +[AGI +10 for 20 minutes] +-------------------------- +Weight: 1 +# +12764# +A box which you can only get on certain event. +-------------------------- +Weight: 0 +# +12765# +A box contain a Summer Night. +Available for 30 days. +-------------------------- +Weight: 1 +# +12766# +For 30 minutes: +Increases job experience gained by 25%. +Can be used together with Battle manual. +-------------------------- +Weight: 0 +# +12767# +A box contains 1 World Cup Hat of Passion +Rental duration: 1 hour +Item description: +-------------------------- +A hat which makes you feel the air of festivity. Play all over the ground with amazing vitality!! +-------------------------- +STR +2, DEX +2 +-------------------------- +Random chance to increase damage inflicted with Ranged Physical Damage by 5% and reducing FLEE by 15 for 10 sec when dealing melee physical attacks. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 60 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Box Weight: 0 +# +12768# +A box contains 1 World Cup Hat of Fight +Rental duration: 1 hour +Item description: +-------------------------- +A hat which makes you feel the air of festivity. +Throw a great shot with the outstanding strength!! +-------------------------- +STR +2, INT +1, VIT +1, DEX +2, AGI +2, LUK +2. +MDEF +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Box Weight: 0 +# +12769# +A box contains 1 World Cup Hat of Victory +Rental duration: 1 hour +Item description: +-------------------------- +A hat which makes you feel the air of festivity. +Make the other team overwhelmed with your smart strategy!! +-------------------------- +STR +1, INT +2, VIT +1, DEX +2, AGI +2, LUK +2. +MDEF +1. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Box Weight: 0 +# +12770# +A box contains 1 World Cup Hat of Honor +Rental duration: 1 day +Item description: +-------------------------- +A hat which makes you feel the air of festivity. +Fight to death for the moment of glory!! +-------------------------- +All Stats +3 +MDEF +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Box Weight: 0 +# +12771# +A box contains 1 World Cup Hat of Passion +Rental duration: 6 hours +Item description: +-------------------------- +A hat which makes you feel the air of festivity. Play all over the ground with amazing vitality!! +-------------------------- +STR +2, DEX +2 +-------------------------- +Random chance to increase damage inflicted with Ranged Physical Damage by 5% and reducing FLEE by 15 for 10 sec when dealing melee physical attacks. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 60 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Box Weight: 0 +# +12772# +A box contains 1 World Cup Hat of Fight +Rental duration: 6 hours +Item description: +-------------------------- +A hat which makes you feel the air of festivity. +Throw a great shot with the outstanding strength!! +-------------------------- +STR +2, INT +1, VIT +1, DEX +2, AGI +2, LUK +2. +MDEF +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Box Weight: 0 +# +12773# +A box contains 1 World Cup Hat of Victory +Rental duration: 6 hours +Item description: +-------------------------- +A hat which makes you feel the air of festivity. +Make the other team overwhelmed with your smart strategy!! +-------------------------- +STR +1, INT +2, VIT +1, DEX +2, AGI +2, LUK +2. +MDEF +1. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Box Weight: 0 +# +12774# +An empty bottle looks like perfect for capturing monster \ +. +-------------------------- +Weight: 0 +# +12775# +Totem with powerful abilities to aggressively fight against demons. Emits powerful, holy energy. +Increases Damage against monsters of Demon race by 10% for 20 min. +-------------------------- +Weight: 60 +# +12778# +a scroll that can summon monster Baphomet Jr. as mercenary +-------------------------- +Weight: 1 +# +12779# +a scroll that can sommon monster galapago as mercenary. +-------------------------- +Weight: 1 +# +12784# +A fashionable parfait full of fruit. +It should be delicious before the expiration date. +-------------------------- +Recovers 3% HP and SP. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 3 +# +12785# +Dragon Egg for limited time. +You can get one of several rate items, such as Dragon Helm, Safe to 9 Weapon Certificate, Safe to 9 Armor Certificate, Heroic Desocketing Book, Bloody Branch, Mystical Card Album, various dragon related equipment and so on. +-------------------------- +Weight: 1 +# +12786# +Use this item to change your character's slot position on the Character Select menu. +After using this item you must logout to the Character Select menu and Right-Click on the character and choose 'Move Slot' +You can then choose a new slot by right-clicking that slot and choosing 'Move to this Slot' and confirming. +You can use this item once and it is account bound +-------------------------- +Weight: 0 +# +12787# +A scroll that can summon Diabolic. +-------------------------- +Weight: 1 +# +12788# +A firework that will write 100 number when launched to sky. +-------------------------- +Weight: 2 +# +12789# +Eat more fruit to get healty body. +-------------------------- +Type: Pet item +Weight: 10 +# +12790# +Use this item to change your character's name on the Character Select menu. +After using this item you must logout to the Character Select menu and Right-Click on your character and choose 'Change Name' +You can then enter a new name as long as it is not already taken. +You must leave your current guild and/or party before changing your name. +You can use this item once and it is account bound +-------------------------- +Weight: 0 +# +12791# +For a short time this drug will enhance to fighting ability of its user. +-------------------------- +For 10 minutes: +MATK +5% +ATK +5% +MaxHP -3%, MaxSP -3% +-------------------------- +Weight: 15 +# +12792# +A special medicine that boost user's attack power +-------------------------- +For 10 minutes: +MATK +10% +ATK +10% +MaxHP -5%, MaxSP -5% +-------------------------- +Weight: 15 +# +12793# +Contains 10 Battle Medicine +-------------------------- +Weight: 0 +# +12794# +Contains 10 Luxury Battle Medicine +-------------------------- +Weight: 0 +# +12795# +A limited 2011 RWC Scroll. +Contain 1 random item of the following: +Cat Ear Beret, Red Bread Hat, Safe to 8 Weapon Certificate, Safe to 8 Armor Certificate, Heroic Desocketing Book, Bloody Branch. +And many other rare items, such as Magical Card Album. +-------------------------- +Weight: 1 +# +12796# +A Magical booster which activates the body energy in order to combat better. +-------------------------- +Increases ATK/MATK by 30, +Increases Attack Speed (Decreases After Attack Delay by 5%), +Decreases Variable Casting Time by 5% +and MaxHP/MaxSP by -10% for 10 minutes. +When attacking, Concentration Level 3 will be casted with a certain chance. +(If the character has the skill higher than Lv 3, the skill will be casted with the reached Level) +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +# +12797# +The scroll can summon Wish Maiden. +If you are incapacitated, the mercenary will disappear. +-------------------------- +Weight: 1 +# +12798# +The scroll can summon Zealotus. +If you are incapacitated, the mercenary will disappear. +-------------------------- +Weight: 1 +# +12799# +잘 포장된 Gift Box. 무엇이 들어있는지는 알 수 없다. +-------------------------- +Weight: 1 +# +12800# +The scroll can summon a Ktullanux. +If you are incapacitated, the mercenary will disappear. +-------------------------- +Weight: 1 +# +12801# +The scroll can summon an Eddga. +If you are incapacitated, the mercenary will disappear. +-------------------------- +Weight: 1 +# +12802# +A box containing the following: +-------------------------- +5x [Event] Battle Manual, +5x [Event] Bubble Gum, +5x [Event] Life Insurance +1x Time Keeper Hat, +1x Time Keeper Shield, +1x Time Keeper Boots, +1x Time Keeper Manteau, +1x Time Keeper Robe, +1x Metal Katar, +1x Metal Two-Handed Axe, +1x Metal Lance, +1x Metal Book, +1x Metal Staff, +1x Metal Dagger, +1x Metal Mace, +1x Metal Bow, +1x Metal Two-Handed Sword, +1x Metal Revolver, +1x Huuma Metal Shuriken +1x Metal Foxtail. +-------------------------- +Weight: 0 +# +12803# +A box containing the following: +-------------------------- +300x Novice Potions, +100x Novice Fly Wings, +20x Novice Butterfly Wings, +10x Novice Magnifiers +and 5x Quivers. +-------------------------- +Weight: 0 +# +12804# +Crew Egg for a limited time. +-------------------------- +A box containing one of these rare items: +-------------------------- +Drooping Neko Crew, +Ring of Flame Lord, +Safe to 11 Weapon Certificate, +Safe to 11 Armor Certificate, +Safe to 9 Weapon Certificate, +Safe to 9 Armor Certificate, +Heroic Desocketing Book, +Bloody Branch, +Mystical Card Album, +and more. +-------------------------- +Weight: 1 +# +12805# +A mysterious powder will lighten your body for a while when sprayed. +-------------------------- +FLEE +20, LUK +10 for 5 minutes. +-------------------------- +Item effects will also disappear if the character dies. +-------------------------- +Weight: 1 +# +12806# +A scroll that can summon Scaraba mercenary. +When summoner is KO'ed, the mercenary will disappear. +-------------------------- +Weight: 1 +# +12807# +A bundle that was gathered together and rolled up well. +-------------------------- +5x Fencer Level 8 Scroll, 5x Spearman Level 8 Scroll and Bowman Level 8 Scrolls. +A Mother's Gentle Heart Box is also included. +-------------------------- +Weight: 0 +Requirement: +Base Level 20 +# +12808# +A box containing Mother's Heart. +Rental duration: 14 days +-------------------------- +Rental Item +Ring that keeps the desire of all novice travelers. +-------------------------- +ATK +30 +MATK +30 +-------------------------- +Increases experience gained from defeating monsters by 15%. +-------------------------- +Enables use of +Level 3 Auto Guard +Level 1 Cure +-------------------------- +Increases movement speed. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Maximum Base Level 120 +-------------------------- +Box Weight: 0 +# +12809# +Preparation Box is necessary to Level up quickly. +A box containing the following items: +-------------------------- +5x Battle Manual, +5x Bubble Gum, +5x Life Insurance, +5x Job Battle Manual. +You can also get a Zherlthsh Exchange Ticket Box! +-------------------------- +Level Requirement: 120 +Weight: 0 +# +12810# +A box containing 3 Yggdrasil Berry. +-------------------------- +In addition you can recieve one these items randomly: +Loli Ruri Exchange Coupon Box, +Mystical Card Album, +Safe to +9 Weapon Certificate, +Safe to +9 Armor Certificate, +and more! +-------------------------- +Weight: 1 +# +12811# +A box containing 3 Yggdrasil Berry. +-------------------------- +In addition you can recieve one these items randomly: +Pet Exchange Ticket Box, +Mystical Card Album, +Safe to 7~9 Weapon Certificate randomly, +Safe to 7~9 Armor Certificate randomly +-------------------------- +Weight: 1 +# +12812# +A Snow White Leaf that is cold to the touch. Caution : This really is colder than snow. +Cures effect of Burning, Bleeding, Deep Sleep, Sleep. +5 seconds cool down time. +-------------------------- +Weight: 1 +# +12813# +Weirdly warm pink flower petal. Reminds you the old days back at home with Mom. +Cures effect of Frozen, Freezing and Crystallization. +5 seconds cool down time. +-------------------------- +Weight: 1 +# +12814# +Stimulating smelly herb. You might think it's fresh, but others generally won't. +Cures effect of Stun, Horror, Confuse, Illusion. +5 second cool time. +-------------------------- +Weight: 1 +# +12815# +Dust from the sacred tree Yggdrasil. Even as dust, this seems to be useful for meditation. +Cures effect of Stone Curse, Blind, Curse, Poison, Decreases Agility, Reverse Orcish. +5 second cooldown time. +-------------------------- +Weight: 1 +# +12816# +An old and dirty box. There are sounds of some ores inside it. +It's possible to get Old Card Album from it. +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 60 +# +12817# +An album that contain random card. +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 80 +# +12818# +A box contain variety of advanced equipments. +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 100 +# +12819# +A box contain Zherlthsh Exchange Ticket. +-------------------------- +Weight: 1 +-------------------------- +Requirement: +Base Level 150 +# +12820# +A scroll that can summon Nine Tail mercenary. +When there is existing active merceneray, this scroll will not give effect. +-------------------------- +Weight: 1 +# +12821# +A scroll that can summon Loli Ruri mercenary. +When there is existing active merceneray, this scroll will not give effect. +-------------------------- +Weight: 1 +# +12822# +A box has 50 pcs of rice cake. +-------------------------- +Weight: 1 +# +12823# +A scroll that can summon Sedora mercenary. +When there is existing active merceneray, this scroll will not give effect. +-------------------------- +Weight: 1 +# +12824# +A scroll that can summon Deviruchi mercenary. +When there is existing active merceneray, this scroll will not give effect. +-------------------------- +Weight: 1 +# +12825# +It is said to contain one of a variety of items, such as: +Flip Hat, +Mystical Card Album, +Wrapped Mask, +Jewelry Box, +Bloody Branch. +I don't know what will come out. +-------------------------- +Weight: 1 +# +12826# +A Wind-Type Zodiac scroll +Contains new items such as [Sunglasses] [Baseball Hat] and [Hankie in Mouth] +You might also obtain a [Garm Card] +-------------------------- +Weight: 1 +# +12827# +Water...soft and yielding, formless and flowing. +Rise up, storm the heavens and rain down upon us! - Sofiel +-------------------------- +Weight: 1 +# +12828# +I am what was, what is, what will be : the Chaos-Bringer! I AM POWER! +-The Phoenix Aeon +-------------------------- +Weight: 1 +# +12829# +You know this day is going to be epic! *wink wink* - Geheimnis +-------------------------- +Weight: 20 +# +12830# +A box contain: 50 Dead Branches and 2 Bloody Death Branch. +Caution!!! if you exceed the weight limit, all items may be lost. +-------------------------- +Weight: 5 +# +12831# +A box contain: 100 Red slim potions, 100 Yellow slim potions, 100 White slim potions and 100 Blue potions. +Caution!!! if you exceed the weight limit, all items may be lost. +-------------------------- +Weight: 5 +# +12832# +A potion that created from concentrated Life Potion and other recovery potions. +Recover 4% of MaxHP every 3 seconds for 10 minutes. +This item cannot be used in Berserk state. +The effect of this item will disappear upon death. +-------------------------- +Weight: 5 +# +12833# +A symbol of group unity? Anyone who hold this statue will feel stronger. +-------------------------- +Weight: 50 +# +12834# +Nucleus of Undead for a limited time. +You can get one of several rare items: +Lord of Death Helm, +Safe to 11 Weapon Certificate, +Safe to 11 Armor Certificate, +Headgear Card Album, +Bloody Branch, +Bunny Ears Hat, +Jasper Crest, +and more. +-------------------------- +Weight: 1 +# +12835# +Heart of Girl for a limited time. +You can get one of several rare items: +Heart Wings Hairband, +Garment Card Album, +Angel Wing Ears, +Delicious Shaved Ice, +Ghost Coffin, +Girl's Naivety, +Rabbit Earmuffs, +Jasper Crest, +and more. +-------------------------- +Weight: 1 +# +12836# +At RJC2014, this is a special card book that will be given to those who have achieved excellent results. +When used, it can be randomly obtained from 1 boss monster card including MVP. +-------------------------- +The above special effects will disappear at the end of regular maintenance on July 29, 2014. +-------------------------- +Weight: 0 +# +12837# +A wooden chest. +Contains Royal jelly, Angel Poring Potion, Fly wing and Iron Chest. +-------------------------- +Weight: 0 +# +12838# +An iron chest. +Contains Gym membership voucher, Character move scroll, Character move scroll 2 and copper chest. +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 10 +# +12839# +A Copper Chest +Cointains Loud Speaker, Ressurection card, Bubble gum and Silver chest. +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 20 +# +12840# +A Silver Chest +Contains Book of Evil, Warp Ticket, Butterfly wing and gold chest. +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 30 +# +12841# +A Gold Chest +Contains purified oridecon, purified elunium, awakening potion and Platinum chest. +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 40 +# +12842# +A Platinum Chest +Contains Halter Box(7days), Kafra card, Medium Life Potion and Pearl Chest. +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 50 +# +12843# +A Pearl Chest +Contains Battle Manual, Job Manual and Diamond Chest +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 60 +# +12844# +A Diamond Chest +Contains Convex Mirror +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 70 +# +12845# +Custom made butterfly wing for poor newbie ninjas. +This will take you back to the Ninja occupation office in Amaz village. +-------------------------- +Weight: 0 +# +12846# +Little Poring's favorite apple. +Take a bit of its freshness. +-------------------------- +Type: Taming Item +Monster: Novice Poring +Weight: 5 +# +12847# +Basic tool box used to be given out free for merchant wanabees. +-------------------------- +Weight: 1 +# +12848# +A Flute that calls falcons to those who have the [Falconry Mastery] skill. +-------------------------- +Weight: 0 +# +12849# +A kit that combines various items. It even has cooking tools inside. +Caution : You must have all Ingredients ready before combining or the Combination Kit will be wasted. +-------------------------- +Type: Supportive +Weight: 1 +# +12850# +A blessed egg from the heaven. Cast Blessing on user. +-------------------------- +Weight: 1 +# +12851# +An egg that symbolize an oath. Allows user to have eternal life. +-------------------------- +Weight: 1 +# +12852# +An egg that symbolize wisdow. Grants knowledge to user. +-------------------------- +Weight: 1 +# +12853# +Have chance to obtain various precious item, including Mistress Card, Sealed Beelzebub Card, Sealed Eddga Card, Hankie In Mouth, Snowman Hat, Cat Ears Beret, Immuned Shield and etc. +-------------------------- +Weight: 1 +# +12854# +Artisans carefully added several branches of flowers to make them very rich. +-------------------------- +FLEE +10, Perfect Dodge +1 for 60 minutes. +-------------------------- +Weight: 10 +# +12855# +Scroll of Arunafelz for a limited time. +-------------------------- +You can get one the following rate items: +Dropping Pope, +Safe to 11 Weapon Certificate, +Safe to 11 Armor Certificate, +Ring of Protection, +Mystical Card Album +and more. +-------------------------- +Weight: 1 +# +12856# +A golden apple created by imitating the apple of the goddess Lee Dun with the sap of Yggdrasil. It seems that someone ate only half. +-------------------------- +Recovers half of your HP and SP.. +-------------------------- +Cooldown: 3 seconds +Weight: 30 +# +12857# +A golden apple created by imitating the apple of the goddess Lee Dun with the sap of Yggdrasil. It's really shiny like gold. +-------------------------- +Recovers your HP and SP fully. +-------------------------- +Cooldown: 5 seconds +Weight: 30 +# +12858# +The centrality of the midgard alchemist potionology. It is the best potion in existence, and it shows tremendous efficacy even in a small amount. It is so popular that it is called God's drink. +-------------------------- +Recovers your HP and SP fully and grants Level 10 Kyrie Eleison. +-------------------------- +Cooldown: 1 second +Weight: 3 +# +12860# +Thanks to the mother of selfless giving, present it to your mother. +-------------------------- +Recover 50% HP & SP and grant Level 3 Assumptio after used. +-------------------------- +Weight: 20 +# +12863# +Secret Room TE can summon a treasure chest. +(Town, village inside, In Quest-only map isn't available.) +-------------------------- +NOTICE: the treasure box, so the other characters can also attack, verify that there are no other characters around and please use +-------------------------- +Weight: 0 +# +12871# +A small egg whose identity is unknown. Between the cracks on the outer shell, you can see another layer of colorful shells! +-------------------------- +Weight: 1 +# +12872# +Limited edition of the manual with more efficient fighting methods! +If you do what I tell you, I think it will grow quickly. +-------------------------- +Increases experienced gained by 60% for 60 minutes. +-------------------------- +Weight: 1 +# +12873# +Contains 10 TE White Slim Potion. +-------------------------- +Warning: The contents can disappear if you exceed the weight limit or item quantity limit at the time this box is opened. +-------------------------- +Weight: 10 +# +12874# +Developed by the Alchemy Union of the Three Countries, this new medicine endows superhuman strength, though it's only temporary. +Instantly drain 3,000 of your HP and in return, increases your Physical/Magic damage on player enemies by 100% for 10 seconds. +-------------------------- +Weight: 10 +-------------------------- +Requirement: +Base Level 80 +# +12875# +Developed by the Alchemy Union of the Three Countries, Endows superhuman strength, though it's only temporary. +Instantly drain 300 of your SP and in return, decreases 50% damage taken from other adventurers for 10 seconds. +-------------------------- +Weight: 1 +-------------------------- +Requirement: +Base Level 80 +# +12876# +The first-class pharmacist Vincent has created this potion. +Endows superhuman strength, though it's only temporary. +Instantly drain 3,000 of your HP and in return, immunizes you against Stun for 10 seconds. +-------------------------- +Weight: 1 +# +12877# +The first-class pharmacist Vincent has created this potion. +Endows superhuman strength, though it's only temporary. +Instantly drain 3,000 of your HP and in return, immunizes you against Petrification for 10 seconds. +-------------------------- +Weight: 1 +# +12878# +The first-class pharmacist Vincent has created this potion. +Endows superhuman strength, though it's only temporary. +Instantly drain 3,000 of your HP and in return, immunizes you against Frost for 10 seconds. +-------------------------- +Weight: 1 +# +12879# +The first-class pharmacist Vincent has created this potion. +Endows superhuman strength, though it's only temporary. +Instantly drain 3,000 of your HP and in return, immunizes you against Sleep for 10 seconds. +-------------------------- +Weight: 1 +# +12880# +The first-class pharmacist Vincent has created this potion. +Endows superhuman strength, though it's only temporary. +Instantly drain 3,000 of your HP and in return, immunizes you against Curse for 10 seconds. +-------------------------- +Weight: 1 +# +12881# +The first-class pharmacist Vincent has created this potion. +Endows superhuman strength, though it's only temporary. +Instantly drains 3,000 of your HP and in return, immunizes you against Silence for 10 seconds. +-------------------------- +Weight: 1 +# +12882# +The first-class pharmacist Vincent has created this potion. +Endows superhuman strength, though it's only temporary. +Instantly drain 3,000 of your HP and in return, immunizes you against Blind for 10 seconds. +-------------------------- +Weight: 1 +# +12883# +Created from all ultimate ingredients. +All Stats +10, ATK +30, MATK +30 for 30 minutes. +If the character KO'ed in battle, this effect will not disappear!. +-------------------------- +Weight: 1 +# +12884# +Potion that stimulates concentration. Affects the attack speed of its consumer. +Can use all classes +-------------------------- +Type: Stat booster +Effect: Increases attack speed +Effect duration: 30 minutes +Cooldown: 5 seconds +Weight: 0 +-------------------------- +Requirement: None +# +12885# +Potion that possesses the effect of awakening. It is a mysterious medicine that helps to increase the character's attack speed. +Can use all classes +-------------------------- +Type: Stat booster +Effect: Increases attack speed +Effect duration: 30 minutes +Cooldown: 5 seconds +Weight: 0 +-------------------------- +Requirement: Base Level 40 +# +12886# +A very special potion that enrages the character and turns him into a berserker and increases the character's attack speed. +Can use all classes +-------------------------- +Type: Stat booster +Effect: Increases attack speed +Effect duration: 30 minutes +Cooldown: 5 seconds +Weight: 0 +-------------------------- +Requirement: Base Level 85 +# +12887# +Rental Item +The wings cut from fly to be made into enchanted item. +-------------------------- +Type: Supportive +Effect: Teleport to random cell +Weight: 0 +# +12888# +This box randomly generates a variety of useful guild supplies. +Warning: The contents can disappear if you exceed the weight limit or item quantity limit at the time this box is opened. +-------------------------- +Weight: 10 +# +12889# +One of the oldest known remains of the dwarven weapons craftsmanship. +Contains a very powerful and is rumored to have a rare weapon. +-------------------------- +Weight: 20 +# +12890# +One of the oldest known remains of the dwarven weapons craftsmanship. +Contains a very powerful and is rumored to have a rare weapon. +-------------------------- +Weight: 20 +# +12891# +One of the oldest known remains of the dwarven weapons craftsmanship. +Contains a very powerful and is rumored to have a rare weapon. +-------------------------- +Weight: 20 +# +12892# +One of the oldest known remains of the dwarven weapons craftsmanship. +Contains a very powerful and is rumored to have a rare weapon. +-------------------------- +Weight: 20 +# +12893# +One of the oldest known remains of the dwarven weapons craftsmanship. +Contains a very powerful and is rumored to have a rare weapon. +-------------------------- +Weight: 20 +# +12894# +One of the oldest known remains of the dwarven weapons craftsmanship. +Contains a very powerful and is rumored to have a rare weapon. +-------------------------- +Weight: 20 +# +12895# +One of the oldest known remains of the dwarven weapons craftsmanship. +Contains a very powerful and is rumored to have a rare weapon. +-------------------------- +Weight: 20 +# +12896# +One of the oldest known remains of the dwarven weapons craftsmanship. +Contains a very powerful and is rumored to have a rare weapon. +-------------------------- +Weight: 20 +# +12897# +One of the oldest known remains of the dwarven weapons craftsmanship. +Contains a very powerful and is rumored to have a rare weapon. +-------------------------- +Weight: 20 +# +12898# +One of the oldest known remains of the dwarven weapons craftsmanship. +Contains a very powerful and is rumored to have a rare weapon. +-------------------------- +Weight: 20 +# +12899# +One of the oldest known remains of the dwarven weapons craftsmanship. +Contains a very powerful and is rumored to have a rare weapon. +-------------------------- +Weight: 20 +# +12900# +A box that contains 10 Battle Manuals. +-------------------------- +This well written, detailed manual explains effective battle methods. +-------------------------- +Type: Supportive +Effect: Experience gained +50% +Duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +12901# +A box that contains 10 Life Insurance certificates. +-------------------------- +A life insurance certificate issued by Kafra Headquarters. +-------------------------- +Type: Supportive +Effect: Disable EXP loss penalty when character dies +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +12902# +A box containing 10 Bubble Gums. +-------------------------- +Sweet, tasty bubble gum. +-------------------------- +Type: Supportive +Effect: Item drop rate +100% +Duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +12903# +A box containing 10 Steamed Tongue. +-------------------------- +A very pricey Louyang dish that tastes absolutely superb. +-------------------------- +Type: Cooked Food +Effect: STR +10 +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +12904# +A box containing 10 Steamed Desert Scorpions. +-------------------------- +This scorpion dish is cooked with the heat of the desert sand and is one of the four best dishes in Sograt Desert cuisine. +-------------------------- +Type: Cooked Food +Effect: AGI +10 +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +12905# +A box containing 10 Dragon Breath Cocktail. +-------------------------- +A cocktail whose unforgettable flavor is as potent as the breath of a dragon. +-------------------------- +Type: Cooked Food +Effect: INT +10 +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +12906# +A box containing 10 Hwergelmir's Tonic. +-------------------------- +This beverage is named after the legendary spring that is believed to be the source of the world's rivers and is famous for its pure, amazing taste. +-------------------------- +Type: Cooked Food +Effect: DEX +10 +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +12907# +A box containing 10 Cooked Nine Tail's Tails. +-------------------------- +A rare, specialty Payon dish that bestows luck to those fortunate enough to eat it. +-------------------------- +Type: Cooked Food +Effect: LUK +10 +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +12908# +A box containing 10 Stew of Immortality. +-------------------------- +A funky smelling, suspicious looking stew that really does make you feel like an immortal when you eat it. +-------------------------- +Type: Cooked Food +Effect: VIT +10 +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +12909# +A box containing 10 Kafra Name Cards. +-------------------------- +Kafra Card - Kafra will be in service when used. +-------------------------- +This will open Kafra storages. +-------------------------- +Weight: 1 +# +12910# +A light box containing 10 Giant Fly Wings. +-------------------------- +Giant Fly Wing - Enables instant teleportation of a party to random areas when used by a Party Master. +-------------------------- +Weight: 1 +# +12911# +A box containing 1 Neuralizer +Description: +Pressing the button on this stick will flash blinding light that seems to cause memory loss. +Resets the Skill Tree and gives the corresponding number of Skill Points. +This item can only be used in town and the character must less than 600 weight. +Cannot be equipped with a Pushcart, Falcon or PecoPeco. +Cannot be used by Novice Class. +-------------------------- +Weight: 0 +-------------------------- +Weight: 1 +# +12912# +A box containing 10 Convex Mirrors. +-------------------------- +Convex Mirror - Can detect appearance of Boss monster for 10 minute duration. +Effect is canceled if player logs out or leaves current map. +Some MVP monsters cannot be detected. +-------------------------- +Weight: 1 +# +12913# +A box containing 10 Blessing Scrolls. (Level 10 Blessing) +-------------------------- +Weight: 1 +# +12914# +A box containing 10 AGI Scrolls. (Level 10 Increase AGI) +-------------------------- +Weight: 1 +# +12915# +A box containing 10 Aspersio Scrolls. (Level 5 Aspersio) +-------------------------- +Weight: 1 +# +12916# +A box containing 10 Assumptio Scrolls. (Level 5 Assumptio) +-------------------------- +Weight: 1 +# +12917# +A box containing 10 Wind Walk Scrolls. (Level 10 Wind Walk Scrolls) +-------------------------- +Weight: 1 +# +12918# +A box containing 10 Adrenaline Rush Scrolls. (Level 5 Adrenaline Rush) +-------------------------- +Weight: 1 +# +12919# +A box containing 10 Megaphones. +-------------------------- +Megaphone - Allows server wide message broadcasting. +-------------------------- +Weight: 1 +# +12920# +A box containing 10 Enriched Eluniums. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +-------------------------- +Weight: 1 +# +12921# +A box containing 10 Enriched Oridecons. +-------------------------- +Enriched Oridecon - Increases rate of refining a weapon without breaking it. +-------------------------- +Weight: 1 +# +12922# +A box containing 10 Tokens of Siegfried. +Description: +A certificate imbued with the power of the invulnerable Siegfried which allows its bearer to overcome death. +Revives the dead character. +-------------------------- +Weight: 1 +-------------------------- +Box Weight: 1 +# +12923# +날렵한 모양의 펫알 Scroll이 1개 들어있는 Box. +-------------------------- +Weight: 1 +# +12924# +투명한 펫알 Scroll이 1개 들어있는 Box. +-------------------------- +Weight: 1 +# +12925# +A pack of consumables to aid the adventurer on the long journey. +Contains: +Kafra Item Mall Prize Package. +Kafra Item Mall Prize cannot be traded, dropped, or sold. It can be Stored. +-------------------------- +Weight: 1 +# +12926# +투명한 펫 알 모양의 Scroll. 사용하면 여러가지 신기한 아이템이 나온다고 한다. +-------------------------- +Weight: 1 +# +12927# +A box containing 10 Level 5 Aspersio Scrolls. +-------------------------- +Weight: 1 +# +12928# +Scroll that has the record of using Level 5 Aspersio. +-------------------------- +Weight: 1 +# +12929# +A box that contains 1 Pet Egg Scroll. +There's a chance of obtaining a Pink Dropping Kitty or some other item when opening this box. +-------------------------- +Weight: 1 +# +12930# +A box that contains 1 Pet Egg Scroll. +There's a chance of obtaining a Pink Fur Hat or some other item when opening this box. +-------------------------- +Weight: 1 +# +12931# +타 계정과 거래가 불가능한 아이템 입니다. +괴상한 모양의 펫알 스크롤이 1개 들어있는 상자. +-------------------------- +Weight: 1 +# +12932# +타 계정과 거래가 불가능한 아이템 입니다. +단단한 펫 알 모양의 스크롤. 사용하면 여러가지 신기한 아이템이 나온다고 한다. +-------------------------- +Weight: 1 +# +12933# +타 계정과 거래가 불가능한 아이템 입니다. +평범한 펫 알 모양의 스크롤. 사용하면 여러가지 신기한 아이템이 나온다고 한다. +-------------------------- +Weight: 1 +# +12934# +타 계정과 거래가 불가능한 아이템 입니다. +괴상한 펫 알 모양의 스크롤. 사용하면 여러가지 신기한 아이템이 나온다고 한다. +-------------------------- +Weight: 1 +# +12935# +A box that contains rental Infiltrator. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +A lethal Katar that has been perfectly designed to carry out quick assassinations. +-------------------------- +DEF +3 +FLEE +5 +Perfect Dodge +2 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 50%. +-------------------------- +Type: Katar +Attack: 189 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Assassin classes +# +12936# +A box that contains rental Muramasa. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +An oriental sword named after a legendary Japanese swordsmith. +-------------------------- +Critical +30 +Increases Attack Speed (Decreases After Attack Delay by 8%). +-------------------------- +Random chance to inflict Curse status on wielder when dealing physical damage. +-------------------------- +Type: Two-Handed Sword +Attack: 204 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordman classes +# +12937# +A box that contains rental Excalibur. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +The one-handed sword of Arthurian legend that supposedly chooses its owner to wield its holy powers. +-------------------------- +INT +10, LUK +10 +-------------------------- +Type: One-Handed Sword +Attack: 199 +Weight: 0 +Element: Holy +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +# +12938# +A box that contains rental Combat Knife. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +Military combat knife made for battles against Demi-Human race. +-------------------------- +MaxSP +10% +-------------------------- +Restores 3 SP when hitting a monster. +-------------------------- +Ignores physical defense of Demi-Human race. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Increases damage taken from monsters of Demon race by 10%. +-------------------------- +Type: Dagger +Attack: 129 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +12939# +A box that contains rental Dagger of Counter. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +A dagger that has a high chance of inflicting critical attack to its target. +-------------------------- +Critical +90 +-------------------------- +Type: Dagger +Attack: 209 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Magician and Soul Linker +# +12940# +A box that contains rental Kaiser Knuckle. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +A claw blessed by Zephyrus, god of the west wind. +-------------------------- +Inflicts 5% additional damage on Undead monster and 10% additional damage on Earth, Water, Fire and Wind elemental monsters. +-------------------------- +Type: Knuckle +Attack: 159 +Weight: 0 +Element: Wind +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Priest and Monk classes +# +12941# +A box that contains rental Poll Axe. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +A weapon consisting of an axe head mounted on a long pole that is designed to break through thick armor. +-------------------------- +STR +1 +INT +2 +DEX +1 +-------------------------- +Type: One-Handed Spear +Attack: 195 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Swordman classes +# +12942# +A box that contains rental Mighty Staff. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +A rare staff that can convert psychic energy into brute strength. +-------------------------- +STR +10, INT +4 +MATK +100 +-------------------------- +Drains 1 SP when dealing physical damage. +-------------------------- +Type: One-Handed Staff +Attack: 165 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Magician, Acolyte and Soul Linker +# +12943# +A box that contains rental Light Epsilon. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +A Greek ceremonial axe that possesses the power of holiness. +-------------------------- +STR +10 +-------------------------- +Enables the use of Level 3 Heal. +-------------------------- +Increases Physical Damage against monsters of Demon race by 3%. +-------------------------- +Increases movement speed. +-------------------------- +Type: Two-Handed Axe +Attack: 229 +Weight: 0 +Element: Holy +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman and Merchant +# +12944# +A box that contains rental Ballista. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +A giant bow used in ancient battles. +-------------------------- +Increases Ranged Physical Damage by 20%. +-------------------------- +Type: Bow +Attack: 194 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Hunter, Bard and Dancer +# +12945# +A box that contains rental Sage's Diary. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +The diary of a great sage that was published without him ever knowing. +-------------------------- +MATK +140 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Type: Book +Attack: 135 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Priest, Sage and Star Gladiator +# +12946# +A box that contains rental Asura. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +A legendary dagger that is said to have been given to mankind by the gods. +-------------------------- +MATK +98 +-------------------------- +Type: Dagger +Attack: 120 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Ninja +# +12947# +A box that contains rental Apple of Archer. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +A headgear made in honor of the legendary archer known for shooting an apple perched on a friend's head from a great distance. +-------------------------- +DEX +4 +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All classes except Novice +# +12948# +A box that contains rental Bunny Band. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +A hairband that gives one the appearance of having rabbit ears, a lasting symbol of extremely good luck. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 13 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +12949# +A box that contains rental Sakkat. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +A rustic hat knit from rough reeds and bamboos that shields against the rain and the glare of the sun. +Saurabi, the ancient Korean warrior, was known to wear one of these. +-------------------------- +AGI +3 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +12950# +A box that contains rental Grand Circlet. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +An exquisitely made circlet, typically worn by rulers or gentry. +-------------------------- +STR +3, INT +3, LUK +3 +MDEF +4 +-------------------------- +Type: Headgear +Defense: 14 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All classes except Novice +# +12951# +A box that contains rental Elven Ears. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +A fashion accessory that gives ears that vaunted, elvish look. For some, it is an incredible turn-on. +-------------------------- +INT +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All classes except Novice +# +12952# +A box contains 1 Steel Flower +Rental duration: 1 Week +Item description: +A small flower made of steel. +-------------------------- +MaxHP +2% +MaxSP +2% +ATK +2% +MATK +2% +Increases experience gained from defeating monsters by 10%. +Increases item drop rate by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All classes except Novice +-------------------------- +Weight: 1 +# +12953# +A box that contains rental Critical Ring. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +An esoteric ring that enables its wearer into amplify his hidden powers. +-------------------------- +Critical +10 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All classes except Novice +# +12954# +A box that contains rental Earring. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +An ancient Earring. +-------------------------- +INT +3 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All classes except Novice +# +12955# +A box that contains rental Ring. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +An ancient ring. +-------------------------- +STR +4 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All classes except Novice +# +12956# +A box that contains rental Necklace. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +An ancient necklace. +-------------------------- +VIT +4 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All classes except Novice +# +12957# +A box that contains rental Glove. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +An ancient glove. +-------------------------- +DEX +4 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All classes except Novice +# +12958# +A box that contains rental Brooch. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +An ancient brooch. +-------------------------- +AGI +4 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All classes except Novice +# +12959# +A box that contains rental Rosary. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +An ancient rosary. +-------------------------- +LUK +4 +MDEF +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All classes except Novice +# +12960# +A box that contains rental Safety Ring. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +A strange ring that curiously raises its wearer's defenses. +-------------------------- +DEF +8 +MDEF +8 +-------------------------- +Type: Accessory +Defense: 5 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All classes except Novice +# +12961# +A box that contains rental Vesper Core 01. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +An object that seems to have been part of a Vesper. It has the mysterious power to clear its owner's mind. +-------------------------- +INT +2 +MaxSP +5% +MDEF +3 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All classes except Novice +# +12962# +A box that contains rental Vesper Core 02. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +An object which seems to be part of a Vesper that can mysteriously empower its wearer with enhanced strength. +-------------------------- +STR +3 +ATK +10 +MDEF +3 +-------------------------- +Type: Accessory +Defense: 1 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All classes except Novice +# +12963# +A box that contains rental Vesper Core 03. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +An object which seems to be part of a Vesper that can mysteriously empower its wearer with enhanced agility. +-------------------------- +AGI +3 +FLEE +5 +MDEF +3 +-------------------------- +Type: Accessory +Defense: 1 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All classes except Novice +# +12964# +A box that contains rental Vesper Core 04. Please handle with care. +-------------------------- +Rental duration: 7 days +Weight: 1 +-------------------------- +Rental Item +An object which seems to be part of a Vesper that can mysteriously empower its wearer by enhancing his accuracy and dexterity. +-------------------------- +DEX +3 +HIT +10 +MDEF +3 +-------------------------- +Type: Accessory +Defense: 1 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All classes except Novice +# +12965# +A box containing Level 1 Emergency Call Scroll. +Able to summon 7 online Guild Member. Only applicable for Guild Leader. +-------------------------- +Weight: 1 +# +12966# +A box containing Level 2 Emergency Call Scroll. +Able to summon 12 online Guild Member. Only applicable for Guild Leader. +-------------------------- +Weight: 1 +# +12967# +A box containing Level 3 Emergency Call Scroll. +Able to summon 20 online Guild Member. Only applicable for Guild Leader. +-------------------------- +Weight: 1 +# +12968# +An Emergency skill Level 1 Scroll. +Able to summon 7 online Guild Member. Only applicable for Guild Leader. +-------------------------- +Weight: 1 +# +12969# +An Emergency skill Level 2 Scroll. +Able to summon 12 online Guild Member. Only applicable for Guild Leader. +-------------------------- +Weight: 1 +# +12970# +An Emergency skill Level 3 Scroll. +Able to summon 20 online Guild Member. Only applicable for Guild Leader. +-------------------------- +Weight: 1 +# +12971# +A box containing 10 Teleport Scroll. +Allow character to teleport to the save point, Prontera, Geffen, Al De Baran and Izlude. +-------------------------- +Weight: 1 +# +12972# +A box containing 10 Teleport Scroll. +Allow character to teleport to the save point, Payon, Alberta, Morocc and Comodo Island. +-------------------------- +Weight: 1 +# +12973# +A box containing 10 Teleport Scroll. +Allow character to teleport to the save point, Dragon City, Gonryun, Amatsu and Ayothaya. +-------------------------- +Weight: 1 +# +12974# +A box containing 10 Teleport Scroll. +Allow character to teleport to the save point, Lutie, Umbala and Niflheim. +-------------------------- +Weight: 1 +# +12975# +A box containing 10 Teleport Scroll. +Allow character to teleport to the save point, Juno, Einbroch, Lighthalzen and Hugel. +-------------------------- +Weight: 1 +# +12976# +A box containing 10 Teleport Scroll. +Allow character to teleport to the save point, Rachel,Veins. +-------------------------- +Weight: 1 +# +12977# +Scroll that contains the skill of Teleportation. The word written on it can not be identified. +Allow character to teleport to the save point, Prontera, Geffen, Al De Baran and Izlude. +-------------------------- +Weight: 1 +# +12978# +Scroll that contains the skill of Teleportation. The word written on it can not be identified. +Allow character to teleport to the save point, Payon, Alberta, Morocc and Comodo Island. +-------------------------- +Weight: 1 +# +12979# +Scroll that contains the skill of Teleportation. The word written on it can not be identified. +Allow character to teleport to the save point, Dragon City, Gonryun, Amatsu and Ayothaya. +-------------------------- +Weight: 1 +# +12980# +Scroll that contains the skill of Teleportation. The word written on it can not be identified. +Allow character to teleport to the save point, Lutie, Umbala and Niflheim. +-------------------------- +Weight: 1 +# +12981# +Scroll that contains the skill of Teleportation. The word written on it can not be identified. +Allow character to teleport to the save point, Juno, Einbroch, Lighthalzen and Hugel. +-------------------------- +Weight: 1 +# +12982# +Scroll that contains the skill of Teleportation. The word written on it can not be identified. +Allow character to teleport to the save point, Rachel,Veins. +-------------------------- +Weight: 1 +# +12983# +A box containing 1 Dangerous Pet Egg Scroll. +-------------------------- +Weight: 1 +# +12984# +A box containing 1 Sacred Pet Egg Scroll. +-------------------------- +Weight: 1 +# +12985# +A box containing 1 Perforated Pet Egg Scroll. +-------------------------- +Weight: 1 +# +12986# +A box containing 1 Unclear Pet Egg Scroll. +-------------------------- +Weight: 1 +# +12987# +A box containing 1 Colorful Pet Egg Scroll. +-------------------------- +Weight: 1 +# +12988# +A box containing 1 Beautiful Pet Egg Scroll. +-------------------------- +Weight: 1 +# +12989# +A Dangerous Pet Egg Scroll. It is said that when used, various mysterious items appear. +-------------------------- +Weight: 1 +# +12990# +A Sacred Pet Egg Scroll. It is said that when used, various mysterious items appear. +-------------------------- +Weight: 1 +# +12991# +A Perforated Pet Egg Scroll. It is said that when used, various mysterious items appear. +-------------------------- +Weight: 1 +# +12992# +A Unclear Pet Egg Scroll. It is said that when used, various mysterious items appear. +-------------------------- +Weight: 1 +# +12993# +A Colorful Pet Egg Scroll. It is said that when used, various mysterious items appear. +-------------------------- +Weight: 1 +# +12994# +A Colorful Pet Egg Scroll. It is said that when used, various mysterious items appear. +-------------------------- +Weight: 1 +# +12995# +A box designed to +preserve its contents, +15 White Herbs. +-------------------------- +Weight: 1 +# +12996# +A box designed to +preserve its contents, +15 Blue Herbs. +-------------------------- +Weight: 1 +# +12997# +A box designed to +retain the sterling +condition of the +5 Elunium that is +contained inside it. +-------------------------- +Weight: 1 +# +12998# +A box designed to +retain the sterling +condition of the +5 Oridecons that are +contained inside it. +-------------------------- +Weight: 1 +# +12999# +A box that contains +3 Dead Branches, +and radiates with +dangerous energy. +-------------------------- +Weight: 1 +# +13000# +The hilt of this dagger is made from the wood of a Jujube tree struck by lightning, somehow imbuing this dagger with its power. +-------------------------- +Type: Dagger +Attack: 39 +Weight: 60 +Element: Wind +Weapon Level: 1 +-------------------------- +Requirement: +All classes except Acolyte Class +# +13001# +Crafted from a dragon's fang, this dagger can easily slash through tough dragon hide. +-------------------------- +Ignores physical defense of Dragon race. +-------------------------- +Increases experience gained from defeating Dragon race monsters by 10%. +-------------------------- +Type: Dagger +Attack: 110 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 60 +All classes except Acolyte Class +# +13002# +A dagger with an unnaturally dark colored blade. +Those who hold it instinctively sense the danger and risk of wielding this weapon. +-------------------------- +Random chance to inflict Blind status on the target or wielder when dealing physical damage. +-------------------------- +Type: Dagger +Attack: 148 +Weight: 70 +Element: Shadow +Weapon Level: 4 +Tier: 3 +-------------------------- +Requirement: +Base Level 70 +All classes except Acolyte +# +13003# +A dagger invented by a cowardly Assassin who was always held resentment about being unable to equip a shield. +-------------------------- +DEF +5 +-------------------------- +Type: Dagger +Attack: 80 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Thief and Ninja +# +13004# +A dagger invented by a cowardly Assassin who was always held resentment about being unable to equip a shield. +-------------------------- +DEF +5 +-------------------------- +Type: Dagger +Attack: 80 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Thief and Ninja +# +13005# +Not much is known about the mysterious Angelic Wing Dagger... +# +13006# +A dagger whose hilt is crafted from black dragon scale, a material rumored to possess the power of darkness. +-------------------------- +Random chance to inflict Curse status on the target when dealing melee physical attacks. +-------------------------- +Type: Dagger +Attack: 150 +Weight: 60 +Element: Shadow +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 65 +Ninja +# +13007# +A practical mace topped with a hook that can be used to wrench a weapon out of an enemy's hands. +-------------------------- +Random chance to destroy target's weapon when dealing melee physical attacks. +-------------------------- +Type: Dagger +Attack: 70 +Weight: 40 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 35 +Ninja +# +13008# +A practical mace topped with a hook that can be used to wrench a weapon out of an enemy's hands. +-------------------------- +Random chance to destroy target's weapon when dealing melee physical attacks. +-------------------------- +Type: Dagger +Attack: 70 +Weight: 40 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 35 +Ninja +# +13009# +A legendary weapon with extremely sharp blades. +-------------------------- +Critical +3 +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Type: Dagger +Attack: 125 +Weight: 90 +Element: Wind +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 70 +Ninja +# +13010# +A legendary dagger that is said to have been given to mankind by the gods. +-------------------------- +MATK +50 +-------------------------- +Type: Dagger +Attack: 50 +Weight: 60 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 12 +Ninja +# +13011# +A legendary dagger that is said to have been given to mankind by the gods. +-------------------------- +MATK +50 +-------------------------- +Type: Dagger +Attack: 50 +Weight: 60 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 12 +Ninja +# +13012# +A famous sword that is said to be sharp enough to divide oceans or cut through the air to make it bleed water. +-------------------------- +Critical +10 when attacking Demi-Human race monster. +-------------------------- +Type: Dagger +Attack: 95 +Weight: 70 +Element: Water +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 24 +Ninja +# +13013# +A famous sword that is said to be sharp enough to divide oceans or cut through the air to make it bleed water. +-------------------------- +Critical +10 when attacking Demi-Human race monster. +-------------------------- +Type: Dagger +Attack: 95 +Weight: 70 +Element: Water +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 24 +Ninja +# +13014# +A dagger that has a shining white blade crafted of bone and is designed for stabbing, rather than slashing. +-------------------------- +Int +2 +-------------------------- +Random chance to auto-cast Level 1 Heal on wielder when dealing melee physical attacks. +-------------------------- +Type: Dagger +Attack: 120 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 42 +Ninja +# +13015# +A dagger that has a shining white blade crafted of bone and is designed for stabbing, rather than slashing. +-------------------------- +Int +2 +-------------------------- +Random chance to auto-cast Level 1 Heal on wielder when dealing melee physical attacks. +-------------------------- +Type: Dagger +Attack: 120 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 42 +Ninja +# +13016# +A fearsome dagger with a burgundy blade that is coated with potent poison. +-------------------------- +Random chance to inflict Poison on the target when dealing physical damage. +-------------------------- +Type: Dagger +Attack: 64 +Weight: 80 +Element: Poison +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 65 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +13017# +A thin, sharp weapon that looks capable of penetrating armor. +-------------------------- +Deals more damage depending on the target's Defense. +-------------------------- +Type: Dagger +Attack: 70 +Weight: 60 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +13018# +A specialty dagger made by a small, mysterious, desert dwelling tribe. +-------------------------- +Increases Physical Damage against enemies of Earth and Wind elemental by 10%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Dagger +Attack: 140 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +13019# +A dagger with an unnaturally dark colored blade. +Those who hold it instinctively sense the danger and risk of wielding this weapon. +-------------------------- +Random chance to inflict Blind status on the target or wielder when dealing physical damage. +-------------------------- +Type: Dagger +Attack: 148 +Weight: 70 +Element: Shadow +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 70 +All classes except Acolyte Class +# +13020# +Character Equipping the Balmung gets Incredible Power. +-------------------------- +All Stats +5 +-------------------------- +Type: One-Handed Sword +Attack: 170 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +# +13021# +Rental Item +Military combat knife made for battles against Demi-Human race. +-------------------------- +MaxSP +10% +-------------------------- +Restores 3 SP when hitting a monster. +-------------------------- +Ignores physical defense of Demi-Human race. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Increases damage taken from monsters of Demon race by 10%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Dagger +Attack: 129 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +13022# +Rental Item +A dagger that has a high chance of inflicting critical attack to its target. +-------------------------- +Critical +90 +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Dagger +Attack: 209 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Magician and Soul Linker classes +# +13023# +Rental Item +A legendary dagger that is said to have been given to mankind by the gods. +-------------------------- +MATK +98 +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Dagger +Attack: 120 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Ninja +# +13024# +Rental Item +A powerful dagger that is specially constructed to destroy the enemy's weapon by a low chance. +-------------------------- +Type: Dagger +Attack: 105 +Weight: 0 +Refineable: No +Weapon Level: 4 +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +13025# +Rental Item +An incredibly sharp dagger built to puncture and destroy an enemy's armor by a low chance. +-------------------------- +Type: Dagger +Attack: 105 +Weight: 0 +Refineable: No +Weapon Level: 4 +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +13026# +Rental Item +A dagger imbued with lunar spirit and the power to drain an enemy's soul. +-------------------------- +MaxSP +10% +-------------------------- +Regain 3 SP with each attack. +-------------------------- +Type: Dagger +Attack: 85 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +13027# +A small, light and sharp sword that is optimized for swift strikes. +-------------------------- +Random chance to inflict Bleeding status on the target when dealing physical damage. +-------------------------- +Type: Dagger +Attack: 120 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 55 +Transcendent Swordman, Magician, Archer, Merchant and Thief +# +13028# +A dentist's scalpel that is intended to treat patient's teeth, but it can also be used offensively to impend the victim's ability to speak. +-------------------------- +Random chance to auto-cast Level 1 Slow Cast on enemies when dealing physical damage. +Refine Level +9: +auto cast Level 2 Slow Cast instead. +-------------------------- +Type: Dagger +Attack: 130 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 55 +Transcendent Swordman, Magician, Archer, Merchant and Thief +# +13029# +Item For Brave Guild Adventurers. +-------------------------- ++50% Damage. +-------------------------- +Type: Dagger +Attack: 120 +Weight: 0 +Weapon Level: 1 +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +13030# +Crafted from a dragon's fang, this dagger can easily slash through tough dragon hide. +-------------------------- +Ignores physical defense of Dragon race. +-------------------------- +Increases experience gained from defeating Dragon race monsters by 10%. +-------------------------- +Type: Dagger +Attack: 110 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 60 +All classes except Acolyte +# +13031# +A powerful dagger that is specially constructed to destroy the enemy's weapon by a low chance. +-------------------------- +Type: Dagger +Attack: 70 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +13032# +An incredibly sharp dagger built to puncture and destroy an enemy's armor by a low chance. +-------------------------- +Type: Dagger +Attack: 40 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +13033# +A dagger commonly used by Assassins. +-------------------------- +MaxHP +20% +MaxSP +15% +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Type: Dagger +Attack: 140 +Weight: 60 +Element: Shadow +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Assassin classes +# +13034# +One of a pair of daggers made for the Assassin Guild member. +-------------------------- +When equipped with Sandstorm: +MaxHP +5% +MaxSP +20 +HIT +10 +Increases Physical Damage against enemies of Large size by 30%. +Random chance to Reduces After Attack Delay by 100% for 7 seconds when dealing physical damage. +-------------------------- +Type: Dagger +Attack: 130 +Weight: 60 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 70 +Assassin Cross +# +13035# +One of a pair of daggers made for the Assassin Guild member. +-------------------------- +When equipped with Desert Twilight: +MaxHP +5% +MaxSP +20 +HIT +10 +Increases Physical Damage against enemies of Large size by 30%. +Random chance to Reduces After Attack Delay by 100% for 7 seconds when dealing physical damage. +-------------------------- +Type: Dagger +Attack: 50 +Weight: 60 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 70 +Assassin Cross +# +13036# +A dagger especially used for assassinations such as killing Demihuman. +-------------------------- +STR +1, AGI +1 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 75%. +-------------------------- +Ignores 20% physical defense of Demi-Human race. +-------------------------- +When equipped by Ninja or Rogue classes: +MATK +90 +-------------------------- +Indestructible in battle +-------------------------- +Type: Dagger +Attack: 120 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +13037# +A dagger especially used for assassinations such as killing Demihuman. +-------------------------- +STR +1, AGI +1 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 75%. +-------------------------- +Has a chance of enchanting compounded weapons with the Investigate skill effect for 6 seconds. when attacking. +-------------------------- +When equipped by Ninja or Rogue classes: +MATK +90 +-------------------------- +Indestructible in battle +-------------------------- +Type: Dagger +Attack: 120 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +13038# +Specialized in back-stabbing. This dagger is customized for stalkers. +-------------------------- +STR +1, AGI +2, DEX +1 +-------------------------- +Increases damage of Back Stab by 20%. +-------------------------- +Random chance to auto-cast Level 10 Bash when using Back Stab skill. +-------------------------- +Type: Dagger +Attack: 120 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Stalker +# +13039# +A dagger made of Mammoth's Ivory. It is very hard to be processed due to the strong solidity of the ivory. It's sharply pointed tip makes it effective for stabbing rather than cutting. +-------------------------- +AGI +2 +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Random chance to inflict Bleeding status or Level 1 Critical Wound while attacking. +-------------------------- +Type: Dagger +Attack: 130 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Transcendent Swordman, Merchant, Thief, Archer and Magician +# +13040# +A knife used for cutting enemies. +-------------------------- +Type: Dagger +Attack: 50 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +13041# +A French dagger that is usually held in the left hand to parry attacks. +-------------------------- +Type: Dagger +Attack: 63 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +13042# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 75%. +Ignores 20% physical defense of Demi-Human race. +Random chance to auto-cast Level 1 Lex Divina when dealing physical damage. +-------------------------- +***Additional Weapon Refining Level Option*** ++6 Upgrade: Pierces 5% physical defense of Demi-Human race, [Slaughter] Lv 1 (Damage bonus of Slaughter increases up to the Refine Level 14.) ++9 Upgrade: Random chance to inflict Bleeding on 5x5 cells when using Raid skill. +-------------------------- +Type: Dagger +Attack: 120 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +13043# +Rental Item +A knife with a gold handle that is said to bring great fortune to whoever holds it. +-------------------------- +LUK +5 +Perfect Dodge +20 +-------------------------- +Type: Dagger +Attack: 120 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +13044# +Rental Item +A thin, sharp weapon that looks capable of penetrating armor. +-------------------------- +Deals more damage depending on the target's Defense. +-------------------------- +Random chance to increase FLEE by 20 when dealing physical damage. +-------------------------- +Type: Dagger +Attack: 105 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +13045# +Rental Item +A legendary weapon with extremely sharp blades. +-------------------------- +Critical +10 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Type: Dagger +Attack: 155 +Weight: 0 +Element: Wind +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Ninja +# +13046# +This dagger is intended to give more pain, rather than killing the target, with its thorny shape. +-------------------------- +Increases damage of Back Stab by 15%. +-------------------------- +Random chance to inflict Bleeding status when using Back Stab. +-------------------------- +Type: Dagger +Attack: 110 +Weight: 50 +Weapon Level: 2 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 50 +Transcendent Thief +# +13047# +The name means 'War'. Its saw-shaped blade is covered with poison. +-------------------------- +Random chance to inflict Poison status on the target when using Raid skill. +-------------------------- +Random chance to increase ATK by 10% for 5 seconds when dealing melee physical attacks. +-------------------------- +Type: Dagger +Attack: 135 +Weight: 50 +Weapon Level: 3 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 50 +Transcendent Thief +# +13048# +Rental Item +A lethal knife made of a special metal that can easily cut straight into the heart of an enemy. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Indestructible in battle +-------------------------- +Type: Dagger +Attack: 153 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +13049# +A short blade with beautiful decoration of gemstone. +-------------------------- +Refine Level +3: +ATK +40 +MATK +40 +-------------------------- +Refine Level +6: +Increases Physical Damage against enemies of Medium size by 8%. +Random chance to nullifie weapon damage penalty resulting from monster's size for 5 second when dealing physical damage. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Medium size by 20%. +-------------------------- +Refine Level +12: +Nullifies weapon damage penalty resulting from monster's size. +-------------------------- +When VIP status active: +Restore 1 SP for every hit. +Increases Physical Damage against enemies of Medium size by 5% +-------------------------- +Refine Level +8: +Nullifies weapon damage penalty resulting from monster's size. +-------------------------- +Refine Level +9: +has low chance to restore 2 SP for every hit for 5 second. +-------------------------- +Type: Dagger +Attack: 45 +Weight: 65 +Weapon Level: 3 +-------------------------- +Requirement: +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +13050# +A practical dagger made by the Eden Group. This dagger is very useful for beginning adventurers. +-------------------------- +MATK +60 +-------------------------- +Type: Dagger +Attack: 124 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 26 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +13051# +A practical dagger made by the Eden Group. It's suitable for an intermediate who has handled a dagger before. +-------------------------- +MATK +70 +-------------------------- +Type: Dagger +Attack: 158 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +13052# +Daggers which world travelers always like to have. +-------------------------- +AGI +2 +-------------------------- +Type: Dagger +Attack: 51 +Weight: 50 +Weapon Level: 1 +-------------------------- +Requirement: +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +13053# +Rental Item +A dagger imbued with lunar spirit and the power to drain an enemy's soul. +-------------------------- +MaxSP +10% +-------------------------- +Regain 3 SP with each attack. +-------------------------- +Type: Dagger +Attack: 85 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +13054# +Rental Item +A military combat knife designed for killing humanoids. +-------------------------- +MaxSP +10% +-------------------------- +Restores 3 SP when hitting a monster. +-------------------------- +Ignores physical defense of Demi-Human race. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Increases damage taken from monsters of Demon race by 10%. +-------------------------- +Type: Dagger +Attack: 129 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Merchant, Thief, Soul Linker and Ninja +# +13055# +Rental Item +A legendary dagger that is said to have been given to mankind by the gods. +-------------------------- +MATK +15% +-------------------------- +Type: Dagger +Attack: 120 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Ninja +# +13056# +Rental Item +A dagger that has a high chance of inflicting critical damage to its target. +-------------------------- +Critical +90 +-------------------------- +Type: Dagger +Attack: 209 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Magician and Soul Linker classes +# +13061# +A sawtooth dagger crafted by the Rogue Guild. +-------------------------- +Increases damage of Fatal Menace by 30%. +-------------------------- +For each Refine Level equal or above +6: +MATK +3 +Increases damage of Fatal Menace by 2%. +-------------------------- +When equipped with Black Cat: +HIT +5 +MATK +5 +Decreases SP Consumption of Masquerade Enervation and Masquerade Gloomy by 20. +-------------------------- +Type: Dagger +Attack: 142 +Weight: 60 +Weapon Level: 3 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 102 +Shadow Chaser +# +13062# +An ancient ritual dagger with unknown powers. +-------------------------- +MATK +120 +MaxSP +100 +-------------------------- +Increases SP Recovery Rate by 5%. +-------------------------- +Random chance to inflict Curse status on wielder when dealing physical and magical attack. +-------------------------- +Type: Dagger +Attack: 107 +Weight: 60 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 120 +3rd classes of Swordsman, Merchant, Thief, Archer and Magician +# +13066# +A practical dagger made by the Eden Group. It's suitable for those who have experience handling daggers. +-------------------------- +MATK +80 +-------------------------- +Type: Dagger +Attack: 165 +Weight: 0 +Weapon Level: 3 +Refineable: No +Can be enchanted by: +Weapons Expert BKmoc_para01,112,79,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +13067# +A long time ago, the manufacturing process for the holy sword of the Jaty tribe in Dewata island disappeared, but it has been reproduced by Mastersmith Gatti again. +-------------------------- +MATK +70 +-------------------------- +Enable a 2% chance of gaining 10% of the damage against target as HP with each attack. +-------------------------- +An additional enchant option is available from Gatti for this weapon. +-------------------------- +Type: Dagger +Attack: 107 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 30 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +13068# +Rental Item +A Seahorse looking fish that can be used in different cuisines it is frozen solid. +-------------------------- +MATK +100 +-------------------------- +Random chance to increase ATK by 30 for 7 sec when dealing physical damage. +-------------------------- +Random chance to increase MATK by 20 for 7 sec when dealing magical damage. +-------------------------- +Base Level at least 100: +ATK +10, MATK +10. +-------------------------- +Type: Dagger +Attack: 160 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +13069# +Blue dagger that has opposite magic power in. +-------------------------- +MATK +80 +-------------------------- +Random chance to inflict Frozen status when dealing physical damage. +Increases the chance with each Refine Level. +-------------------------- +Type: Dagger +Attack: 160 +Weight: 50 +Element: Wind +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 110 +Transcendent Novice, Swordsman, Merchant and Thief +# +13070# +Red dagger that has opposite magic power in. +-------------------------- +MATK +80 +-------------------------- +Random chance to inflict Stone Curse status when dealing physical damage. +Increases the chance with each Refine Level. +-------------------------- +Type: Dagger +Attack: 160 +Weight: 50 +Element: Fire +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 110 +Transcendent Novice, Swordsman, Merchant and Thief +# +13071# +Dagger that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +10 +MATK +5 +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Dagger +Attack: 55 +Weight: 60 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +13072# +*Effects in WoE & PVP area +Decreases the target's DEF and MDEF to 1 for 5 seconds on each physical attack. (This effect does not work with skills) +-------------------------- +For each Refine Level: +ASPD +1 +-------------------------- +Type: Dagger +Attack: 180 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 95 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +13073# +A dagger that has a high chance to do critical damage to a target. +-------------------------- +Critical +90 +-------------------------- +Type: Dagger +Attack: 140 +Weight: 55 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 55 +Magician and Soul Linker classes +# +13074# +Prototype Ninja Dagger being prepared by the Ninja Association. +Still at the early stages of development and will have to wait a while for actual commercial sales to start. +-------------------------- +Type: Dagger +Attack: 0 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 99 +Ninja +# +13075# +New red dagger released by the Ninja Association. Named for its beautiful but ghastly color. +-------------------------- +INT +3 +-------------------------- +Type: Dagger +Attack: 130 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 99 +Ninja +# +13076# +Only several skilled ninjas can handle this dagger. Favorite among high ranking ninjas for its amazing performance which exceeds the Asura. +-------------------------- +INT +3 +MATK +100 +-------------------------- +Type: Dagger +Attack: 120 +Weight: 60 +Weapon Level: 3 +Can be enchanted by: +Artisan Teneque_ng,75,20,0,100,0,0 +-------------------------- +Requirement: +Base Level 110 +Kagerou and Oboro +# +13077# +Dagger named \ +. +Named after a legendary ninja known for his excellent swordsmanship who was able to slice even shadows of the dark. +-------------------------- +Type: Dagger +Attack: 50 +Weight: 60 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Ninja +# +13078# +A dagger with a curve that resemble a new moon. You gain magical power from the moon just by holding it. +-------------------------- +MATK +120 +-------------------------- +Decreases SP Consumption by 5%. +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Dagger +Attack: 50 +Weight: 0 +Weapon Level: 4 +Can be enchanted by: +Artisan Teneque_ng,75,20,0,100,0,0 +-------------------------- +Requirement: +Base Level 100 +Ninja +# +13079# +Dagger coated with metal +-------------------------- +Type: Dagger +Attack: 118 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +13080# +A dagger made of water rune. It have the power that can Decreases damage from water element. +-------------------------- +AGI +2 +MaxHP -2% +-------------------------- +Decreases damage taken from Water elemental attacks by 2%. +-------------------------- +Increases damage taken from Fire elemental attacks by 5%. +-------------------------- +Refine Level +7: +MaxHP +1% +Decreases damage taken from Water elemental attacks by 3%. +-------------------------- +For each Refine Level above +7: +MaxHP +1% +-------------------------- +Type: Dagger +Attack: 80 +Weight: 20 +Element: Water +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 60 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +13081# +A knife for sashimi. +It has a long blade and is easy to aim for prey. +-------------------------- +For each Refine Level: +HIT +1 +-------------------------- +When equipped with Crap Card: +Increases Physical Damage against enemies of Water elemental by 8%. +-------------------------- +When equipped with Aster Card: +Increases Physical Damage against enemies of Water elemental by additional 8%. +-------------------------- +When equipped with Shellfish Card: +Increases Physical Damage against enemies of Water elemental by additional 8%. +-------------------------- +When equipped with Crap Card, Aster Card and Shellfish Card: +Increases Physical Damage against enemies of Water elemental by additional 16%. +-------------------------- +Type: Dagger +Attack: 140 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 105 +3rd classes of Swordsman, Magician, Archer, Merchant, Thief and Oboro/Kagerou +# +13082# +A dagger made of Mammoth's Ivory. It is very hard to be processed due to the strong solidity of the ivory. It's sharply pointed tip makes it effective for stabbing rather than cutting. +-------------------------- +AGI +2 +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Random chance to inflict Bleeding or Level 1 Critical Wound when dealing physical damage. +-------------------------- +Type: Dagger +Attack: 130 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Transcendent Swordman, Merchant, Thief, Archer and Magician +# +13083# +Rental Item +MATK +100 +-------------------------- +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Random chance to inflict Silence status when dealing physical damage. +-------------------------- +Type: Dagger +Attack: 100 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Ninja, Soul Linker +# +13084# +A dagger created using a tree rune. +Has the power to mitigate ground attribute attacks. +-------------------------- +AGI +2 +MaxHP -2% +-------------------------- +Decreases damage taken from arth elemental attacks by 2%. +-------------------------- +Increases damage taken from Wind elemental attacks by 5%. +-------------------------- +Refine Level +7: +Decreases damage taken from arth elemental attacks by additional 3%. +-------------------------- +For each Refine Level above +7: +MaxHP +1% +-------------------------- +Type: Dagger +Attack: 80 +Weight: 20 +Element: Earth +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 60 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +13085# +A dagger created using a flaming rune. +Has the power to mitigate fire-based attacks. +-------------------------- +AGI +2 +MaxHP -2% +-------------------------- +Decreases damage taken from Fire elemental attacks by 2%. +-------------------------- +Increases damage taken from Water elemental attacks by 5%. +-------------------------- +Refine Level +7: +Decreases damage taken from Fire elemental attacks by 3%. +-------------------------- +For each Refine Level above +7: +MaxHP +1% +-------------------------- +Type: Dagger +Attack: 80 +Weight: 20 +Element: Fire +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 60 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +13086# +A dagger decorated with Gold. It looks so old that you can hardly read any of the writing on it. +The writing says \ +. +-------------------------- +MATK +25 +-------------------------- +Type: Dagger +Attack: 35 +Weight: 50 +Weapon Level: 1 +-------------------------- +Requirement: +Swordsman, Magician, Merchant, Thief, Soul Linker and Ninja +# +13087# +A dagger created using wind runes. +Has the power to reduce wind attribute attacks. +-------------------------- +AGI +2 +MaxHP -2% +-------------------------- +Decreases damage taken from Wind elemental attacks by 2%. +-------------------------- +Increases damage taken from Earth elemental attacks by 5%. +-------------------------- +Refine Level +7: +Decreases damage taken from Wind elemental attacks by 3%. +-------------------------- +For each Refine Level above +7: +MaxHP +1% +-------------------------- +Type: Dagger +Attack: 80 +Weight: 20 +Element: Wind +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 60 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +13088# +Original Ancient Dagger with outstanding potential. +-------------------------- +MATK +50 +-------------------------- +Refine Level +5: +MATK +30 +-------------------------- +Refine Level +7: +MATK +10 +-------------------------- +Refine Level +9: +MATK +10 +-------------------------- +Type: Dagger +Attack: 110 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 30 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +13089# +A broken razor-like leg that was severed from a Faceworm. +It's sustained with potent time-warping energy. +-------------------------- +MATK +50 +-------------------------- +Random chance to auto-cast Illusion of Faceworm Queen when dealing physical damage. +-------------------------- +Type: Dagger +Attack: 110 +Weight: 50 +Element: Poison +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 24 +Super Novice; 3rd classes of Swordsman, Magician, Archer, Merchant, Thief; Soul Reaper, Kagerou and Oboro +# +13090# +A broken razor-like leg that was severed from a Faceworm. +It's sustained with potent time-warping energy. +-------------------------- +INT +3 +MATK +120 +-------------------------- +Random chance to auto-cast Illusion of Faceworm Queen when dealing physical damage. +-------------------------- +Type: Dagger +Attack: 180 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 90 +Super Novice; 3rd classes of Swordsman, Magician, Archer, Merchant, Thief; Soul Reaper, Kagerou and Oboro +# +13091# +A dagger made of owl feathers. +It contains the magical power of the owl, who controls wisdom and good luck. +-------------------------- +For each Refine Level: +INT +1 +LUK +1 +-------------------------- +Type: Dagger +Attack: 50 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 50 +Novice, Swordsman, Merchant, Archer, Thief, Magician, Soul Linker and Ninja classes +# +13092# +A dagger richly decorated with gold throughout the handle created for the 2012 RWC (Ragnarok World Championship) +-------------------------- +For each 3 Refine Levels: +ATK and MATK +20 +-------------------------- +Refine Level +6: +Increases Damage to all monsters by 5%. +-------------------------- +Refine Level +9: +Increases Damage to all monsters by 5% and adds a low chance of auto-casting Level 1 Weapon Perfection. +-------------------------- +When equipped with RWC 2012 Ring: +For each Refine Level of RWC Memory Knife: +ATK +10 +-------------------------- +When equipped with RWC 2012 Pendant: +For each Refine Level of RWC Memory Knife: +MATK +10 +-------------------------- +These bonuses do not work with the card-slotted RWC accessories +-------------------------- +Type: Dagger +Attack: 50 +Weight: 65 +Weapon Level: 3 +-------------------------- +Requirement: +All classes except Acolyte Class +# +13093# +A dagger sculpted from Gray Shard to counter Magic Sword Tartanos. +It offers incredible power and magic at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +130 +-------------------------- +Physical attack has chance to drain 5% of damage into HP and SP. +Drains 100 HP every 10 seconds. +Drains 1000 HP when unequipped. +-------------------------- +Type: Dagger +Attack: 100 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Swordsman, Archer, Merchant and Thief +# +13094# +This dagger was once used for vanquishing an evil slayer and his followers. +-------------------------- +Increases Physical Damage against enemies of Demon and Undead race by 10%. +-------------------------- +Refine Level +9: +ATK +5% +-------------------------- +Refine Level +12: +ATK +7% +-------------------------- +Type: Dagger +Attack: 120 +Weight: 90 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +13097# +Blue Dagger which has destructive power. +-------------------------- +STR +5 +INT +5 +-------------------------- +When VIP status active: +ATK +20% +ASPD +3 +-------------------------- +Type: Dagger +Attack: 180 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +13098# +Blue Asura which has destructive power. +-------------------------- +MATK +150 +-------------------------- +When VIP status active: +MATK +20% +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Dagger +Attack: 150 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Ninja +# +13099# +Blue Knife which has destructive power. +-------------------------- +VIT +5 +INT +5 +-------------------------- +When VIP status active: +MATK +20% +Decreases After Skill Delay by 10%. +-------------------------- +Type: Dagger +Attack: 180 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +13100# +A six chambered revolver that is the most basic weapon for Gunslingers. +-------------------------- +HIT -10 +-------------------------- +Type: Revolver +Attack: 30 +Weight: 40 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 10 +Gunslinger +# +13101# +A six chambered revolver that is the most basic weapon for Gunslingers. +-------------------------- +HIT -10 +-------------------------- +Type: Revolver +Attack: 30 +Weight: 40 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 10 +Gunslinger +# +13102# +A bloody red revolver that is rumored to be cursed. +-------------------------- +HIT -10 +-------------------------- +Type: Revolver +Attack: 45 +Weight: 45 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 35 +Gunslinger +# +13103# +A bloody red revolver that is rumored to be cursed. +-------------------------- +HIT -10 +-------------------------- +Type: Revolver +Attack: 45 +Weight: 45 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 35 +Gunslinger +# +13104# +A rare revolver that is only produced when it is specially ordered. +The engraving of its creator's name can be used by experts to authenticate this gun. +-------------------------- +HIT -10 +-------------------------- +Type: Revolver +Attack: 70 +Weight: 50 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 55 +Gunslinger +# +13105# +A rare revolver that is only produced when it is specially ordered. +The engraving of its creator's name can be used by experts to authenticate this gun. +-------------------------- +HIT -10 +-------------------------- +Type: Revolver +Attack: 70 +Weight: 50 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 55 +Gunslinger +# +13106# +A decorative, beautiful golden revolver that commands attention. +-------------------------- +HIT -10 +-------------------------- +Random chance to auto-cast Coin Flip when dealing physical damage. +Coin Flip's Level will be equal to the Coin Flip skill Level that the user has learned. +-------------------------- +Type: Revolver +Attack: 20 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 12 +Gunslinger +# +13107# +A highly accurate and rapid firing gun that was made in the memory of all the Gunslingers that had braved the unexplored wilderness. +-------------------------- +Increases HIT and ASPD based on wielder's AGI stats. +-------------------------- +Type: Revolver +Attack: 68 +Weight: 58 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Gunslinger +# +13108# +A revolver made for short and medium ranged battles against Demihuman. +It seems to be capable of doing damage even through a bulletproof vest. +-------------------------- +DEX +2 +HIT -10 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 55%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +Random chance to Reduces After Attack Delay by 100% for 3 sec when dealing physical damage. +-------------------------- +Indestructible in battle +-------------------------- +Type: Revolver +Attack: 70 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Gunslinger +# +13109# +Rental Item +A highly accurate and rapid firing gun that was made in the memory of all the Gunslingers that had braved the unexplored wilderness. +-------------------------- +Adds HIT and ASPD bonus depend on wielder's AGI stats. +-------------------------- +ATK +40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Revolver +Attack: 100 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Gunslinger +# +13110# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 55%. +Ignores 20% of physical defense of Demi-Human race. +-------------------------- +***Additional Weapon Refining Level Option*** +Refine Level +6: +Ignores physical defense of Demi-Human race monster by additional 5% +Slaughter Lv 1: (Damage bonus of Slaughter increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +When using Rapid Shower, auto-casts Level 1 Coin Flip. +Increases damage of Rapid Shower based on Refine Level. +-------------------------- +Type: Revolver +Attack: 80 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Gunslinger +# +13111# +Rental Item +Sharpshooter Revolver. +-------------------------- +DEX +2 +Increases damage of Desperado by 25%. +-------------------------- +Type: Revolver +Attack: 105 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Gunslinger +# +13112# +A revolver made by the Eden Group. Easy to use for novice Gunslingers. +-------------------------- +HIT -5 +-------------------------- +Type: Revolver +Attack: 44 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 26 +Gunslinger +# +13113# +A revolver made by the Eden Group. It's suitable for an intermediate Gunslingers. +-------------------------- +HIT -5 +-------------------------- +Type: Revolver +Attack: 60 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Gunslinger +# +13114# +A revolver made by the Eden Group. It's suitable for an advanced Gunslingers. +-------------------------- +HIT -5 +-------------------------- +Type: Revolver +Attack: 76 +Weight: 0 +Weapon Level: 3 +Refineable: No +Can be enchanted by: +Weapons Expert BKmoc_para01,112,79,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Gunslinger +# +13115# +Revolver that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +5 +Increases Ranged Physical Damage by 2%. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Revolver +Attack: 35 +Weight: 50 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Gunslinger +# +13116# +Novice gunslinger's pistol made for less recoil experience. Less recoil, less shooting power. +-------------------------- +HIT -5 +-------------------------- +Type: Revolver +Attack: 20 +Weight: 50 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Gunslinger +# +13117# +Rental Item +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Random chance to inflict Curse status when dealing physical damage. +-------------------------- +Type: Revolver +Attack: 60 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Gunslinger +# +13118# +Made with amateur workmanship. No other word to describe. +-------------------------- +Indestructible in battle +-------------------------- +Type: Revolver +Attack: 0 +Weight: 10 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Gunslinger +# +13119# +Mysterious revolver made by an amateur with the aid of some magic touch from a master of gunnery. +-------------------------- +Indestructible in battle +-------------------------- +Type: Revolver +Attack: 100 +Weight: 10 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 99 +Gunslinger +# +13120# +A pair of guns that have a white body and a red barrel. +-------------------------- +Increases damage of Desperado and Fallen Angel by 20%. +-------------------------- +Random chance to inflict Burning status on the target when dealing physical damage. +-------------------------- +Type: Revolver +Attack: 150 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 99 +Gunslinger +# +13121# +A revolver with extreme attack power but difficult to operate. +-------------------------- +HIT -20 +Increases After Attack Delay by 25% +-------------------------- +Type: Revolver +Attack: 200 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 105 +Rebellion +# +13122# +A high-end gun whose design is focused on performance. +-------------------------- +HIT +5 +Increases After Attack Delay by 10%. +-------------------------- +Increases Ranged Physical Damage by 30%. +-------------------------- +Type: Revolver +Attack: 200 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 140 +Rebellion +# +13123# +Named after 2 famous goddess of Gunner. +-------------------------- +DEX +2 +AGI +2 +INT +5 +LUK +5 +-------------------------- +Random chance to increase ATK by 50 when using Quick Draw Shot. +-------------------------- +Type: Revolver +Attack: 110 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 110 +Rebellion +# +13124# +A high-end gun whose design is focused on performance. +-------------------------- +HIT +5 +Increases After Attack Delay by 10%. +-------------------------- +Increases Ranged Physical Damage by 30%. +-------------------------- +Type: Revolver +Attack: 200 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 140 +Rebellion +# +13125# +Revolver with steel cone that is added to enhance the ability to shoot, made of metal. +-------------------------- +For each Refine Level: +ATK +3 +Increases Ranged Physical Damage by 1%. +-------------------------- +For each 10 Base Level above 20: +ATK +3 (Applied until you reach Base Level 120) +-------------------------- +Type: Revolver +Attack: 30 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Gunslinger +# +13126# +This weapon contains a strange energy. It's feels there are sealed stats. +-------------------------- +Type: Revolver +Attack: 175 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +13127# +Pistol that emitting red aura. +-------------------------- +ATK increased by (RefineLv*RefineLv), up to +15 Refine Level. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Revolver +Attack: 100 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Gunslinger +# +13128# +Revolver imbued with Vicious Mind. +-------------------------- +Increases ATK by (Refine*Refine) +(up to +15 Refine Level) +-------------------------- +Type: Revolver +Attack: 150 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 160 +Gunslinger +# +13129# +A certified kingdom equipment for adventurer. +-------------------------- +Increases ATK by (Refine*Refine*1.25) +-------------------------- +Type: Revolver +Attack: 95 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Gunslinger +# +13130# +A gun with the power of lightning. +It is said that the original performance can be exhibited by regaining the power of the wind. +-------------------------- +Grants bullets the Wind element for 180 minutes. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Fish race by 10%. +Increases Physical Damage against enemies of Water elemental by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Fish race by additional 15%. +Increases Physical Damage against enemies of Water elemental by additional 15%. +-------------------------- +When equipped with Thunder Ring: +Increases Physical Damage against enemies of Fish race by additional 20%. +Increases Physical Damage against enemies of Water elemental by additional 20%. +-------------------------- +Type: Revolver +Attack: 60 +Weight: 100 +Element: Wind +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Gunslinger +# +13131# +A replica made based on a shooting gun. +Perhaps because it is an incomplete replica, the shape of the weapon collapses after a certain period of time. +-------------------------- +Grants bullets the Fire element for 180 minutes. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Insect and Demi-Human race, except Players, by 10%. +Increases Physical Damage against enemies of Water and Earth elemental by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Insect and Demi-Human race, except Players, by additional 15%. +Increases Physical Damage against enemies of Water and Earth elemental by additional 15%. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Revolver +Attack: 60 +Weight: 0 +Element: Fire +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Gunslinger +# +13132# +A metallic Revolver made of oridecon created for experienced adventurers. +-------------------------- +Increases damage of Fire Dance by 10%. +-------------------------- +For each Refine Level: +ATK +5 +Increases Ranged Physical Damage by 2%. +-------------------------- +For each 10 Base Level: +ATK +5 (Applies up to Base Level 150) +-------------------------- +Type: Revolver +Attack: 55 +Weight: 0 +Weapon Level: 3 +Enchantable: Yes +Enchanter: [Jumping Enchant Specialist]prontera,151,187,0,100,0,0 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +13133# +A gun with the power of the earth. +It is said that the original performance can be exhibited by regaining the power of \ +. +-------------------------- +Grants bullets the Earth element for 180 minutes. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Brute and Plant race by 10%. +Increases Physical Damage against enemies of Wind and Earth elemental by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Brute and Plant race by additional 15%. +Increases Physical Damage against enemies of Wind and Earth elemental by additional 15%. +-------------------------- +When equipped with Warrior Ring: +Increases Physical Damage against enemies of Brute and Plant race by additional 20%. +Increases Physical Damage against enemies of Wind and Earth elemental by additional 20%. +-------------------------- +Type: Revolver +Attack: 60 +Weight: 100 +Element: Earth +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Gunslinger +# +13134# +A high quality revolver made of precious materials. +-------------------------- +HIT -10 +-------------------------- +Random chance to inflict Stun status on the target when dealing physical damage. +-------------------------- +Type: Revolver +Attack: 65 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +13135# +Two revolver with white and red barrels. +-------------------------- +HIT -10 +-------------------------- +Increases Physical Damage against monsters of Angel and Demon race by 20%. +-------------------------- +Type: Revolver +Attack: 70 +Weight: 35 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +13136# +A revolver specially made for Rebellions. +When equipped with Enhanced Time Keeper Armor, will makes wearer's body more agile. +-------------------------- +Increases damage of Fire Dance by 20%. +-------------------------- +For each 10 Base Level: +ATK +6 (up to Base Level 160). +-------------------------- +Refine Level +7: +For each Level of Pharmacy: +ATK +3 +-------------------------- +When equipped with Enhanced Time Keeper Hat, Enhanced Time Keeper Robe, nhanced Time Keeper Manteau, Enhanced Time Keeper Boots: +ASPD +2, +MaxHP and MaxSP +10% + +For every 10 Base VIT: +Decreases damage taken from Neutral elemental attacks by 3%. +(up to Base VIT 100) + +For every 10 Base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +(up to Base AGI 100) + +For every 10 Base DEX: +HIT +3 +(up to Base DEX 100) + +For every 10 Base LUK: +Critical +3 +(up to Base LUK 100) +-------------------------- +Type: Revolver +Attack: 120 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +13137# +A revolver forged from the regrets of people whose died in battlefield. +-------------------------- +Increases Physical Damage against monsters of Demi-Human race by 20%. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Refine Level +5: +Increases Physical Damage against monsters of Demi-Human race by 20%. +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Refine Level +7: +Increases Physical Damage against monsters of Demi-Human race by 20%. +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Refine Level +9: +Random chance to auto-cast Level 1 Rich's Coin when using Coin Flip. +-------------------------- +Indestructible in battle +-------------------------- +Type: Revolver +Attack: 80 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +13138# +A revolver decorated with black roses. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 15%. +-------------------------- +Refine Level +9: +ASPD +1 +-------------------------- +Type: Revolver +Attack: 150 +Weight: 180 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 120 +Rebellion +# +13139# +A water powered gun. +It said by gaining the power of Mizuten it will shows its true power. +-------------------------- +When equipped for 180 minutes will grant its bullet with Water elemental. +-------------------------- +Refine Level +7: +Increases Physical Damage against monsters of Demon race by 10%. +Increases Physical Damage against enemies of Fire elemental by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against monsters of Demon race by 15%. +Increases Physical Damage against enemies of Fire elemental by 15%. +-------------------------- +Type: Revolver +Attack: 60 +Weight: 100 +Element: Water +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Gunslinger +# +13140# +A weapon of unknown origin that contains the magic of the labyrinth. +It is unclear what kind of material it is made of, and it is said that even similar weapons have different performances. +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When equipped with Labyrinth Baphomet Card: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Type: Revolver +Attack: 70 +Weight: 35 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +13141# +A Diva Handgun that has mutated under the influence of the power of the labyrinth. +It is unclear what kind of material it is made of, and it is said that even similar weapons have different performance. +-------------------------- +For each Level of Snake Eye: +Perfect HIT +2 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of inflicted damage as SP. +-------------------------- +Type: Revolver +Attack: 70 +Weight: 35 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +13142# +A handgun where evil spirit dwelling inside. +-------------------------- +For each Refine Level: +ATK +1 +-------------------------- +Type: Revolver +Attack: 40 +Weight: 35 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +13143# +A gun with the power of fire. +It is said that the original performance can be exhibited by regaining the power of \ +... +-------------------------- +Grants bullets the Fire element for 180 minutes. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Insect and Demi-Human race, except Players, by 10%. +Increases Physical Damage against enemies of Water and Earth elemental by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Insect and Demi-Human race, except Players, by additional 15%. +Increases Physical Damage against enemies of Water and Earth elemental by additional 15%. +-------------------------- +Type: Revolver +Attack: 60 +Weight: 100 +Element: Fire +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Gunslinger +# +13144# +A revolver for beginners who have just become a rebellion. +It will show it's true ability when equipped together with Beginner Armor set. +-------------------------- +Increased Attack Speed (Decreases After Attack Delay by 10%.) +-------------------------- +Refine Level +7: +Increases damage of Fire Dance by 15%. +-------------------------- +When equipped with Beginner's Hat, Beginner's Suit, Beginner's Manteau, Beginner's Boots and Beginner's Ring: +For each 10 Base Level: +ATK +3 (up to Base Level 150) +ASPD +1, +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Revolver +Attack: 170 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +13146# +This revolver is mainly used by small groups. +It is said that it is rather heavy for the general public. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +7: +Increases attack speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +Increases damage of Fire Dance by 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by additional 5%. +-------------------------- +Type: Revolver +Attack: 170 +Weight: 140 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +13147# +A revolver received from suspicious weapon dealer Brute. +-------------------------- +Increases Physical Damage against Players by 50%. +-------------------------- +Decreases damage received from Players by 30%. +-------------------------- +For each Refine Level: +Ignores physical defense of every race by 5%. +-------------------------- +Refine Level +8: +Increases Physical Damage against Players by additional 35%. +-------------------------- +Refine Level +9: +Increases Physical Damage against Players by additional 20%. +-------------------------- +Refine Level +10: +MaxHP +15% +MaxSP +15% +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's and moved to the storage. +-------------------------- +Type: Revolver +Attack: 70 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +13150# +A practical firearm with a long gun barrel which increases its range and accuracy. +-------------------------- +Type: Rifle +Attack: 50 +Weight: 50 +Weapon Level: 1 +-------------------------- +Requirement: +Gunslinger +# +13151# +A high performance rifle whose shots have long range and great power. +-------------------------- +HIT +10 +Critical +10 +-------------------------- +Type: Rifle +Attack: 120 +Weight: 70 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 24 +Gunslinger +# +13152# +A high performance rifle whose shots have long range and great power. +-------------------------- +HIT +10 +Critical +10 +-------------------------- +Type: Rifle +Attack: 120 +Weight: 70 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 24 +Gunslinger +# +13153# +An advanced rifle with reinforced explosive power. Just as the dusk marks the day's end, this gun also draws life to a close. +-------------------------- +HIT +10 +Critical +10 +-------------------------- +Type: Rifle +Attack: 150 +Weight: 75 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 56 +Gunslinger +# +13154# +A heavy shotgun whose shots sound like flint striking against steel. +-------------------------- +Deals Splash Damage. +-------------------------- +Type: Shotgun +Attack: 135 +Weight: 90 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 14 +Gunslinger +# +13155# +A dark, stylish shotgun that has been modified so that it rapidly fires bullets from two muzzles to maximize it power. +-------------------------- +Deals Splash Damage. +-------------------------- +Type: Shotgun +Attack: 180 +Weight: 90 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 35 +Gunslinger +# +13156# +As the most powerful, readily available shotgun, this weapon has been nicknamed, \ +. +-------------------------- +Deals Splash Damage. +-------------------------- +Random chance to auto-cast Level 6 Spread Shot when dealing physical damage. +-------------------------- +Type: Shotgun +Attack: 210 +Weight: 100 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 55 +Gunslinger +# +13157# +A Gatling Gun whose name evokes the image of a lonely traveler. +-------------------------- +Type: Gatling Gun +Attack: 50 +Weight: 230 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 55 +Gunslinger +# +13158# +A Gatling Gun imbued with enormous destructive power. +-------------------------- +Critical +10 when attacking Brute monster. +-------------------------- +Type: Gatling Gun +Attack: 75 +Weight: 250 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 68 +Gunslinger +# +13159# +A Gatling Gun imbued with enormous destructive power. +-------------------------- +Critical +10 when attacking Brute monster. +-------------------------- +Type: Gatling Gun +Attack: 75 +Weight: 250 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 68 +Gunslinger +# +13160# +A top of the line, high performance grenade launcher. +-------------------------- +Each physical attack has a low chance of destroying an enemy's armor. +-------------------------- +Type: Grenade Launcher +Attack: 220 +Weight: 120 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 52 +Gunslinger +# +13161# +A top of the line, high performance grenade launcher. +-------------------------- +Each physical attack has a low chance of destroying an enemy's armor. +-------------------------- +Type: Grenade Launcher +Attack: 220 +Weight: 120 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 52 +Gunslinger +# +13162# +A grenade launcher that propels bullets with blazing hellfire. +-------------------------- +Type: Grenade Launcher +Attack: 280 +Weight: 125 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 65 +Gunslinger +# +13163# +A sniping rifle with a lengthened barrel for improved accuracy. +-------------------------- +Critical +20 +-------------------------- +Increases After Attack Delay by 3%. +-------------------------- +Random chance to auto-cast Level 5 Tracking when dealing physical damage. +-------------------------- +Type: Rifle +Attack: 150 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Gunslinger +# +13164# +A sniping rifle with a lengthened barrel for improved accuracy. +-------------------------- +Critical +20 +-------------------------- +Increases After Attack Delay by 3%. +-------------------------- +Random chance to auto-cast Level 5 Tracking when dealing physical damage. +-------------------------- +Type: Rifle +Attack: 150 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Gunslinger +# +13165# +A rifle with a shorter barrel to better suit it for close quarter battles such as in the jungle or indoors. +-------------------------- +Critical +4 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Decreases HIT by a value equal to 1/3 of the character's base DEX. +-------------------------- +Type: Rifle +Attack: 170 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Gunslinger +# +13166# +A rifle with a shorter barrel to better suit it for close quarter battles such as in the jungle or indoors. +-------------------------- +Critical +4 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Decreases HIT by a value equal to 1/3 of the character's base DEX. +-------------------------- +Type: Rifle +Attack: 170 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Gunslinger +# +13167# +The barrel of the original Gate Keeper is made out of pure Oridecon, making it very durable. +-------------------------- +DEX +1 +-------------------------- +Deals Splash Damage. +-------------------------- +Random chance to auto-cast Level 6 Spread Shot when dealing physical damage. +-------------------------- +For each Refine Level: +DEF +1 +-------------------------- +Type: Shotgun +Attack: 200 +Weight: 130 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 70 +Gunslinger +# +13168# +A sawed off shotgun that fires shots more rapidly like a pistol at the cost of reduced accuracy. +-------------------------- +HIT -5 +Increases Attack Speed (Decreases After Attack Delay by 20%). +-------------------------- +Deals Splash Damage. +-------------------------- +Type: Shotgun +Attack: 80 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Gunslinger +# +13169# +A sawed off shotgun that fires shots more rapidly like a pistol at the cost of reduced accuracy. +-------------------------- +HIT -5 +Increases Attack Speed (Decreases After Attack Delay by 20%). +-------------------------- +Deals Splash Damage. +-------------------------- +Type: Shotgun +Attack: 80 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Gunslinger +# +13170# +A highly efficient rifle with an ornate barrel that is capable of firing penetrating blasts, but takes a long time to reload. +-------------------------- +HIT +20 +Critical +50 +Increases After Attack Delay by 5%. +-------------------------- +Type: Rifle +Attack: 138 +Weight: 77 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Gunslinger +# +13171# +A Rifle made for short and medium ranged battles against Demihuman, that enables a reduction to the targeting delay; +as it is designed to limit the trembling of the shooter's hands. +-------------------------- +DEX +2 +HIT +10 +Critical +10 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 75%. +-------------------------- +Ignores physical defense from Demi-Human race by 20%. +-------------------------- +Decreases Variable Casting Time of Tracking by 25%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Rifle +Attack: 50 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Gunslinger +# +13172# +A specialized Gatling Gun made for battles against Demihuman; occasionally, it shoots high-powered bullets. +-------------------------- +DEX +2 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 35%. +-------------------------- +Ignores physical defense from Demi-Human race by 20%. +-------------------------- +Has a chance of adding 80 ATK for 6 seconds, +but due to the recoil will drain 120 HP every second. +-------------------------- +Indestructible in battle +-------------------------- +Type: Gatling Gun +Attack: 80 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Gunslinger +# +13173# +A Shotgun that has a great attack in short ranged battles against Demihuman. +It shows a wide variety of strength betweeneach attack. +-------------------------- +DEX +2 +-------------------------- +Deals Splash Damage. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 55%. +-------------------------- +Ignores physical defense from Demi-Human race by 20%. +-------------------------- +Has a chance of adding 80 ATK for 6 seconds, +but drains 100 HP every second. +-------------------------- +Indestructible in battle +-------------------------- +Type: Shotgun +Attack: 100 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Gunslinger +# +13174# +A Grenade Launcher that shows great fire-power in battles against Demihuman. +-------------------------- +DEX +2 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 35%. +-------------------------- +Ignores physical defense from Demi-Human race by 20%. +-------------------------- +Has a chance of adding 300 ATK for 9 seconds, +but drains 120 HP every second. +-------------------------- +Indestructible in battle +-------------------------- +Type: Grenade Launcher +Attack: 300 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Gunslinger +# +13175# +Rental Item +A masterpiece that brings the power of the Rifles to the max. This beautiful gun steals the heart of the Gunslingers and its high performance will put a hole through the heart of the enemy. Only downside is that, due to the fact it is lever-action oriented, the Attack Speed is somewhat poor. +-------------------------- +HIT +20 +Critical +50 +-------------------------- +ATK +40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Rifle +Attack: 170 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Gunslinger +# +13176# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 75%. +Ignores 20% of physical defense of Demi-Human race. +Increases damage of Triple Action by 30%. +-------------------------- +Refine Level +6: +Ignores physical defense of Demi-Human race by additional 5%. +[Slaughter] Lv 1 (Damage bonus of Slaughter increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +Increases Variable Casting Time of Tracking skill by 25%. +Increases damage of Tracking by 3% per Refine Level. +-------------------------- +Type: Rifle +Attack: 90 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Gunslinger +# +13177# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 35%. +Ignores 20% of physical defense of Demi-Human race. +Increases damage of Triple Action by 30%. +-------------------------- +Refine Level +6: +Ignores physical defense of Demi-Human race by additional 5%. +[Slaughter] Lv 1 (Damage bonus of Slaughter increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all targets by % based on Refine Level. +-------------------------- +Type: Gatling Gun +Attack: 90 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Gunslinger +# +13178# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 55%. +Ignores 20% physical defense of Demi-Human race. +Deals Splash Damage. +Increases damage of Triple Action by 30%. +-------------------------- +Indestructible in battle +-------------------------- +***Additional Weapon Refining Level Option*** +Refine Level +6: +Ignores physical defense of Demi-Human race monster by additional 5%. +[Slaughter] Lv 1 (Damage bonus of Slaughter increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +Increases damage of Spread Attack by 2% per Refine Level. +Has a chance of stunning while using Spread Attack. +-------------------------- +Type: Shotgun +Attack: 110 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Gunslinger +# +13179# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage against enemies of on Demi-Human race by 35%. +Ignores 20% of physical defense of Demi-Human race. +Increases damage of Triple Action by 30%. +-------------------------- +***Additional Weapon Refining Level Option*** +Refine Level +6: +Ignores physical defense of Demi-Human race by addtiional 5% +[Slaughter] Lv 1 (Damage bonus of Slaughter increases up to the Refine Level 14.) +-------------------------- +Refine Level +9: +Increases damage of Ground Drift by 2% per Refine Level. +During normal attacks and the weapon can awaken, which increases your Attack Speed for 20 seconds (Decreases After Attack Delay by 20%). +-------------------------- +Type: Grenade Launcher +Attack: 330 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Gunslinger +# +13180# +Small fire arm adjusted for range and accuracy. Actually easy to handle than a pistol. +-------------------------- +Type: Rifle +Attack: 50 +Weight: 50 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Gunslinger +# +13181# +A shit gun adjusted for beginners. Still couldn't avoid the recoil from shooting. +-------------------------- +Type: Shotgun +Attack: 80 +Weight: 100 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Gunslinger +# +13182# +A gatling gun for beginners. Easy to handle, but fairly heavy weight. +-------------------------- +Type: Gatling Gun +Attack: 40 +Weight: 150 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Gunslinger +# +13183# +A granade launcher made for beginners. Only for beginners. +-------------------------- +Type: Granade Launcher +Attack: 40 +Weight: 150 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Gunslinger +# +13184# +Rental Item +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Random chance to inflict Silence status when dealing physical damage. +-------------------------- +Type: Rifle +Attack: 80 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Gunslinger +# +13185# +Rental Item +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Random chance to inflict Stun status when dealing physical damage. +-------------------------- +Type: Gatling Gun +Attack: 100 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Gunslinger +# +13186# +Rental Item +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Random chance to inflict Poison status when dealing physical damage. +-------------------------- +Type: Shotgun +Attack: 100 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Gunslinger +# +13187# +Rental Item +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Random chance to inflict Blind status when dealing physical damage. +-------------------------- +Type: Grenade Launcher +Attack: 100 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Gunslinger +# +13188# +A rifle designed for advanced user. +-------------------------- +HIT +10 +Critical +20 +-------------------------- +Quick Draw Shot damage +50 +-------------------------- +Type: Rifle +Attack: 150 +Weight: 110 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 105 +Rebellion +# +13189# +A Medium size assault rifle with firing power and accuracy. +-------------------------- +HIT +20 +Critical +30 +-------------------------- +Type: Rifle +Attack: 240 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 105 +Rebellion +# +13190# +This modified rifle shoots specially-treated bullets that causes the Delay effect with damage. +-------------------------- +HIT +10 +Critical +15 +-------------------------- +Random chance to auto-cast Level 1 Decrease Agility on the target when dealing physical damage. +-------------------------- +Type: Rifle +Attack: 260 +Weight: 130 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 140 +Rebellion +# +13191# +A powerful rifle. +-------------------------- +HIT +20 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Increases damage of Hammer of God by 25%. +-------------------------- +Type: Rifle +Attack: 220 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Rebellion +# +13192# +A shotgun whose devastating firepower is dwarfed by its miserable Accuracy. +-------------------------- +Attack range +5 +HIT -50 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Type: Shotgun +Attack: 400 +Weight: 200 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 108 +Rebellion +# +13193# +A brother to the Shotgun Rolling Stone, this gun is equipped with a special device for additional Lightning damage. +-------------------------- +HIT -10 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Random chance to auto-cast Level 5 Thunder Storm on the enemy when dealing physical damage. +-------------------------- +Type: Shotgun +Attack: 280 +Weight: 180 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 120 +Rebellion +# +13194# +This semi-auto shotgun provides an enhanced rate of fire at the cost of bullet damage. +-------------------------- +HIT -25 +Increases Attack Speed (Decreases After Attack Delay by 25%). +-------------------------- +Type: Shotgun +Attack: 250 +Weight: 140 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 140 +Rebellion +# +13195# +This modified rifle shoots specially treated bullets that causes the Delay effect with damage. +-------------------------- +HIT +10 +Critical +15 +-------------------------- +Random chance to auto-cast Level 1 Decrease Agility on the target when dealing physical damage. +-------------------------- +Type: Rifle +Attack: 260 +Weight: 130 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 140 +Rebellion +# +13196# +This semi-auto shotgun provides an enhanced rate of fire at the cost of bullet damage. +-------------------------- +HIT -25 +Increases Attack Speed (Decreases After Attack Delay by 25%). +-------------------------- +Type: Shotgun +Attack: 250 +Weight: 140 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 140 +Rebellion +# +13197# +A modified version of mass-produced gatling gun. It's quite useful considering its size. +-------------------------- +Type: Gatling Gun +Attack: 220 +Weight: 250 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 106 +Rebellion +# +13198# +This powerful Gatling gun has ability to shoot a volley of bullets in a fraction of a second. +-------------------------- +HIT -25 +Critical +10 +-------------------------- +Increases Ranged Physical Damage by 30%. +-------------------------- +Type: Gatling Gun +Attack: 250 +Weight: 250 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 140 +Rebellion +# +13199# +This powerful Gatling gun has ability to shoot a volley of bullets in a fraction of a second. +-------------------------- +HIT -25 +Critical +10 +-------------------------- +Increases Ranged Physical Damage by 30%. +-------------------------- +Type: Gatling Gun +Attack: 250 +Weight: 250 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 140 +Rebellion +# +13200# +A small metal bullet that can be fired from a gun to damage enemies. +-------------------------- +Type: Ammo +Attack: 25 +Weight: 0.2 +Element: Neutral +# +13201# +A small silver bullet imbued with holy power. +Can't be exchanged for Ammo Case. +-------------------------- +Type: Ammo +Attack: 15 +Weight: 0.2 +Element: Holy +# +13202# +A bloody red bullet that may cause the Bleeding effect on the target by a low chance. +Can't be exchanged for Ammo Case. +-------------------------- +Type: Ammo +Attack: 30 +Weight: 0.2 +Element: Neutral +# +13203# +A grenade launcher bullet imbued with the Fire element. +Can't be exchanged for Ammo Case. +-------------------------- +Type: Ammo +Attack: 50 +Weight: 0.5 +Element: Fire +# +13204# +A grenade launcher bullet imbued with the Wind element. +Can't be exchanged for Ammo Case. +-------------------------- +Type: Ammo +Attack: 50 +Weight: 0.5 +Element: Wind +# +13205# +A grenade launcher bullet that contains deadly poison. +Can't be exchanged for Ammo Case. +-------------------------- +Random chance to inflict Poison status on the target. +-------------------------- +Type: Ammo +Attack: 50 +Weight: 0.5 +Element: Poison +# +13206# +A grenade launcher bullet imbued with the Shadow element. +Can't be exchanged for Ammo Case. +-------------------------- +Random chance to inflict Blind status on the target. +-------------------------- +Type: Ammo +Attack: 50 +Weight: 0.5 +Element: Shadow +# +13207# +A grenade launcher bullet imbued with the Water element. +Can't be exchanged for Ammo Case. +-------------------------- +Type: Ammo +Attack: 50 +Weight: 0.5 +Element: Water +# +13208# +A crustacean and an arthropod type that's rock hard. +-------------------------- +Random chance to inflict Stun status on the target. +-------------------------- +Type: Ammo +Attack: 50 +Weight: 0.5 +Element: Neutral +# +13210# +A bullet made for the Slug Shot skill. It can be used as normal shot but does not give high damage. +It's considerably light as a slug bullet but gives low damage. +-------------------------- +Type: Ammo +Attack: 30 +Weight: 25 +Element: Neutral +# +13211# +A bullet made for the Slug Shot skill. It can be used as normal shot but does not give high damage. +-------------------------- +Type: Ammo +Attack: 30 +Weight: 50 +Element: Neutral +# +13212# +A bullet made for the Slug Shot skill. It can be used as a normal shot but does not give high damage. +Since this is for Slug Shot, it's heavy but you can expect high damage. +-------------------------- +Type: Ammo +Attack: 30 +Weight: 75 +Element: Neutral +# +13213# +A bullet made for the Slug Shot skill. It can be used as normal shot but does not give high damage. +It's easy to use for Slug Shot but heavy to carry and expensive. +-------------------------- +Type: Ammo +Attack: 30 +Weight: 100 +Element: Neutral +# +13214# +A bullet made for the Slug Shot skill. It can be used as normal shot but does not give high damage. +You might wonder what it is made of, because it's too expensive and heavy. +-------------------------- +Type: Ammo +Attack: 30 +Weight: 120 +Element: Neutral +# +13215# +This shell can penetrate even the thickest armor. +-------------------------- +Type: Ammo +Attack: 50 +Weight: 0.2 +Element: Neutral +-------------------------- +Requirement: +Base Level 100 +# +13216# +A bullet that is endowed with the power of Fire. +-------------------------- +Type: Ammo +Attack: 40 +Weight: 0.2 +Element: Fire +-------------------------- +Requirement: +Base Level 100 +# +13217# +A bullet that is endowed with the power of Ice. +-------------------------- +Type: Ammo +Attack: 40 +Weight: 0.2 +Element: Water +-------------------------- +Requirement: +Base Level 100 +# +13218# +A bullet that is endowed with the power of Lightning. +-------------------------- +Type: Ammo +Attack: 40 +Weight: 0.2 +Element: Wind +-------------------------- +Requirement: +Base Level 100 +# +13219# +A bullet that is endowed with the power of Earth. +-------------------------- +Type: Ammo +Attack: 40 +Weight: 0.2 +Element: Earth +-------------------------- +Requirement: +Base Level 100 +# +13220# +A silver bullet that is dipped in holy water. +-------------------------- +Type: Ammo +Attack: 40 +Weight: 0.2 +Element: Holy +-------------------------- +Requirement: +Base Level 100 +# +13221# +Silver bullet that contain a holy spirit. +-------------------------- +Type: Ammo +Attack: 15 +Weight: 0.2 +Element: Holy +# +13222# +A bloody red bullet that may cause Bleeding status on the target by a low chance. +-------------------------- +Type: Ammo +Attack: 30 +Weight: 0.1 +Element: Neutral +# +13223# +An exclusive grenade launcher bullet imbued with the Fire element. +-------------------------- +Type: Ammo +Attack: 50 +Weight: 0.5 +Element: Fire +# +13224# +An exclusive grenade launcher bullet imbued with the Wind element. +-------------------------- +Type: Ammo +Attack: 50 +Weight: 0.5 +Element: Wind +# +13225# +An exclusive grenade launcher bullet imbued with the Poison element. +Random chance to inflict Poison status. +-------------------------- +Type: Ammo +Attack: 50 +Weight: 0.5 +Element: Poison +# +13226# +An exclusive grenade launcher bullet imbued with the Shadow element. +-------------------------- +Random chance to inflict Blind status. +-------------------------- +Type: Ammo +Attack: 50 +Weight: 0.5 +Element: Shadow +# +13227# +An exclusive grenade launcher bullet imbued with the Water element. +-------------------------- +Random chance to inflict Freezing status. +-------------------------- +Type: Ammo +Attack: 50 +Weight: 0.5 +Element: Water +# +13228# +A bullet imbued with Fire element. +-------------------------- +Type: Ammo +Attack: 20 +Weight: 0.2 +Element: Fire +# +13229# +A bullet imbued with wind element. +-------------------------- +Type: Ammo +Attack: 20 +Weight: 0.2 +Element: Wind +# +13230# +A bullet imbued with water element. +-------------------------- +Type: Ammo +Attack: 20 +Weight: 0.2 +Element: Water +# +13231# +A bullet imbued with Poison element. +-------------------------- +Random chance to inflict Poison status. +-------------------------- +Type: Ammo +Attack: 20 +Weight: 0.2 +Element: Poison +# +13232# +A bullet imbued with Shadow element. +-------------------------- +Random chance to inflict Blind status. +-------------------------- +Type: Ammo +Attack: 20 +Weight: 0.2 +Element: Shadow +# +13250# +A cross shaped dagger that is small enough to conceal in your hand. +-------------------------- +Type: Shuriken +Attack: 10 +Weight: 0.5 +Element: Neutral +# +13251# +A shuriken that is rumored to show its true power during a rainstorm. +-------------------------- +Type: Shuriken +Attack: 30 +Weight: 0.5 +Element: Neutral +-------------------------- +Requirement: +Base Level 20 +# +13252# +A shuriken that can be thrown at the speed of light. +-------------------------- +Type: Shuriken +Attack: 45 +Weight: 0.5 +Element: Neutral +-------------------------- +Requirement: +Base Level 40 +# +13253# +A sharp shuriken that is surprisingly as thin as a leaf. +-------------------------- +Type: Shuriken +Attack: 70 +Weight: 0.5 +Element: Neutral +-------------------------- +Requirement: +Base Level 60 +# +13254# +A dreadful shuriken with thorn like barbs that hook into its target, making them painful to pull out. +-------------------------- +Type: Shuriken +Attack: 100 +Weight: 0.5 +Element: Neutral +-------------------------- +Requirement: +Base Level 80 +# +13255# +A kunai imbued with freezing cold. +-------------------------- +Type: Kunai +Attack: 30 +Weight: 2 +Element: Water +# +13256# +An Earth elemental kunai that inflicts blunt trauma upon the targeted enemies. +-------------------------- +Type: Kunai +Attack: 30 +Weight: 2 +Element: Earth +# +13257# +A wind elemental kunai that is especially sharp. +-------------------------- +Type: Kunai +Attack: 30 +Weight: 2 +Element: Wind +# +13258# +An explosive kunai that will inflict splashed damage around its target. +-------------------------- +Type: Kunai +Attack: 30 +Weight: 2 +Element: Fire +# +13259# +A kunai coated with deadly poison. +-------------------------- +Random chance to inflict Poison status on the target when dealing Ranged Physical Damages. +-------------------------- +Type: Kunai +Attack: 30 +Weight: 2 +Element: Poison +# +13260# +A small apple shaped bomb. Though it has weak attack power, it has long range. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 0.1 +Element: Neutral +# +13261# +A bomb which is made of the hard part of a coconut. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 0.1 +Element: Neutral +# +13262# +A bomb which uses sweet and sticky juice of a melon. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 0.1 +Element: Neutral +# +13263# +Hard peel of pineapple that attacks wide range. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 0.1 +Element: Neutral +# +13264# +Use this banana peel bomb to make your enemies fall. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 0.1 +Element: Neutral +# +13265# +A black lump that can used as a projectile. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 5 +Element: Neutral +# +13266# +A slightly larger black lump that can used as a projectile. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 5 +Element: Neutral +# +13267# +A hardened black lump that can kill when thrown at someone. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 5 +Element: Neutral +# +13268# +Mysterious unknown powder. You don't know what harm it will cause if thrown at someone. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 1 +Element: Neutral +# +13269# +A Refined Boost500 for throwing. Increases attack speed. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 1 +Element: Neutral +# +13270# +Slightly remodeled Full SwingK enabled for throwing. Increases ATK. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 5 +Element: Neutral +# +13271# +Slightly remodeled Mana Plus enabled for throwing. Increases Magic attack. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 5 +Element: Neutral +# +13272# +Slightly remodeled Cure Free enabled for throwing. Recovers several kinds of abnormal statuses. Recovers a small amount of HP. +(Silence, Bleeding, Poison, Curse, Reverse Orcish, Change Undead) +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 5 +Element: Neutral +# +13273# +A remodeled Muramura M for throwing. Increases MaxHP. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 1 +Element: Neutral +# +13274# +A remodeled Falmons F for throwing. Increases max SP. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 5 +Element: Neutral +# +13275# +Slightly remodeled HP Increase potion(S) enabled for throwing. MaxHP slightly increased for 500 sec, HP recovery +1%. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 2 +Element: Neutral +# +13276# +Slightly remodeled HP Increase potion(M) enabled for throwing. MaxHP moderately increased for 500 sec, HP recovery +2%. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 4 +Element: Neutral +# +13277# +Slightly remodeled HP Increase potion(L) enabled for throwing. MaxHP greatly increased for 500 sec, HP recovery +5%. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 8 +Element: Neutral +# +13278# +Slightly remodeled SP Increase Potion(S) enabled for throwing. MaxSP slightly increased for 500 sec, SP recovery +2%. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 2 +Element: Neutral +# +13279# +Slightly remodeled SP Increase Potion(M) enabled for throwing. MaxSP increased for 500 sec, SP recovery +4%. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 4 +Element: Neutral +# +13280# +Slightly remodeled SP Increase Potion(L) enabled for throwing. MaxSP greatly increased for 500 sec, SP recovery +8%. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 8 +Element: Neutral +# +13281# +Slightly remodeled Enriched White Potion enabled for throwing. +Recovers a large amount of HP, Increases HP Recovery Rate by 20%. Duration: 500 seconds. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 7 +Element: Neutral +# +13282# +Slightly remodeled Vitata 500 enabled for throwing. +Recovers SP and Increases SP recovery speed by 20%, Increases MaxSP by 5%. Duration: 500 seconds. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 5 +Element: Neutral +# +13283# +Slightly remodeled Enriched Cell Juice enabled for throwing. +Increases ASPD. Duration: 500 seconds. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 5 +Element: Neutral +# +13284# +Slightly remodeled Savage BBQ enabled for throwing. +Increases Str. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 5 +Element: Neutral +# +13285# +Slightly remodeled Warg Blood Cocktail enabled for throwing. +Increases Int. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 5 +Element: Neutral +# +13286# +Slightly remodeled Minor Brisket enabled for throwing that increases Vit. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 5 +Element: Neutral +# +13287# +Slightly remodeled Siroma Ice Tea enabled for throwing that increases Dex. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 5 +Element: Neutral +# +13288# +Slightly remodeled Drosera Herb Stew enabled for throwing that increases Agi. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 5 +Element: Neutral +# +13289# +Slightly remodeled Petite Tail Noodle enabled for throwing that increases Luk. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 5 +Element: Neutral +# +13290# +Slightly remodeled Black lump enabled for throwing that decreases all Statuses. +-------------------------- +Type: Sling Item +Attack: 0 +Weight: 5 +Element: Neutral +# +13291# +Echinodermata , Starfish. it looks like a star. It is stiff, so it might can used as a Shuriken. +GIves Stun effect with certain rate when attacking +-------------------------- +Type: Shuriken +Attack: 110 +Weight: 0.5 +Element: Neutral +-------------------------- +Requirement: +Base Level 50 +# +13292# +A squid which dried for so long. Even possible to use for Kunai. +GIves Blind with certain rate +-------------------------- +Type: Kunai +Attack: 50 +Weight: 2 +Element: Neutral +# +13293# +A flying fish. A rumor that it flies with big fin. it is frozen, so even possible to use for Kunai. +Gives scar with certain rate. +-------------------------- +Type: Kunai +Attack: 50 +Weight: 2 +Element: Neutral +# +13294# +Special Kunai designed to hold gunpowder in the handle for explosion on the target and surroundings. Careful handling is required! +-------------------------- +Type: Kunai +Attack: 50 +Weight: 3 +Element: Neutral +Level Limit: 100 +# +13295# +Beginner's Shuriken made for easier handling. +-------------------------- +Type: Shuriken +Attack: 5 +Weight: 0.5 +Element: Neutral +# +13300# +A famous Huuma Ninja weapon that is shaped like a wing. +-------------------------- +AGI -1 +DEX -2 +-------------------------- +Type: Huuma Shuriken +Attack: 150 +Weight: 300 +Element: Wind +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 65 +Ninja +# +13301# +A heavy, giant shuriken shaped like a bladed wheel. +-------------------------- +Random chance to inflict Bleeding status on the target when dealing physical damage. +-------------------------- +Type: Huuma Shuriken +Attack: 50 +Weight: 250 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 42 +Ninja +# +13302# +A heavy, giant shuriken shaped like a bladed wheel. +-------------------------- +Random chance to inflict Bleeding status on the target when dealing physical damage. +-------------------------- +Type: Huuma Shuriken +Attack: 50 +Weight: 250 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 42 +Ninja +# +13303# +A Fire element Huuma shuriken that sparks like a firecracker when it strikes enemies. +-------------------------- +DEX -2 +-------------------------- +Random chance to auto-cast Level 5 Fire Ball when dealing melee physical attacks. +-------------------------- +Type: Huuma Shuriken +Attack: 185 +Weight: 150 +Element: Fire +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 55 +Ninja +# +13304# +The Huuma Calm Mind enables the wearer into remain collected in any tense situation. +-------------------------- +Increases damage of Throw Huuma Shuriken by 30%. +-------------------------- +Protects from skill cast interruption. +-------------------------- +Type: Huuma Shuriken +Attack: 112 +Weight: 155 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Ninja +# +13305# +Huuma Shuriken that holds great strength and brings extraordinary power in battles against Demihuman. +-------------------------- +STR +2 +DEX +1 +-------------------------- +Increases Physical Damage against monsters of Demi-Human race by 95%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Huuma Shuriken +Attack: 55 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Ninja +# +13306# +Huuma Shuriken that holds great strength and brings extraordinary power in battles against Demihuman. +-------------------------- +STR +2 +DEX +1 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 95%. +-------------------------- +Has a chance of increasing Attack Strength to Throw Huuma Shuriken and Killing Stroke by 100% for 10 seconds. +-------------------------- +Indestructible in battle +-------------------------- +Type: Huuma Shuriken +Attack: 55 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Ninja +# +13307# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage to Demi-Human race by 95%. +Ignores physical defense from Demi-Human race by 20%. +MATK +90 +Increases damage by 100% of [Throw Huuma Shuriken] and [Killing Strike] for 10 seconds. when attacking and synchronizing the weapon by 5% +Indestructible in battle +***Additional Weapon Refining Level Option*** ++6 Refining +Ignores Defense of Demi-Human race monster +5% +[Slaughter] Lv 2(Damage bonus of Destruction increases up to the Refine Level 14.) ++9 Refining +When using [Killing Strike], auto-spell Level 10 Heal. +When using [Throw Huuma Shuriken], has a chance of inflicting consistent +-------------------------- +Type: Huuma Shuriken +Attack: 55 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Ninja +# +13308# +A Fire element Huuma shuriken that sparks like a firecracker when it strikes enemies. +-------------------------- +DEX +2 +-------------------------- +Random chance to auto-cast Level 5 Fire Ball on the enemy when attacking. +-------------------------- +Type: Huuma Shuriken +Attack: 230 +Weight: 0 +Element: Fire +Weapon Level: 4 +-------------------------- +Requirement: +Ninja +# +13309# +Rental Item +A heavy, giant shuriken shaped like a bladed wheel. +-------------------------- +External Bleeding an enemy when you attack. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 80%. +-------------------------- +Type: Huuma Shuriken +Attack: 99 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Ninja +# +13310# +A Huuma Shuriken made by the Eden Group. It is suitable for experienced Ninjas only. +-------------------------- +MATK +50 +-------------------------- +Type: Huuma Shuriken +Attack: 150 +Weight: 0 +Weapon Level: 3 +Refineable: No +Can be enchanted by: +Weapons Expert BKmoc_para01,112,79,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Ninja +# +13311# +Huuma Shuriken recently released by the Ninja Association. +Carries a nickname of Shadow for the special metal it was made from which doesn't reflect moonlight. +-------------------------- +STR +3 +-------------------------- +Type: Huuma Shuriken +Attack: 170 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 99 +Ninja +# +13312# +Prototype Huuma Shuriken being prepared by the Ninja Association. +Still at the early stages of development and will have to wait a while for actual commercial sales to start. +-------------------------- +Type: Huuma Shuriken +Attack: 0 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 99 +Ninja +# +13313# +Shuriken named after fluttering petals. They say it feels like you are surrounded by a cloud of petals when using this weapon. +-------------------------- +MATK +50 +-------------------------- +Increases damage of Swirling Petal by 20%. +-------------------------- +Type: Huuma Shuriken +Attack: 150 +Weight: 150 +Weapon Level: 3 +Can be enchanted by: +Artisan Teneque_ng,75,20,0,100,0,0 +-------------------------- +Requirement: +Base Level 110 +Ninja +# +13314# +Shuriken imbued with Water elemental. Snowstorm occurs when in use. +-------------------------- +MATK +50 +-------------------------- +Random chance to auto-cast Level 1 Snow Flake Draft on the target when dealing melee physical attack. +-------------------------- +Type: Huuma Shuriken +Attack: 200 +Weight: 150 +Element: Water +Weapon Level: 4 +Can be enchanted by: +Artisan Teneque_ng,75,20,0,100,0,0 +-------------------------- +Requirement: +Base Level 110 +Ninja +# +13315# +Shuriken with Wind elemental. Blinds enemy's sight with rain and wind. +-------------------------- +MATK +50 +-------------------------- +Random chance to auto-cast Level 1 Lightning Jolt on the target when dealing melee physical attack. +-------------------------- +Random chance to inflict Blind status on the target when dealing physical damage. +-------------------------- +Type: Huuma Shuriken +Attack: 200 +Weight: 150 +Element: Wind +Weapon Level: 4 +Can be enchanted by: +Artisan Teneque_ng,75,20,0,100,0,0 +-------------------------- +Requirement: +Base Level 110 +Ninja +# +13316# +Shuriken coated with Oridecon and Gold mixed at a perfect ratio. +-------------------------- +For each Refine Level: +ATK +10 +MATK +5 +Increases Ranged Physical Damage by 1%. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Indestructible in battle +-------------------------- +Type: Huuma Shuriken +Attack: 55 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Ninja +# +13317# +Rental Item +MATK +100 +-------------------------- +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Random chance to inflict Bleeding status when dealing physical damage. +-------------------------- +Indestructible in battle +-------------------------- +Type: Huuma Shuriken +Attack: 80 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Ninja +# +13318# +A wind demon shuriken that has the fire attribute. +-------------------------- +MATK +25 +-------------------------- +For each Refine Level: +MATK +5 +-------------------------- +Refine Level +7: +MATK +20 +-------------------------- +Refine Level +10: +MATK +30 +-------------------------- +When equipped with Burning Tunic: +MATK +50 + +Refine Level of Burning Tunic is +5: +Increases the chance to auto-cast Flaming Petals. + +Refine Level of Burning Tunic is +7: +Increases the chance to auto-cast Flaming Petals further. + +Refine Level of Burning Tunic is +10: +Increases the chance to auto-cast Flaming Petals even further. +-------------------------- +Type: Huuma Shuriken +Attack: 120 +Weight: 100 +Element: Fire +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Ninja +# +13319# +A wind demon shuriken that has a wind attribute. +-------------------------- +MATK +25 +-------------------------- +For each Refine Level: +MATK +5 +-------------------------- +Refine Level +7: +MATK +20 +-------------------------- +Refine Level +10: +MATK +30 +-------------------------- +When equipped with Gale Tunic: +MATK +50 + +Refine Level of Gale Tunic is +5: +Increases the chance to auto-cast Wind Blade. + +Refine Level of Gale Tunic is +7: +Increases the chance to auto-cast Wind Blade further. + +Refine Level of Gale Tunic is +10: +Increases the chance to auto-cast Wind Blade even further. +-------------------------- +Type: Huuma Shuriken +Attack: 120 +Weight: 100 +Element: Wind +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Ninja +# +13320# +A wind demon shuriken that has a water attribute. +-------------------------- +MATK +25 +-------------------------- +For each Refine Level: +MATK +5 +-------------------------- +Refine Level +7: +MATK +20 +-------------------------- +Refine Level +10: +MATK +30 +-------------------------- +When equipped with Chilly Tunic: +MATK +50 + +Refine Level of Chilly Tunic is +5: +Increases the chance to auto-cast Freezing Spear. + +Refine Level of Chilly Tunic is +7: +Increases the chance to auto-cast Freezing Spear further. + +Refine Level of Chilly Tunic is +10: +Increases the chance to auto-cast Freezing Spear even further. +-------------------------- +Type: Huuma Shuriken +Attack: 120 +Weight: 100 +Element: Water +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Ninja +# +13322# +Giant shuriken with steel cone that is added to enhance the ability to throw, made of metal. +-------------------------- +For each Refine Level: +ATK +5 +MATK +3 +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 1%. +-------------------------- +For each 10 Base Level above 20: +ATK +3 +(Applied upto base lv 120) +-------------------------- +Indestructible in battle +-------------------------- +Type: Huuma Shuriken +Attack: 50 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Ninja +# +13323# +This weapon contains a strange energy. +I feel that one of its benefits were sealed with a high cost. +-------------------------- +MATK +40 +-------------------------- +Indestructible in battle +-------------------------- +Type: Huuma Shuriken +Attack: 150 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Ninja +# +13324# +A wind demon shuriken that has the fire attribute. +-------------------------- +MATK +25 +-------------------------- +For each Refine Level: +MATK +5 +-------------------------- +Refine Level +7: +MATK +20 +-------------------------- +Refine Level +10: +MATK +30 +-------------------------- +When equipped with Burning Tunic: +MATK +50 + +Refine Level of Burning Tunic is +5: +Increases the chance to auto-cast Flaming Petals. + +Refine Level of Burning Tunic is +7: +Increases the chance to auto-cast Flaming Petals further. + +Refine Level of Burning Tunic is +10: +Increases the chance to auto-cast Flaming Petals even further. +-------------------------- +Type: Huuma Shuriken +Attack: 120 +Weight: 100 +Element: Fire +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Ninja +# +13325# +A wind demon shuriken that has a wind attribute. +-------------------------- +MATK +25 +-------------------------- +For each Refine Level: +MATK +5 +-------------------------- +Refine Level +7: +MATK +20 +-------------------------- +Refine Level +10: +MATK +30 +-------------------------- +When equipped with Gale Tunic: +MATK +50 + +Refine Level of Gale Tunic is +5: +Increases the chance to auto-cast Wind Blade. + +Refine Level of Gale Tunic is +7: +Increases the chance to auto-cast Wind Blade further. + +Refine Level of Gale Tunic is +10: +Increases the chance to auto-cast Wind Blade even further. +-------------------------- +Type: Huuma Shuriken +Attack: 120 +Weight: 100 +Element: Wind +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Ninja +# +13326# +A wind demon shuriken that has a water attribute. +-------------------------- +MATK +25 +-------------------------- +For each Refine Level: +MATK +5 +-------------------------- +Refine Level +7: +MATK +20 +-------------------------- +Refine Level +10: +MATK +30 +-------------------------- +When equipped with Chilly Tunic: +MATK +50 + +Refine Level of Chilly Tunic is +5: +Increases the chance to auto-cast Freezing Spear. + +Refine Level of Chilly Tunic is +7: +Increases the chance to auto-cast Freezing Spear further. + +Refine Level of Chilly Tunic is +10: +Increases the chance to auto-cast Freezing Spear even further. +-------------------------- +Type: Huuma Shuriken +Attack: 120 +Weight: 100 +Element: Water +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 36 +Ninja +# +13327# +Huuma shuriken that emitting red aura. +-------------------------- +ATK increased by (RefineLv*RefineLv), up to +15 Refine Level. +-------------------------- +MATK increased by (RefineLv*RefineLv)/2, up to +15 Refine Level. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Indestructible in battle +-------------------------- +Type: Huuma Shuriken +Attack: 100 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Ninja +# +13328# +Huuma Shuriken imbued with Vicious Mind. +-------------------------- +MATK +50 +-------------------------- +Increases ATK by (Refinelv*Refinelv). +(up to +15 Refine Level) +-------------------------- +Increases MATK by (Refinelv*Refinelv)/2. +(up to +15 Refine Level) +-------------------------- +Indestructible in battle +-------------------------- +Type: Huuma Shuriken +Attack: 150 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 160 +Ninja +# +13329# +A certified kingdom equipment for adventurer. +-------------------------- +Increases ATK by (Refine*Refine*1.25) +-------------------------- +Type: Huuma Shuriken +Attack: 95 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Ninja +# +13330# +A metallic Huuma Shuriken made of oridecon created for experienced adventurers. +-------------------------- +Increases damage of Throw Huuma Shuriken by 10%. +-------------------------- +For each Refine Level: +ATK +7, MATK +5 +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 2%. +-------------------------- +For each 10 Base Level: +ATK +5, MATK +3 +(Applies up to Base Level 150) +-------------------------- +Type: Huuma Shuriken +Attack: 75 +Weight: 0 +Weapon Level: 3 +Enchantable: Yes +Enchanter: [Jumping Enchant Specialist]prontera,151,187,0,100,0,0 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +13331# +A Huuma Shuriken forged from the regrets of people whose died in battlefield. +-------------------------- +MATK +90 +-------------------------- +Increases Physical Damage against monsters of Demi-Human race by 40%. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Refine Level +5: +Increases Physical Damage against monsters of Demi-Human race by 30%. +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Refine Level +7: +Increases Physical Damage against monsters of Demi-Human race by 30%. +Decreases damage taken from Demi-Human race by 10%. +Level 2 Slaughter. +-------------------------- +Refine Level +9: +Increases damage of Throw Huuma Shuriken by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Huuma Shuriken +Attack: 55 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +13332# +A Huuma Shuriken used by ninja hired by gold mine owner. +-------------------------- +Increases damage of Swirling Petal by 20%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 10%. +-------------------------- +Refine Level +9: +Increases damage of Swirling Petal by additional 20%. +-------------------------- +Type: Huuma Shuriken +Attack: 250 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +13333# +A weapon of unknown origin that contains the magic of the labyrinth. +It is unclear what kind of material it is made of, and it is said that even similar weapons have different performances. +-------------------------- +MATK +160 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Baphomet Card: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Type: Huuma Shuriken +Attack: 150 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Kagerou and Oboro +# +13334# +A Diva Huuma Shuriken that has mutated under the influence of the power of the labyrinth. +It is unclear what kind of material it is made of, and it is said that even similar weapons have different performances. +-------------------------- +Attack Range: 5 cells +-------------------------- +MATK +160 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: Huuma Shuriken +Attack: 150 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Kagerou and Oboro +# +13335# +A Huuma Shuriken where evil spirit dwelling inside. +-------------------------- +For each Refine Level: +ATK +1 +-------------------------- +Type: Huuma Shuriken +Attack: 110 +Weight: 60 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +13336# +A fungus sword for Kagerou and Oboro who have become accustomed to handling shurikens. +When equipped with Enhanced Time Keeper Armor, will makes wearer's body more agile. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Swirling Petal by 20%. +-------------------------- +For each 10 Base Level: +ATK +6 (up to Base Level 160). +-------------------------- +Refine Level +7: +For each Level of Throwing Mastery: +Increases Ranged Physical Damage by 1%. +-------------------------- +When equipped with Enhanced Time Keeper Hat, Enhanced Time Keeper Robe, nhanced Time Keeper Manteau, Enhanced Time Keeper Boots: +ASPD +2, +MaxHP and MaxSP +10% + +For every 10 Base VIT: +Decreases damage taken from Neutral elemental attacks by 3%. +(up to Base VIT 100) + +For every 10 Base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +(up to Base AGI 100) + +For every 10 Base DEX: +HIT +3 +(up to Base DEX 100) + +For every 10 Base LUK: +Critical +3 +(up to Base LUK 100) +-------------------------- +Type: Huuma Shuriken +Attack: 200 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +13337# +Shuriken with Water Property. Can cause snowstorms. Use with caution. +-------------------------- +MATK +50 +-------------------------- +For each 3 Refine Levels: +ATK +30 +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by 3%. +-------------------------- +When equipped with Illusion Apple of Archer: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level of Illusion Huuma Wing Shuriken and Illusion Apple of Archer each is +7 or higher: +Increases damage of Swirling Petal by 25%. +-------------------------- +Total Refine Level of entire set at least +18: +Increases damage of Swirling Petal by 25%. +-------------------------- +Total Refine Level of entire set at least +22: +Decreases Swirling Petal After Skill Delay by 1 second. +-------------------------- +Type: Huuma Shuriken +Attack: 250 +Weight: 150 +Element: Water +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Kagerou and Oboro +# +13338# +It's shape resembles a bird's wings and it bears it's name. +Famous for the weapons of the Pungma clan. +-------------------------- +Indestructible in battle +-------------------------- +DEX +2 +-------------------------- +For each Refine Level: +Increases damage of Kunai Splash by 9%. +-------------------------- +When equipped with Illusion Apple of Archer: +ATK +50. +-------------------------- +Refine Level of Illusion Huuma Wing Shuriken and Illusion Apple of Archer each is +7 or higher: +Increases damage of Kunai Splash by 30%. +-------------------------- +Total Refine Level of entire set at least +18: +Increases Ranged Physical Damage by 10%. +-------------------------- +Total Refine Level of entire set at least +22: +Increases damage of Kunai Splash by 20%. +-------------------------- +Type: Huuma Shuriken +Attack: 300 +Weight: 150 +Element: Wind +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Kagerou and Oboro +# +13339# +A wind demon shuriken that has the strength to hold the power of Nive. +-------------------------- +MATK +160 +-------------------------- +Base Level at least 175: +ATK +5%, MATK +5% +-------------------------- +When equipped with Neev Barrette: +For each 10 base STR: +ATK +1%. + +For each 10 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 1%). + +For each 10 base VIT: +MaxHP +1% + +For each 10 base INT: +MATK +20 + +For each 10 base DEX: +Decreases Variable Casting Time by 1%. + +For each 10 base LUK: +Critical +1 + +For each Refine Level of Neev Huuma Shuriken: +ATK +20, MATK +20 +-------------------------- +Type: Huuma Shuriken +Attack: 150 +Weight: 35 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Kagerou and Oboro +# +13340# +A wind demon shuriken used by a ninja hired by the mine owner as a watchman. +-------------------------- +MATK +180 +-------------------------- +For each Refine Level: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Refine Level +9: +When you defeat monsters with physical attacks recover 20 SP. +-------------------------- +When equipped with Frontier Boots: +Decreases Swirling Petal skill cooldown by 0.3 seconds. + +Refine Level of Frontier Boots is +7 or higher: + +Refine Level of Sakura Blossom Huuma Shuriken is +7 or higher: +Decreases damage taken from Boss class by 30%. + +Refine Level of Sakura Blossom Huuma Shuriken is +9 or higher: +Decreases damage taken from Boss class by additional 20%. +-------------------------- +Type: Huuma Shuriken +Attack: 250 +Weight: 200 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Kagerou and Oboro +# +13341# +Huuma Shuriken specially made for beginner kagerou & oboro. +It will show it's true ability when equipped together with Beginner Armor set. +-------------------------- +Indestructible in battle +-------------------------- +MATK +130 +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +7: +Increases damage of Swirling Petal by 15%. +-------------------------- +When equipped with Beginner's Hat, Beginner's Suit, Beginner's Manteau, Beginner's Boots and Beginner's Ring: +For each 10 Base Level: +ATK +3 (up to Base Level 150) +Decreases Variable Casting Time by additional 10%. +ATK +3% +MATK +3% +-------------------------- +Type: Huuma Shuriken +Attack: 170 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +13342# +A Huuma Shuriken received from suspicious weapon dealer Brute. +-------------------------- +MATK +160 +-------------------------- +Increases Physical Damage against Players by 95%. +-------------------------- +Decreases damage received from Players by 30%. +-------------------------- +For each Refine Level: +Ignores physical defense of every race by 5%. +-------------------------- +Refine Level +8: +Increases Physical Damage against Players by additional 35%. +-------------------------- +Refine Level +9: +Increases Physical Damage against Players by additional 20%. +-------------------------- +Refine Level +10: +MaxHP +15% +MaxSP +15% +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's and moved to the storage. +-------------------------- +Type: Huuma Shuriken +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Ninja +# +13343# +A weapon mutated by the magical power of a stranger. +Even if they look the same, the performance is different. +-------------------------- +MATK +160 +-------------------------- +Decreases damage taken from Players by 30%. +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Huuma Shuriken +Attack: 150 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +Kagerou and Oboro +# +13345# +A wind eagle sword used by a famous ninja. +It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +7: +Increases damage of Swirling Petal by 30%. +-------------------------- +Refine Level +9: +Decreases Swirling Petal skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Fire and Shadow elemental by 15% +Increases Physical Damage against enemies of Undead and Demon race by 30% +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase STR by 20 and long Ranged Physical Damage by 10% for 7 sec when dealing physical damage. +-------------------------- +Type: Huuma Shuriken +Attack: 230 +Weight: 130 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Ninja +# +13346# +Saw blades used in the Einbech mine. +Because of it's portability and cutting power, it is often used for other purposes. +-------------------------- +ATK +15% +Increases damage of Swirling Petal by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Refine Level +7: +ATK +60 +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases damage of Swirling Petal by additional 20%. +Physical attacks have the chance to increase physical damage against all size enemies by 20% for 10 seconds. +-------------------------- +Refine Level +11: +Decreases Swirling Petal skill cooldown by 1 second. +Decreases After Skill Delay by 20%. +-------------------------- +Type: Huuma Shuriken +Attack: 280 +Weight: 18 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Ninja +# +13347# +These Huuma Shurikens were smuggled in Glastheim Castle. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +Indestructible in battle +-------------------------- +Increase Ranged Physical Damage by 15%. +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Increases damage of Cross Slash by 20%. +-------------------------- +Refine Level +11: +Decreases Cross Slash skill cooldown by 2 second. +Increases Physical Damage against enemies of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +ATK +30 +Physical attacks have a chance to increase Ranged Physical Damage by additional 10% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Physical Damage against enemies of Holy and Undead elemental by 20%. +-------------------------- +Type: Huuma Shuriken +Attack: 240 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Ninja classes +# +13400# +A practical sword that is typically used by sailors. +-------------------------- +STR +2 +DEF +1 +-------------------------- +Enables the use of Level 5 Bash. +-------------------------- +Type: One-Handed Sword +Attack: 150 +Weight: 90 +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 40 +Swordsman, Merchant and Thief classes +# +13401# +Rental Item +The one-handed sword of Arthurian legend that supposedly chooses its owner to wield its holy powers. +-------------------------- +INT +10 +LUK +10 +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: One-Handed Sword +Attack: 199 +Weight: 0 +Element: Holy +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +# +13402# +Rental Item +A one-handed sword popularized by its use by sea adventurers. +-------------------------- +STR +2 +DEF +1 +-------------------------- +Enables the use of Level 5 Bash. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: One-Handed Sword +Attack: 185 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +# +13403# +Rental Item +A one-handed sword adorned with an engraving of the sun, symbolizing battle spirit and vigor. +-------------------------- +Regains 1% of the damage against its target as HP with each attack. +-------------------------- +Drains 15 SP from its owner every 10 seconds. +-------------------------- +Type: One-Handed Sword +Attack: 120 +Weight: 0 +Element: Fire +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +# +13404# +A fearsome weapon with a uniquely curved blade. +-------------------------- +Critical +50 +-------------------------- +Type: One-Handed Sword +Attack: 130 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 55 +Transcendent Swordman, Merchant and Thief +# +13405# +A thick, flexible sword forged from an elastic alloy. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Random chance to inflict Curse status on the target. +-------------------------- +Type: One-Handed Sword +Attack: 125 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 55 +Transcendent Swordman, Merchant and Thief +# +13406# +The adventurers who are brave the item which is provided from the hazard adventurer guild. +-------------------------- +Increases damage by 50%. +-------------------------- +Type: One-Handed Sword +Attack: 120 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +# +13407# +Rental Item +An one-handed sword topped with several extra edges for making wounds deeper and more unsightly. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 40% +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: One-Handed Sword +Attack: 148 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +# +13408# +Rental Item +A one-handed, formal dress sword imbued with the Fire element. +-------------------------- +INT +2 +-------------------------- +Enables the use of Level 5 Fire Bolt. +-------------------------- +Random chance to auto-cast Level 5 Fire Bolt on the target when dealing physical damage. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: One-Handed Sword +Attack: 120 +Weight: 0 +Element: Fire +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +# +13409# +Rental Item +An one-handed, formless sword imbued with the Ghost element that can derange the enemy's mind. +-------------------------- +8%의 확률로 타격대상의 SP 45%를 소멸시켜버림. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Sword +Attack: 160 +Weight: 0 +Element: Ghost +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +# +13410# +A sword favored by gladiators, it is especially designed for battles against Demihuman. +-------------------------- +STR +1 +DEX +1 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 75%. +-------------------------- +Ignores physical defense from Demi-Human race by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Sword +Attack: 115 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Novice, Swordsman, Merchant and Thief classes +# +13411# +A sword favored by gladiators, it is especially designed for battles against Demihuman. +-------------------------- +STR +1 +DEX +1 +MATK +74 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 75%. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Sword +Attack: 115 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Novice, Swordsman, Merchant and Thief classes +# +13412# +One of the twin swords of Nacht Sieger. The blue blade shows the sharpness of this sword. +-------------------------- +When attacking there is a chance that for 5 seconds you will completely disregard the defense of the opponent. +-------------------------- +Enables the use of Level 5 Frost Diver. +-------------------------- +Type: One-Handed Sword +Attack: 150 +Weight: 150 +Element: Water +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 75 +Transcendent Swordman, Merchant and Thief +# +13413# +One of the twin swords of Nacht Sieger. The red blade shows the destructive power of this sword. +-------------------------- +When attacking there is a chance that for 5 seconds you will completely disregard the defense of the opponent. +-------------------------- +Enables the use of Level 3 Meteor Storm. +-------------------------- +Type: One-Handed Sword +Attack: 160 +Weight: 150 +Element: Fire +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 75 +Transcendent Swordman, Merchant and Thief +# +13414# +A magical sword that bears 4 different elements of nature. Very effective to enemies without the elements of Water, Wind, Earth and Fire. +-------------------------- +DEX +1 +STR +2 +INT +4 +MATK +95 +-------------------------- +Increases Physical Damage against enemies of Neutral elemental by 10%. +-------------------------- +Random chance to auto-cast Level 3 Bolt magics when dealing physical damage. +-------------------------- +Type: One-Handed Sword +Attack: 105 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Transcendent Swordman, Merchant and Thief +# +13415# +A one-handed sword with a rounded blade. +-------------------------- +Type: One-Handed Sword +Attack: 59 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 2 +Novice, Swordsman, Merchant and Thief classes +# +13416# +A weapon that only a champion of battlefield can wield. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 75%. +-------------------------- +Ignores physical defense of Demi-Human race by 20%. +-------------------------- +Refine Level +6: +Ignores physical defense of Demi-Human race by 5%. +Enables Level 1 Slaughter (Damage bonus of Slaughter increases up to the Refine Level 14.) +Refine Level +7 : +Increases Attack Speed (Decreases After Attack Delay by 10%). +Refine Level +9 : +Random chance to auto-cast Level 2 Critical Wound when using Bash skill. +-------------------------- +Type: One-Handed Sword +Attack: 130 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Novice, Swordsman, Merchant and Thief classes +# +13417# +A weapon that only a champion of battlefield can wield. +-------------------------- +INT +6, MATK +80, increases Int based on Refine Level. +***Additional Weapon Refining Level Option*** ++6 Upgrade: Reduces SP cost of all skills by 10%. ++9 Upgrade: INT +5 +-------------------------- +Type: One-Handed Sword +Attack: 130 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Novice, Swordsman, Merchant and Thief classes +# +13418# +A weapon that only a champion of battlefield can wield. +-------------------------- +INT +6, MATK +80, Increases Int based on Refine Level. +***Additional Weapon Refining Level Option*** ++6 Upgrade: Decreases SP Consumption by 10 % ++9 Upgrade: When using [Pressure], will also cast Level 1 [Lex Aeterna]. ++10 Upgrade: INT +5 +-------------------------- +Type: One-Handed Sword +Attack: 130 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Swordsman and Merchant +# +13419# +Rental Item +A sacred saber. +-------------------------- +Increases Physical Damage against enemies of Undead race by 40%. +-------------------------- +Type: One-Handed Sword +Attack: 160 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Swordman Class, Merchant Class, Rogue Class +# +13420# +A sword used at rite for the heavenly god. +-------------------------- +STR +2 +INT +2 +-------------------------- +Random chance to auto-cast Level 1 Meteor Storm when dealing physical damage. +-------------------------- +Type: One-Handed Sword +Attack: 160 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 70 +Swordsman, Merchant and Thief classes +# +13421# +This short sword has been heavily improved for easy-use. It looks better with its Ruby decoration in the grip. +-------------------------- +When attacking in close-range, the attack power of 'Bowling Bash' and 'Bash' increases by 20% for 15 seconds with low probability. +-------------------------- +Type: One-Handed Sword +Attack: 170 +Weight: 150 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 50 +Transcendent Swordsman and Merchant +# +13422# +Rental Item +A powerful one-handed sword with a decoratively wavy, flame-like blade. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: One-Handed Sword +Attack: 185 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Knight and Crusader classes +# +13423# +A one-handed sword made by the Eden Group. A weapon that can be used by anyone easily. +-------------------------- +Type: One-Handed Sword +Attack: 147 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 26 +Swordsman, Merchant and Thief classes +# +13424# +A one-handed sword made by the Eden Group. It's suitable for an intermediate sword handler. +-------------------------- +Type: One-Handed Sword +Attack: 170 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Swordsman, Merchant and Thief classes +# +13425# +세계 투어 여행자들이 갖고싶어 하는 검. +-------------------------- +STR +1 +DEX +1 +-------------------------- +Type: One-Handed Sword +Attack: 61 +Weight: 50 +Weapon Level: 1 +-------------------------- +Requirement: +Novice, Swordman Class, Merchant Class, Thief Class +# +13426# +Rental Item +A one-handed sword popularized by its use by sea adventurers. +-------------------------- +STR +2 +DEF +1 +-------------------------- +Enables the use of Level 5 Bash. +-------------------------- +Type: One-Handed Sword +Attack: 185 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, +Merchant, and +Thief Classes +# +13427# +Rental Item +A one-handed sword adorned with an engraving of the sun, symbolizing battle spirit and vigor. +-------------------------- +Regains 1% of the damage against its target as HP with each attack. +-------------------------- +Drains 15 SP from its owner every 10 seconds. +-------------------------- +Type: One-Handed Sword +Attack: 120 +Weight: 0 +Element: Fire +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, +Merchant, and +Thief Classes +# +13428# +A sword that named after Valkyrie \ +. +-------------------------- +When equipped with Red Wing Hat: +HIT +10 +Increases Physical Damage against enemies of Demihuman by 10%. +-------------------------- +When equipped with Odin's Blessing: +MaxSP +50 +Increases damage of Bowling Bash by 5%. +-------------------------- +Type: One-Handed Sword +Attack: 170 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 50 +Swordsman, Merchant and Thief classes +# +13431# +A cold etched sword made with Refined Bradium, a mineral from the Other World. +-------------------------- +AGI +1 +MaxHP -5% +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Sword +Attack: 180 +Weight: 220 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 110 +3rd Swordsman and Merchant Classes +# +13433# +Sword that used in academy. +-------------------------- +MaxHP +200 +MaxSP +100 +-------------------------- +For each 10 Base Level: +MaxHP -40 +MaxSP -20 +-------------------------- +Type: One-Handed Sword +Attack: 120 +Weight: 120 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 30 +Swordman classes +# +13434# +A one-handed sword made by the Eden Group. It's suitable for an experienced sword handler. +-------------------------- +Type: One-Handed Sword +Attack: 185 +Weight: 0 +Weapon Level: 3 +Refineable: No +Can be enchanted by: +Weapons Expert BKmoc_para01,112,79,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Swordsman, Merchant and Thief Class +# +13435# +A one-handed, formal dress sword imbued with the Fire element. +-------------------------- +MATK +108 +-------------------------- +Enables the use of Level 3 Fire Bolt. +-------------------------- +Random chance to auto-cast Level 3 Fire Bolt when dealing physical damage. +-------------------------- +Type: One-Handed Sword +Attack: 100 +Weight: 50 +Element: Fire +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Swordsman, Merchant and Thief classes +# +13436# +A one-handed, formal dress sword imbued with the Water element. +-------------------------- +MATK +108 +-------------------------- +Enables the use of Level 3 Cold Bolt. +-------------------------- +Random chance to auto-cast Level 3 Cold Bolt when dealing physical damage. +-------------------------- +Type: One-Handed Sword +Attack: 100 +Weight: 60 +Element: Water +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Swordsman, Merchant and Thief classes +# +13437# +A sword used by Orc tribe. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Sword +Attack: 90 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 5 +Novice, Swordsman, Merchant and Thief classes +# +13438# +A magical enchanted sword, coveted by the famous witch-warrior Lila Contrary. +With the power of lunar light, it could be wielded by Sailor Musa. +-------------------------- +MATK +110 +-------------------------- +Random chance to auto-cast random magic spells when dealing physical damage. +Increases the chances for every 2 Refine Level. +-------------------------- +Type: One-Handed Sword +Attack: 165 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 105 +Novice, Swordsman, Thief and Merchant classes +# +13439# +Rental Item +MATK +100 +-------------------------- +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Random chance to inflict Poison status when dealing physical damage. +-------------------------- +Type: One-Handed Sword +Attack: 120 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Novice, Swordsman, Thief and Merchant +# +13440# +A ceremonial sword for high class nobles. +Engraving on it says - \ +. +-------------------------- +Type: One-Handed Sword +Attack: 60 +Weight: 50 +Element: Holy +Weapon Level: 1 +-------------------------- +Requirement: +Novice, Swordsman, Thief and Merchant +# +13441# +A sword sculpted from Gray Shard to counter Magic Sword Tartanos. +It offers incredible power and magic at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +100 +-------------------------- +Random chance to absorp 5% damage inflicted into SP. +-------------------------- +Drains 1000 HP when unequipped. +-------------------------- +Type: One-Handed Sword +Attack: 150 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Swordman classes +# +13442# +An ancient parasol, it's unknown when this parasol was created. +You can still feel the magic flowing inside. +-------------------------- +MATK +80 +Increases MATK for every Refine Level. +-------------------------- +Enables the use of Level 10 Soul Strike. +-------------------------- +Type: One-Handed Sword +Attack: 120 +Weight: 50 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 80 +Swordsman, Thief and Merchant +# +13444# +An unusual type of weapon, mainly used for other stuff. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 8%). +-------------------------- +Type: One-Handed Sword +Attack: 190 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Swordsman, Thief and Merchant +# +13446# +A spectacular sword with a blade forged out of meteorite that shines with starlight during the night. +-------------------------- +Random chance to inflict Stun status on the target when dealing physical damage. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Sword +Attack: 140 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 45 +Novice +# +13447# +A giant one-handed sword used by ancient Korean war generals. +-------------------------- +All Stats +2 +-------------------------- +Increases Physical Damage against enemies of Boss class by 50%. +-------------------------- +Increases Physical Damage taken from Normal class by 10%. +-------------------------- +Type: One-Handed Sword +Attack: 150 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Swordsman, Merchant and Thief classes +# +13448# +A sword created by a wizard who wants to be a magical swordsman who works with swords. +However, he was unable to equip himself. +-------------------------- +MATK +110 +-------------------------- +When a physical attack hits, a magic attack is activated with a certain probability. +-------------------------- +For every 2 Refine Levels: +Increases the number of types of magic attacks that can be activated. +-------------------------- +When equipped with either Skeggiold Card or Centipede Larva Card: +The magic attack rate increases (not implemented). +-------------------------- +When equipped with Skeggiold Card and Centipede Larva Card: +The magic attack rate increases even more (not implemented). +-------------------------- +Type: One-Handed Sword +Attack: 165 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 105 +Super Novice, Swordsman, Merchant, Thief +# +13449# +An infernal sword from hell. Only true demons are able control it's full power. People say that a Prince from Hell used this weapon for his army. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Random chance to increase ASPD by 3 for 5 sec when dealing physical damage. +-------------------------- +Type: One-Handed Sword +Attack: 130 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Swordsman, Thief and Merchant +# +13450# +One-Handed Sword used by the cavalry. If you are aware know his strength. +-------------------------- +Type: One-Handed Sword +Attack: 115 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 27 +Swordsman, Merchant and Thief classes +# +13451# +Blue Sword which has destructive power. +-------------------------- +STR +5 +AGI +5 +-------------------------- +When VIP status active: +ATK +20% +ASPD +3 +-------------------------- +Type: One-Handed Sword +Attack: 200 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +13452# +A golden sword with brutal power. +-------------------------- +STR +8 +AGI +8 +-------------------------- +Type: One-Handed Sword +Attack: 190 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 120 +Rune Knight +# +13453# +A sword inspired by the legendary twig said to have killed Baldur, god of light. +-------------------------- +DEX +3 +-------------------------- +Random chance to inflict Stone Curse status on the target when dealing physical damage. +-------------------------- +Random chance to auto-cast Level 3 Stone Curse on the target when attacking. +-------------------------- +Increases Physical Damage against enemies of Ghost elemental by 15%. +-------------------------- +Type: One-Handed Sword +Attack: 170 +Weight: 100 +Element: Shadow +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Swordsman, Merchant and Thief classes +# +13454# +One-handed sword that emitting red aura. +-------------------------- +ATK increased by (RefineLv*RefineLv), up to +15 Refine Level. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: One-Handed Sword +Attack: 85 +Weight: 85 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Novice, Swordsman, Merchant and Thief classes +# +13455# +Saber imbued with Vicious Mind. +-------------------------- +Increases ATK by (Refinelv*Refinelv). +(up to +15 Refine Level) +-------------------------- +Type: One-Handed Sword +Attack: 135 +Weight: 135 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 160 +Novice, Swordsman, Merchant and Thief classes +# +13456# +A certified kingdom equipment for adventurer. +-------------------------- +Increases ATK by (Refine*Refine*1.25) +-------------------------- +Type: One-Handed Sword +Attack: 80 +Weight: 42 +Weapon Level: 3 +-------------------------- +Requirement: +Novice, Swordsman, Merchant and Thief classes +# +13457# +A certified kingdom equipment for adventurer. +-------------------------- +Increases ATK by (Refine*Refine*1.25) +-------------------------- +Type: Dagger +Attack: 52 +Weight: 27 +Weapon Level: 3 +-------------------------- +Requirement: +Novice, Swordsman, Merchant and Thief classes +# +13458# +A one-handed sword awarded by the king. +It seems to be effective in calming the souls of the dead. +-------------------------- +MATK +160 +-------------------------- +Increases Damage against monsters in Bio Lab and Tomb of The Fallen by 40%. +-------------------------- +Refine Level +5: +Increases Damage against monsters in Bio Lab and Tomb of The Fallen by 20%. +-------------------------- +For each Refine Level equal or above +6: +Increases Damage against monsters in Bio Lab and Tomb of The Fallen by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Sword +Attack: 150 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Super Novice, Swordsman, Thief and Merchant classes +# +13459# +This short sword has been heavily improved for easy-use. It looks better with its Ruby decoration in the grip. +-------------------------- +When attacking in close-range, the attack power of 'Bowling Bash' and 'Bash' increases by 20% for 15 seconds with low probability. +-------------------------- +Type: One-Handed Sword +Attack: 170 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Transcendent Swordsman and Merchant +# +13460# +A magic sword sealed with powerful seal. +It's not easy to draw the true power of this sword. +-------------------------- +MaxSP -100 +-------------------------- +Random chance to auto-cast Level 5 Fire Bolt when dealing physical damage. +-------------------------- +Refine Level +7: +MATK +85 +MaxSP +50 +-------------------------- +Refine Level +10: +ASPD +1 +MATK +45 +MaxSP +50 +-------------------------- +Type: One-Handed Sword +Attack: 100 +Weight: 150 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 100 +3rd classes of Swordsman, Merchant and Thief +# +13461# +An evil sword sealed with powerful seal. +It's not easy to draw the true power of this sword. +-------------------------- +DEF -50 +MDEF -10 +-------------------------- +Random chance to auto-cast Level 5 Frost Nova when dealing physical damage. +-------------------------- +Refine Level +7: +Critical +30 +MDEF +10 +-------------------------- +Refine Level +10: +ASPD +1 +Critical +20 +DEF +50 +-------------------------- +Type: One-Handed Sword +Attack: 100 +Weight: 150 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 100 +3rd classes of Swordsman, Merchant and Thief +# +13462# +A maximum sword sealed with powerful seal. +It's not easy to draw the true power of this sword. +-------------------------- +MaxHP -1000 +-------------------------- +Random chance to auto-cast Level 5 Cold Bolt when dealing physical damage. +-------------------------- +Refine Level +7: +ATK +65 +MaxHP +500 +-------------------------- +Refine Level +10: +ASPD +1 +ATK +45 +MaxHP +500 +-------------------------- +Type: One-Handed Sword +Attack: 100 +Weight: 150 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 100 +3rd classes of Swordsman, Merchant and Thief +# +13463# +The one-handed sword of Arthurian legend, it supposedly selects its owner by its own will to wield its holy powers. +-------------------------- +INT +5 +LUK +10 +DEX -1 +MATK +126 +-------------------------- +Type: One-Handed Sword +Attack: 150 +Weight: 120 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Swordsman, Merchant and Thief classes +# +13464# +A convenient item invented by a scientist. +It is said that development was discontinued after a fatal abnormality was confirmed in the user's mind in the results of later research. +-------------------------- +Physical attacks have a certain chance to auto-casts Level 1 Steal on your enemy, +if you have learned Steal on a higher level, it will auto-cast that instead. +-------------------------- +For each Refine Level equal or above +2: +Increases the chance to auto-cast Steal. +-------------------------- +Base Level at least 100: +Refine Level +7: +Enables the use of Level 5 Raid. + +Refine Level +9: +Enables the use of Level 10 Backstab. +-------------------------- +Type: One-Handed Sword +Attack: 100 +Weight: 60 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 90 +Novice +# +13465# +Only guardians of the king were allowed to wield this sword. +-------------------------- +MATK +130 +-------------------------- +If skill Riding is not learned: +Nullifies damage penalty resulted from monster's size. +-------------------------- +For each Level of Spear Quicken: +FLEE +2 +Critical +3 +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +For each Refine Level: +Increases damage of Grand Cross, Holy Cross and Bash by 20%. +-------------------------- +Refine Level +6: +Increases Healing skills effectiveness by 40%. +Increases recovery amount gained from Healing skills and items by 15%. +-------------------------- +Refine Level +8: +Increases Healing skills effectiveness by 40%. +Increases recovery amount gained from Healing skills and items by 15%. +-------------------------- +When equipped with King's Guard: +For each Refine Level of King's Guard: +Increases damage of Grand Cross, Holy Cross and Bash by 20%. +-------------------------- +Type: One-Handed Sword +Attack: 170 +Weight: 60 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Royal Guard +# +13466# +A weapon of unknown origin that contains the magic of the labyrinth. +It is unclear what kind of material it is made of, and it is said that even similar weapons have different performances. +-------------------------- +MATK +130 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Baphomet Card: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Type: One-Handed Sword +Attack: 150 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +3rd Swordsman and 3rd Merchant classes +# +13467# +A Diva Blade that has mutated under the influence of the power of the labyrinth. +It is unclear what kind of material it is made of, and it is said that even similar weapons have different performance. +-------------------------- +Attack Range: 5 cells +-------------------------- +MATK +130 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: One-Handed Sword +Attack: 150 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +3rd Swordsman and 3rd Merchant classes +# +13468# +A one-handed sword that contains evil thoughts. +-------------------------- +Increases ATK for every Refine Level. +-------------------------- +Type: One-Handed Sword +Attack: 105 +Weight: 60 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +3rd classes of Swordsman and 3rd classes of Merchant +# +13469# +A sword with an intangible blade that appears to be formless. +Attack and collapse the subject's mind. +-------------------------- +Indestructible in battle +-------------------------- +Dealing physical damage drain 1 SP. +-------------------------- +Dealing physical damage has a 8% chance to drain 30% SP from enemy. +-------------------------- +For each Refine Level: +Increases the chance to drain the SP of enemies by 2%. +-------------------------- +Refine Level +7: +Increases SP drain from enemy by 20%. +-------------------------- +When equipped with Illusion Cape of Ancient Lord: +MATK +100 +-------------------------- +Refine Level of Illusion Immaterial Sword and Illusion Cape of Ancient Lord each is +7 or higher: +MATK +50 +-------------------------- +Total Refine Level of entire set at least +18: +When dealing physical and specific attacks, chance to auto cast bolt magic. +-------------------------- +Total Refine Level of entire set at least +22: +When dealing physical attacks, a chance to increase Storm Gust, Meteor Storm, Lord of Vermillion and Heaven's Drive for 10 seconds by 30%. +-------------------------- +Type: One-Handed Sword +Attack: 180 +Weight: 90 +Element: Ghost +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Swordsman classes, Thief classes, Merchant classes +# +13470# +A flaming red sword. Can you feel the heat? +-------------------------- +MATK +160 +-------------------------- +Random chance to pierce Normal monster's physical defense by 100% for 5 sec when dealing physical damage. +-------------------------- +Random chance to auto-cast Level 3 Crimson Rock when dealing physical damage. +For each Refine Level: +increases the trigger rate. +Every 5 Base Levels increases the activation rate. +-------------------------- +When equipped with YinYang Talisman: +Increases damage of Crimson Rock by 10%. +-------------------------- +When equipped with YinYang Talisman and David Shield: +For each Refine Level of Burning Sword: +HIT +5 +Increases Attack Speed (Decreases After Attack Delay by 4%). +Increases damage of Crimson Rock by 1%. +-------------------------- +Type: One-Handed Sword +Attack: 180 +Weight: 150 +Element: Fire +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Super Novice; 3rd classes of Swordsman, Merchant and Thief +# +13471# +A sword wearing the hellish fire that sways in the abyss. +-------------------------- +MATK +160 +-------------------------- +Physical attacks have a certain chance to ignore physical defense of Normal class by 100% for 5 seconds. +-------------------------- +Physical attacks have a certain chance to auto-cast Level 3 Hell Inferno on the enemy. +-------------------------- +For each Refine Level: +Increases the chance to auto-cast Hell Inferno. +-------------------------- +For each 5 Base Level: +Increases the chance to auto-cast Hell Inferno further. +-------------------------- +When equipped with Yin Yang Talisman: +Increases damage of Hell Inferno by 100%. +-------------------------- +When equipped with Yin Yang Talisman and David Shield: +For each Refine Level of Abyss Sword: +HIT +5 +Increases Attack Speed (Decreases After Attack Delay by 4%). +Increases damage of Hell Inferno by 10%. +-------------------------- +When equipped with Warrior Shoes: +MaxHP +10%, MaxSP +10% + +For each Refine Level of Warrior Shoes: +MATK +25 +Critical +5 +-------------------------- +Type: One-Handed Sword +Attack: 180 +Weight: 150 +Element: Shadow +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Super Novice, 3rd Swordsman classes, 3rd Thief classes and 3rd Merchant classes +# +13472# +A sword that purifies all impurities and restores it to what it should be. +-------------------------- +MATK +160 +-------------------------- +Physical attacks have a certain chance to ignore physical defense of Normal class by 100% for 5 seconds. +-------------------------- +Physical attacks have a certain chance to auto-cast Level 3 Judex on the enemy. +-------------------------- +For each Refine Level: +Increases the chance to auto-cast Judex. +-------------------------- +For each 5 Base Level: +Increases the chance to auto-cast Judex further. +-------------------------- +When equipped with Yin Yang Talisman: +Increases damage of Judex by 100%. +-------------------------- +When equipped with Yin Yang Talisman and David Shield: +For each Refine Level of Abyss Sword: +HIT +5 +Increases Attack Speed (Decreases After Attack Delay by 4%). +Increases damage of Judex by 10%. +-------------------------- +When equipped with Warrior Shoes: +MaxHP +10%, MaxSP +10% + +For each Refine Level of Warrior Shoes: +MATK +25 +Critical +5 +-------------------------- +Type: One-Handed Sword +Attack: 180 +Weight: 150 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Super Novice, 3rd Swordsman classes, 3rd Thief classes and 3rd Merchant classes +# +13473# +A double-edged sword that is said to have been brought to life by the hands of the gods to destroy powerful enemies. +It is said that if you shake it, it will create a vacuum blade and defeat the enemy's neck. +-------------------------- +AGI +5 +Critical +50 +Perfect Dodge +20 +-------------------------- +Increases Physical Damage against enemies of Undead and Demon race by 30%. +-------------------------- +Physical attacks have a certain chance to auto-cast Level 3 Soul Destroyer on the enemy, +if you learned a higher Level, it will auto cast that Level instead. +-------------------------- +For each Refine Level: +Increases the chance to auto-cast Soul Destroyer. +-------------------------- +Refine Level +8: +Enables the use of Level 3 Soul Destroyer. +-------------------------- +When compounded with Incantation Samurai Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +20%. + +When Soul Destroyer is used: +Has a certain chance to increase Perfect Dodge by 100 for 3 seconds. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Sword +Attack: 150 +Weight: 130 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Super Novice, 3rd Swordsman classes, 3rd Thief classes and 3rd Merchant classes +# +13483# +Sword specially made for beginner Genetic. +It will show i'ts true ability when equipped together with Beginner Armor set. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +7: +Increases damage of Cart Cannon by 15%. +-------------------------- +When equipped with Beginner's Hat, Beginner's Suit, Beginner's Manteau, Beginner's Boots and Beginner's Ring: +For each 10 Base Level: +ATK +3 (up to Base Level 150) +ASPD +1 +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: One-Handed Sword +Attack: 140 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Genetic +# +13485# +A sword with blue colored flame when unsheathed. +It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +9: +Decreases SP Consumption of Cart Cannon by 10%. +-------------------------- +Refine Level +11: +Increases damage of Cart Cannon by 15%. +-------------------------- +When equipped with Ancient Hero's Boots: +3% chance to increase DEX by 20 and Ranged Physical Damage by 10% for 7 sec when dealing physical damage. +-------------------------- +Type: One-Handed Sword +Attack: 180 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Genetic +# +13492# +A weapon mutated by the magical power of a stranger. +Even if they look the same, the performance is different. +-------------------------- +MATK +130 +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by 5%. +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Sword +Attack: 150 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +3rd Swordsman and 3rd Merchant classes +# +13493# +A sword that causes a strong explosion by activating the detonation system built into the sword. +-------------------------- +MATK +150 +-------------------------- +Random chance to auto cast Fire Ball when dealing physical damage, skill level is equal to Refine Level (up to Refine Level 10). +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases damage of Fire Ball by 30%. +-------------------------- +Refine Level +11: +Random chance to auto cast Level 3 Hell Inferno when dealing physical damage. +Random chance to auto cast Level 3 Hell Inferno when dealing physical damage. +-------------------------- +Type: One-Handed Sword +Attack: 160 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Novice, Swordsman, Thief and Merchant classes +# +13495# +A sword with a blue flame when removed from the hilt. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +Decreases SP Consumption of Cart Cannon by 10%. +-------------------------- +Refine Level +9: +Increases damage of Cart Cannon by 15%. +-------------------------- +Type: One-Handed Sword +Attack: 180 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 99 +Genetic +# +13500# +A box contains 1 Life Insurrance +amount: 10 +Item description: +-------------------------- +A life insurance certificate issued by Kafra Center. +Once the player receives the benefit from this certificate, the item will lose its effect. +If the character dies within the 60 minutes duration, no loss of EXP will be made. +Corrected display suppose to be will not lose any experience the first time you ko'ed. +The effect will disappear after your first KO'. +-------------------------- +Weight: 1 +-------------------------- +Box Weight: 1 +# +13501# +A box containing 1 Experience Scroll. +-------------------------- +Weight: 1 +# +13502# +A box contains 1 Refined Drooping Cat +Rental duration: 1 Week +Item description: +-------------------------- +A cute kitty doll which can be worn on top of the head. +-------------------------- +MDEF +15 +-------------------------- +Increases resistance against Curse status by 30%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All classes except Novice +-------------------------- +Weight: 1 +# +13503# +A box contains 1 Magestic Goat +Rental duration: 1 Week +Item description: +-------------------------- +A headgear made from the horns of Baphomet. +-------------------------- +STR +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Merchant, Taekwon Boy/Girl and Star Gladiator +-------------------------- +Weight: 1 +# +13504# +A box contains 1 Refined Deviruchi Hat +Rental duration: 1 Week +Item description: +-------------------------- +A hat created in the form of the Deviruchi monster. +-------------------------- +STR +1, INT +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All classes except Novice +-------------------------- +Weight: 1 +# +13505# +A box contains 1 Executioner +Rental duration: 1 Week +Item description: +-------------------------- +A gruesome sword used to behead criminals judged with the death penalty. +-------------------------- +Ignores physical defense of Demi-Human race by 100%. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 20% +-------------------------- +Increases damage taken from monsters of Demi-Human race by 10%. +-------------------------- +Type: Two-Handed Sword +Attack: 190 +Weight: 0 +Element: Shadow +Weapon Level: 4 +-------------------------- +Requirement: +Swordsman classes +-------------------------- +Weight: 1 +# +13506# +A box contains 1 Refined Bloody Axe +Rental duration: 1 Week +Item description: +-------------------------- +A terrifying axe that is said to fill the entire battlefield with blood once it cuts flesh. +-------------------------- +STR +20 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Increases movement speed. +-------------------------- +Type: Two-Handed Axe +Attack: 205 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman and Merchant classes +-------------------------- +Weight: 1 +# +13507# +A box contains 1 Tomahawk +Rental duration: 1 Week +Item description: +-------------------------- +A light axe imbued with the Wind element which can be hurled at enemies. +-------------------------- +Enables use of Tomahawk Throwing. +-------------------------- +Type: One-Handed Axe +Attack: 200 +Weight: 0 +Element: Wind +Weapon Level: 4 +-------------------------- +Requirement: +Swordsman and Merchant classes +-------------------------- +Weight: 1 +# +13508# +A box contains 1 Rudra Bow +Rental duration: 1 Week +Item description: +-------------------------- +A bow imbued with the sacred essense of Rudra, one of the ancient gods. +-------------------------- +INT +5 +-------------------------- +Enables the use of Level 1 Heal and Level 1 Cure. +-------------------------- +Adds 50% tolerance to the Poison, Curse, Silence, Confuse and Blind statuses. +-------------------------- +Type: Bow +Attack: 185 +Weight: 0 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Archer and Rogue +-------------------------- +Weight: 1 +# +13509# +A box contains 1 Cutlas +Rental duration: 1 Week +Item description: +-------------------------- +A one-handed sword popularized by its use by sea adventurers. +-------------------------- +STR +2 +DEF +1 +-------------------------- +Enables the use of Level 5 Bash. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: One-Handed Sword +Attack: 185 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +-------------------------- +Weight: 1 +# +13510# +A box contains 1 Solar Sword +Rental duration: 1 Week +Item description: +-------------------------- +A one-handed sword adorned with an engraving of the sun, symbolizing battle spirit and vigor. +-------------------------- +Regains 1% of the damage against its target as HP with each attack. +-------------------------- +Drains 15 SP from its owner every 10 seconds. +-------------------------- +Type: One-Handed Sword +Attack: 120 +Weight: 0 +Element: Fire +Weapon Level: 4 +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +-------------------------- +Weight: 1 +# +13511# +A box contains 1 Swordbreaker +Rental duration: 1 Week +Item description: +-------------------------- +A powerful dagger that is specially constructed to destroy the enemy's weapon by a low chance. +-------------------------- +Type: Dagger +Attack: 105 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +-------------------------- +Weight: 1 +# +13512# +A box contains 1 Mailbreaker +Rental duration: 1 Week +Item description: +-------------------------- +An incredibly sharp dagger built to puncture and destroy an enemy's armor by a low chance. +-------------------------- +Type: Dagger +Attack: 105 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +-------------------------- +Weight: 1 +# +13513# +A box contains 1 Moonlight Sword +Rental duration: 1 Week +Item description: +-------------------------- +A dagger imbued with lunar spirit and the power to drain an enemy's soul. +-------------------------- +MaxSP +10% +-------------------------- +Regain 3 SP with each attack. +-------------------------- +Type: Dagger +Attack: 85 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +-------------------------- +Weight: 1 +# +13514# +A box contains 1 Wrench +Rental duration: 1 Week +Item description: +-------------------------- +A heavy tool with many practical applications. +-------------------------- +Random chance to inflict Poison, Blind, Stun or Frozen on the target when dealing physical damage. +-------------------------- +Type: Mace +Attack: 150 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Acolyte +-------------------------- +Weight: 1 +# +13515# +A box contains 1 Grape +amount: 10 +Item description: +-------------------------- +Clustered berries with smooth skin that can be fermented to make wine. +-------------------------- +Type: Restorative +Heal: 10 ~ 15 SP +Weight: 2 +-------------------------- +Weight: 1 +# +13516# +A box contains 1 Royal Jelly +amount: 5 +Item description: +-------------------------- +Highly nutritious jelly secreted from honeybees that they only feed to larvas and future queens. +-------------------------- +Type: Restorative +Heal: 325 ~ 405 HP +40 ~ 60 SP +Cure: Poison, Curse, Silence, Confuse, Blind, Hallucination +Weight: 15 +-------------------------- +Weight: 1 +# +13517# +A box contains 1 Yggdrasil Berry +amount: 3 +Item description: +-------------------------- +Fruit from the Yggdrasil tree which brings life to our world. Its fantastic taste is full of life. +-------------------------- +Type: Restorative +Heal: 100% HP, 100% SP +Weight: 30 +-------------------------- +Weight: 1 +# +13518# +A box containing 1 Weapon Card Scroll. +-------------------------- +Weight: 1 +# +13519# +A box containing 1 Armor Card Scroll. +-------------------------- +Weight: 1 +# +13520# +A box containing 1 Helmet Card Scroll. +-------------------------- +Weight: 1 +# +13521# +A box containing 1 Garment Card Scroll. +-------------------------- +Weight: 1 +# +13522# +A box containing 1 Shield Card Scroll. +-------------------------- +Weight: 1 +# +13523# +A box containing 1 Shoes Card Scroll. +-------------------------- +Weight: 1 +# +13524# +A box containing 1 Accessory Card Scroll. +-------------------------- +Weight: 1 +# +13525# +A box containing 1 Zeny Pet Egg Scroll. +-------------------------- +Weight: 1 +# +13526# +A box containing 30 Pet Egg Scroll.There's a chance of obtaining a Red Deviruchi Hat or other item when opening this box. +-------------------------- +Weight: 1 +# +13527# +A box containing 30 Pet Egg Scroll.There's a chance of obtaining a Red Wizardry Hat or other item when opening this box. +-------------------------- +Weight: 1 +# +13528# +A box containing 30 Pet Egg Scroll.There's a chance of obtaining a Pink Drooping Kitty or other item when opening this box. +-------------------------- +Weight: 1 +# +13529# +A box containing 30 Pet Egg Scroll.There's a chance of obtaining a Pink Beanie or other item when opening this box. +-------------------------- +Weight: 1 +# +13530# +A box containing 30 Pet Egg Scroll. +There's a chance of obtaining an Advanced Mini Propeller and White Wizardry Hat or others item when opening this box. +-------------------------- +Weight: 1 +# +13531# +A box contains 1 Light Red Potion +amount: 50 +Item description: +A red potion that has been condensed to Reduces its weight and increase its effectiveness. +-------------------------- +Type: Restorative +Heal: 45 ~ 65 HP +Weight: 1 +-------------------------- +Box Weight: 1 +# +13532# +A box contains 1 Light Orange Potion +amount: 50 +Item description: +-------------------------- +An orange potion that has been condensed to Reduces its weight and increase its effectiveness. +-------------------------- +Type: Restorative +Heal: 105 ~ 145 HP +Weight: 1 +-------------------------- +Box Weight: 1 +# +13533# +A box contains 1 Light Yellow Potion +amount: 50 +Item description: +-------------------------- +A yellow potion that has been condensed to Reduces its weight and increase its effectiveness. +-------------------------- +Type: Restorative +Heal: 175 ~ 235 HP +Weight: 1 +-------------------------- +Box Weight: 1 +# +13534# +A box contains 1 Light White Potion +amount: 50 +Item description: +-------------------------- +A white potion that has been condensed to Reduces its weight and increase its effectiveness. +-------------------------- +Type: Restorative +Heal: 325 ~ 405 HP +Weight: 1 +-------------------------- +Box Weight: 1 +# +13535# +A box contains 1 Light Concentration Potion +amount: 20 +Item description: +-------------------------- +Potion that stimulates concentration. Affects the attack speed of its consumer. +-------------------------- +Type: Stat booster +Effect: Increases attack speed +Effect duration: 30 minutes +Weight: 2 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +13536# +A box contains 1 Light Awakening Potion +amount: 20 +Item description: +-------------------------- +Potion that possesses the effect of awakening. It is a mysterious medicine that helps to increase the character's attack speed. +-------------------------- +Type: Stat booster +Effect: Increases attack speed +Effect duration: 30 minutes +Weight: 2 +-------------------------- +Requirement: +Base Level 40 +All classes except Acolyte, Priest, Bard and Dancer +-------------------------- +Weight: 1 +# +13537# +A box contains 1 Light Berserk Potion +amount: 20 +Item description: +-------------------------- +A very special potion that enrages the character and turns him into a berserker and increases the character's attack speed. +-------------------------- +Type: Stat booster +Effect: Increases attack speed +Effect duration: 30 minutes +Weight: 2 +-------------------------- +Requirement: +Base Level 85 +Swordsman and Merchant classes; Rogue, Magician and Wizard +-------------------------- +Weight: 1 +# +13538# +A box containing 10 Level 10 Meteor Storm Scroll. Feel powerful magic in the box. +-------------------------- +Weight: 1 +# +13539# +A box containing 10 Level 10 Storm Gust Scroll. Feel powerful magic in the box. +-------------------------- +Weight: 1 +# +13540# +A box containing 10 Level 10 Lord of Vermilion Scroll. Feel powerful magic in the box. +-------------------------- +Weight: 1 +# +13541# +A box containing 10 Level 1 Lex Aeterna Scroll. Feel holy magic in the box. +-------------------------- +Weight: 1 +# +13542# +A box containing 10 Level 5 Magnificat Scroll. Feel holy magic in the box. +-------------------------- +Weight: 1 +# +13543# +A box containing 10 Level 5 Chemical Protection Helm Scroll. Obtain 1 Coating Bottle. +-------------------------- +Weight: 1 +# +13544# +A box containing 10 Level 5 Chemical Protection Shield Scroll. Obtain 1 Coating Bottle. +-------------------------- +Weight: 1 +# +13545# +A box containing 10 Level 5 Chemical Protection Armor Scroll. Obtain 1 Coating Bottle. +-------------------------- +Weight: 1 +# +13546# +A box containing 10 Level 5 Chemical Protection Weapon Scroll. Obtain 1 Coating Bottle. +-------------------------- +Weight: 1 +# +13547# +A box containing 10 Level 1 Repair Weapon Scroll. Obtain Ore for repair. +-------------------------- +Weight: 1 +# +13548# +A box containing 10 Big Bun. Restores Maximum HP. +-------------------------- +Weight: 1 +# +13549# +A box containing 10 Pill. Restores MaxSP. +-------------------------- +Weight: 1 +# +13550# +A box containing 10 Fish Slice. Restores Maximum HP & SP. +-------------------------- +Weight: 1 +# +13551# +A box containing 10 Chewy Ricecake. Increases ATK 10 for 30 minutes. +-------------------------- +Weight: 1 +# +13552# +A box containing 10 Pastry. Increases MATK 10 for 30 minutes. +-------------------------- +Weight: 1 +# +13553# +A box containing a +special scroll that +can transport you +once to Nogg Road, +Mjolnir Dead Pit, +Robot Factory Lv2, +Einbroch Mine Dungeon, +Payon Dungeon, Toy +Dungeon, Glast Heim +Underprison, Louyang +Dungeon, Hermit's +Checkers, Izlude +Dungeon, Turtle +Island Dungeon, +Clock Tower B3F, +Clock Tower 3F, +Glast Heim Culvert 2F, +Sphinx Dungeon 4F, +Inside Pyramid 4F, +Prontera Culvert 3F, +Amatsu Dungeon 1F +(Tatami Maze), +Somatology Laboratory +1st Floor, or Ayothaya +Ancient Shrine 2F. +Warning - After using it, unless you choose the destination in 1 minute, +it will be useless. +-------------------------- +Weight: 1 +# +13554# +A box containing 1 Weapon Card Scroll. +-------------------------- +Weight: 1 +# +13555# +A box containing 1 Weapon Card Scroll. +-------------------------- +Weight: 1 +# +13556# +A box containing 1 Armor Card Scroll. +-------------------------- +Weight: 1 +# +13557# +A box containing 1 Accessory Card Scroll. +-------------------------- +Weight: 1 +# +13558# +A scroll which gives you a random of Weapon Card. +-------------------------- +Weight: 1 +# +13559# +A scroll which gives you a random of Armor Card. +-------------------------- +Weight: 1 +# +13560# +A scroll which gives you a random of Helmet Card. +-------------------------- +Weight: 1 +# +13561# +A scroll which gives you a random of Garment Card. +-------------------------- +Weight: 1 +# +13562# +A scroll which gives you a random of Shield Card. +-------------------------- +Weight: 1 +# +13563# +A scroll which gives you a random of Shoes Card. +-------------------------- +Weight: 1 +# +13564# +A scroll which gives you a random of Accessory Card. +-------------------------- +Weight: 1 +# +13565# +A scroll which gives you a random of Weapon Card. +-------------------------- +Weight: 1 +# +13566# +A scroll which gives you a random of Weapon Card. +-------------------------- +Weight: 1 +# +13567# +A scroll which gives you a random of Armor Card. +-------------------------- +Weight: 1 +# +13568# +A scroll which gives you a random of Accessory Card. +-------------------------- +Weight: 1 +# +13569# +A box containing 10 PVP Teleport Scroll. +Allow character to teleport to the PVP Room. +-------------------------- +Weight: 1 +# +13570# +A box contains 1 Giant Fly Wing +amount: 50 +Item description: +-------------------------- +An enchanted, giant wing from an ancient creatures. +-------------------------- +Type: Supportive +Effect: Teleport all party members to random cell when used by a Party Leader +-------------------------- +Weight: 1 +# +13571# +A box contains 1 Giant Fly Wing +amount: 100 +Item description: +-------------------------- +An enchanted, giant wing from an ancient creatures. +-------------------------- +Type: Supportive +Effect: Teleport all party members to random cell when used by a Party Leader +Weight: 1 +-------------------------- +Box Weight: 1 +# +13572# +A box contains 1 Hwergelmir's Tonic +amount: 30 +Item description: +-------------------------- +This beverage is named after the legendary spring that is believed to be the source of the world's rivers and is famous for its pure, amazing taste. +-------------------------- +Type: Cooked Food +Effect: DEX +10 +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +13573# +A box contains 1 Hwergelmir's Tonic +amount: 50 +Item description: +-------------------------- +This beverage is named after the legendary spring that is believed to be the source of the world's rivers and is famous for its pure, amazing taste. +-------------------------- +Type: Cooked Food +Effect: DEX +10 +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +13574# +A box contains 1 Cooked Nine Tail's Tails +amount: 30 +Item description: +-------------------------- +A rare, specialty Payon dish that bestows luck to those fortunate enough to eat it. +-------------------------- +Type: Cooked Food +Effect: LUK +10 +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +13575# +A box contains 1 Cooked Nine Tail's Tails +amount: 50 +Item description: +-------------------------- +A rare, specialty Payon dish that bestows luck to those fortunate enough to eat it. +-------------------------- +Type: Cooked Food +Effect: LUK +10 +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +13576# +A box contains 1 Level 10 Increase Agility Scroll +amount: 30 +Item description: +-------------------------- +A scroll in which a single use of Level 10 Increase Agility has been recorded. +-------------------------- +Type: Magic scroll +Cast: Level 10 Increase Agility +Weight: 1 +-------------------------- +Box Weight: 1 +# +13577# +A box contains 1 Level 10 Increase Agility Scroll +amount: 50 +Item description: +-------------------------- +A scroll in which a single use of Level 10 Increase Agility has been recorded. +-------------------------- +Type: Magic scroll +Cast: Level 10 Increase Agility +Weight: 1 +-------------------------- +Box Weight: 1 +# +13578# +A box contains 1 Stew of Immortality +amount: 30 +Item description: +-------------------------- +A funky smelling, suspicious looking stew that really does make you feel like an immortal when you eat it. +-------------------------- +Type: Cooked Food +Effect: VIT +10 +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +13579# +A box contains 1 Stew of Immortality +amount: 50 +Item description: +-------------------------- +A funky smelling, suspicious looking stew that really does make you feel like an immortal when you eat it. +-------------------------- +Type: Cooked Food +Effect: VIT +10 +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +13580# +A box contains 1 Life Insurance +amount: 30 +Item description: +-------------------------- +A life insurance certificate issued by Kafra Headquarters. +-------------------------- +Type: Supportive +Effect: Disable EXP loss penalty when character dies +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +13581# +A box contains 1 Life Insurance +amount: 50 +Item description: +-------------------------- +A life insurance certificate issued by Kafra Headquarters. +-------------------------- +Type: Supportive +Effect: Disable EXP loss penalty when character dies +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +13582# +A box contains 1 Convex Mirror +amount: 5 +Item description: +-------------------------- +Convex Mirror - The person in possession of the mirror can detect the appearance of the Boss class monsters. +It has 10 minutes duration and the effect is removed when the player goes out of the map after using the item or quit the game. +Some of the MVP monsters can not be detected. +-------------------------- +Weight: 1 +# +13583# +A box contains 1 Convex Mirror +amount: 30 +Item description: +-------------------------- +Convex Mirror - The person in possession of the mirror can detect the appearance of the Boss class monsters. +It has 10 minutes duration and the effect is removed when the player goes out of the map after using the item or quit the game. +Some of the MVP monsters can not be detected. +-------------------------- +Weight: 1 +-------------------------- +Box Weight: 1 +# +13584# +A box contains 1 Level 10 Blessing Scroll +amount: 30 +Item description: +-------------------------- +A scroll in which a single use of Level 10 Blessing has been recorded. +-------------------------- +Type: Magic scroll +Cast: Level 10 Blessing +Weight: 1 +-------------------------- +Box Weight: 1 +# +13585# +A box contains 1 Level 10 Blessing Scroll +amount: 50 +Item description: +-------------------------- +A scroll in which a single use of Level 10 Blessing has been recorded. +-------------------------- +Type: Magic scroll +Cast: Level 10 Blessing +Weight: 1 +-------------------------- +Box Weight: 1 +# +13586# +A box contains 1 Level 5 Adrenaline Rush Scroll +amount: 30 +Item description: +-------------------------- +A scroll in which a single use of Level 5 Adrenaline Rush has been recorded. +-------------------------- +Type: Magic scroll +Cast: Level 5 Adrenaline Rush +Weight: 1 +-------------------------- +Box Weight: 1 +# +13587# +A box contains 1 Level 5 Adrenaline Rush Scroll +amount: 50 +Item description: +-------------------------- +A scroll in which a single use of Level 5 Adrenaline Rush has been recorded. +-------------------------- +Type: Magic scroll +Cast: Level 5 Adrenaline Rush +Weight: 1 +-------------------------- +Box Weight: 1 +# +13588# +A box contains 1 Level 5 Assumptio Scroll +amount: 30 +Item description: +-------------------------- +A scroll in which a single use of Level 5 Assumptio has been recorded. +-------------------------- +Type: Magic scroll +Cast: Level 5 Assumptio +Weight: 1 +-------------------------- +Box Weight: 1 +# +13589# +A box contains 1 Level 5 Assumptio Scroll +amount: 30 +Item description: +-------------------------- +A scroll in which a single use of Level 5 Assumptio has been recorded. +-------------------------- +Type: Magic scroll +Cast: Level 5 Assumptio +Weight: 1 +-------------------------- +Box Weight: 1 +# +13590# +A box contains 1 Level 5 Aspersio Scroll +amount: 30 +Item description: +-------------------------- +A scroll in which a single use of Level 5 Aspersio has been recorded. Requires 1 Holy Water. +-------------------------- +Type: Magic scroll +Cast: Level 5 Aspersio +Weight: 1 +-------------------------- +Box Weight: 1 +# +13591# +A box contains 1 Level 5 Aspersio Scroll +amount: 50 +Item description: +-------------------------- +A scroll in which a single use of Level 5 Aspersio has been recorded. Requires 1 Holy Water. +-------------------------- +Type: Magic scroll +Cast: Level 5 Aspersio +Weight: 1 +-------------------------- +Box Weight: 1 +# +13592# +A box contains 1 Steamed Desert Scorpions +amount: 30 +Item description: +-------------------------- +This scorpion dish is cooked with the heat of the desert sand and is one of the four best dishes in Sograt Desert cuisine. +-------------------------- +Type: Cooked Food +Effect: AGI +10 +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +13593# +A box contains 1 Steamed Desert Scorpions +amount: 50 +Item description: +-------------------------- +This scorpion dish is cooked with the heat of the desert sand and is one of the four best dishes in Sograt Desert cuisine. +-------------------------- +Type: Cooked Food +Effect: AGI +10 +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +13594# +A box contains 1 Wind Walk Scroll +amount: 30 +Item description: +-------------------------- +A scroll in which a single use of Level 10 Wind Walk has been recorded. +-------------------------- +Type: Magic scroll +Cast: Level 10 Wind Walk +Weight: 1 +-------------------------- +Box Weight: 1 +# +13595# +A box contains 1 Wind Walk Scroll +amount: 50 +Item description: +-------------------------- +A scroll in which a single use of Level 10 Wind Walk has been recorded. +-------------------------- +Type: Magic scroll +Cast: Level 10 Wind Walk +Weight: 1 +-------------------------- +Box Weight: 1 +# +13596# +A box contains 1 Dragon Breath Cocktail +amount: 30 +Item description: +-------------------------- +A cocktail whose unforgettable flavor is as potent as the breath of a dragon. +-------------------------- +Type: Cooked Food +Effect: INT +10 +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +13597# +A box contains 1 Dragon Breath Cocktail +amount: 50 +Item description: +-------------------------- +A cocktail whose unforgettable flavor is as potent as the breath of a dragon. +-------------------------- +Type: Cooked Food +Effect: INT +10 +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +13598# +A box contains 1 Battle Manual +amount: 1 +Item description: +-------------------------- +This well written, detailed manual explains effective battle methods. +-------------------------- +Type: Supportive +Effect: Experience gained +50% +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +13599# +A box contains 1 Battle Manual +amount: 5 +Item description: +-------------------------- +This well written, detailed manual explains effective battle methods. +-------------------------- +Type: Supportive +Effect: Experience gained +50% +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +13600# +A box contains 1 Tokens of Siegfried +amount: 5 +Item description: +-------------------------- +A certificate imbued with the power of the invulnerable Siegfried which allows its bearer to overcome death. +-------------------------- +Type: Supportive +Effect: Revives KO'ed character +Weight: 1 +-------------------------- +Box Weight: 1 +# +13601# +A box contains 1 Tokens of Siegfried +amount: 20 +Item description: +-------------------------- +A certificate imbued with the power of the invulnerable Siegfried which allows its bearer to overcome death. +-------------------------- +Type: Supportive +Effect: Revives KO'ed character +Weight: 1 +-------------------------- +Box Weight: 1 +# +13602# +A box containing 30 Kafra Cards. +-------------------------- +Kafra Card - Kafra will be in service when used. +-------------------------- +Weight: 1 +# +13603# +A box containing 50 Kafra Cards. +-------------------------- +Kafra Card - Kafra will be in service when used. +-------------------------- +Weight: 1 +# +13604# +A box containing 30 Steamed Tongues. +-------------------------- +A very pricey Louyang dish that tastes absolutely superb. +-------------------------- +Type: Cooked Food +Effect: STR +10 +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +13605# +A box containing 50 Steamed Tongues. +-------------------------- +A very pricey Louyang dish that tastes absolutely superb. +-------------------------- +Type: Cooked Food +Effect: STR +10 +Effect duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +13606# +A box containing 1 tasty Bubble Gums. +-------------------------- +Bubble gum - Item drop rate increase by 100% for 30 minutes. +-------------------------- +Weight: 1 +# +13607# +A box containing 5 tasty Bubble Gums. +-------------------------- +Bubble gum - Item drop rate increase by 100% for 30 minutes. +-------------------------- +Weight: 1 +# +13608# +A box containing 1 Megaphones. +-------------------------- +Megaphone - Allows server-wide broadcasting. +-------------------------- +Weight: 1 +# +13609# +A box containing 5 Megaphones. +-------------------------- +Megaphone - Allows server-wide broadcasting. +-------------------------- +Weight: 1 +# +13610# +A box that contains 5 Enriched Eluniums. +Description: +Old Concentrated Elunium that has been buried deep underground. +Enhances a chance of successful armor upgrade. +Only Suhnbi of Payon is capable of refining with this material. +-------------------------- +Weight: 1 +# +13611# +A box that contains 5 Enriched Oridecons. +Description: +Old Dense Oridecon that has been buried deep underground. +Enhances a chance of successful weapon upgrade. +Only Suhnbi of Payon is capable of refining with this material. +-------------------------- +Weight: 1 +# +13612# +A box containing 1 Arrest Handcuffs. +-------------------------- +Weight: 1 +# +13613# +A box containing a black color Pet Egg Scroll, there are chances to obtain Ghostring card, Angelring card, Dark Lord card, +Flying Angel and others items from this pet egg scroll. +-------------------------- +Weight: 1 +# +13614# +A box containing a Cat Eye like Pet Egg Scroll, there are chances to obtain ArchAngelring card, +Pharaoh card and others items from this pet egg scroll. +-------------------------- +Weight: 1 +# +13615# +A box containing 1 red color Pet Egg Scroll, there are chances to obtain House Auger, Drake card, +Maya card and others items from this pet egg scroll. +-------------------------- +Weight: 1 +# +13616# +A box containing golden color Pet Egg Scroll, there are chances to obtain Pheeroni card, Doppelganger card, +Osiris Card and others cards from this pet egg scroll. +-------------------------- +Weight: 1 +# +13617# +A black color Pet Egg Scroll which is said to have chances to give a Super Pet Egg. +(Non-tradable and non-discardable). +-------------------------- +Weight: 1 +# +13618# +A cat eye like Pet Egg Scroll which is said to have chances to give a Super Pet Egg. +(Non-tradable and non-discardable). +-------------------------- +Weight: 1 +# +13619# +A red color Pet Egg Scroll which is said to have chances to give a Super Pet Egg. +(Non-tradable and non-discardable). +-------------------------- +Weight: 1 +# +13620# +A golden color Pet Egg Scroll which is said to have chances to give a Super Pet Egg. +(Non-tradable and non-discardable). +-------------------------- +Weight: 1 +# +13621# +A box containing 30 Greed Scrolls, whicheach enable a single cast of Greed. +This scroll has the same restrictions as the normal casting of Greed; some maps do not allow Greed to be used. +-------------------------- +Weight: 1 +# +13622# +A box containing 50 Greed Scroll Box. +-------------------------- +Weight: 1 +# +13623# +A box containing 100 Greed Scroll Box. +-------------------------- +Weight: 1 +# +13624# +A box scroll that contains Evasion Scroll. +Evasion Scroll - Increases Dodge for 30 minutes. +Effect disappear upon death. +-------------------------- +Weight: 1 +# +13625# +A box scroll that contains Concentration Scroll. +Concentration Scroll - Increases Accuracy for 30 minutes. +Effect disappear upon death. +-------------------------- +Weight: 1 +# +13626# +A box containing 1 yellow color Pet Egg Scroll, there are chances to obtain Baphomet card, +Marc card and others cards from this pet egg scroll. +-------------------------- +Weight: 1 +# +13627# +A box containing 1 red color Pet Egg Scroll, there are chances to obtain Orc Lord card, +And others cards from this pet egg scroll. +-------------------------- +Weight: 1 +# +13628# +A box containing 1 blue color Pet Egg Scroll, there are chances to obtain Baphomet card, Pharoah card, +Whisper Boss card and others cards from this pet egg scroll. +-------------------------- +Weight: 1 +# +13629# +A box containing 1 green color Pet Egg Scroll, there are chances to obtain Moonlight card, +Phen card and others cards from this pet egg scroll. +-------------------------- +Weight: 1 +# +13630# +A yellow color Pet Egg Scroll which is said to have chances to give a Super Pet Egg. +(Non-tradable and non-discardable). +-------------------------- +Weight: 1 +# +13631# +A red color Pet Egg Scroll which is said to have chances to give a Super Pet Egg. +(Non-tradable and non-discardable). +-------------------------- +Weight: 1 +# +13632# +A blue color Pet Egg Scroll which is said to have chances to give a Super Pet Egg. +(Non-tradable and non-discardable). +-------------------------- +Weight: 1 +# +13633# +A green color Pet Egg Scroll which is said to have chances to give a Super Pet Egg. +(Non-tradable and non-discardable). +-------------------------- +Weight: 1 +# +13634# +A box containing 2 Steamed Tongue, 2 Steamed Desert Scorpions, 2 Battle Manual, 15 Level 10 Blessing Scroll, +15 Level 10 Increase Agility Scroll, 1 Kafra Card, 1 Token of Siegfried. +-------------------------- +Weight: 1 +# +13635# +A box containing 2 Steamed Tongue, 2 Stew of Immortality, 2 Battle Manual, 15 Level 10 Blessing Scroll, +15 Level 10 Increase Agility Scroll, 1 Kafra Card, 1 Token of Siegfried. +-------------------------- +Weight: 1 +# +13636# +A box containing 2 Dragon Breath Cocktail, 2 Hwergelmir's Tonic, 2 Battle Manual, 15 Level 10 Blessing Scroll, +15 Level 10 Increase Agility Scroll, 1 Kafra Card, 1 Token of Siegfried. +-------------------------- +Weight: 1 +# +13637# +A box containing 2 Dragon Breath Cocktail, 2 Stew of Immortality, 2 Battle Manual, 15 Level 10 Blessing Scroll, +15 Level 10 Increase Agility Scroll, 1 Kafra Card, 1 Token of Siegfried. +-------------------------- +Weight: 1 +# +13638# +A box containing 2 Dragon Breath Cocktail, 2 Steamed Tongue, 2 Battle Manual, 15 Level 10 Blessing Scroll, +15 Level 10 Increase Agility Scroll, 1 Kafra Card, 1 Token of Siegfried. +-------------------------- +Weight: 1 +# +13639# +A box containing 2 Steamed Tongue, 2 Steamed Desert Scorpions, 2 Battle Manual, 24 Level 5 Adrenaline Rush Scroll, +20 Level 5 Aspersio Scroll, 1 Kafra Card, 1 Token of Siegfried. +-------------------------- +Weight: 1 +# +13640# +A box containing 4 Steamed Tongue, 4 Steamed Desert Scorpions, 4 Battle Manual, 30 Level 10 Blessing Scroll, +30 Level 10 Increase Agility Scroll, 2 Kafra Card, 2 Token of Siegfried. +-------------------------- +Weight: 1 +# +13641# +A box containing 4 Steamed Tongue, 4 Stew of Immortality, 30 Level 10 Blessing Scroll, +30 Level 10 Increase Agility Scroll, 2 Kafra Card, 2 Token of Siegfried. +-------------------------- +Weight: 1 +# +13642# +The Start your Journey Pack contains several items that will allow you move around Rune Midgard kingdom's cities so you can complete your job change quest quickly, get more exp for 30 minutes and keep yourself heal during early adventure battles. +Also 20 Red Envelopes are given to help you get that last little bit of experience needed for that next Level. +Contains: +20 Red Envelopes +200 Novice Red Potions +1 Battle Manual +3 Rune Midgard Butterfly Wings +Can only be stored. +-------------------------- +Weight: 1 +# +13643# +A box containing 4 Dragon Breath Cocktail, 4 Stew of Immortality, 30 Level 10 Blessing Scroll, +30 Level 10 Increase Agility Scroll, 2 Kafra Card, 2 Token of Siegfried. +-------------------------- +Weight: 1 +# +13644# +A box containing 4 Dragon Breath Cocktail, 4 Steamed Tongue, 30 Level 10 Blessing Scroll, +30 Level 10 Increase Agility Scroll, 2 Kafra Card, 2 Token of Siegfried. +-------------------------- +Weight: 1 +# +13645# +A box containing 4 Steamed Tongue, 4 Steamed Desert Scorpions, 4 Battle Manual, +48 Level 5 Adrenaline Rush Scroll, 40 Level 5 Aspersio Scroll, 2 Kafra Card, 2 Token of Siegfried. +-------------------------- +Weight: 1 +# +13646# +A box contains 1 Refined Infiltrator +Rental duration: 1 Week +Item description: +-------------------------- +A lethal Katar that has been perfectly designed to carry out quick assassinations. +-------------------------- +DEF +3 +FLEE +5 +Perfect Dodge +2 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 70%. +-------------------------- +Type: Katar +Attack: 189 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Assassin classes +-------------------------- +Weight: 1 +# +13647# +A box containing 1 Refined Muramasa. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13648# +A box containing 1 Refined Excalibur. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13649# +A box containing 1 Refined Combat Knife. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13650# +A box containing 1 Refined Dagger of Counter. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13651# +A box containing 1 Refined Kaiser Knuckle. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13652# +A box containing 1 Refined Pole Axe. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13653# +A box containing 1 Refined Mighty Staff. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13654# +A box containing 1 Refined Light Epsilon. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13655# +A box containing 1 Refined Ballista. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13656# +A box containing 1 Refined Sage's Diary. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13657# +A box containing 1 Refined Ashura. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13658# +A box containing 1 Refined Apple of Archer. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13659# +A box containing 1 Refined Bunny Band. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13660# +A box containing 1 Refined Sakkat. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13661# +A box containing 1 Refined Grand Circlet. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13662# +A box containing 1 Refined Elven Ears. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13663# +A box containing 1 Refined Romantic Flower. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13664# +A box containing 1 Refined Critical Ring. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13665# +A box containing 1 Refined Earring. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13666# +A box containing 1 Refined Ring. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13667# +A box containing 1 Refined Necklace. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13668# +A box containing 1 Refined Glove. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13669# +A box containing 1 Refined Brooch. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13670# +A box containing 1 Refined Rosary. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13671# +A box containing 1 Refined Safety Ring. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13672# +A box containing 1 Refined Vesper Core 01. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13673# +A box containing 1 Refined Vesper Core 02. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13674# +A box containing 1 Refined Vesper Core 03. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13675# +A box containing 1 Refined Vesper Core 04. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13676# +A box containing 1 Refined Drooping Cat. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13677# +A box containing 1 Refined Majestic Goat. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13678# +A box containing 1 Refined Deviruchi Hat. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13679# +A box containing 1 Refined Executioner. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13680# +A box containing 1 Bloody Axe. Handle with care! +Rental duration: 1 day +-------------------------- +Weight: 1 +# +13681# +A box containing 1 Tomahawk. Handle with care! +Rental duration: 1 day +-------------------------- +Weight: 1 +# +13682# +A box containing 1 Bow of Rudra. Handle with care! +Rental duration: 1 day +-------------------------- +Weight: 1 +# +13683# +A box containing 1 Cutlass. Handle with care! +Rental duration: 1 day +-------------------------- +Weight: 1 +# +13684# +A box containing 1 Refined Solar Sword. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13685# +A box containing 1 Sword Breaker. Handle with care! +Rental duration: 1 day +-------------------------- +Weight: 1 +# +13686# +A box containing 1 Mail Breaker. Handle with care! +Rental duration: 1 day +-------------------------- +Weight: 1 +# +13687# +A box containing 1 Moon Sword. Handle with care! +Rental duration: 1 day +-------------------------- +Weight: 1 +# +13688# +A box containing 1 Refined Wrench. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +13689# +A box containing 10 Bok Choy. +-------------------------- +Weight: 1 +# +13690# +A box containing 10 Green Maiden Cake. +-------------------------- +Weight: 1 +# +13691# +A box containing 1 Freya's Clothes. +-------------------------- +Weight: 1 +# +13692# +A box containing 1 Freya's Boots. +-------------------------- +Weight: 1 +# +13693# +A box containing 1 Freya's Manteau. +-------------------------- +Weight: 1 +# +13694# +A box containing 1 Freya's Crown. +-------------------------- +Weight: 1 +# +13695# +A box containing 25 Battle Manual 25% books inside. +-------------------------- +Exp rate is increased to 25% for 30 minutes. +-------------------------- +Weight: 1 +# +13696# +A box containing 100 Greater Battle Manual books inside. +-------------------------- +Exp rate is increased to 100% for 30 minutes. +-------------------------- +Weight: 1 +# +13697# +A box containing 10 Level 10 Blessing Scrolls. +-------------------------- +Weight: 1 +# +13698# +A box containing 10 Level 10 Increase Agility Scrolls. +-------------------------- +Weight: 1 +# +13699# +A box containing 10 Level 10 Wind Walk Scrolls. +-------------------------- +Weight: 1 +# +13700# +A box containing 10 Level 5 Adrenaline Rush Scrolls. +-------------------------- +Weight: 1 +# +13701# +A box containing 1 egg scroll with the chance of obtaining +An Flying Angel, Elven Ears, Zeny Egg Scroll and others. +-------------------------- +Weight: 1 +# +13702# +A box containing 1 egg scroll with the chance of obtaining +An Elephant Hat, Happy Wig, Zeny Scroll and others. +-------------------------- +Weight: 1 +# +13703# +A box containing 1 egg scroll with the chance of obtaining +A Cute Ribbon, Lotus, Zeny Scroll and others. +-------------------------- +Weight: 1 +# +13704# +A black color Pet Egg Scroll which is said to have chances to give a Super Pet Egg. +(Non-tradable and non-discardable). +-------------------------- +Weight: 1 +# +13705# +A cat eye like Pet Egg Scroll which is said to have chances to give a Super Pet Egg. +(Non-tradable and non-discardable). +-------------------------- +Weight: 1 +# +13706# +A red color Pet Egg Scroll which is said to have chances to give a Super Pet Egg. +(Non-tradable and non-discardable). +-------------------------- +Weight: 1 +# +13707# +A golden color Pet Egg Scroll which is said to have chances to give a Super Pet Egg. +(Non-tradable and non-discardable). +-------------------------- +Weight: 1 +# +13708# +A holy, pet egg shaped scroll. +Able to Obtain Chong E egg, Spring Rabbit egg exchange ticket, Pet food and other items. +-------------------------- +Weight: 1 +# +13709# +금색으로 빛나는 멋진 Box. +A package box that contains 20 Blessing Scroll, 20 Increase Agility Scroll, +20 Wind Walk Scroll and 20 Adrenaline Rush Scroll. +-------------------------- +Weight: 1 +# +13710# +A box that contains 10 Gym Passes. +-------------------------- +A Gym Pass that can be given to a special NPC to learn a skill that will increase your Maximum Weight Capacity by 200 For each skill Level. +This special skill can only be learned up to Level 10. +Find Ripped Cabuspayon,173,141,0,100,0,0 in Payon. +-------------------------- +Weight: 1 +-------------------------- +Box Weight: 1 +# +13711# +A box that contains 10 Small Life Potions. +-------------------------- +These potions restore an amount of HP equal to 5% of your MaxHP every 5 seconds for a 10 minute duration. +Not effective in Berserk status. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13712# +A box that contains 30 Small Life Potions. +-------------------------- +These potions restore an amount of HP equal to 5% of your MaxHP every 5 seconds for a 10 minute duration. +Not effective in Berserk status. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13713# +A box that contains 50 Small Life Potions. +-------------------------- +These potions restore an amount of HP equal to 5% of your MaxHP every 5 seconds for a 10 minute duration. +Not effective in Berserk status. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13714# +A box that contains 10 Medium Life Potions. +-------------------------- +These potions restore an amount of HP equal to 7% of your MaxHP every 4 seconds for a 10 minute duration. +Not effective in Berserk status. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13715# +A box that contains 30 Medium Life Potions. +-------------------------- +These potions restore an amount of HP equal to 7% of your MaxHP every 4 seconds for a 10 minute duration. +Not effective in Berserk status. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13716# +A box that contains 50 Medium Life Potions. +-------------------------- +These potions restore an amount of HP equal to 7% of your MaxHP every 4 seconds for a 10 minute duration. +Not effective in Berserk status. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13717# +A box that contains 5 Abrasives. +-------------------------- +Each Abrasive increases Critical by 30 for a 5 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13718# +A box that contains 10 Abrasives. +-------------------------- +Each Abrasive increases Critical by 30 for a 5 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13719# +A box that contains 5 Regeneration Potions. +-------------------------- +Each potion increases the HP recovery effect of other potions and the Heal skill by 20% for a 30 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13720# +A box that contains 10 Regeneration Potions. +-------------------------- +Each potion increases the HP recovery effect of other potions and the Heal skill by 20% for a 30 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13721# +A box that contains 10 Dungeon Teleport Scrolls that can transport you +once to one of the following dungeons: +-------------------------- +Nogg Road, +Mjolnir Dead Pit, +Robot Factory Lv2, +Einbroch Mine Dungeon, +Payon Dungeon, Toy +Dungeon, Glast Heim +Underprison, Louyang +Dungeon, Hermit's +Checkers, Izlude +Dungeon, Turtle +Island Dungeon, +Clock Tower B3F, +Clock Tower 3F, +Glast Heim Culvert 2F, +Sphinx Dungeon 4F, +Inside Pyramid 4F, +Prontera Culvert 3F, +Amatsu Dungeon 1F +(Tatami Maze), +Somatology Laboratory +1st Floor, or Ayothaya +Ancient Shrine 2F. +Warning - After using it, unless you choose the destination in 1 minute, +it will be useless +-------------------------- +Weight: 1 +# +13722# +A box containing 1 Pecopeco Hairband that resembles Pecopeco's Wings. +It can be used for 2 weeks after opening the box. +-------------------------- +Increases Movement Speed. +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +13723# +A box containing 1 Red Glasses +-------------------------- +Description: +A must-have item for those that care about appearances: It can increase your beauty threefold. +MDEF +5. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +-------------------------- +Weight: 1 +# +13724# +A box containing 1 Whisper Mask +-------------------------- +Description: +A mask shaped like a Whisper that feels like its always massaging your face so it might be good for your skin. +AGI +3. +Increases Ghost elemental damage by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper, Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +-------------------------- +Weight: 1 +# +13725# +A box containing 1 Ramen Hat +-------------------------- +Description: +Delicious noodles worn on the head that can be eaten when food is especially scarce. +There's nothing like a good bowl of ramen. Nothing. +DEX +4. +Has a chance to auto-cast Level 1 ecrease AGI each time the wearer is attacked. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +-------------------------- +Weight: 1 +# +13726# +A beautiful box decorated with gold pieces. If you open it, a chance to get rare items. +-------------------------- +Weight: 1 +# +13727# +A beautiful box decorated with silver pieces. If you open it, a chance to get rare items. +-------------------------- +Weight: 1 +# +13728# +A box containing 1 Golden Key. +-------------------------- +Golden Key - A Golden key to open the box. +-------------------------- +Weight: 1 +# +13729# +A box containing 5 Golden Keys. +-------------------------- +Golden Key - A Golden key to open the box. +-------------------------- +Weight: 1 +# +13730# +A box containing 1 Silver Key. +-------------------------- +Silver Key - A Silver key to open the box. +-------------------------- +Weight: 1 +# +13731# +A box containing 5 Silver Keys. +-------------------------- +Silver Key - A Silver key to open the box. +-------------------------- +Weight: 1 +# +13734# +A box containing 1 Peco Peco Hairband. +-------------------------- +Headgear with Pecopeco's wings on it. It makes wearer into move as fas as Pecopeco. +-------------------------- +Increases movement speed by 5%. +Decreases Attack Speed by 10%. +Decreases Casting Time by 5%. +-------------------------- +Weight: 1 +# +13735# +A box containing 1 Red Glasses. +-------------------------- +Must-have item for the pretty. Can make users 3 times more beautiful. +-------------------------- +INT +1 +-------------------------- +Weight: 1 +# +13736# +A box containing 1 Whisper Mask. +-------------------------- +Shaped like a whisper. It feels like massaged on a face. No sure that it is good for skin. +-------------------------- +AGI +3, +Increases damage from Ghost elemental damage by 10%. +-------------------------- +Weight: 1 +# +13737# +A box containing 1 Ramen Hat. +-------------------------- +Noodles put on a head. When hungry, this is portable ration. Be careful not to spoil it. +-------------------------- +DEX +4 +Random chance to auto-cast 1 ecrease AGI on the enemy when attacking. +-------------------------- +Weight: 1 +# +13738# +A box containing 5 Glasses of Illusion. +-------------------------- +A glass of illusion made from morning dew from an Illusion Flower. +Drink the dew to create an illusion that will make it more difficult for enemies to hit you. +Increases your Perfect Dodge by 20 for 1 minute. +Only one may be consumed per 5 minutes. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13739# +A box containing 10 Glass of Illusion. +-------------------------- +A glass of illusion made from morning dew from an Illusion Flower. +Drink the dew to create an illusion that will make it more difficult for enemies to hit you. +Increases your Perfect Dodge by 20 for 1 minute. +Only one may be consumed per 5 minutes. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13740# +A box that contains 5 Shadow Armor Scrolls. +-------------------------- +Endow a character's armor with the Shadow element for a 30 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13741# +A box that contains 10 Shadow Armor Scrolls. +-------------------------- +Endow a character's armor with the Shadow element for a 30 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13742# +A box that contains 30 Shadow Armor Scrolls. +-------------------------- +Endow a character's armor with the Shadow element for a 30 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13743# +A box that contains 5 Holy Armor Scrolls. +-------------------------- +Endow a character's armor with the Holy element for a 30 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13744# +A box that contains 10 Holy Armor Scrolls. +-------------------------- +Endow a character's armor with the Holy element for a 30 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13745# +A box that contains 30 Holy Armor Scrolls. +-------------------------- +Endow a character's armor with the Holy element for a 30 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13746# +A box that contains 10 Small Defense Potions. +-------------------------- +Each potion adds 3% resistance to Physical Attacks for a 1 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13747# +A box that contains 30 Small Defense Potions. +-------------------------- +Each potion adds 3% resistance to Physical Attacks for a 1 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13748# +A box that contains 50 Small Defense Potions. +-------------------------- +Each potion adds 3% resistance to Physical Attacks for a 1 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13749# +A box that contains 10 Big Defense Potions. +-------------------------- +Each potion adds 3% resistance to Physical Attacks for a 3 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13750# +A box that contains 30 Big Defense Potions. +-------------------------- +Each potion adds 3% resistance to Physical Attacks for a 3 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13751# +A box that contains 50 Big Defense Potions. +-------------------------- +Each potion adds 3% resistance to Physical Attacks for a 3 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13752# +A box that contains 10 Small Magic Defense Potions. +-------------------------- +Each potion adds 3% resistance to Magical Attacks for a 1 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13753# +A box that contains 30 Small Magic Defense Potions. +-------------------------- +Each potion adds 3% resistance to Magical Attacks for a 1 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13754# +A box that contains 50 Small Magic Defense Potions. +-------------------------- +Each potion adds 3% resistance to Magical Attacks for a 1 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13755# +A box that contains 10 Big Magic Defense Potions. +-------------------------- +Each potion adds 3% resistance to Magical Attacks for a 3 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13756# +A box that contains 30 Big Magic Defense Potions. +-------------------------- +Each potion adds 3% resistance to Magical Attacks for a 3 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13757# +A box that contains 50 Big Magic Defense Potions. +-------------------------- +Each potion adds 3% resistance to Magical Attacks for a 3 minute duration. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +13758# +A box containing 20 Battle Manual 300%. +-------------------------- +Weight: 1 +# +13759# +A box containing 50 Blue Herb. +-------------------------- +Weight: 1 +# +13760# +A box containing 100 Honey. +-------------------------- +Weight: 1 +# +13761# +A box containing 500 Empty Bottles. +-------------------------- +Weight: 1 +# +13762# +A box containing 70 Royal Jelly. +-------------------------- +Weight: 1 +# +13763# +A box containing coin 6th Anniversary PC-Cafe Items. +-------------------------- +Weight: 1 +# +13764# +A box containing 5 Novice Battle Manual. +-------------------------- +Only usable by a character Level 40 or below. For 30 minutes, grants 3x exp for 30 minutes. +-------------------------- +Weight: 1 +# +13765# +A closed quest envelope. +-------------------------- +Weight: 1 +# +13766# +A box containing 1 Nagan. Please take a care because is fragile. +Duration : 1 Week. +-------------------------- +Rental Item +An one-handed sword topped with several extra edges for making wounds deeper and more unsightly. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 40% +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: One-Handed Sword +Attack: 148 +Weight: 0 +Weapon Level: 4 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +-------------------------- +Box Weight: 1 +# +13767# +A box containing 1 Refined Brocca. Please take a care because is fragile. +Duration : 1 Week. +-------------------------- +Weight: 1 +# +13768# +A box containing 1 Refined Survivor's Rod. Please take a care because is fragile. +Duration : 1 Week. +-------------------------- +Weight: 1 +# +13769# +A box containing 1 Refined Quadrille. Please take a care because is fragile. +Duration : 1 Week. +-------------------------- +Weight: 1 +# +13770# +A box containing 1 Refined Great Axe. Please take a care because is fragile. +Duration : 1 Week. +-------------------------- +Weight: 1 +# +13771# +A box containing 1 Refined Bloody Roar. Please take a care because is fragile. +Duration : 1 Week. +-------------------------- +Weight: 1 +# +13772# +A box containing 1 Refined Hardcover Book. Please take a care because is fragile. +Duration : 1 Week. +-------------------------- +Weight: 1 +# +13773# +A box containing 1 Fire Brand. Please take a care because is fragile. +Duration : 1 Week. +-------------------------- +Weight: 1 +# +13774# +A box containing 1 Immaterial Sword. Please take a care because is fragile. +Duration : 1 Week. +-------------------------- +Weight: 1 +# +13775# +A box containing 1 Refined Unholy Touch. Please take a care because is fragile. +Duration : 1 Week. +-------------------------- +Weight: 1 +# +13776# +A box containing 1 Refined Survivor's Manteau. Please take a care because is fragile. +Duration : 2 Weeks. +-------------------------- +Weight: 1 +# +13777# +A box containing 1 Butterfly Mask. Please take a care because is fragile. +Duration : 2 Weeks. +-------------------------- +Weight: 1 +# +13778# +A box containing 1 Refined Helmet of Orc Hero. Please take a care because is fragile. +Duration : 2 Weeks. +-------------------------- +Weight: 1 +# +13779# +A box containing 1 Refined Wing of Diablo. Please take a care because is fragile. +Duration : 2 Weeks. +-------------------------- +Weight: 1 +# +13780# +A box containing 1 Refined Dark Blinder. Please take a care because is fragile. +Duration : 2 Weeks. +-------------------------- +Weight: 1 +# +13781# +A box containing 1 Refined Drooping Cat. Please take a care because is fragile. +Duration : 2 Weeks. +-------------------------- +Weight: 1 +# +13782# +A box containing 1 Refined Corsair. Please take a care because is fragile. +Duration : 2 Weeks. +-------------------------- +Weight: 1 +# +13783# +A box containing 1 Refined Bloody Iron Ball. Please take a care because is fragile. +Duration : 1 Week. +-------------------------- +Weight: 1 +# +13784# +A box containing 1 Refined Spiritual Ring. Please take a care because is fragile. +Duration : 1 Week. +-------------------------- +Weight: 1 +# +13785# +A box containing 1 Nagan. Please take a care because is fragile. +Duration : 1 Day. +-------------------------- +Weight: 1 +# +13786# +A box containing 1 Refined Brocca. Please take a care because is fragile. +Duration : 1 Day. +-------------------------- +Weight: 1 +# +13787# +A box containing 1 Refined Survivor's Rod. Please take a care because is fragile. +Duration : 1 Day. +-------------------------- +Weight: 1 +# +13788# +A box containing 1 Refined Quadrille. Please take a care because is fragile. +Duration : 1 Day. +-------------------------- +Weight: 1 +# +13789# +A box containing 1 Refined Great Axe. Please take a care because is fragile. +Duration : 1 Day. +-------------------------- +Weight: 1 +# +13790# +A box containing 1 Bloody Roar. Handle with care! +Rental duration: 1 day +-------------------------- +Weight: 1 +# +13791# +A box containing 1 Hardcover. Handle with care! +Rental duration: 1 day +-------------------------- +Weight: 1 +# +13792# +A box containing 1 Fire Brand. Please take a care because is fragile. +Duration : 1 Day. +-------------------------- +Weight: 1 +# +13793# +A box containing 1 Immaterial Sword. Handle with care! +Rental duration: 1 day +-------------------------- +Weight: 1 +# +13794# +A box containing 1 Unholy Touch. Handle with care! +Rental duration: 1 day +-------------------------- +Weight: 1 +# +13795# +A box containing 1 Refined Survivor's Manteau. Please take a care because is fragile. +Duration : 1 Day. +-------------------------- +Weight: 1 +# +13796# +A box containing 1 Butterfly Mask. Please take a care because is fragile. +Duration : 1 Day. +-------------------------- +Weight: 1 +# +13797# +A box containing 1 Refined Helmet of Orc Hero. Please take a care because is fragile. +Duration : 1 Day. +-------------------------- +Weight: 1 +# +13798# +A box containing 1 Refined Wing of Diablo. Please take a care because is fragile. +Duration : 1 Day. +-------------------------- +Weight: 1 +# +13799# +A box containing 1 Refined Dark Blinder. Please take a care because is fragile. +Duration : 1 Day. +-------------------------- +Weight: 1 +# +13800# +A box containing 1 Refined Drooping Cat. Please take a care because is fragile. +Duration : 1 Day. +-------------------------- +Weight: 1 +# +13801# +A box containing 1 Refined Corsair. Please take a care because is fragile. +Duration : 1 Day. +-------------------------- +Weight: 1 +# +13802# +A box containing 1 Bloody Iron Ball. Handle with care! +Rental duration: 1 day +-------------------------- +Weight: 1 +# +13803# +A box containing 1 Refined Spiritual Ring. Please take a care because is fragile. +Duration : 1 Day. +-------------------------- +Weight: 1 +# +13804# +A box that contains 10 I-Love-You firecrackers. +-------------------------- +I LOVE YOU!' is shown with pretty fireworks. +-------------------------- +Weight: 1 +# +13805# +A box that contains 10 Whiteday firecrackers. +-------------------------- +HAPPY WHITEDAY!' is shown with pretty fireworks. +-------------------------- +Weight: 1 +# +13806# +A box that contains 10 Valentine's Day firecrackers. +-------------------------- +HAPPY VALENTINE'S DAY!' is shown with pretty fireworks. +-------------------------- +Weight: 1 +# +13807# +A box that contains 10 Birthday firecrackers. +-------------------------- +HAPPY BIRTHDAY!' is shown with pretty fireworks. +-------------------------- +Weight: 1 +# +13808# +A box that contains 10 Christmas firecrackers. +-------------------------- +MERRY CHRISTMAS!' is shown with pretty fireworks. +-------------------------- +Weight: 1 +# +13809# +A box that contains 100 Blue Gemstones. +-------------------------- +Weight: 1 +# +13810# +A box that contains 25 Light Blue Potions. +Description: +A bottle of potion made from grinded Blue Herbs that restores about 60 SP. +-------------------------- +Weight: 1 +-------------------------- +Box Weight: 1 +# +13811# +Contains 5each of all the +20 Stat foods. Box is not tradable, but the food is. +-------------------------- +Weight: 1 +# +13812# +A box that contains 6 kinds of Level 2 Dishes. +-------------------------- +Weight: 1 +# +13813# +A box that contains 6 kinds of Level 3 Dishes. +-------------------------- +Weight: 1 +# +13814# +A box containing healing potion and speed potion to avoid from the monster. A box that contains 100 Yellow Potion, 10 Speed Potion, 5 Yggdrasil Berry. +-------------------------- +Weight: 1 +# +13815# +A box with 10 rings inside. +Taming item for 'Knife Goblin'. +-------------------------- +Weight: 1 +# +13816# +A box with 10 rings inside. +Taming item for 'Flail Goblin'. +-------------------------- +Weight: 1 +# +13817# +A box with 10 rings inside. +Taming item for 'Hammer Goblin'. +-------------------------- +Weight: 1 +# +13818# +A box with 10 holy marbles inside. +Taming item for 'Red Deleter'. +-------------------------- +Weight: 1 +# +13819# +A box with 10 burning stones inside. +Taming item for 'Diabolic'. +-------------------------- +Weight: 1 +# +13820# +A box with 10 skulls inside. +Taming item for 'Wanderer'. +-------------------------- +Weight: 1 +# +13821# +A box that contains 10 Green Apple. +Green Apple - A tasty green apple. Great food for Goblin. +-------------------------- +Weight: 1 +# +13822# +A box with 10 Barbeques inside. +Barbeque - A wildly barbecued meat. Great food for Deleter. +-------------------------- +Weight: 1 +# +13823# +A box with 10 Meat Skewer inside. +Meat Skewer - Well grilled meat skewer. It's looking delicious. Great food for Diabolic. +-------------------------- +Weight: 1 +# +13824# +A box with 10 Spirit Liquors inside. +Spirit Liquor - A drink for the departed soul to outlive in human world. Great drink for Wanderer. +-------------------------- +Weight: 1 +# +13825# +A box that glows with a mysterious, green color. If you open it, something good may be inside. +-------------------------- +Weight: 20 +# +13826# +RIC booster Power Up, A box consist ofeach 3 kinds those are Realgar Wine, Sesame Pastry, Honey Pastry. +-------------------------- +Weight: 1 +# +13827# +RIC booster Power Up, A box consist ofeach 3 kinds those are Exorcize Herb, Sesame Pastry, Honey Pastry. +-------------------------- +Weight: 1 +# +13828# +RIC booster Resist Pack, A box consist ofeach 3 kinds those are Resist Fire and Resist Water. +-------------------------- +Weight: 1 +# +13829# +RIC booster Resist Pack, A box consist ofeach 3 kinds those are 'Resist Earth and Resist Wind. +-------------------------- +Weight: 1 +# +13830# +RIC booster Stat, A box consist ofeach 3 kinds those are STR +5, AGI +5, VIT +5 +-------------------------- +Weight: 1 +# +13831# +RIC booster Stat, A box consist ofeach 3 kinds those are INT +5, LUK +5, DEX +5 +-------------------------- +Weight: 1 +# +13832# +RIC booster Stat, A box consist ofeach 3 kinds those are AGI +5, VIT +5, DEX +5 +-------------------------- +Weight: 1 +# +13833# +RIC booster Stat, A box consist ofeach 3 kinds those are INT +5, VIT +5, DEX +5 +-------------------------- +Weight: 1 +# +13834# +A box containing 5 Dungeon Teleport Scroll II. +When used allows you to teleport to a specific dungeon from the following list: +Thor's Volcano Dungeon F2 Ice Dungeon Entrance ... Niflheim Labyrinth Juperos +... Kiel Hyre's School Entrance Thanatos Tower Entrance The Abyss Lakes Entrance +Rachel Temple Entrance Odin Temple Entrance. +-------------------------- +Weight: 1 +# +13835# +A box containing 10 Dungeon Teleport Scroll II. +When used allows you to teleport to a specific dungeon from the following list: +Thor's Volcano Dungeon F2 Ice Dungeon Entrance ... Niflheim Labyrinth Juperos +... Kiel Hyre's School Entrance Thanatos Tower Entrance The Abyss Lakes Entrance +Rachel Temple Entrance Odin Temple Entrance. +-------------------------- +Weight: 1 +# +13836# +A box containing 1 Steamed Tongue. +-------------------------- +Weight: 1 +# +13837# +A box containing 1 Steamed Desert Scorpions. +-------------------------- +Weight: 1 +# +13838# +A box containing 1 Dragon Breath Cocktail. +-------------------------- +Weight: 1 +# +13839# +A box containing 1 Hwergelmir's Tonic. +-------------------------- +Weight: 1 +# +13840# +A box containing 1 Cooked Nine Tail. +-------------------------- +Weight: 1 +# +13841# +A box containing 1 Stew of Immortality. +-------------------------- +Weight: 1 +# +13842# +A box containing 1 Payment Statement for Kafra Employee. +-------------------------- +Weight: 1 +# +13843# +A box containing 1 Battle Manual. +Exp rate is increased to 25% for 30 minutes. +-------------------------- +Weight: 1 +# +13844# +A box containing 1 Heroic Stone. +-------------------------- +Weight: 1 +# +13845# +A mystery travel sack left behind by a legendary adventurer. It seems to contain valuable items in it. Let's check out. +-------------------------- +Weight: 1 +# +13846# +A mystery travel sack left behind by a legendary adventurer. It seems to contain valuable items in it. Let's check out. +-------------------------- +Weight: 1 +# +13847# +A mystery travel sack left behind by a legendary adventurer. It seems to contain valuable items in it. Let's check out. +-------------------------- +Weight: 1 +# +13848# +A mystery travel sack left behind by a legendary adventurer. It seems to contain valuable items in it. Let's check out. +-------------------------- +Weight: 1 +# +13849# +A box containing 5 scrolls on which the towns of Run Midgartz are written. You may be moving to the town when using it. +Prontera, Geffen, Payon, Morocc, Al De Baran, Alberta +Warning: If no town is selected, the item will disappear. +-------------------------- +Weight: 1 +# +13850# +A box containing 10 enchanted butterfly wings that sends its user to the towns of the Rune Midgarts Kingdom. +Locations: Prontera, Geffen, Payon, Morocc, Al De Baran, Alberta +-------------------------- +Warning: If no town is selected, the item will disappear. +-------------------------- +Weight: 1 +# +13851# +A box containing 5 scrolls on which the towns of Schwaltzwalt Republic are written. You may be moving to the town when using it. +Yuno, Lighthalzen, Einbroch, Hugel +-------------------------- +Warning: If no town is selected, the item will disappear. +-------------------------- +Weight: 1 +# +13852# +A box containing 10 enchanted butterfly wings that sends its user to the towns of the Schwaltzwalt. +Locations: Juno, Lighthalzen, Einbroch, Hugel +-------------------------- +Warning: If no town is selected, the item will disappear. +-------------------------- +Weight: 1 +# +13853# +A box containing 5 scrolls on which the towns of Rachel are written. You may be moving to the town when using it. +Locations: Veins, Rachel +-------------------------- +Warning: If no town is selected, the item will disappear. +-------------------------- +Weight: 1 +# +13854# +A box containing 10 enchanted butterfly wings that sends its user to the towns of Arunafeltz. +Locations: Veins, Rachel +-------------------------- +Warning: If no town is selected, the item will disappear. +-------------------------- +Weight: 1 +# +13855# +A box containing 10 scrolls on which the ancient towns are written. You may be moving to the town when using it. +Ayothaya, Amatsu, Luoyang, Kunlun +-------------------------- +Warning: If no town is selected, the item will disappear. +-------------------------- +Weight: 1 +# +13856# +A box containing 10 enchanted butterfly wings that sends its user to the island towns of Rune Midgard. +Locations: Ayothaya, Amatsu, Luoyang, Kunlun, Moscovia +-------------------------- +Warning: If no town is selected, the item will disappear. +-------------------------- +Weight: 1 +# +13857# +A box containing 5 Candy which are marvelous bounces. +1 minute Increases ATK +20, Attack Speed +25% and permanent endure. +Decreases 100HP per 10 seconds. Cooldown for 3 minutes. +-------------------------- +Weight: 1 +# +13858# +A box containing 10 Candy which are marvelous bounces. +1 minute Increases ATK +20, Attack Speed +25% and permanent endure. +Decreases 100HP per 10 seconds. Cooldown for 3 minutes. +-------------------------- +Weight: 1 +# +13859# +A sealed paper envelope. It seems to contain an important message in it. +-------------------------- +Weight: 1 +# +13860# +A sealed paper envelope. It seems to contain an important message in it. +-------------------------- +Weight: 1 +# +13861# +A box containing 4 Battle Manual. +-------------------------- +Weight: 1 +# +13862# +A welcoming Package for new visitors to Rune Midgard. +Contains 2 Battle Manuals to speed up your Leveling. +15 Bless and AGI Scrolls to make you move faster and increase your power! +Also a few Yellow Butterfly wings to allow you to teleport to the important towns on the Midgard Continent to get your job change easily! +-------------------------- +The items may be put in Kafra storage. +-------------------------- +Weight: 1 +# +13863# +A box containing 10 Repair Weapon Scroll. Several ore needed to be repaired offers together. +-------------------------- +Weight: 1 +# +13864# +A box that contains 1 Hockey Mask. +-------------------------- +Hockey Mask Description: +Increases damage on Demi-Human race by 5%. +Can be placed in Kafra Storage. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +All classes except Novice +-------------------------- +Weight: 1 +# +13865# +A box containing Observer available during a week. +-------------------------- +A device that can measure opponent's power. Commoners have power Level 5. Heroes have a power Level over 9,000! +Enables the use of Level 1 Sense. +-------------------------- +Weight: 1 +# +13866# +A box that contains 1 Flapping Angel Wing +Description: +A headgear that looks +like flapping angel +wings. It makes you +feel might lighter +when you wear it, +though it also makes +you feel pretty dizzy. +Decreases After Attack Delay and Variable Casting Speed by 3%. +INT +1, AGI +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +-------------------------- +Weight: 1 +# +13867# +A box containing 1 Nekomimi. +-------------------------- +A cute cat-looking hat which enhances its wearer's look. +Has a cat tail which emphasizes the appearance. +LUK +2 +MDEF +10 +Decreases 5% of damage taken from Brute race. +-------------------------- +Weight: 1 +# +13868# +A box containing 1 Moonowl Cap. +-------------------------- +A hat created with the monster Moonlight Flower in mind. +It is said that it uses 30% of Moonlight Flower's fur and 70% of Nine Tails fur. +Note that you should only use hand washing to clean it. +Wear this with your Nine Tails scarf for the perfect winter fashion! +Automatically cast Level 1 Increase Agility by chance when struck by Physical attack. +DEX +2 +-------------------------- +Weight: 1 +# +13869# +A box that contains 1 Chick Hat +Description: +A hat adorned with a +cute chick that brings +feelings of joy to those that see it hopping. +Adds 3% resistance to +Demihuman and Animal +monsters. Cannot +be upgraded. Enables +Level 2 Double Attack. +MaxHP and SP +50 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +-------------------------- +Weight: 1 +# +13870# +A box that contains Beauty Gift Certificates. +-------------------------- +Weight: 1 +# +13871# +This box will give you all of the Magician Set cards: +Bloody Butterfly Card +Parasite Card +Harpy Card +Miyabi Doll Card +Evil Nymph Card +Loli Ruri Card +Weight: 1 +# +13872# +This box will give you all of the Acolyte Set cards: +Rideword Card +Seal Card +Enchanted Peach Tree Card +Geographer Card +Christmas Cookie Card +Weight: 1 +# +13873# +This box will give you all of the Archer Set cards: +Cruiser Card +Anolian Card +Merman Card +Dragon Tail Card +Alligator Card +Weight: 1 +# +13874# +This box will give you all of the Swordman Set cards: +Freezer Card +Heater Card +Solider Card +Permeter Card +Assaulter Card +Weight: 1 +# +13875# +This box will give you all of the Thief Set cards: +Shinobi Card +Wanderer Card +Wild Rose Card +The Paper Card +Zhu Po Long Card +Weight: 1 +# +13876# +This box will give you all of the Merchant Set cards: +Myst Case Card +Zipper Bear Card +Raggler Card +Baby Leopard Card +Hylozoist Card +# +13877# +A 'Divinity of Clock tower' card package. Contains 'Alarm', 'Clock', 'Punk', 'Tower Keeper' Card. +-------------------------- +Weight: 1 +# +13878# +A 'Majority of Geffenia' card package. Contains 'Incubus' and 'Succubus' card. +-------------------------- +Weight: 1 +# +13879# +A card package containing 'Owl Baron' and 'Owl Duke' Card. +-------------------------- +Weight: 1 +# +13880# +A ghost card package. Contains 'Lude' and 'Quve' Card. +-------------------------- +Weight: 1 +# +13881# +A nightmare card package. Contains 'Nightmare' and 'Nightmare Terror' Card. +-------------------------- +Weight: 1 +# +13882# +An abnormal status card package. Contains 4 Magnolia Cards. +-------------------------- +Weight: 1 +# +13883# +An abnormal status card package. Contains 4 Plankton cards. +-------------------------- +Weight: 1 +# +13884# +An abnormal status card package. Contains 4 Marina cards. +-------------------------- +Weight: 1 +# +13885# +An abnormal status card package. Contains 4 Savage Bebe cards. +-------------------------- +Weight: 1 +# +13886# +An abnormal status card package. Contains 4 Metaller cards. +-------------------------- +Weight: 1 +# +13887# +An abnormal status card package. Contains 4 Familiar cards. +-------------------------- +Weight: 1 +# +13888# +An abnormal status card package. Contains 4 Requiem cards. +-------------------------- +Weight: 1 +# +13889# +A box containing 10 Eluminium. +-------------------------- +Weight: 1 +# +13890# +A box containing 10 Oridecon. +-------------------------- +Weight: 1 +# +13891# +A box containing 10 Fire Elemental Converters for your weapon. +-------------------------- +Weight: 1 +# +13892# +A box containing 10 Water Elemental Converters for your weapon. +-------------------------- +Weight: 1 +# +13893# +A box containing 10 Wind elemental Converters for your weapon. +-------------------------- +Weight: 1 +# +13894# +A box containing 10 Earth Elemental Converters for your weapon. +-------------------------- +Weight: 1 +# +13895# +Beginning packages for the people. To help determine which items are identified for the first fight. +-------------------------- +Weight: 1 +# +13896# +A box containing 5 mercenary monster mimic cash items. +-------------------------- +Weight: 1 +# +13897# +A box containing 5 mercenary monster disguise cash items. +-------------------------- +Weight: 1 +# +13898# +A box containing 5 mercenary monster alice cash items. +-------------------------- +Weight: 1 +# +13899# +A box containing 10 mercenary monster mimic cash items. +-------------------------- +Weight: 1 +# +13900# +A box containing 10 mercenary monster disguise cash items. +-------------------------- +Weight: 1 +# +13901# +A box containing 10 mercenary monster alice cash items. +-------------------------- +Weight: 1 +# +13902# +A box that contains 1 Fish Head Hat. +Weight: 1 +Description: +-------------------------- +A gaping fish head fashioned into a hat. +A nasty stench is released whenever it opens its mouth. +-------------------------- +Random chance to auto-cast Level 1 Frost Weapon when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +13903# +A box that contains 1 Santa Poring Hat. +Weight: 1 +Description: +-------------------------- +A cute hat made from a hopping Poring wearing a Santa's Hat. +-------------------------- +MDEF +2 +-------------------------- +Increases Physical Damage against enemies of Shadow elemental by 3%. +-------------------------- +Decreases damage taken from Shadow elemental attacks by 3%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +13904# +A box that contains 1 Bell Ribbon. +Weight: 1 +Description: +-------------------------- +A cute ribbon adorned with jingling bells. +-------------------------- +VIT +1 +-------------------------- +Enables the use of Level 1 Angelus. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +13905# +A box which contains 10 Battle Manual,10 Life Insurance,10 Bubble Gum. +-------------------------- +Weight: 1 +# +13906# +A box containing 1 White Drooping Cat,Gray Drooping Cat,Pink Drooping Cat,Blue Drooping Cat,Yellow Drooping Cat. +-------------------------- +Weight: 1 +# +13907# +A box which contains 5 Battle Manual,5 Life Insurance,5 Bubble Gum. +-------------------------- +Weight: 1 +# +13908# +A box containing 1 Red Deviruchi Hat,White Deviruchi Hat,Gray Deviruchi Hat. +-------------------------- +Weight: 1 +# +13909# +A box to help coordinate and be rewarded on MVP hunts. +Contains: +1 Bubble Gum, +100% Drop rate: 30 Minutes. +1 Token of Siegfried, Auto-Rez with Full HP/SP +3 Convex Mirrors: Allows stalking and waiting for the MVP with great accuracy. +-------------------------- +Weight: 1 +# +13910# +A box containing 10 Dragon Breath Cocktail,10 Hwergelmir's Tonic,10 Cooked Nine Tail. +-------------------------- +Weight: 1 +# +13911# +A sweet and lovely scroll that has something good for you. +-------------------------- +Weight: 1 +# +13912# +A box containing 20 Party Blessing Scrolls. +Once opened, contents can only be placed in storage. +-------------------------- +A scroll in which a single use of Level 10 Party Blessing has been recorded. +Will cast on all party members within a certain range. +Caution-- This item won't work while your character is casting a spell or skill. +-------------------------- +Weight: 1 +# +13913# +A box containing 20 Party Increase Agility Scrolls. +Once opened, contents can only be placed in storage. +-------------------------- +A scroll in which a single use of Level 10 Party Increase Agility has been recorded. +Will cast on all party members within a certain range. +Caution-- This item won't work while your character is casting a spell or skill. +-------------------------- +Weight: 1 +# +13914# +A box containing 20 Party Assumptio Scrolls. +Once opened, contents can only be placed in storage. +-------------------------- +A scroll in which a single use of Level 5 Party Assumptio has been recorded. +Will cast on all party members within a certain range. +Caution-- This item won't work while your character is casting a spell or skill. +-------------------------- +Weight: 1 +# +13915# +A box that contains 1 Love Angel Magic Powder. Can be used for 1 week. +An item which when you breathe in this powder, your font becomes cute. +To make the best use of it, its best used when you want to express your love, or when you want to say that you're sorry after making a big mistake. +When double clicked, your font changes and when used again, your font goes back to normal +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +13916# +A box that contains 1 Squirrel Magic Powder. Can be used for 1 week. +An item which when you breathe in this powder, your font becomes a bit evil. +To make the best use of it, its best used when you have something you want to complain about, or when you want to do something awful. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +13917# +A box that contains 1 Gogo Magic Powder. Can be used for 1 week. +An item which when you breathe in this powder, your font becomes humorous. +To make the best use of it, its best used when you have something you want to talk about thats funny. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +13918# +A box that contains 1 Koneko Hat. +Weight: 1 +Description: +-------------------------- +A magical kitty hat which shows various expressions on its face. +-------------------------- +INT +1 +MDEF +3 +MATK +3% +MaxSP +3% +-------------------------- +Decreases After Skill Delay by 3%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +13919# +A box that contains 1 Gigantic Majestic Goat. +Weight: 1 +Description: +-------------------------- +A headgear forged from the horns of the Unsealed Baphomet. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 12%. +-------------------------- +Increases ATK depending on the wearer's job Level. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +# +13920# +A box that contains 1 Satanic Chain. +Weight: 1 +Description: +-------------------------- +Satanic Wings forged with an unholy incantation. +-------------------------- +MaxSP +120 +-------------------------- +Random chance to inflict Curse status on wearer when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +13921# +A box that contains 1 Antique Smoking Pipe. +Weight: 1 +Description: +-------------------------- +A long smoking pipe used by gentlemen and nobility. +-------------------------- +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +13922# +A box that contains 1 Bunny Ears Hat. +Weight: 1 +Description: +-------------------------- +A cute Red Top hat with Bunny Ears! +An energetic Bunny Band, perfect for a magic show! +-------------------------- +AGI +3 +-------------------------- +Random chance to auto-cast Level 5 Increase Agility when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +13923# +A box that contains 1 Dark Randgris Helm. +Weight: 1 +Description: +-------------------------- +A helm laced with the power of Valkyrie Randgris. It helps its wearer into concentrate better. +-------------------------- +DEX +3 +MDEF +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +13924# +A box that contains 1 Large Orc Hero Helm. +Weight: 1 +Description: +-------------------------- +A true Orc Hero's headgear. It's so big and heavy that it might hurt your neck. +-------------------------- +STR +2 +-------------------------- +Random chance to auto-cast Level 3 Weapon Perfection when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: None +# +13925# +A mouse scroll that captured mouse's nimbleness. +-------------------------- +Weight: 1 +# +13926# +A gift box with cards only for Crusaders. +Contains 'Archdam', 'Permeter', 'Freezer' and 'Heater' Card. +-------------------------- +Weight: 1 +# +13927# +A gift box with cards only for Alchemist. +Contains 'Zipper Bear', 'Baby Leopard', 'Holden', 'Raggler' and 'Muka' Card. +-------------------------- +Weight: 1 +# +13928# +A gift box with cards only for Rogue. +Contains 'Stainer', 'Wanderer', 'Wild Rose', Shinobi' and 'Wickebine Tres' Card. +-------------------------- +Weight: 1 +# +13929# +A gift box with cards only for Bard and Dancer. +Contains 'Cruiser', 'Anolian', 'Dragon Tail', 'Green Ferus' and 'Alligator' Card. +-------------------------- +Weight: 1 +# +13930# +A gift box with cards only for Sage. +Contains 'Yellow Novus', 'Evil Nymph', 'Harpy', 'Miyabi Doll' and 'Bloody Butterfly' Card. +-------------------------- +Weight: 1 +# +13931# +A gift box with cards only for Monk. +Contains 'Fur Seal', 'Waste Stove', 'Rideword' and 'Cookie' Card. +-------------------------- +Weight: 1 +# +13932# +A box containing 4 'Hill Wind' Card. +-------------------------- +Weight: 1 +# +13933# +A box containing 4 'Laurell Weinder' Card. +-------------------------- +Weight: 1 +# +13934# +A box containing 4 'Red Ferus' Card. +-------------------------- +Weight: 1 +# +13935# +A box containing 4 'Deathword' Card. +-------------------------- +Weight: 1 +# +13936# +A box containing 4 'Pitman' Card. +-------------------------- +Weight: 1 +# +13937# +A box containing 1 Robo Eye +This box and it's contents are account bound +Description: +A weird item that spreads a strange-shaped beam around the eyes. It seems to have been made in outer space. +ATK, MATK +2%, DEX +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +-------------------------- +Weight: 1 +# +13938# +A box containing 1 Maiden's Twin Ribbon. +-------------------------- +An unidentified object look like eye. It comes from space and can give out light. +MaxSP +30, MDEF +3. Slot [1] +Increases Physical Damage against enemies of the monsters by 20% for 2 seconds when the user Received physical attack. +Decreases MDEF by 20% for 2 seconds. +Increases Magical Damage to the monsters by 20% for 2 seconds when the user Received magical attack. +Decreases DEF by 20% for 2 seconds. +-------------------------- +Weight: 1 +# +13939# +A box containing 1 Diadem. +-------------------------- +A crown decorate with jewel of love. Rumor who wear it will meet real love. +INT +1, MATK +3%. Reduces Casting Time by 3%. +A chance uses skill Heal and Sanctuary. +Increases the effectiveness HP using potion pitcher by 3%. +-------------------------- +Weight: 1 +# +13940# +A box containing 100 teleport scrolls that warp you to the Siege Areas. +Valkyrie Realms +Britoniah +Greenwood Lake +Luina +ValkFreya +Nidhoggur +-------------------------- +Cannot be sold. +-------------------------- +Weight: 1 +# +13941# +Random item from the scroll. +-------------------------- +Weight: 1 +# +13942# +A box that contains 1 Love Angel Magic Powder. Can be used for 30 days. +An item which when you breathe in this powder, your font becomes cute. +To make the best use of it, its best used when you want to express your love, or when you want to say that you're sorry after making a big mistake. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +13943# +A box that contains 1 Squirrel Magic Powder. Can be used for 30 Days. +An item which when you breathe in this powder, your font becomes a bit evil. +To make the best use of it, its best used when you have something you want to complain about, or when you want to do something awful. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +13944# +A box that contains 1 Gogo Magic Powder. Can be used for 30 Days. +An item which when you breathe in this powder, your font becomes humorous. +To make the best use of it, its best used when you have something you want to talk about thats funny. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +13945# +A gift box contains essential equipment for Swordman. +Contains Full Plate [1],Shield [1],Boots [1],Manteau [1],a Pupa Card,a Raydric Card,2 Clips,Helm [1],a Iron Cane. +-------------------------- +Weight: 1 +# +13946# +A gift box contains essential equipment for Magician. +Contains Silk Robe [1],Guard [1],Shoes [1],Muffler [1],a Pupa Card,a Phen Card,2 Clips, a Magician Hat. +-------------------------- +Weight: 1 +# +13947# +A gift box contains essential equipment for Acolyte. +Contains Saint's Robe [1],Buckler [1],Shoes [1],Muffler [1],a Pupa Card,a Sohee card,2 Clips,Biretta [1]. +-------------------------- +Weight: 1 +# +13948# +A gift box contains essential equipment for Archer. +Contains Tight [1],Gakkung Bow [2],Boots [1],Muffler [1],a Zerom Card,a Whisper Card,2 Clips, a Apple of Archer. +-------------------------- +Weight: 1 +# +13949# +A gift box contains essential equipment for Merchant. +Contains Chain Mail [1],Buckler [1],Boots [1],Manteau [1],a Pupa Card,a Raydric Card,2 Clips,a Grief for Greed. +-------------------------- +Weight: 1 +# +13950# +A gift box contains essential equipment for Thief. +Contains Thief Clothes,Buckler [1],Boots [1],Manteau [1],a Matyr Card,a Whisper Card,2 Clips,a Ghost Bandana. +-------------------------- +Weight: 1 +# +13951# +A box which contains 1 Western Outlaw. Rental period for a week. +A handgun known for high accuracy and firing rate, it is known to be made for the lawless one who have gone through many difficult situations with nothing but his trusty gun. +Increases HIT and Attack Speed depending on the AGI of the player. Adds 40% damage to the monster. +-------------------------- +Weight: 1 +# +13952# +A box which contains 1 Level Action Rifle. Rental period for a week. +A masterpiece that brings the power of the Rifles to the max. This beautiful gun steals the heart of the Gunslingers and its high performance will put a hole through the heart of the enemy. Only downside is that, due to the fact it is lever-action oriented, the Attack Speed is somewhat poor. +HIT +20, Critical +50, Adds 40% damage to the monster. +-------------------------- +Weight: 1 +# +13953# +A box that contains: +Rental Item +1 All in One Ring +Duration: 7 Days after opening. +A Jewelry Ring +that contains a +3 Seal Magic Spell. +Enables the use of Level 1 Heal +and Level 1 Teleport. +Protects from skill cast interruption. +All Stats +1 +Increases casting time by 10%. +-------------------------- +Type: Accessory +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +13954# +A box which contains 1 Spiritual Tunic. Rental period for a week. +A Tunic that has been granted additional tolerance against certain elements. +Decreases 20% damage from Neutral and Water element. +MDEF +5. MaxHP +800. Cannot be Frozen. +-------------------------- +Weight: 1 +# +13955# +A box which contains 1 Recuvative Armor. Rental period for a week. +A suit of armor that allows the master to regain his life by taking the enemies +HP, SP Natural Recovery is Disabled. +When unequipped, you lose 100 SP. +When a monster is defeated from Physical or Magical Damages, it recover 60 HP and 6 SP. +-------------------------- +Weight: 1 +# +13956# +A box which contains 1 Shell of Resistance. Rental period for a week. +A Magical Shield that has a strong resistance against every attack that an opponent tries to deal you. +Reduced 20% damage from the monster. +Reflects 1% of Physical Attack. +-------------------------- +Weight: 1 +# +13957# +A box which contains 1 Silf Manteau. Rental period for a week. +A Soft Manteau that has been blessed by a Wind Fairy. +It is said to allow the wearer into be protected from danger. +FLEE +13, Reduces 13% of Neutral element damage. +Perfect Dodge +1 +-------------------------- +Weight: 1 +# +13958# +A box which contains 1 Refresh Shoes. Rental period for a week. +A pair of shoes that were made with complex design and very soft skin to show how fun your legs could be with these. +MaxHP +17% , MaxSP +8%. +Every 10 seconds, your HP goes up by 20, SP goes up by3 +-------------------------- +Weight: 1 +# +13959# +A box which contains 1 Crunch Toast. Rental period for a week. +For a busy morning, it its the best heartwarming friend. +When you hold it in your mouth, you feel like you have to quickly rush out. +MaxHP +100. +When you defeat a monster, there is a small chance that it drops a Old Purple Box. +-------------------------- +Weight: 1 +# +13960# +A box that contains 1 Ticket of Identification inside. +-------------------------- +Weight: 1 +# +13961# +A box which contains 5 mochi. +-------------------------- +Weight: 1 +# +13962# +Contains 1 Defolty Doll Hat, which is non-tradeable. +Decreases damage taken from Demi-Human race by 5%. +Random chance to auto-cast Level 10 Angelus when wearer receiving melee physical attacks. +Can't be upgraded, DEF 0. +Level 60 requirement. Jobs: All +-------------------------- +Weight: 1 +# +13963# +Contains 1 Glaris Doll Hat, which is non-tradeable. +Decreases 5% damage from Demihuman. Recovers 50 HP when a monster is killed magical attack. +Can't be upgraded, DEF 0. +Level 60 requirement. Jobs: All +-------------------------- +Weight: 1 +# +13964# +A box which contains 1 Sorin Doll Hat. +-------------------------- +So hot! A headgear with the figure of Kafra Sorin! Her cute appearance made the price of this hat rise at the auction place. +Decreases damage taken from Demi-Human race by 5%. +When dealing Physical Damages there is a chance that for 10 seconds you'll receive ATK +50. +UnRefineable. Slot [1] +-------------------------- +Weight: 1 +# +13965# +A box which contains 1 Tailring Doll Hat. +-------------------------- +So hot! A headgear with the figure of Kafra Telling! She is such an active and hard-working lady. So she became the most favorite Kafra among users. +Decreases damage taken from Demi-Human race by 5%. +Increases recovery amount gained from White Potion and White Slim Potion by 10%. +UnRefineable. Slot [1] +-------------------------- +Weight: 1 +# +13966# +A box which contains 1 Vinit Doll Hat. +-------------------------- +So hot! A headgear with the figure of Kafra Bennit! She has a boyish look, but her hobby is knitting and reading romance novels. She is fully supported by male users who like the short-cut style. +Decreases damage taken from Demi-Human race by 5%. +When dealing Physical Damages there is a chance that for 30 seconds reducing After Attack Delay by 5%. +UnRefineable. Slot [1] +-------------------------- +Weight: 1 +# +13967# +A box which contains 1 W Doll Hat. +-------------------------- +So hot! A headgear with the figure of Kafra W! There is a rumor that an assassin association wants to scout her, because there are so many guys who become frightened and faint when she calls them. +Decreases damage taken from Demi-Human race by 5%. +Increases Damage to Undead race by 5%. +UnRefineable. Slot [1] +-------------------------- +Weight: 1 +# +13968# +Rental Item +Double your flavour! +-------------------------- +Increases experience gained from defeating monsters by 100%. +-------------------------- +When VIP status active: +Increases experience gained from defeating monsters by 50%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +13969# +A box containing 1 Lucky Clip. Rental Period: 1 day +-------------------------- +A legend said this clip will bring fortune to wearer. +Increases item drop rate by 50%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +13970# +A box containing 10 iron. +-------------------------- +Weight: 1 +# +13971# +A box containing 10 Steel. +-------------------------- +Weight: 1 +# +13972# +A box containing 10 Coal. +-------------------------- +Weight: 1 +# +13973# +A box containing 30 bottles of poison. Let's treat attention. +-------------------------- +Weight: 1 +# +13974# +When you cut the seal off this seal with a friend, +you get an unimaginable amount of fun coming to you! +-------------------------- +Weight: 1 +# +13975# +A box containing 1 Diary Magic Powder. Available for one week. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +13976# +A box containing 1 Mini Heart Magic Powder. Available for one week. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +13977# +A box containing 1 Freshman Magic Powder. Available for one week. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +13978# +A box containing 1 Kid Magic Powder. Available for one week. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +13979# +A box containing 1 Magic Magic Powder. Available for one week. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +13980# +A box containing 1 JJangu Magic Powder. Available for one week. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +13981# +A box containing 1 Diary Magic Powder. Available for 30 days. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +13982# +A box containing 1 Mini Heart Magic Powder. Available for 30 days. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +13983# +A box containing 1 Freshman Magic Powder. Available for 30 days. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +13984# +A box containing 1 Kid Magic Powder. Available for 30 days. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +13985# +A box containing 1 Magic Magic Powder. Available for 30 days. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +13986# +A box containing 1 JJangu Magic Powder. Available for 30 days. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +13987# +A box with 5 Rough Oridecons inside. +-------------------------- +Weight: 1 +# +13988# +A box with 50 Rough Oridecons inside. +-------------------------- +Weight: 1 +# +13989# +A box with 10 Fire Bottles and 10 Acid Bottles inside. +-------------------------- +Weight: 1 +# +13990# +A box that contains +10 Job Battle Manuals. +-------------------------- +This well written, +detailed manual +explains effective +battle methods. +-------------------------- +Type: Supportive +Effect: Job EXP rate +50% +Duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +13991# +A box containing 1 Tiger Mask +Description: +A mask rumored to make its wearer ferociously aggressive. +STR +3 +MaxHP +100 +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +-------------------------- +Weight: 1 +# +13992# +A box containing 1 Neko Mimi +Description: +A cute cat-looking hat which enhances its wearer's look. +Has a cat tail which emphasises the appearance. +LUK +2, MDEF +10 +Decreases 5% of damage taken from Brute race. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +13993# +A box containing 1 Alice Hat +Description: +A hat adorned with an +Alice doll. When worn, +it seems like Alice is +cheering you on from +the top of your head. +\ +-------------------------- ++10% damage against +Demi-Human race monster, +and has low chance of +casting Sleep on +its wearer. +STR +1. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +Every +Job except Novice +-------------------------- +Weight: 1 +# +13994# +A box containing 5 Speed Potions. +-------------------------- +Weight: 1 +# +13995# +A box containing 10 Speed Potions. +-------------------------- +Weight: 1 +# +13996# +A box containing 100 Big Bun. +-------------------------- +Weight: 1 +# +13997# +A box containing 500 Big Bun. +-------------------------- +Weight: 1 +# +13998# +A box containing 500 Giant Fly Wings. +-------------------------- +An enchanted, giant wing from an ancient creatures. Enables instant teleportation of many people when used by a Party Master. +-------------------------- +Weight: 1 +# +13999# +A box containing 100 Pill. +-------------------------- +Weight: 1 +# +14000# +A box containing 500 Pill. +-------------------------- +Weight: 1 +# +14001# +A box containing 25 Siege White Potions and 10 Siege Blue Potions. +Siege White Potion - Heals 400~500 Hit Point. HP Affected by Regeneration Potion. +Siege Blue Potion - Restores 50-70 SP. +-------------------------- +Weight: 1 +# +14002# +A supply box containing WoE potions. +Contains the following: +-------------------------- +50 WoE White Potion +A White Potion which weighs less than normal. +Weight: 10 +-------------------------- +20 WoE Blue Potion +A Blue Potion which weighs less than normal. +Weight: 10 +-------------------------- +This box and it's contents are storage only. +-------------------------- +Weight: 1 +# +14003# +A box containing 100 Siege White Potions and 50 Siege Blue Potions. +Siege White Potion - Heals 400~500 Hit Point. HP Affected by Regeneration Potion. +Siege Blue Potion - Restores 50-70 SP. +-------------------------- +Weight: 1 +# +14004# +A box containing 10 Poison Bottle. +-------------------------- +Weight: 1 +# +14005# +A box containing 5 Poison Bottle. +-------------------------- +Weight: 1 +# +14006# +A box containing 1 Evolved Drooping Cat. +-------------------------- +Weight: 1 +# +14007# +A box containing 1 Evolved Rabbits Headband. +-------------------------- +Weight: 1 +# +14008# +A box containing 1 Evolved Helmet of Orc Hero. +-------------------------- +Weight: 1 +# +14009# +A box that contains 1 Love Angel Magic Powder. Can be used for 1 week. +-------------------------- +Weight: 1 +# +14010# +A box that contains 1 Squillroll Magic Powder. Can be used for 1 week. +-------------------------- +Weight: 1 +# +14011# +A box that contains 1 Gogo Magic Powder. Can be used for 1 week. +-------------------------- +Weight: 1 +# +14012# +A box that contains 1 Love Angel Magic Powder. Can be used for 30 days. +-------------------------- +Weight: 1 +# +14013# +A box that contains 1 Squillroll Magic Powder. Can be used for 30 Days. +-------------------------- +Weight: 1 +# +14014# +A box that contains 1 Gogo Magic Powder. Can be used for 30 Days. +-------------------------- +Weight: 1 +# +14015# +A box which contains 1 Western Outlaw. Rental period for a week. +-------------------------- +Weight: 1 +# +14016# +A box which contains 1 Level Action Rifle. Rental period for a week. +-------------------------- +Weight: 1 +# +14017# +A box that contains: +Rental Item +1 All in One Ring +Duration: 7 Days after opening. +A Jewelry Ring +that contains a +3 Seal Magic Spell. +Enables the use of Level 1 Heal +and Level 1 Teleport. +Protects from skill cast interruption. +All Stats +1 +Increases Variable Casting Time of all skills by 10%. +-------------------------- +Type: Accessory +Defense: 1 +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +14018# +A box which contains 1 Spiritual Tunic. Rental period for a week. +-------------------------- +Weight: 1 +# +14019# +A box which contains 1 Recuvative Armor. Rental period for a week. +-------------------------- +Weight: 1 +# +14020# +A box which contains 1 Shell of Resistance. Rental period for a week. +-------------------------- +Weight: 1 +# +14021# +A box which contains 1 Silf Manteau. Rental period for a week. +-------------------------- +Weight: 1 +# +14022# +A box which contains 1 Refresh Shoes. Rental period for a week. +-------------------------- +Weight: 1 +# +14023# +A box which contains 1 Crunch Toast. Rental period for a week. +-------------------------- +Weight: 1 +# +14024# +A box containing 1 Robo Eye +This box and it's contents account bound +Description: +A weird item that spreads a strange-shaped beam around the eyes. It seems to have been made in outer space. +ATK, MATK +2%, DEX +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +-------------------------- +Weight: 1 +# +14025# +A box containing 1 Maiden's Twin Ribbon. +-------------------------- +Weight: 1 +# +14026# +A box containing 1 Diadem. +-------------------------- +Weight: 1 +# +14027# +A box that contains 1 Fish Head Hat. +-------------------------- +Weight: 1 +# +14028# +A box that contains 1 Santa Poring Cap. +-------------------------- +Weight: 1 +# +14029# +A box that contains 1 Bell Ribbon. +-------------------------- +Weight: 1 +# +14030# +A box containing 5 mercenary monster Mimic cash items. +-------------------------- +Weight: 1 +# +14031# +A box containing 5 mercenary monster Disguise cash items. +-------------------------- +Weight: 1 +# +14032# +A box containing 5 mercenary monster Alice cash items. +-------------------------- +Weight: 1 +# +14033# +A box containing 10 mercenary monster Mimic cash items. +-------------------------- +Weight: 1 +# +14034# +A box containing 10 mercenary monster Disguise cash items. +-------------------------- +Weight: 1 +# +14035# +A box containing 10 mercenary monster Alice cash items. +-------------------------- +Weight: 1 +# +14036# +A box that contains Beauty Gift Certificates. +-------------------------- +Weight: 1 +# +14037# +A box containing 1 Level 1 Repair Weapon Scroll. Obtain Ore for repair. +-------------------------- +Weight: 1 +# +14038# +A box containing 10 Repair Weapon Scroll. Several ore needed to be repaired offers together. +-------------------------- +Weight: 1 +# +14039# +Contain: Hockey Mask +Rental duration: 1 Week +Item description: +-------------------------- +This mask calls the urge to hold a weapon in one's hand and hurt people on the 13th of every month. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 5%. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +All classes except Novice +-------------------------- +Weight: 1 +# +14040# +A device that can measure opponent's power. Commoners have power Level 5. Heroes have a power Level over 9,000! +-------------------------- +Enables the use of Level 1 Sense. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 35 +All classes except Novice +-------------------------- +Weight: 1 +# +14041# +A box containing 5 Yellow Butterfly Wing. +-------------------------- +Weight: 1 +# +14042# +A box containing 10 enchanted butterfly wings that sends its user to the towns of the Rune Midgarts Kingdom. +Locations: Prontera, Geffen, Payon, Morocc, Al De Baran, Alberta +-------------------------- +Weight: 1 +# +14043# +A box containing 5 Green Butterfly Wing. +-------------------------- +Weight: 1 +# +14044# +A box containing 10 enchanted butterfly wings that sends its user to the towns of the Schwartzwalt. +Locations: Juno, Lighthalzen, Einbroch, Hugel +-------------------------- +Weight: 1 +# +14045# +A box containing 5 Red Butterfly Wing. +-------------------------- +Weight: 1 +# +14046# +A box containing 10 enchanted butterfly wings that sends its user to the towns of Arunafeltz. +Locations: Veins, Rachel +-------------------------- +Weight: 1 +# +14047# +A box containing 5 Blue Butterfly Wing. +-------------------------- +Weight: 1 +# +14048# +A box containing 10 enchanted butterfly wings that sends its user to the island towns of Rune Midgard. +Locations: Ayothaya, Amatsu, Luoyang, Kunlun, Moscovia +-------------------------- +Weight: 1 +# +14049# +A box containing 5 Candy which are marvelous bounces. +-------------------------- +Weight: 1 +# +14050# +A box containing 10 Candy which are marvelous bounces. +-------------------------- +Weight: 1 +# +14051# +A box containing 5 Dungeon Teleport Scroll II. +-------------------------- +Weight: 1 +# +14052# +A box containing 10 Dungeon Teleport Scroll II. +-------------------------- +Weight: 1 +# +14053# +This Angelic protector will call down holy wrath on those attacking you. +-------------------------- +DEX +3 +-------------------------- +Random chance to auto-cast Level 3 Grand Cross when receiving physical damage. +-------------------------- +Position: Upper +Defense: 4 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +-------------------------- +Weight: 1 +# +14054# +A hat which seems to stack a few of the most popular monster, Poring. +Are they Angelring at the bottom, Masterling in the middle, Poring at the top? +-------------------------- +LUK +3 +-------------------------- +Random chance to auto-cast Level 1 Greed when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 60 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +-------------------------- +Weight: 1 +# +14055# +A box containing 1 Nagan. +-------------------------- +Weight: 1 +# +14056# +A box containing 1 Refined Brocca. +-------------------------- +Weight: 1 +# +14057# +A box containing 1 Refined Survivor's Rod. +-------------------------- +Weight: 1 +# +14058# +A box containing 1 Refined Quadrille. +-------------------------- +Weight: 1 +# +14059# +A box containing 1 Refined Great Axe. +-------------------------- +Weight: 1 +# +14060# +A box containing 1 Refined Bloody Roar. +-------------------------- +Weight: 1 +# +14061# +A box containing 1 Refined Hardcover Book. +-------------------------- +Weight: 1 +# +14062# +A box containing 1 Fire Brand. +-------------------------- +Weight: 1 +# +14063# +A box containing 1 Immaterial Sword. +-------------------------- +Weight: 1 +# +14064# +A box containing 1 Refined Unholy Touch. +-------------------------- +Weight: 1 +# +14065# +A box containing 1 Refined Survivor's Manteau. +-------------------------- +Weight: 1 +# +14066# +A box containing 1 Butterfly Mask. +-------------------------- +Weight: 1 +# +14067# +A box containing 1 Refined Helmet of Orc Hero. +-------------------------- +Weight: 1 +# +14068# +A box containing 1 Refined Wing of Diablo. +-------------------------- +Weight: 1 +# +14069# +A box containing 1 Refined Dark Blinder. +-------------------------- +Weight: 1 +# +14070# +A box containing 1 Refined Drooping Cat. +-------------------------- +Weight: 1 +# +14071# +A box containing 1 Refined Corsair. +-------------------------- +Weight: 1 +# +14072# +A box containing 1 Refined Bloody Iron Ball. +-------------------------- +Weight: 1 +# +14073# +A box containing 1 Refined Spiritual Ring. +-------------------------- +Weight: 1 +# +14074# +A box containing 5 Wine Glass of Illusion. +-------------------------- +Weight: 1 +# +14075# +A box containing 10 Glass of illusion: +A glass of illusion made from morning dew from an Illusion Flower. +Drink the dew to create an illusion that will make it more difficult for enemies to hit you. +Increases your Perfect Dodge by 20 for 1 minute. +Only one may be consumed per 5 minutes. +-------------------------- +Weight: 1 +# +14076# +A box containing 5 Scroll of Shadow Armor. +-------------------------- +Weight: 1 +# +14077# +A box containing 10 Scroll of Shadow Armor. +-------------------------- +Weight: 1 +# +14078# +A box containing 30 Scroll of Shadow Armor. +-------------------------- +Weight: 1 +# +14079# +A box containing 10 Scroll of Holy Armor. +-------------------------- +Weight: 1 +# +14080# +A box containing 10 Scroll of Holy Armor. +-------------------------- +Weight: 1 +# +14081# +A box containing 30 Scroll of Holy Armor. +-------------------------- +Weight: 1 +# +14082# +A box that contains +10 Small Defense +Potions.each potion +adds 3% resistance to +Physical Attacks for +a 1 minute duration. +If you are incapacitated, +the item effect will disappear. +-------------------------- +Weight: 1 +# +14083# +A box containing 30 Small Physical Defense Potion. +-------------------------- +Weight: 1 +# +14084# +A box containing 50 Small Physical Defense Potion. +-------------------------- +Weight: 1 +# +14085# +A box that contains +10 Big Defense +Potions.each potion +adds 3% resistance to +Physical Attacks for +a 3 minute duration. +If you are incapacitated, +the item effect will disappear. +-------------------------- +Weight: 1 +# +14086# +A box containing 30 Large Physical Defense Potion. +-------------------------- +Weight: 1 +# +14087# +A box containing 50 Large Physical Defense Potion. +-------------------------- +Weight: 1 +# +14088# +A box that contains +10 Small Magic +Defense Potions. +Each potion adds 3% +resistance to Magical +Attacks for 1 minute. +If you are incapacitated, +the item effect will disappear. +-------------------------- +Weight: 1 +# +14089# +A box containing 30 Small Magical Defense Potion. +-------------------------- +Weight: 1 +# +14090# +A box containing 50 Small Magical Defense Potion. +-------------------------- +Weight: 1 +# +14091# +A box that contains +10 Big Magic Defense +Potions.each potion +adds 3% resistance +to Magical Attacks +for 3 minutes. +If you are incapacitated, +the item effect will disappear. +-------------------------- +Weight: 1 +# +14092# +A box containing 30 Large Magical Defense Potion. +-------------------------- +Weight: 1 +# +14093# +A box containing 50 Large Magical Defense Potion. +-------------------------- +Weight: 1 +# +14094# +A box that contains 1 Flapping Angel Wings +Description: +A headgear that looks +like flapping angel +wings. It makes you +feel might lighter +when you wear it, +though it also makes +you feel pretty dizzy. +Decreases After Attack Delay and Variable Casting Speed by 3%. +INT +1, AGI +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +-------------------------- +Weight: 1 +# +14095# +A box containing 1 Neko Mimi +Description: +A cute cat-looking hat which enhances its wearer's look. +Has a cat tail which emphasises the appearance. +LUK +2, MDEF +10 +Decreases 5% of damage taken from Brute race. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +14096# +A box that contains 1 Moonlight Flower Hat. +Description: +A hat inspired by the adorable Moonlight Flower. Be sure to hand-wash to prolong the soft Nine Tail Fur lining. +-------------------------- +DEX +2 +-------------------------- +Random chance to auto-cast Level 1 Increase Agility when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper, Middle +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +14097# +A box that contains 1 Chick Hat. +Description: +A hat adorned with a cute chick that brings feelings of joy to those that see it hopping. +-------------------------- +LUK +2 +MaxHP +50 +MaxSP +50 +-------------------------- +Enables Level 2 Double Attack. +-------------------------- +Decreases damage taken from Demi-Human and Brute race by 3%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +-------------------------- +Weight: 1 +# +14098# +A box containing 1 Pecopeco Hairband. +Description: +A hairband with PecoPeco wings that lends you a PecoPeco's speed. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Increases movement speed. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +14099# +A box containing 1 Red Glasses. +Description: +A must-have item for those that care about appearances: It can increase your beauty threefold. +-------------------------- +INT +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +-------------------------- +Weight: 1 +# +14100# +A box containing 1 Whisper Mask +Description: +A mask shaped like +a Whisper that feels like its always massaging +your face so it might be good for your skin. +AGI +3. Increase +Ghost damage by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Location: +Upper, Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +-------------------------- +Weight: 1 +# +14101# +A box containing 1 Ramen Hat +Description: +Delicious noodles +worn on the head that +can be eaten when food +is especially scarce. +There's nothing like +a good bowl of ramen. +Nothing. DEX +4. +Has a chance to +auto-cast Level 1 DEX - +Decreases each +time the wearer +is attacked. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +-------------------------- +Weight: 1 +# +14102# +A box containing 10 Dungeon Teleport Scroll. +-------------------------- +Weight: 1 +# +14103# +A box containing 1 Gym Membership Card. +-------------------------- +Weight: 1 +# +14104# +A box that contains 10 Small Life Potions. +These potions restore an amount of HP equal to 5% of your MaxHP every 5 seconds for a 10 minute duration. +The effect is not active at the state of berserk. +When a character is incapable of combat, the effect of item disappears. +-------------------------- +Weight: 1 +# +14105# +A box containing 30 Small Life Potion. +-------------------------- +Weight: 1 +# +14106# +A box containing 50 Small Life Potion. +-------------------------- +Weight: 1 +# +14107# +A box that contains 10 Medium Life Potions. +These potions restore an amount of HP equal to 7% of your MaxHP every 4 seconds for a 10 minute duration. +The effect is not active at the state of berserk. +When a character is incapable of combat, the effect of item disappears. +-------------------------- +Weight: 1 +# +14108# +A box containing 30 Medium Life Potion. +-------------------------- +Weight: 1 +# +14109# +A box containing 50 Medium Life Potion. +-------------------------- +Weight: 1 +# +14110# +A box containing 5 Abrasive. +-------------------------- +Weight: 1 +# +14111# +A box that contains +10 Abrasives.each +Abrasive increases +Critical by 30 for a 5 minute duration. +If you are incapacitated, +the item effect will disappear. +-------------------------- +Weight: 1 +# +14112# +A box that contains +5 Regeneration Potions.each potion increases +the HP recovery effect +of other potions and +the Heal skill by 20% for a 30 minute duration. +If you are incapacitated, +the item effect will disappear. +-------------------------- +Weight: 1 +# +14113# +A box containing 10 Regeneration Potion. +-------------------------- +Weight: 1 +# +14114# +A box that contains +10 special scrolls that can transport you +once to Nogg Road, +Mjolnir Dead Pit, +Robot Factory Lv2, +Einbroch Mine Dungeon, +Payon Dungeon, Toy +Dungeon, Glast Heim +Underprison, Louyang +Dungeon, Hermit's +Checkers, Izlude +Dungeon, Turtle +Island Dungeon, +Clock Tower B3F, +Clock Tower 3F, +Glast Heim Culvert 2F, +Sphinx Dungeon 4F, +Inside Pyramid 4F, +Prontera Culvert 3F, +Amatsu Dungeon 1F +(Tatami Maze), +Somatology Laboratory +1st Floor, or Ayothaya +Ancient Shrine 2F. +Warning - After using it, unless you choose the destination in 1 minute, +it will be useless +-------------------------- +Weight: 1 +# +14115# +A box containing 1 Refined Infiltrator. +Rental period for 7 days. +-------------------------- +Weight: 1 +# +14116# +A box containing 1 Refined Muramasa. +Rental period for 7 days. +-------------------------- +Weight: 1 +# +14117# +A box containing 1 Refined Excalibur. +Rental period for 7 days. +-------------------------- +Weight: 1 +# +14118# +A box that contains: +Rental Item +1 Combat Knife +Duration: 7 Days after opening. +A military combat +knife designed for +killing humanoids. +Ignores Demihuman +monster physical defense. Decreases damage taken from +Demi-Human race monster +by 10%, but increases +damage inflicted by +Demon monsters by 10%. +Restores 3 SP when +hitting a monster. +MaxSP +10%. +-------------------------- +Type: Dagger +Attack: 129 +Weight: 1 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Merchant, Thief Classes; Soul +Linker and Ninja +# +14119# +A box that contains: +Rental Item +1 Dagger of Counter +Duration: 7 Days after opening +A dagger that has +a high chance of +inflicting critical +damage to its target. +Critical +90 +-------------------------- +Type: Dagger +Attack: 209 +Weight: 1 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Magician Class, +Soul Linker Job +# +14120# +A box containing 1 Refined Kaiser Knuckle. +Rental period for 7 days. +-------------------------- +Weight: 1 +# +14121# +A box containing 1 Refined Mighty Staff. +Rental period for 7 days. +-------------------------- +Weight: 1 +# +14122# +A box that contains: +Rental Item +1 Light Epsilon +Duration: 7 Days after opening +A Greek ceremonial +axe that possesses +the power of holiness. +STR +10, Holy element, +Enables the use of Level 3 Heal Increases damage inflicted +on Demon monsters by 3%. Increases movement speed. +-------------------------- +Type: One-Handed Axe +Attack: 229 +Weight: 1 +Element: Holy +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman and Merchant +# +14123# +A box containing 1 Refined Ballista. +Rental period for 7 days. +-------------------------- +Weight: 1 +# +14124# +A box that contains: +Rental Item +1 Sage's Diary +Duration: 7 Days after opening +The diary of a great +sage that was published without him ever knowing. +MATK +20%, Reduces After Attack Delay by 5% +-------------------------- +Type: Book +Attack: 135 +Weight: 1 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Priest, Sage, +Star Gladiator +# +14125# +A box that contains: +Rental Item +1 Asura +Duration: 7 Days after opening +A legendary dagger +that is said to have +been given to mankind by the gods. +MATK +15%. +-------------------------- +Type: Dagger +Attack: 120 +Weight: 1 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Ninja +# +14126# +A box that contains: +Rental Item +1 Apple of Archer +Duration: 7 Days after opening +A headgear made in +honor of the legendary +archer known for shooting an apple perched on +a friend's head from +a great distance. +DEX +4 +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +14127# +A box that contains: +Rental Item +1 Bunny Band +Duration: 7 Days after opening +A hairband that gives +one the appearance of +having rabbit ears, +a lasting symbol of +extremely good luck. +Decreases damage taken from +Demi-Human race monster +by 10%. MDEF +5 +-------------------------- +Type: Headgear +Defense: 9 +Position: Upper +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +14128# +A box containing 1 Refined Sakkat. +Rental period for 14 days. +-------------------------- +Weight: 1 +# +14129# +A box containing 1 Refined Grand Circlet. +Rental period for 14 days. +-------------------------- +Weight: 1 +# +14130# +A box that contains: +Rental Item +1 Elven Ears set. +Duration: 7 Days after opening +A fashion accessory +that gives ears that +vaunted, elvish look. +For some, it is an +incredible turn-on. +INT +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +14131# +A box that contains: +Rental Item +1 Steel Flower +Duration: 7 Days after opening +A small flower made +of steel. Has a low +chance to cast Level 1 +Recovery when its wearer receiving physical attack. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +14132# +A box that contains: +Rental Item +1 Critical Ring +Duration: 7 Days after opening +An esoteric ring that +enables its wearer into amplify his hidden powers. +Critical +10 +-------------------------- +Type: Accessory +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +14133# +A box that contains: +Rental Item +1 Earring +Duration: 7 Days after opening +An ancient Earring. +INT +3 +-------------------------- +Type: Accessory +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +14134# +A box that contains: +Rental Item +1 Ring +Duration: 7 Days after opening +An ancient ring. +STR +4 +-------------------------- +Type: Accessory +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +14135# +A box that contains: +Rental Item +1 Necklace +Duration: 7 Days after opening +An ancient necklace. +VIT +4 +-------------------------- +Type: Accessory +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +14136# +A box that contains: +Rental Item +1 Glove +Duration: 7 Days after opening +An ancient glove. +DEX +4 +-------------------------- +Type: Accessory +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +14137# +A box that contains: +Rental Item +1 Brooch +Duration: 7 Days after opening +An ancient brooch. +AGI +4 +-------------------------- +Type: Accessory +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +14138# +A box that contains: +Rental Item +1 Rosary +Duration: 7 Days after opening +An ancient rosary. +LUK +4, MDEF +5 +-------------------------- +Type: Accessory +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +14139# +A box that contains: +Rental Item +1 Safety Ring +Duration: 7 Days after opening +A strange ring that +curiously raises its +wearer's defenses. +DEF +5 , MDEF +5 +-------------------------- +Type: Accessory +Defense: 5 +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +14140# +A box containing 1 Refined Vesper Core 01. +Rental period for 7 days. +-------------------------- +Weight: 1 +# +14141# +A box containing 1 Refined Vesper Core 02. +Rental period for 7 days. +-------------------------- +Weight: 1 +# +14142# +A box containing 1 Refined Vesper Core 03. +Rental period for 7 days. +-------------------------- +Weight: 1 +# +14143# +A box containing 1 Refined Vesper Core 04. +Rental period for 7 days. +-------------------------- +Weight: 1 +# +14144# +'For 1 hour great effects will come to you!' words written on box +Contain 2 Battle manuals, 2 Steamed Tongues, 2 Steamed Desert Scorpions, 15 Increase Agility Scrolls, 15 Blessing Scrolls, 1 Kafra Card and 1 Token of Siegfried. +-------------------------- +Weight: 1 +# +14145# +'For 1 hour great effects will come to you!' words written on box +Contain 2 Battle manuals, 2 Steamed Tongues, 2 Stew of Immortalitys, 15 Increase Agility Scrolls, 15 Blessing Scrolls, 1 Kafra Card and 1 Token of Siegfried. +-------------------------- +Weight: 1 +# +14146# +'For 1 hour great effects will come to you!' words written on box +Contain 2 Battle manuals, 2 Dragon Breath Cocktails, 2 Hwergelmir's Tonic, 15 Increase Agility Scrolls, 15 Blessing Scrolls, 1 Kafra Card and 1 Token of Siegfried. +-------------------------- +Weight: 1 +# +14147# +'For 1 hour great effects will come to you!' words written on box +Contain 2 Battle manuals, 2 Dragon Breath Cocktails, 2 Stew of Immortalitys, 15 Increase Agility Scrolls, 15 Blessing Scrolls, 1 Kafra Card and 1 Token of Siegfried. +-------------------------- +Weight: 1 +# +14148# +'For 1 hour great effects will come to you!' words written on box +Contain 2 Battle manuals, 2 Dragon Breath Cocktails, 2 Steamed Tongues, 15 Increase Agility Scrolls, 15 Blessing Scrolls, 1 Kafra Card and 1 Token of Siegfried. +-------------------------- +Weight: 1 +# +14149# +'For 1 hour great effects will come to you!' words written on box +Contain 2 Battle manuals, 2 Steamed Desert Scorpions, 2 Steamed Tongues, 24 Adrenaline Rush scrolls, 20 Aspersio Scrolls, 1 Kafra Card and 1 Token of Siegfried. +-------------------------- +Weight: 1 +# +14150# +'For 2 hours great effects will come to you!' words written on box +Containing 4 Battle Manuals, 4 Steamed Tongues, 30 Increase Agility Scrolls, 30 Blessing Scrolls, 2 Kafra Cards and 2 Token of Siegfrieds. +-------------------------- +Weight: 1 +# +14151# +'For 2 hours great effects will come to you!' words written on box +Containing 4 Battle Manuals, 4 Stew of Immortalitys, 30 Increase Agility Scrolls, 30 Blessing Scrolls, 2 Kafra Cards and 2 Token of Siegfrieds. +-------------------------- +Weight: 1 +# +14152# +'For 2 hours great effects will come to you!' words written on box +Containing 4 Battle Manuals, 4 Dragon Breath Cocktails, 4 Hwergelmir's Tonic, 30 Increase Agility Scrolls, 30 Blessing Scrolls, 2 Kafra Cards and 2 Token of Siegfrieds. +-------------------------- +Weight: 1 +# +14153# +'For 2 hours great effects will come to you!' words written on box +Containing 4 Battle Manuals, 4 Dragon Breath Cocktails, 4 Stew of Immortalitys, 30 Increase Agility Scrolls, 30 Blessing Scrolls, 2 Kafra Cards and 2 Token of Siegfrieds. +-------------------------- +Weight: 1 +# +14154# +'For 2 hours great effects will come to you!' words written on box +Containing 4 Battle Manuals, 4 Dragon Breath Cocktails, 4 Steamed Tongues, 30 Increase Agility Scrolls, 30 Blessing Scrolls, 2 Kafra Cards and 2 Token of Siegfrieds. +-------------------------- +Weight: 1 +# +14155# +'For 2 hours great effects will come to you!' words written on box +Containing 4 Battle Manuals, 4 Steamed Desert Scorpions, 4 Steamed Tongues, 48 adrenaline Rush Scrolls, 40 Aspersio Scrolls, 2 Kafra Cards and 2 Token of Siegfrieds. +-------------------------- +Weight: 1 +# +14156# +A box that contains +10 Battle Manuals. +-------------------------- +Battle Manual - increase EXP rate to 150% for +a 30 minute duration. +-------------------------- +Weight: 1 +# +14157# +A box that contains +10 Life Insurance +certificates. +-------------------------- +Life Insurance - +Nullifies EXP penalty +if user is killed within 30 minutes of this +item's use.each +certificate is valid +for a one time use. +-------------------------- +Weight: 1 +# +14158# +A box containing +10 Bubble Gums. +-------------------------- +Bubble Gum - +Increases item drop +rate by 100% for +30 minutes. +-------------------------- +Weight: 1 +# +14159# +A box containing 10 Steamed Tongue +-------------------------- +A very pricey +Louyang dish that +tastes absolutely +superb. STR +10, +30 minute duration. +-------------------------- +Weight: 1 +# +14160# +A box containing 10 Steamed Desert Scorpions +-------------------------- +This scorpion dish +is cooked with the +heat of the desert +sand and is one of +the four best dishes +in Sograt Desert +cuisine. AGI +10, +30 minute duration. +-------------------------- +Weight: 1 +# +14161# +A box containing 10 Dragon Breath Cocktail +-------------------------- +A cocktail whose +unforgettable flavor +is as potent as the +breath of a dragon. +INT +10, 30 minute +duration. +-------------------------- +Weight: 1 +# +14162# +A box containing 10 Hwergelmir's Tonic +-------------------------- +This beverage is +named after the +legendary spring +that is believed to +be the source of the +world's rivers, and +is famous for its pure, amazing taste. DEX +10, +30 minute duration. +-------------------------- +Weight: 1 +# +14163# +A box containing 10 Cooked Nine Tail's Tails +-------------------------- +A rare, specialty +Payon dish that bestows luck to those fortunate +enough to eat it. LUK +10, 30 minute duration. +-------------------------- +Weight: 1 +# +14164# +A box containing 10 Stew of Immortality +-------------------------- +A funky smelling, +suspicious looking +stew that really does +make you feel like +an immortal when +you eat it. VIT +10, +30 minute duration. +-------------------------- +Weight: 1 +# +14165# +A box containing +10 Kafra Name Cards. +-------------------------- +Kafra Name Card - +Summons the Kafra +Service when used. +-------------------------- +This will open storage. +-------------------------- +Weight: 1 +# +14166# +A light box containing +30 Giant Fly Wings. +-------------------------- +Giant Fly Wing - +Enables instant +teleportation of +a party to random +areas when used +by a Party Master. +-------------------------- +Weight: 1 +# +14167# +A box containing +1 Neuralizer +Description: +Pressing the button +on this stick will +flash blinding light +that seems to cause +memory loss. Resets +the Skill Tree and +gives the corresponding number of Skill Points. +This item can only be +used in town and the +character must carry +0 weight and cannot be equipped with a Pushcart, +Falcon, or PecoPeco. +Cannot be used by +Novice Class. +-------------------------- +Weight: 0 +-------------------------- +Weight: 1 +# +14168# +A box containing +10 Convex Mirrors. +Extremely fragile! +-------------------------- +Convex Mirror - +Can detect appearance +of Boss monster for +10 minute duration. +Effect is canceled if +player logs out or +leaves current map. +Some MVP monsters +cannot be detected. +-------------------------- +Weight: 1 +# +14169# +A box containing 10 Blessing Scrolls. +(Level 10 Blessing) +-------------------------- +Weight: 1 +# +14170# +A box containing 10 AGI Scrolls. +(Level 10 Increase AGI) +-------------------------- +Weight: 1 +# +14171# +A box containing 10 Aspersio Scrolls. +(Level 5 Aspersio) +-------------------------- +Weight: 1 +# +14172# +A box containing 10 Assumptio Scrolls. +(Level 5 Assumptio) +-------------------------- +Weight: 1 +# +14173# +A box containing 10 Wind Walk Scrolls. (Level 10 Wind Walk Scrolls) +-------------------------- +Weight: 1 +# +14174# +A box containing 20 Adrenaline Rush Scrolls. +(Level 5 Adrenaline Rush) +-------------------------- +Weight: 1 +# +14175# +A Box containing 10 Megaphones. +Megaphone: Allows a single yell to be heard by everyone on the Map. +Please be considerate and moderate your message to avoid ill-mannered reports. +-------------------------- +Weight: 1 +# +14176# +A box containing 50 Concentrated Eluniums. +-------------------------- +Concentrated Elunium - Increases rate of refining an armor without breaking it. +-------------------------- +Weight: 1 +# +14177# +A box containing 10 Enriched Oridecons. +Description: +Old Dense Oridecon that has been buried deep underground. +Enhances a chance of successful weapon upgrade. +Only Suhnbi of Payon is capable of refining with this material. +-------------------------- +Weight: 1 +# +14178# +A box containing +10 Tokens of Siegfried. +Description: +A certificate imbued +with the power of the +invulnerable Siegfried +which allows its bearer to overcome death. +Revives the dead +character. +-------------------------- +Weight: 1 +-------------------------- +Box Weight: 1 +# +14179# +A light box containing 50 Giant Fly Wings. +-------------------------- +Weight: 1 +# +14180# +A light box containing 100 Giant Fly Wings. +-------------------------- +Weight: 1 +# +14181# +A box containing 30 Hwergelmir's Tonic +-------------------------- +This beverage is +named after the +legendary spring +that is believed to +be the source of the +world's rivers, and +is famous for its pure, amazing taste. DEX +10, +30 minute duration. +-------------------------- +Weight: 1 +# +14182# +A box containing 50 Hwergelmir's Tonic +-------------------------- +This beverage is +named after the +legendary spring +that is believed to +be the source of the +world's rivers, and +is famous for its pure, amazing taste. DEX +10, +30 minute duration. +-------------------------- +Weight: 1 +# +14183# +A box containing 30 Cooked Nine Tail's Tails +-------------------------- +A rare, specialty +Payon dish that bestows luck to those fortunate +enough to eat it. LUK +10, 30 minute duration. +-------------------------- +Weight: 1 +# +14184# +A box containing 50 Cooked Nine Tail's Tails +-------------------------- +A rare, specialty +Payon dish that bestows luck to those fortunate +enough to eat it. LUK +10, 30 minute duration. +-------------------------- +Weight: 1 +# +14185# +A box containing 30 Level 10 Increase Agility Scrolls. +-------------------------- +Weight: 1 +# +14186# +A box containing 50 Level 10 Increase Agility Scrolls. +-------------------------- +Weight: 1 +# +14187# +A box containing 30 Stew of Immortality +-------------------------- +A funky smelling, +suspicious looking +stew that really does +make you feel like +an immortal when +you eat it. VIT +10, +30 minute duration. +-------------------------- +Weight: 1 +# +14188# +A box containing 50 Stew of Immortality +-------------------------- +A funky smelling, +suspicious looking +stew that really does +make you feel like +an immortal when +you eat it. VIT +10, +30 minute duration. +-------------------------- +Weight: 1 +# +14189# +A box containing +30 Life Insurance. +Description: +A life insurance +certificate issued +by Kafra Headquarters. +This item loses its +effect once the player +receives its benefit. +If the character dies +within 30 minutes +after using this item, +there will be no +EXP loss penalty. +-------------------------- +Weight: 1 +-------------------------- +Box Weight: 1 +# +14190# +A box containing 50 Life Insurances inside. +-------------------------- +Weight: 1 +# +14191# +A box containing 5 Convex Mirrors. +-------------------------- +Weight: 1 +# +14192# +A box containing 30 Convex Mirrors. +-------------------------- +Weight: 1 +# +14193# +A box containing 30 Level 10 Blessing Scrolls. +-------------------------- +Weight: 1 +# +14194# +A box containing 50 Level 10 Blessing Scrolls. +-------------------------- +Level 10 Blessing Scroll - A scroll in which a single use of Level 10 Blessing has been recorded. +Caution-- This item won't work while your character is casting a spell or skill. +-------------------------- +Weight: 1 +# +14195# +A box containing 30 Level 5 Adrenaline Rush Scrolls. +-------------------------- +Weight: 1 +# +14196# +A box containing 50 Level 5 Adrenaline Rush Scrolls. +-------------------------- +Weight: 1 +# +14197# +A box containing 30 Level 5 Assumptio Scrolls. +-------------------------- +Weight: 1 +# +14198# +A box containing 50 Level 5 Assumptio Scrolls. +-------------------------- +Level 5 Assumptio Scroll - A scroll in which a single use of Level 5 Assumptio has been recorded. +Caution-- This item won't work while your character is casting a spell or skill. +-------------------------- +Weight: 1 +# +14199# +A box containing 30 Level 5 Aspersio Scrolls. +-------------------------- +Weight: 1 +# +14200# +A box containing 50 Level 5 Aspersio Scrolls and 50 Holy Water inside. +-------------------------- +Weight: 1 +# +14201# +A box containing 30 Steamed Desert Scorpions +-------------------------- +This scorpion dish +is cooked with the +heat of the desert +sand and is one of +the four best dishes +in Sograt Desert +cuisine. AGI +10, +30 minute duration. +-------------------------- +Weight: 1 +# +14202# +A box containing 50 Steamed Desert Scorpions +-------------------------- +This scorpion dish +is cooked with the +heat of the desert +sand and is one of +the four best dishes +in Sograt Desert +cuisine. AGI +10, +30 minute duration. +-------------------------- +Weight: 1 +# +14203# +A box containing 30 Level 10 Wind Walk Scrolls. +-------------------------- +Weight: 1 +# +14204# +A box containing 50 Level 10 Wind Walk Scrolls. +-------------------------- +Weight: 1 +# +14205# +A box containing 30 Dragon Breath Cocktail +-------------------------- +A cocktail whose +unforgettable flavor +is as potent as the +breath of a dragon. +INT +10, 30 minute +duration. +-------------------------- +Weight: 1 +# +14206# +A box containing 50 Dragon Breath Cocktail +-------------------------- +A cocktail whose +unforgettable flavor +is as potent as the +breath of a dragon. +INT +10, 30 minute +duration. +-------------------------- +Weight: 1 +# +14207# +A box containing 1 Battle Manual. +-------------------------- +Weight: 1 +# +14208# +A Box containing 5 Battlemanuals. +Battle Manual increases the amount of Exp/Jexp gained by 50% for 30 minutes. +Battle Manuals are untradable. +-------------------------- +Weight: 1 +# +14209# +A box containing 5 Token of Siegfried. +-------------------------- +Weight: 1 +# +14210# +A box containing +20 Tokens of Siegfried. +Description: +A certificate imbued +with the power of the +invulnerable Siegfried +which allows its bearer to overcome death. +Revives the dead +character. +-------------------------- +Weight: 1 +-------------------------- +Box Weight: 1 +# +14211# +A box containing 30 Kafra Card. +-------------------------- +Weight: 1 +# +14212# +A box containing 50 Kafra Card. +-------------------------- +Weight: 1 +# +14213# +A box containing 30 Steamed Tongue +-------------------------- +A very pricey +Louyang dish that +tastes absolutely +superb. STR +10, +30 minute duration. +-------------------------- +Weight: 1 +# +14214# +A box containing 50 Steamed Tongue +-------------------------- +A very pricey +Louyang dish that +tastes absolutely +superb. STR +10, +30 minute duration. +-------------------------- +Weight: 1 +# +14215# +A box containing 1 Bubble Gum. +-------------------------- +Weight: 1 +# +14216# +A box containing 5 Bubble Gum. +-------------------------- +Weight: 1 +# +14217# +A box containing 1 Megaphone. +-------------------------- +Weight: 1 +# +14218# +A box containing 5 Megaphone. +-------------------------- +Weight: 1 +# +14219# +A box that contains 5 Enriched Elunium +Description: +Concentrated Elunium +that has been buried +deep underground. +Used as a material +to strengthen armor. +Enhances a chance of +successful upgrade. +Only Suhnbi of Payon is +capable of refining with +this material. +-------------------------- +Weight: 1 +-------------------------- +Box Weight: 1 +# +14220# +A box that contains 5 Enriched Oridecon +Description: +Dense Oridecon +that has been buried +deep underground. +Used as a material to +strengthen weapons. +Enhances a chance of +successful upgrade. +Only Suhnbi of Payon is +capable of refining with +this material. +-------------------------- +Weight: 1 +-------------------------- +Box Weight: 1 +# +14221# +A box containing 10 Mystical Amplification scroll. +-------------------------- +Weight: 1 +# +14222# +A box containing 30 Mystical Amplification scroll. +-------------------------- +Weight: 1 +# +14223# +A box that contains 50 Magic Amplification Scrolls. +A scroll that will cast Level 10 Mystical Amplification for you. Good for making the next magic attack do +50% Magic attack power. +-------------------------- +Weight: 1 +# +14224# +A box containing 10 Quagmire Scroll. +-------------------------- +Weight: 1 +# +14225# +A box containing 30 Quagmire Scroll. +-------------------------- +Weight: 1 +# +14226# +A box containing 50 Quagmire Scroll. +-------------------------- +Weight: 1 +# +14227# +A box containing 1 Staff of Healing. +Rental period for 7 days. +-------------------------- +Weight: 1 +# +14228# +A box containing 1 Fraxinus. +Rental period for 7 days. +-------------------------- +Weight: 1 +# +14229# +A special promo Scroll that will be selling just during lovely spring! +It will bring you a sweet smell of good luck! +-------------------------- +Weight: 1 +# +14230# +A box containing 1 Note Headphones. +A cool looking set of headphones that have earmuffs designed to resemble music notes. +You can listen to your favorite Ragnarok Online music everywhere! +Increases resistance against Stun and Frozen by 10%. +MDEF +3. Slot [1]. +-------------------------- +Weight: 1 +# +14231# +The full set equipment for Novice! +That are Helm, Shield, Armor, Shoes. +Rental period for 7 days. +-------------------------- +Weight: 1 +# +14232# +A box containing 10 Yggdrasil Berry, a fruit that is well-known for longevity. +-------------------------- +Weight: 1 +# +14233# +A box containing 10 Dead Branches that evokes an impending sense of danger. +-------------------------- +Weight: 1 +# +14234# +A box containing 25 Dead Branches that evokes an impending sense of danger. +-------------------------- +Weight: 1 +# +14235# +A box containing 2 Battle Manual. +Battle Manual : Exp rate is increased to 1.5% for 30 minutes. +-------------------------- +Weight: 1 +# +14236# +A box containing 20 STR +10 dishes. +-------------------------- +Weight: 1 +# +14237# +A box containing 20 AGI +10 dishes. +-------------------------- +Weight: 1 +# +14238# +A box containing 20 VIT +10 dishes. +-------------------------- +Weight: 1 +# +14239# +A box containing 20 INT +10 dishes. +-------------------------- +Weight: 1 +# +14240# +A box containing 20 DEX +10 dishes. +-------------------------- +Weight: 1 +# +14241# +A box containing 20 LUK +10 dishes. +-------------------------- +Weight: 1 +# +14242# +Rental Items for 7 days +A box containing 1 Beholder Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Formless monsters. +-------------------------- +Weight: 1 +# +14243# +Rental Items for 7 days +A box containing 1 Hallow Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Undead race monsters. +-------------------------- +Weight: 1 +# +14244# +Rental Items for 7 days +A box containing 1 Clamorous Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Brute race monsters. +-------------------------- +Weight: 1 +# +14245# +Rental Items for 7 days +A box containing 1 Chemical Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Plant race monsters. +-------------------------- +Weight: 1 +# +14246# +Rental Items for 7 days +A box containing 1 Insecticide Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Insect race monsters. +-------------------------- +Weight: 1 +# +14247# +Rental Items for 7 days +A box containing 1 Fisher Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Fish monsters monsters. +-------------------------- +Weight: 1 +# +14248# +Rental Items for 7 days +A box containing 1 Decussate Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Demon race monsters. +-------------------------- +Weight: 1 +# +14249# +Rental Items for 7 days +A box containing 1 Bloody Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Demi-Human race monsters. +-------------------------- +Weight: 1 +# +14250# +Rental Items for 7 days +A box containing 1 Satanic Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Angel monster. +-------------------------- +Weight: 1 +# +14251# +Rental Items for 7 days +A box containing 1 Dragon Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Dragon monster. +-------------------------- +Weight: 1 +# +14252# +Rental Items for 15 days +A box containing 1 Beholder Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Neutral monsters. +-------------------------- +Weight: 1 +# +14253# +Rental Items for 15 days +A box containing 1 Hallow Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Undead race monsters. +-------------------------- +Weight: 1 +# +14254# +Rental Items for 15 days +A box containing 1 Clamorous Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Brute race monsters. +-------------------------- +Weight: 1 +# +14255# +Rental Items for 15 days +A box containing 1 Chemical Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Plant race monsters. +-------------------------- +Weight: 1 +# +14256# +Rental Items for 15 days +A box containing 1 Insecticide Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Insect race monsters. +-------------------------- +Weight: 1 +# +14257# +Rental Items for 15 days +A box containing 1 Fisher Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Fish monsters monsters. +-------------------------- +Weight: 1 +# +14258# +Rental Items for 15 days +A box containing 1 Decussate Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Demon race monsters. +-------------------------- +Weight: 1 +# +14259# +Rental Items for 15 days +A box containing 1 Bloody Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Demi-Human race monsters. +-------------------------- +Weight: 1 +# +14260# +Rental Items for 15 days +A box containing 1 Satanic Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Angel monster. +-------------------------- +Weight: 1 +# +14261# +Rental Items for 15 days +A box containing 1 Dragon Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Dragon monster. +-------------------------- +Weight: 1 +# +14262# +A box containing 1 Diary Magic Powder. Can be used for 1 week. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +14263# +A box containing 1 Mini Heart Magic Powder. Can be used for 1 week. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +14264# +A box containing 1 Freshman Magic Powder. Can be used for 1 week. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +14265# +A box containing 1 Kid Magic Powder. Can be used for 1 week. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +14266# +A box containing 1 Magic Magic Powder. Can be used for 1 week. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +14267# +A box containing 1 JJangu Magic Powder. Can be used for 1 week. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +14268# +A box containing 1 Diary Magic Powder. Can be used for 30 days. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +14269# +A box containing 1 Diary Magic Powder. Can be used for 30 days. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +14270# +A box containing 1 Diary Magic Powder. Can be used for 30 days. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +14271# +A box containing 1 Kid Magic Powder. Can be used for 30 days. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +14272# +A box containing 1 Magic Magic Powder. Can be used for 30 days. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +14273# +A box containing 1 JJangu Magic Powder. Can be used for 30 days. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +14274# +A box containing 10 Mystical Amplification scroll. +-------------------------- +Weight: 1 +# +14275# +A box containing 30 Mystical Amplification scroll. +-------------------------- +Weight: 1 +# +14276# +A box containing 50 Mystical Amplification scroll. +-------------------------- +Weight: 1 +# +14277# +A box containing 10 Quagmire Scroll. +-------------------------- +Weight: 1 +# +14278# +A box containing 30 Quagmire Scroll. +-------------------------- +Weight: 1 +# +14279# +A box containing 50 Quagmire Scroll. +-------------------------- +Weight: 1 +# +14280# +A box containing 1 Staff of Healing. +Rental period for 7 days. +-------------------------- +Weight: 1 +# +14281# +A box containing 1 Fraxinus. +ATK +5%, MATK +5%. +Rental period for 7 days. +-------------------------- +Weight: 1 +# +14282# +A box containing 1 Emperium. +Merely owning this gloriously resplendent gem is said to be a sign of being chosen by fate to wield great power. +-------------------------- +Weight: 1 +# +14283# +A box that contains 1 Written Oath of Marriage, to be used on your wedding day. +-------------------------- +Weight: 1 +# +14284# +A box containing 1 Neo Muffler. Available for one week. +A warm scarf that is worn around the neck and shoulders. +Add a 10% resistance against Demi-Human race. +MaxHP +10% +Resistance against Water, Fire, Holy, Shadow elemental attacks by 5%. +-------------------------- +Weight: 1 +# +14285# +A box containing 1 Neo Valkyrie Shield. Available for one week. +A shield used by Gna, the messanger of Freya while she served as a Valkyrie. +Add a 30% resistance against Demi-Human race. +MaxHP +5% +Add a 20% resistance against Fire and Water element attacks. +-------------------------- +Weight: 1 +# +14286# +A box containing 1 Neo Skull Ring. Available for one week. +A weird ring adorned with a skull in which the words, Forever, until death... are engraved. +ATK +5%, MATK +5% +MaxHP +5%, Reduces after-cast skill delay by 5%. +Enables the use of Level 1 Sight. +-------------------------- +Weight: 1 +# +14287# +A box containing the necessary items to repaired demolished Fortress Gates. +It contains 30 Trunks, 10 Steel, 10 Envertacon, 5 Oridecon. +-------------------------- +Weight: 1 +# +14288# +A box containing the necessary items to rebuild a destroyed Guardian Stone. +It contains 1 Oridecon, 1 Elunium, 30 Stones, 5 Blue Gemstones, 5 Yellow Gemstones, 5 Red Gemstones. +-------------------------- +Weight: 1 +# +14289# +A box that contains 1 coupon to dye your clothes to a new color. +-------------------------- +Weight: 1 +# +14290# +A box that contains 1 coupon to dye your clothes to the original color. +-------------------------- +Weight: 1 +# +14291# +A box containing 1 Clothing Dye Coupon. +(Caution : When change jobs, you will lose the effect of the clothing dye and return to your original color.) +-------------------------- +Weight: 1 +# +14292# +A box containing 1 Clothing Dye Coupon with original color. +-------------------------- +Weight: 1 +# +14293# +The box including a document verifying the contract with mercenary. +-------------------------- +Weight: 1 +# +14294# +The box including 5 documents verifying the contract with mercenary. +-------------------------- +Weight: 1 +# +14295# +The box including 10 documents verifying the contract with mercenary. +-------------------------- +Weight: 1 +# +14296# +A happiness from an angel. You will find full of happiness once you open it. +-------------------------- +Weight: 1 +# +14297# +A darkness gift from an evil. Handle with care in opening it. Don't provoke the evil. +-------------------------- +Weight: 1 +# +14298# +Everyone likes surprises. You might be surprised once you open it. +-------------------------- +Weight: 1 +# +14299# +A box containing 1 Leaves of Grass. +-------------------------- +Weight: 1 +# +14300# +A box that contains 1 'Mask of Ifrit' in it. +-------------------------- +Description: +A mask of Ifrit, the spiritual owner of fire. +STR +1, INT +1, MDEF +5 +Decreases damage taken from Fire elemental attacks by 10%. +Increases damage taken from Water elemental attacks by 10%. +Enables the use of Level 1 Sight. +Random chance to auto-cast Level 3 Meteor Storm when receiving physical damage. +Random chance to auto-cast Level 3 Fire Bolt dealing physical attack. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper, Middle, Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +All classes except Novice +This item is not refunable. +-------------------------- +Weight: 1 +# +14301# +A box that contains 1 'Ears of Ifrit' in it. +-------------------------- +Description: +A headgear which imitates ears of Ifrit, the spiritual owner of fire. +STR +1, MDEF +3 +Increases damage of Fire Bolt, Fire Pillar and Meteor Storm skill by 2%. +Increases damage of Bash, Pierce and Magnum Break skill by 2%. +Increases resistence against Fire elemental attacks by 5%. +Decreases resistence against Water elemental attacks by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +All classes except Novice +-------------------------- +Weight: 1 +# +14302# +A box containing 1 Filir Hat. +-------------------------- +Weight: 1 +# +14303# +A box containing 1 Angel Spirit. +-------------------------- +Weight: 1 +# +14304# +A box containing 1 Scuba Mask. +-------------------------- +Weight: 1 +# +14305# +A box containing 1 Nekomimi Kafra Headband. +-------------------------- +Weight: 1 +# +14306# +RWC special scroll, it is quite collectable. +-------------------------- +Weight: 1 +# +14307# +RWC special edition Scroll. It is worth having to remember all honors of RWCeach year. +-------------------------- +Weight: 1 +# +14308# +An Ardor Scroll that inspires you to be brave and have a passion. +-------------------------- +Weight: 1 +# +14309# +A box that contains 1 Gangster Scarf. +-------------------------- +Weight: 1 +# +14310# +A box that contains 1 Ninja's Scroll. +-------------------------- +Weight: 1 +# +14311# +A box that contains 1 Angel Spirit. +-------------------------- +Weight: 1 +# +14312# +A box that contains 1 Gangster Scarf. +-------------------------- +Weight: 1 +# +14313# +A box that contains 1 Ninja's Scroll. +-------------------------- +Weight: 1 +# +14314# +A box that contains 10 Phreeoni Scroll. +Phreeoni Scroll - A Scroll that imbued with great force of Monster Phreeoni. +HIT +100 for 3 minutes. +-------------------------- +Weight: 1 +# +14315# +A box that contains 10 Ghostring Scroll. +Ghostring Scroll - A Scroll that imbued with great force of Monster Ghostring. +Gives Ghost element to a character for 1 minute. +-------------------------- +Weight: 1 +# +14316# +Love Scroll. If you are waiting for love, you definitely need this scroll. +-------------------------- +Weight: 1 +# +14317# +Taiwan Bacsojin scroll. If you are lucky, you will be suprised once you open it. +-------------------------- +Weight: 1 +# +14318# +A box containing 1 Antenna. +-------------------------- +Weight: 1 +# +14319# +A box containing 1 Tiraya Bonnet. +-------------------------- +Weight: 1 +# +14320# +A box containing 1 Balloon Hat. +-------------------------- +Weight: 1 +# +14321# +A box containing 1 Holy Sabre inside. +-------------------------- +Weight: 1 +# +14322# +A box containing 1 Book of Prayer inside. +-------------------------- +Weight: 1 +# +14323# +A box containing 1 Phenomena Whip inside. +-------------------------- +Weight: 1 +# +14324# +A box containing 1 Staff of Darkness inside. +-------------------------- +Weight: 1 +# +14325# +A box containing 1 Monk Knuckle inside. +-------------------------- +Weight: 1 +# +14326# +A box containing 1 Mace of Madness inside. +-------------------------- +Weight: 1 +# +14327# +A box containing 1 Spear of Excellent inside. +-------------------------- +Weight: 1 +# +14328# +A box containing 1 Bow of Evil inside. +-------------------------- +Weight: 1 +# +14329# +A box containing 1 Katar of Speed inside. +-------------------------- +Weight: 1 +# +14330# +A box containing 1 Sharpshooter Revolver inside. +-------------------------- +Weight: 1 +# +14331# +A box containing 1 Guild Member Hat inside. Rental periods for 1 week. +-------------------------- +Weight: 1 +# +14332# +A box containing 1 Party Member Hat inside. Rental periods for 1 week. +-------------------------- +Weight: 1 +# +14333# +A box containing 1 Boyfriend Hat inside. Rental periods for 1 week. +-------------------------- +Weight: 1 +# +14334# +A box containing 1 Friend Hat inside. Rental periods for 1 week. +-------------------------- +Weight: 1 +# +14335# +A box containing 1 Girlfriend Hat inside. Rental periods for 1 week. +-------------------------- +Weight: 1 +# +14336# +A box containing 1 Holy Marcher Hat inside. +-------------------------- +Weight: 1 +# +14337# +A box containing 1 Guild Member Hat inside. Rental periods for 1 week. +-------------------------- +Weight: 1 +# +14338# +A box containing 1 Party Member Hat inside. Rental periods for 1 week. +-------------------------- +Weight: 1 +# +14339# +A box containing 1 Boyfriend Hat inside. Rental periods for 1 week. +-------------------------- +Weight: 1 +# +14340# +A box containing 1 Friend Hat inside. Rental periods for 1 week. +-------------------------- +Weight: 1 +# +14341# +A box containing 1 Girlfriend Hat inside. Rental periods for 1 week. +-------------------------- +Weight: 1 +# +14342# +A box containing 1 Holy Marcher Hat inside. +-------------------------- +Weight: 1 +# +14343# +A box containing 1 Spiked Scarf inside. +-------------------------- +Weight: 1 +# +14344# +A box containing 1 Rainbow Scarf inside. +-------------------------- +Weight: 1 +# +14345# +Various animals are inside of it! Please handle with care, you might get bit! +-------------------------- +Weight: 1 +# +14346# +A box containing 1 Brazilian Flag Hat inside. +-------------------------- +Weight: 1 +# +14347# +A box containing 20 Greed Scroll inside. +-------------------------- +Weight: 1 +# +14348# +A box containing 50 Greed Scroll inside. +-------------------------- +Weight: 1 +# +14349# +A box containing 20 Mental Potion inside. +-------------------------- +Weight: 1 +# +14350# +A box containing 50 Mental Potion inside. +-------------------------- +Weight: 1 +# +14351# +A box containing 20 Tyr's Blessing inside. +-------------------------- +Weight: 1 +# +14352# +A box containing 50 Tyr's Blessing inside. +-------------------------- +Weight: 1 +# +14353# +A box containing 20 Greed Scroll inside. +-------------------------- +Weight: 1 +# +14354# +A box containing 50 Greed Scroll inside. +-------------------------- +Weight: 1 +# +14355# +A box containing 20 Mental Potion inside. +-------------------------- +Weight: 1 +# +14356# +A box containing 50 Mental Potion inside. +-------------------------- +Weight: 1 +# +14357# +A box containing 20 Tyr's Blessing inside. +-------------------------- +Weight: 1 +# +14358# +A box containing 50 Tyr's Blessing inside. +-------------------------- +Weight: 1 +# +14359# +A box that contains 10 'Taogun Ka Scroll' in it. +A Scroll that imbued with great force of Monster Taogun Ka. +For 3 minutes MaxHP +100%, DEF -50, MDEF -50. +-------------------------- +Weight: 1 +# +14360# +A box that contains 10 'Mistress Scroll' in it. +A Scroll that imbued with great force of Monster Mistress. +Enables of casting certain spells without gemstones for 3 minutes. +Increases SP Consumption by 25%. +-------------------------- +Weight: 1 +# +14361# +A box that contains 10 'Orc Hero Scroll' in it. +A Scroll that imbued with great force of Monster Orc Hero. +Immunity to Stun for 1 minute. +-------------------------- +Weight: 1 +# +14362# +A box that contains 10 'Orc Lord Scroll' in it. +A Scroll that imbued with great force of Monster Orc Lord. +Reflects 30% of all physical damage taken for 3 minutes. +-------------------------- +Weight: 1 +# +14363# +A heart shaped scroll. You will feel warm heart once you open it. +-------------------------- +Weight: 1 +# +14364# +A box containing 1 JOB Battle Manual inside. +-------------------------- +Job Battle Manual - Improves Job exp rate by 25% for 30 minutes. Works in combination with the normal battle manual. +-------------------------- +Weight: 1 +# +14365# +A box containing 5 JOB Battle Manual inside. +-------------------------- +Job Battle Manual - Improves Job exp rate by 25% for 30 minutes. Works in combination with the normal battle manual. +-------------------------- +Weight: 1 +# +14366# +A box containing 10 JOB Battle Manual inside. +-------------------------- +Job Battle Manual - Improves Job exp rate by 25% for 30 minutes. Works in combination with the normal battle manual. +-------------------------- +Weight: 1 +# +14367# +A box containing 1 JOB Battle Manual inside. +-------------------------- +Job Battle Manual - Improves Job exp rate by 25% for 30 minutes. Works in combination with the normal battle manual. +-------------------------- +Weight: 1 +# +14368# +A box containing 5 JOB Battle Manual inside. +-------------------------- +Job Battle Manual - Improves Job exp rate by 25% for 30 minutes. Works in combination with the normal battle manual. +-------------------------- +Weight: 1 +# +14369# +A box containing 10 JOB Battle Manual inside. +-------------------------- +Job Battle Manual - Improves Job exp rate by 25% for 30 minutes. Works in combination with the normal battle manual. +-------------------------- +Weight: 1 +# +14370# +A box containing 1 Goddess of Blessing inside. +You have the blessings of the goddess! +-------------------------- +Weight: 1 +# +14371# +A box containing 1 Angel of Blessing inside. +The angel's blessing be with you! +-------------------------- +Weight: 1 +# +14372# +A box containing 1 Snow Powder inside. +During the winter atmosphere I'd like to look good items! +Warning: You can not turn off the lights! +-------------------------- +Weight: 1 +# +14373# +A box containing 1 Small Hearts inside. +This item is expected to create an atmosphere of love, please! +-------------------------- +Weight: 1 +# +14374# +A box containing 1 Extravagant Firework inside. +Gorgeous and beautiful fireworks. When used in a summer night seems to be romantic. +-------------------------- +Weight: 1 +# +14375# +A box that contains 1 Celestial Axe inside. +-------------------------- +Weight: 1 +# +14376# +A box that contains 1 Angelring Potion inside. +-------------------------- +Weight: 1 +# +14377# +A box that contains 1 Scream Megaphone inside. +-------------------------- +Weight: 1 +# +14378# +A box containing 1 Dungeon Teleport Scroll 3 inside. +-------------------------- +Weight: 1 +# +14379# +A box containing 1 Love Daddy Hat inside. +-------------------------- +Weight: 1 +# +14380# +A box containing 1 Anubis Hat inside. +-------------------------- +Weight: 1 +# +14381# +A box containing 1 Staff of Piercing inside. +-------------------------- +Weight: 1 +# +14382# +A box containing 1 Lich's Bone Wand inside. +-------------------------- +Weight: 1 +# +14383# +A box containing 1 Long Horn inside. +-------------------------- +Weight: 1 +# +14384# +A box containing 1 Hunting Spear inside. +-------------------------- +Weight: 1 +# +14385# +A box containing 1 Book of the Dead inside. +-------------------------- +Weight: 1 +# +14386# +A box containing 1 Staff of Destruction inside. +-------------------------- +Weight: 1 +# +14387# +A box containing 1 Crest of the Rider inside. +-------------------------- +Weight: 1 +# +14388# +A box containing 1 Mythril Magic Manteau inside. +-------------------------- +Weight: 1 +# +14389# +A box containing 1 Sniping Suit inside. +-------------------------- +Weight: 1 +# +14390# +A box containing 1 Orlean's Glove inside. +-------------------------- +Weight: 1 +# +14391# +A box containing 1 Spiritual Ring inside. +-------------------------- +Weight: 1 +# +14392# +A box containing 1 Variant Shoes inside. +-------------------------- +Weight: 1 +# +14393# +만능부적이 들어있는 박스. +어떠한 봉인이라도 해제가 가능하다. +-------------------------- +Weight: 1 +# +14394# +A box containing 1 Twin Pompom By JB inside. +-------------------------- +Weight: 1 +# +14395# +A box containing 1 Ship Captain Hat inside. +-------------------------- +Weight: 1 +# +14396# +A box containing 1 Red Minstrel Hat inside. +-------------------------- +Weight: 1 +# +14397# +A box that contains 5 Battle Manual, 5 Bubble Gum inside. +-------------------------- +Weight: 1 +# +14398# +A box that contains 5 Battle Manual, 5 Small Magical Defense Potion inside. +-------------------------- +Weight: 1 +# +14399# +A box that contains 5 Battle Manual, 5 Small Physical Defense Potion inside. +-------------------------- +Weight: 1 +# +14400# +A box that contains 5 Battle Manual, 5 Tyr's Blessing inside. +-------------------------- +Weight: 1 +# +14401# +A box that contains 5 Battle Manual, 5 Mental Potion inside. +-------------------------- +Weight: 1 +# +14402# +A box that contains 5 Battle Manual, 5 Scroll of Holy Armor inside. +-------------------------- +Weight: 1 +# +14403# +A box that contains 5 Battle Manual, 5 Scroll of Shadow Armor inside. +-------------------------- +Weight: 1 +# +14404# +A box that contains 5 Battle Manual, 2 JOB Battle Manual inside. +-------------------------- +Weight: 1 +# +14405# +A box that contains 5 Gym Membership Card, 5 Regeneration Potion inside. +-------------------------- +Weight: 1 +# +14406# +A box that contains 5 Gym Membership Card, 20 Greed Scroll inside. +-------------------------- +Weight: 1 +# +14407# +Fancy, beautiful decorated scroll. We can feel Christmas is coming! +-------------------------- +Weight: 1 +# +14408# +Solar Scroll that symbolized the glaring sun. +-------------------------- +Weight: 1 +# +14409# +A box containing 1 Twin Pompom By JB inside. +-------------------------- +Weight: 1 +# +14410# +A box containing 1 Ship Captain Hat inside. +-------------------------- +Weight: 1 +# +14411# +A box containing 1 Red Minstrel Hat inside. +-------------------------- +Weight: 1 +# +14412# +A box that contains 5 Battle Manual, 5 Bubble Gum inside. +-------------------------- +Weight: 1 +# +14413# +A box that contains 5 Battle Manual, 5 Small Magical Defense Potion inside. +-------------------------- +Weight: 1 +# +14414# +A box that contains 5 Battle Manual, 5 Small Physical Defense Potion inside. +-------------------------- +Weight: 1 +# +14415# +A box that contains 5 Battle Manual, 5 Tyr's Blessing inside. +-------------------------- +Weight: 1 +# +14416# +A box that contains 5 Battle Manual, 5 Mental Potion inside. +-------------------------- +Weight: 1 +# +14417# +A box that contains 5 Battle Manual, 5 Scroll of Holy Armor inside. +-------------------------- +Weight: 1 +# +14418# +A box that contains 5 Battle Manual, 5 Scroll of Shadow Armor inside. +-------------------------- +Weight: 1 +# +14419# +A box that contains 5 Battle Manual, 2 JOB Battle Manual inside. +-------------------------- +Weight: 1 +# +14420# +A box that contains 5 Gym Membership Card, 5 Regeneration Potion inside. +-------------------------- +Weight: 1 +# +14421# +A box that contains 5 Gym Membership Card, 20 Greed Scroll inside. +-------------------------- +Weight: 1 +# +14422# +A box that contains 1 Ancient Scroll of Shaman inside. +-------------------------- +Weight: 1 +# +14423# +A box that contains 1 Broken Sword inside. +-------------------------- +Weight: 1 +# +14424# +A box that contains 1 Feather of Bizofnil inside. +-------------------------- +Weight: 1 +# +14425# +A box containing 1 New Pagdayaw in it. +-------------------------- +Weight: 1 +# +14426# +A box containing 1 Fortune Sword inside. +-------------------------- +Weight: 1 +# +14427# +A box containing 1 Ice Pick inside. +-------------------------- +Weight: 1 +# +14428# +A box containing 1 Kamaitachi inside. +-------------------------- +Weight: 1 +# +14429# +A box containing 1 Spirited Guitar inside. +-------------------------- +Weight: 1 +# +14430# +A box containing 1 Doom Slayer inside. +-------------------------- +Weight: 1 +# +14431# +A box containing 1 Huuma Blaze Shuriken inside. +-------------------------- +Weight: 1 +# +14432# +A box containing 1 Odin's Blessing inside. +-------------------------- +Weight: 1 +# +14433# +A box containing 1 Ring of Flame Lord inside. +-------------------------- +Weight: 1 +# +14434# +A box containing 1 Ring of Resonance inside. +-------------------------- +Weight: 1 +# +14435# +A box containing 1 Student Cap inside. +-------------------------- +Weight: 1 +# +14436# +A box containing 1 Ulle's Cap inside. +-------------------------- +Weight: 1 +# +14437# +A box containing 1 Sphinx Hat inside. +-------------------------- +Weight: 1 +# +14438# +A box containing 1 Red Lotus Sword inside. +-------------------------- +Weight: 1 +# +14439# +A box containing 1 Power of Thor inside. +-------------------------- +Weight: 1 +# +14440# +A box containing 1 Dice Hat inside. +-------------------------- +Weight: 1 +# +14441# +A box containing 1 Tiger King Doll Hat inside. +-------------------------- +Weight: 1 +# +14442# +A box containing 1 Vagabond Wolf King Helmet inside. +-------------------------- +Weight: 1 +# +14443# +A box containing 1 Pizza Hat inside. +-------------------------- +Weight: 1 +# +14444# +A box containing 1 Ice Cream Hat inside. +-------------------------- +Weight: 1 +# +14447# +A box that contains 1 Scallywag's Hat +Description: +Aaarrrgghhhh, this hat be made out of bona fide unidentified dead animal leather. With time, aging and weathering, most of the hat formed into it's current shape and dyed a bright red. +Increases EXP gained by 10% +Refine Level +5: +EXP gained increases to 15%. +Refine Level +7: +EXP gained increases to 25%. +Increases EXP gained by 10% for every Refine Level above 7. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +14448# +A box that contains 1 Necromancer's Hood Headgear. +-------------------------- +Weight: 1 +# +14449# +Mysterious 느낌이 드는 알모양의 꾸러미. 크고 무겁다. +여러가지 아이템이 들어있는 듯 하다. +-------------------------- +Weight: 200 +# +14450# +Mysterious 느낌이 드는 알모양의 꾸러미. 크고 무겁다. +여러가지 아이템이 들어있는 듯 하다. +-------------------------- +Weight: 200 +# +14459# +A box that contains 1 Magic Rabbit Hat inside. +-------------------------- +Weight: 1 +# +14460# +A box that contains 1 RO 5th Wedding Anniversary inside. +-------------------------- +Weight: 1 +# +14461# +A box that contains 1 Ashura Fairy Hat inside. +-------------------------- +Weight: 1 +# +14462# +A box that contains 1 Dark Randgris Helm inside. +-------------------------- +A helm laced with the power of Valkyrie Randgris. It helps its wearer into concentrate better. +DEX +3, MDEF +1 +-------------------------- +Weight: 1 +# +14463# +A box that contains 1 Purple Cowboy Hat inside. +-------------------------- +A hat, symbolizing western frontiers, made to celebrate the festival. +INT +2 , VIT +2 , MaxSP +50 +-------------------------- +Weight: 1 +# +14464# +A box that contains 1 Dark Randgris Helm inside. +-------------------------- +A helm laced with the power of Valkyrie Randgris. It helps its wearer into concentrate better. +DEX +3, MDEF +1 +-------------------------- +Weight: 1 +# +14465# +A box that contains 1 Purple Cowboy Hat inside. +-------------------------- +A hat, symbolizing western frontiers, made to celebrate the festival. +INT +2, VIT +2, MaxSP +50 +-------------------------- +Weight: 1 +# +14466# +A prize that is given to the hottest character who is the winner of the Valentine's Hottest Contest. +-------------------------- +Weight: 0 +# +14467# +A box that contains 1 Carnival Hat inside. +-------------------------- +Weight: 0 +# +14468# +A box that contains 1 Carnival Circlet inside. +-------------------------- +Weight: 0 +# +14469# +A scroll to celebrate the 'Year of Cattle'. +-------------------------- +Weight: 1 +# +14470# +A box that contains 1 Nightmare Terror Exchange Coupon inside. +-------------------------- +Weight: 1 +# +14471# +A box that contains 1 Loli Ruri Exchange Coupon inside. +-------------------------- +Weight: 1 +# +14472# +A box that contains 1 Goblin Leader Exchange Coupon inside. +-------------------------- +Weight: 1 +# +14473# +A box that contains 1 Incubus Exchange Coupon inside. +-------------------------- +Weight: 1 +# +14474# +A box that contains 1 Miyabi Doll Exchange Coupon inside. +-------------------------- +Weight: 1 +# +14475# +A box that contains 1 Giant Whisper Exchange Coupon inside. +-------------------------- +Weight: 1 +# +14476# +A box that contains 1 Evil Nymph Exchange Coupon inside. +-------------------------- +Weight: 1 +# +14477# +A box that contains 1 Medusa Exchange Coupon inside. +-------------------------- +Weight: 1 +# +14478# +A box that contains 1 Stone Shooter Exchange Coupon inside. +-------------------------- +Weight: 1 +# +14479# +A box that contains 1 Marionette Exchange Coupon inside. +-------------------------- +Weight: 1 +# +14480# +A box that contains 1 Leaf Cat Exchange Coupon inside. +-------------------------- +Weight: 1 +# +14481# +A box that contains 1 Dullahan Exchange Coupon inside. +-------------------------- +Weight: 1 +# +14482# +A box that contains 1 Shinobi Exchange Coupon inside. +-------------------------- +Weight: 1 +# +14483# +A box that contains 1 Golem Exchange Coupon inside. +-------------------------- +Weight: 1 +# +14484# +A box that contains 1 Civil Servant Exchange Coupon inside. +-------------------------- +Weight: 1 +# +14485# +A box that contains 1 Academy of Badge inside. +-------------------------- +Weight: 1 +# +14486# +A box that contains 1 Academy Freshman Hat inside. +-------------------------- +Weight: 1 +# +14487# +A box that contains 1 Academy Completion Hat inside. +-------------------------- +Weight: 1 +# +14488# +A box that contains 1 Blue Pajamas Hat inside. +-------------------------- +Weight: 10 +# +14489# +A box that contains 1 Pink Pajamas Hat inside. +-------------------------- +Weight: 10 +# +14490# +A box that contains 1 Shark Hat inside. +-------------------------- +Weight: 1 +# +14491# +A box that contains 1 Sting Hat inside. +-------------------------- +Weight: 1 +# +14492# +A box that contains 1 Shark Hat inside. +-------------------------- +Weight: 1 +# +14493# +A box that contains 1 Sting Hat inside. +-------------------------- +Weight: 1 +# +14494# +A box that contains 1 Tiara Samambaia inside. +-------------------------- +Weight: 1 +# +14495# +A box that contains an Aquarius Diadem Headgear. +-------------------------- +Weight: 1 +# +14496# +A box that contains an Aquarius Crown Headgear. +-------------------------- +Weight: 1 +# +14497# +A box that contains a Pisces Diadem Headgear. +-------------------------- +Weight: 1 +# +14498# +A box that contains a Pisces Crown Headgear. +-------------------------- +Weight: 1 +# +14499# +A box that contains 1 Peacock Feather inside. +-------------------------- +Weight: 1 +# +14500# +A life insurance certificate issued by Kafra Center. +Once the player receives the benefit from this certificate, the item will lose its effect. +If the character dies within the 60 minutes duration, no loss of EXP will be made. +Corrected display suppose to be will not lose any experience the first time you ko'ed. +The effect will disappear after your first KO'. +-------------------------- +Weight: 1 +# +14501# +Account Bound +A box that contains various shadow shield equipment. +-------------------------- +Open to get one of the following: +4x HE Battle Manual Plus +4x HE Bubble Gum Plus +3x Safe to 7 Weapon Certificate +3x Safe to 7 Body Armor Certificate +Costume Enchant Stone Box +Costume Carnation Hairband +Cranial Shield (Shadow) +Safeguard Shield (Shadow) +Brutal Shield (Shadow) +Gargantua Shield (Shadow) +Homers Shield (Shadow) +Dragoon Shield (Shadow) +Satanic Shield (Shadow) +Flameguard Shield (Shadow) +Requiem Shield (Shadow) +Cadi Shield (Shadow) +-------------------------- +Weight: 1 +# +14503# +A gift box set for the celebration of Halloween and the Garden Tour. +-------------------------- +Weight: 1 +# +14504# +Temporarily clock up operating speed part of Madogear. +When used, cast Level 5 Adrenaline Rush on user. +Weight: 5 +-------------------------- +Requirement: +Base Level 120 +# +14505# +A ticket to enter Air Fortress Invasion Memorial Dungeon for 1 hour. +You can directly enter Air Fortress Invasion. +-------------------------- +Weight: 0 +# +14506# +Free dungeon entry ticket. +It seem you can directly go to dungeon if your Level meet the requirement. +Air Fortress Invasion - Level(145 or higher) +-------------------------- +Weight: 0 +# +14507# +This Red Egg represents enthusiasm, positivity, danger and passion. +-------------------------- +Weight: 1 +# +14508# +A scroll which gives you a random of amount zeny. +-------------------------- +Weight: 1 +# +14509# +Potion that stimulates concentration. Affects the attack speed of its consumer. +-------------------------- +Type: Stat booster +Effect: Increases attack speed +Effect duration: 30 minutes +-------------------------- +Requirement: None +Weight: 2 +# +14510# +Potion that possesses the effect of awakening. It is a mysterious medicine that helps to increase the character's attack speed. +-------------------------- +Type: Stat booster +Effect: Increases attack speed +Effect duration: 30 minutes +-------------------------- +Requirement: +Base Level 40 +All classes except Acolyte, Priest, Bard and Dancer +Weight: 2 +# +14511# +A very special potion that enrages the character and turns him into a berserker and increases the character's attack speed. +-------------------------- +Type: Stat booster +Effect: Increases attack speed +Effect duration: 30 minutes +-------------------------- +Requirement: +Base Level 85 +Swordsman and Merchant classes; Rogue, Magician and Wizard +Weight: 2 +# +14512# +Scroll that has the record of using Level 10 Meteor Storm. You can feel the great magical power from it. +-------------------------- +Weight: 1 +# +14513# +Scroll that has the record of using Level 10 Storm Gust. You can feel the cold magical force from the scroll. +-------------------------- +Weight: 1 +# +14514# +Scroll that has the record of using Level 10 Lord of Vermilion. You can feel the great magical force from the scroll. +-------------------------- +Weight: 1 +# +14515# +Scroll that has the record of using Level 1 Lex Aeterna. You can feel the power of holy spell from the box. +-------------------------- +Weight: 1 +# +14516# +Scroll that has the record of using Level 5 Magnificat. It has beautiful letters written on the scroll. +-------------------------- +Weight: 1 +# +14517# +Scroll that has the record of using Level 5 Chemical Protection Helm. It has some mysterious letters written on the scroll. +-------------------------- +Weight: 1 +# +14518# +Scroll that has the record of using Level 5 Chemical Protection Shield. It has some mysterious letters written on the scroll. +-------------------------- +Weight: 1 +# +14519# +Scroll that has the record of using Level 5 Chemical Protection Armor. It has some mysterious letters written on the scroll. +-------------------------- +Weight: 1 +# +14520# +Scroll that has the record of using Level 5 Chemical Protection Weapon. It has some mysterious letters written on the scroll. +-------------------------- +Weight: 1 +# +14521# +Scroll that has the record of using Level 1 Repair Weapon. It has some mysterious letters written on the scroll. +-------------------------- +Weight: 1 +# +14522# +A delicious looking bun which is big enough for two person to eat together. It recovers your HP. +-------------------------- +Weight: 1 +# +14523# +A very bitter pill. It is made with traditional recipe which has been handed down from the family of who have 5000 years of tradition in pharmacy. +Don't swallow it once. You should chew it slowly in order to recover your SP. +-------------------------- +Weight: 1 +# +14524# +A slice of a very rare fish that can barely be caught once a year. It has the scent of blue sea. +It recovers your SP and HP. +-------------------------- +Weight: 1 +# +14525# +A chewy delicious rice cake. It gives you +10 ATK for 30 min. +No one knows why the rice cake has this special function. +-------------------------- +Weight: 1 +# +14526# +A traditional pastry which is made of liquors and grains. It gives you +10 MATK for 30 min. +No one knows why the pastry has this special function. +-------------------------- +Weight: 1 +# +14527# +A scroll on which +many dungeon map +coordinates have +been recorded. +If you tear it up, +it can transport you +once to Nogg Road, +Mjolnir Dead Pit, +Payon Dungeon, Toy +Dungeon, Glast Heim +Dungeon, Hermit's +Checkers, Izlude +Dungeon, Turtle +Island Dungeon, +Clock Tower B3F, +Clock Tower 3F, +Glast Heim Culvert 2F, +Sphinx Dungeon 4F, +Inside Pyramid 4F, +Prontera Culvert 3F, +Amatsu Dungeon 1F +(Tatami Maze), +Ancient Shrine 2F. +Warning - After using it, unless you choose the destination in 1 minute, +it will be useless. +-------------------------- +Weight: 1 +# +14528# +Scroll that contains the incantation of Teleportation to PVP Room. The word written on it can not be identified. +Allow character to teleport to the PVP Room. +-------------------------- +Weight: 1 +# +14529# +Enables a single cast of Greed. +-------------------------- +Weight: 1 +# +14530# +Evasion_Scroll - Increases Dodge for 30 minutes. +Effect disappear upon death. +-------------------------- +Weight: 1 +# +14531# +Concentration Scroll - Increases Accuracy for 30 minutes. +Effect disappear upon death. +-------------------------- +Weight: 1 +# +14532# +A manual that explains the effective way of the battle. It is a very detailed and well composed manual. +Exp rate is increased to 25% for 30 minutes. +-------------------------- +Weight: 1 +# +14533# +A manual that explains the effective way of the battle. It is a very detailed and well composed manual. +Exp rate is increased to 100% for 30 minutes. +-------------------------- +Weight: 1 +# +14534# +A small bottle of Yggdrasil Tree Sap that is effective on healing wounds. +Restores an amount of HP equal of 5% of your MaxHP every 5 seconds for a 10 minute duration. +The effect of this item will disappear upon death. +-------------------------- +Weight: 1 +# +14535# +A sizeable bottle of Yggdrasil Tree Sap that is effective on healing wounds. +Restores an amount of HP equal of 7% of your MaxHP every 4 seconds for a 10 minute duration. +The effect of this item will disappear upon death. +-------------------------- +Weight: 1 +# +14536# +An abrasive that adds sharpness to a weapon. +Increases Critical by 30 for 5 minutes. +If you are incapacitated, the item effect will disappear. +When assassin class using only give 15 critical rate +Using katar weapon type will double critical rate to 30. +-------------------------- +Weight: 1 +# +14537# +A magic potion made with alchemy and magic. +A Rosary is rumored to be one of the secret ingredients in making this potion. +Increases the HP recovery effect of some potions and the Heal skill by 20% for 30 minutes. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +14538# +A glass of illusion made from morning dew from an Illusion Flower. +Drink the dew to create an illusion that will make it more difficult for enemies to hit you. +Increases your Perfect Dodge by 20 for 1 minute. Only one may be consumed per 5 minutes. +If you are incapacitated, +the item effect will disappear. +-------------------------- +Weight: 1 +# +14539# +A scroll enchanted +with Shadow Armor +Magic that can protect +your body with the +power of shadows. +Endows a character +with Shadow element +for 30 minutes. +-------------------------- +Weight: 1 +# +14540# +A scroll enchanted +with Holy Armor Magic +that can protect your +body with the power +of holiness. Endows +a character with Holy element for 30 minutes. +-------------------------- +Weight: 1 +# +14541# +A secret potion made +using tough dragon +scales. Adds 3% +resistance to Physical +Attacks for 1 minute. +If you are incapacitated, +the item effect will disappear. +-------------------------- +Weight: 1 +# +14542# +A secret potion made +using tough dragon +scales. Adds 3% +resistance to Physical +Attacks for 3 minutes. +-------------------------- +Weight: 1 +# +14543# +A secret potion made +using pixie mustache. +Adds 3% resistance +to Magical Attacks +for 1 minute. +-------------------------- +Weight: 1 +# +14544# +A secret potion made +using pixie mustache. +Adds 3% resistance +to Magical Attacks +for 3 minutes. +If you are incapacitated, +the item effect will disappear. +-------------------------- +Weight: 1 +# +14545# +This well written, detailed manual explains Extremely Efficient battle methods. +-------------------------- +Type: Supportive +Effect: Experience gained +200% +Effect duration: 30 minutes +Weight: 1 +# +14546# +A firecracker that shows 'I LOVE YOU!'. Danger, keep children away from it. +-------------------------- +Weight: 2 +# +14547# +A firecracker that shows 'HAPPY WHITEDAY!'. Danger, keep children away from it. +-------------------------- +Weight: 2 +# +14548# +A firecracker that shows 'VALENTINE'S DAY!'. Danger, keep children away from it. +-------------------------- +Weight: 2 +# +14549# +A firecracker that shows 'HAPPY BIRTHDAY!'. Danger, keep children away from it. +-------------------------- +Weight: 2 +# +14550# +A firecracker that shows 'MERRY CHRISTMAS!'. Danger, keep children away from it. +-------------------------- +Weight: 2 +# +14551# +A dish that is easy and convenient for beginner chefs; +it has a fresh, grassy taste, strangely enough. +-------------------------- +Type: Cooked Food +Effect: STR +1 +Effect duration: 3 minutes +Weight: 1 +# +14552# +A dish that looks slightly unappetizing, but its taste and scent are quite pleasant. +-------------------------- +Type: Cooked Food +Effect: STR +2 +Effect duration: 3 minutes +Weight: 1 +# +14553# +It looks like an ordinary steak, but it is explosively flavorful and juicy. +-------------------------- +Type: Cooked Food +Effect: STR +3 +Effect duration: 3 minutes +Weight: 1 +# +14554# +A sweetly scented tea made by mixing herbs and grape juice. +-------------------------- +Type: Cooked Food +Effect: INT +1 +Effect duration: 3 minutes +Weight: 1 +# +14555# +A tea made with 3 different herbs that give it a refreshingly strong scent, but also give it a bland flavor. +-------------------------- +Type: Cooked Food +Effect: INT +2 +Effect duration: 3 minutes +Weight: 1 +# +14556# +An invigoratingly hot herbal whose flavor is enhanced with the sweetness of honey. +-------------------------- +Type: Cooked Food +Effect: INT +3 +Effect duration: 3 minutes +Weight: 1 +# +14557# +A simple dish made from steamed crab nippers and herbs. +-------------------------- +Type: Cooked Food +Effect: VIT +1 +Effect duration: 3 minutes +Weight: 1 +# +14558# +Assorted seafood that makes people that live near the sea feel very homesick. +Unless, of course, they're eating this food at home. +-------------------------- +Type: Cooked Food +Effect: VIT +2 +Effect duration: 3 minutes +Weight: 1 +# +14559# +A soup made with boiled clam meat. +-------------------------- +Type: Cooked Food +Effect: VIT +3 +Effect duration: 3 minutes +Weight: 1 +# +14560# +A soup made with squid ink broth and frog eggs that most people can't eat until they close their eyes. +-------------------------- +Type: Cooked Food +Effect: AGI +1 +Effect duration: 3 minutes +Weight: 1 +# +14561# +Incredibly smooth, slick and slippery noodles that are very difficult to eat. +-------------------------- +Type: Cooked Food +Effect: AGI +2 +Effect duration: 3 minutes +Weight: 1 +# +14562# +Cheese gratin with steamed tentacles mixed into it for a unique flavor. +-------------------------- +Type: Cooked Food +Effect: AGI +3 +Effect duration: 3 minutes +Weight: 1 +# +14563# +A special mixed drink of grape juice and honey that has a sweet and sour taste. +-------------------------- +Type: Cooked Food +Effect: DEX +1 +Effect duration: 3 minutes +Weight: 1 +# +14564# +A special chocolate mousse cake with a smooth luxurious flavor that even Charles Orlean would be proud of. +-------------------------- +Type: Cooked Food +Effect: DEX +2 +Effect duration: 3 minutes +-------------------------- +Weight: 1 +# +14565# +A mix of various, crisp fruit flavored with light, sweet syrup. +-------------------------- +Type: Cooked Food +Effect: DEX +3 +Effect duration: 3 minutes +Weight: 1 +# +14566# +Lightly spiced monkey tails deep fried in oil that are popular as a side dish for drinking. +-------------------------- +Type: Cooked Food +Effect: LUK +1 +Effect duration: 3 minutes +Weight: 1 +# +14567# +A cocktail mixed from various fruit juices. +-------------------------- +Type: Cooked Food +Effect: LUK +2 +Effect duration: 3 minutes +Weight: 1 +# +14568# +Crunchy, fried sweet potatoes topped with light syrup. +-------------------------- +Type: Cooked Food +Effect: LUK +3 +Effect duration: 3 minutes +Weight: 1 +# +14569# +A ring used to ensnare a Knife Goblin. +-------------------------- +Type: Taming Item +Weight: 5 +# +14570# +A ring used to ensnare a Flail Goblin. +-------------------------- +Type: Taming Item +Weight: 5 +# +14571# +A ring used to ensnare a Hammer Goblin. +-------------------------- +Type: Taming Item +Weight: 5 +# +14572# +A marble crystal used to lure ground Deleters +-------------------------- +Type: Taming Item +Weight: 5 +# +14573# +A stone used to capture Diabolics +-------------------------- +Type: Taming Item +Weight: 5 +# +14574# +A skull of a Wanderer. +Wanderers seek these eerie trophies. +-------------------------- +Type: Taming Item +Weight: 5 +# +14575# +A special cake which made by Thachentze, a cookery from Lutie. +STR +5 +-------------------------- +Weight: 1 +# +14576# +Wine distilled from Mastela fruit that helps the drinker to maintain clarity of thought. +INT +5 +-------------------------- +Weight: 1 +# +14577# +A bao that is fried and seasoned with spicy sauce. If you're not used to spicy food, it's not a good idea to eat too many. +VIT +5 +-------------------------- +Weight: 1 +# +14578# +Steamed pumpkin and Red Bat wings wrapped in a Hinale leaflet that have a combined flavor that is indescribable. +AGI +5 +-------------------------- +Weight: 1 +# +14579# +A trendy green salad that is topped with sweet dressing add passion eat. +DEX +5 +-------------------------- +Weight: 1 +# +14580# +A fried scorpion tail, which is said very dangerous if over eaten. +LUK +5 +-------------------------- +Weight: 1 +# +14581# +When used allows you to teleport to a specific dungeon from the following list: +-------------------------- +Thor's Volcano Dungeon F2 +Ice Dungeon Entrance +Veins Field +Niflheim +Labyrinth +Juperos +Ant Hell +Kiel Hyre's School Entrance +Thanatos Tower Entrance +The Abyss Lakes Entrance +Rachel Temple Entrance +Odin Temple Entrance +-------------------------- +Warning - After using it, unless you choose the destination in 1 minute it will be useless. +-------------------------- +Weight: 1 +# +14582# +An enchanted butterfly's wing that instantly sends its user to the towns of the Rune Midgarts Kingdom. +Locations: Prontera, Geffen, Payon, Morocc, Al De Baran or Alberta when waved in the air. +Warning: If no town is selected, the item will disappear. +-------------------------- +Weight: 1 +# +14583# +An enchanted butterfly's wing that instantly sends its user to the towns of the Schwaltzwalt Republic. +Locations: Juno, Lighthalzen, Einbroch or Hugel when waved in the air. +Warning: If no town is selected, the item will disappear. +-------------------------- +Weight: 1 +# +14584# +An enchanted butterfly's wing that instantly sends its user to the towns of Arunafeltz. +Locations: Veins or Rachel +Warning: If no town is selected, the item will disappear. +-------------------------- +Weight: 1 +# +14585# +An enchanted butterfly's wing that instantly sends its user to the island towns of Rune Midgard. +Locations: Ayothaya, Amatsu, Luoyang, Kunlun +Warning: If no town is selected, the item will disappear. +-------------------------- +Weight: 1 +# +14586# +A hard candy that feels like its jumping in your mouth when you eat it. +You'll need to remember to brush your teeth after! +Increases ATK +20, Attack Speed +25% and permanent endure for 1 minute. +Decreases 100HP per 10 seconds. Cooldown for 3 minutes. +-------------------------- +Weight: 1 +# +14587# +Weapon Repair Level 1 is usable with this Scroll. Unknown Writings are engraved. +-------------------------- +Weight: 1 +# +14588# +A scroll in which +a single use of Level 10 +Party Blessing +has been recorded. +Will cast on all party +members within a +certain range. +Caution-- This item +won't work while your +character is casting +a spell or skill. +-------------------------- +Weight: 1 +# +14589# +A scroll in which a single use of Level 10 Party Increase AGI has been recorded. +Will cast on all party members within a certain range. +Caution-- This item won't work while your character is casting a spell or skill. +-------------------------- +Weight: 1 +# +14590# +A scroll in which a single use of Level 5 +Party Assumptio has been recorded. +Will cast on all party members within a certain range. +Caution-- This item won't work while your character is casting a spell or skill. +-------------------------- +Weight: 1 +# +14591# +A teleport scroll that warps you to the Siege Areas. +Valkyrie Realms +Britoniah +Greenwood Lake +Luina +ValFreya +Nidhoggur +-------------------------- +Weight: 1 +# +14592# +This well written, detailed manual explains effective battle methods. +-------------------------- +Type: Supportive +Effect: Job EXP rate +50% +Duration: 30 minutes +Weight: 1 +# +14593# +A scroll that will cast Magic Amplification Level 10 for you. Good for making the next magic attack do +50% Magic attack power. +-------------------------- +Weight: 1 +# +14594# +Scroll that has the record of using Level 5 Quagmire. +Attention! This items won't work while above of 4X4 areas. +Caution-- This item won't work while your character is casting a spell or skill. +-------------------------- +Weight: 1 +# +14595# +Unsealed paper full of magic spells related to transferring. +By using the spell, the user can be transferred to a certain place. +-------------------------- +Weight: 0 +# +14596# +A box full of something heavy. +-------------------------- +Weight: 10 +# +14597# +A Scroll that imbued with great force of Monster Phreeoni. +HIT +100 for 3 minutes. +-------------------------- +Weight: 1 +# +14598# +A Scroll that imbued with great force of Monster Ghostring. +Gives Ghost element to a character for 1 minute. +-------------------------- +Weight: 1 +# +14599# +A greed scroll which can be used. It's kind of just have to be greedy people to feel Why? +Warning! Does not invoke in the city. When you use the scroll is the only consumer. +-------------------------- +Weight: 1 +# +14600# +A potion that refill your spirit. +-------------------------- +Type: Stat booster +Effect: MaxSP +10%, Reduces SP cost by 10% +Effect duration: 30 minutes +Weight: 1 +# +14601# +A potion that possesses the spirit of Tyr, the god of battle. +Increases ATK & 20 MATK for 5 minutes. HIT +30, FLEE +30 +Caution!- Item's active duration and ability will not work properly when it is being used with Honey Pastry, Sesame Pastry and Rainbow Cake. +Item option disappears when its owner has drained all energy. +-------------------------- +Weight: 1 +# +14602# +A Scroll that imbued with great force of Monster Taogun Ka. +For 3 minutes MaxHP +100%, DEF -50, MDEF -50. +-------------------------- +Weight: 1 +# +14603# +A Scroll that imbued with great force of Monster Mistress. +Enables of casting certain spells without gemstones for 3 minutes. +Increases SP Consumption by 25%. +-------------------------- +Weight: 1 +# +14604# +A Scroll that imbued with great force of Monster Orc Hero. +Immunity to Stun for 1 minute. +-------------------------- +Weight: 1 +# +14605# +A Scroll that imbued with great force of Monster Orc Lord. +Reflects 30% of all physical damage taken for 3 minutes. +-------------------------- +Weight: 1 +# +14606# +Job Battle Manual - Improves Job exp rate by 25% for 30 minutes. Works in combination with the normal battle manual. +-------------------------- +Weight: 1 +# +14607# +Sumptuous western food. +All Stats +3 for 1 hour. +-------------------------- +Weight: 60 +# +14608# +Grand and sumptuous Manchu-Han Imperial Feast. +All Stats +6 for 1 hour. +-------------------------- +Weight: 120 +# +14609# +Process (dishes failed). +Recovery HP & SP +10%. +-------------------------- +Weight: 30 +# +14610# +Present box with stylish decorations. +It seems rarely available. +-------------------------- +Weight: 20 +# +14611# +A potion made out of a dragon's strong skin which acts as a special medicine. +Increases tolerance to physical attack by 3% for 3 min. +The effect vanishes when the player dies or gets dispelled. +-------------------------- +Weight: 1 +# +14612# +A potion made out of a elf's mustache which acts as a special medicine. +Increases tolerance to magical attacks by 3% for 2 min. +The effect vanishes when the player dies or gets dispelled. +-------------------------- +Weight: 1 +# +14613# +Limited 2012 RWC Commemorative Egg +You can get one of several rare items such as +RWC Commemorative Pin, +RWC Weapon, +Safe to 9 Weapon Certificate, +Safe to 9 Armor Certificate, +RWC Initializer Ticket, +Mystical Card Album, +etc +-------------------------- +Weight: 1 +# +14614# +Made up of Tough Skin of Dragon and Fairy to Create Special Potion. +For 30 Minutes,Decreases damage taken from Physical And Magical Attack by 3% +No Effect when Character is dead in Battle. +-------------------------- +Weight: 1 +# +14615# +Colorful spheres caused by water droplets in the air that cause the sun's rays to refract. +You can get one of many rare items such as: +Adventurer's Backpack, +Eddga Card, +Skull Cap, +Safe to 9 Weapon Certificate, +Safe to 9 Armor Certificate. +-------------------------- +Weight: 1 +# +14616# +This biscuit stick was created to remember the day with most fireworks. +-------------------------- +STR +15 for 30 minutes. ++11~111 ATK for 10 minutes. +-------------------------- +Weight: 1 +# +14617# +This biscuit stick was created to remember the day with most fireworks. +-------------------------- +VIT +15 for 30 minutes. +MaxHP +11~33% for 10 minutes. +-------------------------- +Weight: 1 +# +14618# +This biscuit stick was created to remember the day with most fireworks. +-------------------------- +AGI +15 for 30 minutes. +FLEE +11~33 for 10 minutes. +-------------------------- +Weight: 1 +# +14619# +This biscuit stick was created to remember the day with most fireworks. +-------------------------- +INT +15 for 30 minutes. +MATK +11~111 for 10 minutes. +-------------------------- +Weight: 1 +# +14620# +This biscuit stick was created to remember the day with most fireworks. +-------------------------- +DEX +15 for 30 minutes. +HIT +11~33 for 10 minutes. +-------------------------- +Weight: 1 +# +14621# +This biscuit stick was created to remember the day with most fireworks. +-------------------------- +LUK +15 for 30 minutes. +Critical +11~33% for 10 minutes. +-------------------------- +Weight: 1 +# +14623# +Entire Box is Gold Plated. +You can get Devilring Card, Angelring Card, Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Buffalo Horn, Ring of Recovery, Costume Pink Bunny Band and other rare items. +-------------------------- +Weight: 1 +# +14624# +A scroll in blue colour. +Have chance to obtain +Sealed Incantation Samurai Card, +Sealed Phreeoni Card, +Maneater Flower Hat, +Black Devil Mask, +RWC Memory Knife +and etc randomly. +-------------------------- +Weight: 1 +# +14625# +A scroll with mysterious power. +-------------------------- +Weight: 1 +# +14626# +A scroll in indigo colour. +Have chance to obtain Pharaoh Card, Sealed Dark Snake Lord Card, Deviling Card, RWC Memory Staff, Monkey On Fur Hat and etc randomly. +-------------------------- +Weight: 1 +# +14627# +Ornate scroll decorated in a Christmas atmosphere. +You can get one of serveral items such as Blacksmiths Blessing, Maero/Odium/Despero/Dolor of Thanatos Card, Jeremy Beauty Coupon, Safe to 9 Weapon Certificate, Safe to 9 Armor Certificate, Mystical Card Album, +Costume Red Dress Hat, Costume Festival Box, Costume Enchant Stone Box, Costume Exchange Coupon and more. +-------------------------- +Weight: 1 +# +14628# +A box containing various Costume equipment. + You will recieve a random Costume equipment. +-------------------------- +Weight: 1 +# +14629# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +Strength Stone(Upper) +Intelligence Stone(Upper) +Agility Stone(Upper) +Dexterity Stone(Upper) +Health Stone(Upper) +Lucky Stone(Upper) +Attack Stone(Mid) +Magical Stone(Mid) +Hit Stone(Lower) +Evasion Stone(Lower) +-------------------------- +Weight: 1 +# +14630# +A demonic scroll. +-------------------------- +Weight: 1 +# +14643# +A violet colored scroll. +-------------------------- +Weight: 1 +# +14644# +A dark colored pet egg. +-------------------------- +Weight: 1 +# +14645# +Pulled from the demon fly himself. They grew back. The wings will slowly fade away over time. +-------------------------- +Use to warp to random locations on the map.000000 +-------------------------- +Beelzebug's Wings will automatically disappear 240 hours after opening the box. +-------------------------- +Weight: 0 +# +14646# +Luxurious full-course meal by court chef Orleans. +-------------------------- +All Status +10 +ATK +30 +MATK +30 +-------------------------- +The effect will not disappear even if the character is logged out or out of combat +-------------------------- +The effect does not overlap with existing special dishes. +-------------------------- +Type: Cooked Food +Effect duration: 30 minutes +Weight: 1 +# +14649# +A golden colored Pet Egg Scroll, you can obtain many mysterious item. +-------------------------- +Weight: 1 +# +14663# +Sealed Dark Lord Scroll for a limited time. +Sealed Dark Lord Card, Dark Illusion Card, Safe to 9 Weapon Certificate, Safe to 9 Armor Certificate, Immune Shadow Armor, Costume Sleeping Cat Hat, +Costume Enchant Stone Box, Costume Exchange Coupon and more. +-------------------------- +Weight: 1 +# +14664# +Rumors say it will bless for your career. +-------------------------- +Weight: 1 +# +14665# +Rumors say it will bless for your love. +-------------------------- +Weight: 1 +# +14666# +Rumors say it will bless for your wealth. +-------------------------- +Weight: 1 +# +14667# +Rumors say it will bless for your health. +-------------------------- +Weight: 1 +# +14672# +A hard egg given to the Steel Fighter 20Lv Achievement. +Contains 1 Nucleus of Undead and 1 Heart of Girl. +-------------------------- +Weight: 1 +# +14673# +A hard egg given to the Steel Fighter 25Lv Achievement. +Contains 1 Nucleus of Undead, 1 Heart of Girl and 1 King Wolf Scroll. +-------------------------- +Weight: 1 +# +14674# +A warming sweet drink from a mystical land made from fermented wheat. Drinking this brew grants a renewing energy with the smell of cinnamon. +VIT +10, Fire RES 5% +-------------------------- +Weight: 1 +# +14675# +A box containing Shadow equipment. +You can get one of the following Shadow equipments: +Power (Earring, Pendant), +Intelligent (Pendant, Earring), +Dexterous (Armor, Weapon), +Vital (Shoes, Shield), +Athletic (Shield, Shoes), +Lucky (Weapon, Armor) +There is also a possibility that Costume Brilliant Golden Wings may come out. +-------------------------- +Weight: 1 +# +14676# +A special card given to those who have left excellent results at RJC2013. +If you use it, you can get 1 random card from all boss monster cards including MVP. +-------------------------- +The above special effects disappear at the end of regular maintenance on June 25, 2013. +-------------------------- +Weight: 0 +# +14679# +An article sealed storm scroll Edition limited. +The scroll containing a weapon/armor Safe to 9 certificate, Shadows Pendant, Shadows Earrings, Costume: Wind Milestone, +Enchant Stone Boxes, Costume Coupons and various rare items, you can get one. +-------------------------- +Weight: 1 +# +14680# +Grants %3 resistance to Physical and Magical Damage for 1 minute +VIT +15 for 30 minutes. +-------------------------- +Weight: 1 +# +14681# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +Stone Recovery(Upper) +Recovery Skill Stone(Upper) +Recovery Stone(Mid) +HP Stone(Mid) +SP Stone(Mid) +Recovery Stone(Low) +Stones from existing costume enchant stone boxes can also be obtained with a relatively low chance. +-------------------------- +Weight: 1 +# +14682# +Limit edition Sealed Beelzebub Scroll. +A scroll contains Sealed Beelzebub Card, safety upgrade +9, Cranial/Brutal/Homer's/Cadi/Requiem/Frame Guard/Satanic/Dragoon/Gargantua/Safeguard Shadow Shields, Costume Enchantment Stone Box II and other rare items, only can get one. +-------------------------- +Weight: 1 +# +14689# +Sealed Kiel-D-01 scroll edition limited. +Obtain rare to get one of the items can be. +-------------------------- +Weight: 1 +# +14690# +Celebrate the GF Carnival, you can get a surprise at random after opening. +-------------------------- +Weight: 1 +# +14691# +There are 20 boxes of canned bananas. The canned bananas are pet feed for the proboscis. +-------------------------- +Weight: 0 +# +14692# +There are 20 boxes of spicy rice cakes. The spicy rice cakes are pet food for Golden Steel Ape. +-------------------------- +Weight: 0 +# +14693# +There are 20 boxes of hot dog fort, hot dog fort is the pet feed of QQ lion. +-------------------------- +Weight: 0 +# +14694# +With 20 boxes of ferris wheel biscuits, Hot Dog Fort is a pet feed for fat rhinoceros. +-------------------------- +Weight: 0 +# +14695# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +Large Stone(Upper) +Medium Stone(Upper) +Small Stone(Upper) +Stones from existing costume enchant stone boxes can also be obtained with a relatively low chance. +-------------------------- +Weight: 1 +# +14696# +Sealed Gloom Under Night Scroll edition limited. +Obtain rare to get one of the items can be. +-------------------------- +Weight: 1 +# +14704# +A box containing Gemstone Shadow equipment. +You can get 1 of the following Shadow Equipment: Gemstone (Armor, Shoes, Shield, Weapon, Earring, Pendant). +-------------------------- +Weight: 1 +# +14705# +Sealed Fallen Bishop Hibram Scroll Edition Limited. +Sealed Fallen Bishop Hibram Card, Safe to 9 Weapon Certificate, Safe to 9 Armor Certificate, Gemstone Shadow Box, Costume Vanargand Helm, Costume Enchant Stone Box 3, Exchange various costumes coupons so rare to get one of the items can be. +-------------------------- +Weight: 1 +# +14706# +Contains 1 Pirate Eyepatch that lasts for 3 days +# +14713# +Sealed ifrit Scroll edition limited. +Sealed ifrit card, Safe to 9 Weapon Certificate, Safe to 9 Armor Certificate, Costume Noah's Hat, Costume Enchant Stone Box 3, Exchange various costumes coupons so rare to get one of the items can be. +-------------------------- +Weight: 1 +# +14714# +A box swirling the power of the ground, water, fire and wind. +Contains one elemental drop. +-------------------------- +This item will be available until January 28, 2014 (Tuesday) and scheduled maintenance starts. +If you open the box after the period of use, nothing will appear. +-------------------------- +The appearance period of NPCs that can use Elemental Drop will be until January 28, 2014 (Tuesday) scheduled maintenance start. +-------------------------- +Weight: 0 +# +14717# +Edition limited 2013 RWC Commemorative Scroll. +Neutral shadow set, frozen curse shadow set, Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Safe to 9 Weapon Certificate, Safe to 9 Armor Certificate, Incubus pet exchange coupon, Costume Wings of Victory and other rare items, only can get one of the items. +-------------------------- +Weight: 1 +# +14718# +A limited edition sealed turtle general Scroll. +Sealed turtle general card, Safe to 9 Weapon Certificate, Safe to 9 Armor Certificate, Costume Light Darkness Crown, Costume Enchant Stone Box 3 and other rare items, only can get one of the items. +-------------------------- +Weight: 1 +# +14723# +Pressing the button on this stick will flash blinding light that seems to cause memory loss. +Resets the user's skill tree to an unallocated state while restoring all previously used skill points. +Can only be used when at 0 weight and with no character attachements, such as a mount or cart, attached. +-------------------------- +Weight: 0 +# +14724# +Pressing the button on this stick will flash blinding light that seems to cause memory loss. +Resets the user's skill tree to an unallocated state while restoring all previously used skill points. +Can only be used when at 0 weight and with no character attachements, such as a mount or cart, attached. +-------------------------- +Weight: 0 +# +14725# +Edition limited sealed bacsojin Scroll. +Sealed bacsojin card,Safe to 9 Weapon Certificate, Safe to 9 Armor Certificate, Costume Saint Frill Ribbon, Costume Festival Box II, Infinite Giant Fly Wing Box V, Gold and other rare items, only can get one of the items. +-------------------------- +Weight: 1 +# +14726# +A box containing 1 Grid Shadow Equipment. +You can get a one piece Grid Shadow set (Shield, Pendant, Earring, Weapon, Shoes, Armor). +-------------------------- +Weight: 1 +# +14727# +A box containing 1 Heal Shadow Equipment. +You can get a one piece Heal Shadow set (Shield, Pendant, Earring, Weapon, Shoes, Armor). +-------------------------- +Weight: 1 +# +14728# +A box containing 1 hiding shadow equipment. +You can get a one piece Hiding Shadow Set (Shield, Pendant, Earring, Weapon, Shoes, Armor). +-------------------------- +Weight: 1 +# +14729# +A box containing 1 Cloaking Shadow Equipment. +You can get a one piece Cloaking Shadow Set (Shield, Pendant, Earring, Weapon, Shoes, Armor). +-------------------------- +Weight: 1 +# +14730# +A box containing variety of costumes equipment. +Some costumes are only available here. +-------------------------- +Weight: 1 +# +14731# +A box containing 1 Teleport Shadow Equipment. +You can get a one piece Teleport Shadow Set (Shield, Pendant, Earring, Weapon, Shoes, Armor). +-------------------------- +Weight: 1 +# +14732# +A box containing 1 Steal Shadow equipment. +You can get a one piece Steal Shadow set (Shield, Pendant, Earring, Weapon, Shoes, Armor). +-------------------------- +Weight: 1 +# +14733# +Edition limited sealed pharaoh Scroll. +Sealed pharaoh card, Safe to 9 Weapon Certificate, Safe to 9 Armor Certificate, Grid Shadow Box, Costume Jack Castle Bat, Infinite Giant Fly Wing Box V, Gold and other rare items, only can get one of the items. +-------------------------- +Weight: 1 +# +14735# +A magical egg that outfits pop out when opened. +-------------------------- +Any one of the following costume equipment will appear randomly. +? Costume Griffon Hairband +- Costume Alpaca Hood +- Costume Worg in Mouth +- Costume Amistr cap +- Costume Grand Peco Hairband +- Costume Headset +- Costume Filir Wings +- Costume Pecopeco Hairband +- Costume Lif Doll Hat +- Costume Vanilmirth Hat +-------------------------- +Weight: 1 +# +14739# +Edition limited Sealed General Eegnigem Cenia Scroll. +Sealed General Egnigem Cenia Card, Safe to 9 Weapon Certificate, Safe to 9 Armor Certificate, Demihuman Shadow Weapon, Costume Hunting Cap of Gust, Gold and other rare items, only can get one of the items. +-------------------------- +Weight: 1 +# +14740# +Edition limited sealed vesper Scroll. +sealed vesper card, Safe to 9 Weapon Certificate, Safe to 9 Armor Certificate, Tempest Shadow Earring, Tempest Shadow Pendant, Magic Demihuman Shadow Weapon, Costume Knit Cap of Water,Infinite Giant Fly Wing Box and other rare items, only can get one of the items. +-------------------------- +Weight: 1 +# +14745# +Fortune is at the forefront. +-------------------------- +Weight: 1 +# +14746# +A box with a random Strong Man's costume item. +An item can be acquired when used. +-------------------------- +Weight: 1 +# +14747# +A box with a random item from various foods and clothes. +An item can be acquired when used. +-------------------------- +Weight: 1 +# +14748# +A box with a glamorous random elf costume in it. +An item can be acquired when used. +-------------------------- +Weight: 1 +# +14758# +Limited duration scroll. Contain 1 of: +Safe to 11 Weapon Certificate, +Safe to 11 Armor Certificate, +Safe to 9 Weapon Certificate, +Safe to 9 Armor Certificate, +Attack Shadow Armor, +Infinite Giant Fly Wing Box(5), +Gold, +and other rare items. +-------------------------- +Weight: 1 +# +14759# +A box that gives you a random item. +Open to get one of the following: +Safe to 7 Weapon Certificate x 2 +Safe to 7 Body Armor Certificate x 2 +Safe to 10 Certificate x 1 +HE Bubble Gum Plus x 4 *double duration of normal HE* +HE Battle Manual Plus x4 *double duration of normal HE* +Costume: Sleeping Kitty Hat *New Headgear* +Immune Shadow Armor +Hard Shadow Armor +Ancient Shadow Armor +Critical Shadow Armor +Kingbird's Shadow Weapon +Critical Hit Shadow Weapon +Healing Shadow Weapon +-------------------------- +Weight: 1 +# +14765# +This well written, detailed limited edition manual explains effective battle methods. +It appears that allows you to grow faster. +Job EXP rate increases to 35% for 60 minutes. +This bonus stacks with other Battle Manuals to give an additional job bonus. +-------------------------- +Weight: 1 +# +14766# +A booster that increases your power significantly. +-------------------------- +Increases ATK and MATK by 30, ATK and MATK by 1%, +HIT and FLEE by 30, ASPD by 1, +Decreases SP Consumption by 5%, +Decreases Fixed Casting Time by 30% +(Only the highest effect of increase/decrease percentage effect is applied to Fixed Casting Time.) +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +# +14771# +A gift box sold exclusively during the school festival. +-------------------------- +Weight: 1 +# +14780# +Limited Time Soul Plunger Scroll. +You can get one of these rare items: +Safe to 11 Weapon Certificate, +Safe to 11 Armor Certificate, +Sealed Hat Box II, +Soul Plunger, +and more. +-------------------------- +Weight: 1 +# +14781# +Happy Balloon Scroll for a limited time. +Safe to 11 Weapon Certificate, +Safe to 11 Armor Certificate, +Happy Baloon, +[Event] Neuralizer, +and more. +-------------------------- +Weight: 1 +# +14799# +A set of manual and chewy and sweet bubble gum with effective combat methods. +Increases experience and item drop rate for 3 hours. +Applies to all characters in your account. +- Increases Experience gained from monsters by 100%. +- Increases Item drop rate by 100%. +-------------------------- +The effect of this buff will stack with the existing Combat Manual and Bubble Gum effects. +-------------------------- +Weight: 1 +# +14806# +An item that can hire a part-time job-hunting students who takes charge of sales stall. +-------------------------- +Weight: 0 +# +14807# +An item that can hire a part-time job-hunting student who takes charge of buying stall. +-------------------------- +Weight: 0 +# +14826# +Special travel ticket issued by the Monster Racing Association. +You can move to one of the dungeons below. +Izlude Dungeon 6th floor, Dragon Nest 2nd floor, Glastheim Underground Cemetery, Moscovia Deep Forest. +Warning - If you don't select anything for one minute, the effect will disappear. +-------------------------- +Weight: 10 +# +14902# +A pass to get special magical abilities. +-------------------------- +It seems that when you show this Item to [Zonda Novice], you are able to acquire new magical abilities. +-------------------------- +When used with a special map, +[Zonda Novice] appears +-------------------------- +Only usable once every 10 seconds +-------------------------- +[Zonda's Pass] will not disappear upon Consumption. +-------------------------- +Can be placed in the Kafra Storage +-------------------------- +Weight: 0 +# +14903# +A pass to get special magical abilities. +-------------------------- +It seems that when you show this Item to [Zonda Novice], you are able to acquire new magical abilities. +-------------------------- +When used with a special map, +[Zonda Novice] appears +-------------------------- +Only usable once every 10 seconds +-------------------------- +[Zonda's Pass] will not disappear upon Consumption. +-------------------------- +Can be placed in the Kafra Storage +-------------------------- +Weight: 0 +# +14904# +A pass to get special magical abilities. +-------------------------- +It seems that when you show this Item to [Zonda Novice], you are able to acquire new magical abilities. +-------------------------- +When used with a special map, +[Zonda Novice] appears +-------------------------- +Only usable once every 10 seconds +-------------------------- +[Zonda's Pass] will not disappear upon Consumption. +-------------------------- +Can be placed in the Kafra Storage +-------------------------- +Weight: 0 +# +14905# +A pass to get special magical abilities. +-------------------------- +It seems that when you show this Item to [Zonda Novice], you are able to acquire new magical abilities. +-------------------------- +When used with a special map, +[Zonda Novice] appears +-------------------------- +Only usable once every 10 seconds +-------------------------- +[Zonda's Pass] will not disappear upon Consumption. +-------------------------- +Can be placed in the Kafra Storage +-------------------------- +Weight: 0 +# +14908# +A rice cake kneaded of non-glutinous rice flour, dividing it into an appropriate sizes, shaped into a half-moon, filling it with pine needles and steamed. +It is loved as one of the traditional Korean holiday foods. +-------------------------- +Recovers 10% of MaxHP. +-------------------------- +Weight: 0 +# +15000# +Dark Plated Armor covered with sharp bones. +-------------------------- +STR +1 +MDEF +3 +-------------------------- +Ignores 10% physical defense of Demi-Human and Brute race. +-------------------------- +Random chance to inflict Bleeding status on 5x5 cells when receiving physical damage. +-------------------------- +Type: Armor +Defense: 60 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent Thief, Merchant and Swordman +# +15001# +The main component of the Hermod Armor set. +-------------------------- +Type: Armor +Defense: 10 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +15002# +A suit of armor with solid plate material adorned with gorgeous runes and jewels. +It's actually very light and solid and it feels as if magic is winding around your whole body. +-------------------------- +Type: Armor +Defense: 95 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Swordman classes +# +15003# +Rental Item +A spiritual robe granted by Freya. It appears very sturdy, but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +MaxHP +700 +-------------------------- +Type: Armor +Defense: 7 +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +15004# +Rental Item +A spiritual robe granted by Freya. It appears very sturdy, but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +MaxHP +700 +-------------------------- +Type: Armor +Defense: 7 +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +15005# +Rental Item +A spiritual robe granted by Freya. It appears very sturdy, but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +MaxHP +700 +-------------------------- +Type: Armor +Defense: 7 +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +15006# +Rental Item +A spiritual robe granted by Freya. It appears very sturdy, but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +MaxHP +700 +-------------------------- +Type: Armor +Defense: 7 +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +15007# +A large robe which has a little worn out due of time. +It contain many memories. +-------------------------- +All Stats +1 +MaxHp +300 +MaxSp +100 +-------------------------- +If refine rate is 7 or higher +MaxHp +3% +MaxSp +3% +-------------------------- +Type: Armor +Defense: 62 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +15008# +A suit of armor that let you feels the heat when wearing it. +-------------------------- +MDEF +1 +-------------------------- +Decreases damage taken from Earth elemental by 5%. +-------------------------- +Type: Armor +Defense: 25 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: None +# +15009# +A blessed armor bestowed upon Genesis members, said to carry divine vitality. +-------------------------- +Increases HP recovery rate by 5%. +-------------------------- +When Base Level is 30 or higher: +MaxHP +50 +When Base Level is 60 or higher: +MaxHP +70 +When Base Level is 90 or higher: +MaxHP +100 +-------------------------- +Cannot be refined. +-------------------------- +Type: Armor +Defense: 20 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Base Level 1 +All Jobs +# +15010# +A suit that is only provided for members of the Eden Group. There are various sizes so tall people don't have to worry about it. +-------------------------- +MaxHP +200 +MaxSP +20 +-------------------------- +Type: Armor +Defense: 46 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 26 +# +15011# +A suit that is only provided for members of the Eden Group. There are various sizes so tall people don't have to worry about it. +-------------------------- +MaxHP +300 +MaxSP +30 +MDEF +5 +-------------------------- +Type: Armor +Defense: 58 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +# +15012# +A snow-white robe on which spells are embroidered. +-------------------------- +Decreases Variable Casting Time by 3%. +-------------------------- +Increases Healing skills effectiveness by 5%. +-------------------------- +Type: Armor +Defense: 42 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 22 +# +15013# +A suit for adventurers that maximizes defense while still fitting comfortably. +-------------------------- +Type: Armor +Defense: 58 +Weight: 280 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 22 +All Jobs except Novice +# +15014# +A suit of armor made of a metal called Opcidium. The decoration of a black crystal looks profound. +-------------------------- +Type: Armor +Defense: 93 +Weight: 450 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Rune Knight and Royal Guard +# +15015# +An adventure suit made of mixed elunium and gold. +-------------------------- +MaxHP +3% +-------------------------- +Type: Armor +Defense: 25 +Weight: 15 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: None +# +15016# +A coat made of mixed elunium and gold. +-------------------------- +MaxHP +3% +-------------------------- +Type: Armor +Defense: 47 +Weight: 60 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: +All Jobs except Novice +# +15017# +A Saint Robe made of mixed elunium and gold. +-------------------------- +MaxHP +3% +MDEF +5 +-------------------------- +Type: Armor +Defense: 55 +Weight: 30 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: +Merchant and Acolyte +# +15018# +A tight made of mixed elunium and gold. +-------------------------- +DEX +1 +MaxHP +3% +-------------------------- +Type: Armor +Defense: 32 +Weight: 25 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: +Archer +# +15019# +A Thief Clothes made of mixed elunium and gold. +-------------------------- +AGI +1 +MaxHP +3% +-------------------------- +Type: Armor +Defense: 45 +Weight: 10 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: +Thief and Ninja +# +15020# +A Mail made of mixed elunium and gold. +-------------------------- +MaxHP +3% +-------------------------- +Type: Armor +Defense: 60 +Weight: 165 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: +Swordsman Class, Merchant Class +# +15021# +A Formal Suit made of mixed elunium and gold. +-------------------------- +MaxHP +3% +-------------------------- +Type: Armor +Defense: 45 +Weight: 15 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: +All Jobs except Novice +# +15022# +Made for the best surfer. +-------------------------- +STR +4 +INT +4 +MDEF +3 +-------------------------- +Decreases damage taken from Water elemental attacks by 20%. +-------------------------- +Type: Armor +Defense: 1 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +15023# +Brynhild is one of the valiant valkyries, meaning 'the warrior's armor'. +-------------------------- +Increases MaxHP by +20*Base Level. +Increases MaxSP by +5*Base Level. +MATK +5% +MDEF +10 +ATK +5% +-------------------------- +Prevents knock-back effect. +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 60 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 47 +# +15024# +A jacket worn inside an overcoat. Mora Villagers call it \ +. +-------------------------- +Type: Armor +Defense: 10 +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +15025# +An ornate golden robe imbued with power of wind. +-------------------------- +INT +1 +MDEF +10 +-------------------------- +Decreases Variable Casting Time of Lord of Vermilion by 3 seconds. +-------------------------- +Base INT at least 120: +INT +1 +-------------------------- +Type: Armor +Defense: 40 +Weight: 50 +Element: Wind +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Warlock +# +15026# +An elegant blue robe imbued with power of water. +-------------------------- +INT +1 +MDEF +10 +-------------------------- +Decreases Variable Casting Time of Storm Gust by 3 seconds. +-------------------------- +Base INT at least 120: +INT +1 +-------------------------- +Type: Armor +Defense: 40 +Weight: 50 +Element: Water +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Warlock +# +15027# +An elaborate red robe imbued with power of fire. +-------------------------- +INT +1 +MDEF +10 +-------------------------- +Decreases Variable Casting Time of Meteor Storm by 3 seconds. +-------------------------- +Base INT at least 120: +INT +1 +-------------------------- +Type: Armor +Defense: 40 +Weight: 50 +Element: Fire +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Warlock +# +15028# +A simple turquoise robe imbued with power of Earth. +-------------------------- +INT +1 +MDEF +10 +-------------------------- +Decreases Variable Casting Time of Heaven's Drive by 1 second. +-------------------------- +Base INT at least 120: +INT +1 +-------------------------- +Type: Armor +Defense: 40 +Weight: 50 +Element: Earth +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Warlock +# +15029# +An ancient relic of war that once worn to help people in suffer. +-------------------------- +INT +1 +MDEF +10 +-------------------------- +Decreases SP Consumption of Clementia by 50. +-------------------------- +Type: Armor +Defense: 22 +Weight: 30 +Element: Holy +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +15030# +An ancient relic of war that once worn to fight Demon. +-------------------------- +STR +1 +INT +1 +MDEF +10 +-------------------------- +Decreases damage taken from Demon and Undead race by 10%. +Increases damage taken from other races by 10%. +-------------------------- +Type: Armor +Defense: 22 +Weight: 30 +Element: Shadow +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +15031# +A suit that is only provided for members of the Eden Group. +There are various sizes so tall people don't have to worry about it. +-------------------------- +STR +1 +INT +1 +DEX +1 +MaxHP +500 +MaxSP +50 +MDEF +5 +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Refineable: No +Can be enchanted by: +Blacksmith Thornmoc_para01,111,83,0,100,0,0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +15032# +A suit of armor made from animal leather, used by the Jaty tribe during battle. +-------------------------- +MDEF +10 +-------------------------- +Decreases damage taken from all elemental attacks by 5%. +-------------------------- +Increases resistance against Stun and Frozen status by 15%. +-------------------------- +Type: Armor +Defense: 2 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +15033# +A suit of armor used by the Tutorial Instructor from Eden Group to show you what armor enchanted items looks like. +-------------------------- +Type: Armor +Defense: 37 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +N/A +# +15034# +A suit of armor used by the Tutorial Instructor from Eden Group to show you what armor enchanted items looks like. +-------------------------- +Type: Armor +Defense: 37 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +N/A +# +15036# +Armor created by purifying Ur runestones. +-------------------------- +MDEF +10 +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +For each Refine Level: +MaxHP +1% +-------------------------- +When equipped with Ur Greaves, Ur Manteau and Ur Seal: +MaxHP +14% +Increases SP Consumption by 10%. +Decreases damage taken from Neutral elemental attacks by 10%. +Increases damage of Hundred Spears by 50%. +Enables the use of Level 1 Auto Guard. +-------------------------- +Type: Armor +Defense: 110 +Weight: 300 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +15037# +Armor created by purifying Peuz runestones. +-------------------------- +ATK +20 +FLEE +17 +MDEF +10 +-------------------------- +When equipped with Peuz Greaves, Peuz Manteau and Peuz Seal: +ATK +10% +Increases damage of Wind Cutter and Sonic Wave by 100%. +Random chance to auto-cast Level 1 Storm Blast on the target when dealing physical damage. +Random chance to increase ASPD by 2 on wearer for 10 seconds when using Concentration skill. +-------------------------- +Type: Armor +Defense: 110 +Weight: 300 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +15038# +A suit of armor that contains the reliquery remains of an ancient Assassin. +-------------------------- +LUK +3 +-------------------------- +Random chance to auto-cast Level 1 Meteor Assault when dealing physical damage. +If higher Level of this skill is learned then it will be cast. +-------------------------- +When equipped with Sapha's Ring, Sapha's Hood and Sapha's Shoes: +FLEE +10 +Critical +15 +Increases Critical Damage by 40%. +Increases damage of Cross Impact by 20%. +Increases SP Consumption by 10%. +-------------------------- +Type: Armor +Defense: 45 +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +15039# +An assassin's famous historical relic. +-------------------------- +STR +2 +INT +2 +-------------------------- +When equipped with Nab's Ring, Nab's Hood and Nab's Shoes: +ATK +10% +MATK +10% + +Base STR at least 120: +ATK +30 +Critical -20 +Random chance to auto-cast Level 1 Soul Destroyer when dealing physical damage. +If higher Level of this skill is learned then it will be cast. +-------------------------- +Type: Armor +Defense: 45 +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +15040# +Every prisoner wears this striped uniform. +-------------------------- +Increases Hit and FLEE based on Refine Level. +-------------------------- +When equipped with Shackles: +ATK +5 +Increases ATK based of Refine Level of Shackles. +-------------------------- +Type: Armor +Defense: 5 +Weight: 150 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +15041# +The armor that made by power of mythic creature, Boitata +-------------------------- +MaxHP +5% +FLEE +5 +MDEF +3 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 7%. +-------------------------- +Type: Armor +Defense: 45 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +15042# +A suit of armor of the brilliant archer known as Icarus. +-------------------------- +For each Refine Level: +FLEE +1 +Increases Ranged Physical Damage by 2%. +-------------------------- +When equipped with White Wing Boots, White Wing Brooch and White Wing Manteau: +ASPD +2 +Increases damage of Arrow Storm by 50%. +Increases Ranged Physical Damage by 30%. +Random chance to auto-cast Level 3 Double Strafe when dealing Ranged Physical Damages. +-------------------------- +Type: Armor +Defense: 45 +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Ranger +# +15043# +An ancient armor that helps maintain clear mental focus. +-------------------------- +INT +2 +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +When equipped with Black Wing Boots, Black Wing Brooch and Black Wing Manteau: +MaxHP +15% +Perfect Dodge +20 +ASPD -7 +Increases damage of Cluster Bomb by 20%. +Decreases Ranged Physical Damage by 30%. +-------------------------- +Type: Armor +Defense: 45 +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Ranger +# +15044# +A lab outfit from a student who went crazy while studying Homunculi for too long. +-------------------------- +DEX +1 +MaxSP +30 +-------------------------- +When equipped with Scalpel: +Random chance a defeated Demi-Human or Brute race will drop Immortal Heart or Alcohol. +This rate increases depending on the Refine Level. +-------------------------- +Type: Armor +Defense: 66 +Weight: 66 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Genetic +# +15045# +A suit of armor imbued with magical power. +-------------------------- +Increases HP Recovery Rate by 10%. +-------------------------- +Valor set bonus: +MaxHP +500, MaxSP +300, DEF +10, ATK +10. +-------------------------- +Type: Armor +Defense: 4 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +15046# +*Effects in WoE & PVP area +MDEF +5 +Decreases damage taken from Players by 2%. +-------------------------- +Refine Level +6: +Increases Healing effectiveness from Potions by 12%. +-------------------------- +Refine Level +9: +MaxHP +25% +-------------------------- +When equipped with Siege Greaves and Siege Manteau: +VIT +5 +Decreases damage taken from Players by an additional 15%. +-------------------------- +Type: Armor +Defense: 85 +Weight: 330 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 95 +Swordsman, Merchant, Taekwon and Star Gladiator +# +15047# +*Effects in WoE & PVP area +MDEF +10 +Decreases damage taken from Players by 2%. +-------------------------- +Refine Level +6: +Perfect Dodge +5 +Decreases Ranged Physical Damage taken from Players by 20%. +-------------------------- +Refine Level +9: +MaxHP +15% +-------------------------- +When equipped with Siege Boots, Siege Manteau: +DEX +5 +Decreases damage taken from Players by additional 15%. +-------------------------- +Type: Armor +Defense: 50 +Weight: 75 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 95 +Swordsman, Merchant, Thief, Archer, Taekwon, Star Gladiator, Ninja +# +15048# +*Effects in WoE & PVP area +MDEF +20 +Decreases damage taken from Players by 2%. +-------------------------- +Refine Level +6: +FLEE +5 +Decreases Ranged Physical Damage taken from Players by 15%. +-------------------------- +Refine Level +9: +MaxHP +1000 +MaxSP +100 +-------------------------- +When equipped with Siege Shoes and Siege Muffler: +INT +5 +MDEF +10 +Decreases damage taken from Players by an additional 15%. +-------------------------- +Type: Armor +Defense: 40 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 95 +Novice, Magician, Acolyte and Soul Linker +# +15049# +Attached with the power of God. +When equipped with zodiac hat, it will give various effect depend on zodiac type. +-------------------------- +All Stats +4 +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Armor +Defense: 0 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +15050# +Attached with divine power. +When equipped with zodiac hat, it will give various effect depend on zodiac type. +-------------------------- +All Stats +4 +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Armor +Defense: 0 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +15051# +Armor made from Bakonawa Scale. Lets off a mysterious moonlight effect. +-------------------------- +All Stats +1 +-------------------------- +For each 2 Refine Levels: +Decreases damage taken from Boss class by 1%. +-------------------------- +Type: Armor +Defense: 55 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +15052# +Armor made from Bakonawa Scale. Lets off a mysterious moonlight effect. +-------------------------- +All statss +2 +-------------------------- +For each 2 Refine Levels: +Decreases damage taken from Boss class by 1%. +-------------------------- +Type: Armor +Defense: 55 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +15053# +Newly improved ninja suit which took into consideration the opinions of skilled ninjas. Lighter and durability of the textile is better than before. +-------------------------- +AGI +1 +-------------------------- +For each 3 Refine Levels: +AGI +1 +-------------------------- +When equipped with Fox Armguard: +AGI +2 +-------------------------- +Type: Armor +Defense: 70 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +15054# +Scale Armor told to be worn by a legendary ninja who used unique ninja skills. Specialized for close range attack. +-------------------------- +MaxHP +15% +MaxSP -30% +-------------------------- +When equipped with Wolf Armguard: +STR +2 +ATK +10% +-------------------------- +Type: Armor +Defense: 90 +Weight: 180 +Armor Level: 1 +Can be enchanted by: +Artisan Teneque_ng,75,20,0,100,0,0 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +15055# +A suit of armor specially made to protect high rank Ninja executives. +-------------------------- +AGI +1 +-------------------------- +Random chance to auto-cast Level 1 Illusion - Shadow when receiving physical damage. +-------------------------- +When equipped with Crescent Armguard: +FLEE +10 +Perfect Dodge +10 +-------------------------- +Type: Armor +Defense: 60 +Weight: 150 +Armor Level: 1 +Can be enchanted by: +Artisan Teneque_ng,75,20,0,100,0,0 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +15056# +Newly improved ninja suit which took into consideration the opinions of skilled ninjas. +Lighter and durability of the textile is better than before. +-------------------------- +AGI +1 +-------------------------- +For each 3 Refine Levels: +AGI +1 +-------------------------- +When equipped with Fox Armguard: +AGI +2 +-------------------------- +Type: Armor +Defense: 70 +Weight: 120 +Armor Level: 1 +Can be enchanted by: +Artisan Teneque_ng,75,20,0,100,0,0 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +15057# +A pure white apron with no single stain. Gives elegance feeling. +-------------------------- +Increases Healing skills effectiveness by 2%. +-------------------------- +For each Refine Level: +Increases recovery amount gained from Healing skills and Restorative items by 1%. +-------------------------- +Refine Level +5: +Increases Healing skills effectiveness by 2%. +-------------------------- +Refine Level +7: +Increases Healing skills effectiveness by 3%. +-------------------------- +Refine Level +9: +Increases Healing skills effectiveness by 3%. +-------------------------- +Type: Armor +Defense: 50 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +15058# +A suit that able to protects rider's body from wind. +-------------------------- +AGI +1 +-------------------------- +For each 2 Refine Levels: +AGI +1 +-------------------------- +When equipped with Rider Badge and Black Leather Boots: +AGI +2 +FLEE +5 +-------------------------- +Type: Armor +Defense: 40 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +15060# +A kindergarten uniform with name tag attached on it. +-------------------------- +ATK +2% +MATK +2% +-------------------------- +Base Level is below 80: +Increases recovery amount gained from Healing skills and Restorative items by 5%. +-------------------------- +When equipped with School Bag: +ATK +3% +MATK +3% +-------------------------- +Type: Armor +Defense: 1 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +15061# +A suit of armor imbued with the power of God Aegir. +-------------------------- +All Stats +1 +-------------------------- +When equipped by Mage, Archer and Acolyte classes: +Increases resistance against Silence status by 50%. +-------------------------- +When equipped by Swordman, SThief and SMerchant classes: +Increases resistance against Stun status by 50%. +-------------------------- +When equipped with Aegir Helm, Aegir Manteau and Aegir Shoes: +All Stats +1 +Decreases damage taken from Water elemental attacks by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 55 +Weight: 260 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 110 +Super Novice, 3rd classes, Kagerou and Oboro +# +15062# +Rental Item +MDEF +15 +-------------------------- +*Effects in WoE TE area +MaxHP +250, MaxSP +250. +Decreases damage taken from Players by 10%. +Increases Frozen resistance by 25%. +-------------------------- +Type: Armor +Defense: 15 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +# +15063# +Rental Item +MDEF +5 +-------------------------- +*Effects in WoE TE area +MaxHP +450, MaxSP +50 +Decreases damage taken from Players by 15%. +Increases Frozen resistance by 25%. +-------------------------- +Type: Armor +Defense: 25 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Swordsman and Merchant +# +15064# +Rental Item +MDEF +25 +-------------------------- +*Effects in WoE TE area +MaxHP +200, MaxSP +300 +Decreases damage taken from Players by 5%. +Increases Frozen resistance by 25%. +-------------------------- +Type: Armor +Defense: 5 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Novice, Magician, Acolyte and Soul Linker +# +15065# +An item you should not attempt to familiarize yourself with. +# +15066# +Armor with details carved in peridot. +\ +-------------------------- +MDEF +25 +-------------------------- +Type: Armor +Defense: 120 +Weight: 300 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Swordman classes +# +15067# +Rental Item +Specially made to help the members of guilds to grow, this formal suit generates special waves and increases your EXP reward from monsters by 10%. +-------------------------- +When equipped with Mana Manteau, Mana Boots and Rune Ring: +Increases experience gained from defeating monsters by 30%. +-------------------------- +Type: Armor +Defense: 0 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Maximum Base Level 100 +# +15068# +Angel's robe for Super Novices. Hugs you like it's only made for you! +-------------------------- +MDEF +30 +-------------------------- +When equipped with Modified Angelic Cardigan: +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +When equipped with Angelic Reincarnation, Angelic Guard, Angelic Cardigan and Angel's Kiss: +MaxHP +900 +MaxSP +100 +Random chance to auto-cast Level 1 Assumptio on wearer when receiving physical damage. +-------------------------- +Type: Armor +Defense: 40 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Novice +# +15069# +A clothing with Sloth pattern. +-------------------------- +Restores HP by 100 when killing enemy with melee physical attacks. +-------------------------- +Increases Physical Damage against enemies of Water elemental by 5%. +-------------------------- +Refine Level +8: +MaxHP +300 +-------------------------- +Type: Armor +Defense: 30 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: None +# +15070# +You have a Magical feeling of cloth when weared. +-------------------------- +MDEF +5 +-------------------------- +For each Refine Level: +LUK +1 +-------------------------- +Type: Armor +Defense: 5 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Trans Job +# +15071# +A robe of Odin's servant. +-------------------------- +All Stats +1 +-------------------------- +When equipped by Mage, Archer and Acolyte classes: +Increases resistance against Silence status by 50%. +-------------------------- +When equipped by Swordman, Thief and Merchant classes: +Increases resistance against Stun status by 50%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 55 +Weight: 280 +Armor Level: 1 +-------------------------- +Requirement: +Trancendent classes +# +15072# +A suit dyed with potion of immortality that made of nectar. +-------------------------- +VIT +3 +MDEF +5 +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +MaxSP +1% +-------------------------- +Type: Armor +Defense: 35 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +15073# +This suit, developed in Geffen over a long period of time, effectively protects its wearer against potent magic. +-------------------------- +MaxHP +5% +MDEF +10 +-------------------------- +Refine Level +7: +MDEF +5 +-------------------------- +Refine Level +9: +MaxHP +2% +-------------------------- +Type: Armor +Defense: 50 +Weight: 150 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +15074# +This uniform worn by the Geffen Mages enhances its wearer's concentration while he casts spells. +-------------------------- +Decreases SP Consumption by 10%. +-------------------------- +Increases Variable Casting Time of all skills by 15%. +-------------------------- +Protects from skill cast interruption. +-------------------------- +Refine Level +7: +Decreases SP Consumption by 5%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Armor +Defense: 40 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +15075# +The battle armor symbolizing the highest status of the Guillotine Cross. +-------------------------- +MaxHP +400 +-------------------------- +For each 3 Refine Levels: +STR +1 +DEX +1 +-------------------------- +Refine Level +10: +ASPD +1 +-------------------------- +Refine Level +14: +ASPD +1 +-------------------------- +When equipped with Guillotine Cross Battle Boots and Battle Shawl: +Base STR at least 110: +ATK +10% + +Base AGI at least 90: +When Hallucination Walk is used: +Random chance to auto-cast Level 1 Endure. +ATK +5% for 15 seconds. +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Armor +Defense: 55 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Guillotine Cross +# +15076# +The battle armor symbolizing the highest status of the Ranger. +-------------------------- +MaxHP +400 +-------------------------- +For each 3 Refine Levels: +AGI +1 +DEX +1 +-------------------------- +Refine Level +10: +ASPD +1 +-------------------------- +Refine Level +14: +ASPD +1 +-------------------------- +When equipped with Ranger Battle Boots and Battle Shawl: +Decreases damage taken from Demi-Human race by 10%. + +Base DEX at least 110: +When Fear Breeze is used: +Critical +50% +-------------------------- +Type: Armor +Defense: 55 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Ranger +# +15077# +The battle armor symbolizing the highest status of the Royal Guard. +-------------------------- +MaxHP +500 +-------------------------- +For each 3 Refine Levels: +VIT +1 +DEX +1 +-------------------------- +When equipped with Royal Guard Battle Boots and Battle Shawl: +For each 10 base AGI: +Increases damage of Overbrand by 5%. + +Base VIT at least 110: +Physical attacks have a 0.5% chance to auto-cast Level 1 Assumptio on yourself. +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Armor +Defense: 55 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Royal Guard +# +15078# +The battle armor symbolizing the highest status of the Rune Knight. +-------------------------- +MaxHP +500 +-------------------------- +For each 3 Refine Levels: +STR +1 +DEX +1 +-------------------------- +When equipped with Rune Knight Battle Boots and Battle Shawl: +Bonus STR at least +10: +Increases damage of Hundred Spear by 5%. +Random chance to auto-cast Level 1 Millenium Shield on yourself when recieving physical damage. +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Armor +Defense: 55 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Rune Knight +# +15079# +The battle armor symbolizing the highest status of the Mechanic Artisan. +-------------------------- +MaxHP +400 +-------------------------- +For each 3 Refine Levels: +VIT +1 +STR +1 +-------------------------- +Refine Level +10: +Increases damage of Power Swing by 50%. +-------------------------- +Refine Level +13: +Increases damage of Power Swing by additional 50%. +-------------------------- +When equipped with Mechanic Battle Boots and Battle Shawl: +Base DEX at least 90: +Decreases After Skill Delay 10%. +Decreases damage taken from Demi-Human race by 10%. +Decreases Self-Destruction skill cooldown by 60 seconds. +-------------------------- +Type: Armor +Defense: 55 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +15080# +The battle armor symbolizing the highest status of the Mechanic Artisan. +-------------------------- +MaxHP +300 +-------------------------- +For each 3 Refine Levels: +VIT +1 +DEX +1 +Increases resistance to Silence, Stun, Poison, Bleeding, Frozen, Sleep, Curse, Stone Curse, Blind and Confusion by 20%. +-------------------------- +When equipped with Shadow Chaser Battle Boots and Battle Shawl: +Decreases damage taken from Demi-Human race by 10%. +Using 0Phantom Form can auto-cast Strip Accessory. +-------------------------- +Type: Armor +Defense: 60 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Shadow Chaser +# +15081# +The battle armor symbolizing the highest status of the Sura. +-------------------------- +MaxHP +400 +-------------------------- +For each 3 Refine Levels: +INT +1 +DEX +1 +-------------------------- +When equipped with Sura Battle Boots and Battle Shawl: +Decreases Rising Dragon skill cooldown by 5 seconds. +Decreases damage taken from Demi-Human race by 10%. +Increases damage of Gate of Hell by 10%. +-------------------------- +Type: Armor +Defense: 55 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Sura +# +15082# +The battle armor symbolizing the highest status of the Archbishop. +-------------------------- +MaxHP +300 +-------------------------- +For each 3 Refine Levels: +INT +1 +DEX +1 +MaxHP +1% +-------------------------- +When equipped with Archbishop Battle Boots and Battle Shawl: +Enables the use of Level 1 Odin's Power. + +Base DEX at least 110: +Decreases Clearance, Lauda Ramus and Lauda Agnus skill cooldown by 3 seconds. + +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Armor +Defense: 55 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Archbishop +# +15083# +The battle armor symbolizing the highest status of the Archmage. +-------------------------- +All Stats +1 +MaxHP +300 +-------------------------- +For each 3 Refine Levels: +MATK +5% +Decreases Variable Casting Time by 5%. +-------------------------- +When equipped with Archmage Battle Boots and Battle Shawl: +MATK +10% + +Base INT at least 110: +Decreases Fixed Casting Time by 10%. + +Decreases damage taken from Demi-Human race by 10%. +Decreases Earth Strain skill cooldown by 5 seconds. +-------------------------- +Type: Armor +Defense: 55 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Warlock and Sorcerer +# +15084# +The battle armor symbolizing the highest status of the Performer. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +When equipped with Performer Battle Boots and Battle Shawl: +Base VIT at least 110: +Random chance to auto-cast Wide Curse (full screen) when recieving physical damage. + +Base DEX at least 110: +Using Poem of Bragi, Please Don't Forget Me or Deep Sleep Lullaby increases Perfect Dodge by 50 for 15 seconds. +Increases damage of Reverberation by 10%. +-------------------------- +Type: Armor +Defense: 55 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Minstrel and Wanderer +# +15085# +The battle armor symbolizing the highest status of the Genetic. +-------------------------- +MaxHP +300 +-------------------------- +When equipped with Genetic Battle Boots and Battle Shawl: +Increases damage of Cart Cannon by 20%. +Decreases damage taken from Demi-Human race by 10%. + +Bonus INT at least +10: +Increases damage of Cart Cannon by additional 1%. +-------------------------- +Type: Armor +Defense: 55 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Genetic +# +15086# +Armor said to contain the soul of Suzaku, the sacred beast that protects the south. +The fire attribute is permanently given to the armor itself. +-------------------------- +MDEF +5 +-------------------------- +Increases Physical Damage against enemies of Fire elemental by 10%. +-------------------------- +Type: Armor +Defense: 55 +Element: Fire +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +15087# +This armor contains the soul of the Azure Dragon. +-------------------------- +MDEF +5 +-------------------------- +Increases Physical Damage against enemies of Water elemental by 10%. +-------------------------- +Type: Armor +Defense: 55 +Element: Water +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +15088# +Japanese school uniform. +-------------------------- +AGI +1 +LUK +1 +-------------------------- +Increases MaxHP by (Base Level*3) +-------------------------- +Increases MaxSP by (Base Level/2) +-------------------------- +Type: Armor +Defense: 25 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +15089# +A suit usually worn by Gentleman. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Decreases After Skill Delay by 3%. +-------------------------- +Decreases Variable Casting Time by 3%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 2%). +Decreases After Skill Delay by 2%. +Decreases Variable Casting Time by 2%. +-------------------------- +Type: Armor +Defense: 40 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +All Jobs except Novice +# +15090# +Sculpted out of Gray Shard and infused with Sakray's old, abandoned memories, this armor protects its wearer against holiness and fear. +-------------------------- +MDEF +10 +-------------------------- +Decreases damage taken from Holy elemental attacks by 10%. +-------------------------- +For each Refine Level: +Decreases damage taken from Holy elemental attacks by 2%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 240 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +3rd classes of Swordsman, Archer, Merchant and Thief Classes +# +15091# +Sculpted out of Gray Shard and infused with Sakray's old, abandoned memories, this robe protects its wearer against holiness and fear. +-------------------------- +Decreases damage taken from Holy elemental attacks by 10%. +-------------------------- +For each Refine Level: +Decreases damage taken from Holy elemental attacks by 2%. +-------------------------- +Type: Armor +Defense: 55 +Weight: 130 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +Warlock, Sorcerer, Archbishop and Sura +# +15092# +A suit of armor of Holy beast that protect the northern continent. +-------------------------- +MDEF +5 +-------------------------- +Increases Physical Damage against enemies of Wind elemental by 10%. +-------------------------- +Type: Armor +Defense: 55 +Weight: 50 +Element: Wind +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +15093# +Honorable plate given to those who fought Satan Morocc. There is strong power that protects this plate. +-------------------------- +MaxHP +5% +MaxSP +5% +ATK +10 +MATK +10 +HIT +10 +FLEE +10 +MDEF +5 +-------------------------- +Increases damage of Banishing Point by 10%. +-------------------------- +Increases damage of Storm Blast by 10%. +-------------------------- +Random chance to auto-cast Level 10 Heal or Level 10 Stormgust when dealing physical damage. +chance is increased with a higher Refine Level. +-------------------------- +Type: Armor +Defense: 120 +Weight: 400 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +Rune Knight and Royal Guard +# +15094# +Honorable magic coat given to those who fought Satan Morocc. The power of this robe changes based on Refine Level. +-------------------------- +MaxHP +5% +MaxSP +5% +MATK +10 +FLEE +10 +-------------------------- +Increases damage of Crimson Rock and Psychic Wave by 10%. +-------------------------- +If the Refine Level is an odd number, protects from skill cast interruption and the Variable Casting Time is increased by 20%. +If the Refine Level is an even number, MDEF +1 and the Variable Casting Time is reduced by 1% for every 2 Refine Level. +-------------------------- +Type: Armor +Defense: 50 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +Warlock and Sorcerer +# +15095# +Honorable robe given to those who fought Satan Morocc. The robe is enhanced with powers to increase concentration and spirit, occasionally it will release unpredictable attacks. +-------------------------- +MaxHP +5% +MaxSP +5% +ATK +10 +MATK +10 +HIT +10 +FLEE +10 +-------------------------- +Increases damage of Dragon Combo, Sky Net Blow and Earth Shaker by 10%. +-------------------------- +Increases damage of Judex and Adoramus by 10%. +-------------------------- +Random chance to auto-cast Level 1 Lex Aeterna on attacker when wearer attacked by magical attack. +chance is increased with a higher Refine Level. +-------------------------- +Random chance to auto-cast Level 10 Kyrie Eleison on wearer when wearer attacked by physical attack. +chance is increased with a higher Refine Level. +-------------------------- +Type: Armor +Defense: 77 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +Archbishop and Sura +# +15096# +Honorable trade mail given to those who fought Satan Morocc. This mail enhances wearer abilities. +-------------------------- +MaxHP +5% +MaxSP +5% +ATK +10 +MATK +10 +MDEF +5 +-------------------------- +Random chance to inflict Stun, Poison, Silence, Curse status on the target when dealing physical damage. +chance is increased depend on Refine Level. +-------------------------- +Base STR at least 90: +For each 2 Refine Levels: +STR +1 +-------------------------- +Base INT at least 90: +For each 2 Refine Levels: +INT +1 +-------------------------- +Base VIT at least 90: +For each 2 Refine Levels: +VIT +1 +-------------------------- +Base AGI at least 90: +For each 2 Refine Levels: +AGI +1 +-------------------------- +Base DEX at least 90: +For each 2 Refine Levels: +DEX +1 +-------------------------- +Base LUK at least 90: +For each 2 Refine Levels: +LUK +1 +-------------------------- +Type: Armor +Defense: 100 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +Mechanic and Genetic +# +15097# +Honorable clothes given to those who fought Satan Morocc. This clothes exerts the power of wearer. +-------------------------- +MaxHP +5% +MaxSP +5% +-------------------------- +Increases damage of Fatal Manace, Triangle Shot by 10%. +-------------------------- +Increases damage of Cross Impact and Cross Ripper Slasher by 10%. +-------------------------- +Random chance to increase Critical by 20, FLEE by 20, Physical attack damage by 10% and MATK by 10% for 10 seconds when dealing physical damage. +chance is increased depend on Refine Level. +-------------------------- +Type: Armor +Defense: 70 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +Guillotine Cross and Shadow Chaser +# +15098# +Honorable suit given to those who fought Satan Morocc. This clothes makes its wearer to attack faster. +-------------------------- +All Stats +1 +ASPD +1 +MaxHP +5% +MaxSP +5% +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Random chance to auto-cast Level 10 Improve Concentration or Level 10 Double Strafe when dealing physical damage. +auto-cast rate is increased depend on Refine Level. +-------------------------- +Type: Armor +Defense: 60 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +Ranger, Minstrel and Wanderer +# +15099# +A suit of armor of Holy beast that protect the western continent. +-------------------------- +MDEF +5 +-------------------------- +Increases Physical Damage against enemies of Earth elemental by 10%. +-------------------------- +Type: Armor +Defense: 55 +Weight: 50 +Element: Earth +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +15100# +A frozen breastplate that creates a cold steam. +-------------------------- +Type: Armor +Defense: 20 +Weight: 150 +Element: Water +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +3rd Classes +# +15101# +A stiff breastplate that emanates unshakeable strength. +-------------------------- +Type: Armor +Defense: 20 +Weight: 150 +Element: Earth +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +3rd Classes +# +15102# +A suitable armor for hunting animals. +-------------------------- +Increases Damage against monsters of Brute race by 3%. +-------------------------- +For every Refine Level above +6: +Increases Damage against monsters of Brute race by 1%. +-------------------------- +Type: Armor +Defense: 30 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +15103# +A suit of armor of Holy beast that contain the power of Kirin. +-------------------------- +Type: Armor +Defense: 55 +Weight: 50 +Element: Holy +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +15104# +The armor worn by fishermen who live in the fishing industry to protect themselves in the raging sea. +-------------------------- +Increases Damage against monsters of Fish race by 3%. +-------------------------- +For each Refine Level equal or above +6: +Increases Damage against monsters of Fish race by additional 1%. +-------------------------- +Type: Armor +Defense: 30 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +15105# +A gown that was once worn by a great saint of a distant empire. +When torn, it causes a burning sensation on the skin. +-------------------------- +MDEF +3 +-------------------------- +Decreases damage taken from Undead elemental and Demon race monsters by 5%. +-------------------------- +Type: Armor +Defense: 13 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +15106# +Armor used by technical engineers on the battlefield. +-------------------------- +Increases damage against Ghost elemental by 3%. +-------------------------- +For each Refine Level equal or above +6: +Increases damage against Ghost elemental by additional 1%. +-------------------------- +Type: Armor +Defense: 30 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +15107# +Armor made for scholars studying giant insects bearing the name of entomology. +-------------------------- +Increases Damage against monsters of Insect race by 3%. +-------------------------- +For each Refine Level equal or above +6: +Increases Damage against monsters of Insect race by additional 1%. +-------------------------- +Type: Armor +Defense: 30 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +15108# +A suit of armor made out of a urn which contained all kinds of venomous snakes and insects. +-------------------------- +MDEF +5 +-------------------------- +Increases Physical Damage against enemies of Poison elemental by 10%. +-------------------------- +Type: Armor +Defense: 55 +Element: Poison +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +15109# +The armor worn by the fallen angels, who are said to have transmitted various evil deeds to the earth. +-------------------------- +Increases Damage against monsters of Angel race by 3%. +-------------------------- +For each Refine Level equal or above +6: +Increases Damage against monsters of Angel race by additional 1%. +-------------------------- +Type: Armor +Defense: 30 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +15110# +This mechanical device uses the power of science to optimize your strength. You can combine it with other variants for a synergetic effect. +-------------------------- +ATK +5% +-------------------------- +For each 4 Refine Levels: +ATK +1%. +-------------------------- +Type: Armor +Defense: 80 +Weight: 200 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +15111# +Designed to be worn over the frames of Mado Gears for enhanced Defense, this part is easy to assemble and disassemble. +-------------------------- +Decreases damage taken from Small and Large size by 10%. +-------------------------- +Refine Level +7: +Decreases damage taken from Large size by 10%. +-------------------------- +Refine Level +9: +Decreases damage taken from Small and Medium size by 5%. +-------------------------- +When equipped with Upgrade Part - Engine, Upgrade Part - Booster and Upgrade Part - Gun Barrel: +Increases damage of Arms Cannon by 50%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 110 +Weight: 300 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +15112# +Armor worn by members of a combat organization specialized in interpersonal use. +-------------------------- +Increases Damage against monsters of Demi-Human race by 3%. +-------------------------- +For each Refine Level equal or above +6: +Increases Damage against monsters of Demi-Human race by additional 1%. +-------------------------- +Type: Armor +Defense: 30 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +15113# +Armor worn by Noh angels who have the role of destroying immortals who are out of the control of the world. +-------------------------- +Increases Damage against monsters of Undead race by 3%. +-------------------------- +For each Refine Level equal or above +6: +Increases Damage against monsters of Undead race by additional 1%. +-------------------------- +Type: Armor +Defense: 30 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +15114# +A white dress that women wear during weddings. +-------------------------- +MDEF +15 +-------------------------- +When equipped with Platinum Ring, Wedding Veil and Crystal Pumps: +MDEF +3 + +For each Refine Level of Wedding Veil: +MDEF +1 + +For each Refine Level of Crystal Pumps: +MDEF +1 + +For each Refine Level of Wedding Dress: +MDEF +1 +-------------------------- +Type: Armor +Defense: 10 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Female only +All Jobs except Novice +# +15115# +A robe decorated with roses filled with magical power that grows only on the top floor of a tower. +-------------------------- +INT +1 +MDEF +5 +-------------------------- +Increases Magical Damage against monsters of Fire, Water, Wind and Earth elemental by 2%. +-------------------------- +When compounded with Pasana Card: +Increases Magical Damage against monsters of Fire elemental by additional 3%. +-------------------------- +When compounded with Swordfish Card: +Increases Magical Damage against Water elemental by additional 3%. +-------------------------- +When compounded with Dokkaebi Card: +Increases Magical Damage against Wind elemental by additional 3%. +-------------------------- +When compounded with Sandman Card: +Increases Magical Damage against Earth elemental by additional 3%. +-------------------------- +Type: Armor +Defense: 8 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +15116# +Armor wore by travelers who went on board the Ferlock's airship. +It was stolen by the monsters that attacked during airship raid. +-------------------------- +All Stats +1 +MaxHP +1000 +MaxSP +100 +MDEF +10 +-------------------------- +When equipped with Airship Manteau and Airship Boots: +MaxHP +25% +MaxSP +25% +Increases movement speed. +-------------------------- +Type: Armor +Defense: 100 +Weight: 70 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 125 +# +15117# +Ferlock's suit, captain of the airship. +It was stolen by the monsters that attacked during airship raid. +-------------------------- +All Stats +1 +MaxHP +500 +MaxSP +50 +MDEF +10 +-------------------------- +Refine Level +7: +MaxHP +500 +MaxSP +50 +-------------------------- +Refine Level +9: +MaxHP +200 +MaxSP +20 +-------------------------- +Refine Level +12: +MaxHP +300 +MaxSP +30 +-------------------------- +When equipped with Ferlock's Hat, Ferlock's Manteau and Ferlock's Shoes: +MaxHP +25% +MaxSP +25% +Increases movement speed. + +Total Refine Level of entire set at least +30: +MaxHP +5%, MaxSP +5% +-------------------------- +Type: Armor +Defense: 70 +Weight: 75 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +# +15118# +A newly crafted armor. +May look ordinary but shows promise when Refined. +Happy 10th Anniversary pRO! +-------------------------- +Refine Level +10: +Increases damage taken from monsters of Demi-Human race by 2%. +-------------------------- +When equipped by Swordman and Merchant classes: +DEF +40, ATK +5% +-------------------------- +When equipped by Thief and Archer classes: +DEF +10, MDEF +10, ASPD +2 +-------------------------- +When equipped by Magician and Acolyte classes: +MDEF +20, MATK +5% +-------------------------- +Refine Level +10: +Enchants the armor with Fire element. +MaxHP +7%, MaxSP +5% +-------------------------- +Type: Armor +Defense: 40 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 110 +3rd Classes +# +15119# +A newly crafted manteau. +May look ordinary but shows promise when Refined. +Happy 10th Anniversary pRO! +-------------------------- +Refine Level +10: +Increases damage taken from monsters of Demi-Human race by 1%. +Decreases damage from WoE Guardians by 25%. +-------------------------- +Refine Level +12: +MDEF +5, MaxHP +5%, MaxSP +2%, +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Type: Garment +Defense: 15 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 110 +3rd Classes +# +15120# +A newly crafted shoes. +May look ordinary but shows promise when Refined. +Happy 10th Anniversary pRO! +-------------------------- +Refine Level +10: +Increases damage taken from monsters of Demi-Human race by 1%. +Increases MaxHP by 10xBaseLevel +-------------------------- +Refine Level +12: +MaxHP +8%, MaxSP +8% +-------------------------- +Type: Shoes +Defense: 20 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 110 +3rd Classes +# +15121# +Sarah's robe that imbued with spiritual power. +-------------------------- +Random chance to increase MATK by (8*Refine Level) for 10 sec when dealing magical damage. +-------------------------- +Type: Armor +Defense: 35 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 145 +# +15122# +Armor worn by botanists to collect rare plants. +-------------------------- +Increases Damage against monsters of Plant race by 3%. +-------------------------- +Type: Armor +Defense: 30 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +15123# +A suit that made from special thread. +-------------------------- +Random chance to auto-cast Level 1 Charmink Wink when dealing Melee Physical Damage. +-------------------------- +Refine Level +5: +Increases Critical Damage by 4%. +-------------------------- +Refine Level +7: +Increases Critical Damage by 6%. +-------------------------- +When equipped with +7 Durga: +Random chance to ignore physical defense of Normal class monsters for 3 seconds. +-------------------------- +Type: Armor +Defense: 56 +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 105 +Guillotine Cross +# +15124# +Armor worn by the priest when he defeats a senior demon. +-------------------------- +Increases Damage against monsters of Demon race by 3%. +-------------------------- +For each Refine Level equal or above +6: +Increases Damage against monsters of Demon race by additional 1%. +-------------------------- +Type: Armor +Defense: 30 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +15125# +A clothes with white color that able to attract fishes with mysterious power. +-------------------------- +Random chance to drop Fresh Fish when defeating a monster. +-------------------------- +For each Refine Level: +Increases the rate of Fresh Fish drop. +-------------------------- +Refine Level +7: +Restores HP by 100 when defeating a monster with melee physical attacks. +Disables HP Recovery Rate. +-------------------------- +Type: Armor +Defense: 20 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 + +# +15126# +A tidy suit for doram race. +-------------------------- +MaxHP +500 +MaxSP +100 +-------------------------- +For each 3 Refine Levels: +DEX +1 +INT +1 +-------------------------- +When equipped with Exclusive Doram Manteau and Exclusive Doram Shoes: +MaxHP +2000 +Protects from skill cast interruption. +Decreases Fixed Casting Time by 15%. +(Increases reducement according sum of Refine Level of Suit, Manteau and Shoes). +-------------------------- +Type: Armor +Defense: 80 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +15127# +An Earring with poring monster's figure. +-------------------------- +VIT +2 +MaxHP +200 +MDEF +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +15128# +A suit which made from the lost technology in Research Building. +-------------------------- +VIT +6 +-------------------------- +Base Level at least 130: +VIT +4 +-------------------------- +For each 3 Refine Levels: +MaxHP +4% +-------------------------- +When equipped with Excellion Wing: +Perfect Dodge +6 +Decreases After Skill Delay by 10%. +-------------------------- +Base Level at least 130: +Decreases After Skill Delay by 10%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 100 +Weight: 100 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 99 +# +15129# +A tidy and luxury doram race suit. +-------------------------- +MaxHP +10% +MaxSP +10% +-------------------------- +For each 2 Refine Levels: +DEX +1 +INT +1 +-------------------------- +When equipped with Luxury Doram Manteau and Luxury Doram Shoes: +MaxHP +3000 +Protects from skill cast interruption. +Decreases Fixed Casting Time by 20%. +(Increases reducement according sum of Refine Level of Suit, Manteau and Shoes). +-------------------------- +Type: Armor +Defense: 100 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 140 +Summoner (Doram) +# +15130# +Armor worn by warriors to protect themselves from gigantic dragons. +-------------------------- +Increases Damage against monsters of Dragon race by 3%. +-------------------------- +For each Refine Level above +5 or higher: +Increases Damage against monsters of Dragon race by 1%. +-------------------------- +Type: Armor +Defense: 30 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +15132# +Military uniform provided by the Prontera Army. +It is said that wearing this will give you an indomitable spirit. +-------------------------- +Refine Level +6: +Decreases damage taken from Players by 2%. +-------------------------- +Refine Level +8: +Decreases damage taken from Players by additional 3%. +-------------------------- +When equipped with Prontera Military Sash and Prontera Military Boots: +MaxHP +30% +Decreases damage taken from Players by additional 2%. +Decreases damage taken from all elemental attacks by 5%. +Decreases damage taken from ranged physical attacks by 10%. +-------------------------- +When compounded with Sandman Card: +Prevents Frozen status. +-------------------------- +When compounded with Swordfish Card: +Prevents Frozen status. +-------------------------- +When compounded with Dokkaebi Card: +Prevents Frozen status. +-------------------------- +When compounded with Pasana Card: +Prevents Frozen status. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Armor +Defense: 37 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +15133# +Military uniform exclusively for the leader of the army issued by the Prontera Army. +It is said that wearing this will give you an indomitable spirit. +-------------------------- +Refine Level +6: +Decreases damage taken from Players by 2%. +-------------------------- +Refine Level +8: +Decreases damage taken from Players by additional 3%. +-------------------------- +When equipped with Prontera Military Commander's Sash and Prontera Military Commander's Boots: +MaxHP +30% +Decreases damage taken from Players by additional 2%. +Decreases damage taken from all elemental attacks by 5%. +Decreases damage taken from ranged physical attacks by 10%. +-------------------------- +When compounded with Sandman Card: +Prevents Frozen status. +-------------------------- +When compounded with Swordfish Card: +Prevents Frozen status. +-------------------------- +When compounded with Dokkaebi Card: +Prevents Frozen status. +-------------------------- +When compounded with Pasana Card: +Prevents Frozen status. +-------------------------- +Indestructible in battle +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Armor +Defense: 37 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +15134# +Apparel with power to defeat angels. It seems to have been used for some ceremony. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Angel race by 5%. +-------------------------- +For each Refine Level: +MDEF +1 +Decreases damage taken from Angel race by 1%. +-------------------------- +Type: Armor +Defense: 30 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +15135# +Apparel with power to defeat Dragon creature. It seems to have been used for some ceremony. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Dragon race by 5%. +-------------------------- +For each Refine Level: +MDEF +1 +Decreases damage taken from Dragon race by 1%. +-------------------------- +Type: Armor +Defense: 30 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +15136# +A durable armor said that doesn't requires any shield to defend from incoming attack, thus its named \ +. +Because of its old age, it has loss its true ability. +-------------------------- +MaxHP +100 +-------------------------- +When equipped with Anolian Card, Yellow Novus Card, Baby Leopard Card, Geographer Card, Old Stove Card, Solider Card or Loli Ruri Card: +Refine Level +5: +Old Tatenashi Armor becomes Earth elemental. +Refine Level +6: +Old Tatenashi Armor becomes Water elemental. +Refine Level +7: +Old Tatenashi Armor becomes Wind elemental. +Refine Level +8: +Old Tatenashi Armor becomes Fire elemental. +Refine Level +9: +Old Tatenashi Armor becomes Shadow elemental. +Refine Level +10: +Old Tatenashi Armor becomes Holy elemental. +-------------------------- +When equipped with Archdam Card: +For each Refine Level: +Increases damage of Shield Chain and Sacrifice by 5%. +-------------------------- +Type: Armor +Defense: 0 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: None +# +15137# +A durable armor said that doesn't requires any shield to defend from incoming attack, thus its named \ +. +After restored to its original state, it gains its true ability. +-------------------------- +For each Refine Level: +VIT +1 +-------------------------- +When equipped with Cornutus Card: +VIT +15 +-------------------------- +When equipped with RSX-0806 Card: +For each Refine Level: +VIT +5 +MaxHP +5% +-------------------------- +When equipped with Tatenashi Helmet: +DEF +15 +For each Refine Level of Tatenashi Armor: +DEF +15 +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 120 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +15138# +Egir, the God of Sea's Armor. It has a shape of a beautiful mermaid and seems to enable wearer swim in the water. +-------------------------- +MaxHP +500 +MaxSP +50 +-------------------------- +Indestructible in battle +-------------------------- +When equipped with Aegir Helm: +Decreases damage taken from Fish race monsters by 10%. +-------------------------- +For each Refine Level of Aegir Armor: +Decreases damage taken from Fish race monsters by 1%. +-------------------------- +Type: Armor +Defense: 25 +Weight: 160 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +15139# +Apparel with power to defeat beast creature. It seems to have been used for some ceremony. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Brute race by 5%. +-------------------------- +For each Refine Level: +MDEF +1 +Decreases damage taken from Brute race by 1%. +-------------------------- +Type: Armor +Defense: 30 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +15140# +Apparel with power to defeat formless creature. It seems to have been used for some ceremony. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Formless race by 5%. +-------------------------- +For each Refine Level: +MDEF +1 +Decreases damage taken from Formless race by 1%. +-------------------------- +Type: Armor +Defense: 30 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +15141# +A suit of armor obtained from infinite space that emanating strange aura. +-------------------------- +MaxHP +1000 +MaxSP -100 +-------------------------- +Refine Level +7: +MaxHP +400 +-------------------------- +Refine Level +9: +MaxHP +600 +-------------------------- +When equipped with Ancient Decoration of Rift: +MaxSP +100 +Protects from skill cast interruption. +-------------------------- +When equipped with Ancient Decoration of Rift, Manteau of Rift and Shoes of Rift: +MaxHP +1000 +Increases recovery amount gained from Healing skills by 5%. +Additional healing increased depend on total sum of Refine set. (up to +30 total Refine Level) +-------------------------- +Type: Armor +Defense: 30 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +15142# +Apparel with power to defeat sea creature. It seems to have been used for some ceremony. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Fish race monsters by 5%. +-------------------------- +For each Refine Level: +MDEF +1 +Decreases damage taken from Fish race monsters by 1%. +-------------------------- +Type: Armor +Defense: 30 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +15143# +Apparel with power to defeat plant creature. It seems to have been used for some ceremony. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Plant race by 5%. +-------------------------- +For each Refine Level: +MDEF +1 +Decreases damage taken from Plant race by 1%. +-------------------------- +Type: Armor +Defense: 30 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +15144# +Apparel with power to defeat insect creature. It seems to have been used for some ceremony. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Insect race by 5%. +-------------------------- +For each Refine Level: +MDEF +1 +Decreases damage taken from Insect race by 1%. +-------------------------- +Type: Armor +Defense: 30 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +15145# +A suit of armor made out of the scales of a powerful dragon that was once feared by the world. +It has the power to absorb all kinds of energy. +-------------------------- +Refine Level +8: +3% chance to restore 3% of damage as HP when performing a physical attack. +2% chance to restore 2% of damage as SP when performing a physical attack. +-------------------------- +Refine Level +9: +Increases the rate by 1% and HP and SP restored by 1%. +-------------------------- +Refine Level +10: +Increases the rate by 2% and HP and SP restored by 2%. +-------------------------- +When equipped with Rideword Hat: +The HP/SP absorption effect of Rideword Hat will not be activated. +-------------------------- +When equipped with Vanargand Helm: +The HP/SP absorption effect of Vanargand Helm will not be activated. +-------------------------- +When equipped with Nidhoggur's Shadow Garb: +The SP absorption effect of Nidhoggur's Shadow Garb will not be activated. +-------------------------- +When enchanted with Energy: +The SP absorption effect of Energy will not be activated. +-------------------------- +Type: Armor +Defense: 60 +Weight: 400 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +15146# +A clothes for those who would use whatever means necessary to bring their desires to pass. +-------------------------- +MATK +50 +-------------------------- +Enables the use of Level 1 Endure. +-------------------------- +Base Level at least 120: +MATK +50 +-------------------------- +Base Level at least 140: +MATK +50 +-------------------------- +When equipped with Cape of Ancient Lord: +MaxSP +10% +FLEE +10 +-------------------------- +For each Refine Level of Flattery Robe: +MaxSP +1% +FLEE +1 +-------------------------- +When equipped with Survivor's Manteau: +MaxHP +10% +MATK +2% +-------------------------- +For each Refine Level of Flattery Robe: +MaxHP +1% +MATK +1% +-------------------------- +Type: Armor +Defense: 0 +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +# +15147# +A clothes that will deal serious damage to people's spirit when the wearer talk. +-------------------------- +Enables the use of Level 1 Improve Concentration. +-------------------------- +For each Refine Level: +Ignores physical defense of Demi-Human, Demon and Undead race by 4%. +-------------------------- +When equipped with Morrigan's Manteau: +LUK +3 +Critical +10 +Ignores physical defense of Demi-Human, Demon and Undead race by 15%. +-------------------------- +For each Refine Level of Abusive Robe: +LUK +1 +Critical +1 +-------------------------- +When equipped with Valkyrie Manteau: +MaxHP +10% +ATK +2% +Ignores physical defense of Demi-Human, Demon and Undead race by 15%. +-------------------------- +For each Refine Level of Abusive Robe: +MaxHP +1% +ATK +1% +-------------------------- +Type: Armor +Defense: 0 +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +# +15148# +A robotic suit that can amplify the muscles of its wearer. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +For each Refine Level above +5: +Increases Ranged Physical Damage by 2%. +-------------------------- +When equipped with Powered Arm, Powered Tank and Powered Boots: +Increases damage of Arms Cannon, Cold Slower and Flame Launcher by 50%. +Random chance to decrease After Skill Delay by 30% for 7 seconds when receiving physical damage. + +Refine Level of Powered Mail, Powered Tank and Powered Boots is +7 or higher: +Increases damage of Arms Cannon, Cold Slower and Flame Launcher by additional 50%. +Nullifies Mado Gear Fuel Consumption when using skills. +-------------------------- +Type: Armor +Defense: 100 +Weight: 200 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +15149# +Body parts made to enhance the defense ability and maximize the performance as a protection unit. +-------------------------- +Decreases SP Consumption of Shape Shift by 90. +-------------------------- +For each Refine Level: +VIT +1 +-------------------------- +When equipped with Guardian Engine, Guardian Boots and Guardian Barrel: +Decreases Variable Casting Time of Vulcan Arm and Boost Knuckle by 100%. +Prevents Frozen status. + +Refine Level of Guardian Unit, Guardian Engine and Guardian Boots is +7 or higher: +Decreases damage taken from Holy elemental attacks by 10%. +Increases damage of Vulcan Arm and Boost Knuckle by additional 50%. +When Pile Bunker is used: +Auto-casts Level 5 Dispell on the enemy. +Increases Pile Punker skill cooldown by 3 seconds. +-------------------------- +When equipped with Guardian Processor: +Decreases damage taken fron Demi-Human race by 3%. + +Refine Level of Guardian Unit is +7 or higher: +MaxHP +10% +Decreases damage taken fron Demi-Human race by additional 2%. + +Refine Level of Guardian Unit is +10 or higher: +MaxHP +10% +Decreases damage taken fron Demi-Human race by additional 2%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 100 +Weight: 200 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +15150# +A white, clear and clean shirt. +-------------------------- +MaxHP +70 +FLEE +5 +-------------------------- +Type: Armor +Defense: 25 +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 6 +Summoner (Doram) +# +15151# +A white shirt that promote an environment friendly clothing. +-------------------------- +MaxHP +150 +FLEE +10 +-------------------------- +Type: Armor +Defense: 40 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 15 +Summoner (Doram) +# +15152# +A certified kingdom equipment for adventurer. +-------------------------- +Base Level is below 100: +STR +2 +Increases experience gained from defeating monsters by 4%. +-------------------------- +For each 2 Refine Levels: +MaxHP +2% +-------------------------- +Type: Armor +Defense: 45 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +15153# +A certified kingdom equipment for adventurer. +-------------------------- +Base Level is below 100: +AGI +2 +Increases experience gained from defeating monsters by 4%. +-------------------------- +For each 2 Refine Levels: +FLEE +3 +-------------------------- +Type: Armor +Defense: 45 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +15154# +A certified kingdom equipment for adventurer. +-------------------------- +Base Level is below 100: +DEX +2 +Increases experience gained from defeating monsters by 4%. +-------------------------- +For each 2 Refine Levels: +Critical +2 +-------------------------- +Type: Armor +Defense: 45 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +15155# +A certified kingdom equipment for adventurer. +-------------------------- +Base Level is below 100: +INT +2 +Increases experience gained from defeating monsters by 4%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption by 1%. +-------------------------- +Type: Armor +Defense: 45 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +15156# +A tidy and elegant doram race suit. +-------------------------- +MaxHP +15% +MaxSP +15% +-------------------------- +For each Refine Level: +DEX +1 +INT +1 +-------------------------- +Refine Level +9: +Decreases SP Consumption by 5%. +-------------------------- +When equipped with Elegant Doram Manteau and Elegant Doram Shoes: +MaxHP +4000 +Protects from skill cast interruption. +Decreases Fixed Casting Time by 25% (Increases reducement according sum of Refine Level of Suit, Manteau and Shoes). +-------------------------- +Type: Armor +Defense: 120 +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 175 +Summoner (Doram) +# +15157# +A robe wearing a very strong magical power. +-------------------------- +MDEF +10 +-------------------------- +Decreases After Skill Delay by 10%. +-------------------------- +Protects from skill cast interruption. +-------------------------- +For each Refine Level: +MATK +15 +Increases Magical Damage with Shadow element by 2%. +-------------------------- +When equipped with Heal Earring and Teleport Earring: +Decreases Variable Casting Time by 10%. +Decreases Fixed Casting Time by 50%. +-------------------------- +When compounded with Bathory Card: +Prevents Frozen status. +-------------------------- +When equipped with Black Musang Hat: +Enables the use of Level 3 Hell Inferno. + +For each Refine Level of Awakening Robe: +MATK +7 +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Type: Armor +Defense: 35 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +All Jobs except Novice +# +15158# +A suit used by the captain of the airship, Ferlock. +-------------------------- +MDEF +10 +-------------------------- +MaxHP +500 +-------------------------- +When equipped with Ferlock's Boots and Ferlock's Manteau: +DEF +200, MDEF +20 +MaxHP +500, MaxSP +50 + +Total Refine Level of entire set at least +15: +MaxHP +1000 +MaxSP +30 + +Total Refine Level of entire set at least +20: +MaxHP +1500 +MaxSP +100 + +Total Refine Level of entire set at least +25: +MaxHP +2000 +MaxSP +200 +-------------------------- +When equipped with Ferlock's Hat, Ferlock's Boots and Ferlock's Manteau: +Random chance to absorb 3% damage inflicted as HP and 2% damage as SP when dealing physical attacks. +-------------------------- +Refining is only possible with the NPC \ +. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Armor +Defense: 0 +Weight: 100 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +15159# +Suits used by airship passengers. +-------------------------- +MDEF +10 +-------------------------- +MaxHP +500 +-------------------------- +When equipped with Airship Boots and Airship Manteau: +DEF +200, MDEF +20 +MaxHP +500, MaxSP +50 + +Total Refine Level of entire set at least +15: +MaxHP +1000 +MaxSP +30 + +Total Refine Level of entire set at least +20: +MaxHP +1500 +MaxSP +100 + +Total Refine Level of entire set at least +25: +MaxHP +2000 +MaxSP +200 +-------------------------- +When equipped with Airship's Hat, Airship Boots and Airship Manteau: +Random chance to absorb 3% damage inflicted as HP and 2% damage as SP when dealing physical attacks. +-------------------------- +Refining is only possible with the NPC \ +. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Armor +Defense: 0 +Weight: 100 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +15160# +A suit given by the king. +It seems to have the effect of calming the souls of the dead. +-------------------------- +MaxHP +10% +-------------------------- +Decreases damage taken from Bio Lab and Tomb of the Fallen by 3%. +-------------------------- +Refine Level +6: +MaxHP +10% +Decreases damage taken from Bio Lab and Tomb of the Fallen by additional 2%. +-------------------------- +Refine Level +8: +Decreases damage taken from Bio Lab and Tomb of the Fallen by additional 2%. +-------------------------- +When equipped with Requiem Boots and Requiem Manteau: +Prevents Frozen status. +Enables the use of Level 1 Hiding. +Enables the use of Level 1 Sight. +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 10 +Element: Fire +Weight: 220 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +15161# +A robe given by the king. +It seems to have the effect of calming the souls of the dead. +-------------------------- +MaxHP +10% +-------------------------- +Decreases damage taken from Bio Lab and Tomb of the Fallen by 3%. +-------------------------- +Refine Level +6: +MaxHP +10% +Decreases damage taken from Bio Lab and Tomb of the Fallen by additional 2%. +-------------------------- +Refine Level +8: +Decreases damage taken from Bio Lab and Tomb of the Fallen by additional 2%. +-------------------------- +When equipped with Requiem Boots and Requiem Manteau: +Prevents Frozen status. +Enables the use of Level 1 Hiding. +Enables the use of Level 1 Sight. +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 10 +Element: Wind +Weight: 220 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +15162# +A suit usually worn by Gentleman. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 3%). +Decreases After Skill Delay by 3%. +Decreases Variable Casting Time by 3%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by additional 2%). +Decreases After Skill Delay by additional 2%. +Decreases Variable Casting Time by additional 2%. +-------------------------- +Type: Armor +Defense: 40 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +All Jobs except Novice +# +15163# +An elegant robe. +Can only be worn by high rank law officer. +-------------------------- +MATK +5% +-------------------------- +Enables the use of Level 1 Spell Breaker. +-------------------------- +Base Level at least 120: +MATK +4% +-------------------------- +Base Level at least 140: +MATK +5% +-------------------------- +When equipped with Cape of Ancient Lord: +Decreases Variable Casting Time by 2%. +Protects from skill cast interruption. +-------------------------- +When equipped with Survivor's Manteau: +Random chance to auto-cast Level 1 Heal on wearer when dealing magical attacks. +For each Refine Level: +Increases the trigger rate. +-------------------------- +Type: Armor +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +15164# +An elegant robe. +Can only be worn by high rank law officer. +-------------------------- +VIT +5 +-------------------------- +Enables the use of Level 1 Sacrifice. +-------------------------- +For each Refine Level: +Decreases damage taken from Fire and Shadow elemental attacks by 3%. +-------------------------- +When equipped with Morrigan's Manteau: +Consultation Robe0 becomes Ghost elemental. + +For each Refine Level of Consultation Robe: +AGI +1 +FLEE +2 +-------------------------- +When equipped with Valkyrie Manteau: +VIT +5 +Decreases damage taken from Neutral, Fire and Shadow elemental attacks by 10%. + +For each Refine Level of Consultation Robe: +VIT +1 +LUK +1 + +Refine Level of Consultation Robe is +10 or higher: +Decreases damage taken from Neutral elemental attacks by 10%. +-------------------------- +When equipped with Devilring Card: +Disables the effect of Devilring Card. +-------------------------- +Type: Armor +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +15165# +A white hat that increasess the spirit of marching. It uses wearer's mental spirit as power. +-------------------------- +STR +2 +-------------------------- +Random chance to endow equipped weapon with Ghost elemental for 60 sec when dealing physical damage. +For each Refine Level above +: +Increases trigger rate. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +15166# +The holy rosary which has received its powers from the apostle of God. It's filled with mysterious powers. +-------------------------- +Perfect dodge +2 +-------------------------- +Increases Healing skills effectiveness by 3%. +-------------------------- +When equipped with Croce Staff: +Perfect dodge +2 +-------------------------- +When equipped with Divine Angel Nurse Cap: +Perfect dodge +1 +Increases Healing skills effectiveness by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 60 +# +15167# +A robe made of coated Elunium and Emperium for expert adventurer. +-------------------------- +All Stats +2 +MaxHP +500 +MaxSP +50 +MDEF +3 +Perfect Dodge +3 +-------------------------- +Type: Armor +Defense: 74 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +15169# +A robe of Lapine King. Contains Lapine magic. +-------------------------- +MDEF +5 +MATK +10 +-------------------------- +Decreases damage taken from Demi-Human race by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +Refine Level +8: +Decreases damage taken from Demi-Human race by 2%. +Kardui's Robe becomes indestructible in battle. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by 2%. +When equipped with Angelring Card: +Prevents Frozen status. +-------------------------- +When equipped with Lapine Staff: +For each Refine Level of weapon: +MATK +3 +-------------------------- +Refine Level of Kardui's Robe is +7 or higher: +For each Refine Level of Lapine Staff: +MATK +2 +-------------------------- +Refine Level of Kardui's Robe is +8 or higher: +For each Refine Level of Lapine Staff: +MATK +2 +-------------------------- +Type: Armor +Defense: 60 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +15170# +A suit of armor that was accidentally enchanted by Goibne the blacksmith when he spilled the mystic ale of life all over it. +-------------------------- +VIT +2 +MaxHP +10% +-------------------------- +When equipped with Goibne's Spaulders, Goibne's Greaves and Goibne's Helm: +VIT +5 +MaxHP +15% +MaxSP +5% +DEF +5 +MDEF +15 +Decreases damage taken from Water, Wind, Earth and Fire elemental attacks by 10%. +-------------------------- +Type: Armor +Defense: 58 +Weight: 350 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 54 +All Jobs except Novice +# +15171# +A sparkling suit that received Angelring's protection. It also brings happiness to wearer. +-------------------------- +MaxHP +1000 +MaxSP +100 +-------------------------- +Base Level 90 and up: +Every 1 Base Lv HP + 30, SP + 5 +-------------------------- +Upgrade to level 5 and above: +MATK +10% +-------------------------- +Upgrade to level 7 and above: +Reduces casting time by a constant 0.1 second. +-------------------------- +Upgrade to level 9 and above: +Gives Holy elements to the moveset. +-------------------------- +Type: Armor +Defense: 77 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +15172# +A suit that received Ghostring's protection. It cloaks wearer with thin shadows that make wearer's presence unrecognizable. +-------------------------- +MaxHP +1000 +MaxSP +100 +MDEF +20 +-------------------------- +For each Base Level above 100: +MaxHP +30 +MaxSP +5 +-------------------------- +Refine Level +7: +ATK +10% +-------------------------- +Refine Level +8: +Enables the use of Level 5 Adrenaline Rush. +-------------------------- +Refine Level +9: +Blesses armor with Ghost elemental. +-------------------------- +Type: Armor +Defense: 77 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +Novice +# +15173# +A suit of armor which has terrible aura that once used by ancient king whose master of magic. +Originally it was an exquisite silver armor, but eroded by a mighty curse that plagued over all the land. +-------------------------- +ATK +10% +MATK +10% +-------------------------- +Decreases damage taken from all elemental attacks by 5%. +-------------------------- +Refine Level +7: +MaxHP +5% +MaxSP +5% +Indestructible in battle +-------------------------- +When equipped with Cursed Magic Manteau and Cursed Magic Boots: +Decreases damage taken from all elemental attacks by 5%. +Decreases damage taken from Ranged Physical Damage by 5%. +MaxHP +6666 +MaxSP +666 +-------------------------- +When equipped with Cursed Magic Ring: +ATK +10% +MATK +10% +-------------------------- +Type: Armor +Defense: 60 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +15174# +A swimsuit designed for a profesional surfer. +-------------------------- +MaxHP +5% +MaxSP +5% +-------------------------- +For each 3 Refine Levels: +MaxHP +1% +MaxSP +1% +-------------------------- +When equipped with Squba Mask: +Perfect Dodge +10 +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Armor +Defense: 1 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +15175# +A suit of armor made out of the scales of a powerful dragon that was once feared by the world. It has the power to enhance physical abilities. +-------------------------- +All Stats +1 +HIT +10 +-------------------------- +Refine Level +7: +HIT +10 +Increases Physical Damage against enemies of Boss class by 10%. +-------------------------- +Refine Level +9: +HIT +10 +Increases Physical Damage against enemies of Boss class by 10%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +15176# +A Vigilante suit that used to prevent criminal in the past. +-------------------------- +DEX +5 +-------------------------- +For each 2 Refine Levels: +Increases Bow class weapon damage by 3%. +-------------------------- +Refine Level +9: +Increases damage of Triangle Shot by 20%. +-------------------------- +When equipped with Vigilante Bow and Vigilante Badge: +Increases damage of Double Strafe by 50%. +Decreases SP Consumption of Triangle Shot by 10. +-------------------------- +Type: Armor +Defense: 50 +Weight: 50 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +15177# +A robe with elemental power. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +For each 2 Refine Levels: +MATK +5 +-------------------------- +Refine Level +9: +Random chance to auto-cast Level 5 Thunderstorm when dealing melee physical attack (Or activate learned skill Level). +-------------------------- +When equipped with Elemental Manteau and Elemental Origin: +Increases MATK by 50 for 1 minute when using Double Casting. +Random chance to auto-cast Level 5 Fire Ball when dealing magical attack (Or activate learned skill Level). +-------------------------- +Type: Armor +Defense: 40 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +15178# +A suit wore by Ninja that hired by gold miner owner. +-------------------------- +For each 2 Refine Levels: +FLEE +5 +-------------------------- +Refine Level +9: +Increases damage of Kunai Splash by 20%. +-------------------------- +When equipped with Monokage and Golden Scarf: +Increases damage of Kunai Explosion by 20%. +Increases damage of Kunai Splash by 50%. +-------------------------- +When equipped with Hundred Leaf Huuma Shuriken and Golden Scarf: +Increases Ranged Physical Damage by 15%. +Decreases Swirling Petal skill cooldown by 1 second. +-------------------------- +Type: Armor +Defense: 50 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +15179# +A gold mine worker's leather vest. Very soft and comfortable. +-------------------------- +FLEE +10 +-------------------------- +For each 2 Refine Levels: +FLEE +4 +-------------------------- +Refine Level +9: +Critical +5 +-------------------------- +When equipped with Mine Worker Backpack and Mine Worker Pickaxe: +ATK +5% +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases Critical Damage by 10%. +-------------------------- +Type: Armor +Defense: 80 +Weight: 150 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +15180# +Clothes with a sense of free will. It looks old and sloppy. +-------------------------- +ATK +20 +-------------------------- +Refine Level +9: +Random chance to auto-cast Level 3 Double Strafe when dealing melee physical attack (Or activate learned skill Level). +-------------------------- +When equipped with Hippie Rope/Guitar and Hippie Feather: +ATK +30 +ASPD +1 +Increases Critical Damage by 20%. +-------------------------- +Type: Armor +Defense: 50 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Minstrel and Wanderer +# +15181# +A uniform given to loyal member of Eden Group only. It's came with various size and has waterproof plus anti stain design. +-------------------------- +All Stats +1 +MaxHP +700 +MaxSP +100 +MDEF +7 +-------------------------- +Type: Armor +Defense: 80 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +15182# +A uniform given to skilled member of Eden Group only. It's came with various size and has waterproof plus anti stain design. +-------------------------- +All Stats +1 +MaxHP +1100 +MaxSP +120 +MDEF +11 +-------------------------- +Type: Armor +Defense: 85 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 115 +# +15183# +A uniform given to trained member of Eden Group only. It's came with various size and has waterproof plus anti stain design. +-------------------------- +All Stats +2 +MaxHP +1100 +MaxSP +120 +MDEF +11 +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 130 +# +15184# +A uniform given to veteran member of Eden Group only. It's came with various size and has waterproof plus anti stain design. +-------------------------- +All Stats +2 +MaxHP +1500 +MaxSP +150 +MDEF +15 +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 145 +# +15185# +A uniform given to full-fledged member of Eden Group only. It's came with various size and has waterproof plus anti stain design. +-------------------------- +All Stats +2 +MaxHP +1500 +MaxSP +150 +MDEF +15 +-------------------------- +Decreases damage taken from all elemental attacks, except Neutral, by 5%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 160 +# +15186# +A costume of Kafra employee. It's looks as ordinary maid costume. +-------------------------- +Increases EXP gained from killing monsters by 5% +increases drop rate by 5%. +-------------------------- +MaxHP + 100 and MaxSP + 20 per refine rate.: +-------------------------- +If refine rate is 7 or higher: +MaxHP +3% +MaxSP +3% +-------------------------- +If refine rate is 9 or higher: +MaxHP +5% +MaxSP +5% +-------------------------- +If refine rate is 12 or higher: +increases HP and SP recovery by 100%. +-------------------------- +Type: Armor +Defense: 40 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +15187# +Unknown robe obtained from magical labyrinth. It is unknown from what material it was made. +-------------------------- +Refine Level +7: +Increases HP Recovery Rate by 10%. +-------------------------- +Refine Level +9: +Increases HP Recovery Rate by 20%. +-------------------------- +When equipped with Diva Manteau and Diva Shoes: +MaxHP +10% +MaxSP +10% +-------------------------- +Type: Armor +Defense: 80 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +15188# +An altered version of Diva robe that was influenced by magical crystal of labyrinth's power. It is unknown from what material it was made. +-------------------------- +Refine Level +7: +Increases SP Recovery Rate by 10%. +-------------------------- +Refine Level +9: +Increases SP Recovery Rate by 20%. +-------------------------- +When equipped with Mirage Manteau and Mirage Shoes: +MaxHP +10% +MaxSP +10% +-------------------------- +Type: Armor +Defense: 80 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +15189# +A suit of armor wore by Odin warriors whose fought against giants. +-------------------------- +MDEF +5 +ATK +10 +-------------------------- +Decreases damage taken from Demi-Human race by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 2%. +-------------------------- +Refine Level +8: +Decreases damage taken from Demi-Human race by additional 2%. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +-------------------------- +When compounded with Evil Druid Card: +Refine Level +9: +Prevents Curse status. +-------------------------- +When equipped with Manteau of The Fallen: +For each Refine Level of Manteau of The Fallen: +ATK +3 + +Refine Level of Manteau of The Fallen is +7 or higher: +For each 10 base STR: +ATK +5 + +Refine Level of Manteau of The Fallen is +8 or higher: +For each 10 base STR: +ATK +7 +-------------------------- +Type: Armor +Defense: 60 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +15190# +Armor rented from a rental machine. +It disappears after a certain period of time. +-------------------------- +All Stats +1 +-------------------------- +Decreases SP Consumption by 10%. +-------------------------- +Refine Level +7: +Decreases SP Consumption by additional 5%. +Decreases Variable Casting Time by 5%. +Increases Magical Damage against monsters of Boss class by 10%. +-------------------------- +Refine Level +10: +Decreases SP Consumption by additional 5%. +Decreases Variable Casting Time by additional 5%. +Increases Magical Damage against monsters of Boss class by additional 10%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +15191# +A suit of armor wore by Khalitzburg Knight, It has great protection power. +-------------------------- +Decreases damage taken from Demi-Human race by 1%. +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by 2%. +-------------------------- +Type: Armor +Defense: 45 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +15192# +Popular rental equipment selected by Kafra staff. +-------------------------- +Decreases After Skill Delay by 10%. +-------------------------- +When equipped with Rental King Schmidt's Manteau: +Refine Level of Rental King Schmidt's Uniform and Rental King Schmidt's Manteau is +6 or higher: +Decreases After Skill Delay by additional 20%. + +Refine Level of Rental King Schmidt's Uniform and Rental King Schmidt's Manteau is +8 or higher: +Decreases After Skill Delay by additional 20%. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Armor +Defense: 150 +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +15193# +A robe wore by great magician Nilrem, however the magic power of this robe has faded away. +-------------------------- +MATK +30 +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Random chance to increase INT by (3*Refine Level) for 10 seconds when dealing magical attacks. +-------------------------- +When equipped with any kind of Temporal Boots: +MaxHP +20% +-------------------------- +Type: Armor +Defense: 35 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +All Jobs except Novice +# +15194# +A robe worn only by transcendents. +-------------------------- +MATK +60 +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Protects from skill cast interruption. +-------------------------- +For each Refine Level: +INT +3 +Increases Magical Damage with Ghost element by 2%. +-------------------------- +When equipped with Nidhoggur Shadow Card: +Prevents Frozen status. +Restores HP by 200 and SP by 20 when defeating target with magical attacks. +-------------------------- +When equipped with any kind of Temporal Boots: +MaxHP +20% +-------------------------- +Type: Armor +Defense: 35 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +All Jobs except Novice +# +15195# +A snow-white robe on which spells are embroidered. +-------------------------- +Decreases Fixed Casting Time by 3%. +-------------------------- +Increases Healing skills effectiveness by 5%. +For each Refine Level: +Increases Healing skills effectiveness by 1%. +-------------------------- +When equipped with Illusion Long Mace: +MATK +100 +Increases Healing skills effectiveness by 20%. +-------------------------- +Refine Level of Illusion Puente Robe and Illusion Long Mace each is +7 or higher: +MATK +50 +-------------------------- +Total Refine Level of entire set at least +18: +Increases Healing skills effectiveness by 15%. +-------------------------- +Total Refine Level of entire set at least +22: +Decreases After Skill Delay by 15%. +-------------------------- +Type: Armor +Defense: 52 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +15196# +A suit of armor made out of the scales of a powerful dragon that was once feared by the world. It has the power to enhance magical abilities. +-------------------------- +All Stats +1 +-------------------------- +Decreases SP Consumption by 10%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 5%. +Increases Magical Damage against monsters of Boss class by additional 10%. +Decreases SP Consumption by 5%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 5%. +Increases Magical Damage against monsters of Boss class by additional 10%. +Decreases SP Consumption by additional 5%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +15204# +A dress that looks to absorb all the light in the world. +-------------------------- +Prevents knock-back effect. +-------------------------- +Refine Level +5: +Increases Damage against Shadow and Undead elemental by 10%. +Increases Damage against monsters of Demon and Undead race by 10%. +-------------------------- +Refine Level +7: +Increases Damage against Shadow and Undead elemental by 15%. +Increases Damage against monsters of Demon and Undead race by 15%. +-------------------------- +Refine Level +9: +Increases Damage against Shadow and Undead elemental by 15%. +Increases Damage against monsters of Demon and Undead race by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 120 +Weight: 40 +Element: Shadow +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +15205# +A coat that usually worn by combat medic in battlefield. +-------------------------- +MDEF +10 +-------------------------- +Decreases After Skill Delay by 10%. +-------------------------- +Increases Healing skills effectiveness by 2%. +-------------------------- +Increases recovery amount gained from Healing skills and items by 1%. +-------------------------- +Refine Level +7: +DEF +50 +Increases Healing skills effectiveness by 4%. +Increases recovery amount gained from Healing skills and items by 2%. +Indestructible in battle +-------------------------- +Refine Level +8: +DEF +100 +Decreases damage taken from Demi-Human race by 7%. +Increases Healing skills effectiveness by 6%. +Increases recovery amount gained from Healing skills and items by 3%. +-------------------------- +Refine Level +9: +DEF +150 +Increases resistance against Stone Curse status by 50%. +Increases Healing skills effectiveness by 8%. +Increases recovery amount gained from Healing skills and items by 4%. +-------------------------- +When equipped with Argiope Card: +Refine Level of Holy White Coat is +9 or higher: +Prevents Frozen status. +-------------------------- +Type: Armor +Defense: 50 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +15208# +Robust armor worn by Lola. +The structure is easy to move, and the movement is not restricted when the chain iron ball is swinging around. +-------------------------- +Reflects 5% of the damage recieved from melee physical attacks. +-------------------------- +For each Refine Level: +VIT+1, DEF +20 +-------------------------- +Refine Level +7: +Reflects additional 5% of the damage recieved from melee physical attacks. +Indestructible in battle +-------------------------- +Refine Level +9: +Reflects additional 5% of the damage recieved from melee physical attacks. +-------------------------- +When equipped with Lola's Iron Chain Ball: +For each Refine Level of Lola's Iron Chain Ball: +ATK +10 +-------------------------- +Type: Armor +Defense: 100 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +15209# +The coat that Drake wears. +I can feel the appearance of my life. +-------------------------- +MDEF +10 +-------------------------- +MaxHP +500, MaxSP +50 +-------------------------- +ATK +3% +-------------------------- +Refine Level +7: +MaxHP +1000 +MaxSP +100 +ATK +3% +-------------------------- +Refine Level +9: +MaxHP +1500 +MaxSP +150 +ATK +4% +Nullifies weapon damage size penalty against all monsters. +-------------------------- +Type: Armor +Defense: 60 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +15210# +Rental Item +A swimsuit that can be rented for a certain period of time during the July Noodle Festival. Made for the best surfers. +-------------------------- +MaxHP +10% +MaxSP +10% +-------------------------- +When equipped with Rental Scuba Mask: +Perfect Dodge +15 +Decreases Variable Casting Time by 30%. +Increases experience gained from defeating Fish race monsters by 5%. +-------------------------- +Type: Armor +Defense: 1 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +15212# +The plate used by Werner Institute's experiment, YSF01. There are powerful magic swirling inside seemed cut off from the world. +If used abusely, its magic power will consume its wearer. +-------------------------- +Refine Level +8: +ATK +5% +-------------------------- +Refine Level +11: +ATK +2% +-------------------------- +Refine Level +13: +ATK +4% +-------------------------- +Base STR at least 125: +For each Refine Level: +ATK +1% +-------------------------- +When equipped with YSF01 Manteau: +For each Refine Level of YSF01 Manteau: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with YSF01 Greaves: +For each Refine Level of YSF01 Greaves: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +YSF0 set 1 +YSF01 Plate +YSF01 Manteau +YSF01 Greaves +Total Refine Level of entire set at least +39: +Random chance to transform user into YSF01 spirit for 5 seconds wearer when receiving physical damage. +During possession: Pierces physical defense of every race (except Player). +-------------------------- +Type: Armor +Defense: 78 +Weight: 210 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +15213# +The plate equipped on the experimental body of the Ymir project. +The individuals with ego obtained by Eisen were used as samples for various experiments. +-------------------------- +MDEF +20 +-------------------------- +MaxHP +15% +-------------------------- +Refine Level +7: +Decreases Hundred Spear skill cooldown by 1 second. +-------------------------- +Refine Level +9: +ATK +15%. +-------------------------- +When equipped with Y.S.F.0.1 Manteau and Y.S.F.0.1 Greaves: +Decreases After Skill Delay by 10%. +Increases damage of Spiral Pierce by 50%. +Increases damage of Spear Boomerang by 100%. +Increases damage of Hundred Spear by 50%. + +Refine Level of Y.S.F.0.1 Plate, Y.S.F.0.1 Manteau and Y.S.F.0.1 Greaves is +7 or higher: +Decreases After Skill Delay by additional 20%. +Increases damage of Spiral Pierce by additional 100%. +Increases damage of Spear Boomerang by additional 200%. +Increases damage of Hundred Spear by additional 100%. + +Refine Level of Y.S.F.0.1 Plate, Y.S.F.0.1 Manteau and Y.S.F.0.1 Greaves is +9 or higher: +Decreases After Skill Delay by additional 20%. +Increases damage of Spiral Pierce by additional 100%. +Increases damage of Spear Boomerang by additional 200%. +Increases damage of Hundred Spear by additional 100%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 180 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Rune Knight +# +15237# +Legendary armor said to have been brought to life by the hands of the gods. +The blessings of the gods will keep unclean people away. +-------------------------- +Physical attacks restore 5 SP when defeating Undead race. +-------------------------- +Decreases damage taken from Undead race by 5%. +-------------------------- +Decreases damage taken from Shadow elemental attacks by 15%. +-------------------------- +For each Refine Level: +Physical attacks restore additional 2 SP when defeating Undead race. +Decreases damage taken from Undead race by additional 1%. +Decreases damage taken from Shadow elemental attacks by additional 2%. +-------------------------- +Refine Level +8: +Indestructible in battle +Enables the use of Level 3 Auto Guard. +-------------------------- +Refine Level +10: +Prevents knock-back effect. +-------------------------- +Type: Armor +Defense: 100 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +15241# +A suit of the vigilante group that was working to protect the security of the town. +-------------------------- +Reflects 5% of the damage recieved from melee physical attacks. +-------------------------- +For each Refine Level: +MATK +10, MDEF +1 +-------------------------- +Refine Level +7: +MATK +20, MDEF +5 +-------------------------- +Refine Level +7: +MATK +30, MDEF +5 +-------------------------- +Type: Armor +Defense: 50 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +15242# +A robe containing the power of the four elemental spirits. +-------------------------- +Increases Magical Damage with Fire, Water, Wind, Earth and Neutral element by 5%. +-------------------------- +Decreases Variable Casting Time of Psychic Wave by 2 seconds. +-------------------------- +Refine Level +7: +Increases Magical Damage with Fire, Water, Wind, Earth and Neutral element by additional 5%. +Decreases Variable Casting Time of Psychic Wave by additional 2 seconds. +-------------------------- +Increases Magical Damage with Fire, Water, Wind, Earth and Neutral element by additional 5%. +Decreases Variable Casting Time of Psychic Wave by additional 2 seconds. +Increases damage of Psychic Wave by 10%. +-------------------------- +Type: Armor +Defense: 40 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +15243# +A suit used by a ninja hired by the mine owner as a watchman. +-------------------------- +STR +2 +-------------------------- +Decreases SP Consumption by 10%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by 5%. +Decreases SP Consumption by additional 5%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by additional 5%. +Decreases SP Consumption by additional 5%. +-------------------------- +Type: Armor +Defense: 50 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +15244# +Leather vest for workers working in the mine. +Leather is soft and comfortable to wear. +-------------------------- +Increases Physical Damage against enemies of Wind elemental by 5%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Wind elemental by additional 10%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Wind elemental by additional 15%. +-------------------------- +Type: Armor +Defense: 80 +Weight: 150 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +15245# +Clothes where you can feel the power of nature. +It looks old and shabby, but it seems necessary to feel the power of nature. +-------------------------- +Recovers 1500 HP and 15 SP every 5 seconds. +-------------------------- +Restores 50 HP and 5 SP when defeating monsters. +-------------------------- +Refine Level +7: +Restores additional 50 HP and 5 SP when defeating monsters. +-------------------------- +Refine Level +9: +Restores additional 100 HP and 10 SP when defeating monsters. +-------------------------- +Type: Armor +Defense: 50 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +15246# +Armor awarded to the hunters who excelled at the hunting competitions as a token of gratitude from the royal family. +-------------------------- +MaxHP +1000 +MaxSP +200 +Increases Damage against monsters of Animal and Insect race by 10%. +-------------------------- +For each 3 Refine Levels: +MaxHP and MaxSP +1% +-------------------------- +When equipped with True Hunting Manteau and True Hunting Boots: +Decreases After Skill Delay by 7%. +-------------------------- +Refine Level of True Hunting Mail, True Hunting Manteau and True Hunting Boots each is +9 or higher: +Decreases After Skill Delay by additional 8%. +-------------------------- +Type: Armor +Defense: 40 +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +15247# +Armor designed to demonstrate your skills in hunting competitions. +-------------------------- +MaxHP +2000 +MaxSP +300 +Increases Damage against monsters of Animal and Insect race by 10%. +-------------------------- +When equipped with Short-term Hunting Manteau and Short-term Hunting Boots: +Decreases After Skill Delay by 5%. +-------------------------- +Type: Armor +Defense: 40 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +15249# +A replica of Antonio's coat. Once worn, you feel like you could become the NEW Antonio. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +7: +MDEF +5 +Perfect Dodge +1 +Indestructible in battle +-------------------------- +Refine Level +8: +MDEF +10 +Perfect Dodge +1 +Decreases damage taken from Demi-Human race by 7%. +-------------------------- +Refine Level +9: +MDEF +15 +Perfect Dodge +1 +Decreases damage taken from Critical Slash by 100%. +-------------------------- +When equipped with Antonio Card: +DEF +250 +Decreases damage taken from all elemental attacks by 5%. +Enables the use of Level 1 Teleport. +Disables the effects of Antonio Card. +-------------------------- +Refine Level +7: +Prevents Frozen status. +Refine Level +9: +Prevents knock back effect. +-------------------------- +Type: Armor +Defense: 50 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +15250# +A suit given to beginner adventurers which are starting another adventure. +-------------------------- +All Stats +1 +MaxHP +400 +MaxSP +100 +ATK +2% +MATK +2% +-------------------------- +Type: Armor +Defense: 40 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +15273# +A pure white shirt. +How long do you wash it so white? +-------------------------- +MaxHP +100, MaxSP +100 +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Armor +Defense: 25 +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Summoner (Doram) +# +15274# +The shirt feels like your body and mind will be washed the moment you wear it. +-------------------------- +MaxHP +100, MaxSP +100 +-------------------------- +Decreases SP Consumption of Bite by 10. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Armor +Defense: 40 +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Summoner (Doram) +# +15275# +A suit that the Dorams prefers. +-------------------------- +MDEF +5 +-------------------------- +MaxHP +5%, MaxSP +5% +-------------------------- +For each Refine Level: +ATK +5, MATK +5 +-------------------------- +When equipped with Doram Cape and Doram Shoes: +Increases movement speed. +Recovers 500 HP and 5 SP every 5 seconds. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Armor +Defense: 80 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Summoner (Doram) +# +15276# +A high-class suit with a shape that Dorams prefer. +-------------------------- +MDEF +5 +-------------------------- +MaxHP +10%, MaxSP +10% +-------------------------- +For each Refine Level: +ATK +10, MATK +10 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +8: +Decreases After Skill Delay by 5%. +-------------------------- +Refine Level +9: +Perfect Dodge +5 +-------------------------- +When equipped with Luxury Doram Cape and Luxury Doram Shoes: +Increases movement speed. +Recovers 1000 HP and 10 SP every 5 seconds. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Armor +Defense: 100 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Summoner (Doram) +# +15277# +An elegant suit with a shape that Doram prefer. +-------------------------- +MDEF +5 +-------------------------- +MaxHP +15%, MaxSP +15% +-------------------------- +Decreases damage taken from Players by 7%. +-------------------------- +Decreases Variable Casting Time of Stoop by 50%. +-------------------------- +For each Refine Level: +ATK +15, MATK +15 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +8: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +9: +Perfect Dodge +5 +Decreases Variable Casting Time of Stoop by additional 50%. +-------------------------- +Indestructible in battle +-------------------------- +When equipped with Special Doram Cape and Special Doram Shoes: +Increases movement speed. +Recovers 1500 HP and 15 SP every 5 seconds. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Armor +Defense: 120 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +15278# +Red armor with strong power. +-------------------------- +ATK +50 +-------------------------- +For each 3 Refine Levels: +ATK +2% +-------------------------- +Refine Level +7: +Ignores physical defense of Brute and Demon race by 30%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Brute and Demon race by 10%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Wind and Earth elemental by 10%. +-------------------------- +When equipped with Temporal STR Boots [1] or Modified STR Boots [1]: +ATK +10% +Total Refine Level of entire set at least +21: +Ignores physical defense of Brute and Demon race by additional 20%. +-------------------------- +Type: Armor +Defense: 120 +Weight: 200 +Armor Level: 1 +-------------------------- +Requirement: None +# +15279# +Blue armor with strong magic. +-------------------------- +MATK +50 +-------------------------- +For each 3 Refine Levels: +MATK +2% +-------------------------- +Refine Level +7: +Ignores magical defense of Brute and Demon race by 30%. +-------------------------- +Refine Level +9: +Increases Magical Damage against monsters of Brute and Demon race by 10%. +-------------------------- +Refine Level +11: +Increases Magical Damage against Wind and Earth elemental by 10%. +-------------------------- +When equipped with Temporal INT Boots [1] or Modified INT Boots [1]: +MATK +10% +Total Refine Level of entire set at least +21: +Ignores magical defense of Brute and Demon race by additional 20%. +-------------------------- +Type: Armor +Defense: 60 +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: None +# +15280# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +ATK +15 +Critical +7 +-------------------------- +For each 2 Refine Levels: +Increases Critical Damage by 1%. +-------------------------- +Refine Level +7: +Critical +7 +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +15282# +It is said that this precious T-shirt was worn by a certain witch and the rabbit pattern was her taste. +-------------------------- +SPL +1 +S.MATK +1 +-------------------------- +For each Refine Level: +MATK +5 +-------------------------- +For each 2 Refine Levels: +S.MATK +1 +-------------------------- +Refine Level +7: +SPL +2, S.MATK +2. +-------------------------- +Refine Level +9: +MaxHP +5%, MaxSP +5%. +-------------------------- +Refine Level +11: +Increases Magical Damage of Ghost and Shadow element by 35%. +-------------------------- +[Bonus by Grade] +[Grade D] S.MATK +2 +[Grade C] SPL +3, S.MATK +1. +[Grade B] Magical Damage of every Element +15%. +-------------------------- +Type: Armor +Defense: 10 +Weight: 50 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 200 +Magician, Acolyte and Soul Linker classes +# +15283# +A suit of armor that enhances the user, allowing them to crush their enemies. It was buried with its previous owner. +-------------------------- +ATK +10 +-------------------------- +Ignores physical defense of all monsters by 10%. +-------------------------- +Refine Level +7: +ATK +20 +Ignores physical defense of all monsters by 20%. +-------------------------- +Refine Level +8: +ATK +20 +Ignores physical defense of all monsters by 20%. +Indestructible in battle +-------------------------- +Refine Level +9: +ATK +30 +Ignores physical defense of all monsters by 20%. +-------------------------- +Type: Armor +Defense: 60 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +15343# +This mechanical device uses the power of science to optimize your strength. You can combine it with other variants for a synergetic effect. +-------------------------- +ATK +5% +-------------------------- +For each 4 Refine Levels: +ATK +1%. +-------------------------- +Type: Armor +Defense: 80 +Weight: 200 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +Mechanic +# +15344# +An upgrade part of mado gear that boosts the defense power. It is easy to assemble and disassemble. +-------------------------- +Decreases Physical and Magical Damage taken from Small and Medium size by 10%. +-------------------------- +Refine Level +7: +Decreases Physical and Magical Damage taken from Large size by 10%. +-------------------------- +Refine Level +9: +Decreases Physical and Magical Damage taken from Medium size by 5%. +-------------------------- +When equipped with Upgrade Part - Engine, Upgrade Part - Booster and Upgrade Part - Gun Barrel: +Increases damage of Arms Cannon by 50%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 110 +Weight: 300 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +Mechanic +# +15346# +Violet armor with unexpected luck. +-------------------------- +ATK +50 +-------------------------- +For each 3 Refine Levels: +Increases Critical Damage by 2%. +-------------------------- +Refine Level +7: +Ignores physical defense of Brute and Demon race by 30%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Brute and Demon race by 10%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Wind and Earth elemental by 10%. +-------------------------- +When equipped with Temporal LUK Boots [1] or Modified LUK Boots [1]: +ATK +10% +Total Refine Level of entire set at least +21: +Ignores physical defense of Brute and Demon race by additional 20%. +-------------------------- +Type: Armor +Defense: 120 +Weight: 200 +Armor Level: 1 +-------------------------- +Requirement: None +# +15347# +A suit of armor embedded with hardened vitality. +-------------------------- +ATK +50 +-------------------------- +For each 3 Refine Levels: +MaxHP +2% +-------------------------- +Refine Level +7: +Ignores physical defense of Brute and Demon race monsters by 30%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Brute and Demon race by 10%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Wind and Earth elemental by 10%. +-------------------------- +When equipped with Temporal VIT Boots or Modified VIT Boots: +MaxHP +10% +Total Refine Level of entire set at least +21: +Ignores physical defense of Brute and Demon race monsters by 20%. +-------------------------- +Type: Armor +Defense: 120 +Weight: 200 +Armor Level: 1 +-------------------------- +Requirement: None +# +15348# +A suit of armor that was accidentally enchanted by Goibne the blacksmith when he spilled the mystic ale of life all over it. +-------------------------- +MaxHP +10% +-------------------------- +Refine Level +7: +DEF +50 +-------------------------- +Refine Level +9: +DEF +100 +-------------------------- +Type: Armor +Defense: 158 +Weight: 350 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +All Jobs except Novice +# +15349# +Brave warrior clothes. +It has the power to confront all dangers and difficulties. +-------------------------- +Increases resistance against Frozen status by 50%. +-------------------------- +For each Refine Level: +MaxHP +4% +-------------------------- +When equipped with Brave Muffler and Brave Shoes: +Increases Damage against Players by 50%. +Prevents Fear and White Imprison status. +But you still can cast White Imprison on yourself. +Cures Masquerade Ignorance status, when using Elvira Candy. +-------------------------- +When compounded with Tao Gunka Card: +MaxHP -100% +-------------------------- +Type: Armor +Defense: 60 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 165 +# +15352# +You can feel the great power of nature by wearing this. +-------------------------- +Prevents knock-back effect. +-------------------------- +Refine Level +5: +Increases Damage against monsters of Brute and Demi-Human race by 10%. +Increases Damage against monsters of Doram by 10%. +Increases Physical Damage against enemies of Wind and Earth element by 10%. +-------------------------- +Refine Level +7: +Increases Damage against monsters of Brute and Demi-Human race by 15%. +Increases Damage against monsters of Doram by 15%. +Increases Physical Damage against enemies of Wind and Earth element by 15%. +-------------------------- +Refine Level +9: +Increases Damage against monsters of Brute and Demi-Human race by 15%. +Increases Damage against monsters of Doram by 15%. +Increases Physical Damage against enemies of Wind and Earth element by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 120 +Element: Earth +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +15353# +A suit of armor embedded with the power of rapid. +-------------------------- +ATK +50 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +7: +Ignores physical defense of Brute and Demon race monsters by 30%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Brute and Demon race by 10%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Wind and Earth elemental by 10%. +-------------------------- +When equipped with Temporal AGI Boots or Modified AGI Boots: +ASPD +1 +Total Refine Level of entire set at least +21: +Ignores physical defense of Brute and Demon race monsters by 20%. +-------------------------- +Type: Armor +Defense: 120 +Weight: 200 +Armor Level: 1 +-------------------------- +Requirement: None +# +15354# +Suit of armor which have excellent dexterity. +-------------------------- +ATK +50 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +7: +Ignores physical defense of Brute and Demon race monsters by 30%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Brute and Demon race by 10%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Wind and Earth elemental by 10%. +-------------------------- +When equipped with Temporal DEX Boots or Modified DEX Boots: +Increases Ranged Physical Damage by 5%. +Total Refine Level of entire set at least +21: +Ignores physical defense of Brute and Demon race monsters by 20%. +-------------------------- +Type: Armor +Defense: 120 +Weight: 200 +Armor Level: 1 +-------------------------- +Requirement: None +# +15374# +Armor that is confined the power of the wolf caught the moon. It regained the original force through a repair. +-------------------------- +MaxHP +15% +MaxSP +15% +MDEF +10 +-------------------------- +For each Refine Level: +Decreases After Skill Delay by 1%. +-------------------------- +Refine Level +7: +Decreases Fixed Casting Time by 50%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 20%. +-------------------------- +When equipped with Hatii Card: +Prevents Frozen status. +Random chance to inflict Frozen status on attacker when receiving physical damage. +-------------------------- +For each Refine Level of Lunar Eclipse Clothes: +Increases Physical Damage against enemies of Water elemental by 5%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 120 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +15375# +Armor that is confined the power of the wolf caught the moon. The damage was severe and it will not be able to demonstrate the original power. +-------------------------- +MaxHP +5% +MaxSP +5% +-------------------------- +For each Refine Level: +Decreases After Skill Delay by 1%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 50%. +-------------------------- +Type: Armor +Defense: 0 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: None +# +15376# +A type A combat armor made from illusion technology. +There are various modules that can be installed to enhance it. +-------------------------- +ATK +100 +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +When equipped with Illusion Engine Wing Type A: +ATK +50 +-------------------------- +When equipped with Illusion Engine Wing Type B: +Decreases After Skill Delay by 10%. +-------------------------- +Type: Armor +Defense: 105 +Weight: 100 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 130 +# +15377# +A type B combat armor made from illusion technology. +There are various modules that can be installed to enhance it. +-------------------------- +MATK +100 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Illusion Engine Wing Type A: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +When equipped with Illusion Engine Wing Type B: +MATK +50 +-------------------------- +Type: Armor +Defense: 105 +Weight: 100 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 130 +# +15378# +Armor that combines the skins of creatures that live in the lava dungeon. +It seems to be still in heat. +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +DEF +100 +-------------------------- +Refine Level +9: +DEF +50 +-------------------------- +When equipped with Lava Leather Manteau and Lava Leather Boots: +ATK +2% +-------------------------- +Refine Level of Lava Leather Armor, Lava Leather Manteau and Lava Leather Boots is +7 or higher: +ATK +3% +-------------------------- +Refine Level of Lava Leather Armor, Lava Leather Manteau and Lava Leather Boots is total +27 or higher: +Decreases After Skill Delay by 20% +-------------------------- +Type: Armor +Defense: 85 +Weight: 150 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 175 +# +15379# +Suit that combines the skins of creatures that live in the lava dungeon. +It seems to be still in heat. +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +ATK +50 +-------------------------- +Refine Level +9: +Increases Critical Damage by 10%. +-------------------------- +When equipped with Lava Leather Muffler and Lava Leather Shoes: +ATK +2% +-------------------------- +Refine Level of Lava Leather Suit, Lava Leather Muffler and Lava Leather Shoes is +7 or higher: +ATK +3% +-------------------------- +Refine Level of Lava Leather Suit, Lava Leather Muffler and Lava Leather Shoes is total +27 or higher: +Increases Critical Damage by 20%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 175 +# +15380# +Robe that combines the skins of the creatures that live in the lava dungeon. +It seems to be still in heat. +-------------------------- +MATK +100 +-------------------------- +Refine Level +7: +MATK +50 +-------------------------- +Refine Level +9: +Additional MATK +25 +-------------------------- +When equipped with Lava Leather Hood and Lava Leather Sandals: +MATK +2% +-------------------------- +Refine Level of Lava Leather Robe, Lava Leather Hood and Lava Leather Sandals is +7 or higher: +MATK +3% +-------------------------- +Refine Level of Lava Leather Robe, Lava Leather Hood and Lava Leather Sandals is total +27 or higher: +Increases Fire elemental magical damage by 15%. +-------------------------- +Type: Armor +Defense: 55 +Weight: 75 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 175 +# +15381# +A suit that looks like a starfish at first glance. +The original creature is said to have come from space. +-------------------------- +Increases Damage against monsters of Formless race by 5%. +-------------------------- +Decreases damage taken from Formless race by 5%. +-------------------------- +For each Refine Level: +All Stats +1 +Increases Damage against monsters of Formless race by additional 1%. +Decreases damage taken from Formless race by additional 1%. +-------------------------- +Refine Level +8: +Enables the use of Level 3 Hiding. +Decreases damage taken from Water elemental attacks by 15%. +-------------------------- +Refine Level +10: +Physical and magical attacks have a certain chance to inflict Silence status on the enemy. +-------------------------- +The following effects are effective only when used in the city map: +-------------------------- +Transform into one of these monsters: Mobster, Aster or Red Eruma. +-------------------------- +Type: Armor +Defense: 30 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +15383# +\ +, a robe made only for you. +-------------------------- +MaxHP +500 +MaxSP +100 +ATK +50 +MATK +50 +-------------------------- +Decreases After Skill Delay by 10%. +-------------------------- +When equipped with Temporal Transcendent Manteau: +Decreases After Skill Delay by 10%. +-------------------------- +Type: Armor +Defense: 62 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +15384# +An angel's raiment where the power of holy prayers once dwelt. It is worn during ritual ceremonies, etc. +-------------------------- +MaxHP +5% +-------------------------- +Decreases After Skill Delay by 10%. +-------------------------- +Increases Healing skills effectiveness by 5%. +-------------------------- +Refine Level +7: +MaxHP +5% +Increases Healing skills effectiveness by 5%. +-------------------------- +Refine Level +8: +MaxHP +5% +Increases Healing skills effectiveness by 10%. +Decreases SP Consumption by 10%. +Prevents Sleep status. +-------------------------- +Refine Level +9: +MaxHP +5% +Increases Healing skills effectiveness by 10%. +-------------------------- +When equipped with Bathory Card: +Prevents Freeze status. +-------------------------- +Type: Armor +Defense: 0 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +15386# +Armor that was only allowed to be worn by the guards who once protected the old king. +It is said that if a person who is proud of marvelous security and has a firm determination wears it, he can overcome any adversity. +-------------------------- +MDEF +10 +-------------------------- +Decreases damage taken from Undead and Demon race by 15%. +-------------------------- +Refine Level +6: +MaxHP +5% +Increases Healing skills effectiveness by 10%. +Increases HP Recovery Rate of Recovery Items by 10%. +-------------------------- +Refine Level +8: +MaxHP +5% +Increases Healing skills effectiveness by additional 10%. +Increases HP Recovery Rate of Recovery Items by additional 10%. +-------------------------- +When equipped with Save the King: +For each Refine Level of King's Mail: +Increases damage of Grand Cross, Bash and Holy Cross by 20%. +-------------------------- +When equipped with SKing's Guard: +For each Refine Level of King's Mail: +Decreases damage taken from Shadow elemental attacks by 5%. +-------------------------- +Type: Armor +Defense: 180 +Element: Holy +Weight: 150 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +Royal Guard +# +15387# +A dress worn by Gilant, who was called a rare witch. +The emblem embroidered with gold thread weaves multiple magic squares and brings out the hidden power of the operator. +-------------------------- +MDEF +10 +-------------------------- +Ignore magic defense of Boss class by 50%. +-------------------------- +For each Refine Level: +MATK +15 +Increases Magical Damage with Wind element by 2%. +-------------------------- +When equipped with Necromancer's Manteau: +For each Refine Level of Necromancer's Manteau: +MATK +2% +Decreases Variable Casting Time by 2%. +-------------------------- +When equipped with Witch's Thunder Flame Wand: +Enables the use of Level 1 Increase Agility. + +For each Refine Level of Witch's Thunder Flame Wand: +Increases damage of Electric Walk and Fire Walk by 30%. +Restores 50 HP when defeating monsters with magical attacks. + +Refine Level of Witch's Thunder Flame Wand is +7 or higher: +Enables the use of Increase Agility, skill level is based on the Refine Level of Witch's Thunder Flame Wand. +-------------------------- +When compounded with Professor Card: +Prevents Frozen status. +Decreases Variable Casting Time by 100%. +Random chance to prevent the auto-cast of Land Protector around the user when recieving magical damage. +-------------------------- +When equipped with Necromancer's Hand Mirror: +Increases Magical Damage against monsters of Boss class by 5%. +Ignores magic defense of Boss class by 25%. + +Refine Level of Necromancer's Hand Mirror is +8 or higher: +Increases Magical Damage against monsters of Boss class by additional 5%. +Ignores magic defense of Boss class by additional 25%. +-------------------------- +Type: Armor +Defense: 35 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +15388# +A suit once used by King Schmidt. +-------------------------- +Increases Damage against monsters of Medium and Large size by 10%. +-------------------------- +Refine Level +7: +Increases Damage against monsters of Fire and Shadow elemental by 10%. +-------------------------- +Refine Level +9: +Decreases damage taken from Dragon and Formless race by 15%. +-------------------------- +Refine Level +11: +Decreases damage taken from Medium and Large size by 10%. +-------------------------- +When equipped with King Schmidt's Manteau: +MaxHP +5% +MaxSP +5% + +Total Refine Level of entire set at least +22: +Decreases After Skill Delay by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 150 +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +15389# +A mantle once used by King Schmidt. +-------------------------- +For each 3 Refine Levels: +Increases Damage against monsters of Fire and Shadow elemental by 2%. +-------------------------- +Refine Level +7: +Decreases damage taken from Dragon and Formless race by 5%. +-------------------------- +Refine Level +11: +Increases Damage against monsters of Dragon and Formless race by 15%. +-------------------------- +Type: Garment +Defense: 70 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +15390# +Armor made by the Royal Family as a token of appreciation for hunters who excelled in hunting competitions. +-------------------------- +MaxHP +500 +MaxSP +100 +Increases Damage against monsters of Animal and Insect race by 7%. +-------------------------- +For each 3 Refine Levels: +MaxHP +50, MaxSP +20 +-------------------------- +When equipped with Regia Hunting Manteau and Regia Hunting Boots: +Decreases Fixed Casting Time by 7%. +-------------------------- +Refine Level of Regia Hunting Mail, Regia Hunting Manteau and Regia Hunting Boots each is +9 or higher: +Decreases Fixed Casting Time by additional 5%. +-------------------------- +Type: Armor +Defense: 25 +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +15391# +You can feel the power of the dragon just by +wearing this armor that has been accumulated for a long time. +-------------------------- +STR +12 +MaxHP +15% +MaxSP +10%. +-------------------------- +For each 2 Refine Levels: +ATK +2% +-------------------------- +For each 3 Refine Levels: +Increases Physical Damage against enemies of Dragon race by 7%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Medium and Large size by 10%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Dragon Scale Boots and Dragon Scale Hood: +DEF +50, MDEF +8 +ATK +5% +-------------------------- +For each 15 base STR: +ATK +15 +-------------------------- +Recieving physical or magical damage has a chance to activate Dragon's Force: +Increases ATK by additional 10% for 10 seconds. +-------------------------- +If base STR at least 120: +Increases the chance to activate Dragon's Force and additional ATK +15% to the Dragon's Force effect. +-------------------------- +Total Refine Level of entire set at least +33: +Increases Attack Speed (Decreases After Attack Delay by 20%). +Decreases After Skill Delay by 25%. +-------------------------- +Type: Armor +Defense: 110 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +15392# +You can feel the speed of the dragon just by +wearing this armor that has been accumulated for a long time. +-------------------------- +AGI +12 +MaxHP +10% +MaxSP +10%. +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 2%. +-------------------------- +For each 3 Refine Levels: +Increases Physical Damage against enemies of Dragon race by 7%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Medium and Large size by 10%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Dragon Scale Boots and Dragon Scale Hood: +DEF +50, MDEF +8 +Increases Ranged Physical Damage by 7%. +-------------------------- +For each 15 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 4%). +-------------------------- +Recieving physical or magical damage has a chance to activate Dragon's Shot: +Increases Ranged Physical Damage by additional 10% for 10 seconds. +-------------------------- +If base AGI at least 120: +Increases the chance to activate Dragon's Shot and long Ranged Physical Damage by additional 10% to the Dragon's Shot effect. +-------------------------- +Total Refine Level of entire set at least +33: +Increases Attack Speed (Decreases After Attack Delay by 20%). +Decreases After Skill Delay by 25%. +-------------------------- +Type: Armor +Defense: 110 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +15393# +You can feel the life force of the dragon just by +wearing this armor that has been accumulated for a long time. +-------------------------- +VIT +12 +MaxHP +20% +MaxSP +5%. +-------------------------- +For each 2 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 3%). +Decreases Variable Casting Time by 3%. +-------------------------- +For each 3 Refine Levels: +Increases Damage against monsters of Dragon race by 7%. +-------------------------- +Refine Level +11: +Increases Damage against monsters of Medium and Large size by 6%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Dragon Scale Boots and Dragon Scale Hood: +DEF +80, MDEF +15 +MaxHP +10% +-------------------------- +For each 30 base VIT: +Decreases damage taken from Medium and Large size by 1%. +-------------------------- +Recieving physical or magical damage has a chance to activate Dragon's Health: +Decreases damage taken from all size monsters by 7% for 10 seconds. +-------------------------- +If base VIT at least 120: +Increases the chance to activate Dragon's Health and decreases damage taken from all size monsters by additional 5% to the Dragon's Health effect. +-------------------------- +Total Refine Level of entire set at least +33: +Increases Attack Speed (Decreases After Attack Delay by 20%). +Decreases After Skill Delay by 25%. +-------------------------- +Type: Armor +Defense: 110 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +15394# +You can feel the talent of the dragon just by +wearing this armor that has been accumulated for a long time. +-------------------------- +DEX +12 +MaxHP +15% +MaxSP +10%. +-------------------------- +For each 2 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 4%). +Decreases Variable Casting Time by 4%. +-------------------------- +For each 3 Refine Levels: +Increases Damage against monsters of Dragon race by 8%. +-------------------------- +Refine Level +11: +Increases Damage against monsters of Medium and Large size by 8%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Dragon Scale Boots and Dragon Scale Hood: +DEF +50, MDEF +8 +ATK +5%, MATK +5% +-------------------------- +For each 15 base DEX: +Increases Attack Speed (Decreases After Attack Delay by 3%). +Decreases Variable Casting Time by 3%. +-------------------------- +Recieving physical or magical damage has a chance to activate Dragon's Speed: +FLEE +50, Perfect Dodge +10 for 10 seconds. +-------------------------- +If base DEX at least 120: +Increases the chance to activate Dragon's Speed and additional FLEE +30 and Perfect Dodge +5 to the Dragon's Speed effect. +-------------------------- +Total Refine Level of entire set at least +33: +Increases Attack Speed (Decreases After Attack Delay by 15%). +Decreases Variable Casting Time by 15%. +Decreases After Skill Delay by 25%. +-------------------------- +Type: Armor +Defense: 110 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +15395# +You can feel the wisdom of the dragon just by +wearing this armor that has been accumulated for a long time. +-------------------------- +INT +12 +MaxHP +5% +MaxSP +20%. +-------------------------- +For each 2 Refine Levels: +MATK +2% +Increases Healing effectiveness by 4%. +-------------------------- +For each 3 Refine Levels: +Increases Magical Damage against monsters of Dragon race by 7%. +-------------------------- +Refine Level +11: +Increases Magical Damage against monsters of Medium and Large size by 10%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Dragon Scale Boots and Dragon Scale Hood: +DEF +50, MDEF +8 +MATK +7% +Increases Healing effectiveness by additional 15%. +-------------------------- +For each 15 base INT: +Decreases Variable Casting Time by 4%. +-------------------------- +Recieving physical or magical damage has a chance to activate Dragon's Wisdom: +Increases all elemental magical damage by 20% and Healing effectiveness by 40% for 10 seconds. +-------------------------- +If base INT at least 120: +Increases the chance to activate Dragon's Wisdom and Increases all elemental magical damage by additional 10% to the Dragon's Wisdom effect. +-------------------------- +Total Refine Level of entire set at least +33: +Decreases Variable Casting Time by 20%. +Decreases After Skill Delay by 25%. +-------------------------- +Type: Armor +Defense: 110 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +15396# +You can feel the wisdom of the dragon just by +wearing this armor that has been accumulated for a long time. +-------------------------- +LUK +12 +MaxHP +15% +MaxSP +15%. +-------------------------- +For each 2 Refine Levels: +Critical +2 +Increases Critical Damage by 4%. +-------------------------- +For each 3 Refine Levels: +Increases Physical Damage against enemies of Dragon race by 7%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Medium and Large size by 10%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Dragon Scale Boots and Dragon Scale Hood: +DEF +50, MDEF +8 +ATK +5% +-------------------------- +For each 15 base LUK: +Critical +2 +Increases Critical Damage by additional 3%. +-------------------------- +Recieving physical or magical damage has a chance to activate Dragon's Fortune: +Increases ATK by additional 7% and critical damage by additional 10% for 10 seconds. +-------------------------- +If base LUK at least 120: +Increases the chance to activate Dragon's Fortune and ATK by additional 10% and critical damage by additional 10% to the Dragon's Fortune effect. +-------------------------- +Total Refine Level of entire set at least +33: +Increases Attack Speed (Decreases After Attack Delay by 20%). +Decreases After Skill Delay by 25%. +-------------------------- +Type: Armor +Defense: 110 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +15397# +There is a blessing to increase the robes worn by +priests who worshiped power in Odin's power. +-------------------------- +MaxHP +10% +MaxSP +10% +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +For each 2 Refine Levels: +ATK +3% +-------------------------- +For each 3 Refine Levels: +STR +5 +-------------------------- +For each 4 Refine Levels: +Increases Physical Damage against enemies of Angel and Demon race by 8%. +-------------------------- +When equipped with Clergy's Boots and Clergy's Manteau: +STR +8, DEF +30, MDEF +15 +Decreases damage taken from Angel and Demon race momnsters by 15%. +-------------------------- +Total Refine Level of entire set at least +27: +ATK +10% +Decreases After Skill Delay by 20%. +Decreases Fixed Casting Time by 20%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +15398# +The blessing of increasing the agility of the robes worn by +priests who worshiped agility in Odin's power. +-------------------------- +MaxHP +10% +MaxSP +10% +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 3% +-------------------------- +For each 3 Refine Levels: +AGI +5 +-------------------------- +For each 4 Refine Levels: +Increases Physical Damage against enemies of Angel and Demon race by 8%. +-------------------------- +When equipped with Clergy's Boots and Clergy's Manteau: +AGI +8, DEF +30, MDEF +15 +Decreases damage taken from Angel and Demon race momnsters by 15%. +-------------------------- +Total Refine Level of entire set at least +27: +Increases Ranged Physical Damage by 10% +Decreases After Skill Delay by 20%. +Decreases Fixed Casting Time by 20%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +15399# +The blessing of increasing the vitality of the robes worn by +priests who worshiped agility in Odin's power. +-------------------------- +MaxHP +15% +MaxSP +5% +Increases Attack Speed (Decreases After Attack Delay by 7%). +Decreases Variable Casting Time by 7%. +-------------------------- +For each 2 Refine Levels: +MaxHP +2% +-------------------------- +For each 3 Refine Levels: +VIT +5 +-------------------------- +For each 4 Refine Levels: +Increases Physical Damage against enemies of Angel and Demon race by 10%. +-------------------------- +When equipped with Clergy's Boots and Clergy's Manteau: +VIT +8, DEF +50, MDEF +20 +Decreases damage taken from Angel and Demon race momnsters by 20%. +-------------------------- +Total Refine Level of entire set at least +27: +ATK +4% +MATK +4% +Decreases After Skill Delay by 20%. +Decreases Fixed Casting Time by 20%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +15400# +The blessing of increasing the dexterity of the robes worn by +priests who worshiped agility in Odin's power. +-------------------------- +MaxHP +10% +MaxSP +10% +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases Variable Casting Time by 10%. +-------------------------- +For each 2 Refine Levels: +ATK +1% +MATK +1% +-------------------------- +For each 3 Refine Levels: +DEX +5 +-------------------------- +For each 4 Refine Levels: +Increases Physical Damage against enemies of Angel and Demon race by 6%. +-------------------------- +When equipped with Clergy's Boots and Clergy's Manteau: +DEX +8, DEF +30, MDEF +15 +Decreases damage taken from Angel and Demon race momnsters by 15%. +-------------------------- +Total Refine Level of entire set at least +27: +ATK +7% +MATK +7% +Decreases After Skill Delay by 20%. +Decreases Fixed Casting Time by 20%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +15401# +The blessing of increasing the intelligence of the robes worn by +priests who worshiped agility in Odin's power. +-------------------------- +MaxHP +5% +MaxSP +15% +Decreases Variable Casting Time by 10%. +-------------------------- +For each 2 Refine Levels: +MATK +3% +-------------------------- +For each 3 Refine Levels: +INT +5 +-------------------------- +For each 4 Refine Levels: +Increases Physical Damage against enemies of Angel and Demon race by 6%. +-------------------------- +When equipped with Clergy's Boots and Clergy's Manteau: +INT +8, DEF +30, MDEF +15 +Decreases damage taken from Angel and Demon race momnsters by 15%. +-------------------------- +Total Refine Level of entire set at least +27: +MATK +10% +Decreases After Skill Delay by 20%. +Decreases Fixed Casting Time by 20%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +15402# +The blessing of increasing the luck of the robes worn by +priests who worshiped agility in Odin's power. +-------------------------- +MaxHP +10% +MaxSP +10% +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +For each 2 Refine Levels: +Critical +3 +Increases Critical Damage by 4%. +-------------------------- +For each 3 Refine Levels: +LUK +5 +-------------------------- +For each 4 Refine Levels: +Increases Physical Damage against enemies of Angel and Demon race by 8%. +-------------------------- +When equipped with Clergy's Boots and Clergy's Manteau: +LUK +8, DEF +30, MDEF +15 +Decreases damage taken from Angel and Demon race momnsters by 15%. +-------------------------- +Total Refine Level of entire set at least +27: +ATK +10% +Decreases After Skill Delay by 20%. +Decreases Fixed Casting Time by 20%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +15405# +Armor made of Fafnir scales defeated by the hero Sigurds. +As the name implies, I feel the strength of being embraced. +-------------------------- +MaxHP +10% +MaxSP +10% +MDEF +15 +-------------------------- +This item is indestructible in battle. +-------------------------- +Increases Dragon's Breath and Dragon's Water Breath by 50%. +-------------------------- +For each Level of Dragon's Breath: +Increases long-ranged damage on the targets by 2%. +-------------------------- +For each Level of Dragon's Breath - Water : +Decreases the After Cast Delay by 2%. +-------------------------- +Refine Level +5: +Additional MaxHP +20% +Additional MaxSP +20% +Decreases the After Cast Delay by additional 5%. +-------------------------- +Refine Level +7: +Additional MaxHP +20%. +Additional MaxSP +20%. +Decreases the After Cast Delay by additional 5%. +-------------------------- +Type: Armor +Defense: 120 +Weight: 150 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 110 +# +15410# +Suits for top adventurers on a new adventure. +-------------------------- +MaxHP +300, +MaxSP +100 +-------------------------- +When equipped with High Adventurer Hood, High Adventurer Sandals and High Adventurer Clip: +ATK +10, MATK +10, +MaxHP +150, MaxSP +50, +HIT +10 +-------------------------- +Type: Armor +Defense: 35 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +None +# +15420# +A blue dress made from icy rivers. It is said it contains powers to create ice that cannot be melted for eternity. +-------------------------- +Prevents the user from being knocked back. +-------------------------- +Refine Level +5: +Increases Damage against monsters of Formless and Demi-Human race targets by 10%. +Increases Damage against monsters of Doram Player and Human Player race targets by 10%. +Increases Damage against monsters of Fire and Water elemental targets by 10%. +-------------------------- +Refine Level +7: +Increases Damage against monsters of Formless and Demi-Human race targets by an additional 15%. +Increases Damage against monsters of Doram Player and Human Player race targets by an additional 15%. +Increases Damage against monsters of Fire and Water elemental targets by an additional 15%. +-------------------------- +Refine Level +9: +Increases Damage against monsters of Formless and Demi-Human race targets by an additional 15%. +Increases Damage against monsters of Doram Player and Human Player race targets by an additional 15%. +Increases Damage against monsters of Fire and Water elemental targets by an additional 15%. +-------------------------- +This item is indestructible in battle. +-------------------------- +Disabled during WoE TE +-------------------------- +Type: Armor +Defense: 120 +Element: Water +Weight: 40 +-------------------------- +Requirement: +Base Level 90 +# +15840# +Windproof accessories for airplanes +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirements: None +# +15843# +A dinner prepared for those who made achievements in hunting competitions. +The hot heat seems to remain the same. +-------------------------- +ATK +10%, MATK +10% +Increases recovery amount gained from Meat by 1000%. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +15851# +A sparkling, glittering ceremonial crown +from a popular brand in the Rune-Midgarts Kingdom, +beloved by the Doram race. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +15858# +A hat prepared by chocolate for adventurers. +The scent of chocolate and banana is in harmony. +-------------------------- +Increases experience gained from defeating monsters by 10%. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +15877# +A fancy hairpin which you can feel spring flowers. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +15881# +Al Crispinette decorated with flowers and ribbons. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +15882# +Round designed Costume Headphones. +The heart-shaped decoration is cute and you can wear it with a fashionable feeling. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 27. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +15889# +A costume hat said to have been made to pay tribute to the guardian deity who was sleeping in the waterfall to protect Brasilis. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 23. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +16000# +This mace's shape is inspired by a Snake, which symbolizes the fountain of knowledge. +-------------------------- +MaxSP +50 +-------------------------- +Increases damage of Acid Terror and Demonstration by 20%. +-------------------------- +Increases Healing skills effectiveness by 10%. +-------------------------- +Type: Mace +Attack: 130 +Weight: 50 +Weapon Level: 3 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 50 +Transcendent Swordman, Merchant and Acolyte +# +16001# +The official bag of the Alchemist Society. Its unique design and bright red color is pupular among women. +-------------------------- +MaxHP +200 +-------------------------- +Increases damage of Acid Terror and Demonstration by 20%. +-------------------------- +Random chance a defeated monster will drop Potions. +-------------------------- +Base STR at least 90: +Random chance to inflict Stun status on the target when dealing melee physical attacks. +-------------------------- +Type: Mace +Attack: 130 +Weight: 50 +Weapon Level: 3 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 50 +Transcendent Swordman, Merchant and Acolyte +# +16002# +Rental Item +A huge, unwieldy club that can knock enemies unconscious. +-------------------------- +10% chance to inflict Stun status on the target when dealing physical damage. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Mace +Attack: 175 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Acolyte +# +16003# +A heavy mace with a blade meaning \ + in Sapha language. +-------------------------- +Type: Mace +Attack: 175 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Mechanic, Genetic, Archbishop and Sura +# +16004# +A novice's mace made exclusively by the Eden Group. +-------------------------- +Type: Mace +Attack: 142 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 26 +Swordsman, Acolyte and Merchant +# +16005# +A mace made by the Eden Group. +-------------------------- +Type: Mace +Attack: 163 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Swordsman, Acolyte and Merchant +# +16006# +Mace that world tour travelers want to have. +-------------------------- +INT +1 +AGI +1 +-------------------------- +Type: Mace +Attack: 45 +Weight: 50 +Weapon Level: 1 +-------------------------- +Requirement: +Novice, Swordsman, Merchant and Acolyte +# +16007# +A facsimile of the +mighty hammer wielded +by Thor, god of thunder. Increases ASPD. +DEX +50, STR +20 +-------------------------- +This is a 30 Day version and is tradable, it will disappear when it expires. +-------------------------- +Type: Mace +Element: Wind +Attack: 350 +Weight: 600 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 95 +Swordsman and Merchant +# +16008# +Rental Item +A heavy tool with many practical applications. +-------------------------- +Random chance to inflict Stun, Blind, Poison or Frozen statuses with each attack. +-------------------------- +Type: Mace +Attack: 150 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Acolyte +# +16010# +A new bag from the Alchemist Society: \ +-------------------------- +MATK +100 +-------------------------- +Increases damage of Crazy Weed and Demonic Fire by 20%. +-------------------------- +For each Refine Level equal or above +6: +Increases damage of Crazy Weed and Demonic Fire by 2%. +-------------------------- +Type: Mace +Attack: 15 +Weight: 100 +Weapon Level: 3 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 102 +Genetic +# +16013# +A mace that strikes like the Judges gavel in deciding the fate of evil. +-------------------------- +STR +1 +INT +1 +MATK +180 +-------------------------- +Random chance to increase physical damage against Demon race monsters by 20% for 7 seconds when dealing physical damage. +-------------------------- +Random chance to increase magical damage against Demon race monsters by 20% for 7 seconds when dealing magical damage. +-------------------------- +When equipped with Shoes of Judgement, Shawl of Judgement and Robe of Judgement: +Increases Damage against monsters of Undead race by 15%. +Increases damage of Adoramus by 200%. +Increases SP Consumption of Adoramus by 30. +-------------------------- +Type: Mace +Attack: 140 +Weight: 120 +Element: Holy +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +16014# +A mace made by the Eden Group. It's suitable for an experienced mace wielder. +-------------------------- +Type: Mace +Attack: 172 +Weight: 0 +Weapon Level: 3 +Refineable: No +Can be enchanted by: +Weapons Expert BKmoc_para01,112,79,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Swordsman, Acolyte and Merchant +# +16015# +A cat hand shaped club which doesn't seems capable to inflict any pain. +-------------------------- +Increases Physical Damage against enemies of Brute race by 15%. +-------------------------- +When melee Attacking, gives seduce status to enemies with low chance. +-------------------------- +Type: Mace +Attack: 88 +Weight: 70 +Weapon Level: 1 +-------------------------- +Requirement: +Novice, Swordsman, Acolyte and Merchant +# +16016# +Rental Item +A high quality fish that is being used as a club since it is frozen solid. +-------------------------- +When melee Attacking, it casts stun or auto-casts bash Level 5 (If higher Level of Bash is learned uses that Level instead.) +-------------------------- +Random chance to inflict Freezing status on wielder when dealing physical damage. +-------------------------- +Base Level at least 100: +ATK +20 +-------------------------- +Type: Mace +Attack: 180 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Swordsman, Acolyte and Merchant +# +16017# +A bloodly red cross mace with dark power. The red color looks creepy as if has absorbed blood. +-------------------------- +When dealing melee physical attacks, Random chance to auto-cast Level 1 Hell Inferno. +Increases the casting rate of the skill by the Refine Level. +-------------------------- +Type: Mace +Attack: 170 +Weight: 150 +Element: Shadow +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Transcendent Acolyte +# +16018# +A mace that strikes like the Judges gavel in deciding the fate of evil. +-------------------------- +STR +2 +INT +2 +MATK +180 +-------------------------- +Random chance to increase physical damage against Demon race monsters by 40% for 7 seconds when dealing physical damage. +-------------------------- +Random chance to increase magical damage against Demon race monsters by 40% for 7 seconds when dealing magical damage. +-------------------------- +When equipped with Shoes of Judgement, Shawl of Judgement and Robe of Judgement: +Increases Damage against monsters of Undead race by 30%. +Increases damage of Adoramus by 200%. +Increases SP Consumption of Adoramus by 30. +-------------------------- +Type: Mace +Attack: 170 +Weight: 120 +Element: Holy +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 130 +Archbishop +# +16019# +Mace that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +10 +Increases Healing rate by 1%. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Mace +Attack: 80 +Weight: 80 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Novice, Swordsman, Acolyte and Merchant +# +16020# +*Effects in WoE & PVP area +Decreases the target's DEF and MDEF to 1 for 5 seconds on each physical attack. (This effect does not work with skills) +-------------------------- +For each Refine Level: +Increases the chance to inflict Stun status and ASPD. +-------------------------- +Type: Mace +Attack: 170 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 95 +Novice, Swordsman, Acolyte and Merchant +# +16021# +Indestructible in battle +-------------------------- +*Effects in WoE & PVP area +Physical attacks have a chance to prevent all Healing effects from affecting the target for a duration. (This effect does not work with skills) +-------------------------- +For each Refine Level: +Increases HIT and Critical. +-------------------------- +Type: Mace +Attack: 170 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 95 +Novice, Swordsman, Acolyte and Merchant +# +16022# +A large silver mace, made for exorcisms. +-------------------------- +Increases Physical Damage against monsters of Demon and Shadow elemental by 10%. +-------------------------- +Random chance to auto-cast Level 1 Signum Crusis when receiving physical damage. +The Level of Signum Crusis increases by Refine Level. +(Activate Level 10 if Refine is met Level 11 or higher) +-------------------------- +Adds a chance of adding ATK by 50 for 20 seconds when receiving physical damage. +-------------------------- +Type: Mace +Attack: 120 +Weight: 90 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 60 +Acolyte +# +16023# +Mace coated with metal. +-------------------------- +Type: Mace +Attack: 130 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Novice, Swordsman, Acolyte and Merchant +# +16024# +A heavy and powerful iron mace with a rounded top. +-------------------------- +Increases Physical Damage against enemies of Earth elemental by 10%. +-------------------------- +Increases Physical Damage against enemies of Undead and Demi-Human race by 10%. +-------------------------- +Type: Mace +Attack: 165 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Acolyte +# +16025# +Rental Item +Indestructible in battle +-------------------------- +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Random chance to inflict Freeze status when dealing physical damage. +Increases Healing skills effectiveness by 5%. +-------------------------- +Type: Mace +Attack: 120 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Novice, Swordsman, Acolyte and Merchant +# +16026# +A mace made of pure gold created for the 2012 RWC (Ragnarok World Championship) +-------------------------- +For each 3 Refine Levels: +ATK +30 +-------------------------- +Refine Level +6: +ATK +5% +-------------------------- +Refine Level +9: +ATK +5% +Random chance to auto-cast Level 1 Weapon Perfection when dealing physical damage. +-------------------------- +When equipped with RWC Memorial Ring: +For each Refine Level of RWC Memory Mace: +ATK +5 +These set bonuses do not work with the card-slotted RWC accessories +-------------------------- +Type: Mace +Attack: 100 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Swordsman, Acolyte and Merchant +# +16027# +This hammer was once used for vanquishing an evil slayer and his followers. +-------------------------- +Increases Physical Damage against enemies of Demon and Undead race by 10%. +-------------------------- +Refine Level +9: +ATK +5% +-------------------------- +Refine Level +12: +ATK +7% +-------------------------- +Type: Mace +Attack: 125 +Weight: 135 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Novice, Swordsman, Acolyte and Merchant +# +16028# +A hammer sculpted from Gray Shard to counter Magic Sword Tartanos. +It offers incredible power and magic at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +120 +-------------------------- +Creates a low chance of regaining HP and SP from 5% of your damage inflicted when dealing physical damage. +-------------------------- +Drains 100 HP every 10 seconds. +Drains 1,000 HP when unequipped. +-------------------------- +Type: Mace +Attack: 180 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Rune Knight, Royal Guard, Mechanic, Genetic, Archbishop and Sura +# +16029# +A sacred crucifix that has been blassed by god himself. +-------------------------- +MATK +150 +-------------------------- +Random chance to auto-cast Level 6 Turn Undead when dealing physical damage. +-------------------------- +Recovers 1 SP each time you hit an Undead race. +Recovers 12 SP each time you kill an Undead monster with a physical attack. +-------------------------- +Type: Mace +Attack: 195 +Weight: 150 +Element: Holy +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 40 +Transcendent Acolyte +# +16030# +This upgraded version of Pilebunker is lighter in weight, allowing the user to move more quickly. +-------------------------- +For each 2 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Type: Mace +Attack: 400 +Weight: 350 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Mechanic +# +16031# +This upgraded version of Pilebunker provides more destructive power. +-------------------------- +For each Refine Level: +ATK +5 +-------------------------- +Type: Mace +Attack: 450 +Weight: 400 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Mechanic +# +16032# +This upgraded version of Pilebunker facilitates the application of Special abilities. +-------------------------- +For each Refine Level: +Decreases SP Consumption by 1%. +-------------------------- +Type: Mace +Attack: 400 +Weight: 350 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Mechanic +# +16033# +Kick and Kick's severed arm that works as effectively as any standard-issue weapon. +-------------------------- +Critical +20 +-------------------------- +Indestructible in battle +-------------------------- +Type: Mace +Attack: 195 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Rune Knight, Royal Guard, Mechanic, Genetic, Archbishop and Sura +# +16036# +Blue Mace which has destructive power. +-------------------------- +VIT +5 +INT +5 +-------------------------- +When VIP status active: +ATK +20% +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Mace +Attack: 190 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Sura +# +16037# +A golden mace with brutal power. +-------------------------- +VIT +8 +INT +8 +-------------------------- +Type: Mace +Attack: 170 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 120 +Sura +# +16038# +This weapon contains a strange energy. +I feel that one of its benefits were sealed with a high cost. +-------------------------- +Type: Mace +Attack: 155 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rune Knight, Royal Guard, Mechanic, Genetic, Archbishop and Sura +# +16039# +The cursed spoon... so the legends were true! +-------------------------- +ASPD +10 +-------------------------- +Random chance to inflict Curse status on the target when dealing physical damage. +-------------------------- +Type: Mace +Attack: 80 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 40 +Novice, Swordsman, Merchant and Acolyte +# +16040# +Mace that emitting red aura. +-------------------------- +ATK increased by (RefineLv*RefineLv), up to +15 Refine Level. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Indestructible in battle +-------------------------- +Type: Mace +Attack: 80 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Novice, Swordsman, Merchant and Acolyte +# +16041# +Mace imbued with Vicious Mind. +-------------------------- +Increases ATK by (Refinelv*Refinelv). +(up to +15 Refine Level) +-------------------------- +Indestructible in battle +-------------------------- +Type: Mace +Attack: 130 +Weight: 130 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 160 +Novice, Swordsman, Merchant and Acolyte +# +16042# +A blunt instrument given by the king. +It seems to be effective in calming the souls of the dead. +-------------------------- +Increases Damage against monsters in Bio Lab and Tomb of The Fallen by 40%. +-------------------------- +Refine Level +5: +Increases Damage against monsters in Bio Lab and Tomb of The Fallen by 20%. +-------------------------- +Refine Level +6: +Increases Damage by 15% per Refine Level inflicted to Bio Lab and Tomb of the Fallen monsters. +-------------------------- +Type: Mace +Attack: 180 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Super Novice, Swordsman, Acolite and Merchant classes +# +16043# +A very heavy hammer that only a super human can use it. +-------------------------- +Base STR at least 108: +Decreases SP Consumption by 20%. +-------------------------- +Base STR at least 120: +Decreases SP Consumption by 30%. +-------------------------- +For each Refine Level: +ATK +10 +-------------------------- +For each Level of Axe Mastery: +ATK +7 +HIT +5 +-------------------------- +For each Level of Weapon Research: +ATK +10 +-------------------------- +For each Level of Iron Hand: +ATK +30 +-------------------------- +When Push Cart is mastered: +Enables the use of Level 1 Cart Revolution. +-------------------------- +When Level 1 of Sword Training is learned: +Enables the use of Level 1 Bowling Bash. +When Level 2 or more of Sword Training is learned: +Enables the learning of Bowling Bash. +-------------------------- +When equipped with Toy Ring: +ATK +100 +Increases damage of Bowling Bash by 50%. +-------------------------- +Type: Mace +Attack: 1 +Weight: 2000 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 110 +Super Novice +# +16044# +A pile bunker with the ability to send cold air to the target along with the attack. +-------------------------- +Physical attacks have a chance to Freeze the enemy. +-------------------------- +Refine Level +7: +For each Refine Level: +Increases the chance of freezing the enemy with physical attacks. +-------------------------- +When using Pile Bunker: +Has a chance to Freeze the enemies on use. +-------------------------- +Increases the Cooldown of Pile Bunker by 5 seconds. +-------------------------- +Type: Mace +Attack: 50 +Weight: 350 +Element: Water +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Mechanic +# +16045# +A pile bunker with a feature that makes it impossible for the target to move with the attack. +-------------------------- +Physical attacks have a chance to Curse the enemy. +-------------------------- +Refine Level +7: +For each Refine Level: +Increases the chance of cursing the enemy with physical attacks. +-------------------------- +When using Pile Bunker: +Has a chance to Curse the enemies on use. +-------------------------- +Increases the Cooldown of Pile Bunker by 5 seconds. +-------------------------- +Type: Mace +Attack: 50 +Weight: 350 +Element: Earth +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Mechanic +# +16046# +A pile bunker with the ability to track the attack target. +-------------------------- +Increases critical attack damage by 20%. +-------------------------- +Refine Level +7: +Increases critical attack damage by additional 30%. +-------------------------- +When using Boost Knuckle: +When recieving physical damage, has a certain chance for 1 second to paralyzed the enemy. +-------------------------- +Type: Mace +Attack: 50 +Weight: 350 +Element: Wind +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Mechanic +# +16047# +The robot's arm is rusty and broken. +It can be used as a weapon. +-------------------------- +HIT +5 +-------------------------- +Refine Level +7: +HIT +15 +-------------------------- +Type: Mace +Attack: 150 +Weight: 200 +Element: Poison +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +3rd class of Swordsman, Merchant and Acolyte +# +16048# +A certified kingdom equipment for adventurer. +-------------------------- +Increases ATK by (Refine*Refine*1.25) +-------------------------- +Type: Mace +Attack: 76 +Weight: 40 +Weapon Level: 3 +-------------------------- +Requirement: +Novice, Swordsman, Merchant and Acolyte +# +16049# +Hammer imbued with the power of lightning. +It is said that the original performance can be demonstrated by regaining the power of the gale. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Fish race by 10%. +Increases Physical Damage against enemies of Water element by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Fish race by additional 15%. +Increases Physical Damage against enemies of Water element by additional 15%. +-------------------------- +Type: Mace +Attack: 130 +Weight: 200 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Novice, Swordsman, Merchant and Acolyte +# +16050# +A replica made from hunters. +The shape of the weapon collapses after a certain period of time, probably because it is an incomplete replica. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Insect and Demi-Human race by 10%. +Does not affect players +Increases Physical Damage against enemies of Water and Earth elemental by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Insect and Demi-Human race by additional 15%. +Does not affect players +Increases Physical Damage against enemies of Water and Earth elemental by additional 15%. +-------------------------- +Rental Hunter Hammer will only be sold by NPC. +-------------------------- +Type: Mace +Attack: 130 +Weight: 0 +Element: Fire +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Novice, Swordsman, Merchant and Acolyte +# +16051# +A hammer of noble valkyrie. +-------------------------- +MATK +50 +-------------------------- +When equipped by Novice: +ATK +150, MATK +200 +HIT +10 +MaxHP +500, MaxSP +400 +Decreases SP Consumption by 5%. +-------------------------- +For each Refine Level: +VIT +1 +MaxHP +200 +Perfect Dodge +1 +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +For each 2 Refine Levels: +Decreases Variable Casting Time by 1%. +-------------------------- +When equipped by Swordman: +MaxHP +500 +MaxSP +100 +-------------------------- +For each Refine Level: +VIT +1 +-------------------------- +When equipped by Priest: +ATK +50 +MATK +100 +-------------------------- +For each Refine Level: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +When equipped by Monk: +MaxSP +200 +Decreases SP Consumption by 5%. +-------------------------- +For each Refine Level: +Perfect Dodge +1 +-------------------------- +When equipped by Merchant: +ATK +100 +HIT +10 +-------------------------- +For each 2 Refine Levels: +Decreases Variable Casting Time by 1% +-------------------------- +Type: Mace +Attack: 50 +Weight: 10 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 70 +Novice, Swordsman, Merchant and Acolyte +# +16052# +A heavy, round headed mace intended for use in athletic competitions, but has proven to be effective in battle. +-------------------------- +Type: Mace +Attack: 155 +Weight: 300 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 78 +Priest and Monk classes +# +16053# +A weapon used by Warrior Lola. +-------------------------- +When equipped with Bloody Iron Ball: +Adds a chance of ignoring 100% physical defense of enemies for 5 seconds when dealing physical attacks. + +For each Refine Level above +5: +Extend the duration by 1 second. +-------------------------- +Type: Mace +Attack: 170 +Weight: 150 +Element: Fire +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Rune Knight, Royal Guard, Mechanic and Genetic +# +16054# +A metallic Mace made of oridecon created for experienced adventurers. +-------------------------- +Increases damage of Sky Net Blow and Cart Cannon by 10%. +-------------------------- +For each Refine Level: +ATK +7 +-------------------------- +For each 10 Base Level: +ATK +7 (Applies up to Base Level 150) +-------------------------- +Type: Mace +Attack: 105 +Weight: 0 +Weapon Level: 3 +Enchantable: Yes +Enchanter: [Jumping Enchant Specialist]prontera,151,187,0,100,0,0 +-------------------------- +Requirement: +Base Level 100 +Super Novice; 3rd classes of Swordsman, Acolyte and Merchant +# +16055# +Hammer imbued with the power of Earth. +It is said that the original performance can be demonstrated by regaining the power of heaven and earth. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Animal and Plant race by 10%. +Increases Physical Damage against enemies of Wind and Earth elemental by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Animal and Plant race by additional 15%. +Increases Physical Damage against enemies of Wind and Earth elemental by additional 15%. +-------------------------- +Type: Mace +Attack: 130 +Weight: 200 +Element: Earth +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Novice, Swordsman, Merchant and Acolyte +# +16056# +A hard hammer made out of the pieces of a meteorite from space. +Ancient artefact said it to be blessed by the Gods. +-------------------------- +INT +1 +LUK +1 +-------------------------- +For each Level of Divine Protection: +Increases Healing skills effectiveness by 1%. +-------------------------- +For each Level of Mace Mastery: +Critical +2 +-------------------------- +When equipped with Heroic Shoes: +For each Level of Duple Light: +Increases Attack Speed (Decreases After Attack Delay by 1%). + +For each Level of Mace Mastery: +Ignore 10% DEF of Ghost, Demon and Demi-Human race. +Gain Critical +5 on attacking Ghost, Demon and Demi-Human race. +-------------------------- +Type: Mace +Attack: 160 +Weight: 180 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Acolyte +# +16057# +Hammer imbued with the power of water. +By regaining Suiten, it can show its true power. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of all monsters except Demon monsters by 10%. +Increases Physical Damage against enemies of Fire elemental by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all monsters except Demon monsters by additional 15%. +Increases Physical Damage against enemies of Fire elemental by additional 15%. +-------------------------- +Type: Mace +Attack: 130 +Weight: 200 +Element: Water +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Novice, Swordsman, Merchant and Acolyte +# +16058# +A weapon of unknown origin with the magical power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +MATK +110 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When equipped with Labyrinth Baphomet Card: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Type: Mace +Attack: 150 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Super Novice, 3rd classes of Swordsman, Merchant and Acolyte +# +16059# +A Diva Mace that has mutated under the influence of the power of the labyrinth. +It is unclear what kind of material it is made of, and the same weapons have different performances. +-------------------------- +Attack Range: 5 cells +-------------------------- +MATK +110 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: Mace +Attack: 150 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Super Novice, 3rd Swordsman classes, 3rd Acolyte classes and 3rd Merchant classes +# +16060# +A flask of alcohol, quite strong to be a weapon. +-------------------------- +Random chance to inflict Stun status on the target. +-------------------------- +For each Refine Level: +Increases trigger chance by 3%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Mace +Attack: 120 +Weight: 70 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Super Novice; 3rd classes of Swordsman, Merchant and Acolyte +# +16061# +Mace imbued with vicious mind. +-------------------------- +For each Refine Level: +ATK +1 +-------------------------- +Type: Mace +Attack: 105 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Super Novice; 3rd classes of Swordsman, Merchant and Acolyte +# +16062# +A spoon of dead prisoner. +-------------------------- +Restores SP 1 with each attack. +-------------------------- +Refine Level +7: +Restores SP 1 with each attack. +-------------------------- +Type: Mace +Attack: 170 +Weight: 30 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Super Novice; 3rd classes of Swordsman, Merchant and Acolyte +# +16063# +A long, thin mace built like a spear. +-------------------------- +Increases attack range by 3 cells. +-------------------------- +Decreases damage taken from Ranged Physical Damage by 10%. +-------------------------- +For each 2 Refine Levels: +Decreases damage taken from Ranged Physical Damage by additional 3%. +-------------------------- +Type: Mace +Attack: 185 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 99 +Acolyte +# +16064# +Mace for Genetics who are more or less used to handling blunt weapons. +When equipped with Enhanced Time Keeper Armor, will makes wearer's body more agile. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Cart Cannon by 20%. +-------------------------- +For each 10 Base Level: +ATK +6 (up to Base Level 160). +-------------------------- +Refine Level +7: +For each Level of Pharmacy: +ATK +3 +-------------------------- +When equipped with Enhanced Time Keeper Hat, Enhanced Time Keeper Robe, nhanced Time Keeper Manteau, Enhanced Time Keeper Boots: +ASPD +2, +MaxHP and MaxSP +10% + +For every 10 Base VIT: +Decreases damage taken from Neutral elemental attacks by 3%. +(up to Base VIT 100) + +For every 10 Base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +(up to Base AGI 100) + +For every 10 Base DEX: +HIT +3 +(up to Base DEX 100) + +For every 10 Base LUK: +Critical +3 +(up to Base LUK 100) +-------------------------- +Type: Mace +Attack: 140 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Genetic +# +16065# +A round finish, which is said to be used in certain sports. +It's made of carbon steel which enhances killing power and provides high hardness. +-------------------------- +Indestructible in battle +-------------------------- +For each Refine Level: +Increases damage of Duplex Light by 3%. +-------------------------- +For each 2 Refine Levels: +ASPD +1. +-------------------------- +When equipped with Illusion Muffler: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level of Illusion Iron Driver and Illusion Muffler each is +7 or higher: +Increases damage of Duplex Light by 25%. +-------------------------- +Total Refine Level of entire set at least +18: +Critical +15 +-------------------------- +Total Refine Level of entire set at least +22: +Increases Critical Damage by 20%. +-------------------------- +Type: Mace +Attack: 210 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Archbishop +# +16066# +A hammer with the power of fire. +It is said that the original performance can be exhibited by regaining the power of \ +... +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Insect and Demi-Human race, except Players, by 10%. +Increases Physical Damage against enemies of Water and Earth elemental by 10%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Insect and Demi-Human race, except Players, by additional 15%. +Increases Physical Damage against enemies of Water and Earth elemental by additional 15%. +-------------------------- +Type: Mace +Attack: 130 +Weight: 200 +Element: Fire +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Novice, Swordsman, Acolyte and Merchant classes +# +16075# +Mace specially made for beginner mechanic. +It will show its true ability when equipped together with Beginner armor set. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +7: +Increases damage of Boost Knuckle by 15%. +-------------------------- +When equipped with Beginner's Hat, Beginner's Suit, Beginner's Manteau, Beginner's Boots and Beginner's Ring: +ASPD +1 +Increases Ranged Physical Damage by 5%. +For each 10 Base Level: +ATK +3 (up to Base Level 150) +-------------------------- +Indestructible in battle +-------------------------- +Type: Mace +Attack: 170 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +16076# +It's over 99!!! +Only the legendary novice can wield this mace. +It will show it's true ability when equipped together with Beginner Armor set. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +7: +Increases Critical Damage by 7%. +-------------------------- +When equipped with Beginner's Hat, Beginner's Suit, Beginner's Manteau, Beginner's Boots and Beginner's Ring: +For each 10 Base Level: +ATK +3 (up to Base Level 150) +ASPD +1 +ATK +40 +-------------------------- +Indestructible in battle +-------------------------- +Type: Mace +Attack: 150 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Super Novice +# +16082# +A mace received from suspicious weapon dealer Brute. +-------------------------- +Increases Physical Damage against Players by 60%. +-------------------------- +For each Refine Level: +Ignores physical defense of every race by 5%. +-------------------------- +Refine Level +8: +Increases Physical Damage against Players by additional 35%. +-------------------------- +Refine Level +9: +Increases Physical Damage against Players by additional 20%. +-------------------------- +Refine Level +10: +MaxHP +15% +MaxSP +15% +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's and moved to the storage. +-------------------------- +Type: Mace +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Super Novice, 3rd Swordsman classes, 3rd Acolyte classes and 3rd Merchant classes +# +16087# +A weapon that has been transformed by the magical power of a stranger. +Even if they look the same, the performance is different. +-------------------------- +MATK +110 +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by 5%. +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Mace +Attack: 150 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +Super Novice, 3rd Swordsman, 3rd Acolyte and 3rd Merchant classes +# +16088# +Extra blunt weapon wrapped in a blue glowing sphere. +-------------------------- +Indestructible in battle +-------------------------- +ATK +3% +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 7%. +-------------------------- +Refine Level +9: +Increases damage of Cart Cannon by 20%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by 15%. +-------------------------- +Type: Mace +Attack: 185 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Genetic +# +16089# +A blunt decorated with an orb with a black glow. +-------------------------- +Indestructible in battle +-------------------------- +MATK +170 +MATK +3% +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases damage of Adoramus by 20%. +-------------------------- +Refine Level +11: +Increases Magical Damage with Holy element by 15%. +-------------------------- +Type: Mace +Attack: 150 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Archbishop +# +16092# +Pile bunker with an engine attached. +More powerful than other pile bunkers. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Vulcan Arm by 10%. +-------------------------- +For each Refine Level: +Increases Attack Speed (Decreases After Attack Delay by 1). +-------------------------- +Refine Level +9: +Increases damage of Arms Cannon and Knuckle Boost by 15%. +-------------------------- +Refine Level +11: +Increases damage of Vulcan Arm by additional 15%. +-------------------------- +Type: Mace +Attack: 450 +Weight: 320 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Mechanic +# +16093# +Injection designed to inject coolant into the overheated cart. +-------------------------- +Indestructible in battle +-------------------------- +Increases Ranged Physical Damage by 10%. +-------------------------- +For each Refine Level: +ATK +1% +-------------------------- +Refine Level +9: +Increases Cart Cannon by 25%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by additional 15%. +-------------------------- +Type: Mace +Attack: 210 +Weight: 140 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Genetic +# +16094# +A rod decorated with crystals called the essence of genetics. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Crazy Weed by 20%. +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Increases damage of Crazy Weed by additional 30%. +-------------------------- +Refine Level +11: +Decreases Crazy Weed skill cooldown by 2 seconds. +-------------------------- +Type: Mace +Attack: 195 +Weight: 140 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Genetic +# +16095# +Mace with a pendulum shining with blue light. +-------------------------- +MATK +160 +-------------------------- +Indestructible in battle +-------------------------- +ASPD +1 +-------------------------- +For each Refine Level: +MATK +4 +-------------------------- +Refine Level +9: +Increases damage of Duplex Light by 40%. +-------------------------- +Refine Level +11: +Enables physical attacks to auto cast Level 2 Judex at a certain chance. (If you learned a higher Level, it will auto cast that Level instead.) +-------------------------- +Type: Mace +Attack: 180 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Archbishop +# +16096# +A mace that will make a clear sound whenever you hit a target. +-------------------------- +Indestructible in battle +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Increases damage of Finger Offensive and Investigate by 50%. +-------------------------- +Refine Level +11: +ATK +10% +-------------------------- +Type: Mace +Attack: 210 +Weight: 130 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Sura +# +16099# +A hammer used to search the Einbech Tunnel. +Originally used as a tunnel inspection tool, it is also used for combat due to it's unique design and durability. +-------------------------- +MATK +180 +MATK +7% +-------------------------- +Indestructible in battle +-------------------------- +Increases Healing effectiveness by 5%. +Increases damage of Adoramus by 10%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Holy element by 7%. +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Adoramus by additional 15%. +Magical attacks have a chance to increase magical damage against all size enemies by 15% for 5 seconds. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 20%. +-------------------------- +Type: Mace +Attack: 160 +Weight: 190 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Archbishop +# +16100# +A box that contains 1 Angry Mouth inside. +-------------------------- +Weight: 1 +# +16101# +A box that contains 1 Lucky Egg inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16102# +A box that contains 1 Claymore inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16103# +A box that contains 1 Jamadhar inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16104# +A box that contains 1 Two-Handed Axe inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16105# +A box that contains 1 Lance inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16106# +A box that contains 1 Huuma Giant Wheel Shuriken inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16107# +A box that contains 1 Orcish Axe inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16108# +A box that contains 1 Spike inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16109# +A box that contains 1 Giant Encyclopedia inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16110# +A box that contains 1 Fist inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16111# +A box that contains 1 Guitar inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16112# +A box that contains 1 Rante Whip inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16113# +A box that contains 1 Damascus inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16114# +A box that contains 1 Flamberge inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16115# +A box that contains 1 Stunner inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16116# +A box that contains 1 Lucky inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16117# +A box that contains 1 Claymore inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16118# +A box that contains 1 Jamadhar inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16119# +A box that contains 1 Two-Handed Axe inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16120# +A box that contains 1 Lance inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16121# +A box that contains 1 Huuma Giant Wheel Shuriken inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16122# +A box that contains 1 Orcish Axe inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16123# +A box that contains 1 Spike inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16124# +A box that contains 1 Giant Encyclopedia inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16125# +A box that contains 1 Fist inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16126# +A box that contains 1 Guitar inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16127# +A box that contains 1 Rante Whip inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16128# +A box that contains 1 Damascus inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16129# +A box that contains 1 Flamberge inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16130# +A box that contains 1 Stunner inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16131# +A box that contains 1 Tanigumi Girl Doll inside. +-------------------------- +Weight: 1 +# +16132# +A box that contains 1 Lunatic Hat inside. +-------------------------- +Weight: 1 +# +16133# +A box that contains 1 Guardian of Light Wand inside. +-------------------------- +Weight: 1 +# +16134# +A box that contains 1 Frog Prince Hat inside. +-------------------------- +Weight: 1 +# +16135# +A box that contains 1 Satanic Bone Helm inside. +-------------------------- +Weight: 1 +# +16136# +A box that contains 10 Goddess of Blessing inside. +You have the blessings of the goddess! +-------------------------- +Weight: 1 +# +16137# +A box that contains 10 Angel of Blessing inside. +The angel's blessing be with you! +-------------------------- +Weight: 1 +# +16138# +A box that contains 10 Snow Powder inside. +During the winter atmosphere I'd like to look good items! +Warning: You can not turn off the lights! +-------------------------- +Weight: 1 +# +16139# +A box that contains 10 Small Hearts inside. +This item is expected to create an atmosphere of love, please! +-------------------------- +Weight: 1 +# +16140# +A box that contains 10 Extravagant Firework inside. +Gorgeous and beautiful fireworks. When used in a summer night seems to be romantic. +-------------------------- +Weight: 1 +# +16141# +A box that contains 1 Gold Earring inside. +-------------------------- +Weight: 1 +# +16142# +A box that contains 1 Green Jewel Bag inside. +-------------------------- +Weight: 1 +# +16143# +A box that contains 1 Fashion Glasses inside. +-------------------------- +Weight: 1 +# +16144# +A box that contains 1 Hairband of Stars inside. +-------------------------- +Weight: 1 +# +16145# +A box that contains 1 Tassel for Durumagi inside. +-------------------------- +Weight: 1 +# +16146# +A box that contains 1 Pet Soul Ring inside. +-------------------------- +Weight: 1 +# +16147# +A box that contains 1 Beautiful Badges inside. +-------------------------- +Weight: 1 +# +16148# +A box that contains 1 Jade Trinket inside. +-------------------------- +Weight: 1 +# +16149# +A box that contains 1 Summer Fan inside. +-------------------------- +Weight: 1 +# +16150# +A box that contains 1 Ring of Death inside. +-------------------------- +Weight: 1 +# +16151# +A box that contains 1 Queen's Coronet inside. +-------------------------- +Weight: 1 +# +16152# +A box that contains 1 Afro inside. +-------------------------- +Weight: 1 +# +16153# +A box that contains 1 Masked Ball inside. +-------------------------- +Weight: 1 +# +16154# +A box that contains 1 Spring inside. +-------------------------- +Weight: 1 +# +16155# +A box that contains 1 Horn of Hell inside. +-------------------------- +Weight: 1 +# +16156# +A box that contains 1 Poring Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16157# +A box that contains 1 Drops Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16158# +A box that contains 1 Poporing Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16159# +A box that contains 1 Lunatic Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16160# +A box that contains 1 Picky Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16161# +A box that contains 1 Peco-Peco Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16162# +A box that contains 1 Savage Babe Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16163# +A box that contains 1 Spore Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16164# +A box that contains 1 Poison Spore Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16165# +A box that contains 1 Chonchon Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16166# +A box that contains 1 Steel Chonchon Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16167# +A box that contains 1 Sky Petite Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16168# +A box that contains 1 Deviruchi Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16169# +A box that contains 1 Isis Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16170# +A box that contains 1 Smokie Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16171# +A box that contains 1 Dokkaebi Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16172# +A box that contains 1 Baby Desert Wolf Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16173# +A box that contains 1 Yoyo Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16174# +A box that contains 1 Sohee Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16175# +A box that contains 1 Rocker Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16176# +A box that contains 1 Hunter Fly Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16177# +A box that contains 1 Orc Warrior Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16178# +A box that contains 1 Bapho Jr. Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16179# +A box that contains 1 Munak Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16180# +A box that contains 1 Bongun Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16181# +A box that contains 1 Christmas Goblin Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16182# +A box that contains 1 Rice Cake Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16183# +A box that contains 1 Zherlthsh Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16184# +A box that contains 1 Alice Exchange Ticket inside. +-------------------------- +Weight: 0 +# +16185# +A box that contains 1 Crow Hat inside. +-------------------------- +Weight: 1 +# +16186# +A box containing 1 Baby Dragon Hat. +This can be purchased Playspan store at store.playspan.com +Once opened, the hat can only be placed in storage. +Description: +A baby dragon who has been trained to help its master. +From May 6 to June 3 +It has the ability to grant its wearer 20% more Base experience For each Dragon monster killed. +Increases damage and resistance to Dragon race by 10%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16187# +A box that contains 1 Angry Mouth inside. +-------------------------- +Weight: 1 +# +16188# +A box that contains 1 Magic Rabbit Hat inside. +-------------------------- +Weight: 1 +# +16189# +A box that contains 1 Side Cap inside. +-------------------------- +Weight: 1 +# +16190# +A box that contains 1 Magic Rabbit Hat inside. +-------------------------- +Weight: 1 +# +16191# +A box that contains 1 Side Cap inside. +-------------------------- +Weight: 1 +# +16192# +A Box that contains 1 Coati Hat +-------------------------- +Description: +A Coati-shaped Hat with a cute thick tail. This hat comes with a fresh forest scent. +AGI +3, UnRefineable. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +-------------------------- +Weight: 1 +# +16193# +A Box that contains 1 Tucan Hat +-------------------------- +Description: +A bird from the Tucan family with a fabulous yellow colored beak. It has been seen eating sweet loop flavored cereal. +DEX +3. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle +Weight: 60 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +-------------------------- +Weight: 1 +# +16194# +A Box that contains 1 Jaguar Hat +-------------------------- +Description: +A mask of the king of the Amazon the Jaguar. According to rumor, those who wear this get blessings from nature. +MDEF +2. +Enables use of Crazy Uproar skill. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper, Middle, Lower +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 25 +-------------------------- +Weight: 1 +# +16195# +An Halloween Scroll. It is very suspicious Scroll... You should keep it secret. +-------------------------- +Weight: 1 +# +16196# +A box that contains 1 Freya's Spiritual Shield inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16197# +A box that contains 1 Freya's Spiritual Shield inside. Available for 30 days. +-------------------------- +Weight: 1 +# +16198# +A box that contains 1 Freya's Spiritual Shield inside. Available for 60 days. +-------------------------- +Weight: 1 +# +16199# +A box that contains 1 Freya's Spiritual Shield inside. Available for 90 days. +-------------------------- +Weight: 1 +# +16200# +A box that contains 1 Freya's Spiritual Robe inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16201# +A box that contains 1 Freya's Spiritual Robe inside. Available for 30 days. +-------------------------- +Weight: 1 +# +16202# +A box that contains 1 Freya's Spiritual Robe inside. Available for 60 days. +-------------------------- +Weight: 1 +# +16203# +A box that contains 1 Freya's Spiritual Robe inside. Available for 90 days. +-------------------------- +Weight: 1 +# +16204# +A box that contains 1 Freya's Spiritual Scarf inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16205# +A box that contains 1 Freya's Spiritual Scarf inside. Available for 30 days. +-------------------------- +Weight: 1 +# +16206# +A box that contains 1 Freya's Spiritual Scarf inside. Available for 60 days. +-------------------------- +Weight: 1 +# +16207# +A box that contains 1 Freya's Spiritual Scarf inside. Available for 90 days. +-------------------------- +Weight: 1 +# +16208# +A box that contains 1 Freya's Spiritual Sandals inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16209# +A box that contains 1 Freya's Spiritual Sandals inside. Available for 30 days. +-------------------------- +Weight: 1 +# +16210# +A box that contains 1 Freya's Spiritual Sandals inside. Available for 60 days. +-------------------------- +Weight: 1 +# +16211# +A box that contains 1 Freya's Spiritual Sandals inside. Available for 90 days. +-------------------------- +Weight: 1 +# +16212# +A box that contains 1 Freya's Spiritual Circlet inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16213# +A box that contains 1 Freya's Spiritual Circlet inside. Available for 30 days. +-------------------------- +Weight: 1 +# +16214# +A box that contains 1 Freya's Spiritual Circlet inside. Available for 60 days. +-------------------------- +Weight: 1 +# +16215# +A box that contains 1 Freya's Spiritual Circlet inside. Available for 90 days. +-------------------------- +Weight: 1 +# +16216# +A box that contains 1 Freya's Spiritual Bracelet inside. Available for 7 days. +-------------------------- +Weight: 1 +# +16217# +A box that contains 1 Freya's Spiritual Bracelet inside. Available for 30 days. +-------------------------- +Weight: 1 +# +16218# +A box that contains 1 Freya's Spiritual Bracelet inside. Available for 60 days. +-------------------------- +Weight: 1 +# +16219# +A box that contains 1 Freya's Spiritual Bracelet inside. Available for 90 days. +-------------------------- +Weight: 1 +# +16220# +A box that contains 5 Tasty Sundae, 1 Hairband of Stars inside. +-------------------------- +Weight: 1 +# +16221# +A box that contains 5 Customized Coffin, 1 Pet Soul Ring inside. +-------------------------- +Weight: 1 +# +16222# +A box that contains 5 Romance of Girl, 1 Masked Ball inside. +-------------------------- +Weight: 1 +# +16223# +A box that contains 5 Tasty Sundae, 1 Hairband of Stars inside. +-------------------------- +Weight: 1 +# +16224# +A box that contains 5 Customized Coffin, 1 Pet Soul Ring inside. +-------------------------- +Weight: 1 +# +16225# +A box that contains 5 Romance of Girl, 1 Masked Ball inside. +-------------------------- +Weight: 1 +# +16226# +A box that contains an Aries Diadem Headgear. +-------------------------- +Weight: 1 +# +16227# +A box that contains an Aries Crown Headgear. +-------------------------- +Weight: 1 +# +16228# +A box that contains 1 RJC Flower Hairband inside. +-------------------------- +Weight: 1 +# +16229# +A box that contains 1 Crimson Rose inside. +-------------------------- +Weight: 1 +# +16230# +A box that contains a Taurus Diadem Headgear. +-------------------------- +Weight: 1 +# +16231# +A box that contains a Taurus Crown Headgear. +-------------------------- +Weight: 1 +# +16232# +A box that contains 1 Hairband of Reginleif inside. +-------------------------- +Weight: 1 +# +16233# +A box that contains 1 Festival Grand Circlet inside. +-------------------------- +Weight: 1 +# +16234# +A box that contains 1 Festival Bunny Band inside. +-------------------------- +Weight: 1 +# +16235# +A box that contains 1 Octopus Hat inside. +-------------------------- +Weight: 1 +# +16236# +A box that contains 1 Leaf Cat Hat inside. +-------------------------- +Weight: 1 +# +16237# +A box that contains 1 Seal Hat inside. +-------------------------- +Weight: 1 +# +16238# +A box that contains 1 Wild Rose Hat inside. +-------------------------- +Weight: 1 +# +16239# +A box that contains 1 Luxury Hat inside. +-------------------------- +Weight: 1 +# +16240# +A box that contains 1 Whikebine's Black Cat Ears inside. +-------------------------- +Weight: 1 +# +16241# +A box that contains 1 Chicken Hat inside. +-------------------------- +Weight: 1 +# +16242# +A box that contains 1 Whikebine's Black Cat Ears inside. +-------------------------- +Weight: 1 +# +16243# +A box that contains 1 Chicken Hat inside. +-------------------------- +Weight: 1 +# +16244# +A Box with a Dolor Hat inside. +-------------------------- +Weight: 1 +# +16245# +Taiwan Limited Sale April Scroll. +-------------------------- +Weight: 1 +# +16246# +A box containing one Crown of Deceit +-------------------------- +Weight: 1 +# +16247# +A box that contains 1 Dragon Arhat Mask inside. +-------------------------- +Weight: 1 +# +16248# +A box that contains 1 Tiger Arhat Mask inside. +-------------------------- +Weight: 1 +# +16249# +A box containing the Templar's gift. +-------------------------- +Weight: 0 +# +16250# +A box that contains 1 Helm of Valkyrie inside. +-------------------------- +Weight: 0 +# +16251# +A box that contains a Gemini Diadem Headgear. +-------------------------- +Weight: 1 +# +16252# +A box that contains a Gemini Crown Headgear. +-------------------------- +Weight: 1 +# +16253# +Rabbit ears with a little scroll round the eggs. +-------------------------- +Weight: 1 +# +16254# +A box that contains 5 Energizing Potion inside. +-------------------------- +Weight: 1 +# +16255# +A box that contains 5 Energizing Potion inside. +-------------------------- +Weight: 1 +# +16256# +A box that contains 1 Hermode Cap, 1 Aumdura's Benefit and 1 Odin Mask. +-------------------------- +Weight: 1 +# +16257# +Taiwan Disbelief Scroll. +-------------------------- +Weight: 1 +# +16258# +A box which contains 5 high density bradiums. +A high density Bradium used in upgrading weapons. Take this to Mighty Hammer in Eden Group or Payon next to the Kafra Shop Ladies to help you upgrade weapons at +10 and higher. +This Bradium's density guarantees that your weapon will NOT break when attempting to upgrade and if the upgrade attempt fails, it will only downgrade 1 Level instead of 3 like a normal Bradium. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16259# +A box which contains 5 high density carniums. +A high density Carnium used in upgrading armor. +Take this to Mighty Hammer in Eden Group or Payon next to the Kafra Shop Ladies to help you upgrade armor at +10 and higher. +This Carnium's density guarantees that your armor will NOT break when attempting to upgrade, +if the upgrade attempt fails, it will only downgrade 1 Level instead of 3 like a normal Carnium. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16260# +A box which contains 10 high density bradiums. +The density and solidity has been heightened by repeated experiments from Rune Midgard's scholars. It seems that it becomes more difficult for weapon upgrade. +When you fail while upgrading defense weapon whose Refine Level is over +10, it won't be destroyed. (When the upgrade fails, Refine Level gets -1) +Weight: 1 +-------------------------- +Weight: 1 +# +16261# +A box which contains 10 high density carniums. +It has been compressed for such a long time that the density and solidity is heightened. It seems that it becomes more difficult for Defense Weapon Upgrade. +When you fail while upgrading defense weapon whose Refine Level is over +10, it won't be destroyed. (When the upgrade fails, Refine Level gets -1) +Weight: 1 +-------------------------- +Weight: 1 +# +16262# +A box which contains 5 high density bradiums. +The density and solidity has been heightened by repeated experiments from Rune Midgard's scholars. It seems that it becomes more difficult for weapon upgrade. +When you fail while upgrading defense weapon whose Refine Level is over +10, it won't be destroyed. (When the upgrade fails, Refine Level gets -1) +Weight: 1 +-------------------------- +Weight: 1 +# +16263# +A box which contains 5 high density carniums. +It has been compressed for such a long time that the density and solidity is heightened. It seems that it becomes more difficult for Defense Weapon Upgrade. +When you fail while upgrading defense weapon whose Refine Level is over +10, it won't be destroyed. (When the upgrade fails, Refine Level gets -1) +Weight: 1 +-------------------------- +Weight: 1 +# +16264# +A box which contains 10 high density bradiums. +The density and solidity has been heightened by repeated experiments from Rune Midgard's scholars. It seems that it becomes more difficult for weapon upgrade. +When you fail while upgrading defense weapon whose Refine Level is over +10, it won't be destroyed. (When the upgrade fails, Refine Level gets -1) +Weight: 1 +-------------------------- +Weight: 1 +# +16265# +A box which contains 10 high density carniums. +It has been compressed for such a long time that the density and solidity is heightened. It seems that it becomes more difficult for Defense Weapon Upgrade. +When you fail while upgrading defense weapon whose Refine Level is over +10, it won't be destroyed. (When the upgrade fails, Refine Level gets -1) +Weight: 1 +-------------------------- +Weight: 1 +# +16266# +A box that contains 1 Indonesia Beret inside. +-------------------------- +Weight: 1 +# +16267# +A box containing 10 High Efficiency Battle Manuals. +-------------------------- +High Efficiency Battle Manual - This well written, detailed manual explains High Efficiency battle methods. +EXP rate increases to 200% for 15 minutes. +-------------------------- +Weight: 1 +# +16268# +A box containing 10 High Efficiency Bubble Gums. +-------------------------- +High Efficiency Bubble Gum - Item drop rate increases by 200% for 15 minutes. +-------------------------- +Weight: 1 +# +16269# +A box that contains a Cancer Diadem Headgear. +-------------------------- +Weight: 1 +# +16270# +A box that contains a Cancer Crown Headgear. +-------------------------- +Weight: 1 +# +16271# +A box that contains 1 Hockey Mask inside. +-------------------------- +Weight: 1 +# +16272# +A box that contains 1 Observer inside. +-------------------------- +Weight: 1 +# +16273# +A box that contains 1 All in One Ring 1 day rental inside. +-------------------------- +Weight: 1 +-------------------------- +Rental Item +A Jewelry Ring that contains a 3 Seal Magic Spell. +All Stats +1 +Enables use of +Level 1 Heal +Level 1 Teleport +Protects from skill cast interruption. +Increases casting time by 10%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +16274# +A box that contains 1 Spiritual Tunic inside. +-------------------------- +Weight: 1 +# +16275# +A box that contains 1 Recuvative Armor inside. +-------------------------- +Weight: 1 +# +16276# +A box that contains 1 Shell of Resistance inside. +-------------------------- +Weight: 1 +# +16277# +A box that contains 1 Silf Manteau inside. +-------------------------- +Weight: 1 +# +16278# +A box that contains 1 Refresh Shoes inside. +-------------------------- +Weight: 1 +# +16279# +A box that contains 1 Crunch Toast inside. +-------------------------- +Weight: 1 +# +16280# +A box that contains 1 Western Outlaw inside. +-------------------------- +Weight: 1 +# +16281# +A box that contains 1 Lever Action Rifle inside. +-------------------------- +Weight: 1 +# +16282# +A box that contains 1 Staff of Healing inside. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +16283# +A box that contains 1 Fraxinus inside. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +16284# +A box that contains 1 Guild Member Hat inside. +-------------------------- +Weight: 1 +# +16285# +A box that contains 1 Party Member Hat inside. +-------------------------- +Weight: 1 +# +16286# +A box that contains 1 Boyfriend Hat inside. +-------------------------- +Weight: 1 +# +16287# +A box that contains 1 Girlfriend Hat inside. +-------------------------- +Weight: 1 +# +16288# +A box that contains 1 Friend Hat inside. +-------------------------- +Weight: 1 +# +16289# +A box that contains 1 Claymore inside. +-------------------------- +Weight: 1 +# +16290# +A box that contains 1 Two Handed Axe inside. +-------------------------- +Weight: 1 +# +16291# +A box that contains 1 Lance inside. +-------------------------- +Weight: 1 +# +16292# +A box that contains 1 Jamadhar inside. +-------------------------- +Weight: 1 +# +16293# +A box that contains 1 Huuma Giant Wheel Shuriken inside. +-------------------------- +Weight: 1 +# +16294# +A box that contains 1 Orcish Axe inside. +-------------------------- +Weight: 1 +# +16295# +A box that contains 1 Spike inside. +-------------------------- +Weight: 1 +# +16296# +A box that contains 1 Giant Encyclopedia inside. +-------------------------- +Weight: 1 +# +16297# +A box that contains 1 Fist inside. +-------------------------- +Weight: 1 +# +16298# +A box that contains 1 Guitar inside. +-------------------------- +Weight: 1 +# +16299# +A box that contains 1 Rante Whip inside. +-------------------------- +Weight: 1 +# +16300# +A box that contains 1 Damascus inside. +-------------------------- +Weight: 1 +# +16301# +A box that contains 1 Flamberge inside. +-------------------------- +Weight: 1 +# +16302# +A box that contains 1 Stunner inside. +-------------------------- +Weight: 1 +# +16303# +Rental Item +A box that contains 1 Angry Mouth inside. Please take a care because is fragile. +-------------------------- +Weight: 1 +# +16304# +Devilring incarnation scroll. +-------------------------- +Weight: 1 +# +16305# +A box that contains 1 Reinforcement Guard inside. +-------------------------- +Weight: 1 +# +16306# +A box that contains 1 Reinforcement Guard inside. +-------------------------- +Weight: 1 +# +16307# +A box that contains 1 Reinforcement Buckler inside. +-------------------------- +Weight: 1 +# +16308# +A box that contains 1 Reinforcement Buckler inside. +-------------------------- +Weight: 1 +# +16309# +A box that contains 1 Reinforcement Shield inside. +-------------------------- +Weight: 1 +# +16310# +A box that contains 1 Reinforcement Shield inside. +-------------------------- +Weight: 1 +# +16311# +A box that contains 1 Reinforcement Shoes inside. +-------------------------- +Weight: 1 +# +16312# +A box that contains 1 Reinforcement Shoes inside. +-------------------------- +Weight: 1 +# +16313# +A box that contains 1 Reinforcement Boots inside. +-------------------------- +Weight: 1 +# +16314# +A box that contains 1 Reinforcement Boots inside. +-------------------------- +Weight: 1 +# +16315# +A box that contains 1 Reinforcement Greaves inside. +-------------------------- +Weight: 1 +# +16316# +A box that contains 1 Reinforcement Greaves inside. +-------------------------- +Weight: 1 +# +16317# +A box that contains 1 Reinforcement Hood inside. +-------------------------- +Weight: 1 +# +16318# +A box that contains 1 Reinforcement Hood inside. +-------------------------- +Weight: 1 +# +16319# +A box that contains 1 Reinforcement Muffler inside. +-------------------------- +Weight: 1 +# +16320# +A box that contains 1 Reinforcement Muffler inside. +-------------------------- +Weight: 1 +# +16321# +A box that contains 1 Reinforcement Manteau inside. +-------------------------- +Weight: 1 +# +16322# +A box that contains 1 Reinforcement Manteau inside. +-------------------------- +Weight: 1 +# +16323# +A box that contains 1 Reinforcement Clip inside. +-------------------------- +Weight: 1 +# +16324# +A box that contains 1 Reinforcement Clip inside. +-------------------------- +Weight: 1 +# +16325# +Rune Hairband Box +# +16326# +A box that contains 1 Rune Cloth Circlet inside. +-------------------------- +Weight: 1 +# +16327# +A box that contains 1 Reinforcement Adventure Suit inside. +-------------------------- +Weight: 1 +# +16328# +A box that contains 1 Reinforcement Adventure Suit inside. +-------------------------- +Weight: 1 +# +16329# +A box that contains 1 Reinforcement Coat inside. +-------------------------- +Weight: 1 +# +16330# +A box that contains 1 Reinforcement Coat inside. +-------------------------- +Weight: 1 +# +16331# +A box that contains 1 Reinforcement Saint Robe inside. +-------------------------- +Weight: 1 +# +16332# +A box that contains 1 Reinforcement Saint Robe inside. +-------------------------- +Weight: 1 +# +16333# +A box that contains 1 Reinforcement Tight inside. +-------------------------- +Weight: 1 +# +16334# +A box that contains 1 Reinforcement Tight inside. +-------------------------- +Weight: 1 +# +16335# +A box that contains 1 Reinforcement Thief Clothes inside. +-------------------------- +Weight: 1 +# +16336# +A box that contains 1 Reinforcement Thief Clothes inside. +-------------------------- +Weight: 1 +# +16337# +A box that contains 1 Reinforcement Mail inside. +-------------------------- +Weight: 1 +# +16338# +A box that contains 1 Reinforcement Mail inside. +-------------------------- +Weight: 1 +# +16339# +A box that contains 1 Reinforcement Formal Suit inside. +-------------------------- +Weight: 1 +# +16340# +A box that contains 1 Reinforcement Formal Suit inside. +-------------------------- +Weight: 1 +# +16341# +A box that cotains 1 Greed Clip. +Enable to use Greed skill. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +All Jobs except Novice +Weight: 1 +# +16343# +A box that contains a Leo Crown Headgear. +-------------------------- +Weight: 1 +# +16344# +A box that contains a Leo Diadem Headgear. +-------------------------- +Weight: 1 +# +16345# +A box that contains a Leo Crown Headgear. +-------------------------- +Weight: 1 +# +16346# +A box that contains a Leo Diadem Headgear. +-------------------------- +Weight: 1 +# +16347# +A box that contains 1 Shooting Star inside. +-------------------------- +Weight: 1 +# +16348# +A box that contains 1 Bloody Spear inside. +-------------------------- +Weight: 1 +# +16349# +A box that contains 1 Ahlspiess inside. +-------------------------- +Weight: 1 +# +16350# +A box that contains 1 Healing of Staff inside. +-------------------------- +Weight: 1 +# +16351# +A box that contains 1 Anti Demon Shield inside. +-------------------------- +Weight: 1 +# +16352# +A box that contains 1 Shooting Star inside. +-------------------------- +Weight: 1 +# +16353# +A box that contains 1 Bloody Spear inside. +-------------------------- +Weight: 1 +# +16354# +A box that contains 1 Ahlspiess inside. +-------------------------- +Weight: 1 +# +16355# +A box that contains 1 Healing of Staff inside. +-------------------------- +Weight: 1 +# +16356# +A box that contains 1 Anti Demon Shield inside. +-------------------------- +Weight: 1 +# +16357# +A box that contains 1 Satanic Bone Helm inside. +-------------------------- +Weight: 1 +# +16358# +A box containing a pet exchange coupon. It is not known which pet's exchange ticket will be included. +-------------------------- +Weight: 1 +# +16359# +7th Anniversary Box. I don't know what it contains. +The event will expire on August 26th. +-------------------------- +Weight: 1 +# +16360# +A box that contains 1 Desert Princess inside. +-------------------------- +Weight: 1 +# +16361# +A box that contains 1 Desert Princess inside. +-------------------------- +Weight: 1 +# +16362# +A box containing 1 Sigrun's Wings inside. +-------------------------- +Weight: 1 +# +16363# +A box containing 1 Sigrun's Wings inside. +-------------------------- +Weight: 1 +# +16364# +A box that contains 1 Sleipnir R inside. Available for one week. +-------------------------- +Weight: 1 +# +16365# +A box that contains 1 Megingjord R inside. Available for one week. +-------------------------- +Weight: 1 +# +16366# +A box that contains 1 Brisingamen R inside. Available for one week. +-------------------------- +Weight: 1 +# +16367# +A box that contains 1 Mjolnir R inside. Available for one week. +-------------------------- +Weight: 1 +# +16368# +A box that contains a Virgo Crown Headgear. +-------------------------- +Weight: 1 +# +16369# +A box that contains 1 Freya Ring R inside. Available for one week. +-------------------------- +Weight: 1 +# +16370# +A box that contains 1 Freya Ring R inside. Available for one week. +-------------------------- +Weight: 1 +# +16371# +An unknown Scroll. +-------------------------- +Weight: 1 +# +16372# +A box that contains 1 Four Leaf Clover in Mouth R inside. Available for one week. +-------------------------- +Weight: 1 +# +16373# +A box that contains 1 Four Leaf Clover in Mouth R inside. Available for one weeks. +-------------------------- +Weight: 1 +# +16374# +A box that contains 1 Chewing Bubble Gum R inside. Available for one week. +-------------------------- +Weight: 1 +# +16375# +A box that contains 1 Chewing Bubble Gum R inside. Available for one weeks. +-------------------------- +Weight: 1 +# +16376# +A box that contains 1 Odin Recall R inside. Available for one week. +-------------------------- +Weight: 1 +# +16377# +A box that contains 1 Odin Recall R inside. Available for 30 days. +-------------------------- +Weight: 1 +# +16378# +A box that contains 30 Siege Map Teleport Scroll inside. +-------------------------- +Weight: 1 +# +16379# +A box that contains 10 Siege Map Teleport Scroll II inside. +-------------------------- +Weight: 1 +# +16380# +A box that contains 30 Siege Map Teleport Scroll II inside. +-------------------------- +Weight: 1 +# +16381# +A box containing 10 teleport scrolls that warp you to the Siege Areas. +Valkyrie Realms +Britoniah +Greenwood Lake +Luina +ValkFreya +Nidhoggur +-------------------------- +Cannot be sold. +-------------------------- +Weight: 1 +# +16382# +A box that contains 30 Siege Map Teleport Scroll inside. +-------------------------- +Weight: 1 +# +16383# +A box that contains 10 Siege Map Teleport Scroll II inside. +-------------------------- +Weight: 1 +# +16384# +A box that contains 30 Siege Map Teleport Scroll II inside. +-------------------------- +Weight: 1 +# +16385# +A box that contains 1 Four Leaf Clover in Mouth inside. Available for 2 hours. +-------------------------- +Weight: 1 +# +16386# +A box that contains 1 Four Leaf Clover in Mouth R inside. Available for four weeks. +-------------------------- +Weight: 1 +# +16387# +A box that contains 1 Four Leaf Clover in Mouth R inside. Available for two weeks. +-------------------------- +Weight: 1 +# +16388# +A box that contains 1 Four Leaf Clover in Mouth R inside. Available for four weeks. +-------------------------- +Weight: 1 +# +16389# +A box that contains 1 Chewing Bubble Gum R inside. Available for two weeks. +-------------------------- +Weight: 1 +# +16390# +A box that contains 1 Chewing Bubble Gum R inside. Available for four weeks. +-------------------------- +Weight: 1 +# +16391# +A box that contains 1 Chewing Bubble Gum R II inside. Available for two weeks. +-------------------------- +Weight: 1 +# +16392# +A box that contains 1 Chewing Bubble Gum R III inside. Available for four weeks. +-------------------------- +Weight: 1 +# +16393# +A box that contains 5 HD Oridecon inside. +-------------------------- +Item Description: +High Density Oridecon that has been buried deep underground. +Used as a material to strengthen weapons currently from Refine Levels 7 through 9. +This item's density ensures that Refine attempts will not break the weapon and if the attempt fails it will only downgrade by 1. +Only a Blacksmith named Mighty Hammer can use this ore to Refine. +-------------------------- +Weight: 1 +# +16394# +A box that contains 10 HD Oridecon inside. +-------------------------- +Item Description: +High Density Oridecon that has been buried deep underground. +Used as a material to strengthen weapons currently from Refine Levels 7 through 9. +This item's density ensures that Refine attempts will not break the weapon and if the attempt fails it will only downgrade by 1. +Only a Blacksmith named Mighty Hammer can use this ore to Refine. +-------------------------- +Weight: 1 +# +16395# +A box that contains 5 HD Elunium inside. +-------------------------- +Item Description: +High Density Elunium that has been buried deep underground. +Used as a material to strengthen armor currently from Refine Levels 7 through 9. +This item's density ensures that Refine attempts will not break the armor and if the attempt fails it will only downgrade by 1. +Only a Blacksmith named Mighty Hammer can use this ore to Refine. +-------------------------- +Weight: 1 +# +16396# +A box that contains 10 HD Elunium inside. +-------------------------- +Item Description: +High Density Elunium that has been buried deep underground. +Used as a material to strengthen armor currently from Refine Levels 7 through 9. +This item's density ensures that Refine attempts will not break the armor and if the attempt fails it will only downgrade by 1. +Only a Blacksmith named Mighty Hammer can use this ore to Refine. +-------------------------- +Weight: 1 +# +16397# +A box that contains a Virgo Diadem Headgear. +-------------------------- +Weight: 1 +# +16398# +A box that contains a Virgo Crown Headgear. +-------------------------- +Weight: 1 +# +16399# +A box that contains a Virgo Diadem Headgear. +-------------------------- +Weight: 1 +# +16400# +A box that contains 5 Purified Oridecon inside. +-------------------------- +Weight: 1 +# +16401# +A box that contains 10 Purified Oridecon inside. +-------------------------- +Weight: 1 +# +16402# +A box that contains 5 Purified Eluminium inside. +-------------------------- +Weight: 1 +# +16403# +A box that contains 10 Purified Eluminium inside. +-------------------------- +Weight: 1 +# +16405# +A box that contains 1 Midgard Coin inside. +-------------------------- +Weight: 1 +# +16406# +A box that contains 1 Midgard Coin inside. +-------------------------- +Weight: 1 +# +16407# +A box that contains 1 Freya Ring R inside. Available for One week. +-------------------------- +Weight: 1 +# +16408# +A box that contains 1 Freya Ring R inside. Available for One week. +-------------------------- +Weight: 1 +# +16409# +A chrysanthemum scroll that represents of beautiful fall season. +-------------------------- +Weight: 1 +# +16410# +A box that contains 1 Qing Headdress in it. +-------------------------- +When you wear it, you will feel a gorgeous atmosphere of Qing nobility. +LUK +3 +MDEF +4 +When you are under physical attack, it uses Lv5 Mammonite skill by low chance. +(if you don't have zeny, it doesn't work.) +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 60 +-------------------------- +Weight: 1 +# +16412# +A box that contains 1 Ice Ear Wing in it. +-------------------------- +Earrings made of ice and other special chemicals. If you wear these, you can beat off the heat by its cool energy! +LUK +1. +When receiving any physical attack, Autospell Coldbolt Lv5 will be activated at a low rate. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +Weight: 0 +# +16414# +A Box that contains 1 Turtle Hat. +Once opened, the Turtle Hat is account bound. +-------------------------- +Description: +A disgruntled snapping turtle sits above your head. Count your fingers after putting this on. +AGI +1. +Has a low chance of casting Level 3 Decreases AGI on your enemy when receiving physical damage. +Account Bound. +Event Stats from 7/8 -8/5: +Def +3, +Increases damage to turtle monsters on Turtle Island by 20%. +Decreases damage from turtle monsters on Turtle Island by 20%. +If upgraded to +7 or higher: Adds 25% EXP bonus for any monster killed. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +-------------------------- +Weight: 1 +# +16415# +A Box that contains 1 Turtle Hat. +Once opened, the Turtle Hat is account bound. +-------------------------- +Description: +A disgruntled snapping turtle sits above your head. Count your fingers after putting this on. +AGI +1. +Has a low chance of casting Level 3 Decreases AGI on your enemy when receiving physical damage. +Account Bound. +Event Stats from 7/8 -8/5: +Def +3, +Increases damage to turtle monsters on Turtle Island by 20%. +Decreases damage from turtle monsters on Turtle Island by 20%. +If upgraded to +7 or higher: Adds 25% EXP bonus for any monster killed. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +-------------------------- +Weight: 1 +# +16416# +A box holding 1 Taurus Diadem +-------------------------- +Weight: 1 +# +16417# +A box holding 1 Taurus Crown +-------------------------- +Weight: 1 +# +16418# +A box containing 500 Giant Fly Wings. +-------------------------- +An enchanted, giant wing from an ancient creatures. Enables instant teleportation of many people when used by a Party Master. +-------------------------- +Weight: 1 +# +16419# +A box containing 30 Greed Scrolls, whicheach enable a single cast of Greed. +This scroll has the same restrictions as the normal casting of Greed; some maps do not allow Greed to be used. +-------------------------- +Weight: 1 +# +16420# +A pack of consumables to +aid the adventurer on the +long journey. +-------------------------- +Contains: +10 Battle Manual +10 Bubble Gum +20 Lv 10 AGI Scroll +20 Level 10 Blessing Scroll +10 Token of Siegfried +10 Life Insurance +5 Kafra Card +10 Stew of Immortality +10 Hwegelmir's Tonic +10 Steamed Desert Scorpions +10 Cooked Nine Tail's Tails +10 Steamed Tongue +10 Dragon Breath Cocktail +-------------------------- +Weight: 1 +# +16421# +A box that contains 1 Written Oath of Marriage, to be used on your wedding day. +-------------------------- +Weight: 1 +# +16422# +A box that contains: +Rental Item +1 Baphomet Horns +Duration: 7 Days after opening. +A headgear made from the horns of Baphomet. +Inflicts 12% more damage to Demihuman. +Increases ATK based on the wearer's Job Level. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +# +16424# +A box that contains: 7 days rental Executioner. +Rental Item +A gruesome sword used to behead criminals judged with the death penalty. +-------------------------- +Ignores physical defense of Demi-Human race by 100%. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 20% +-------------------------- +Increases damage taken from monsters of Demi-Human race by 10%. +-------------------------- +Type: Two-Handed Sword +Attack: 190 +Weight: 0 +Element: Shadow +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordman classes +# +16425# +A box that contains: +Rental Item +1 Cutlas +Duration: 7 Days after opening. +A one-handed sword +popularized by its use +by sea adventurers. +Enables use of +Level 5 Bash. +STR +2 +DEF +1 +-------------------------- +Type: One-Handed Sword +Attack: 185 +Weight: 1 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, +Merchant, and +Thief Classes +# +16426# +A box that contains: +Rental Item +1 Moonlight Sword +Duration: 7 Days after opening. +A dagger imbued with +lunar spirit and the power to drain an enemy's soul. +Regain 3 SP +with each attack. +MaxSP +10% +-------------------------- +Type: Dagger +Attack: 85 +Weight: 71 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, +Thief Classes, Soul Linker and Ninja +# +16427# +A box that contains: +Rental Item +1 Wrench +Duration: 7 Days after opening. +A heavy tool with many practical applications. +Random chance to inflict Stun, Blind, Poison +or Frozen statuses with +each attack. +-------------------------- +Type: Mace +Attack: 150 +Weight: 1 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Acolyte +# +16428# +A box that contains: +Rental Item +1 Solar Sword +Duration: 7 Days after opening. +A one-handed sword +adorned with an engraving of the sun, symbolizing battle spirit and vigor. +Regains 1% of the damage against its target as HP with each attack. +Drains 15 SP from its +owner every 10 seconds. +-------------------------- +Type: One-Handed Sword +Attack: 120 +Weight: 1 +Element: Fire +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, +Merchant, and +Thief Classes +# +16429# +A box that contains: +Rental Item +1 Tomahawk +Duration: 7 Days after opening. +A light axe imbued with the Wind element which can be hurled at enemies. +Enables use of +Tomahawk Throwing. +-------------------------- +Type: One-Handed Axe +Attack: 200 +Weight: 1 +Element: Wind +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman and Merchant +# +16430# +A box that contains: +Rental Item +1 Rudra Bow +Duration: 7 Days after opening. +A bow imbued with the +sacred essense of Rudra, one of the ancient gods. +Adds 50% tolerance to the Poison, Curse, Silence, +Confuse and Blind statuses. Enables use of +Level 1 Heal and +Level 1 Cure. INT +5 +-------------------------- +Type: Bow +Attack: 185 +Weight: 1 +Element: Holy +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Archer Class; +Rogue +# +16431# +A box that contains: +Rental Item +1 Poll Axe +Duration: 7 Days after opening +A weapon consisting +of an axe head mounted +on a long pole that +is designed to break +through thick armor. +STR +1, INT +2, DEX +1 +-------------------------- +Type: One-Handed Spear +Attack: 195 +Weight: 1 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Swordman classes +# +16432# +A box containing 10x Battle Manual, 30x Adrenaline Rush Scroll and 5x Toktok Candy. +-------------------------- +Weight: 1 +# +16433# +A box containing 10x Battle Manual, 30x Adrenaline Rush Scroll and 5x Toktok Candy. +-------------------------- +Weight: 1 +# +16434# +A box containing 10x Battle Manual, 10x Mimic Summon Scroll and 5x Toktok Candy. +-------------------------- +Weight: 1 +# +16435# +A box containing 10x Battle Manual, 10x Mimic Summon Scroll and 5x Toktok Candy. +-------------------------- +Weight: 1 +# +16436# +A box that contains 1 Libra Crown. +DEX +3, +Increases Resistance to Wind elemental attacks by 7%. +Refine Level +7: +MATK +3% +Refine Level +9: +MATK +5% and Random chance to auto-cast Lv 5 Frost Nova when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16437# +A box that contains 1 Libra Crown. +DEX +3, +Increases Resistance to Wind elemental attacks by 7%. +Refine Level +7: +MATK +3% +Refine Level +9: +MATK +5% and Random chance to auto-cast Lv 5 Frost Nova when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16438# +A box that contains 1 Libra Diadem. +ATK +7 +Refine Level +7: +has a chance of casting Lv 2 Mild Wind while dealing physical attack. +Refine Level +9: +FLEE +5 and physical attack power +3%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16439# +A box that contains 1 Libra Diadem. +ATK +7 +Refine Level +7: +has a chance of casting Lv 2 Mild Wind while dealing physical attack. +Refine Level +9: +FLEE +5 and physical attack power +3%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16440# +A box that contains 1 Filir Wings inside. +-------------------------- +Weight: 1 +# +16441# +A box that contains 1 Filir Wings inside. +-------------------------- +Weight: 1 +# +16442# +A box that contains 1 Shaman Hat inside. +-------------------------- +Weight: 1 +# +16443# +A box that contains 1 Shaman Hat inside. +-------------------------- +Weight: 1 +# +16444# +A box that contains 1 Crown Cap inside. +-------------------------- +Weight: 1 +# +16445# +A box that contains 1 Crown Cap inside. +-------------------------- +Weight: 1 +# +16446# +A Pegasus scroll. +-------------------------- +Weight: 1 +# +16447# +A box that contains 1 Scorpio Crown. +-------------------------- +A magnificent crown created to pay tribute to the 8th sign of the zodiac, Scorpio the Scorpion. Attached to the crown is a Topaz gemstone, the birthstone for those born under this sign. +ATK +5. Reduces After Attack Delay by 3%. +Decreases damage taken from Water elemental attacks by 5%. +Refine Level +7: +when attacking, has a chance of auto-casting Lv 3 Mild Wind. +Refine Level +8: +Increases Attack Speed (Decreases After Attack Delay by 2%). +Refine Level +9: +Adds a chance of auto-casting Lv 5 Frost Nova. +Refine Level +10: +Increases Attack Speed (Decreases After Attack Delay by 2%), ATK +5. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +Weight: 1 +# +16448# +A box that contains 1 Scorpio Diadem. +A magnificent diadem created to pay tribute to the 8th sign of the zodiac, Scorpio the Scorpion. Attached to the crown is a Topaz gemstone, the birthstone for those born under this sign. +DEX +2. +Refine Level +7: +DEX +1, ATK +5. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +Weight: 1 +# +16449# +A box that contains 1 Scorpio Crown. +A magnificent crown created to pay tribute to the 8th sign of the zodiac, Scorpio the Scorpion. Attached to the crown is a Topaz gemstone, the birthstone for those born under this sign. +ATK +5. Reduces After Attack Delay by 3%. +Decreases damage taken from Water elemental attacks by 5%. +Refine Level +7: +when attacking, has a chance of auto-casting Lv 3 Mild Wind. +Refine Level +8: +Increases Attack Speed (Decreases After Attack Delay by 2%). +Refine Level +9: +Adds a chance of auto-casting Lv 5 Frost Nova. +Refine Level +10: +Increases Attack Speed (Decreases After Attack Delay by 2%), ATK +5. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +Weight: 1 +# +16450# +A box that contains 1 Scorpio Diadem. +A magnificent diadem created to pay tribute to the 8th sign of the zodiac, Scorpio the Scorpion. Attached to the crown is a Topaz gemstone, the birthstone for those born under this sign. +DEX +2. +Refine Level +7: +DEX +1, ATK +5. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +Weight: 1 +# +16451# +A box that contains 1 Crow Hat inside. +-------------------------- +Weight: 1 +# +16452# +A box that contains 1 Rage of Luster inside. +-------------------------- +Weight: 1 +# +16453# +A box that contains 1 Triangle Rune Cap inside. +-------------------------- +Weight: 1 +# +16454# +A box that contains 1 Rage of Luster inside. +-------------------------- +Weight: 1 +# +16455# +A box that contains 1 Triangle Rune Cap inside. +-------------------------- +Weight: 1 +# +16456# +An egg glittering as a clean water. Rage of a splendor, It would be included a Ribbon of Bride item! +-------------------------- +Weight: 1 +# +16457# +A bough scroll. +-------------------------- +Weight: 1 +# +16458# +A box that contains 1 Love Dad inside. +-------------------------- +Weight: 1 +# +16459# +A box that contains 1 Ant Queen Crown inside. +-------------------------- +Weight: 1 +# +16460# +A box that contains 1 Ant Queen Crown inside. +-------------------------- +Weight: 1 +# +16461# +A box that contains 1 Red Wing Hat +-------------------------- +A red driver's hat decorated with white wings. +STR +1, INT +1, DEX +1. +Refine Level +7: +Increases ATK and MATK by 2%. +Refine Level +9: +aditional Increases ATK and MATK by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16462# +A box that contains 1 Red Wing Hat +-------------------------- +A red driver's hat decorated with white wings. +STR +1, INT +1, DEX +1. +Refine Level +7: +Increases ATK and MATK by 2%. +Refine Level +9: +aditional Increases ATK and MATK by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16463# +A box that contains 1 NoFear Belts inside. +Available for 90 days. +-------------------------- +Weight: 1 +# +16464# +A box that contains 1 NoFear Shoes inside. +Available for 90 days. +-------------------------- +Weight: 1 +# +16465# +A box that contains 1 NoFear Underwear inside. +Available for 90 days. +-------------------------- +Weight: 1 +# +16466# +An egg shining with a clean water of blood. A rabbit bonit would be poped from this egg! +-------------------------- +Weight: 1 +# +16467# +A box that contains 1 Christmas Card inside. Available for 1 week. +-------------------------- +Weight: 1 +# +16468# +A box that contains 1 Christmas Card inside. Available for 1 week. +-------------------------- +Weight: 1 +# +16469# +A box that contains 1 Christmas Card inside. Available for 1 week. +-------------------------- +Weight: 1 +# +16470# +A box that contains 1 Christmas Card inside. Available for 1 week. +-------------------------- +Weight: 1 +# +16481# +A box containing 10 small life potion. +For 10 minutes, you regenerate 5% of your Maximum HP every 5 seconds. +Can not be used while in Frenzy. +If you die don't lost the effect!! +-------------------------- +Weight: 1 +# +16483# +An abrasive that adds sharpness to a weapon. +Increases Critical by 30 for 5 minutes. +If you are incapacitated, the item effect will disappear. +When assassin class using only give 15 critical rate +Using katar weapon type will double critical rate to 30. +-------------------------- +Weight: 1 +# +16492# +A box containing 1 Bunny Band. Available for 7 days. +-------------------------- +Weight: 1 +# +16504# +A box containing 10 tasty and sweet bubble gum. +Item drop rate Increases by 100% for 30 minutes. +If you die don't lost the effect!! +-------------------------- +Weight: 1 +# +16505# +Gives STR +10 for 30 minutes. Do not spoil the dish requires special treatment. +-------------------------- +Weight: 1 +# +16506# +Gives AGI +10 for 30 minutes. Do not spoil the dish requires special treatment. +-------------------------- +Weight: 1 +# +16507# +Gives INT +10 for 30 minutes. Do not spoil the dish requires special treatment. +-------------------------- +Weight: 1 +# +16508# +Gives DEX +10 for 30 minutes. Do not spoil the dish requires special treatment. +-------------------------- +Weight: 1 +# +16509# +Gives LUK +10 for 30 minutes. Do not spoil the dish requires special treatment. +-------------------------- +Weight: 1 +# +16510# +Gives VIT +10 for 30 minutes. Do not spoil the dish requires special treatment. +-------------------------- +Weight: 1 +# +16514# +A box containing 10 Blessing Scroll Lv10. +-------------------------- +Weight: 1 +# +16515# +A box containing 10 Increases agility scroll Lv 10. +-------------------------- +Weight: 1 +# +16543# +A box containing 1 snow man hat. +A hat that is a constant reminder of the Winter season. +STR +1, INT +1, MDEF +3, +Decreases damage taken from Water elemental attacks by 7%. +when defeating monsters, has a low chance of dropping Buche De Noel or Candy Canes. +When dealing physical or magical damage, has a low chance of activating Lv 1 Frost Joker. +Refine Level +8: +activates Lv 5 Frost Joker. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16544# +A box containing 1 snow man hat. +A hat that is a constant reminder of the Winter season. +STR +1, INT +1, MDEF +3, +Decreases damage taken from Water elemental attacks by 7%. +when defeating monsters, has a low chance of dropping Buche De Noel or Candy Canes. +When dealing physical or magical damage, has a low chance of activating Lv 1 Frost Joker. +Refine Level +8: +activates Lv 5 Frost Joker. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16554# +A box that contains 1 pair of Elven Sunglasses +Description: +Even elves are very cool creatures. So naturally they wear sunglasses. +Increases resistance against Blind status by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +Weight: 1 +# +16555# +Inside the box is a single Reset Stone. +-------------------------- +Take it and head toReseterprontera,146,304,0,100,0,0 +Prontera 146 304 +-------------------------- +Base Lv 1-40: reset for free. +Base Lv 41-75: 1 Premium Reset Stone required. +Base Lv 76-85: 2 Premium Reset Stones required. +Base Lv 86-98: 3 Premium Reset Stones required. +Base Lv 99: 4 Premium Reset Stones required. +-------------------------- +Weight: 0 +Weight: 1 +# +16556# +A box that contains 1 Reset Stone inside. +Can only be put into storage. +Description: +This item is used to access various Premium Services. +-------------------------- +All 3rd classes job changes require [1 Reset Stone] or VIP Status on the account. +-------------------------- +Sam Status is accepting Reset Stones to reset your stat points. +You can find him in Payon around 180 115. +Reset Stones Required per Level: +Base Level 1 ~ 40 [1 Reset Stone] +Base Level 41 ~ 70 [2 Reset Stone] +Base Level 71 ~ 90 [3 Reset Stone] +Base Level 91 ~ 110 [4 Reset Stone] +Base Level 111 ~ 125 [5 Reset Stone] +Base Level 126 ~ 140 [6 Reset Stone] +Base Level 141 ~ 150 [7 Reset Stone] +Weight: 0 +-------------------------- +Weight: 1 +# +16563# +A box holding 5 Superior BattleManual. +Exp rate is increased by 100% for 30 minutes +-------------------------- +Weight: 1 +# +16564# +A scroll that imbued with Drangon spirit. +-------------------------- +Weight: 1 +# +16565# +A box that cotains 1 Capricorn Crown +DEX +2, VIT +2 +Refine Level +7: +when melee-attacking, has a chance of auto-casting Lv 1 Mild Wind (Earth endow). +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16566# +A box that cotains 1 Capricorn Crown +DEX +2, VIT +2 +Refine Level +7: +when melee-attacking, has a chance of auto-casting Lv 1 Mild Wind (Earth endow). +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16567# +A box that cotains 1 Capricorn Diadem +DEX +2, MDEF +5. +Decreases damage taken from Earth elemental attacks by 5%. +Refine Level +7: +INT +2. +Refine Level +8: +decreases casting time by 3%. +Refine Level +9: +Increases the effectiveness of Heal and Sanctuary skills by 4%. +Refine Level +10: +when attacked, has a low chance of auto-casting Lv 5 Hammer Fall. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16568# +A box that cotains 1 Capricorn Diadem +DEX +2, MDEF +5. +Decreases damage taken from Earth elemental attacks by 5%. +Refine Level +7: +INT +2. +Refine Level +8: +decreases casting time by 3%. +Refine Level +9: +Increases the effectiveness of Heal and Sanctuary skills by 4%. +Refine Level +10: +when attacked, has a low chance of auto-casting Lv 5 Hammer Fall. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16569# +Summer package for last summer vacation! You might get something special! +-------------------------- +Weight: 10 +# +16570# +A box containing 1 book of the Knights of Muscle. +-------------------------- +Weight: 0 +# +16573# +A box containing 1 Skull Hood. +-------------------------- +This frightening hooded mask is so scary that you don't have to worry about the nasty ghosts bothering you as you Trick or Treat! +-------------------------- +Decreases damage taken from Undead elemental and Demon race monsters by 10%. +-------------------------- +Refine Level +7: +Adds a chance for 10 sec of increasing HIT by 10 and Critical by 30 when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper, Middle +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +-------------------------- +Weight: 1 +# +16574# +A box containing 1 Skull Hood. +-------------------------- +This frightening hooded mask is so scary that you don't have to worry about the nasty ghosts bothering you as you Trick or Treat! +-------------------------- +Decreases damage taken from Undead elemental and Demon race monsters by 10%. +-------------------------- +Refine Level +7: +Adds a chance for 10 sec of increasing HIT by 10 and Critical by 30 when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper, Middle +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +-------------------------- +Weight: 1 +# +16575# +A box containing 1 2011 Pagdayaw in it. +-------------------------- +A headgear which is made of many kinds of property rings. It looks very luxurious and charming. Reduces all damage from Demihuman by 10%, +Decreases damage taken from Water, Fire, Wind by 5%, Decreases damage taken from Ghost elemental by 10%, Increases Physical Damage against enemies of Ghost element Demihuman by 50%. +30 days Rental Item. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle, Lower +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +Weight: 1 +# +16576# +A special scroll seems nothing inside, but you will be surprised after open it. +-------------------------- +Weight: 1 +# +16578# +A scroll that imbued with burning passion heart. +-------------------------- +Weight: 1 +# +16579# +A scroll that imbued with spirit of legendary Phoenix from Rune-Midgard Kingdom. +-------------------------- +Weight: 1 +# +16580# +A box containing Lacma. +A short blade with beautiful decoration of gemstone. +-------------------------- +Refine Level +3: +ATK +40 +MATK +40 +-------------------------- +Refine Level +6: +Increases Physical Damage against enemies of Medium size by 8%. +Random chance to nullifie weapon damage penalty resulting from monster's size for 5 second when dealing physical damage. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Medium size by 20%. +-------------------------- +Refine Level +12: +Nullifies weapon damage penalty resulting from monster's size. +-------------------------- +When VIP status active: +Restore 1 SP for every hit. +Increases Physical Damage against enemies of Medium size by 5% +-------------------------- +Refine Level +8: +Nullifies weapon damage penalty resulting from monster's size. +-------------------------- +Refine Level +9: +has low chance to restore 2 SP for every hit for 5 second. +-------------------------- +Type: Dagger +Attack: 45 +Weight: 65 +Weapon Level: 3 +-------------------------- +Requirement: +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +-------------------------- +Weight: 1 +# +16581# +A box containing Lacma. +A short blade with beautiful decoration of gemstone. +-------------------------- +Refine Level +3: +ATK +40 +MATK +40 +-------------------------- +Refine Level +6: +Increases Physical Damage against enemies of Medium size by 8%. +Random chance to nullifie weapon damage penalty resulting from monster's size for 5 second when dealing physical damage. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Medium size by 20%. +-------------------------- +Refine Level +12: +Nullifies weapon damage penalty resulting from monster's size. +-------------------------- +When VIP status active: +Restore 1 SP for every hit. +Increases Physical Damage against enemies of Medium size by 5% +-------------------------- +Refine Level +8: +Nullifies weapon damage penalty resulting from monster's size. +-------------------------- +Refine Level +9: +has low chance to restore 2 SP for every hit for 5 second. +-------------------------- +Type: Dagger +Attack: 45 +Weight: 65 +Weapon Level: 3 +-------------------------- +Requirement: +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +-------------------------- +Weight: 1 +# +16582# +A box containing 1 Red Bunny Band. +-------------------------- +Weight: 1 +# +16584# +A box containing 1 Sloth Hat. +-------------------------- +Weight: 1 +# +16585# +A box containing 1 Sloth Hat. +-------------------------- +Weight: 1 +# +16586# +A box containing 1 Duneyrr Hat. +-------------------------- +Weight: 1 +# +16587# +A box containing 1 Duneyrr Hat. +-------------------------- +Weight: 1 +# +16588# +A box that contains 6 headgears. Open the box and receive one of 6 thought bubble headgears. +Contains one of the following: +Guildsman Recruiter Hat +Party Recruiter Hat +Friend Recruiter Hat +Bf Recruiter Hat +Gf Recruiter Hat +AFK Hat +-------------------------- +Weight: 1 +# +16589# +A box that contains 6 headgears. Open the box and receive one of 6 thought bubble headgears. +Contains one of the following: +Guildsman Recruiter Hat +Party Recruiter Hat +Friend Recruiter Hat +Bf Recruiter Hat +Gf Recruiter Hat +AFK Hat +-------------------------- +Weight: 1 +# +16590# +A box that contains 6 headgears. Open the box and receive one of 6 thought bubble headgears. +Contains one of the following: +Guildsman Recruiter Hat +Party Recruiter Hat +Friend Recruiter Hat +Bf Recruiter Hat +Gf Recruiter Hat +AFK Hat +-------------------------- +Weight: 1 +# +16591# +Summer package for summer vacation in Brazil! You can get something special! +-------------------------- +Weight: 10 +# +16592# +A box containing 1 Family Hat. +-------------------------- +Weight: 1 +# +16593# +A box containing 1 Family Hat. +-------------------------- +Weight: 1 +# +16596# +A box containing 1 Helm of Abyss. +-------------------------- +Helmet worn by an Abyssal Knight. It is resistant to strong attacks, but rather vulnerable to weak attacks. +-------------------------- +Decreases damage taken from Boss class by 10%. +-------------------------- +Increases damage taken from monsters of Normal class by 5%. +-------------------------- +Type: Headgear +Defense: 9 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Swordsman, Merchant and Thief classes +-------------------------- +Weight: 1 +# +16597# +A box containing 1 Helm of Abyss. +-------------------------- +Helmet worn by an Abyssal Knight. It is resistant to strong attacks, but rather vulnerable to weak attacks. +-------------------------- +Decreases damage taken from Boss class by 10%. +-------------------------- +Increases damage taken from monsters of Normal class by 5%. +-------------------------- +Type: Headgear +Defense: 9 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Swordsman, Merchant and Thief classes +-------------------------- +Weight: 1 +# +16598# +A box containing 5 Energizing Potions and 1 Lucky Egg. +-------------------------- +A leap that temporarily increases the combat power by activating the condition. +The 1.5L capacity is only scheduled for release. +Energizing Potion: ATK, MATK +2% for 2 minutes. Increases recovery from the heal skill and recovery items by 10%. +The effect can be dispelled and will disappear upon death. +-------------------------- +Weight: 1 +# +16599# +A box containing 5 Energizing Potions and 1 Lucky Egg. +-------------------------- +A leap that temporarily increases the combat power by activating the condition. +The 1.5L capacity is only scheduled for release. +Energizing Potion: ATK, MATK +2% for 2 minutes. Increases recovery from the heal skill and recovery items by 10%. +The effect can be dispelled and will disappear upon death. +-------------------------- +Weight: 1 +# +16601# +A box containing 1 Blue Arara Hat. +-------------------------- +Weight: 1 +# +16602# +A box containing 1 Blue Arara Hat. +-------------------------- +Weight: 1 +# +16603# +A box containing 1 Dropping Boto Hat. +-------------------------- +Weight: 1 +# +16604# +A box containing 1 Dropping Boto Hat. +-------------------------- +Weight: 1 +# +16605# +A box containing 1 Tendrillion Hat. +-------------------------- +Weight: 1 +# +16606# +A box containing 1 Tendrillion Hat. +-------------------------- +Weight: 1 +# +16607# +Contains 2 Bubble Gum. +-------------------------- +Weight: 1 +# +16608# +Contains 4 Bubble Gum. +-------------------------- +Weight: 1 +# +16615# +A box that contains 1 Charming Ribbon. +Description: +A pretty red ribbon decorated with a pink heart in the middle. +-------------------------- +Decreases damage taken from Undead elemental and Demon race monsters by 5%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +-------------------------- +Weight: 1 +# +16616# +A box that contains 1 Charming Ribbon. +Description: +A pretty red ribbon decorated with a pink heart in the middle. +-------------------------- +Decreases damage taken from Undead elemental and Demon race monsters by 5%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +-------------------------- +Weight: 1 +# +16619# +A box containing 1 Yellow Bunnyband. +-------------------------- +Weight: 1 +# +16620# +A box containing 1 Yellow Bunnyband. +-------------------------- +Weight: 1 +# +16621# +A box containing 1 Pink Bunnyband. +-------------------------- +Weight: 1 +# +16622# +A box containing 1 Pink Bunnyband. +-------------------------- +Weight: 1 +# +16623# +A box containing 1 Green Bunnyband. +-------------------------- +Weight: 1 +# +16624# +A box containing 1 Green Bunnyband. +-------------------------- +Weight: 1 +# +16625# +A box containing 1 Half Asprika. +Available for 7 days. +-------------------------- +Rental Item +A wing made of all lights that exist in the world. It's name means \ +. +-------------------------- +FLEE +15 +MDEF +2 +-------------------------- +Decreases damage taken from melee physical attacks of all elements by 15%. +-------------------------- +Enables the use of Level 1 Teleport. +-------------------------- +Indestructible in battle +-------------------------- +Type: Garment +Defense: 20 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 47 +-------------------------- +Weight: 1 +# +16626# +A box containing 1 Half Megingjord. +Available for 7 days. +-------------------------- +Rental Item +A legendary belt rumored to be owned by Thor, the god of thunder. Increases its wearer's strength. +-------------------------- +STR +20 +DEF +1 +MDEF +3 +-------------------------- +Increases STR bonus based on character's base Level +-------------------------- +Base Level at least 120: +Increases Physical Damage against enemies of Boss class by 5%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 47 +-------------------------- +Weight: 1 +# +16627# +A box containing 1 Half Brisingamen. +Available for 7 days. +-------------------------- +Rental Item +A legendary necklace worn by Freija, the goddess of beauty. +-------------------------- +STR, AGI, DEX, VIT +3, +INT, LUK +5 +DEF +1 +MDEF +2 +-------------------------- +Increases Healing skills effectiveness by 3%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 47 +-------------------------- +Weight: 1 +# +16628# +A box containing 1 Half Brynhild. +Available for 7 days. +-------------------------- +Rental Item +Brynhild is one of the valiant valkyries, meaning 'the warrior's armor'. +-------------------------- +Increases MaxHP by +20*Base Level. +Increases MaxSP by +5*Base Level. +MATK +5% +MDEF +10 +ATK +5% +-------------------------- +Prevents knock-back effect. +-------------------------- +Indestructible in battle +-------------------------- +Type: Armor +Defense: 60 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 47 +-------------------------- +Weight: 1 +# +16629# +A box containing 1 Grand Peco Headdress. +-------------------------- +An elaborate multi-colored headdress made from the feathers of a Grand Peco. +-------------------------- +Increases Physical Damage against enemies of Demi-Human and Brute race by 7%. +-------------------------- +Random chance to inflict Curse status on the target when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +# +16630# +A box containing 1 Grand Peco Headdress. +-------------------------- +An elaborate multi-colored headdress made from the feathers of a Grand Peco. +-------------------------- +Increases Physical Damage against enemies of Demi-Human and Brute race by 7%. +-------------------------- +Random chance to inflict Curse status on the target when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +# +16631# +2010 winter collection, Aributa Scroll. Limited edition only! +-------------------------- +Weight: 1 +# +16632# +A tightly closed box created by her terrible loneliness. Now it can be opened. +-------------------------- +Weight: 100 +# +16633# +A sweet and crunchy Bubble Gum. +Contains 10 Bubble Gum+. +-------------------------- +Weight: 1 +# +16634# +A box containing 1 Spiked Scarf. Available for 2 hours. +-------------------------- +Rental Item +A scarf with terrifying spikes. +-------------------------- +ATK +30 +MaxHP -2% +-------------------------- +When VIP status active: +All Stats +1 +MaxHP +2% +Increases Ranged Physical Damage by 2%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16635# +A box containing 1 Spiked Scarf. Available for 2 hours. +-------------------------- +Rental Item +A scarf with rainbow color. +-------------------------- +MATK +30 +MaxSP -2% +-------------------------- +When VIP status active: +All Stats +1 +MaxSP +2% +Decreases Variable Casting Time by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16636# +A box containing 1 Spiked Scarf. Available for 4 hours. +-------------------------- +Rental Item +A scarf with terrifying spikes. +-------------------------- +ATK +30 +MaxHP -2% +-------------------------- +When VIP status active: +All Stats +1 +MaxHP +2% +Increases Ranged Physical Damage by 2%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16637# +A box containing 1 Rainbom Scarf. Available for 4 hours. +-------------------------- +Rental Item +A scarf with rainbow color. +-------------------------- +MATK +30 +MaxSP -2% +-------------------------- +When VIP status active: +All Stats +1 +MaxSP +2% +Decreases Variable Casting Time by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16638# +A box containing 1 Life Ribbon. Available for 1 hours. +-------------------------- +Rental Item +Yellow, green matching cute ribbon item. +-------------------------- +INT +1 +MDEF +2 +-------------------------- +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +When VIP status active: +All Stats +1 +INT +2 +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16639# +A box containing 1 Life Ribbon. Available for 2 hours. +-------------------------- +Rental Item +Yellow, green matching cute ribbon item. +-------------------------- +INT +1 +MDEF +2 +-------------------------- +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +When VIP status active: +All Stats +1 +INT +2 +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16640# +A box containing 1 Life Ribbon. Available for 4 hours. +-------------------------- +Rental Item +Yellow, green matching cute ribbon item. +-------------------------- +INT +1 +MDEF +2 +-------------------------- +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +When VIP status active: +All Stats +1 +INT +2 +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16641# +A box containing 1 Spiked Scarf. Available for 1 hour. +-------------------------- +Rental Item +A scarf with terrifying spikes. +-------------------------- +ATK +30 +MaxHP -2% +-------------------------- +When VIP status active: +All Stats +1 +MaxHP +2% +Increases Ranged Physical Damage by 2%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16642# +A box containing 1 Rainbom Scarf. Available for 1 hour. +-------------------------- +Rental Item +A scarf with rainbow color. +-------------------------- +MATK +30 +MaxSP -2% +-------------------------- +When VIP status active: +All Stats +1 +MaxSP +2% +Decreases Variable Casting Time by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16643# +A box containing 1 Spiked Scarf. Available for 2 hours. +-------------------------- +Rental Item +A scarf with terrifying spikes. +-------------------------- +ATK +30 +MaxHP -2% +-------------------------- +When VIP status active: +All Stats +1 +MaxHP +2% +Increases Ranged Physical Damage by 2%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16644# +A box containing 1 Rainbom Scarf. Available for 2 hours. +-------------------------- +Rental Item +A scarf with rainbow color. +-------------------------- +MATK +30 +MaxSP -2% +-------------------------- +When VIP status active: +All Stats +1 +MaxSP +2% +Decreases Variable Casting Time by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16645# +A box containing 1 Spiked Scarf. Available for 4 hours. +-------------------------- +Rental Item +A scarf with terrifying spikes. +-------------------------- +ATK +30 +MaxHP -2% +-------------------------- +When VIP status active: +All Stats +1 +MaxHP +2% +Increases Ranged Physical Damage by 2%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16646# +A box containing 1 Rainbom Scarf. Available for 4 hours. +-------------------------- +Rental Item +A scarf with rainbow color. +-------------------------- +MATK +30 +MaxSP -2% +-------------------------- +When VIP status active: +All Stats +1 +MaxSP +2% +Decreases Variable Casting Time by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16647# +A box containing 1 Life Ribbon. Available for 1 hour. +-------------------------- +Rental Item +Yellow, green matching cute ribbon item. +-------------------------- +INT +1 +MDEF +2 +-------------------------- +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +When VIP status active: +All Stats +1 +INT +2 +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16648# +A box containing 1 Life Ribbon. Available for 2 hours. +-------------------------- +Rental Item +Yellow, green matching cute ribbon item. +-------------------------- +INT +1 +MDEF +2 +-------------------------- +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +When VIP status active: +All Stats +1 +INT +2 +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16649# +A box containing 1 Life Ribbon. Available for 4 hours. +-------------------------- +Rental Item +Yellow, green matching cute ribbon item. +-------------------------- +INT +1 +MDEF +2 +-------------------------- +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +When VIP status active: +All Stats +1 +INT +2 +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16650# +A box containing 1 Gemini Diadem. +-------------------------- +A magnificent Diadem created to pay tribute to the 3rd sign of the zodiac, Gemini the Twins. +Attached to the crown is an Alexandrite gemstone, the birthstone for those born under this sign. +-------------------------- +DEX +2 +-------------------------- +Decreases After Skill Delay by 2%. +-------------------------- +Decreases damage taken from Wind elemental attacks by 5%. +-------------------------- +Refine Level +7: +DEX +1 +MATK +30 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16651# +A box containing 1 Gemini Crown. +-------------------------- +The crown representing the twin arch, the 3rd position of the zodiac. The birthstone, alexandrite, is embedded. +-------------------------- +AGI +2 +FLEE +10 +Decreases damage taken from Wind elemental attacks by 5%. +-------------------------- +Refine Level +7: +HIT +5 +ATK +30 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Level Requirement: None +-------------------------- +Weight: 1 +# +16652# +2010 winter collection, Flame Scroll. Limited edition only! +-------------------------- +Weight: 1 +# +16653# +A box that contains 10 Battle Manuals. +-------------------------- +This well written, detailed manual +explains effective battle methods. +-------------------------- +Type: Supportive +Effect: Experience gained +75% +Duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +16655# +A box containing 10 Rapid Life Potions and 1 Lucky Egg. +-------------------------- +Potion contains verious recovery herb juice. Effective for faster wound healing. +Recovers 6% of MaxHP every 3 seconds for 10 minutes. +Not available in berserk condition. +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16656# +A box containing 10 Rapid Life Potions and 1 Lucky Egg. +-------------------------- +Potion contains verious recovery herb juice. Effective for faster wound healing. +Recovers 6% of MaxHP every 3 seconds for 10 minutes. +Not available in berserk condition. +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16657# +A box containing 10 Rapid Life Potions +-------------------------- +Potion contains verious recovery herb juice. Effective for faster wound healing. +Recovers 6% of MaxHP every 3 seconds for 10 minutes. +Not available in berserk condition. +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16658# +A box containing 10 Rapid Life Potions +-------------------------- +Potion contains verious recovery herb juice. Effective for faster wound healing. +Recovers 6% of MaxHP every 3 seconds for 10 minutes. +Not available in berserk condition. +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16659# +Open the box and receive one of the 12 Zodiac Diadem headgears. +Contains one of the following: +Aries Diadem +Taurus Diadem +Gemini Diadem +Cancer Diadem +Leo Diadem +Virgo Diadem +Libra Diadem +Scorpio Diadem +Sagittarius Diadem +Capricorn Diadem +Aquarius Diadem +Pisces Diadem +Weight: 1 +# +16660# +A box containing 1 Spiritual Auger. +-------------------------- +Weight: 1 +# +16661# +A box containing 1 Spiritual Auger. +-------------------------- +Weight: 1 +# +16662# +A box containing 1 Aries Diadem. +-------------------------- +Weight: 1 +# +16663# +A box containing 1 Aries Crown. +-------------------------- +Weight: 1 +# +16666# +A box containing 10 Magic Candys and 1 Lucky Egg. +-------------------------- +A magic candy that can clean your teeth after eat foods. +For 1 minute: +MATK +30 +Decreases Fixed Casting Time by 70%. +Protects from skill cast interruption. +Decreases SP by 90 every 10 seconds. +(3 minutes cooldown) +(When character's KO'ed, the effect will disappear) +-------------------------- +Weight: 1 +# +16667# +A box containing 10 Magic Candys and 1 Lucky Egg. +-------------------------- +A magic candy that can clean your teeth after eat foods. +For 1 minute: +MATK +30 +Decreases Fixed Casting Time by 70%. +Protects from skill cast interruption. +Decreases SP by 90 every 10 seconds. +(3 minutes cooldown) +(When character's KO'ed, the effect will disappear) +-------------------------- +Weight: 1 +# +16672# +A box containing 10 Magic Candys. +-------------------------- +A magic candy that can clean your teeth after eat foods. +For 1 minute: +MATK +30 +Decreases Fixed Casting Time by 70%. +Protects from skill cast interruption. +Decreases SP by 90 every 10 seconds. +(3 minutes cooldown) +(When character's KO'ed, the effect will disappear) +-------------------------- +Weight: 1 +# +16673# +Taiwan's September Zodiac Scroll. Limited edition only! +Wish you good luck to get something nice!! +-------------------------- +Weight: 1 +# +16674# +A box has 10 PCS of New life insurance certificate. +Once you have one, will recover EXP that you might lose when unable to battle. +-------------------------- +Weight: 1 +# +16675# +Special Scroll for this summer! +You might obtain the Splash Hat! +-------------------------- +Weight: 1 +# +16676# +Open the box and receive one of the 12 Zodiac Crown headgears. +Contains one of the following: +Aries Crown +Taurus Crown +Gemini Crown +Cancer Crown +Leo Crown +Virgo Crown +Libra Crown +Scorpio Crown +Sagittarius Crown +Capricorn Crown +Aquarius Crown +Pisces Crown +Weight: 1 +# +16677# +A box with 10 Bargain Hunter's Catalogs. +Description: +Advanced product from the Geffen Magic Academy! +A magical scroll which is able to 'search what items are on sale and what items are being purchased'. Able to sell or buy items from the searched link! +Able to search open vendors only in the same map you're located. +Up to 10 valid searches can be conducted per use. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16678# +A box with 50 Bargain Hunter's Catalogs. +Description: +Advanced product from the Geffen Magic Academy! +A magical scroll which is able to 'search what items are on sale and what items are being purchased'. Able to sell or buy items from the searched link! +Able to search open vendors only in the same map you're located. +Up to 10 valid searches can be conducted per use. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16679# +A box with 10 Bargain Hunter's Catalogs. +Description: +Advanced product from the Geffen Magic Academy! +A magical scroll which is able to 'search what items are on sale and what items are being purchased'. Able to sell or buy items from the searched link! +Able to search open vendors only in the same map you're located. +Up to 10 valid searches can be conducted per use. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16680# +A box with 50 Bargain Hunter's Catalogs. +Description: +Advanced product from the Geffen Magic Academy! +A magical scroll which is able to 'search what items are on sale and what items are being purchased'. Able to sell or buy items from the searched link! +Able to search open vendors only in the same map you're located. +Up to 10 valid searches can be conducted per use. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16681# +a scroll for celebrating indepence in Brazil. You can expect the items. +-------------------------- +Weight: 1 +# +16682# +A box that contains Boarding Halter. Item will be available for a week. +-------------------------- +Weight: 1 +# +16683# +A box that contains Boarding Halter. Item will be available for a month. +-------------------------- +Weight: 1 +# +16689# +A box that contains 1 Garuda Hat +-------------------------- +Description: +A hat which is very unique and rare, made from the feathers of a legendary bird Garuda. +Decreases damage taken from all elements by 5%. +LUK +5, HIT +10, Reduces casting delay by 5%. +-------------------------- +Refine Level +7: +has a chance of getting Mastela Fruit when attacking monsters. +Chance to drop increases by 1% For each Refine Level over 7. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +All classes except Novice +-------------------------- +Weight: 1 +# +16690# +A box that contains 1 Garuda Hat +-------------------------- +Description: +A hat which is very unique and rare, made from the feathers of a legendary bird Garuda. +Decreases damage taken from all elements by 5%. +LUK +5, HIT +10, Reduces casting delay by 5%. +-------------------------- +Refine Level +7: +has a chance of getting Mastela Fruit when attacking monsters. +Chance to drop increases by 1% For each Refine Level over 7. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +All classes except Novice +-------------------------- +Weight: 1 +# +16692# +A box that contains 1 Alice Doll +Description: +A hat adorned with an +Alice doll. When worn, +it seems like Alice is +cheering you on from +the top of your head. +\ + +-------------------------- ++10% damage against +Demi-Human race monster, +and has low chance of +casting Sleep on +its wearer. +STR +1. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +Every +Job except Novice +-------------------------- +Weight: 1 +# +16693# +A box that contains 1 Crescent Helm +Description: +A sturdy, decorative +hat worn by military +generals in a far +east country. VIT +1. +Decreases Demihuman +monster damage by 5%. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper, Middle +Weight: 300 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Swordsman and Merchant classes +-------------------------- +Weight: 1 +# +16694# +A box that contains 1 Crescent Helm +Description: +A sturdy, decorative +hat worn by military +generals in a far +east country. VIT +1. +Decreases Demihuman +monster damage by 5%. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper, Middle +Weight: 300 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Swordsman and Merchant classes +-------------------------- +Weight: 1 +# +16695# +A box that contains 1 Dragon Skull +Description: +A helmet made from +a dragon's skull that +provides protection +against dragons. +Decreases damage +from Dragon Class +monsters by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +-------------------------- +Weight: 1 +# +16696# +A box that contains 1 Dragon Skull +Description: +A helmet made from +a dragon's skull that +provides protection +against dragons. +Decreases damage +from Dragon Class +monsters by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +-------------------------- +Weight: 1 +# +16697# +A box that contains 1 Drooping Bunny +Description: +A cute rabbit doll that can be worn on the head. +DEX +1, FLEE +2. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16698# +A box that contains 1 Drooping Bunny +Description: +A cute rabbit doll that can be worn on the head. +DEX +1, FLEE +2. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16699# +A box that contains 1 Evolved Blue Fish +description: +A headgear that looks +just like a scrumptious fish. It even has the +same smell! AGI +1, +DEX +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +-------------------------- +Weight: 1 +# +16700# +A box that contains 1 Evolved Blue Fish +description: +A headgear that looks +just like a scrumptious fish. It even has the +same smell! AGI +1, +DEX +1 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +-------------------------- +Weight: 1 +# +16701# +A box that contains 1 Evolved Pair of Red Ribbon +Description: +A pair of small +red hairbands that +makes girls look +really cute when they +wear them. FLEE +5. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +-------------------------- +Weight: 1 +# +16702# +A box that contains 1 Evolved Pair of Red Ribbon +Description: +A pair of small +red hairbands that +makes girls look +really cute when they +wear them. FLEE +5. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +-------------------------- +Weight: 1 +# +16703# +A box that contains 1 Evolved Pipe +Description: +Just say no. +Especially if +you're underage. +VIT +1. Reduce +damage from Brute +monsters by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Novices +can't smoke, but as +for everyone else... +-------------------------- +Weight: 1 +# +16704# +A box that contains 1 Evolved Pipe +Description: +Just say no. +Especially if +you're underage. +VIT +1. Reduce +damage from Brute +monsters by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Novices +can't smoke, but as +for everyone else... +-------------------------- +Weight: 1 +# +16705# +A box that contains 1 Hibiscus +Description: +A flower said to +be as beautiful as +a fairy in a far east +country and usually +used as a medicinal +herb. DEX +1, INT +1 +MDEF +5 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +-------------------------- +Weight: 1 +# +16706# +A box that contains 1 Hibiscus +Description: +A flower said to +be as beautiful as +a fairy in a far east +country and usually +used as a medicinal +herb. DEX +1, INT +1 +MDEF +5 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +-------------------------- +Weight: 1 +# +16707# +A box that contains 1 Jumping Poring +Description: +A Poring hat that feels like hopping on top of your head. It brings fortune to the wearer. +LUK +1 +UnRefineable and Indestructible. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16708# +A box that contains 1 Jumping Poring +Description: +A Poring hat that feels like hopping on top of your head. It brings fortune to the wearer. +LUK +1 +UnRefineable and Indestructible. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16709# +A box that contains 1 Kettle Hat +Description: +A sturdy pot worn on +the head that overflows with water if shaken. +Has a chance of auto- +casting Level 2 Deluge +or Level 3 Waterball +with each attack. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +-------------------------- +Weight: 1 +# +16710# +A box that contains 1 Kettle Hat +Description: +A sturdy pot worn on +the head that overflows with water if shaken. +Has a chance of auto- +casting Level 2 Deluge +or Level 3 Waterball +with each attack. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +-------------------------- +Weight: 1 +# +16711# +A box that contains 1 Magic Eyes +Descripiton: +A hat that looks like the eyes of a dark Magician, which are rumored to blink sometimes. +Decreases Variable Casting Time by 10% and Increases SP Consumption by 20%. +MDEF +5 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 3 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +Magician and Soul Linker +-------------------------- +Weight: 1 +# +16712# +A box that contains 1 Magic Eyes +Descripiton: +A hat that looks like the eyes of a dark Magician, which are rumored to blink sometimes. +Decreases Variable Casting Time by 10% and Increases SP Consumption by 20%. +MDEF +5 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 3 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +Magician Class/Soul Linker +-------------------------- +Weight: 1 +# +16713# +A box that contains 1 Mini Propeller +Description: +This hat makes the +wearer feel as if he +is floating on air. +AGI +2, DEX +1, +Dodge +10. This +headgear's +Refine Level affects +the percentage of +Cast Time reduction. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16714# +A box that contains 1 Mini Propeller +Description: +This hat makes the +wearer feel as if he +is floating on air. +AGI +2, DEX +1, +Dodge +10. This +headgear's +Refine Level affects +the percentage of +Cast Time reduction. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16715# +A box that contains 1 Puppy Hat +Description: +A small brown-colored dog that sits atop your head. It's so cute you'd be barking mad to remove it. +AGI +1. +Auto casts Gloria Lv1 with low percent chance; if AGI is over 77, the cast increases to Lv3. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +-------------------------- +Weight: 1 +# +16716# +A box that contains 1 Puppy Hat +Description: +A small brown-colored dog that sits atop your head. It's so cute you'd be barking mad to remove it. +AGI +1. +Auto casts Gloria Lv1 with low percent chance; if AGI is over 77, the cast increases to Lv3. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +-------------------------- +Weight: 1 +# +16717# +A box that contains 1 Sheep Hat +Description: +A hat that looks like +a sheep's head that is +so adorable, an enemy +might change his mind +about attacking. Reflects 5% physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 15 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Acolyte +-------------------------- +Weight: 1 +# +16718# +A box that contains 1 Sheep Hat +Description: +A hat that looks like +a sheep's head that is +so adorable, an enemy +might change his mind +about attacking. Reflects 5% physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 15 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Acolyte +-------------------------- +Weight: 1 +# +16719# +A box that contains 1 Tiger Mask +Description: +A mask rumored to make its wearer ferociously aggressive. +STR +3 +MaxHP +100 +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +-------------------------- +Weight: 1 +# +16720# +A box that contains 1 Vacation Hat +Description: +A hat that's perfect +for vacationing, and +shields the wearer's +face from UV rays. +VIT +1. Cannot +be upgraded. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +-------------------------- +Weight: 1 +# +16721# +A box that contains 1 Vacation Hat +Description: +A hat that's perfect +for vacationing, and +shields the wearer's +face from UV rays. +VIT +1. Cannot +be upgraded. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +-------------------------- +Weight: 1 +# +16722# +A box that contains 1 Vane Hairpin +Description: +A hairpin that looks +like a spinning windmill, but it doesn't generate +any power, though. AGI +2. UnRefineable. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +-------------------------- +Weight: 1 +# +16723# +A box that contains 1 Vane Hairpin +Description: +A hairpin that looks +like a spinning windmill, but it doesn't generate +any power, though. AGI +2. UnRefineable. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +-------------------------- +Weight: 1 +# +16724# +A box that contains 1 Vanilmirth Hat +Description: +A cold, soft hat that is shaped like a Vanilmirth. +Has a certain chance +of auto-casting a Level 1 +Bolt skill with each +melee attack. Magic +Defense +5. UnRefineable. Indestructible. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +-------------------------- +Weight: 1 +# +16725# +A box that contains 1 Vanilmirth Hat +Description: +A cold, soft hat that is shaped like a Vanilmirth. +Has a certain chance +of auto-casting a Level 1 +Bolt skill with each +melee attack. Magic +Defense +5. UnRefineable. Indestructible. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +-------------------------- +Weight: 1 +# +16726# +A box that contains 1 Water Lily Crown +Description: +A training cap that +lends a sense of +quiet and stability +to the wearer. +DEX +1, AGI +1, +Magic Defense +3. +Increases HP Recovery +by 5% and SP Recovery by 3%. UnRefineable. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +-------------------------- +Weight: 1 +# +16727# +A box that contains 1 Water Lily Crown +Description: +A training cap that +lends a sense of +quiet and stability +to the wearer. +DEX +1, AGI +1, +Magic Defense +3. +Increases HP Recovery +by 5% and SP Recovery by 3%. UnRefineable. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +-------------------------- +Weight: 1 +# +16728# +A box that contains 1 Pink Beanie +Description: +A hat woven out of +yarn that keeps the +head warm, but is +mostly worn because +of its fashionable +look. LUK +1. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 35 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16729# +A box that contains 1 Pink Beanie +Description: +A hat woven out of +yarn that keeps the +head warm, but is +mostly worn because +of its fashionable +look. LUK +1. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 35 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16730# +A box that contains 1 Green Ribbon +Description: +A long piece of green satin tied together into a neat little ribbon that wards off harmful magic. +MDEF +3 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16731# +A box that contains 1 Green Ribbon +Description: +A long piece of green satin tied together into a neat little ribbon that wards off harmful magic. +MDEF +3 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16732# +A box that contains 1 Gray Deviruchi Hat +Description: +A cute hat shaped +like a Deviruchi that +brings happiness +to its wearer and +onlookers. STR +1, +INT +1. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 64 +All classes except Novice +-------------------------- +Weight: 1 +# +16733# +A box that contains 1 Gray Deviruchi Hat +Description: +A cute hat shaped +like a Deviruchi that +brings happiness +to its wearer and +onlookers. STR +1, +INT +1. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 64 +All classes except Novice +-------------------------- +Weight: 1 +# +16734# +A box that contains 1 Blue Drooping Cat +Description: +A cat doll that you +can carry on your +head. If you think +you hear it meow +or feel it move, it's +just an illusion. +MDEF +15. +30% defense +against Curse status. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All classes except Novice +-------------------------- +Weight: 1 +# +16735# +A box that contains 1 Blue Drooping Cat +Description: +A cat doll that you +can carry on your +head. If you think +you hear it meow +or feel it move, it's +just an illusion. +MDEF +15. +30% defense +against Curse status. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +Weight: 1 +# +16736# +A box that contains 1 Fantastic Wig +Description: +Wig with red, white and black colors. +When equipped, increases movement speed. +DEF+4 +Enables use of the skill 'Hiding' Lv1. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper, Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +Weight: 1 +# +16737# +A box that contains 1 Fantastic Wig +Description: +Wig with red, white and black colors. +When equipped, increases movement speed. +DEF+4 +Enables use of the skill 'Hiding' Lv1. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper, Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +Weight: 1 +# +16738# +A box that contains 1 Yellow Magician Hat +Description: +A crude looking +hat that lends a +look of cheerfulness +and agility and is +coveted by most +skilled magic users. +INT +2, SP +150. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Magician Classes, +and Soul Linker Job +-------------------------- +Weight: 1 +# +16739# +A box that contains 1 Yellow Magician Hat +Description: +A crude looking +hat that lends a +look of cheerfulness +and agility and is +coveted by most +skilled magic users. +INT +2, SP +150. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Magician Classes, +and Soul Linker Job +-------------------------- +Weight: 1 +# +16740# +A box that has a Seagod's Protection. (23 hour rental) +-------------------------- +Rental Item +A certificate of the Seagod's Protection +-------------------------- +Weight: 1 + once opened the item becomes account bound +-------------------------- +Weight: 1 +# +16741# +A box that contains Hairtail. +-------------------------- +Rental Item +A fish used as a cutlass for its long knife-like shape. It is cold to the touch. +-------------------------- +Critical +20 +Increases Critical Damage by 50%. +-------------------------- +Random chance to inflict Crystallization status for 3 seconds on the target when dealing physical damage. +-------------------------- +Base Level at least 100: +ATK +50 +-------------------------- +Type: Two-Handed Sword +Attack: 220 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Swordman classes +-------------------------- + once opened the item becomes account bound +Weight: 1 +# +16742# +A box that contains Hairtail. +-------------------------- +Rental Item +A fish used as a cutlass for its long knife-like shape. It is cold to the touch. +-------------------------- +Critical +20 +Increases Critical Damage by 50%. +-------------------------- +Random chance to inflict Crystallization status for 3 seconds on the target when dealing physical damage. +-------------------------- +Base Level at least 100: +ATK +50 +-------------------------- +Type: Two-Handed Sword +Attack: 220 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Swordman classes +-------------------------- + once opened the item becomes account bound +Weight: 1 +# +16743# +A box that contains Marlin. +-------------------------- +Rental Item +A spearfish that is well known for delicious meat but this is frozen. +-------------------------- +Random chance to inflict Bleeding status on the target when using Pierce and Spiral Pierce skill. +-------------------------- +Random chance to inflict Freezing status on wielder when dealing physical damage. +-------------------------- +Increases damage of Spiral Pierce by 100%. +-------------------------- +Increases damage of Inspiration by 50%. +-------------------------- +Base Level at least 100: +ATK +30 +-------------------------- +Type: Two-Handed Spear +Attack: 220 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Swordman classes +-------------------------- + once opened the item becomes account bound +Weight: 1 +# +16744# +A box that contains Marlin. +-------------------------- +Rental Item +A spearfish that is well known for delicious meat but this is frozen. +-------------------------- +Random chance to inflict Bleeding status on the target when using Pierce and Spiral Pierce skill. +-------------------------- +Random chance to inflict Freezing status on wielder when dealing physical damage. +-------------------------- +Increases damage of Spiral Pierce by 100%. +-------------------------- +Increases damage of Inspiration by 50%. +-------------------------- +Base Level at least 100: +ATK +30 +-------------------------- +Type: Two-Handed Spear +Attack: 220 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Swordman classes +-------------------------- + once opened the item becomes account bound +Weight: 1 +# +16745# +A box that contains Saurel. +-------------------------- +Rental Item +A Seahorse looking fish that can be used in different cuisines it is frozen solid. +-------------------------- +MATK +100 +-------------------------- +Random chance to increase ATK by 30 for 7 sec when dealing physical damage. +-------------------------- +Random chance to increase MATK by 20 for 7 sec when dealing magical damage. +-------------------------- +Base Level at least 100: +ATK +10, MATK +10. +-------------------------- +Type: Dagger +Attack: 160 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +-------------------------- + once opened the item becomes account bound +Weight: 1 +# +16746# +A box that contains Saurel. +-------------------------- +Rental Item +A Seahorse looking fish that can be used in different cuisines it is frozen solid. +-------------------------- +MATK +100 +-------------------------- +Random chance to increase ATK by 30 for 7 sec when dealing physical damage. +-------------------------- +Random chance to increase MATK by 20 for 7 sec when dealing magical damage. +-------------------------- +Base Level at least 100: +ATK +10, MATK +10. +-------------------------- +Type: Dagger +Attack: 160 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +-------------------------- + once opened the item becomes account bound +Weight: 1 +# +16747# +A box that contains Tuna. +-------------------------- +Rental Item +A high quality fish that is being used as a club since it is frozen solid. +-------------------------- +When melee Attacking, it casts stun or auto-casts bash Level 5 (If higher Level of Bash is learned uses that Level instead.) +-------------------------- +Random chance to inflict Freezing status on wielder when dealing physical damage. +-------------------------- +Base Level at least 100: +ATK +20 +-------------------------- +Type: Mace +Attack: 180 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Swordsman, Acolyte and Merchant +-------------------------- + once opened the item becomes account bound +Weight: 1 +# +16748# +A box that contains Tuna. +-------------------------- +Rental Item +A high quality fish that is being used as a club since it is frozen solid. +-------------------------- +When melee Attacking, it casts stun or auto-casts bash Level 5 (If higher Level of Bash is learned uses that Level instead.) +-------------------------- +Random chance to inflict Freezing status on wielder when dealing physical damage. +-------------------------- +Base Level at least 100: +ATK +20 +-------------------------- +Type: Mace +Attack: 180 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Swordsman, Acolyte and Merchant +-------------------------- + once opened the item becomes account bound +Weight: 1 +# +16749# +A box that contains Malang Snow Crab. +-------------------------- +Rental Item +Crabs usually, live in sand or mud but this is used as a bow for some odd reason. +-------------------------- +LUK +3 +Increases Critical Damage by 50%. +-------------------------- +Base Level at least 100: +Increases Ranged Physical Damage by 20% +-------------------------- +Type: Bow +Attack: 120 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Archer, Thief and Rogue +-------------------------- + once opened the item becomes account bound +Weight: 1 +# +16750# +A box that contains Malang Snow Crab. +-------------------------- +Rental Item +Crabs usually, live in sand or mud but this is used as a bow for some odd reason. +-------------------------- +LUK +3 +Increases Critical Damage by 50%. +-------------------------- +Base Level at least 100: +Increases Ranged Physical Damage by 20% +-------------------------- +Type: Bow +Attack: 120 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Archer, Thief and Rogue +-------------------------- + once opened the item becomes account bound +Weight: 1 +# +16751# +A box that contains Spotty Eel. +-------------------------- +Rental Item +Spotty eel that appeared on Malangdo beach. It is always elastic and trying to straighten itself. That is why we can use it as an arrow. +-------------------------- +AGI +3 +-------------------------- +Random chance to increase ASPD by 2 for 5 seconds when dealing physical damage. +-------------------------- +Base Level at least 100: +Increases Ranged Physical Damage by 20% +-------------------------- +Type: Bow +Attack: 180 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Hunter, Bard and Dancer +-------------------------- + once opened the item becomes account bound +Weight: 1 +# +16752# +A box that contains Spotty Eel. +-------------------------- +Rental Item +Spotty eel that appeared on Malangdo beach. It is always elastic and trying to straighten itself. That is why we can use it as an arrow. +-------------------------- +AGI +3 +-------------------------- +Random chance to increase ASPD by 2 for 5 seconds when dealing physical damage. +-------------------------- +Base Level at least 100: +Increases Ranged Physical Damage by 20% +-------------------------- +Type: Bow +Attack: 180 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Hunter, Bard and Dancer +-------------------------- + once opened the item becomes account bound +Weight: 1 +# +16753# +A box which contains a Blessed Oridecon. +An oridecon which is blessed by the smith God. When refining weapon with Refine Lv between +6 and +12, weapon won't vanish even if the Refine fails. +-------------------------- +Weight: 1 +# +16754# +A box which contains a Blessed Oridecon. +An oridecon which is blessed by the smith God. When refining weapon with Refine Lv between +6 and +12, weapon won't vanish even if the Refine fails. +-------------------------- +Weight: 1 +# +16755# +A box which contains a Blessed Elunium. +An elunium which is blessed by the smith God. When refining weapon with Refine Lv between +6 and +12, armor won't vanish even if the Refine fails. +-------------------------- +Weight: 1 +# +16756# +A box which contains a Blessed Elunium. +An elunium which is blessed by the smith God. When refining weapon with Refine Lv between +6 and +12, armor won't vanish even if the Refine fails. +-------------------------- +Weight: 1 +# +16757# +A scroll for celebrating holloween day. can have random item. +-------------------------- +Weight: 1 +# +16758# +A box containing 1 Umbala Spirit. Available for 7 days. +-------------------------- +Rental Item +An accessory which is traditionally used in piercings by the Umbala tribespeople. +MaxHP +1% +Increases the recovery rate of 'Meat' by 25%. +Has a chance of dropping 'Meat' when defeating monsters. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16759# +A box containing 1 Umbala Spirit. Available for 7 days. +-------------------------- +Rental Item +An accessory which is traditionally used in piercings by the Umbala tribespeople. +MaxHP +1% +Increases the recovery rate of 'Meat' by 25%. +Has a chance of dropping 'Meat' when defeating monsters. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16760# +A box containing 1 Umbala Spirit. Available for 7 days. +-------------------------- +Rental Item +An accessory which is traditionally used in piercings by the Umbala tribespeople. +MaxHP +1% +Increases the recovery rate of 'Meat' by 25%. +Has a chance of dropping 'Meat' when defeating monsters. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16761# +A box containing 1 Umbala Spirit. Available for 7 days. +-------------------------- +Rental Item +An accessory which is traditionally used in piercings by the Umbala tribespeople. +MaxHP +1% +Increases the recovery rate of 'Meat' by 25%. +Has a chance of dropping 'Meat' when defeating monsters. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16762# +A box containing 1 Umbala Spirit. Available for 7 days. +-------------------------- +Rental Item +An accessory which is traditionally used in piercings by the Umbala tribespeople. +MaxHP +1% +Increases the recovery rate of 'Meat' by 25%. +Has a chance of dropping 'Meat' when defeating monsters. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16763# +Box containing 1 Seagod's protection. (7 day rental) +Rental Item +A token in which Protection of the Seagod was endowed into. It allows you to have a special ability to survive deep under the sea. Used to access the Culvert Memorial Dungeon +Weight: 1 +Weight: 1 +# +16764# +Box containing 1 Seagod's protection. (15 day rental) +Rental Item +A token in which the Seagod's Protection was endowed into. It allows you to have a special ability to survive deep under the sea. Used to access the Culvert Memorial Dungeon. +-------------------------- +Weight: 1 +Weight: 1 +# +16765# +Box containing 1 Octopus Hunting stick. (23 hour rental) +A special hunting stick to hunt Giant Octopus. Use this item to access the Octopus Cave Memorial Dungeon. +-------------------------- +Weight: 0 +Weight: 1 +# +16766# +Box containing 1 Octopus Hunting stick. (Available 3 days) +A special hunting stick to hunt Giant Octopus. Use this item to access the Octopus Cave Memorial Dungeon. +-------------------------- +Weight: 0 +Weight: 1 +# +16767# +Box containing 1 Octopus Hunting stick. (Available 7 days) +A special hunting stick to hunt Giant Octopus. Use this item to access the Octopus Cave Memorial Dungeon. +-------------------------- +Weight: 0 +-------------------------- +Weight: 1 +# +16768# +A box containing +1 Neuralizer +Description: +Pressing the button +on this stick will +flash blinding light +that seems to cause +memory loss. Resets +the Skill Tree and +gives the corresponding number of Skill Points. +This item can only be +used in town and the +character must carry +0 weight and cannot be equipped with a Pushcart, +Falcon, or PecoPeco. +Cannot be used by +Novice Class. +-------------------------- +Weight: 0 +-------------------------- +Weight: 1 +# +16769# +A box containing +1 Neuralizer +Description: +Pressing the button +on this stick will +flash blinding light +that seems to cause +memory loss. Resets +the Skill Tree and +gives the corresponding number of Skill Points. +This item can only be +used in town and the +character must carry +0 weight and cannot be equipped with a Pushcart, +Falcon, or PecoPeco. +Cannot be used by +Novice Class. +-------------------------- +Weight: 0 +-------------------------- +Weight: 1 +# +16770# +Box containing 10 Silvervine Fruits. A small amount of canned food is included as a bonus. +Sunkissed Silvervine Fruit. Human think that is normal and tastes bad but it is valuable in Malangdo. +-------------------------- +Weight: 0 + once opened the item becomes account bound +-------------------------- +Weight: 1 +# +16771# +Box containing 40 Silvervine Fruits. A small amount of canned food is included as a bonus. +Sunkissed Silvervine Fruit. Human think that is normal and tastes bad but it is valuable in Malangdo. +-------------------------- +Weight: 0 + once opened the item becomes account bound +-------------------------- +Weight: 1 +# +16774# +Asgard scroll +-------------------------- +Weight: 1 +# +16776# +A box containing 10 Bargain Hunter's Catalog. +-------------------------- +Advanced product from the Geffen Magic Academy! +A magical scroll which is able to 'search what items are on sale and what items are being purchased'. Able to sell or buy items from the searched link! +Able to search open vendors only in the same map you're located. +Up to 10 valid searches can be conducted per use. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16777# +A box containing 50 Bargain Hunter's Catalog. +-------------------------- +Advanced product from the Geffen Magic Academy! +A magical scroll which is able to 'search what items are on sale and what items are being purchased'. Able to sell or buy items from the searched link! +Able to search open vendors only in the same map you're located. +Up to 10 valid searches can be conducted per use. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16778# +A box containing 10 STR+10 Dishes. It is said that the dishes are specially treated to prevent them being damaged. +-------------------------- +Weight: 1 +# +16779# +A box containing 50 STR+10 Dishes. It is said that the dishes are specially treated to prevent them being damaged. +-------------------------- +Weight: 1 +# +16780# +A box containing 10 AGI+10 Dishes. It is said that the dishes are specially treated to prevent them being damaged. +-------------------------- +Weight: 1 +# +16781# +A box containing 50 AGI+10 Dishes. It is said that the dishes are specially treated to prevent them being damaged. +-------------------------- +Weight: 1 +# +16782# +A box containing 10 VIT+10 Dishes. It is said that the dishes are specially treated to prevent them being damaged. +-------------------------- +Weight: 1 +# +16783# +A box containing 50 VIT+10 Dishes. It is said that the dishes are specially treated to prevent them being damaged. +-------------------------- +Weight: 1 +# +16784# +A box containing 10 INT+10 Dishes. It is said that the dishes are specially treated to prevent them being damaged. +-------------------------- +Weight: 1 +# +16785# +A box containing 50 INT+10 Dishes. It is said that the dishes are specially treated to prevent them being damaged. +-------------------------- +Weight: 1 +# +16786# +A box containing 10 DEX+10 Dishes. It is said that the dishes are specially treated to prevent them being damaged. +-------------------------- +Weight: 1 +# +16787# +A box containing 50 DEX+10 Dishes. It is said that the dishes are specially treated to prevent them being damaged. +-------------------------- +Weight: 1 +# +16788# +A box containing 10 LUK+10 Dishes. It is said that the dishes are specially treated to prevent them being damaged. +-------------------------- +Weight: 1 +# +16789# +A box containing 50 LUK+10 Dishes. It is said that the dishes are specially treated to prevent them being damaged. +-------------------------- +Weight: 1 +# +16790# +To you use in case of emergency! A box containing 10 Life Insurance Certificates. But let's not hurt on purpose. +-------------------------- +If the character dies within 30 minutes after using this item, there will be no EXP loss penalty. +-------------------------- +Weight: 1 +# +16791# +To you use in case of emergency! A box containing 50 Life Insurance Certificates. But let's not hurt on purpose. +-------------------------- +If the character dies within 30 minutes after using this item, there will be no EXP loss penalty. +-------------------------- +Weight: 1 +# +16792# +A box containing 10 Kafra Cards from Kafra employees. It is bulky for a box containing a business card. +-------------------------- +A Kafra name card issued by the Kafra Headquarters. +Using this card will call up the Kafra Service. +-------------------------- +Weight: 1 +# +16793# +A box containing 50 Kafra Cards from Kafra employees. It is bulky for a box containing a business card. +-------------------------- +A Kafra name card issued by the Kafra Headquarters. +Using this card will call up the Kafra Service. +-------------------------- +Weight: 1 +# +16794# +A box containing 10 Giant Fly Wing. It is very light. +-------------------------- +Giant Fly Wing - Teleport all party members to random cell when used by a Party Leader. +-------------------------- +Weight: 1 +# +16795# +A box containing 100 Giant Fly Wing. It is very light. +-------------------------- +Giant Fly Wing - Teleport all party members to random cell when used by a Party Leader. +-------------------------- +Weight: 1 +# +16796# +A box containing 5 Token of Siegfried. +-------------------------- +Token of Siegfried - Revives KO'ed character +-------------------------- +Weight: 1 +# +16797# +A box containing 20 Token of Siegfried. +-------------------------- +Token of Siegfried - Revives KO'ed character +-------------------------- +Weight: 1 +# +16798# +A box containing 5 Convex Mirrors. Handle with care! +-------------------------- +A clean convex mirror that can be used to detect the appearance of Boss class monsters. +10 minute duration that is canceled when the player leaves the map or logs out. +Lord of the Dead and Boss monster in the Bio Lab, Ktullanux, Memory of Thanatos and some other event MVP monsters cannot be detected by using this item. +-------------------------- +Weight: 1 +# +16799# +A box containing 30 Convex Mirrors. Handle with care! +-------------------------- +A clean convex mirror that can be used to detect the appearance of Boss class monsters. +10 minute duration that is canceled when the player leaves the map or logs out. +Lord of the Dead and Boss monster in the Bio Lab, Ktullanux, Memory of Thanatos and some other event MVP monsters cannot be detected by using this item. +-------------------------- +Weight: 1 +# +16800# +A box containing 10 Level 10 Blessing Scrolls. +-------------------------- +Weight: 1 +# +16801# +A box containing 50 Level 10 Blessing Scrolls. +-------------------------- +Weight: 1 +# +16802# +A box containing 10 Level 10 Increase Agility Scrolls. +-------------------------- +Weight: 1 +# +16803# +A box containing 50 Level 10 Increase Agility Scrolls. +-------------------------- +Weight: 1 +# +16804# +A box containing 10 Level 5 Adrenaline Rush Scrolls. +-------------------------- +Weight: 1 +# +16805# +A box containing 50 Level 5 Adrenaline Rush Scrolls. +-------------------------- +Weight: 1 +# +16806# +A box containing 10 Level 5 Aspersio Scrolls. A scroll in which a single use of Level 5 Aspersio has been recorded and does not require Holy Water. +-------------------------- +Weight: 1 +# +16807# +A box containing 50 Level 5 Aspersio Scrolls. A scroll in which a single use of Level 5 Aspersio has been recorded and does not require Holy Water. +-------------------------- +Weight: 1 +# +16808# +A box containing 1 Battle Manual. +-------------------------- +Battle Manual - Experience gained +50% for 30 minutes. +-------------------------- +Weight: 1 +# +16809# +A box containing 10 Battle Manuals. +-------------------------- +Battle Manual - Experience gained +50% for 30 minutes. +-------------------------- +Weight: 1 +# +16810# +A box containing 1 Bubble Gum. +-------------------------- +Bubble Gum - Item drop rate +100% for 30 minutes. +-------------------------- +Weight: 1 +# +16811# +A box containing 10 Bubble Gum. +-------------------------- +Bubble Gum - Item drop rate +100% for 30 minutes. +-------------------------- +Weight: 1 +# +16812# +A box containing 1 Megaphone. +-------------------------- +Megaphone - Broadcasts message to all players in server. +-------------------------- +Weight: 1 +# +16813# +A box containing 10 Megaphone. +-------------------------- +Megaphone - Broadcasts message to all players in server. +-------------------------- +Weight: 1 +# +16814# +A box containing 10 Enriched Elunium. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +-------------------------- +Weight: 1 +# +16815# +A box containing 5 Enriched Elunium. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +-------------------------- +Weight: 1 +# +16816# +A box containing 10 Enriched Oridecon. +-------------------------- +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +16817# +A box containing 5 Enriched Oridecon. +-------------------------- +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +16818# +A box containing 1 Neuralizer. Handle with care! +-------------------------- +Neuralizer - Resets the user's skill tree. +-------------------------- +Weight: 1 +# +16819# +A box containing 5 Abrasives, which sharpen weapons. +-------------------------- +Increases Critical Rate by 30 for 5 minutes. +-------------------------- +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +16820# +A box containing 10 Abrasives, which sharpen weapons. +-------------------------- +Increases Critical Rate by 30 for 5 minutes. +-------------------------- +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +16821# +A box containing 5 Dungeon Teleport Scrolls. It seems that if you use it, you can go directly to the dungeon.. +-------------------------- +Nogg Road, +Mjolnir Dead Pit, +Robot Factory Lv2, +Einbroch Mine Dungeon, +Payon Dungeon, Toy +Dungeon, Glast Heim +Underprison, Louyang +Dungeon, Hermit's +Checkers, Izlude +Dungeon, Turtle +Island Dungeon, +Clock Tower B3F, +Clock Tower 3F, +Glast Heim Culvert 2F, +Sphinx Dungeon 4F, +Inside Pyramid 4F, +Prontera Culvert 3F, +Amatsu Dungeon 1F +(Tatami Maze), +Somatology Laboratory +1st Floor, or Ayothaya +Ancient Shrine 2F. +-------------------------- +Warning - After using it, unless you choose the destination in 1 minute it will be useless. +-------------------------- +Weight: 1 +# +16822# +A box containing 10 Dungeon Teleport Scrolls. It seems that if you use it, you can go directly to the dungeon. +-------------------------- +Nogg Road, +Mjolnir Dead Pit, +Robot Factory Lv2, +Einbroch Mine Dungeon, +Payon Dungeon, Toy +Dungeon, Glast Heim +Underprison, Louyang +Dungeon, Hermit's +Checkers, Izlude +Dungeon, Turtle +Island Dungeon, +Clock Tower B3F, +Clock Tower 3F, +Glast Heim Culvert 2F, +Sphinx Dungeon 4F, +Inside Pyramid 4F, +Prontera Culvert 3F, +Amatsu Dungeon 1F +(Tatami Maze), +Somatology Laboratory +1st Floor, or Ayothaya +Ancient Shrine 2F. +-------------------------- +Warning - After using it, unless you choose the destination in 1 minute it will be useless. +-------------------------- +Weight: 1 +# +16823# +A box containing 1 Gym Pass. +-------------------------- +A Gym Pass that can be given to a special NPC to learn a skill that will increase your Maximum Weight Capacity by 200 For each skill Level. +This special skill can only be learned up to Level 10. +-------------------------- +Weight: 1 +# +16824# +A box containing 5 Regeneration Potions. +-------------------------- +Increases the HP recovery effect of some potions and the Heal skill by 20% for 30 minutes. +-------------------------- +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +16825# +A box containing 10 Regeneration Potions. +-------------------------- +Increases the HP recovery effect of some potions and the Heal skill by 20% for 30 minutes. +-------------------------- +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +16827# +A box containing 10 Small Life Potions. +-------------------------- +Restores an amount of HP equal of 5% of your MaxHP every 5 seconds for a 10 minute duration. +-------------------------- +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +16828# +A box containing 10 Small Life Potions. +-------------------------- +Restores an amount of HP equal of 5% of your MaxHP every 5 seconds for a 10 minute duration. +-------------------------- +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +16829# +A box containing 10 Medium Life Potions. +-------------------------- +Restores an amount of HP equal of 7% of your MaxHP every 4 seconds for a 10 minute duration. +-------------------------- +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +16830# +A box containing 10 Medium Life Potions. +-------------------------- +Restores an amount of HP equal of 7% of your MaxHP every 4 seconds for a 10 minute duration. +-------------------------- +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +16831# +A box containing 5 Glass of Illusions. +-------------------------- +Increases your Perfect Dodge by 20 for 1 minute. Only one may be consumed per 5 minutes. +-------------------------- +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +16832# +A box containing 10 Glass of Illusions. +-------------------------- +Increases your Perfect Dodge by 20 for 1 minute. Only one may be consumed per 5 minutes. +-------------------------- +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +16833# +A box containing 5 Shadow Armor Scrolls. +-------------------------- +Shadow Armor Scroll - Endows a character with Shadow element for 30 minutes. +-------------------------- +Weight: 1 +# +16834# +A box containing 30 Shadow Armor Scrolls. +-------------------------- +Shadow Armor Scroll - Endows a character with Shadow element for 30 minutes. +-------------------------- +Weight: 1 +# +16835# +A box containing 5 Holy Armor Scrolls. +-------------------------- +Holy Armor Scroll - Endows a character with Holy element for 30 minutes. +-------------------------- +Weight: 1 +# +16836# +A box containing 30 Holy Armor Scrolls. +-------------------------- +Holy Armor Scroll - Endows a character with Holy element for 30 minutes. +-------------------------- +Weight: 1 +# +16837# +A box containing 5 Dungeon Teleport Scroll II. +-------------------------- +When used allows you to teleport to a specific dungeon from the following list: +-------------------------- +Thor's Volcano Dungeon F2 +Ice Dungeon Entrance +Veins Field +Niflheim +Labyrinth +Juperos +Ant Hell +Kiel Hyre's School Entrance +Thanatos Tower Entrance +The Abyss Lakes Entrance +Rachel Temple Entrance +Odin Temple Entrance +-------------------------- +Warning - After using it, unless you choose the destination in 1 minute it will be useless +-------------------------- +Weight: 1 +# +16838# +A box containing 10 Dungeon Teleport Scroll II. +-------------------------- +When used allows you to teleport to a specific dungeon from the following list: +-------------------------- +Thor's Volcano Dungeon F2 +Ice Dungeon Entrance +Veins Field +Niflheim +Labyrinth +Juperos +Ant Hell +Kiel Hyre's School Entrance +Thanatos Tower Entrance +The Abyss Lakes Entrance +Rachel Temple Entrance +Odin Temple Entrance +-------------------------- +Warning - After using it, unless you choose the destination in 1 minute it will be useless +-------------------------- +Weight: 1 +# +16839# +A box containing 5 Toktok Candys. You'll need to remember to brush your teeth after! +-------------------------- +Increases ATK +20, Attack Speed +25% and permanent endure for 1 minute. +Decreases 100HP per 10 seconds. Cooldown for 3 minutes. +-------------------------- +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +16840# +A box containing 10 Toktok Candys. You'll need to remember to brush your teeth after! +-------------------------- +Increases ATK +20, Attack Speed +25% and permanent endure for 1 minute. +Decreases 100HP per 10 seconds. Cooldown for 3 minutes. +-------------------------- +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +16841# +A box contains 5 Repair Weapon Scroll. Several ore needed to be repaired offers together. +-------------------------- +Repair materials from this box may be inconvenient for other uses. Be careful. +-------------------------- +Weight: 1 +# +16842# +A box contains 10 Repair Weapon Scroll. Several ore needed to be repaired offers together. +-------------------------- +Repair materials from this box may be inconvenient for other uses. Be careful. +-------------------------- +Weight: 1 +# +16843# +A box contains 1 Hairstyle Coupon. +Transform your hairstyle by utilizing the services of the Stylist System and revamp your look. +-------------------------- +Weight: 1 +# +16844# +A box containing 5 Alice Summon Books, which contracts with Alice to assist you in your battles. +-------------------------- +If you are incapacitated, the mercenary will disappear. +-------------------------- +Weight: 1 +# +16845# +A box containing 10 Alice Summon Books, which contracts with Alice to assist you in your battles. +-------------------------- +If you are incapacitated, the mercenary will disappear. +-------------------------- +Weight: 1 +# +16846# +A box containing 5 Mimic Summon Books, which contracts with Mimic to assist you in your battles. +-------------------------- +If you are incapacitated, the mercenary will disappear. +-------------------------- +Weight: 1 +# +16847# +A box containing 10 Mimic Summon Books, which contracts with Mimic to assist you in your battles. +-------------------------- +If you are incapacitated, the mercenary will disappear. +-------------------------- +Weight: 1 +# +16848# +A box containing 5 Disguise Summon Books, which contracts with Disguise to assist you in your battles. +-------------------------- +If you are incapacitated, the mercenary will disappear. +-------------------------- +Weight: 1 +# +16849# +A box containing 10 Disguise Summon Books, which contracts with Disguise to assist you in your battles. +-------------------------- +If you are incapacitated, the mercenary will disappear. +-------------------------- +Weight: 1 +# +16850# +A box containing 10 Mystical Amplification Level 10 Scroll. +-------------------------- +Weight: 1 +# +16851# +A box containing 50 Mystical Amplification Level 10 Scroll. +-------------------------- +Weight: 1 +# +16852# +A box containing 10 Quake Level 5 Scroll. +-------------------------- +Weight: 1 +# +16853# +A box containing 50 Quake Level 5 Scroll. +-------------------------- +Weight: 1 +# +16854# +Contain 1 Clothing Dye Coupon. +Revamp your wardrobe by embracing the Stylist System and updating your clothing style. +-------------------------- +Weight: 1 +# +16855# +Contain 1 Original Clothing Dye Coupon. +-------------------------- +Weight: 1 +# +16856# +A box containing 20 Greed Scrolls. +-------------------------- +Enables a single cast of Greed. Why is it that a person feels greedy even if he just holds it for some reason? +Caution! - Cannot be used in town. When used, only scroll gets destroyed. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16857# +A box containing 50 Greed Scrolls. +-------------------------- +Enables a single cast of Greed. Why is it that a person feels greedy even if he just holds it for some reason? +Caution! - Cannot be used in town. When used, only scroll gets destroyed. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16858# +A box containing 20 Mental Potions. +-------------------------- +A potion that refill your spirit. +MaxSP +10%, Reduces SP cost by 10%. +If you are incapacitated, the mercenary will disappear. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16859# +A box containing 50 Mental Potions. +-------------------------- +A potion that refill your spirit. +MaxSP +10%, Reduces SP cost by 10%. +If you are incapacitated, the mercenary will disappear. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16860# +A box containing 20 Tyr's Blessings. +-------------------------- +A potion that possesses the spirit of Tyr, the god of battle. +Increases ATK & 20 MATK for 5 minutes. HIT +30, FLEE +30 +Caution!- Item's active duration and ability will not work properly when it is being used with Honey Pastry, Sesame Pastry and Rainbow Cake. +If you are incapacitated or hit by the Dispell skill, the item effect will disappear. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16861# +A box containing 50 Tyr's Blessings. +-------------------------- +A potion that possesses the spirit of Tyr, the god of battle. +Increases ATK & 20 MATK for 5 minutes. HIT +30, FLEE +30 +Caution!- Item's active duration and ability will not work properly when it is being used with Honey Pastry, Sesame Pastry and Rainbow Cake. +If you are incapacitated or hit by the Dispell skill, the item effect will disappear. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16862# +A box containing a JOB Battle Manual. +-------------------------- +A combat manual that increases job experience by 25% for 30 minutes when used. It is said to have opened a new horizon for combat manuals. +Works in combination with the normal battle manual. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16863# +A box containing 10 JOB Battle Manual. +-------------------------- +A combat manual that increases job experience by 25% for 30 minutes when used. It is said to have opened a new horizon for combat manuals. +Works in combination with the normal battle manual. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16864# +A box containing 10 Siege Map Teleport Scrolls. +-------------------------- +A scroll with numerous Siege coordinates. If you tear the scroll, you can teleport to a Siege map. +\ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +. +-------------------------- +Weight: 1 +-------------------------- +Warning - After using it, unless you choose the destination in 1 minute it will be useless +-------------------------- +Weight: 1 +# +16865# +A box containing 30 Siege Map Teleport Scrolls. +-------------------------- +A scroll with numerous Siege coordinates. If you tear the scroll, you can teleport to a Siege map. +\ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +. +-------------------------- +Weight: 1 +-------------------------- +Warning - After using it, unless you choose the destination in 1 minute it will be useless +-------------------------- +Weight: 1 +# +16866# +A box containing 10 Siege Map Teleport II Scrolls. +-------------------------- +A scroll with numerous Siege coordinates. If you tear the scroll, you can teleport to a Siege map. +\ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +. +-------------------------- +Weight: 1 +-------------------------- +Warning - After using it, unless you choose the destination in 1 minute it will be useless +-------------------------- +Weight: 1 +# +16867# +A box containing 30 Siege Map Teleport II Scrolls. +-------------------------- +A scroll with numerous Siege coordinates. If you tear the scroll, you can teleport to a Siege map. +\ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +, \ +. +-------------------------- +Weight: 1 +-------------------------- +Warning - After using it, unless you choose the destination in 1 minute it will be useless +-------------------------- +Weight: 1 +# +16868# +A box containing 5 HD Bradiums. +-------------------------- +A high density Bradium used in upgrading weapons. Take this to Mighty Hammer in Eden Group or Payon next to the Kafra Shop Ladies to help you upgrade weapons at +10 and higher. +This Bradium's density guarantees that your weapon will NOT break when attempting to upgrade and if the upgrade attempt fails, it will only downgrade 1 Level instead of 3 like a normal Bradium. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16869# +A box containing 10 HD Bradiums. +-------------------------- +A high density Bradium used in upgrading weapons. Take this to Mighty Hammer in Eden Group or Payon next to the Kafra Shop Ladies to help you upgrade weapons at +10 and higher. +This Bradium's density guarantees that your weapon will NOT break when attempting to upgrade and if the upgrade attempt fails, it will only downgrade 1 Level instead of 3 like a normal Bradium. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16870# +A box containing 5 HD Craniums. +-------------------------- +A high density Carnium used in upgrading armor. Take this to Mighty Hammer in Eden Group or Payon next to the Kafra Shop Ladies to help you upgrade armor at +10 and higher. +This Carnium's density guarantees that your armor will NOT break when attempting to upgrade and if the upgrade attempt fails, it will only downgrade 1 Level instead of 3 like a normal Carnium. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16871# +A box containing 10 HD Craniums. +-------------------------- +A high density Carnium used in upgrading armor. Take this to Mighty Hammer in Eden Group or Payon next to the Kafra Shop Ladies to help you upgrade armor at +10 and higher. +This Carnium's density guarantees that your armor will NOT break when attempting to upgrade and if the upgrade attempt fails, it will only downgrade 1 Level instead of 3 like a normal Carnium. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16872# +A box containing 5 HD Oridecons. +-------------------------- +A delicate ore that ensures the safety of valuable equipment. +Used as a material to strengthen weapons currently from Refine Levels 7 through 9. +This item's density ensures that Refine attempts will not break the weapon and if the attempt fails it will only downgrade by 1. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16873# +A box containing 10 HD Oridecons. +-------------------------- +A delicate ore that ensures the safety of valuable equipment. +Used as a material to strengthen weapons currently from Refine Levels 7 through 9. +This item's density ensures that Refine attempts will not break the weapon and if the attempt fails it will only downgrade by 1. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16874# +A box containing 5 HD Eluniums. +-------------------------- +A delicate ore that ensures the safety of valuable equipment. +Used as a material to strengthen armor currently from Refine Levels 7 through 9. +This item's density ensures that Refine attempts will not break the armor and if the attempt fails it will only downgrade by 1. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16875# +A box containing 10 HD Eluniums. +-------------------------- +A delicate ore that ensures the safety of valuable equipment. +Used as a material to strengthen armor currently from Refine Levels 7 through 9. +This item's density ensures that Refine attempts will not break the armor and if the attempt fails it will only downgrade by 1. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16876# +A box containing 10 Rapid Life Potions. +-------------------------- +Potion contains verious recovery herb juice. Effective for faster wound healing. +Recovers 6% of MaxHP every 3 seconds for 10 minutes. +Not available in berserk condition. +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +16877# +A box containing 10 Magic Candys. +-------------------------- +A magic candy that can clean your teeth after eat foods. +For 1 minute: +MATK +30 +Decreases Fixed Casting Time by 70%. +Protects from skill cast interruption. +Decreases SP by 90 every 10 seconds. +(3 minutes cooldown) +(The % increase/decrease effect of fixed casting only applies to the largest effect. The cooldown is shared with Toktok Candy.) +(When character's KO'ed, the effect will disappear) +-------------------------- +Weight: 1 +# +16878# +A box containing 1 Umbala Spirit. Available for 7 days. +-------------------------- +Rental Item +An accessory which is traditionally used in piercings by the Umbala tribespeople. +-------------------------- +MaxHP +1% +-------------------------- +Random chance a defeated monster will drop Meat. +-------------------------- +Increases recovery amount gained from Meat by 25%. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Level Requirement: None +-------------------------- +Weight: 1 +# +16879# +A box containing 1 Muramasa. Handle with care! Available for 7 days. +-------------------------- +Rental Item +An oriental sword named after a legendary Japanese swordsmith. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 8%). +-------------------------- +Critical +30 +-------------------------- +Random chance to inflict Curse status on wielder when dealing physical damage. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Two-Handed Sword +Attack: 204 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman classes +-------------------------- +Weight: 1 +# +16880# +A box containing 1 Excalibur. Handle with care! Available for 7 days. +-------------------------- +Rental Item +The one-handed sword of Arthurian legend that supposedly chooses its owner to wield its holy powers. +-------------------------- +INT +10 +LUK +10 +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: One-Handed Sword +Attack: 199 +Weight: 0 +Element: Holy +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +-------------------------- +Weight: 1 +# +16881# +A box containing 1 Excalibur. Handle with care! Available for 7 days. +-------------------------- +Rental Item +Military combat knife made for battles against Demi-Human race. +-------------------------- +MaxSP +10% +-------------------------- +Restores 3 SP when hitting a monster. +-------------------------- +Ignores physical defense of Demi-Human race. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Increases damage taken from monsters of Demon race by 10%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Dagger +Attack: 129 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +-------------------------- +Weight: 1 +# +16882# +A box containing 1 Dagger of Counter. Handle with care! Available for 7 days. +-------------------------- +Rental Item +A dagger that has a high chance of inflicting critical attack to its target. +-------------------------- +Critical +90 +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Dagger +Attack: 209 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Magician and Soul Linker classes +-------------------------- +Weight: 1 +# +16883# +A box containing 1 Mighty Staff. Handle with care! Available for 7 days. +-------------------------- +Rental Item +A rare staff that can convert psychic energy into brute strength. +-------------------------- +STR +10 +INT +4 +MATK +100 +-------------------------- +Drains 1 SP when dealing physical damage. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: One-Handed Staff +Attack: 165 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Magician, Acolyte and Soul Linker +-------------------------- +Weight: 1 +# +16884# +A box containing 1 Light Epsilon. Handle with care! Available for 7 days. +-------------------------- +Rental Item +A Greek ceremonial axe that possesses the power of holiness. +-------------------------- +STR +10 +-------------------------- +Increases movement speed. +-------------------------- +Enables the use of Level 3 Heal. +-------------------------- +Increases Physical Damage against monsters of Demon race by 3%. +-------------------------- +Type: Two-Handed Axe +Attack: 229 +Weight: 0 +Element: Holy +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman and Merchant +-------------------------- +Weight: 1 +# +16885# +A box containing 1 Ballista. Handle with care! Available for 7 days. +-------------------------- +Rental Item +A giant bow used in ancient battles. +-------------------------- +Increases Ranged Physical Damage by 20%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Bow +Attack: 194 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Hunter, Bard and Dancer +-------------------------- +Weight: 1 +# +16886# +A box containing 1 Sage's Diary. Handle with care! Available for 7 days. +-------------------------- +Rental Item +The diary of a great sage that was published without him ever knowing. +-------------------------- +MATK +140 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Book +Attack: 135 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Priest, Sage and Star Gladiator +-------------------------- +Weight: 1 +# +16887# +A box containing 1 Ashura. Handle with care! Available for 7 days. +-------------------------- +Rental Item +A legendary dagger that is said to have been given to mankind by the gods. +-------------------------- +MATK +98 +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Dagger +Attack: 120 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Ninja +-------------------------- +Weight: 1 +# +16888# +A box containing 1 Brooch. Handle with care! Available for 7 days. +-------------------------- +Rental Item +An ancient brooch. +-------------------------- +AGI +4 +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +-------------------------- +Weight: 1 +# +16889# +A box containing 1 Safety Ring. Handle with care! Available for 7 days. +-------------------------- +Rental Item +A strange ring that curiously raises its wearer's defenses. +-------------------------- +DEF +8 +MDEF +8 +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +-------------------------- +Weight: 1 +# +16890# +A box containing 1 Pecopeco Headband. Available for 2 weeks. +-------------------------- +Rental Item +A hairband with PecoPeco wings that lends you a PecoPeco's speed. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Increases movement speed. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16891# +A box containing 1 Nagan. Handle with care! Available for 7 days. +-------------------------- +Rental Item +An one-handed sword topped with several extra edges for making wounds deeper and more unsightly. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 40% +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: One-Handed Sword +Attack: 148 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +-------------------------- +Weight: 1 +# +16892# +A box containing 1 Brocca. Handle with care! Available for 7 days. +-------------------------- +Rental Item +A spear that has been made to puncture any armor worn by enemies. +-------------------------- +Ignores physical defense of target by 100%. +-------------------------- +Increases Physical Damage against enemies of Medium size by 20%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: One-Handed Spear +Attack: 149 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman classes +-------------------------- +Weight: 1 +# +16893# +A box containing 1 Quadrille. Handle with care! Available for 7 days. +-------------------------- +Rental Item +A heavy and powerful iron mace with a rounded top. +-------------------------- +Increases Physical Damage against enemies of Undead elemental and Demon race by 40%. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 30%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Mace +Attack: 193 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Acolyte +-------------------------- +Weight: 1 +# +16894# +A box containing 1 Fire Brand. Handle with care! Available for 7 days. +-------------------------- +Rental Item +A one-handed, formal dress sword imbued with the Fire element. +-------------------------- +INT +2 +-------------------------- +Enables the use of Level 5 Fire Bolt. +-------------------------- +Random chance to auto-cast Level 5 Fire Bolt on the target when dealing physical damage. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: One-Handed Sword +Attack: 120 +Weight: 0 +Element: Fire +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Swordsman, Merchant and Thief classes +-------------------------- +Weight: 1 +# +16895# +A box containing 1 Butterfly Mask. Handle with care! Available for 2 weeks. +-------------------------- +Rental Item +A black leather mask, shaped like butterfly wings. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 7%. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All excepts Novice +-------------------------- +Weight: 1 +# +16896# +A box containing 1 Orc Hero's Helm. Handle with care! Available for 2 weeks. +-------------------------- +Rental Item +A headgear bestowed only to true Orc Heroes. +-------------------------- +STR +5, VIT +3 +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper, Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +-------------------------- +Weight: 1 +# +16897# +A box containing 1 Drooping Kitty. Handle with care! Available for 2 weeks. +-------------------------- +Rental Item +A cute kitty doll which can be worn on top of the head. +-------------------------- +MDEF +15 +-------------------------- +Increases resistance against Curse status by 40%. +-------------------------- +Increases resistance against Stun status by 10%. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Headgear +Defense: 9 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +-------------------------- +Weight: 1 +# +16898# +A box containing 1 Bloody Iron Ball. Handle with care! Available for 7 days. +-------------------------- +Rental Item +A leg iron, long time ago, it used to make don't move of panther prisoner. However, the prisoner used his leg iron as his weapon. +-------------------------- +ATK +30 +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16899# +A box containing 1 Hockey Mask. Available for 7 days. +-------------------------- +Rental Item +This mask calls the urge to hold a weapon in one's hand and hurt people on the 13th of every month. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 5%. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +All Jobs except Novice +-------------------------- +Weight: 1 +# +16900# +A box containing 1 Observer. Available for 7 days. +-------------------------- +Rental Item +A device that can measure opponent's power. Commoners have power Level 5. Heroes have a power Level over 9,000! +-------------------------- +Enables the use of Level 1 Sense. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 35 +All Jobs except Novice +-------------------------- +Weight: 1 +# +16901# +A box containing 1 All in One Ring. Available for 7 days. +-------------------------- +Rental Item +A Jewelry Ring that contains a 3 Seal Magic Spell. +-------------------------- +All Stats +1 +-------------------------- +Enables the use of Level 1 Heal. +Enables the use of Level 1 Teleport. +-------------------------- +Protects from skill cast interruption. +-------------------------- +Increases Variable Casting Time of all skills by 10%. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16902# +A box containing 1 Spiritual Tunic. Available for 7 days. +-------------------------- +Rental Item +A magic tunic that protect from various elements. +-------------------------- +MaxHP +800 +MDEF +5 +-------------------------- +Prevents Frozen status. +-------------------------- +Decreases damage taken from all elements except Neutral and Water elemental attacks by 20%. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Armor +Defense: 38 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16903# +A box containing 1 Recuperative Armor. Available for 7 days. +-------------------------- +Rental Item +A suit of armor that allows the master to regain his life by taking the enemies +-------------------------- +Disables HP and SP Recovery Rate. +-------------------------- +When unequipped, drains 100 SP. +-------------------------- +When a monster is defeated from Physical or Magical Damages, recover 60 HP and 6 SP. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Armor +Defense: 67 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16904# +A box containing 1 Shelter Resistance. Available for 7 days. +-------------------------- +Rental Item +A Magical Shield that has a strong resistance against every attack that an opponent tries to deal you. +-------------------------- +Decreases damage taken from all monsters by 20%. +-------------------------- +Reflects 1% of melee physical attacks. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Shield +Defense: 140 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16905# +A box containing 1 Sylphid Manteau. Available for 7 days. +-------------------------- +Rental Item +A Soft Manteau that has been blessed by a Wind Fairy. +It is said to allow the wearer into be protected from danger. +-------------------------- +FLEE +13 +Perfect Dodge +1 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 13%. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Garment +Defense: 9 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +-------------------------- +Weight: 1 +# +16906# +A box containing 1 Refresh Shoes. Available for 7 days. +-------------------------- +Rental Item +A pair of shoes made with a complex design from soft animal skin. +-------------------------- +MaxHP +17% +MaxSP +8% +-------------------------- +Restores 20 HP and 3 SP every 10 seconds. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Shoes +Defense: 9 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16907# +A box containing 1 Wasteland's Outlaw. Available for 7 days. +-------------------------- +Rental Item +A highly accurate and rapid firing gun that was made in the memory of all the Gunslingers that had braved the unexplored wilderness. +-------------------------- +Adds HIT and ASPD bonus depend on wielder's AGI stats. +-------------------------- +ATK +40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Revolver +Attack: 100 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Gunslinger +-------------------------- +Weight: 1 +# +16908# +A box containing 1 Lever Action Rifle. Available for 7 days. +-------------------------- +Rental Item +A masterpiece that brings the power of the Rifles to the max. This beautiful gun steals the heart of the Gunslingers and its high performance will put a hole through the heart of the enemy. Only downside is that, due to the fact it is lever-action oriented, the Attack Speed is somewhat poor. +-------------------------- +HIT +20 +Critical +50 +-------------------------- +ATK +40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Rifle +Attack: 170 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Gunslinger +-------------------------- +Weight: 1 +# +16909# +A box containing 1 Claymore. Available for 7 days. +-------------------------- +Rental Item +Large, double-edged broad sword that was used by the Scottish highlanders. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Two-Handed Sword +Attack: 220 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Knight and Crusader classes +-------------------------- +Weight: 1 +# +16910# +A box containing 1 Jamadhar. Available for 7 days. +-------------------------- +Rental Item +A specially made katar with two blades that move like scissors to reveal a third blade from within. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Katar +Attack: 200 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Assassin classes +-------------------------- +Weight: 1 +# +16911# +A box containing 1 Two-Handed Axe. Available for 7 days. +-------------------------- +Rental Item +A Two-Handed, double bladed axe. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Two-Handed Axe +Attack: 220 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Swordsman and Merchant +-------------------------- +Weight: 1 +# +16912# +A box containing 1 Lance. Available for 7 days. +-------------------------- +Rental Item +A spear that is commonly used by mounted knights. +-------------------------- +Increases Physical Damage against enemies of all size monsters by 50%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Two-Handed Spear +Attack: 220 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Swordsman classes +-------------------------- +Weight: 1 +# +16913# +A box containing 1 Orcish Axe. Available for 7 days. +-------------------------- +Rental Item +An axe crafted by Orcish smiths for Orcish warriors. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 70%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: One-Handed Axe +Attack: 110 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Novice, Swordsman, Merchant and Assassin +-------------------------- +Weight: 1 +# +16914# +A box containing 1 Giant Encyclopedia. Available for 7 days. +-------------------------- +Rental Item +A gigantic encyclopedia produced by X company in Prontera, known mostly for its sharp and hard edges. +It is so hard to the point that people who got hit by the edges of this book often ask Did you guys install 3 carat Diamond on this?. +-------------------------- +INT +3, DEX +2 +MATK +100 +-------------------------- +Critical +20 +Critical bonus increases according to the wearer's LUK. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Book +Attack: 145 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Priest, Sage and Star Gladiator +-------------------------- +Weight: 1 +# +16915# +A box containing 1 Fist. Available for 7 days. +-------------------------- +Rental Item +A weapon made in the form of a human fist which effectively inflicts damage on enemies. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Knuckle +Attack: 150 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Priest and Monk classes +-------------------------- +Weight: 1 +# +16916# +A box containing 1 Guitar. Available for 7 days. +-------------------------- +Rental Item +A six stringed musical instrument that is played by plucking the strings with fingers or a pick. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Musical Instrument +Attack: 177 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Bard classes +-------------------------- +Weight: 1 +# +16917# +A box containing 1 Damascus. Available for 7 days. +-------------------------- +Rental Item +A lethal knife made of a special metal that can easily cut straight into the heart of an enemy. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Indestructible in battle +-------------------------- +Type: Dagger +Attack: 153 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +-------------------------- +Weight: 1 +# +16918# +A box containing 1 Flamberge. Available for 7 days. +-------------------------- +Rental Item +A powerful one-handed sword with a decoratively wavy, flame-like blade. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: One-Handed Sword +Attack: 185 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Knight and Crusader classes +-------------------------- +Weight: 1 +# +16919# +A box containing 1 Stunner. Available for 7 days. +-------------------------- +Rental Item +A huge, unwieldy club that can knock enemies unconscious. +-------------------------- +10% chance to inflict Stun status on the target when dealing physical damage. +-------------------------- +Increases Physical Damage against enemies of Small, Medium and Large size by 40%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +-------------------------- +Type: Mace +Attack: 175 +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Acolyte +-------------------------- +Weight: 1 +# +16920# +A box containing 1 Written Oath of Marriage. +-------------------------- +This written oath professes undying love, loyalty and union. +Forever in life and eternally beyond death. +-------------------------- +Weight: 1 +# +16921# +A box containing 1 Shooting Star. Available for 7 days. +-------------------------- +Rental Item +Beautiful bow with a graceful appearance. +-------------------------- +Increases Ranged Physical Damage by 20%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +Random chance to auto-cast Level 2 Double Strafe when dealing physical damage. +-------------------------- +Type: Bow +Attack: 190 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Hunter, Bard and Dancer +-------------------------- +Weight: 1 +# +16922# +A box containing 1 Bloody Fear. Available for 7 days. +-------------------------- +Rental Item +An excellent katar that specially made to eliminate Demi-Human race. +-------------------------- +Ignores physical defense of Demi-Human race by 100%. +-------------------------- +Random chance to inflict Bleeding status on the target when dealing physical damage. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +Restore 1 SP when killing enemy +-------------------------- +Type: Katar +Attack: 145 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Assassin classes +-------------------------- +Weight: 1 +# +16923# +A box containing 1 Staff of Healing. Available for 7 days. +-------------------------- +Rental Item +Staff for healing, created from the blessed branches of Yggdrasil. On a staff written in the ancient language \ +. +-------------------------- +MATK +100 +-------------------------- +Increases Healing skills effectiveness by 18%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +Random chance to auto-cast Heal when using Heal skill. +Increases Healing skills effectiveness by 5%. +-------------------------- +Type: One-Handed Staff +Attack: 10 +Weight: 0 +Element: Holy +Weapon Level: 3 +-------------------------- +Requirement: +Acolyte +-------------------------- +Weight: 1 +# +16924# +A box containing 1 Four Leaf Clover. Available for 1 hour. +-------------------------- +Rental Item +A Four-leafed clover that brings its wearer luck. +-------------------------- +ATK +5 +MATK +5 +MDEF +2 +-------------------------- +When VIP status active: +All Stats +1 +Increases experience gained from defeating monsters by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16925# +A box containing 1 Four Leaf Clover. Available for 2 hours. +-------------------------- +Rental Item +A Four-leafed clover that brings its wearer luck. +-------------------------- +ATK +5 +MATK +5 +MDEF +2 +-------------------------- +When VIP status active: +All Stats +1 +Increases experience gained from defeating monsters by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16926# +A box containing 1 Four Leaf Clover. Available for 4 hours. +-------------------------- +Rental Item +A Four-leafed clover that brings its wearer luck. +-------------------------- +ATK +5 +MATK +5 +MDEF +2 +-------------------------- +When VIP status active: +All Stats +1 +Increases experience gained from defeating monsters by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16927# +A box containing 1 Chewing Gum. Available for 1 hour. +-------------------------- +Rental Item +Huge balloon looking bubble gum. You can even blow it much bigger! +Caution: May seem ghetto to others. +-------------------------- +ATK +5 +MATK +5 +MDEF +2 +-------------------------- +When VIP status active: +All Stats +1 +Increases experience gained from defeating monsters by 5%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16928# +A box containing 1 Chewing Gum. Available for 2 hours. +-------------------------- +Rental Item +Huge balloon looking bubble gum. You can even blow it much bigger! +Caution: May seem ghetto to others. +-------------------------- +ATK +5 +MATK +5 +MDEF +2 +-------------------------- +When VIP status active: +All Stats +1 +Increases experience gained from defeating monsters by 5%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16929# +A box containing 1 Chewing Gum. Available for 4 hours. +-------------------------- +Rental Item +Huge balloon looking bubble gum. You can even blow it much bigger! +Caution: May seem ghetto to others. +-------------------------- +ATK +5 +MATK +5 +MDEF +2 +-------------------------- +When VIP status active: +All Stats +1 +Increases experience gained from defeating monsters by 5%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16930# +A box containing 1 Spiked Scarf. Available for 1 hour. +-------------------------- +Rental Item +A scarf with terrifying spikes. +-------------------------- +ATK +30 +MaxHP -2% +-------------------------- +When VIP status active: +All Stats +1 +MaxHP +2% +Increases Ranged Physical Damage by 2%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16931# +A box containing 1 Spiked Scarf. Available for 2 hours. +-------------------------- +Rental Item +A scarf with terrifying spikes. +-------------------------- +ATK +30 +MaxHP -2% +-------------------------- +When VIP status active: +All Stats +1 +MaxHP +2% +Increases Ranged Physical Damage by 2%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16932# +A box containing 1 Spiked Scarf. Available for 4 hours. +-------------------------- +Rental Item +A scarf with terrifying spikes. +-------------------------- +ATK +30 +MaxHP -2% +-------------------------- +When VIP status active: +All Stats +1 +MaxHP +2% +Increases Ranged Physical Damage by 2%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16933# +A box containing 1 Rainbow Scarf. Available for 1 hour. +-------------------------- +Rental Item +A scarf with rainbow color. +-------------------------- +MATK +30 +MaxSP -2% +-------------------------- +When VIP status active: +All Stats +1 +MaxSP +2% +Decreases Variable Casting Time by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16934# +A box containing 1 Rainbow Scarf. Available for 2 hours. +-------------------------- +Rental Item +A scarf with rainbow color. +-------------------------- +MATK +30 +MaxSP -2% +-------------------------- +When VIP status active: +All Stats +1 +MaxSP +2% +Decreases Variable Casting Time by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16935# +A box containing 1 Rainbow Scarf. Available for 4 hours. +-------------------------- +Rental Item +A scarf with rainbow color. +-------------------------- +MATK +30 +MaxSP -2% +-------------------------- +When VIP status active: +All Stats +1 +MaxSP +2% +Decreases Variable Casting Time by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16936# +A box containing 1 Life Ribbon. Available for 1 hour. +-------------------------- +Rental Item +Yellow, green matching cute ribbon item. +-------------------------- +INT +1 +MDEF +2 +-------------------------- +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +When VIP status active: +All Stats +1 +INT +2 +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16937# +A box containing 1 Life Ribbon. Available for 2 hours. +-------------------------- +Rental Item +Yellow, green matching cute ribbon item. +-------------------------- +INT +1 +MDEF +2 +-------------------------- +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +When VIP status active: +All Stats +1 +INT +2 +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16938# +A box containing 1 Life Ribbon. Available for 4 hour. +-------------------------- +Rental Item +Yellow, green matching cute ribbon item. +-------------------------- +INT +1 +MDEF +2 +-------------------------- +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +When VIP status active: +All Stats +1 +INT +2 +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16939# +A box containing 1 Love Angel Magic Powder. Available for 1 week. +-------------------------- +An item which when you breathe in this powder, your font becomes cute. +To make the best use of it, its best used when you want to express your love, or when you want to say that you're sorry after making a big mistake. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +16940# +A box containing 1 Love Angel Magic Powder. Available for 30 days. +-------------------------- +An item which when you breathe in this powder, your font becomes cute. +To make the best use of it, its best used when you want to express your love, or when you want to say that you're sorry after making a big mistake. +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +16941# +A box containing 1 Squirrel Magic Powder. Available for 1 week. +-------------------------- +An item which when you breathe in this powder, your font becomes a bit evil. +To make the best use of it, its best used when you have something you want to complain about, or when you want to do something awful. +When double clicked, your font changes and when used again, your font goes back to normal +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +16942# +A box containing 1 Squirrel Magic Powder. Available for 30 days. +-------------------------- +An item which when you breathe in this powder, your font becomes a bit evil. +To make the best use of it, its best used when you have something you want to complain about, or when you want to do something awful. +When double clicked, your font changes and when used again, your font goes back to normal +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +16943# +A box containing 1 Squirrel Magic Powder. Available for 1 week. +-------------------------- +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +16944# +A box containing 1 Squirrel Magic Powder. Available for 30 days. +-------------------------- +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +16945# +A box containing 1 Mini Heart Magic Powder. Available for 1 week. +-------------------------- +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +16946# +A box containing 1 Mini Heart Magic Powder. Available for 30 days. +-------------------------- +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +16947# +A box containing 1 Freshman Magic Powder. Available for 1 week. +-------------------------- +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +16948# +A box containing 1 Freshman Magic Powder. Available for 30 days. +-------------------------- +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +16949# +A box containing 1 Freshman Magic Powder. Available for 1 week. +-------------------------- +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +16950# +A box containing 1 Freshman Magic Powder. Available for 30 days. +-------------------------- +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +16951# +A box containing 1 Magic Magic Powder. Available for 1 week. +-------------------------- +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +16952# +A box containing 1 Magic Magic Powder. Available for 30 days. +-------------------------- +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +16953# +A box containing 1 JJangu Magic Powder. Available for 1 week. +-------------------------- +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +16954# +A box containing 1 JJangu Magic Powder. Available for 30 days. +-------------------------- +When double clicked, your font changes and when used again, your font goes back to normal. +Works only for chats said above your head and for vend names. +-------------------------- +Weight: 1 +# +16955# +A box containing 1 Upgrade Guard. +-------------------------- +A Guard molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +-------------------------- +Type: Shield +Defense: 25 +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16956# +A box containing 1 Upgrade Buckler. +-------------------------- +A Buckler molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +-------------------------- +Type: Shield +Defense: 45 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Merchant, Acolyte, Thief, Bard and Dancer +-------------------------- +Weight: 1 +# +16957# +A box containing 1 Upgrade Shield. +-------------------------- +A Shield molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +-------------------------- +Type: Shield +Defense: 65 +Weight: 65 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman classes +-------------------------- +Weight: 1 +# +16958# +A box containing 1 Upgrade Shoes. +-------------------------- +A pair of shoes molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +-------------------------- +Type: Shoes +Defense: 15 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +-------------------------- +Weight: 1 +# +16959# +A box containing 1 Upgrade Boots. +-------------------------- +A Boots molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +-------------------------- +Type: Shoes +Defense: 21 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Merchant, Thief, Archer, Taekwon, Star Gladiator and Gunslinger +-------------------------- +Weight: 1 +# +16960# +A box containing 1 Upgrade Greaves. +-------------------------- +A Greave molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +-------------------------- +Type: Shoes +Defense: 32 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Knight and Crusader classes +-------------------------- +Weight: 1 +# +16961# +A box containing 1 Upgrade Hood. +-------------------------- +A hood molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +-------------------------- +Type: Garment +Defense: 9 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16962# +A box containing 1 Upgrade Muffler. +-------------------------- +A muffler molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +-------------------------- +Type: Garment +Defense: 13 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +-------------------------- +Weight: 1 +# +16963# +A box containing 1 Upgrade Manteau. +-------------------------- +A manteau molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +-------------------------- +Type: Garment +Defense: 18 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Merchant, Thief, Taekwon and Star Gladiator +-------------------------- +Weight: 1 +# +16964# +A box containing 1 Upgrade Clip. +-------------------------- +A Clip molded out of Elunium and pure gold mixture. +-------------------------- +MaxHP +3% +MaxSP +30 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16965# +A box containing 1 Upgrade Adventure Suit. +-------------------------- +An adventure suit made of mixed elunium and gold. +-------------------------- +MaxHP +3% +-------------------------- +Type: Armor +Defense: 25 +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16966# +A box containing 1 Upgrade Coat. +-------------------------- +A coat made of mixed elunium and gold. +-------------------------- +MaxHP +3% +-------------------------- +Type: Armor +Defense: 47 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +-------------------------- +Weight: 1 +# +16967# +A box containing 1 Upgrade Saint Robe. +-------------------------- +A Saint Robe made of mixed elunium and gold. +-------------------------- +MaxHP +3% +MDEF +5 +-------------------------- +Type: Armor +Defense: 55 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Merchant and Acolyte +-------------------------- +Weight: 1 +# +16968# +A box containing 1 Upgrade Tight. +-------------------------- +A tight made of mixed elunium and gold. +-------------------------- +DEX +1 +MaxHP +3% +-------------------------- +Type: Armor +Defense: 32 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Archer +-------------------------- +Weight: 1 +# +16969# +A box containing 1 Upgrade Thief Clothes. +-------------------------- +A Thief Clothes made of mixed elunium and gold. +-------------------------- +AGI +1 +MaxHP +3% +-------------------------- +Type: Armor +Defense: 45 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Thief and Ninja +-------------------------- +Weight: 1 +# +16970# +A box containing 1 Upgrade Mail. +-------------------------- +A Mail made of mixed elunium and gold. +-------------------------- +MaxHP +3% +-------------------------- +Type: Armor +Defense: 60 +Weight: 165 +Armor Level: 1 +-------------------------- +Requirement: +Knight and Crusader classes +-------------------------- +Weight: 1 +# +16971# +A box containing 1 Upgrade Formal Suit. +-------------------------- +A Formal Suit made of mixed elunium and gold. +-------------------------- +MaxHP +3% +-------------------------- +Type: Armor +Defense: 45 +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +-------------------------- +Weight: 1 +# +16972# +A box that contains 4 costume headgears that convey different patterns of the weather. +-------------------------- +Opening it will give all 4 of the following: +-1x Costume: Shining Sun +-1x Costume: Rainbow +-1x Costume: Lightning Cloud +-1x Costume: Rain Cloud +-------------------------- +Weight: 1 +# +16973# +A box that contains 1 Costume-Yellow Hat +-------------------------- +Description: +A simple yellow hat with a long feather in it. Fashionistas wear it to the side lest they be shunned. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16974# +A box that contains 2 costume headgears that give you the appearance of a famous old-timey actor. +-------------------------- +Opening it will give both of the following: +-1x Costume: Old Timey Mustache +-1x Costume: Old Timey Bowler +-------------------------- +Weight: 1 +# +16975# +A box that contains 1 Costume-Singing Bird +-------------------------- +Description: +A newly hatched baby bird chirps it's tunes on a twig of dreams. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16976# +Wearing these items will give you the presence of the tastiest poultry in all of Rune Midgard. +-------------------------- +A box that contains 1 ofeach: +-1x Costume: Chicken Beak +-1x Costume: Rooster's Comb +-------------------------- +Weight: 1 +# +16977# +A box that contains 1 Costume-Mini Crown +-------------------------- +Description: +A mini red crown affixed to a headband and worn off to the side. Though not a true symbol of royalty, this crown does have a regal air about it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16978# +A box that contains 1 Foxtail +-------------------------- +A plant that usually bitten by stranger wanderer whose passing a grassland. +-------------------------- +MATK +10 +-------------------------- +Decreases Fixed Casting Time by 0.1 second. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16979# +Box containing 4 Silvervine Fruits. A small amount of canned food is included as a bonus. +-------------------------- +Sunkissed Silvervine Fruit. Human think that is normal and tastes bad but it is valuable in Malangdo. +-------------------------- +Weight: 0 +-------------------------- + once opened the item becomes account bound +-------------------------- +Weight: 1 +# +16992# +A box that contains 20 Butterfly Wings. +An enchanted butterfly's wing that instantly sends its user to his Save Point when waved in the air. +-------------------------- +Weight: 0 +# +16993# +A box containing 50 Butterfly Wings. +An enchanted butterfly's wing that instantly sends its user to his Save Point when waved in the air. +-------------------------- +Weight: 0 +# +16995# +An box containing a Old Hat with a mysterious blue glow. +-------------------------- +It is not known which of the 22 pitches you will get. +-------------------------- +Weight: 1 +# +16998# +A box has a archangel wing inside. +White and big wings of archangel. +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +16999# +A box that contains 1 Adventure's Backpack. +-------------------------- +Description: +A small backpack with essential items for adventure. +-------------------------- +Enables the use of Level 1 Greed +-------------------------- +Base STR at least 90: +Refine Level +7: +ATK +20 +Refine Level +9: +ATK +10 +-------------------------- +Base INT at least 90: +Refine Level +7: +MATK +30 +Refine Level +9: +MATK +20 +-------------------------- +Base VIT at least 90: +Refine Level +7: +Decreases damage taken from Neutral elemental attacks by 10%. +Refine Level +9: +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Base AGI at least 90: +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 8%). +Refine Level +9: +ASPD +1 +-------------------------- +Base DEX at least 90: +Refine Level +7: +Increases Ranged Physical Damage by 5%. +Refine Level +9: +Increases Ranged Physical Damage by 5%. +-------------------------- +Base LUK at least 90: +Refine Level +7: +Increases Critical Damage by 10%. +Refine Level +9: +Increases Critical Damage by 5%. +-------------------------- +Type: Garment +Defense: 20 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +17000# +A box containing 5 Wanderman Scrolls. +-------------------------- +Weight: 1 +# +17001# +A box containing 10 Wanderman Scrolls. +-------------------------- +Weight: 1 +# +17002# +A box containing 5 Wicket Nymph Scrolls. +-------------------------- +Weight: 1 +# +17003# +A box containing 10 Wicket Nymph Scrolls. +-------------------------- +Weight: 1 +# +17004# +A box containing 5 Kasa Scrolls. +-------------------------- +Weight: 1 +# +17005# +A box containing 10 Kasa Scrolls. +-------------------------- +Weight: 1 +# +17006# +A box containing 5 Salamander Scrolls. +-------------------------- +Weight: 1 +# +17007# +A box containing 10 Salamander Scrolls. +-------------------------- +Weight: 1 +# +17008# +A box containing 5 Teddy Bear Scrolls. +-------------------------- +Weight: 1 +# +17009# +A box containing 10 Teddy Bear Scrolls. +-------------------------- +Weight: 1 +# +17013# +Box containing 1 Octopus Hunting stick and 1 Seagod's Protection (23 hour rental) +-------------------------- +A special hunting stick to hunt Giant Octopus. Use this item to access the Octopus Cave Memorial Dungeon. +A token in which Protection of the Seagod was endowed into. It allows you to have a special ability to survive deep under the sea. Used to access the Culvert Memorial Dungeon + once opened the item becomes account bound +-------------------------- +Weight: 1 +# +17014# +A box that contains 1 Costume Butterfly Ears +-------------------------- +Description: +Have the appearance of wearing the wings of a butterfly as your ears with this accessory. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +17015# +A box that contains 1 Costume Bolt Ears +-------------------------- +Description: +You can look like you just rolled off the assembly line with these bolt-on ear accessories. +-------------------------- +Type: Costume +Position: Middle +-------------------------- +Requirement: None +Weight: 1 +# +17024# +A special scroll for valentine. +-------------------------- +Weight: 1 +# +17026# +A scroll that enchanted with power of Boitata. Player can get random item. +-------------------------- +Weight: 1 +# +17027# +A box containing 5 Enriched Elunium and 5 Enriched Oridecon. You also can get Lucky Eggs. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Box Weight: 1 +# +17030# +A box containing 1 St_Patrick's_Hat. +-------------------------- +Weight: 10 +# +17035# +Special Scroll for celebrating Pices. +-------------------------- +Weight: 1 +# +17036# +A box containing 10 pieces of Pisces Diadem Scroll. +Have chance to obtain Pisces Diadem, Ears of Ifrit, Gryphon Hat, Bradium Earring and other valuable item. +-------------------------- +Weight: 1 +# +17037# +A box containing 10pcs of transformation scrolls(Deviruchi) with 1pc of bonus scroll(poring). +A mystery scroll which allows you to transform into monster Deviruchi for 20 min. +ASPD +1, HIT +5 during transformed as Deviruchi. +Caution! Transformation will be end with death. +-------------------------- +Weight: 1 +# +17038# +A box containing 10pcs of transformation scrolls(Raydric Archer) with 1pc of bonus scroll(poring). +A mystery scroll which allows you to transform into monster Raydric Archer for 20 min. +Increases attack 25% by using bow. +Caution! Transformation will be end with death. +-------------------------- +Weight: 1 +# +17039# +A box containing 10pcs of transformation scrolls(Mavka) with 1pc of bonus scroll(poring). +A mystery scroll which allows you to transform into monster Mavka for 20 min. +Increases attack 25% by using bow. +Caution! Transformation will be end with death. +-------------------------- +Weight: 1 +# +17040# +A box containing 10pcs of transformation scrolls(Marduk) with 1pc of bonus scroll(poring). +A mystery scroll which allows you to transform into monster Marduk for 20 min. +Increases Magical Damage 25%. +Caution! Transformation will be end with death. +-------------------------- +Weight: 1 +# +17041# +A box containing 10pcs of transformation scrolls(Banshee) with 1pc of bonus scroll(poring). +A mystery scroll which allows you to transform into monster Banshee for 20 min. +Increases Magical Damage 25%. +Caution! Transformation will be end with death. +-------------------------- +Weight: 1 +# +17042# +A box containing 10pcs of transformation scrolls(Poring). +A mystery scroll which allows you to transform into monster Poring for 20 min. +Increases critical damage 25% during transformed as Poring +Caution! Transformation will be end with death. +-------------------------- +Weight: 1 +# +17043# +A box containing 10pcs of transformation scrolls(Golem) with 1pc of bonus scroll(poring). +A mystery scroll which allows you to transform into monster Golem for 20 min. +Increases resistance of non property 2% and activate Endure Lv5 by certain chance when gets physical attack. +Caution! Transformation will be end with death. +-------------------------- +Weight: 1 +# +17044# +A box containing 1 Green Ribbon. +-------------------------- +Weight: 1 +# +17045# +A box containing 1 Judge Hat. +-------------------------- +Hat of famous judge. +-------------------------- +Decreases Variable Casting Time by 6%. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 6%). +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by 2%. +MDEF +2 +-------------------------- +[Swordman,Merchant,Thief,Monk,Taekwon] +For each 2 Refine Levels: +ATK +1% +-------------------------- +[Magician,Acolyte,Soul Linker,Ninja] +For each 2 Refine Levels: +MATK +1% +-------------------------- +[Archer,Gunslinger] +Every 1 Refine Levels: Ranged Physical Damage +1% +-------------------------- +When VIP status active: +All Stats +1 +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17046# +You can get one of the following items randomly: +-------------------------- +- Costume Green Feeler, +- Costume Jack be Dandy, +- Costume Helm, +- Costume Spiky Band, +- Costume Iron Cane. +-------------------------- +Weight: 1 +# +17052# +A box containing 1 HolyMom Blaze. +-------------------------- +Box Weight: 1 +# +17053# +A box that contains 10 of each colored Butterfly Wings and 10 Dungeon Teleport Scrolls. +-------------------------- +Yellow Butterfly Wing: +An enchanted butterfly's wing that instantly sends its user to the towns of the Rune Midgarts Kingdom. +Locations: Prontera, Geffen, Payon, Morocc, Al De Baran or Alberta when waved in the air. +Warning: If no town is selected, the item will disappear. +-------------------------- +Weight: 1 +-------------------------- +Green Butterfly Wing: +An enchanted butterfly's wing that instantly sends its user to the towns of the Schwaltzwalt Republic. +Locations: Juno, Lighthalzen, Einbroch or Hugel when waved in the air. +Warning: If no town is selected, the item will disappear. +-------------------------- +Weight: 1 +-------------------------- +Red Butterfly Wing: +An enchanted butterfly's wing that instantly sends its user to the towns of Arunafeltz. +Locations: Veins or Rachel +Warning: If no town is selected, the item will disappear. +-------------------------- +Weight: 1 +-------------------------- +Blue Butterfly Wing: +An enchanted butterfly's wing that instantly sends its user to the island towns of Rune Midgard. +Locations: Ayothaya, Amatsu, Luoyang, Kunlun +Warning: If no town is selected, the item will disappear. +-------------------------- +Weight: 1 +-------------------------- +Box Weight: 1 +# +17065# +A box containing 1 Taurus Crown. +-------------------------- +A magnificent crown created to pay tribute to the 2nd sign of the zodiac, Taurus the Bull. +-------------------------- +AGI +2 +FLEE +10 +-------------------------- +Random chance to inflict Stun status on the target when dealing physical damage. +Each Refine increase the chance of inflicting Stun. +-------------------------- +Refine Level +7: +ATK +15 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +-------------------------- +Weight: 1 +# +17066# +A box that contains 50 Poison Bottles. Use caution when handling it. +-------------------------- +Weight: 1 +# +17067# +A box has poison bottle 100. must careful on dealing with. +-------------------------- +Weight: 1 +# +17068# +A demolition specialist's starter kit, designed to help with creation of Acid Bombs. +Contains 50each of the following: +-Acid Bottle +-Fire Bottle +This item will be available initially for one week as a test, if it proves viable it may remain in the shop.. +-------------------------- +Weight: 1 +# +17069# +A box has fire bottle 100 and acid bottle 100. must careful on dealing with. +-------------------------- +Weight: 1 +# +17070# +A box has fire bottle 500 and acid bottle 500. must careful on dealing with. +-------------------------- +Weight: 1 +# +17071# +A box has Superb Fish Slice 50. must careful on dealing with. +-------------------------- +Weight: 1 +# +17072# +A box has Superb Fish Slice 100. must careful on dealing with. +-------------------------- +Weight: 1 +# +17073# +A box has Superb Fish Slice 500. must careful on dealing with. +-------------------------- +Weight: 1 +# +17074# +A box contains 1 Empty Bottle +amount: 10 +Item description: +-------------------------- +An empty bottle that can be used for carrying liquid. +-------------------------- +Type: Essential +Weight: 2 +-------------------------- +Box Weight: 1 +# +17075# +A box contains 1 Empty Bottle +amount: 100 +Item description: +-------------------------- +An empty bottle that can be used for carrying liquid. +-------------------------- +Type: Essential +Weight: 2 +-------------------------- +Box Weight: 1 +# +17076# +A box contains 1 Empty Bottle +amount: 500 +Item description: +-------------------------- +An empty bottle that can be used for carrying liquid. +-------------------------- +Type: Essential +Weight: 2 +-------------------------- +Box Weight: 1 +# +17081# +A Box containing 1 Crown of Yggdrasil +Item Description: +-------------------------- +A Crown woven from Yggdrasil's Branches which represents new life after a sacrifice. +VIT +2, INT +2. ++1% Heal to yourself and others. +For each Refine Level up to +6, this percentage increases by 1. +If Refine Level is at +7 or higher: this percentage increases by 2. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +-------------------------- +Box Weight: 1 +# +17084# +A box containing 1 Upgrade Katar. +-------------------------- +For each Refine Level: +ATK +10 +Increases Critical Damage by 2%. +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Katar +Attack: 80 +Weight: 100 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Assassin classes +-------------------------- +Weight: 1 +# +17085# +A box containing 1 Upgrade Two-Handed Axe. +-------------------------- +Two-Handed Axe that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +14 +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Axe +Attack: 110 +Weight: 200 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Swordsman and Merchant +-------------------------- +Weight: 1 +# +17086# +A box containing 1 Upgrade Two-Handed Spear. +-------------------------- +Two-Handed Spear that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +12 +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Two-Handed Spear +Attack: 105 +Weight: 150 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Swordsman classes +-------------------------- +Weight: 1 +# +17087# +A box containing 1 Upgrade Book. +-------------------------- +Book that is coated by Oridecon and Gold with perfect Level. +-------------------------- +MATK +20 +-------------------------- +For each Refine Level: +ATK +10 +MATK +5 +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Book +Attack: 45 +Weight: 60 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Priest, Sage and Star Gladiator +-------------------------- +Weight: 1 +# +17088# +A box containing 1 Upgrade Two-Handed Staff. +-------------------------- +Staff that is coated by Oridecon and Gold with perfect Level. +-------------------------- +MATK +70 +-------------------------- +When equipped by Wizard classes: +MATK +30 +-------------------------- +When equipped by Sage classes: +MATK +20 +-------------------------- +For each Refine Level: +MATK +10 +Increases Healing skills effectiveness by 1%. +-------------------------- +For each 10 Base Level above 70: +MATK +10 +-------------------------- +Type: Two-Handed Staff +Attack: 50 +Weight: 100 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Magician, Acolyte and Soul Linker +-------------------------- +Weight: 1 +# +17089# +A box containing 1 Upgrade Dagger. +-------------------------- +Dagger that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +10 +MATK +5 +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Dagger +Attack: 55 +Weight: 60 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +-------------------------- +Weight: 1 +# +17090# +A box containing 1 Upgrade Revolver. +-------------------------- +Revolver that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +5 +Increases Ranged Physical Damage by 2%. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Revolver +Attack: 35 +Weight: 50 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Gunslinger +-------------------------- +Weight: 1 +# +17091# +A box containing 1 Upgrade Mace. +-------------------------- +Mace that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +10 +Increases Healing rate by 1%. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Mace +Attack: 80 +Weight: 80 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Novice, Swordsman, Acolyte and Merchant +-------------------------- +Weight: 1 +# +17092# +A box containing 1 Upgrade Bow. +-------------------------- +Bow that is coated by Oridecon and Gold with perfect Level. +-------------------------- +When equipped by Hunter classes: +ATK +20 +-------------------------- +For each Refine Level: +ATK +7 +Increases Ranged Physical Damage by 2%. +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Bow +Attack: 60 +Weight: 60 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Archer +-------------------------- +Weight: 1 +# +17093# +A box containing 1 Upgrade Two-Handed Sword. +-------------------------- +TwoHanded Sword that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +12 +MATK +5 +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Two-Handed Sword +Attack: 100 +Weight: 150 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Swordsman classes +-------------------------- +Weight: 1 +# +17094# +A box containing 1 Upgrade Katar and 1 Lucky Egg. +-------------------------- +A katar that is coated with elunium and gold. +-------------------------- +For each Refine Level: +ATK +10 +Increases Critical Damage by 2%. +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Katar +Attack: 80 +Weight: 100 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Assassin classes +-------------------------- +Weight: 1 +# +17095# +A box containing 1 Upgrade Two-Handed Axe and 1 Lucky Egg. +-------------------------- +Two-Handed Axe that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +14 +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Axe +Attack: 110 +Weight: 200 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Swordsman and Merchant +-------------------------- +Weight: 1 +# +17096# +A box containing 1 Upgrade Two-Handed Spear and 1 Lucky Egg. +-------------------------- +Two-Handed Spear that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +12 +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Two-Handed Spear +Attack: 105 +Weight: 150 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Swordsman classes +-------------------------- +Weight: 1 +# +17097# +A box containing 1 Upgrade Book and 1 Lucky Egg. +-------------------------- +Book that is coated by Oridecon and Gold with perfect Level. +-------------------------- +MATK +20 +-------------------------- +For each Refine Level: +ATK +10 +MATK +5 +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Book +Attack: 45 +Weight: 60 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Priest, Sage and Star Gladiator +-------------------------- +Weight: 1 +# +17098# +A box containing 1 Upgrade Two-Handed Staff and 1 Lucky Egg. +-------------------------- +Staff that is coated by Oridecon and Gold with perfect Level. +-------------------------- +MATK +70 +-------------------------- +When equipped by Wizard classes: +MATK +30 +-------------------------- +When equipped by Sage classes: +MATK +20 +-------------------------- +For each Refine Level: +MATK +10 +Increases Healing skills effectiveness by 1%. +-------------------------- +For each 10 Base Level above 70: +MATK +10 +-------------------------- +Type: Two-Handed Staff +Attack: 50 +Weight: 100 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Magician, Acolyte and Soul Linker +-------------------------- +Weight: 1 +# +17099# +A box containing 1 Upgrade Dagger and 1 Lucky Egg. +-------------------------- +Dagger that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +10 +MATK +5 +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Dagger +Attack: 55 +Weight: 60 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +-------------------------- +Weight: 1 +# +17100# +A box containing 1 Upgrade Revolver and 1 Lucky Egg. +-------------------------- +Revolver that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +5 +Increases Ranged Physical Damage by 2%. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Revolver +Attack: 35 +Weight: 50 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Gunslinger +-------------------------- +Weight: 1 +# +17101# +A box containing 1 Upgrade Mace and 1 Lucky Egg. +-------------------------- +Mace that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +10 +Increases Healing rate by 1%. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Mace +Attack: 80 +Weight: 80 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Novice, Swordsman, Acolyte and Merchant +-------------------------- +Weight: 1 +# +17102# +A box containing 1 Upgrade Bow and 1 Lucky Egg. +-------------------------- +Bow that is coated by Oridecon and Gold with perfect Level. +-------------------------- +When equipped by Hunter classes: +ATK +20 +-------------------------- +For each Refine Level: +ATK +7 +Increases Ranged Physical Damage by 2%. +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Bow +Attack: 60 +Weight: 60 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Archer +-------------------------- +Weight: 1 +# +17103# +A box containing 1 Upgrade Two-Handed Sword and 1 Lucky Egg. +-------------------------- +TwoHanded Sword that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +12 +MATK +5 +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Two-Handed Sword +Attack: 100 +Weight: 150 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Swordsman classes +-------------------------- +Weight: 1 +# +17104# +A box that contains 50 HD Oridecon +-------------------------- +Description: +High Density Oridecon +that has been buried +deep underground. +Used as a material to +strengthen weapons currently from Refine Levels 7 through 9. +This item's density ensures that Refine attempts will not break the weapon and if the attempt fails it will only downgrade by 1. +Only a Blacksmith named Mighty Hammer in Payon can use this ore to Refine. +-------------------------- +Weight: 1 +# +17105# +A box that contains 50 HD Elunium +-------------------------- +Description: +High Density Elunium +that has been buried +deep underground. +Used as a material +to strengthen armor currently from Refine Levels 7 through 9. +This item's density ensures that Refine attempts will not break the armor and if the attempt fails it will only downgrade by 1. +Only a Blacksmith named Mighty Hammer in Payon can use this ore to Refine. +-------------------------- +Weight: 1 +# +17106# +A box that contains 10 Gym Passes +-------------------------- +Description: +A Gym Pass that can be +given to a special +NPC to learn a skill +that will Increases your Maximum Weight +Capacity by 200 for +each skill Level. +This special skill +can only be learned +up to Level 10. +-------------------------- +Weight: 1 +-------------------------- +Box Weight: 1 +# +17107# +A special scroll to celebrate the month of Gemini. +You can get a valuable item such as Gemini Crown, Dark Snake Lord Card, Elven Ears, Gentleman's Pipe, Hawk Eyes etc. +-------------------------- +Weight: 1 +# +17108# +A box containing 10 piece of Gemini Crown Scroll. +-------------------------- +Weight: 1 +# +17110# +A scroll with the Aquarius sign fixed upon it. +-------------------------- +Weight: 1 +# +17114# +Box contain Ancient Horns. +# +17115# +Box contain Sprout Hat. +# +17116# +Box contain Mercury Riser. +# +17117# +A scroll with the Aries sign fixed upon it. +-------------------------- +Weight: 1 +# +17118# +Effect vary depends on user's AGI. +A box containing 10 ASPD Enchanced Potions. +An enchanced potion that has greater effect than a normal aspd potion. +For 15 minutes slightly Increases the attack speed of user. Can be used by any job. +-------------------------- +Weight: 0 +# +17120# +A scroll with the Taurus sign fixed upon it. +-------------------------- +Weight: 1 +# +17121# +A scroll with numerous stars. +-------------------------- +Weight: 1 +# +17122# +A box containing 1 Immune Shield +-------------------------- +Very unique, square formed shield with a special jewel on it which protects from physical power. +If upgraded to +5 or higher: Increases 1% of tolerance against Neutral attack. (The tolerance Increases is limited to Refine Level 12) per Refine Level. +-------------------------- +Type: Shield +Defense: 55 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17123# +A box containing one Black Devil's Mask +-------------------------- +A grotesque headgear which covers a half of a person's face. But don't you worry. The part of eyes are open so you can see well. +All Stats +2. +-------------------------- +Type: Headgear +Defense: 0 +Position: Medium +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17124# +A box containing one Cat Ear Beret +-------------------------- +A cute beret with cat ears! Cats don't normally wear hats but if they did they would wear this one. +If upgraded to +5 or higher: Increases 2% of Physical damage on Demi-Human race monster and reduces 2% of physical damage from Demi-Human race monster per Refine Level over 4 and caps at Level 12. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17125# +A box containing one Red Pom Band +-------------------------- +A lovely red hat with a white pom pom. +MDEF +5 +If upgraded to +5 or higher: Increases 2% of Magical damage on Demi-Human race monster and reduces 2% of magical damage from Demi-Human race monster per Refine Level over 4 and caps at Level 12. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17126# +Effect vary depends on user's AGI. +A box containing 10 ASPD Enchanced Potions. +-------------------------- +An enchanced potion that has greater effect than a normal aspd potion. +For 15 minutes slightly Increases the attack speed of user. Can be used by any job. +-------------------------- +Weight: 1 +# +17135# +A box containing 30 Transformation Scroll(Deviruchi), 30 Transformation Scroll(Golem), 6 Transformation Scroll(Poring) and 1 Clothing Dye Coupon Box. +-------------------------- +Weight: 1 +# +17136# +A box containing 30 Transformation Scroll(Banshee), 30 Transformation Scroll(Marduk), 6 Transformation Scroll(Poring) and 1 Clothing Dye Coupon Box. +-------------------------- +Weight: 1 +# +17137# +A box containing 30 Transformation Scroll(Mavka), 30 Transformation Scroll(Raydric Archer), 6 Transformation Scroll(Poring) and 1 Clothing Dye Coupon Box. +-------------------------- +Weight: 1 +# +17138# +A scroll with the Cancer sign fixed upon it. +-------------------------- +Weight: 1 +# +17140# +A scroll with the Leo sign fixed upon it. +-------------------------- +Weight: 1 +# +17141# +A scroll with the Virgo sign fixed upon it. +-------------------------- +Weight: 1 +# +17142# +A scroll with the Libra sign fixed upon it. +-------------------------- +Weight: 1 +# +17143# +A scroll with the Scorpio sign fixed upon it. +-------------------------- +Weight: 1 +# +17144# +A box containing one dish box, a comprehensive gift set for cooking. As a bonus, Dragon Eggs are also included. +-------------------------- +Weight: 1 +# +17145# +A box containing 5 of each Dragon Breath Cocktail, Stew of Immortality, Steamed Desert Scorpions, Hwergelmir's Tonic and Cooked Nine Tail's Tails. As a bonus, 3x Toktok Candy are also included. +-------------------------- +Weight: 1 +# +17146# +A box with 1 Depressed Alice doll in it. +-------------------------- +Weight: 1 +# +17147# +A box with 1 Ribbon Chef Hat in it. +-------------------------- +Weight: 1 +# +17153# +A box containing 20 Red Booster. +Description: +-------------------------- +A Magical booster which activates the body energy in order to combat better. +-------------------------- +Increases ATK/MATK by 30, +Increases Attack Speed (Decreases After Attack Delay by 5%), +Decreases Variable Casting Time by 5% +and decreases MaxHP/MaxSP by 10% for 10 minutes. +When attacking, Concentration Level 3 will be casted with a certain chance. +(If the character has the skill higher than Lv 3, the skill will be casted with the reached Level) +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +# +17154# +A box containing 20 Red Booster and 1 2011 RWC Scroll. +Description: +-------------------------- +A Magical booster which activates the body energy in order to combat better. +-------------------------- +Increases ATK/MATK by 30, +Increases Attack Speed (Decreases After Attack Delay by 5%), +Decreases Variable Casting Time by 5% +and decreases MaxHP/MaxSP by 10% for 10 minutes. +When attacking, Concentration Level 3 will be casted with a certain chance. +(If the character has the skill higher than Lv 3, the skill will be casted with the reached Level) +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +# +17155# +A box containing 1 Upgrade Huuma Shuriken. +-------------------------- +Shuriken coated with Oridecon and Gold mixed at a golden ratio. +-------------------------- +For each Refine Level: +ATK +10 +MATK +5 +Increases Ranged Physical Damage by 1%. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Indestructible in battle +-------------------------- +Type: Huuma Shuriken +Attack: 55 +Weight: 150 +Weapon Level: 3 +-------------------------- +Requirement: +Ninja +-------------------------- +Weight: 1 +# +17157# +A box containing 10 Vital Flowers, which is loved by Succubus. +-------------------------- +Weight: 1 +# +17158# +A box containing 10 Flame Gemstones, which is loved by Imps. +-------------------------- +Weight: 1 +# +17159# +A box that contains 1 Name Change Coupon +-------------------------- +Use this item to change your character's name on the Character Select menu. +After using this item you must logout to the Character Select menu and Right-Click on your character and choose 'Change Name' +You can then enter a new name as long as it is not already taken. +You must leave your current guild and/or party before changing your name. +-------------------------- +You can use this item once and it is account bound +-------------------------- +Weight: 0 +# +17160# +A box containing 1 Character Position Change Coupon and 1 Name Change Card. +You must leave your current guild and/or party before changing your name. +-------------------------- +Weight: 1 +# +17161# +A box containing the tickets needed to receive Kuppet Domovoy's eggs. +-------------------------- +Weight: 0 +# +17162# +A box containing 1 Boarding Halter. Available for 7 days. +-------------------------- +A mysterious halter that can be used to summon a creature to ride on it. +The type of creature depends on the Class. +-------------------------- +Weight: 1 +# +17163# +A box containing 30 Mystic Powder. +-------------------------- +A mysterious powder will lighten your body for a while when sprayed. +-------------------------- +FLEE +20, LUK +10 for 5 minutes. +-------------------------- +Item effects will also disappear if the character dies. +-------------------------- +Weight: 1 +# +17164# +A box containing 30 Mystic Powder and 1 Crew Egg. +-------------------------- +A mysterious powder will lighten your body for a while when sprayed. +-------------------------- +FLEE +20, LUK +10 for 5 minutes. +-------------------------- +Item effects will also disappear if the character dies. +-------------------------- +Weight: 1 +# +17165# +A package containing 50 Takoyaki. +-------------------------- +You should be able to counter the hunger that crawls up. +Let's enjoy them before they expire. +-------------------------- +Disappears automatically 168 hours after recieving. +-------------------------- +Takoyaki will automatically disappear 72 hours after opening.000000 +-------------------------- +Can only be sold to NPC's and moved into your storage. +-------------------------- +Weight: 150 +# +17166# +A box containing 1 Arc Angeling Hat. +-------------------------- +A very soft textured hat which was inspired from Arch Angeling. +-------------------------- +Increases Natural HP Recovery by 150%. +-------------------------- +For each Refine Level: +MaxHP +80 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Level Requirement: 1 +-------------------------- +Weight: 1 +# +17171# +A box containing 10x Battle Manuals. This is special package with additional 3 [Event] items. +-------------------------- +Battle Manual - Increases Experience gained by 50% for 30 minutes. +-------------------------- +Weight: 1 +# +17172# +A box containing 10x JOB Battle Manuals. This is special package with additional 3 [Event] items. +-------------------------- +JOB Battle Manual - Increases Job Experience gained by 25% for 30 mins. +Can be used together with Battle Manual. +-------------------------- +Weight: 1 +# +17173# +A box containing hats collected from all over the world. +Unique hats from West and East are included. +I don't know which hat I will get. +-------------------------- +Weight: 1 +# +17174# +A package containing 5 Global Hat Festival Boxes. +-------------------------- +Unique hats from West and East are included. +I don't know which hat I will get. +-------------------------- +Weight: 1 +# +17175# +A box containing hats collected from all over the world. +Unique hats from West and East are included. +I don't know which hat I will get. +-------------------------- +Weight: 1 +# +17176# +A box containing 1 Boarding Halter. Available for 3 days. +-------------------------- +A mysterious halter that can be used to summon a creature to ride on it. +The type of creature depends on the Class. +-------------------------- +Weight: 1 +# +17177# +A box containing 1 of each Dragon Breath Cocktail, Stew of Immortality, Steamed Desert Scorpions, Hwergelmir's Tonic and Cooked Nine Tail's Tails. +-------------------------- +Weight: 1 +# +17178# +A box containing 50 Mysterious Life Potion and 1 Nucleus of Undead. +-------------------------- +Recover 4% of MaxHP every 3 seconds for 10 minutes. +This item cannot be used in Berserk state. +If the character KO'ed in battle, this effect will disappear. +-------------------------- +Weight: 1 +# +17179# +A box containing 50 Mysterious Life Potion. +-------------------------- +Recover 4% of MaxHP every 3 seconds for 10 minutes. +This item cannot be used in Berserk state. +If the character KO'ed in battle, this effect will disappear. +-------------------------- +Weight: 1 +# +17180# +A box containing 50 Mysterious Life Potion and 1 Heart of Girl. +-------------------------- +Recover 4% of MaxHP every 3 seconds for 10 minutes. +This item cannot be used in Berserk state. +If the character KO'ed in battle, this effect will disappear. +-------------------------- +Weight: 1 +# +17182# +A box containing 1 Fallen Angel Wings. You can recieve a free enchantment from \ + in the item mall. +-------------------------- +A large, black wings of a fallen dark angel. +-------------------------- +All Stats +1 +-------------------------- +For each 20 base STR: +ATK +1 +-------------------------- +For each 20 base INT: +MATK +1 +-------------------------- +For each 20 base VIT: +Decreases damage taken from Neutral elemental attacks by 1%. +-------------------------- +For each 20 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +For each 20 base DEX: +Increases Ranged Physical Damage by 1%. +-------------------------- +For each 20 base LUK: +Increases Critical Damage by 1%. +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Armor Level: 1 +-------------------------- +Level Requirement: 1 +-------------------------- +Weight: 1 +# +17183# +A box containing a magical watch. +-------------------------- +The period of use of this item is from the end of scheduled maintenance on March 13, 2012 to the start of scheduled maintenance on April 10, 2012 +-------------------------- +Magical watches can only be used with characters who have opened their boxes. +All transactions and movements will be impossible, so please open the box with the character you want to use. +-------------------------- +Weight: 0 +# +17184# +A box contain a 3rd Job Change Ticket. +-------------------------- +Weight: 0 +# +17193# +A box containing 5 of Enriched Elunium and Enriched Oridecon. You can also get a Pope Scroll. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17194# +A box containing 10 RG Red Potions. +-------------------------- +Weight: 40 +# +17195# +A box containing 10 RG Blue Potions. +-------------------------- +Weight: 90 +# +17196# +A box containing 20 RG Golden Apple Slices. +-------------------------- +Weight: 300 +# +17197# +A box containing 25 RG Golden Apples. +-------------------------- +Weight: 300 +# +17198# +A box containing 50 RG Golden Potions. +-------------------------- +Weight: 30 +# +17200# +A box containing 1 RG Noble Hat. +-------------------------- +Weight: 1 +# +17201# +A box containing 1 RG Soft Sheep Hat. +-------------------------- +Weight: 1 +# +17202# +A doll resembles the fairy \ +. +-------------------------- +INT +3 +MDEF +9 +-------------------------- +Increases Magical Damage against monsters of Undead race by 10%. +-------------------------- +Random chance to transform wearer into Bacsojin when dealing or receiving magical attack. +While in transform, you will lose 10 SP per sec but you will gain more magical power. +Higher Refine Level will increase the transform duration and magical power. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +-------------------------- +Weight: 1 +# +17205# +A box given by the lost Poring in return. +This is one of the collections that Porings have cherished like their grandmother's sizzling money. Whatever it comes out of, it's a gift filled with tears and gratitude from Porings. +-------------------------- +Weight: 1 +# +17206# +A box containing 3 Limited Battle Manuals. +You can also get a Mysterious Egg II. +-------------------------- +Limited Battle Manual - Increases experience gained by 60% for 60 minutes. +-------------------------- +# +17209# +A scroll in rainbow colours. +Have chance to obtain +Taogun Ka Card, Sealed Ifrit Card, Sunglasses, Cowhide Hat, Satanic Chain P, Censor Bar and etc randomly. +-------------------------- +Weight: 1 +# +17210# +A scroll in red colours. +Have chance to obtain +Moonlight Flower Card, Sealed Orc Load Card, Majestic Evil Horn, Showy High Cap, Leek In Mouth and etc randomly. +-------------------------- +Weight: 1 +# +17211# +A scroll in orange colours. +Have chance to obtain +Doppelganger Card, Sealed Lord Of Death Card, Hippo Hat, Rose Hairband, Armor Refine Lv8 Scroll, Armor Weapon Lv8 Scroll and etc randomly. +-------------------------- +Weight: 1 +# +17212# +A scroll in yellow colours. +Have chance to obtain +Sealed High Wizard Card, MVP Basketball Hat, RWC2010 Indonesia, Electric Sunglass, Strawberry_In_Mouth, Armor Refine Lv7 Scroll, Armor Weapon Lv7 Scroll and etc randomly. +-------------------------- +Weight: 1 +# +17213# +A yellow box that has been passed down since ancient times. +Open up to see what will happen. +-------------------------- +Weight: 10 +# +17214# +A box containing a magical book. +-------------------------- +This item will be available until January 14, 2014, when scheduled maintenance starts. +If you open the box after the period of use, nothing will appear. +-------------------------- +Magical books can only be used by characters who have opened the box. +Open the box with the character you want to use it on. +-------------------------- +The magical book will automatically disappear 696 hours after opening the box. +-------------------------- +Weight: 0 +# +17215# +A box containing a magical book. +-------------------------- +This item will be available until April 15, 2014, when scheduled maintenance starts. +If you open the box after the period of use, nothing will appear. +-------------------------- +Magical books can only be used by characters who have opened the box. +Open the box with the character you want to use it on. +-------------------------- +The magical book will automatically disappear 744 hours after opening the box. +-------------------------- +Weight: 0 +# +17216# +A package containing 150 takoyaki. +If you are hungry enough to lose your sanity, you can rest assured. +Let's enjoy them before they expire. +-------------------------- +Disappears automatically 168 hours after recieving.000000 +-------------------------- +Takoyaki will automatically disappear 72 hours after opening +-------------------------- +Can only be sold to NPC's and moved in your storage.000000 +-------------------------- +Weight: 450 +# +17217# +A simple box with 50 chocolate donuts. +Let's enjoy them before the expiration date! +After opening, consume as soon as possible regardless of the expiration date. +-------------------------- +Disappears automatically 168 hours after recieving. +-------------------------- +Chocolate Donut will automatically disappear 72 hours after opening. +-------------------------- +Can only be sold to NPC's and moved in your storage.000000 +-------------------------- +Weight: 150 +# +17218# +A simple box with 150 chocolate donuts. +Let's enjoy them before the expiration date! +After opening, consume as soon as possible regardless of the expiration date. +-------------------------- +Disappears automatically 168 hours after recieving. +-------------------------- +Chocolate Donut will automatically disappear 72 hours after opening. +-------------------------- +Can only be sold to NPC's and moved in your storage. +-------------------------- +Weight: 450 +# +17219# +A box containing a magical apple. +-------------------------- +Magical Apple: If you give it to the \ + in the refresh room, you will get a status reset. +-------------------------- +Rebirth, 3rd Jobs, Kagerou/Oboro, Rebellion, Expanded Super Novice, Summoners will need [Magical Apple] to use the status reset service. +-------------------------- +Magical Apple can only be used by the characters who have opened the box. +Open the box with the character you want it to use on. +-------------------------- +Weight: 0 +# +17220# +A box containing a special quest ticket. +-------------------------- +Special Quest Ticket: +Take it to NPC \ + in Prontera, the capital city of Rune Midgard. +-------------------------- +This item will be available until May 26, 2015 (Tuesday), when scheduled maintenance starts. +If you open the box after the period of use, nothing will appear. +-------------------------- +Can only be sold to NPC's and moved in your storage. +-------------------------- +Weight: 10 +# +17224# +A box containing 10 Almighty. +-------------------------- +The ultimate dish that condensed all the dishes that were said to be good for the body. +All Stats +10, ATK +30, MATK +30 for 30 minutes. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +17229# +A box containing one Infinite Flywing. Duration 7 days. +-------------------------- +Rental Item +The wings cut from fly to be made into enchanted item. +-------------------------- +Type: Supportive +Effect: Teleport to random cell +Weight: 0 +-------------------------- +Weight: 1 +# +17231# +A box containing 5 of Enriched Elunium and Enriched Oridecon. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17232# +A box containing 1 Safe to 7 Weapon Certificate and 1 Safe to 7 Armor Certificate. +-------------------------- +Weight: 1 +# +17241# +A box containing 1 Amistr Cap. +-------------------------- +Smooth fluffy cap inspired by Homunculus Amistr. +-------------------------- +VIT +1 +-------------------------- +Random chance to auto-cast Level 5 Pierce when dealing physical damage. +-------------------------- +For each 2 Refine Levels: +VIT +1 +-------------------------- +When equipped with Romantic Leaf: +Reflects physical damage by 1%. +-------------------------- +For each 2 Refine Levels of Amistr Cap: +Reflects physical damage by 1%. +-------------------------- +When equipped with Romantic Flower: +MaxSP +20 +-------------------------- +For each 2 Refine Levels of Amistr Cap: +MaxSP +10 +-------------------------- +When equipped with Scarlet Rose: +For each Refine Level of Amistr Cap: +MATK +1% +ATK +1%. +(Limited to +10 Refine Level) +-------------------------- +When equipped with Crunch Toast: +MaxHP +100 +-------------------------- +Refine Level of Amistr Cap is +7 or higher: +MaxHP +100 +-------------------------- +Refine Level of Amistr Cap is +9 or higher: +MaxHP +200 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 50 +Level Requirement: 1 +-------------------------- +Weight: 1 +# +17243# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Nekomimi Hat +- Costume Fallen Angel +- Costume Twin Red Ribbon +- Costume Red Ribbon +- Costume April's Fool Day +- Costume Flapping Angel Wings +- Costume Magic Eyes +- Costume Hibiscus +- Costume Laurel Wreath +- Costume Decorative Geographer +-------------------------- +Weight: 1 +# +17244# +A box containing 10 Almighty and 1 King Wolf Scroll. +-------------------------- +The ultimate dish that condensed all the dishes that were said to be good for the body. +All Stats +10, ATK +30, MATK +30 for 30 minutes. +-------------------------- +Weight: 1 +-------------------------- +Weight: 1 +# +17245# +Contains mysterious item. +# +17246# +Box containing 30 HD Elunium. +-------------------------- +Used as a material to strengthen armor currently from Refine Levels 7 through 9. +This item's density ensures that Refine attempts will not break the armor and if the attempt fails it will only downgrade by 1. +-------------------------- +Weight: 1 +# +17247# +Box containing 30 HD Oridecon. +-------------------------- +Used as a material to strengthen weapon currently from Refine Levels 7 through 9. +This item's density ensures that Refine attempts will not break the armor and if the attempt fails it will only downgrade by 1. +-------------------------- +Weight: 1 +# +17249# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Note Headphone +- Costume Chicken Love Hat +- Costume Red Glasses +- Costume Gang Scarf +- Costume Chick Hat +- Costume Whisper Mask +- Costume Peco Ears +- Costume Valkyrie Feather Band +- Costume Ninja Scroll +- Costume Romantic White Flower000000 +-------------------------- +Weight: 1 +# +17250# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Charming Ribbon +- Costume White Kitten Ears +- Costume Helm of Darkness +- Costume Moonlight Flower Hat +- Costume Wickebine Ears +- Costume Takius Blindfold +- Costume Phoenix Crown +- Costume Ramen Hat +- Costume Red Deviruchi Hat +- Costume Autumn Leaves +-------------------------- +Weight: 1 +# +17251# +A box containing one Unlimited Fly Wing, which can be used for 3 days. +-------------------------- +Rental Item +The wings cut from fly to be made into enchanted item. You can warp anywhere on the map. +-------------------------- +Weight: 1 +# +17252# +This box contains the following: +1 RWC 2012 Ring +1 RWC 2012 Pendant +-------------------------- +This box is tradeable the contents inside are account bound. +-------------------------- +Weight: 1 +# +17253# +A box that contains 1 RWC Initializer Ticket +-------------------------- +Take this ticket to the RWC Enchanter so that you can change the enchantment of your RWC 2012 Ring or RWC 2012 Pendant. +-------------------------- +Weight: 1 +# +17254# +A box that contains 5 RWC Initializer Tickets +-------------------------- +Take this ticket to the RWC Enchanter so that you can change the enchantment of your RWC 2012 Ring or RWC 2012 Pendant. +-------------------------- +Weight: 1 +# +17256# +Gift package for model students. +It contains an Evoked Angel School Cap, Red Pencil in Mouth, School Uniform, Rice Cake Box(50) and 5 Life Insurance. +-------------------------- +Weight: 1 +# +17257# +Special gift packs for troublemakers. +It contains an Evoked Demon School Cap, Blue Pencil in Mouth, School Uniform, Rice Cake Box(50) and 5 Life Insurance. +-------------------------- +Weight: 1 +# +17258# +Containing Battle Armors, which symbolizes the highest status, from the outside it is impossible to see what is inside. +-------------------------- +# +17259# +Containing Battle Boots, which symbolizes the highest status, from the outside it is impossible to see what is inside. +-------------------------- +# +17260# +Containing Battle Boots, which symbolizes the highest status, from the outside it is impossible to see what is inside. +-------------------------- +# +17261# +Containing Battle Armors, which symbolizes the highest status, from the outside it is impossible to see what is inside. +-------------------------- +# +17262# +Box Containing 5 Special Defense Potion. RWC Celebration '2012 RWC Scroll'Can be Obtained.. +-------------------------- +Made up of Tough Skin of Dragon and Fairy to Create Special Potion. +For 30 Minutes,Decreases damage taken from Physical And Magical Attack by 3% +No Effect when Character is dead in Battle. +-------------------------- +Weight: 1 +# +17263# +Contain 1 three days Infinite Concentration Potion +-------------------------- +Rental Item +Potion that helps to increase the character's agility for a certain period of time. It also increases that attack speed of characters. +Can be used by all professions. +5 seconds reuse delay +-------------------------- +Weight: 0 +-------------------------- +Weight: 1 +# +17264# +Contain 1 three days Infinite Awakening Potion +-------------------------- +Rental Item +Potion that possesses the effect of awakening. It is a mysterious medicine that helps to increase the character's attack speed. +Can only be used by characters over Lv 40. Acolyte, Priest, Bard and Dancer can't use it. +5 seconds reuse delay +-------------------------- +Weight: 0 +-------------------------- +Weight: 1 +# +17265# +Contain 1 three days Infinite Berserk Potion +-------------------------- +Rental Item +A very special potion that enrages the character and turns him into a berserker and increases the character's attack speed. +Can only be used by characters over Lv 85. Only characters with the profession of Swordman Class, Merchant Class, Rogue, Magician and Wizard Class can use it. +5 seconds reuse delay +-------------------------- +Weight: 0 +-------------------------- +Weight: 1 +# +17266# +A box containing 10 Limited Battle Manuals. +The package contains also 3 Infinite Attack Potions Boxes (Concentration, Awakening and Berserk) and 3 Infinite Fly Wing Boxes. +-------------------------- +Limited Battle Manual - Increases experience gained by 60% for 60 minutes. +-------------------------- +Weight: 1 +# +17267# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Rabbit Magic Hat +- Costume Sweet Bonnet +- Costume Marcher Hat +- Costume Master's Hat +- Costume Tiraya Bonnet +- Costume Minstrel Hat +- Costume Captain Hat +- Costume Vacation Hat +- Costume Brown Beanie +- Costume Coppola +-------------------------- +Weight: 1 +# +17268# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Rainbow Poring Hat +- Costume Dragon Helm +- Costume Wind Milestone +- Costume Reginleif Wings +- Costume Southern Cross +- Costume Piggie Bank +- Costume Poring Letter +- Costume Benevolent Guardian +- Costume Demon Mask +- Costume Jumping Poring +-------------------------- +Weight: 1 +# +17269# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Rabbit Earplug +- Costume Shine Stanta Poring +- Costume Soulless Wing +- Costume Bell Ribbon +- Costume Round Eyes J +- Costume Tongue Mask +- Costume Silver Tiara +- Costume Santa Poring Hat +- Costume Sweet Candy +- Costume Happy Wig +-------------------------- +Weight: 1 +# +17270# +A box containing 20 STR Biscuit Stick. +-------------------------- +This biscuit stick was created to remember the day with most fireworks. +STR +15 for 30 minutes. ++11~111 ATK for 10 minutes. +- Applies the highest STR amongst all. +- ATK does not overlap with other bonus and cannot be checked in the Status window. +If you are incapacitated or hit by the Dispell skill, the item effect will disappear. +-------------------------- +Weight: 1 +# +17271# +A box containing 20 VIT Biscuit Stick. +-------------------------- +This biscuit stick was created to remember the day with most fireworks. +VIT +15 for 30 minutes. +MaxHP +11~33% for 10 minutes. +- VIT does not overlap with other bonus. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +17272# +A box containing 20 AGI Biscuit Stick. +-------------------------- +This biscuit stick was created to remember the day with most fireworks. +AGI +15 for 30 minutes. +FLEE +11~33 for 10 minutes. +- Applies the highest AGI amongst all. +- FLEE does not overlap with other bonus and cannot be checked in the Status window. +If you are incapacitated or hit by the Dispell skill, the item effect will disappear. +-------------------------- +Weight: 1 +# +17273# +A box containing 20 INT Biscuit Stick. +-------------------------- +This biscuit stick was created to remember the day with most fireworks. +INT +15 for 30 minutes. +MATK +11~111 for 10 minutes. +- Applies the highest INT amongst all. +- MATK does not overlap with other bonus and cannot be checked in the Status window. +If you are incapacitated or hit by the Dispell skill, the item effect will disappear. +-------------------------- +Weight: 1 +# +17274# +A box containing 20 DEX Biscuit Stick. +-------------------------- +This biscuit stick was created to remember the day with most fireworks. +DEX +15 for 30 minutes. +HIT +11~33 for 10 minutes. +- Applies the highest DEX amongst all. +- HIT does not overlap with other bonus and cannot be checked in the Status window. +If you are incapacitated or hit by the Dispell skill, the item effect will disappear. +-------------------------- +Weight: 1 +# +17275# +A box containing 20 LUK Biscuit Stick. +-------------------------- +This biscuit stick was created to remember the day with most fireworks. +LUK +15 for 30 minutes. +Critical +11~33% for 10 minutes. +- Applies the highest LUK amongst all. +- Critical does not overlap with other bonus and cannot be checked in the Status window. +If you are incapacitated or hit by the Dispell skill, the item effect will disappear. +-------------------------- +Weight: 1 +# +17276# +A box containing a magical flower. +-------------------------- +This item will be available until December 11, 2012, when scheduled maintenance starts. +If you open the box after the period of use, nothing will appear. +-------------------------- +Magical flowers can only be used by characters who have opened the box. +Open the box with the character you want it to use on. +-------------------------- +Magical Flower will automatically disappear 504 hours after opening the box. +-------------------------- +Weight: 0 +# +17277# +Contains 5 ASPD Potion and 10 Red Booster Box, Contains 1 Golden Treasure Box. +-------------------------- +Weight: 1 +# +17278# +Contains 50 ASPD Potion and 100 Red Booster Box. Contains 11 Golden Treasure Box. +-------------------------- +Weight: 1 +# +17279# +Contains 100 ASPD Potion and 200 Red Booster Box and Contains 23 Golden Treasure Box +-------------------------- +Weight: 1 +# +17280# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Rose Corsage +- Costume Friend Mochiring Hat +- Costume Ati Atihan +- Costume Dark Snake Lord Hat J +- Costume Blue Ribbon +- Costume Antique Pipe +- Costume Triple Poring Hat +- Costume Vane Hairpin +- Costume Kabuki Mask +- Costume Kettle Hat +-------------------------- +Weight: 1 +# +17281# +A box containing 5 of Enriched Elunium and Enriched Oridecon. 1 Christmas Scroll is included. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17282# +A box containing 50 of Enriched Elunium and Enriched Oridecon. 11 Christmas Scroll are included. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17283# +A box containing 100 of each Enriched Elunium and Enriched Oridecon. 23 Christmas Scroll are included. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17284# +Box containing the card from which you can change your name. +Opening this item will withdraw any offers available. +You need to withdraw from party/guild to use this item. +-------------------------- +Weight: 1 +# +17285# +-------------------------- +Weight: 1 +# +17286# +1 Clothes Dye coupon in the box. +-------------------------- +Weight: 1 +# +17287# +Coupons used to dye the cloth. +-------------------------- +Weight: 1 +# +17288# +Contains Beauty Voucher card, Event: Change the name card and Clothes Dye Coupon. +-------------------------- +Weight: 1 +# +17289# +A box containing one Beelzebub's Wing. +-------------------------- +Beelzebub's Wing which contains infinite magic. +Until the wings disappear, it can't be overused. +-------------------------- +Use to warp to random locations on the map. +-------------------------- +Beelzebub's Wing is only available for characters which opens the box. +Open the box with the character you want it to use with. +-------------------------- +Beelzebub's Wing will automatically disappear 240 hours after opening the box. +-------------------------- +Weight: 1 +# +17290# +A box containing 5x Orlean's Full Course. +Special processing is been applied to prevent the dishes from rotting. +-------------------------- +All Status +10 +ATK +30 +MATK +30 +Effect duration: 30 minutes +-------------------------- +The effect will not disappear even if the character is logged out or out of combat +-------------------------- +The effect does not overlap with existing special dishes. +-------------------------- +Weight: 1 +# +17291# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Pale Yellow Ribbon +- Costume Gothic Head Dress +- Costume Wings of Victory +- Costume Neko Mimi Kafra +- Costume Little Angel Doll +- Costume Lucky Clover +- Costume Lady Tanee Doll +- Costume Scarf +- Costume Alice Doll +- Costume Pink Ribbon +-------------------------- +Weight: 1 +# +17292# +A box containing either Physical Shadow Equipment or Magical Shadow Equipment. +-------------------------- +You can recieve 1 of Physical Shadow (Earring, Weapon, Pendant), Magical Shadow (Earring, Weapon, Pendant), Breeze Shadow Armor, Champion Shadow Shoes or Athena Shadow Shield. +-------------------------- +Weight: 1 +# +17293# +A box containing 1 Physical Shadow Set. +-------------------------- +You can revieve 1 of each Physical (Weapon, Earring, Pendant) Shadow, Breeze Shadow Armor, Champion Shadow Shoes and Athena Shadow Shield. +-------------------------- +Weight: 1 +# +17294# +A box containing 1 Physical Shadow Set. +-------------------------- +You can revieve 1 of each Magical (Weapon, Earring, Pendant) Shadow, Breeze Shadow Armor, Champion Shadow Shoes and Athena Shadow Shield. +-------------------------- +Weight: 1 +# +17295# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Darkness Helm +- Costume Drooping Zonda +- Costume Black Glasses +- Costume Majestic Devil Horns +- Costume Sacred Torch Coronet +- Costume Deprotai Doll +- Costume Bread Bag +- Costume Scarlet Rose +- Costume Vagabond Wolf King Helmet +- Costume Devilring Hat +-------------------------- +Weight: 1 +# +17296# +A box that contains 1 Character Position Change Coupon +-------------------------- +Description: +Use this item to change your character's slot position on the Character Select menu. +After using this item you must logout to the Character Select menu and Right-Click on the character and choose 'Move Slot' +You can then choose a new slot by right-clicking that slot and choosing 'Move to this Slot' and confirming. +-------------------------- +You can use this item once and it is account bound +-------------------------- +Weight: 0 +# +17298# +'For 1 hour great effects will come to you!' are the words written on the box. +-------------------------- +You will recieve 2 Battle Manuals, 2 Bubble Gums, 2x Almighty, 2 Mental Potion and 6 Mysterious Life Potions. 1 Sealed Dark Lord Scroll is included. +-------------------------- +Weight: 1 +# +17299# +'For 1 hour great effects will come to you!' are the words written on these 10 boxes. +-------------------------- +You will recieve 20x Battle Manuals, 20x Bubble Gums, 20x Almighty, 20x Mental Potion and 60x Mysterious Life Potions. 11 Sealed Dark Lord Scroll are included. +-------------------------- +Weight: 1 +# +17300# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Saint Frill Ribbon +- Costume Shelter Wing Ears +- Costume Light Darkness Crown +- Costume Anubis Helm +- Costume Black Tail Ribbon +- Costume Holy Marching Hat +- Costume Executioner Hood +- Costume Tha Despero Mask +- Costume Diadem +- Costume Gold Spirit Chain +-------------------------- +Weight: 1 +# +17301# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Rainbow Veil +- Costume Happy Peace Proof +- Costume White Lily +- Costume Celestial Hat +- Costume Good Wedding Veil +- Costume YinYang Earring +- Costume Holy Mom Love +- Costume Water Lily Crown +- Costume Frog King Hat +- Costume Umbrella Hat +-------------------------- +Weight: 1 +# +17302# +A box containing 1 Shadow Box II. +-------------------------- +You can recieve 1 Power (Earring, Pendant), Intelligent (Pendant, Earring), Dexterous (Armor, Weapon), +Vital (Shoes, Shield), Athletic (Shield, Shoes), Lucky (Weapon, Armor) Shadow Equipment. +Sometimes Costume Brilliant Golden Wings can come out. +-------------------------- +Weight: 1 +# +17303# +A box containing 10 Shadow Box II. If you purchase it as a set, you can get 1 extra. +-------------------------- +You can recieve 1 Power (Earring, Pendant), Intelligent (Pendant, Earring), Dexterous (Armor, Weapon), +Vital (Shoes, Shield), Athletic (Shield, Shoes), Lucky (Weapon, Armor) Shadow Equipment. +Sometimes Costume Brilliant Golden Wings can come out. +-------------------------- +Weight: 1 +# +17304# +A box containing 3 Neuralizers. Handle with care! +-------------------------- +Neuralizer - Resets the user's skill tree. +-------------------------- +Weight: 1 +# +17305# +A collection of Spring headgears.each egg is guaranteed to contain a costume headgear. +-------------------------- +Weight: 1 +# +17306# +Contain 1 Reset Status Book. +-------------------------- +Allow player to reset their status. +-------------------------- +Withdrawal is impossible once this box is opened. +-------------------------- +Weight: 1 +# +17312# +A box containing 1 Essence of Blacksmith God. +-------------------------- +Withdrawal is impossible once this box is opened. A secret recipe for refining recorded by a world-class blacksmith. +-------------------------- +On Refinement at +13 ~ +14, there is a chance not to fail and destroy equipment. Regardless of the success or failure of refining, this item will disappear after the blessing is used and the amount needed will be increased according to refining. +-------------------------- +Weight: 0 +# +17313# +A box containing 5 Essence of Blacksmith God. +-------------------------- +Withdrawal is impossible once this box is opened. A secret recipe for refining recorded by a world-class blacksmith. +-------------------------- +On Refinement at +13 ~ +14, there is a chance not to fail and destroy equipment. Regardless of the success or failure of refining, this item will disappear after the blessing is used and the amount needed will be increased according to refining. +-------------------------- +Weight: 0 +# +17314# +A box containing 1 Giant Fly Wing during 1 days. +-------------------------- +Rental Item +Enchanted giant wing which lived in ancient times. Can warp to any place on the map. +-------------------------- +Weight: 1 +# +17315# +A box containing 10 Silvervine Fruits.For a small amount of canned bonus. Additionally you get a scroll sealed storm. +-------------------------- +A ripe Silvervine fruit. It tastes awful for humans, but it's a highly valued delicacy in Malangdo. +-------------------------- +Weight: 0 +-------------------------- +Weight: 1 +# +17316# +A box containing 110 Silvervine Fruits. For a small amount of canned bonus. Additionally you get a 11 scroll sealed storm. +-------------------------- +A ripe Silvervine fruit. It tastes awful for humans, but it's a highly valued delicacy in Malangdo. +-------------------------- +Weight: 0 +-------------------------- +Weight: 1 +# +17321# +The flatter dream life, the legendary master of the three! What it says on the box. +-------------------------- +A box containing 20 Small Life Potions, 20 Medium Life Potions, 20 Mysterious Life Potion. In addition you get a one sealed beelzebu scroll. +-------------------------- +When a character is dead the battle effect item disappears. +-------------------------- +Weight: 1 +# +17322# +The flatter dream life, the legendary master of the three! What it says on the box. +-------------------------- +A box containing 200 Small Life Potions, 200 Medium Life Potions, 200 Mysterious Life Potion. In addition you get a 11 sealed beelzebu scrolls. +-------------------------- +When a character is dead the battle effect item disappears. +-------------------------- +Weight: 1 +# +17323# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Majestic Helmet +- Costume Full Bloom Hairpin +- Costume Red Vane Hairpin +- Costume Taboo Curse Scroll +- Costume Crescent Moon Helm +- Costume Fox Hat +- Costume Frog Hat +- Costume Samurai Mask +- Costume Drooping Nine Tail +- Costume Pinwheel Cap +-------------------------- +Weight: 1 +# +17324# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Lolita Ten Gallon Hat +- Costume Pecopeco Cap +- Costume Ifrit's Breath +- Costume Blazing Sun +- Costume Purple Cowboy Hat +- Costume Ears of Ifrit +- Costume Beer Cap +- Costume Large Hibiscus +- Costume Icecream Hat +- Costume Shiny Wig +-------------------------- +Weight: 1 +# +17325# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume White Cat Hood +- Costume Evil Druid Hat +- Costume Vicious Stop Bandage +- Costume Drooping Morocc Minion +- Costume Necromencer Hood +- Costume Drooping Neko Crew +- Costume Devil's Whisper +- Costume Bone Hat +- Costume Hyegun Hat +- Costume Yellow Bandana +-------------------------- +Weight: 1 +# +17327# +[thRO Item] +-------------------------- +Box item that you could get the old-fashioned equipments randomly for costume. +-------------------------- +Weight: 1 +# +17328# +[thRO Item] +-------------------------- +Box item that you could get the old-fashioned equipments randomly for costume. +-------------------------- +Weight: 1 +# +17329# +[thRO Item] +-------------------------- +Box item that you could get the old-fashioned equipments randomly for costume. +-------------------------- +Weight: 1 +# +17330# +[thRO Item] +-------------------------- +Box item that you could get the old-fashioned equipments randomly for costume. +-------------------------- +Weight: 1 +# +17331# +A box containing 10 Almighty and 1 Sealed Kiel-D-01 Scroll. +-------------------------- +The ultimate dish that condensed all the dishes that were said to be good for the body. +All Stats +10, ATK +30, MATK +30 for 30 minutes. +-------------------------- +Weight: 1 +# +17332# +A box containing 100 Almighty and 11 Sealed Kiel-D-01 Scroll. +-------------------------- +The ultimate dish that condensed all the dishes that were said to be good for the body. +All Stats +10, ATK +30, MATK +30 for 30 minutes. +-------------------------- +Weight: 1 +# +17333# +A box that contains 1 Star-Spangled Bandana +-------------------------- +This stylish bandeezy expresses your patriotic spirit and makes you feel like some kind of professional grappler. +-------------------------- +All Stats +1 +-------------------------- +Enables the use of Level 1 Bash. +-------------------------- +Refine Level +7: +Increases damage to all monsters by 10%. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +-------------------------- +Weight: 1 +# +17334# +A box that contains 1 Merica Hat +-------------------------- +These colors don't run, but you will (faster) when wearing this Old Glory adorned hat. +-------------------------- +Increases movement speed. +-------------------------- +Refine Level +7: +LUK +10 +FLEE +10 +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17335# +A box including 50 mysterious liquid. Someone in Hugel who can cook Bretzel will cook something yummy with this. +-------------------------- +Weight: 0 +# +17336# +A box containing one Jeremy beauty coupon. +You can change your hairstyle. +-------------------------- +If you give a Jeremy's Beauty Coupon to the senior stylist Jeremy in the satellite city of Izlude, you can exchange it to various hairstyles.000000 +-------------------------- +Can only be moved to the storage. +-------------------------- +Weight: 1 +# +17338# +A box containing 5 Enriched Elunium, 5 Enriched Oridecon and 1 Sealed Gloom Under Night Scroll. +-------------------------- +Enriched Elunium - Increases the probability of the refining armor. +Enriched Oridecon - Increases the probability of the refining weapon. +-------------------------- +Weight: 1 +# +17339# +A box containing 50 Enriched Elunium, 50 Enriched Oridecon and 11 Sealed Gloom Under Night Scroll. +-------------------------- +Enriched Elunium - Increases the probability of the refining armor. +Enriched Oridecon - Increases the probability of the refining weapon. +-------------------------- +Weight: 1 +# +17341# +A box containing Physical Shadow Weapon. +-------------------------- +Weight: 1 +# +17346# +A box of experience scrolls to help you Level faster +Contains 4 HE Battle Manuals and 4 Job Battle Manuals +# +17366# +Spring is here! Celebrate steam and Refine your gear with these Safe to 7 Certificates! +When opened contains one of the following: +1x Safe to 7 Body Armor Certificate +1x Safe to 7 Weapon Armor Certificate +1x Safe to 7 Headgear Armor Certificate +# +17368# +A box containing Resist Spell Power Shadow Pendant. +-------------------------- +Weight: 1 +# +17370# +When opened contains one Costume: Man's Pride Box +# +17371# +When opened contains one Costume: Charleston's Antenna Box +# +17375# +A box containing 1 Safeguard Shadow Shield. +-------------------------- +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases damage taken from Boss class by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Boss class by 1%. +-------------------------- +Refine Level +9: +Decreases damage taken from Boss class by 1%. +-------------------------- +When equipped with Liberation Shadow Shoes: +Increases Physical Damage against enemies of Boss class by 5%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17378# +A box containing 1 Homers Shadow Shield. +-------------------------- +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases damage taken from Fish race monsters by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Fish race monsters by 1%. +-------------------------- +Refine Level +9: +Decreases damage taken from Fish race monsters by 1%. +-------------------------- +When equipped with Fisher Shadow Shoes: +Increases experience gained from defeating Fish race monsters by 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17379# +A box containing 1 Dragoon Shadow Shield. +-------------------------- +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases damage taken from Dragon race by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Dragon race by 1%. +-------------------------- +Refine Level +9: +Decreases damage taken from Dragon race by 1%. +-------------------------- +When equipped with Dragoon Shadow Shoes: +Increases experience gained from defeating Dragon race monsters by 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17380# +A box containing 1 Satanic Shadow Shield. +-------------------------- +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases damage taken from Angel race by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Angel race by 1%. +-------------------------- +Refine Level +9: +Decreases damage taken from Angel race by 1%. +-------------------------- +When equipped with Seraphim Shadow Shoes: +Increases experience gained from defeating Angel race monsters by 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17381# +A box containing 1 Frame Guard Shadow Shield. +-------------------------- +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases damage taken from Formless race by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Formless race by 1%. +-------------------------- +Refine Level +9: +Decreases damage taken from Formless race by 1%. +-------------------------- +When equipped with Beholder Shadow Shoes: +Increases experience gained from defeating Formless race monsters by by 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17382# +A box containing 1 Requiem Shadow Shield. +-------------------------- +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases damage taken from Undead race by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Undead race by 1%. +-------------------------- +Refine Level +9: +Decreases damage taken from Undead race by 1%. +-------------------------- +When equipped with Divine Shadow Shoes: +Increases experience gained from defeating Undead race monsters by 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17383# +A box containing 1 Cadi Shadow Shield. +-------------------------- +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases damage taken from Plant race by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Plant race by 1%. +-------------------------- +Refine Level +9: +Decreases damage taken from Plant race by 1%. +-------------------------- +When equipped with Chemical Shadow Shoes: +Increases experience gained from defeating Plant race monsters by 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17384# +A box containing 1 Bloody Shadow Shoes. +-------------------------- +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Demi-Human race by 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Demi-Human race by 2%. +-------------------------- +When equipped with Cranial Shadow Shield: +Increases experience gained from defeating Demi-Human race monsters by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17385# +A box containing Liberation Shadow Shoes. +-------------------------- +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of Boss class by 1%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Boss class by 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Boss class by 1%. +-------------------------- +When equipped with Safeguard Shadow Shield: +Increases Physical Damage against enemies of Boss class by 5%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17386# +A box containing Chemical Shadow Shoes. +-------------------------- +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of Plant race by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Plant race by 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Plant race by 2%. +-------------------------- +When equipped with Cadi Shadow Shield: +Increases experience gained from defeating Plant race monsters by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17387# +A box containing Clamorous Shadow Shoes. +-------------------------- +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of Brute race by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Brute race by 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Brute race by 2%. +-------------------------- +When equipped with Brutal Shadow Shield: +Increases experience gained from defeating Brute race monsters by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17388# +A box containing Insecticide Shadow Shoes. +-------------------------- +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of Insect race by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Insect race by 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Insect race by 2%. +-------------------------- +When equipped with Gargantua Shadow Shield: +Increases experience gained from defeating Insect race monsters by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17389# +A box containing Fisher Shadow Shoes. +-------------------------- +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of Fish race by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Fish race by 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Fish race by 2%. +-------------------------- +When equipped with Homer's Shadow Shield: +Increases experience gained from defeating Fish race monsters by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17390# +A box containing Seraphim Shadow Shoes. +-------------------------- +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of Angel race by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Angel race by 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Angel race by 2%. +-------------------------- +When equipped with Satanic Shadow Shield: +Increases experience gained from defeating Angel race monsters by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17391# +A box containing Beholder Shadow Shoes. +-------------------------- +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of Formless race by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Formless race by 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Formless race by 2%. +-------------------------- +When equipped with Frame Guard Shadow Shield: +Increases experience gained from defeating Formless race monsters by by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17392# +A box containing Divine Shadow Shoes. +-------------------------- +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of Undead race by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Undead race by 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Undead race by 2%. +-------------------------- +When equipped with Requiem Shadow Shield: +Increases experience gained from defeating Undead race monsters by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17393# +A box containing Dragoon Shadow Shoes. +-------------------------- +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of Dragon race by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Dragon race by 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Dragon race by 2%. +-------------------------- +When equipped with Dragoon Shadow Shield: +Increases experience gained from defeating Dragon race monsters by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +17394# +The mysterious bluish old hat box. +Some will get a helmet that is unknown. +-------------------------- +Weight: 1 +# +17428# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Pretty Rabbit Hood +- Costume Flowerpot Mask +- Costume Piamette Hood +- Costume Love Rabbit Hood +- Costume Rabbit Ear Hat +- Costume Eyes of Darkness +- Costume Drooping Bunny +- Costume Satellite Hairband +- Costume Black Bunny Band +- Costume Golden Tiara +-------------------------- +Weight: 1 +# +17429# +A box where you can get one type of Shadow Equipment from the 11th Anniversary Shadow Package. +-------------------------- +You can get 1 of Spiritual Shadow (Weapon, Earrings, Pendants) and Malicious Shadow (Shield, Armor, Shoes) Equipment. +-------------------------- +Weight: 1 +# +17430# +A box that containing a Spiritual Shadow set and Malicious Shadow Set. +-------------------------- +You can get Spiritual Shadow (Weapon, Earrings, Pendants) and Malicious Shadow (Shield, Armor, Shoes) Equipment. +-------------------------- +Weight: 1 +# +17432# +A box containing 10 silvervine fruit, As a bonus, you also have a small amount of canned food. You can get 1 Sealed Fallen Bishop Hibram Scroll additionally. +-------------------------- +A ripe silvervine fruit. It tastes awful for humans, but it's a highly valued delicacy in Malangdo. +-------------------------- +Weight: 1 +# +17433# +A box containing 110 silvervine fruit, As a bonus, you also have a big amount of canned food. You can get 11 Sealed Fallen Bishop Hibram Scrolls additionally. +-------------------------- +A ripe silvervine fruit. It tastes awful for humans, but it's a highly valued delicacy in Malangdo. +-------------------------- +Weight: 1 +# +17434# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Halloween Hat +- Costume Triangle Roof Hat +- Costume Cat Eye +- Costume Witch's Pumpkin Hat +- Costume Skull Cap +- Costume Secret Society Hood +- Costume Screw stuck in head +- Costume Fascinating Phantom Mask +- Costume Flag Crown Hat +- Costume White Deviruchi Hat +-------------------------- +Weight: 1 +# +17436# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Gothic Heart Wing Ribbon +- Costume Classical Ribbon +- Costume Angel Mini Silk Hat +- Costume Noah's Hat +- Costume Dark Age +- Costume Heart Wings Hairband +- Costume Odin's Mask +- Costume Monocle +- Costume Black Ribbon +- Costume Brown Drooping Kitty +-------------------------- +Weight: 1 +# +17437# +A box containing 10 Powerful Resilience Potions. +-------------------------- +Immediately after use, you can undo the curse and silence. +Restore HP 1000, SP 15 every 10 seconds within 5 minutes. +This effect cannot be activated in the state of the Fury Gun. +The item's effect will disappear when the player is unable to fight. +-------------------------- +Weight: 1 +# +17438# +The flatter dream life, the legendary master of the three! What it says on the box. +-------------------------- +A box containing 20 Small Life Potions, 20 Medium Life Potions, 20 Mysterious Life Potion. In addition you get a 1 Sealed Ifrit scrolls. +-------------------------- +When a character is dead the battle effect item disappears. +-------------------------- +Weight: 1 +# +17439# +The flatter dream life, the legendary master of the three! What it says on the box. +-------------------------- +A box containing 200 Small Life Potions, 200 Medium Life Potions, 200 Mysterious Life Potion. In addition you get a 11 Sealed Ifrit scrolls. +-------------------------- +When a character is dead the battle effect item disappears. +-------------------------- +Weight: 1 +# +17440# +A box containing Character name Change card inside. +-------------------------- +Weight: 1 +# +17441# +A box that contains 1 Halter Lead. +-------------------------- +Appropriate For each job group to ride aboard any Halter as mysterious. +Mount creatures Increases movement speed by 25%. +Cannot attack while on a mount. +This item is excluded from subscription withdrawal if released. +-------------------------- +Weight: 1 +# +17442# +A box that contains 1 Emperium G. +-------------------------- +With a gorgeous metallic glare. It all comes down to the old manuscripts that can change the fate of the world to appear before the party that his destiny is with. +This item is excluded from subscription withdrawal if released. +-------------------------- +Weight: 1 +# +17443# +A box that contains 1 Reinforcement Buckler. +-------------------------- +Lumiere Elunium mixed and covered with a layer of bright gold about buckler. +MaxHP +3%. +-------------------------- +Type: Shield +Defense: 45 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Swordman Class, Acolyte Class, Merchant Class, Thief Class, Bard and Dancer +# +17444# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Globe +- Costume Orchid Hairband +- Costume Judge Hat +- Costume Dragonhelm Copper +- Costume Goddess of Victory(Purple) +- Costume Winner Helmet(Copper) +- Costume Shuttle to Apex(Blue) +- Costume Princess Tiara +- Costume Rainbow Scarf +- Costume RWC2013 Japan Hat +-------------------------- +Weight: 1 +# +17448# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Choir Hat +- Costume Drooping Argiope +- Costume Chain Puppet +- Costume Card Board Box +- Costume Bubble Gum in Mouth +- Costume Parade Cap +- Costume 3D Glasses +- Costume Mini Tree +- Costume Soldier Hat +- Costume Scooter Hat +-------------------------- +Weight: 1 +# +17449# +Special candy stick made to commemorate the day the largest number of 1 of the year. +Sweet Stick Candy Strength, Sweet Stick Candy Vitality, Sweet Stick Candy Agility, Sweet Stick Candy Intelligence, Sweet Stick Candy Dexterity, Sweet Stick Candy Luck, obtain 1 For each. +-------------------------- +Weight: 1 +# +17455# +A box containing 1 Premium Battle Manual, which is available for 24 hours. +-------------------------- +A manual that explains the effective way of the battle. It is a very detailed and well composed manual. +Increases experience gained by 50% and drop rate by 100%.. +* Caution: Battle Manual, Bubble Gum and other items with the same effect as the effect does not stack. +-------------------------- +Weight: 1 +# +17456# +For an hour you will see a big effect on you!, Contains 1 Support Package. +The complete box containing 2 Battle Manuals, 2 Bubble Gums, 2 Almighty, 2 Mental Potion and 6 Mysterious Life Potion. 1 2013 RWC Scroll is included. +-------------------------- +Weight: 1 +# +17457# +For an hour you will see a big effect on you!, Contains 10 Support Packages. +The complete box containing 20 battle manuals, 20 Bubble gums, 20 Almighty, 20 Mental Potion and 60 Mysterious Life Potion. 11 2013 RWC Scrolls are included. +-------------------------- +Weight: 1 +# +17461# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Rabbit Knit Hat +- Costume Mouton Life +- Costume Galanthus Guard +- Costume Chilly Breath +- Costume Knit Rabbit Ears +- Costume Aura Quartz +- Costume Ice Wings Ears +- Costume Lunatic Hat +- Costume Blue Fur Hat +- Costume Elder Crown +-------------------------- +Weight: 1 +# +17462# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Angel Fluttering +- Costume Fluttering Butterfly +- Costume Angel Veil +- Costume Classical Feather Hat +- Costume Flapping Devil Wings +- Costume Valkyrie Circlet +- Costume Imperial Feather +- Costume Devil's Servant +- Costume Bijofnil Wings +- Costume Anemos Mask +-------------------------- +Weight: 1 +# +17463# +A box containing a special quest, Shiitake. +-------------------------- +Special Quest Shiitake: +Take it to the NPC \ + in Prontera, the capital of the Rune Midgard Kingdom. +-------------------------- +This item will be used until October 6, 2015 (Tuesday) and scheduled maintenance starts. +If you open the box after the period of use, nothing will appear. +-------------------------- +Can only be sold to NPC's or moved into your storage. +-------------------------- +Weight: 0 +# +17465# +A box containing 5 Enriched Elunium and 5 Enriched Oridecon, Additional contains 1 Sealed Turtle General Scroll. +-------------------------- +Enriched Elunium - Increases the probability of the refining armor. +Enriched Oridecon - Increases the probability of the refining weapon. +-------------------------- +Weight: 1 +# +17466# +A box containing 50 Enriched Elunium and 50 Enriched Oridecon, Additional contains 11 Sealed Turtle General Scroll. +-------------------------- +Enriched Elunium - Increases the probability of the refining armor. +Enriched Oridecon - Increases the probability of the refining weapon. +-------------------------- +Weight: 1 +# +17467# +A box containing (Event)50 Token of Siegfried. +-------------------------- +Token of Siegfried - It allows you to resurrect at the same point of your death. +-------------------------- +Weight: 1 +# +17468# +A box containing 3 Neuralizer. Extremely fragile! +-------------------------- +Neuralizer - Resets the user's skill tree. +-------------------------- +Weight: 1 +# +17469# +A box containing 1 Neuralizer. Extremely fragile! +-------------------------- +Neuralizer - Resets the user's skill tree. +-------------------------- +Weight: 1 +# +17470# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Rainbow Feather Ears +- Costume Lightning Speed +- Costume Double Horn Helm +- Costume Vanargand Helm +- Costume Sigrun's Wings +- Costume Dark Knight Mask +- Costume Horned Hat +- Costume Dagger in Mouth +- Costume Dragon General Helm +- Costume Dragon Skull Hat +-------------------------- +Weight: 1 +# +17472# +For an hour you will see a big effect on you!, Contains 1 Support Package. +The complete box containing 2 Battle Manuals, 2 Bubble Gums, 2 Almighty, 2 Mental Potion and 6 Mysterious Life Potion. You can get 1 Sealed Bacsojin Scroll additionally. +-------------------------- +Weight: 1 +# +17473# +For an hour you will see a big effect on you!, Contains 1 Support Package. +The complete box containing 20 Battle Manuals, 20 Bubble Gums, 20 Almighty, 20 Mental Potion and 60 Mysterious Life Potion. You can get 11 Sealed Bacsojin Scroll additionally. +-------------------------- +Weight: 1 +# +17474# +For a day you can use infinite giant fly wing. +-------------------------- +Rental Item +Wings from a giant butterfly.You can come back anytime to your save point. +-------------------------- +Weight: 1 +# +17475# +This box contains 10 GYM membership to increase the weight you can carry. +-------------------------- +If you show the pass to a certain NPC, the NPC will teach specific skills that will Increases the weight you can carry. +Each gives you a Level of skill can take 200 more extra weight to a maximum of 10 Levels. +-------------------------- +Weight: 1 +# +17476# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Bunny Headdress +- Costume Firinto Scarf +- Costume Monk Crown +- Costume Zaha Doll Hat +- Costume Heart Ribbon Hairband +- Costume Love Fragment +- Costume Heart Eyepatch +- Costume Kama's Hairband +- Costume Red Beret +- Costume Orange Ribbon +-------------------------- +Weight: 1 +# +17477# +A box containing 5 ASPD Enhanced Potion and 10 Red Booster. You can get 1 Sealed Pharaoh Scroll additionally. +-------------------------- +Weight: 1 +# +17478# +A box containing 50 ASPD Enhanced Potion and 100 Red Booster. You can get 11 Sealed Pharaoh Scroll additionally. +-------------------------- +Weight: 1 +# +17481# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Blue Ribbon Band +- Costume Prayer Cherry Blossom +- Costume Wind Prairie +- Costume Butterfly Wing Ears +- Costume Qing Headdress +- Costume Rose Headband +- Costume Hermos Cap +- Costume Cherryblossom in Mouth +- Costume Tropical Fruit Hat +- Costume Samambaia +-------------------------- +Weight: 1 +# +17483# +The flatter dream life, the legendary master of the three! What it says on the box. +-------------------------- +A box containing 20 Small Life Potions, 20 Medium Life Potions, 20 Mysterious Life Potion. In addition you get a one sealed moonlight flower scroll. +-------------------------- +Weight: 1 +# +17484# +The flatter dream life, the legendary master of the three! What it says on the box. +-------------------------- +A box containing 200 Small Life Potions, 200 Medium Life Potions, 200 Mysterious Life Potion. In addition you get a 11 sealed moonlight flower scrolls. +-------------------------- +Weight: 1 +# +17491# +A box containing 5 Enriched Elunium and 5 Enriched Oridecon, Additional contains 1 Sealed General Egnigem cenia Scroll. +-------------------------- +Enriched Elunium - Increases the probability of the refining armor. +Enriched Oridecon - Increases the probability of the refining weapon. +-------------------------- +Weight: 1 +# +17492# +A box containing 50 Enriched Elunium and 50 Enriched Oridecon, Additional contains 11 Sealed General Egnigem cenia Scroll. +-------------------------- +Enriched Elunium - Increases the probability of the refining armor. +Enriched Oridecon - Increases the probability of the refining weapon. +-------------------------- +Weight: 1 +# +17493# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Volume Feather Hat +- Costume Vampire Hairband +- Costume Ljosalfar +- Costume Forgotten Angel Wings +- Costume Bragi Wing Ears +- Costume Little Feather Hat +- Costume Idun Feather Ears +- Costume Wing Frame Sunglasses +- Costume Shaman Hair Ornament +- Costume White Feather +-------------------------- +Weight: 1 +# +17495# +A box containing 10 Silvervine Fruit, As a bonus, you also have a small amount of Malangdo Special Can. You can get 1 Sealed Vesper Scroll additionally. +-------------------------- +A ripe silvervine fruit. It tastes awful for humans, but it's a highly valued delicacy in Malangdo. +-------------------------- +Weight: 1 +# +17496# +A box containing 110 Silvervine Fruit, As a bonus, you also have a big amount of Malangdo Special Can. You can get 11 Sealed Vesper Scroll additionally. +-------------------------- +A ripe silvervine fruit. It tastes awful for humans, but it's a highly valued delicacy in Malangdo. +-------------------------- +Weight: 1 +# +17497# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Under Rim Glasses +- Costume Star Reading Hat +- Costume Mermaid Headphones +- Costume Aqua Ten Gallon Hat +- Costume Raspberry Mousse Hat +- Costume Fish Head +- Costume Classic Hat +- Costume Fish in mouth +- Costume Blind Glasses +- Costume Jolly Roger Hat +-------------------------- +Weight: 1 +# +17498# +Dream of Life Extension, Legendary Myeongsoo Soo!!! What it says on the box. +-------------------------- +A package containing 20 Small Life Potion, 20 Medium Life Potion and 20 Mysterious Life Potion. Additionally contains 1 Sealed Dracula Scroll. +-------------------------- +Weight: 1 +# +17499# +Dream of Life Extension, Legendary Myeongsoo Soo!!! What it says on the box. +-------------------------- +A package containing 200 Small Life Potion, 200 Medium Life Potion and 200 Mysterious Life Potion. Additionally contains 11 Sealed Dracula Scrolls. +-------------------------- +Weight: 1 +# +17500# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Vicious Mind Aura +- Costume Whisper Tall Hat +- Costume Clock Tower Manager Incom +- Costume Poring Mascot +- Costume White Helm of Abyss +- Costume Lord of Death Helm +- Costume Odium Thanatos Mask +- Costume Helm of Abyss +- Costume Remover Hat +- Costume Poporing Cap +-------------------------- +Weight: 1 +# +17501# +'For 1 hour great effects will come to you!' words written on box +-------------------------- +A box containing 2 Battle Manuals, 2 Bubble Gum, 2 Almighty, 2 Mental Potion and 6 Mysterious Life Potion. You can get 1 Sealed Sniper Scroll additionally. +-------------------------- +Weight: 1 +# +17502# +'For 1 hour great effects will come to you!' words written on box. +-------------------------- +A box containing 20 Battle Manuals, 20 Bubble Gum, 20 Almighty, 20 Mental Potion and 60 Mysterious Life Potion. You can get 11 Sealed Sniper Scroll additionally. +-------------------------- +Weight: 1 +# +17506# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Falling Maple Leafs +- Costume Straw Rice Bag +- Costume Monochrome Cap +- Costume Lady Feather Hat +- Costume Fan in Mouth +- Costume Musketeer Hat +- Costume Hexagon Glasses +- Costume Wind Fan +- Costume Poison Spore Hat +- Costume Baseball Cap +-------------------------- +Weight: 1 +# +17507# +A box containing 4 Silvervine Cat Fruit. +As a bonus, you also have a small amount of Malangdo Special Can. +-------------------------- +Weight: 1 +# +17508# +A box containing 10 Silvervine Cat Fruit. +As a bonus, you also have a small amount of Malangdo Special Can. +-------------------------- +Weight: 1 +# +17509# +A box containing 40 Silvervine Cat Fruit. +As a bonus, you also have a small amount of Malangdo Special Can. +-------------------------- +Weight: 1 +# +17510# +A box containing 5 of Enriched Elunium and Enriched Oridecon Box. You can get 1 Sealed Seal Scroll additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17511# +A box containing 50 of Enriched Elunium and Enriched Oridecon Box. You can get 11 Sealed Seal Scroll additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17512# +A box containing 30 (Limited)HD Elunium and 1 Blacksmith's Blessing. +-------------------------- +A delicate ore that ensures the safety of valuable equipment. +- When refining Armor with a Refine Level of +7 or higher, even if it fails, the Armor is destroyed and does not disappear! However, +10 or higher is not Refined. - +(If the Refinement fails, the Refine Level decreases by 1.) +-------------------------- +Weight: 1 +# +17513# +A box containing 30 (Limited)HD Oridecon and 1 Blacksmith's Blessing. +-------------------------- +A delicate ore that ensures the safety of valuable equipment. +- When refining Weapon with a Refine Level of +7 or higher, even if it fails, the Weapon is destroyed and does not disappear! However, +10 or higher is not Refined. - +(If the Refinement fails, the Refine Level decreases by 1.) +-------------------------- +Weight: 1 +# +17514# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Lude Hood +- Costume Sepia Cap +- Costume Pumpkin Hat +- Costume Orange Halloween Hat +- Costume Diabolic Headphone +- Costume Hockey Mask +- Costume Deviruchi Headphone +- Costume Skull Hood +- Costume Long Tongue +- Costume Brown Deviruchi Cap +-------------------------- +Weight: 1 +# +17515# +A box containing 5 ASPD Enhanced Potion and 10 Red Booster. You can get 1 Safe to Refine Scroll additionally. +-------------------------- +Weight: 1 +# +17516# +A box containing 50 ASPD Enhanced Potion and 100 Red Booster. You can get 11 Safe to Refine Scroll additionally. +-------------------------- +Weight: 1 +# +17517# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Amistr Beret +- Costume Scratching Cat +- Costume Leopard Ear Hat +- Costume Misty Ears +- Costume Puppy Grass +- Costume Chick Hat +- Costume Black Cat Ears Beret +- Costume Green Foxtail +- Costume Lion Mask +- Costume Puppy Hat +-------------------------- +Weight: 1 +# +17518# +A box containing one Famitsu quest ticket. +-------------------------- +Use period of this item is until March 3, 2015 (Tuesday) regular maintenance start. +If you open the box after the expiration date, nothing will appear. +-------------------------- +Weight: 10 +# +17520# +A box containing 3 Limited Battle Manual and 2 Limited JOB Battle Manual. +-------------------------- +Limited Battle Manual - Increases experienced gained by 60% for 60 minutes. +Limited JOB Battle Manual - Job EXP rate increases to 35% for 60 minutes. +-------------------------- +Weight: 1 +# +17521# +The flatter dream life, the legendary master of the three! What it says on the box. +-------------------------- +A box containing 20 Small Life Potions, 20 Medium Life Potions and 20 Mysterious Life Potion. +You can get 1 Sealed Dracula Scroll II additionally. +-------------------------- +Weight: 1 +# +17522# +The flatter dream life, the legendary master of the three! What it says on the box. +-------------------------- +A box containing 200 Small Life Potions, 200 Medium Life Potions and 200 Mysterious Life Potion. +You can get 11 Sealed Dracula Scroll II additionally. +-------------------------- +Weight: 1 +# +17523# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Angel Marcher Hat +- Costume Arabian Veil +- Costume Spell Circuit +- Costume Dark Night Veil +- Costume Eyes of Ifrit +- Costume Robo Eyes +- Costume Evil Marcher Hat +- Costume Black Devil Mask +- Costume Loki Mask +- Costume Rideword Hat +-------------------------- +Weight: 1 +# +17524# +A box containing 10 Limited Power Boosters. You can get 1 Sealed Beelzebub Scroll II additionally. +-------------------------- +Increases ATK and MATK by 30, ATK and MATK by 1%, +HIT and FLEE by 30, ASPD by 1, +Decreases SP Consumption by 5%, +Decreases Fixed Casting Time by 30% +(Only the highest effect of increase/decrease percentage effect is applied to Fixed Casting Time.) +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +# +17525# +A box containing 100 Limited Power Boosters. You can get 11 Sealed Beelzebub Scroll II additionally. +-------------------------- +Increases ATK and MATK by 30, ATK and MATK by 1%, +HIT and FLEE by 30, ASPD by 1, +Decreases SP Consumption by 5%, +Decreases Fixed Casting Time by 30% +(Only the highest effect of increase/decrease percentage effect is applied to Fixed Casting Time.) +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +# +17527# +A box containing 200 Silvervine Cat Fruits. +As a bonus, you also have a small amount of Malangdo Special Can. +-------------------------- +Weight: 1 +# +17528# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Snownow Hat +- Costume Large Ribbon Muffler +- Costume Gift of Snow +- Costume Choco Mint Bonnet +- Costume Eclipse Hat +- Costume Knit Cap of Water +- Costume Frozen Rose +- Costume Arc Angelring Hat +- Costume Pink Beanie +- Costume Drooping Blue Cat +-------------------------- +Weight: 1 +# +17544# +A box containing 5 of Enriched Elunium and Enriched Oridecon. +You can get 1 New Year's Scroll additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17545# +A box containing 50 of Enriched Elunium and Enriched Oridecon. +You can get 11 New Year's Scroll additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17546# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Black Rabbit Bonnet +- Costume Love Cheeks +- Costume Honey Pancake +- Costume Blue Headdress +- Costume Pink Clover +- Costume Rabbit Headdress +- Costume Rose Cascade +- Costume Magician Decoration +- Costume Drooping Alicel +- Costume Yellow Ribbon +-------------------------- +Weight: 1 +# +17547# +Box contain 1 Neutralizer Rod, handle with care! cannot be placed to storage. +-------------------------- +Neutralizer rod for reset skill tree. +-------------------------- +Weight: 1 +# +17548# +Box contain 1 Reset Stats Coupon, handle with care! +-------------------------- +Reset All Stats back to 1. +-------------------------- +Weight: 1 +# +17549# +A box containing 30 (Limited) HD Bradium. +-------------------------- +The density and solidity has been heightened by repeated experiments from Rune Midgard's scholars. It seems that it becomes more difficult for weapon upgrade. +When you fail while upgrading defense weapon whose Refine Level is over +10, it won't be destroyed. +(When the upgrade fails, Refine Level gets -1) +Bastaitemmall,25,71,0,100,0,0 +-------------------------- +Weight: 1 +# +17550# +A box containing 30 (Limited) HD Cranium. +-------------------------- +It has been compressed for such a long time that the density and solidity is heightened. It seems that it becomes more difficult for Defense Weapon Upgrade. +When you fail while upgrading defense weapon whose Refine Level is over +10, it won't be destroyed. +(When the upgrade fails, Refine Level gets -1) +Bastaitemmall,25,71,0,100,0,0 +-------------------------- +Weight: 1 +# +17551# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Sleeping Eclipse Family +- Costume Secret Zipper +- Costume Penguin Cap +- Costume White Fox Ear Ribbon +- Costume Gryphon Wing Ears +- Costume Fox Ears Drop Ribbon +- Costume Silk Hat of Earth +- Costume Sleeping Cat Hat +- Costume Blood Sucker +- Costume Bird Nest Hat +-------------------------- +Weight: 1 +# +17567# +A box containing 10 Almighty and 1 Sealed Seal Scroll II. +-------------------------- +The ultimate dish that condensed all the dishes that were said to be good for the body. +All Stats +10, ATK +30, MATK +30 for 30 minutes. +-------------------------- +Weight: 1 +# +17568# +A box containing 100 Almighty and 11 Sealed Seal Scroll II. +-------------------------- +The ultimate dish that condensed all the dishes that were said to be good for the body. +All Stats +10, ATK +30, MATK +30 for 30 minutes. +-------------------------- +Weight: 1 +# +17569# +A box containing Dungeon Ticket, which is available for 1 hours. +-------------------------- +Rental Item +Free Dungeon Entry Ticket. +It seem you can directly go to dungeon if your Level meet the requirement. +Air Fortress Invasion - Level(145 or higher) +-------------------------- +Weight: 1 +# +17570# +A box containing Dungeon Ticket, which is available for 3 hours. +-------------------------- +Rental Item +Free Dungeon Entry Ticket. +It seem you can directly go to dungeon if your Level meet the requirement. +Air Fortress Invasion - Level(145 or higher) +-------------------------- +Weight: 1 +# +17571# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Blowing Scattered Sakura +- Costume Over Protector +- Costume Sakura Hat +- Costume Under Rim Glasses(Red) +- Costume Man's Medal(Gold) +- Costume Man's Medal +- Costume Cheering Whistle +- Costume Well-Chewed Pencil +- Costume Kindergarten Hat +- Costume White Student Cap +-------------------------- +Weight: 1 +# +17573# +A box containing 10 Lucky Silvervine Cat Fruit. +As a bonus, you also have a small amount of Malangdo Special Can. +You can get 1 Sealed Seal Scroll III additionally. +-------------------------- +Weight: 1 +# +17574# +A box containing 100 Lucky Silvervine Cat Fruit. +As a bonus, you also have a small amount of Malangdo Special Can. +You can get 11 Sealed Seal Scroll III additionally. +-------------------------- +Weight: 1 +# +17575# +A box containing 1 Edward Zonda Owner, which can be used for 30 days. +-------------------------- +Rental item +A bell to call Edward, a staff member of the Zonda Support Service. +When the ringtone rings, it appears in front of the customer anytime, anywhere. +-------------------------- +[Basic Service] +Providing more efficient services for growth: +- Bubble Gum (30 minutes, twice a day) +- JOB Battle Manual (30 minutes, twice a day) +- Butterfly Wings (Unlimited) +- These items are sellable +Caution! - Possessing any number will not duplicate the benefits. +-------------------------- +[Zonda Special Service] +We offer the following services at special prices. (Consumes Silvervine Cat Fruit): +- Battle Manual (24 hours) +- JOB Battle Manual (24 hours) +- Initialize Skill Tree +- Initialize Status +-------------------------- +Withdrawal is impossible once opened. +-------------------------- +Weight: 1 +# +17576# +A box containing 1 Elysee Zonda Owner, which can be used for 30 days. +-------------------------- +Rental item +A bell to call Elysee, a staff member of the Jonda Support Service. +When the ringtone rings, it appears in front of the customer anytime, anywhere. +-------------------------- +[Basic Service] +Providing more efficient services for growth: +- Bubble Gum (30 minutes, twice a day) +- JOB Battle Manual (30 minutes, twice a day) +- Butterfly Wings (Unlimited) +- These items are sellable +Caution! - Possessing any number will not duplicate the benefits. +-------------------------- +[Zonda Special Service] +We offer the following services at special prices. (Consumes Silvervine Cat Fruit): +- Battle Manual (24 hours) +- JOB Battle Manual (24 hours) +- Initialize Skill Tree +- Initialize Status +-------------------------- +Withdrawal is impossible once opened. +-------------------------- +Weight: 1 +# +17581# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Beelzebub Crown +- Costume Happy Lunatic Hanging Ear +- Costume Face Crusher +- Costume Hill Wind Mask +- Costume Golden Savage Hat +- Costume Sleeper Hat +- Costume Savage Babe Hat +- Costume Poring Sunglasses +- Costume Yoyo Hat +- Costume Cactus Hat +-------------------------- +Weight: 1 +# +17582# +The flatter dream life, the legendary master of the three! What it says on the box. +-------------------------- +A box containing 20 Small Life Potions, 20 Medium Life Potions and 20 Mysterious Life Potion. +You can get 1 Status Reduction Scroll additionally. +-------------------------- +Withdrawal is impossible once opened. +-------------------------- +Weight: 1 +# +17583# +The flatter dream life, the legendary master of the three! What it says on the box. +-------------------------- +A box containing 200 Small Life Potions, 200 Medium Life Potions and 200 Mysterious Life Potion. +You can get 11 Status Reduction Scroll additionally. +-------------------------- +Withdrawal is impossible once opened. +-------------------------- +Weight: 1 +# +17585# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Nekomimi Cyber Headphone +- Costume Analyze Eye +- Costume Seraph Wing Helm +- Costume Charleston Antenna +- Costume Crimson Booster +- Costume Hunting Cap of Gust +- Costume Magical Booster +- Costume Baron's Evil Eye +- Costume CD in Mouth +- Costume New Wave Sunglasses +-------------------------- +Weight: 1 +# +17586# +A box containing 5 of Enriched Elunium and Enriched Oridecon. You can get 1 Mad Bunny Scroll additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17587# +A box containing 50 of Enriched Elunium and Enriched Oridecon. You can get 11 Mad Bunny Scroll additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17589# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Mermaid Bubbles +- Costume Pigeon Hat +- Costume Little Aquarium +- Costume Sailor Collar +- Costume Marine Cap +- Costume Flaming Ten Gallon Hat +- Costume Pterios Fins +- Costume Seal Hat +- Costume Drooping Permeter +- Costume Seagod Protector +-------------------------- +Weight: 1 +# +17590# +A box containing 1 Edward Zonda Owner, which can be used for 30 days. +-------------------------- +Rental item +A bell to call Edward, a staff member of the Zonda Support Service. +When the ringtone rings, it appears in front of the customer anytime, anywhere. +-------------------------- +[Basic Service] +Providing more efficient services for growth: +- Bubble Gum (30 minutes, twice a day) +- JOB Battle Manual (30 minutes, twice a day) +- Butterfly Wings (Unlimited) +- These items are sellable +Caution! - Possessing any number will not duplicate the benefits. +-------------------------- +[Zonda Special Service] +We offer the following services at special prices. (Consumes Silvervine Cat Fruit): +- Battle Manual (24 hours) +- JOB Battle Manual (24 hours) +- Initialize Skill Tree +- Initialize Status +-------------------------- +[Lucky Egg Gift Service] +Lucky Eggs are in my hands every 4 days! +- Collect 4 Mysterious Eggs and recieve 1 Lucky Egg. +- A Mysterious Egg Sculpture is obtained through a conversation with a Zonda Support Staff. (1 per day) +-------------------------- +Weight: 1 +# +17591# +A box containing 1 Elysee Zonda Owner, which can be used for 30 days. +-------------------------- +Rental item +A bell to call Elysee, a staff member of the Jonda Support Service. +When the ringtone rings, it appears in front of the customer anytime, anywhere. +-------------------------- +[Basic Service] +Providing more efficient services for growth: +- Bubble Gum (30 minutes, twice a day) +- JOB Battle Manual (30 minutes, twice a day) +- Butterfly Wings (Unlimited) +- These items are sellable +Caution! - Possessing any number will not duplicate the benefits. +-------------------------- +[Zonda Special Service] +We offer the following services at special prices. (Consumes Silvervine Cat Fruit): +- Battle Manual (24 hours) +- JOB Battle Manual (24 hours) +- Initialize Skill Tree +- Initialize Status +-------------------------- +[Lucky Egg Gift Service] +Lucky Eggs are in my hands every 4 days! +- Collect 4 Mysterious Eggs and recieve 1 Lucky Egg. +- A Mysterious Egg Sculpture is obtained through a conversation with a Zonda Support Staff. (1 per day) +-------------------------- +Weight: 1 +# +17592# +'To you who want to see a big effect for an hour!' says the box. +-------------------------- +A package containing 2 Combat Manuals, 2 Bubble Gum, 2 Almighty, 2 Mental Potion, 6 Mysterious Life Potion. You can get 1 Soul Plunger Scroll additionally. +-------------------------- +Weight: 1 +# +17593# +'To you who want to see a big effect for an hour!' says the box. +-------------------------- +A package containing 20 Combat Manuals, 20 Bubble Gum, 20 Almighty, 20 Mental Potion, 60 Mysterious Life Potion. You can get 11 Soul Plunger Scroll additionally. +-------------------------- +Weight: 1 +# +17596# +A mysterious egg contains costume equipment. +You will randomly obtain 1 of the following: +- Costume Straight Pony (Blue) +- Costume Straight Pony (Red) +- Costume Straight Pony (Yellow) +- Costume Straight Pony (Green) +- Costume Bouncing Hair (Blue) +- Costume Bouncing Hair (Red) +- Costume Bouncing Hair (Yellow) +- Costume Bouncing Hair (Green) +- Costume Loose Wave Twin (Blue) +- Costume Loose Wave Twin (Red) +- Costume Loose Wave Twin (Yellow) +- Costume Loose Wave Twin (Green) +-------------------------- +Weight: 1 +# +17597# +A mysterious egg contains costume equipment. +You will randomly obtain 1 of the following: +- Costume Straight Pony(Black) +Costume Straight Pony(White) +Costume Straight Pony(Crimson) +Costume Straight Pony(Purple) +Costume Bouncing Hair(Black) +Costume Bouncing Hair(White) +Costume Bouncing Hair(Crimson) +Costume Bouncing Hair(Purple) +Costume Loose Wave Twin(Black) +Costume Loose Wave Twin(White) +Costume Loose Wave Twin(Crimson) +Costume Loose Wave Twin(Purple) +-------------------------- +Weight: 1 +# +17599# +A box containing 1 Infinite Greed Scroll, which is available 1 hour. +-------------------------- +Rental Item +Scroll to use the greed skill. Why is it that a person feels greedy even if he just lifts it up? +Warning! - Can not be used in the towns. +-------------------------- +Weight: 1 +-------------------------- +Box Weight: 1 +# +17600# +A box containing 1 Infinite Cat Hand Ticket, which can be used for 1 day. +-------------------------- +Rental Item +A ticket issued by the top of the Cat Hand Service. +A service ticket for the Cat Hand Service which grows every year. +When used, you can use the Cat Hand Storage Service. +-------------------------- +Weight: 1 +-------------------------- +Box Weight: 1 +# +17601# +A box containing 5 ASPD Enhanced Potion and 10 Red Booster. You can get 1 Happy Balloon Scroll additionally. +-------------------------- +Weight: 1 +# +17602# +A box containing 50 ASPD Enhanced Potion and 100 Red Booster. You can get 11 Happy Balloon Scroll additionally. +-------------------------- +Weight: 1 +# +17608# +A box containing 1 Infinite Giant Fly Wing that available for 1 day. +-------------------------- +Rental Item +An enchanted, giant wing from an ancient creatures. +Enables instant teleportation of many people when used by a Party Master. +-------------------------- +Weight: 0 +-------------------------- +Weight: 1 +# +17609# +A box containing 5 of Enriched Elunium and Enriched Oridecon and 1 Piamette Scroll as a bonus. +-------------------------- +Enriched Elunium - Increases the success rate of refining an armor. +Enriched Oridecon - Increases the success rate of refining a weapon. +-------------------------- +Weight: 1 +# +17610# +A box containing 50 of Enriched Elunium and Enriched Oridecon and 11 Piamette Scroll as a bonus. +-------------------------- +Enriched Elunium - Increases the success rate of refining an armor. +Enriched Oridecon - Increases the success rate of refining a weapon. +-------------------------- +Weight: 1 +# +17611# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Steampunk Hat +- Costume Pocketwatch Hair Ornament +- Costume Mechanical Feather Hairband +- Costume Silver Sniper Doll +- Costume Magic Decoy Doll +- Costume Mechanical Plant Hat +- Costume Ignis Cap +- Costume Memory of Lovers +- Costume Flight Cap +- Costume Sky Met +-------------------------- +Weight: 1 +# +17612# +A box with a Meow Badge. +(Valid Time: 30 days) +-------------------------- +Weight: 0 +# +17616# +The flatter dream life, the legendary master of the three! What it says on the box. +-------------------------- +A box containing 20 Small Life Potions, 20 Medium Life Potions and 20 Mysterious Life Potion. You can get 1 Invisible Scrolls additionally. +-------------------------- +Weight: 1 +# +17617# +The flatter dream life, the legendary master of the three! What it says on the box. +-------------------------- +A box containing 200 Small Life Potions, 200 Medium Life Potions and 200 Mysterious Life Potion. You can get 11 Invisible Scrolls additionally. +-------------------------- +Weight: 1 +# +17619# +A box containing the Ultimate Refinement Ticket. +-------------------------- +Ultimate Refinement Ticket will automatically disappear 696 hours after opening the box. +-------------------------- +This item will be available until March 15, 2016 (Tuesday) and scheduled maintenance starts. +If you open the box after the expiration date, nothing will appear. +-------------------------- +Can only be moved to the storage. +-------------------------- +Take the Ulimate Refinement Ticket to the NPC \ + in Izlude for special refining. +-------------------------- +Weight: 1 +# +17620# +A box containing 5 Event Ticket. +-------------------------- +Event Ticket will automatically disappear 360 hours after opening the box. +-------------------------- +This item will be available until August 23, 2016 (Tuesday) and scheduled maintenance starts. +If you open the box after the expiration date, nothing will appear. +-------------------------- +Can only be moved to the storage. +-------------------------- +Weight: 0 +# +17621# +A box containing 1 Campaign Quest Ticket. +-------------------------- +Take the Campaign Quest Ticket to the NPC \ + in Prontera, the capital of the Rune Midgard Kingdom. +-------------------------- +Campaign Quest Ticket will automatically disappear 528 hours after opening the box. +-------------------------- +This item will be available until November 15, 2016 (Tuesday) and scheduled maintenance starts. +If you open the box after the expiration date, nothing will appear. +-------------------------- +Can only be sold to NPC and moved to storage.000000 +-------------------------- +Weight: 0 +# +17622# +A box containing 1 Plalock Refinement Force. +-------------------------- +Take the Plalock Refinement Force to the NPC \ + in Izlude, the satellite city of the Rune Midgard Kingdom. +-------------------------- +Plalock Refining Force is only available for characters who open the box. Please open the box with the character you want to use. +-------------------------- +Plalock Refining Force will automatically disappear 672 hours after opening the box. +-------------------------- +Use period of this item is until December 27, 2016 (Tue) when regular maintenance starts. +If you open the box after the expiration date, nothing will appear. +-------------------------- +Can only be sold to NPCs and moved to the storage. +-------------------------- +Weight: 0 +# +17623# +A box containing the ultimate refining ticket. +-------------------------- +The Ultimate Refining Ticket will automatically disappear 864 hours after opening the box. +-------------------------- +This item will be available for use until March 28, 2017 (Tuesday) scheduled maintenance starts. +If you open the box after the usage period ends, nothing appears. +-------------------------- +Can only be stored. +-------------------------- +Ultimate Refining Ticket: Special refining can be done by bringing it to the NPC \ + in Izlude. +-------------------------- +Weight: 1 +# +17624# +A box containing one Luxury Oil. +-------------------------- +Luxury Oil will automatically disappear 696 hours after opening the box. +-------------------------- +This item will be available for use until June 27, 2017 (Tuesday) scheduled maintenance. +If you open the box after the usage period ends, nothing will appear. +-------------------------- +Can only be stored. +-------------------------- +Take it to the NPC \ + in the satellite city of Izlude. +-------------------------- +Weight: 1 +# +17625# +A box containing one Tiny Ticket. +-------------------------- +Tiny Ticket will automatically disappear 1440 hours after opening the box. +-------------------------- +This item will be available for use until October 24, 2017 (Tuesday) scheduled maintenance. +If you open the box after the usage period ends, nothing will appear. +-------------------------- +Can only be stored. +-------------------------- +Take it to the NPC \ + at Prontera coordinates (111 65) or at Izlude coordinates (124 115). +-------------------------- +Weight: 1 +# +17626# +A box containing one Plarock Refining Force. +-------------------------- +Let's take it to NPC \ + in the satellite city of Izlude in the Rune Midgard Kingdom. +-------------------------- +Available only for characters who have opened the box. Please open the box with the character you want to use. +-------------------------- +Plarock Refining Force will automatically disappear 672 hours after opening the box. +-------------------------- +This item will be available for use until December 26, 2017 (Tuesday) scheduled maintenance. +If you open the box after the usage period ends, nothing will appear. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 1 +# +17627# +A box containing one Reprinted Egg Sticker. +-------------------------- +- Take it to NPC \ + at Izlude coordinates (123 115). +-------------------------- +Reprint Egg Sticker will automatically disappear 888 hours after opening the box. +-------------------------- +This item will be available for use until September 1, 2018 (Tuesday) scheduled maintenance. +If you open the box after the usage period ends, nothing will appear. +-------------------------- +Can only be stored. +-------------------------- +Weight: 1 +# +17629# +A box containing 1 Spellflow Shadow Set. +-------------------------- +1 Spellflow Shadow Shoes +1 Spellflow Shadow Armor +1 Spellflow Shadow Shield +-------------------------- +Weight: 1 +# +17630# +Europe Shadow Box 1 +-------------------------- +Weight: 1 +# +17631# +A box containing 10 Almighty and 1 New Hat Scroll. +You can get additionally 1 of each [Event] Mystic Powder, [Event] Tyr's Blessing and [Event] Regeneration Potion! +-------------------------- +The ultimate dish that condenses all the foods that are said to be good for you. +All Stats +10, ATK +30, MATK +30 for 30 minutes. +-------------------------- +Weight: 1 +# +17632# +A box containing 100 Almighty and 11 New Hat Scroll. +You can get additionally 10 of each [Event] Mystic Powder, [Event] Tyr's Blessing and [Event] Regeneration Potion! +-------------------------- +The ultimate dish that condenses all the foods that are said to be good for you. +All Stats +10, ATK +30, MATK +30 for 30 minutes. +-------------------------- +Weight: 1 +# +17634# +A box containing one Costume Change Ticket. +You can change the clothes of the third job to the second costume or return to the original. +-------------------------- +Second costume currently only supports the following classes: +Please note that this ticket cannot be used with other classes. +[Available Classes] +- Genetic +- Guillotine cloth +- Mechanic +- Royal Guard +- Arc Bishop +- Ranger +- Warlock +- Minstrel +- Wanderer +- Shadow Chaser +- Sorcerer +- Shura +-------------------------- +Can only be moved to the storage. +-------------------------- +Weight: 1 +# +17635# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Eremes Scarf +- Costume Blessing of Angel +- Costume Chain of Commandments +- Costume Vicious Mind Aura(Crimson) +- Costume Requiem Crown of Light and Dark +- Costume Ichthys Rosario +- Costume There is...Something... +- Costume Angel Guidance +- Costume Holy Klobuk +- Costume Dolor Thanatos +-------------------------- +Weight: 1 +# +17638# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Piamette Bowtie +- Costume Loyal Servant of Devil Morocc +- Costume Magician Headdress +- Costume Khalitzburg Knight Helm +- Costume Louise Red Hat +- Costume Piamette's Brown Ears +- Costume Crown of Deceit +- Costume Goddes of Victory(Blue) +- Costume Glaris Doll Hat +- Costume Telling Doll Hat +-------------------------- +Weight: 1 +# +17639# +A box containing 10 Limited Power Booster and 1 2015 Special Scroll. +-------------------------- +A booster that increases your power significantly. +-------------------------- +Increases ATK and MATK by 30, ATK and MATK by 1%, +HIT and FLEE by 30, ASPD by 1, +Decreases SP Consumption by 5%, +Decreases Fixed Casting Time by 30% +(Only the highest effect of increase/decrease percentage effect is applied to Fixed Casting Time.) +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +# +17640# +A box containing 100 Limited Power Booster and 11 2015 Special Scroll. +-------------------------- +A booster that increases your power significantly. +-------------------------- +Increases ATK and MATK by 30, ATK and MATK by 1%, +HIT and FLEE by 30, ASPD by 1, +Decreases SP Consumption by 5%, +Decreases Fixed Casting Time by 30% +(Only the highest effect of increase/decrease percentage effect is applied to Fixed Casting Time.) +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +# +17641# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume New Year Shine +- Costume Poster Girl Hat +- Costume Gold Tones +- Costume Large Ribbon Muffler(Red) +- Costume Red and White Mochiring Hat +- Costume Camellia Hair Pin +- Costume Angel Stair +- Costume Angelring Furhat +- Costume Sakura Hairband +- Costume Abacus in Mouth +-------------------------- +Weight: 1 +# +17646# +A box containing 1 Limited Boarding Halter. +-------------------------- +A mysterious halter that can be used to summon a creature to ride on it. +The type of creature depends on the Class. +-------------------------- +Weight: 1 +# +17650# +A box containing 5 of Enriched Elunium and Enriched Oridecon. You can get 1 Angel Scroll additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17651# +A box containing 50 of Enriched Elunium and Enriched Oridecon. You can get 11 Angel Scroll additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17661# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Cat Ears Cape +- Costume Two Tone Beret +- Costume Monochrome Ribbon Hat +- Costume Glasses Without Lens +- Costume Crimson Ribbon +- Costume Elemental Crown +- Costume Thorny Hairband +- Costume Miracle Blue Rose +- Costume 93 Style Bloody Wings +- Costume Owlduke Silk Hat +-------------------------- +Weight: 1 +# +17662# +'For 1 hour great effects will come to you!' are the words written on the box. +-------------------------- +You will recieve 2 Battle Manuals, 2 Bubble Gums, 2 Almighty, 2 Mental Potion, 6 Mysterious Life Potions and 1 Poring Scroll. +You can get 1 [Event] Glass of Illusion additionally. +-------------------------- +Weight: 1 +# +17663# +'For 1 hour great effects will come to you!' are the words written on the box. +-------------------------- +You will recieve 20 Battle Manuals, 20 Bubble Gums, 20 Almighty, 20 Mental Potion, 60 Mysterious Life Potions and 11 Poring Scroll. +You can get 10 [Event] Glass of Illusion, 1 [Event] Toktok Candy and 1 [Event] Magic Candy additionally. +-------------------------- +Weight: 1 +# +17664# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Sweet Bonnet +- Costume Rabbit Earplug +- Costume Charming Ribbon +- Costume Note Headphone +- Costume Nekomimi Hat +- Costume Wickebine Ears +- Costume Minstrel Hat +- Costume Gang Scarf +- Costume Moonlight Flower Hat +- Costume Jumping Poring +-------------------------- +Weight: 1 +# +17668# +The flatter dream life, the legendary master of the three! What it says on the box. +-------------------------- +A box containing 20 Small Life Potions, 20 Medium Life Potions and 20 Mysterious Life Potion. You can get 1 Amistr Scrolls additionally. +-------------------------- +Weight: 1 +# +17669# +The flatter dream life, the legendary master of the three! What it says on the box. +-------------------------- +A box containing 200 Small Life Potions, 200 Medium Life Potions and 200 Mysterious Life Potion. You can get 11 Amistr Scrolls additionally. +-------------------------- +Weight: 1 +# +17670# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Pale Yellow Ribbon +- Costume Twin Margaret +- Costume Waltz of Flowers +- Costume Pope Crown +- Costume Full Blossom Sakura Hairpin (Blue) +- Costume Red Dress Hat +- Costume Birdcage of Paradise +- Costume Butterfly Barrettes +- Costume Sunflower Hairpin +- Costume Maneater Flower Hat +-------------------------- +Weight: 1 +# +17672# +Contains 5 ASPD Enhanced Potion and 10 Red Booster. You can get 1 Shadow Scrolls additionally. +-------------------------- +Weight: 1 +# +17673# +Contains 50 ASPD Enhanced Potion and 100 Red Booster. You can get 11 Shadow Scrolls additionally. +-------------------------- +Weight: 1 +# +17675# +A box containing 5 of Enriched Elunium and Enriched Oridecon. You can get 1 Soul Scroll additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17676# +A box containing 50 of Enriched Elunium and Enriched Oridecon. You can get 11 Soul Scrolls additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17677# +A box containing 13 of HD Elunium and HD Oridecon. You can get 11 Soul Scrolls and 6 Mental Potion. +-------------------------- +HD Elunium - Used as a material to strengthen armor currently from Refine Levels 7 through 9. +HD Oridecon - Used as a material to strengthen weapon currently from Refine Levels 7 through 9. +- When refining an equipment with a Refine Level of +7 or higher, even if it fails, the equipment is not destroyed! However, +10 or higher is not Refined. - +(If the refining fails, the Refine Level decreases by 1.) +-------------------------- +Weight: 1 +# +17678# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume White and Black Temptation +- Costume Cat Ears Hat +- Costume Pretty Bear +- Costume Black Cat Hood +- Costume Pig Nose +- Costume Quati Hat +- Costume Black Shiba Inu Hat +- Costume Umbala Spirit +- Costume Tiger Face +- Costume Elephant Hat +-------------------------- +Weight: 1 +# +17679# +A box containing a Magical Soul. +-------------------------- +The period of use of this item is from the end of regular maintenance on May 17, 2016 to the start of regular maintenance on June 14, 2016. +Since the use period has ended, nothing will appear even if the box is opened. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 0 +# +17680# +A box containing a Proof of Rebellion. +-------------------------- +The period of use of this item is from the end of regular maintenance on May 17, 2016 to the start of regular maintenance on June 14, 2016. +Since the use period has ended, nothing will appear even if the box is opened. +-------------------------- +Can only be sold to NPC and moved to storage. +-------------------------- +Weight: 0 +# +17682# +Limited Rabbit shape lucky egg. Something will come out. +-------------------------- +Weight: 1 +# +17683# +A box containing 10 Lucky Silvervine Cat Fruit. +As a bonus, you also have a small amount of Malangdo Special Can. +You can get 1 Balloon Scroll additionally. +-------------------------- +Weight: 1 +# +17684# +A box containing 100 Lucky Silvervine Cat Fruit. +As a bonus, you also have a small amount of Malangdo Special Can. +You can get 11 Balloon Scroll additionally. +-------------------------- +Weight: 1 +# +17687# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Gram Peony +- Costume Blue Rear Ribbon +- Costume White Rose Princess +- Costume First Love Cheek +- Costume White Lily(Black Ribbon) +- Costume Magical Feather +- Costume Cat Lace Hairband +- Costume Survivor's Circlet +- Costume Ribbon(White) +- Costume Drooping Kitty(Pink) +-------------------------- +Weight: 1 +# +17689# +A box containing 1 Premium Service for Premium Buffs. +-------------------------- +[Basic Service] +When you activate the Premium Service, you will receive a 30-day Premium Buff for all your characters in the server: +- Increases Experience by 20% +- Increases Item drop rate by 20% +-------------------------- +[Additional Service] +Consuming Silvervine Cat Fruits will allow all your characters in one server to receive the following effects: +- EXP UP (24 hours, Price: 4) +Increases Experience by 30% +- ITEM UP (24 hours, Price: 2) +Increases Item drop rate by 30% +- DEATH DOWN (24 hours, Price: 1) +Decreases Death Penalty by 50% +- Advanced Package (24 hours, Price: 6) +All 3 effects from above +Caution! - You cannot select a buff effect or an advanced package that overlaps the buff while it is active. +-------------------------- +Weight: 1 +# +17690# +'For 1 hour great effects will come to you!' are the words written on the box. +-------------------------- +You will recieve 2 Battle Manuals, 2 Bubble Gums, 2 Almighty, 2 Mental Potion, 6 Mysterious Life Potions and 1 Gunslinger Scroll. +You can get 1 [Event] Glass of Illusion additionally. +-------------------------- +Weight: 1 +# +17691# +'For 1 hour great effects will come to you!' are the words written on the box. +-------------------------- +You will recieve 20 Battle Manuals, 20 Bubble Gums, 20 Almighty, 20 Mental Potion, 60 Mysterious Life Potions and 11 Gunslinger Scroll. +You can get 10 [Event] Glass of Illusion, 1 [Event] Toktok Candy and 1 [Event] Magic Candy additionally. +-------------------------- +Weight: 1 +# +17693# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Water Spellcaster +- Costume Poring Soap Pipe +- Costume Exploding Crimson Flame +- Costume Eremes Guile's Scarf(Black) +- Costume Black Evil Druid Hat +- Costume Flying Galapago +- Costume Imp Hat +- Costume Drooping Eddga +- Costume Sting Hat +- Costume Angelring Hat +-------------------------- +Weight: 1 +# +17696# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Yellow Ribbon +- Costume Gothic Head Dress +- Costume Wings of Victory +- Costume Neko Mimi Kafra +- Costume Little Angel Doll +- Costume Lucky Clover +- Costume Lady Tanee Doll +- Costume Scarf +- Costume Alice Doll +- Costume Pink Ribbon +-------------------------- +Weight: 1 +# +17697# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Saint Frill Ribbon +- Costume Shelter Wing Ears +- Costume Light Darkness Crown +- Costume Anubis Helm +- Costume Black Tail Ribbon +- Costume Holy Marching Hat +- Costume Executioner Hood +- Costume Tha Despero Mask +- Costume Diadem +- Costume Gold Spirit Chain +-------------------------- +Weight: 1 +# +17698# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Rainbow Veil +- Costume Happy Peace Proof +- Costume White Lily +- Costume Celestial Hat +- Costume Good Wedding Veil +- Costume YinYang Earring +- Costume Holy Mom Love +- Costume Water Lily Crown +- Costume Frog King Hat +- Costume Umbrella Hat +- Costume +-------------------------- +Weight: 1 +# +17699# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume White Cat Hood +- Costume Evil Druid Hat +- Costume Vicious Stop Bandage +- Costume Drooping Morocc Minion +- Costume Necromencer Hood +- Costume Drooping Neko Crew +- Costume Devil's Whisper +- Costume Bone Hat +- Costume Hyegun Hat +- Costume Yellow Bandana +-------------------------- +Weight: 1 +# +17700# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Pretty Rabbit Hood +- Costume Flowerpot Mask +- Costume Piamette Hood +- Costume Love Rabbit Hood +- Costume Rabbit Ear Hat +- Costume Eyes of Darkness +- Costume Drooping Bunny +- Costume Satellite Hairband +- Costume Black Bunny Band +- Costume Golden Tiara +-------------------------- +Weight: 1 +# +17701# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Gothic Heart Wing Ribbon +- Costume Classical Ribbon +- Costume Angel Mini Silk Hat +- Costume Noah's Hat +- Costume Dark Age +- Costume Heart Wings Hairband +- Costume Odin's Mask +- Costume Monocle +- Costume Black Ribbon +- Costume Brown Drooping Kitty +-------------------------- +Weight: 1 +# +17702# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Under Rim Glasses +- Costume Star Reading Hat +- Costume Mermaid Headphones +- Costume Aqua Ten Gallon Hat +- Costume Raspberry Mousse Hat +- Costume Fish Head +- Costume Classic Hat +- Costume Fish in mouth +- Costume Blind Glasses +- Costume Jolly Roger Hat +-------------------------- +Weight: 1 +# +17703# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Vicious Mind Aura +- Costume Whisper Tall Hat +- Costume Clock Tower Manager Incom +- Costume Poring Mascot +- Costume White Helm of Abyss +- Costume Lord of Death Helm +- Costume Odium Thanatos Mask +- Costume Helm of Abyss +- Costume Remover Hat +- Costume Poporing Cap +-------------------------- +Weight: 1 +# +17704# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Falling Maple Leafs +- Costume Straw Rice Bag +- Costume Monochrome Cap +- Costume Lady Feather Hat +- Costume Fan in Mouth +- Costume Musketeer Hat +- Costume Hexagon Glasses +- Costume Wind Fan +- Costume Poison Spore Hat +- Costume Baseball Cap +-------------------------- +Weight: 1 +# +17705# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Snownow Hat +- Costume Large Ribbon Muffler +- Costume Gift of Snow +- Costume Choco Mint Bonnet +- Costume Eclipse Hat +- Costume Knit Cap of Water +- Costume Frozen Rose +- Costume Arc Angelring Hat +- Costume Pink Beanie +- Costume Drooping Blue Cat +-------------------------- +Weight: 1 +# +17706# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Sleeping Eclipse Family +- Costume Secret Zipper +- Costume Penguin Cap +- Costume White Fox Ear Ribbon +- Costume Gryphon Wing Ears +- Costume Fox Ears Drop Ribbon +- Costume Silk Hat of Earth +- Costume Sleeping Cat Hat +- Costume Blood Sucker +- Costume Bird Nest Hat +-------------------------- +Weight: 1 +# +17707# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Nekomimi Cyber Headphone +- Costume Analyze Eye +- Costume Seraph Wing Helm +- Costume Charleston Antenna +- Costume Crimson Booster +- Costume Hunting Cap of Gust +- Costume Magical Booster +- Costume Baron's Evil Eye +- Costume CD in Mouth +- Costume New Wave Sunglasses +-------------------------- +Weight: 1 +# +17709# +Contains 1 Costume Amistr Bag +# +17710# +A mysterious egg that give one random hair costume. +Costume Eleanor Wig +Costume Hair Bun(Blue) +Costume Hair Bun(Red) +Costume Hair Bun(Yellow) +Costume Hair Bun(Green) +Costume Roll Twin(Blue) +Costume Roll Twin(Red) +Costume Roll Twin(Yellow) +Costume Roll Twin(Green) +Costume Long Pony(Blue) +Costume Long Pony(Red) +Costume Long Pony(Yellow) +Costume Long Pony(Green) +-------------------------- +Weight: 1 +# +17711# +A mysterious egg that give one random hair costume. +Costume Eleanor Wig +Costume Hair Bun(Black) +Costume Hair Bun(White) +Costume Hair Bun(Purple) +Costume Hair Bun(Crimson) +Costume Roll Twin(Black) +Costume Roll Twin(White) +Costume Roll Twin(Purple) +Costume Roll Twin(Crimson) +Costume Long Pony(Black) +Costume Long Pony(White) +Costume Long Pony(Purple) +Costume Long Pony(Crimson) +-------------------------- +Weight: 1 +# +17712# +The flatter dream life, the legendary master of the three! What it says on the box. +-------------------------- +A box containing 20 Small Life Potions, 20 Medium Life Potions and 20 Mysterious Life Potion. You can get 1 July Green Scrolls additionally. +-------------------------- +Weight: 1 +# +17713# +The flatter dream life, the legendary master of the three! What it says on the box. +-------------------------- +A box containing 200 Small Life Potions, 200 Medium Life Potions and 200 Mysterious Life Potion. You can get 11 July Green Scrolls additionally. +-------------------------- +Weight: 1 +# +17715# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Doe Alma's Bunny Ears +- Costume Bau Alma's Dog Ears +- Costume Tamamo Loa's Fox Ears +- Costume Ontama Aria's Headdress +- Costume Mythical Baphomet Horns +- Costume Hat of Dumpty Alma +- Costume Taini Hat(Blue) +- Costume Taini Hat(Orange) +- Costume Taini Hat(Green) +-------------------------- +Weight: 1 +# +17716# +A box containing 5 of Enriched Elunium and Enriched Oridecon. You can get 1 Kafra Scroll additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17717# +A box containing 50 of Enriched Elunium and Enriched Oridecon. You can get 11 Kafra Scroll additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17718# +A box containing 13 of HD Elunium and HD Oridecon. You can get 11 Kafra Scrolls and 6 Mental Potion. +-------------------------- +HD Elunium - Used as a material to strengthen armor currently from Refine Levels 7 through 9. +HD Oridecon - Used as a material to strengthen weapon currently from Refine Levels 7 through 9. +- When refining an equipment with a Refine Level of +7 or higher, even if it fails, the equipment is not destroyed! However, +10 or higher is not Refined. - +(If the refining fails, the Refine Level decreases by 1.) +-------------------------- +Weight: 1 +# +17723# +A box containing one Albanian voucher for a one-hour sale stall. +-------------------------- +Weight: 1 +# +17724# +A box containing one Albanian voucher for a one-hour purchase stall. +-------------------------- +Weight: 1 +# +17726# +A box containing 10 Almighty and 1 Sigrun Scroll. +You can get additionally 1 of each [Event] Mystic Powder, [Event] Tyr's Blessing and [Event] Regeneration Potion! +-------------------------- +The ultimate dish that condenses all the foods that are said to be good for you. +All Stats +10, ATK +30, MATK +30 for 30 minutes. +-------------------------- +Weight: 1 +# +17727# +A box containing 100 Almighty and 11 New Hat Scroll. +You can get additionally 1 of each [Event] Mystic Powder, [Event] Tyr's Blessing and [Event] Regeneration Potion! +-------------------------- +The ultimate dish that condenses all the foods that are said to be good for you. +All Stats +10, ATK +30, MATK +30 for 30 minutes. +-------------------------- +Weight: 1 +# +17728# +When opened gives the user 100 HD Oridecon +8 Mad Bunny Scrolls +# +17729# +When opened gives the user 100 HD Elunium +8 Mad Bunny Scrolls +# +17730# +When opened gives the user 100 Enriched Oridecon +24 Mad Bunny Scrolls +# +17731# +When opened gives the user 100 Enriched Elunium +24 Mad Bunny Scrolls +# +17732# +When opened gives the user 100 HD Carnium +12 Mad Bunny Scrolls +# +17733# +When opened gives the user 100 HD Bradiums +12 Mad Bunny Scrolls +# +17735# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Sky of Memory +- Costume Vampire's Familiar +- Costume Bat Stole +- Costume Bloody Stop Bandage +- Costume Ghostring Tall Hat +- Costume Niffleheim Bunny Hat +- Costume Hoplite Helmet +- Costume Little Devil's Horn +- Costume Assassin's Mask +- Costume Blue Magician Hat +-------------------------- +Weight: 1 +# +17741# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Crown of Strawberry Prince +- Costume Blue Rose Ornament +- Costume Clock Casque +- Costume Piamette's Red Hood +- Costume White Rabbit Ears +- Costume Luxury Mini Crown +- Costume Ancient Elven Ear +- Costume Mad Hatter +- Costume Talkactive Parrot +- Costume Gambler Seal +-------------------------- +Weight: 1 +# +17742# +A box containing 1 Defense Scroll, which helps you to survive. +You can get 5 Small Mana Potions and 30 Brilliant Protection Scrolls additionally. +You recieve 1 New Hat Scroll II when purchasing this box! +-------------------------- +Weight: 1 +# +17743# +A box containing 1 Defense Scroll, which helps you to survive. +You can get 50 Small Mana Potion and 300 Brilliant Protection Scrolls additionally. +You recieve 11 New Hat Scroll II when purchasing this box! +-------------------------- +Weight: 1 +# +17748# +A box containing 10 Limited Power Booster and 1 2016 Special Scroll. +-------------------------- +A booster that increases your power significantly. +-------------------------- +Increases ATK and MATK by 30, ATK and MATK by 1%, +HIT and FLEE by 30, ASPD by 1, +Decreases SP Consumption by 5%, +Decreases Fixed Casting Time by 30% +(Only the highest effect of increase/decrease percentage effect is applied to Fixed Casting Time.) +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +# +17749# +A box containing 100 Limited Power Booster and 11 2016 Special Scroll. +-------------------------- +A booster that increases your power significantly. +-------------------------- +Increases ATK and MATK by 30, ATK and MATK by 1%, +HIT and FLEE by 30, ASPD by 1, +Decreases SP Consumption by 5%, +Decreases Fixed Casting Time by 30% +(Only the highest effect of increase/decrease percentage effect is applied to Fixed Casting Time.) +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +# +17750# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Nydhoggur Wig +- Costume Cheshire's Cat Ears +- Costume Piamette's Red Bow Tie +- Costume Shalosh Headdress +- Costume Skull Hood +- Costume Alice Von Friesinger Hat 69 +- Costume Gemini-S58 Eyes(Blue) +- Costume Kardui Ears +- Costume Drooping Domovoi +- Costume Drooping W Doll +-------------------------- +Weight: 1 +# +17756# +A box containing 13 HD Bradiums & Craniums. You can get 11 Mad Bunny Scroll II and 6 Mental Potions additionally. +-------------------------- +HD Bradium - Increases rate of refining weapons at +10 and higher. +HD Cranium - Increases rate of refining armors at +10 and higher. +- When Refine fails, equipment will not disappear or destroyed! - +(If the refining fails, the Refine Level decreases by 1.) +-------------------------- +Weight: 1 +# +17759# +A box containing 50 of Enriched Elunium and Enriched Oridecon. You can get 11 Mad Bunny Scroll II additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17760# +A box containing 5 of Enriched Elunium and Enriched Oridecon. You can get 1 Mad Bunny Scroll II additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17761# +A box containing 13 HD Eluniums & Oridecons. You can get 11 Mad Bunny Scroll II and 6 Mental Potions additionally. +-------------------------- +HD Oridecon - Increases rate of refining an weapon without breaking it. +HD Elunium - Increases rate of refining an armor without breaking it. +- When Refine fails, equipment will not disappear or destroyed! - +(If the refining fails, the Refine Level decreases by 1.) +-------------------------- +Weight: 1 +# +17762# +A mysterious egg that pops out when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Piggyback +- Costume Teddy Bear Hood +- Costume Brown Stole +- Costume Hanging Black Lunatic Ears +- Costume Blue Mouton Life +- Costume Soft Sheep Hat +- Costume Rune Helm +- Costume Tiger Mask +- Costume Shaving Foam +- Costume Sheep Hat +-------------------------- +Weight: 1 +# +17763# +A box containing 20 Bloody Branches. +-------------------------- +Weight: 1 +# +17764# +'For 1 hour great effects will come to you!' are the words written on the box. +-------------------------- +You will recieve 2 Battle Manuals, 2 Bubble Gums, 2 Almighty, 2 Mental Potion, 6 Mysterious Life Potions and 1 Gunslinger Scroll. +You can get 1 [Event] Glass of Illusion, 1 [Event] Toktok Candy and 1 [Event] Magic Candy additionally. +-------------------------- +Weight: 1 +# +17765# +'For 1 hour great effects will come to you!' are the words written on the box. +-------------------------- +You will recieve 20 Battle Manuals, 20 Bubble Gums, 20 Almighty, 20 Mental Potion, 60 Mysterious Life Potions and 11 Gunslinger Scroll. +You can get 10 [Event] Glass of Illusion, 1 [Event] Toktok Candy and 1 [Event] Magic Candy additionally. +-------------------------- +Weight: 1 +# +17766# +A box containing 1 Infinite Cat's Hand Ticket, which is available for one week. +-------------------------- +Rental Item +A ticket issued by the top of the Cat Hand Service. +A service ticket for the Cat Hand Service which grows every year. +When used, you can use the Cat Hand Storage Service. +-------------------------- +Weight: 1 +-------------------------- +Box Weight: 1 +# +17767# +A mysterious egg that pops out when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Black Cat +- Costume War Princess Ribbon +- Costume Red Cat Ears Cape +- Costume Mono Gothic Bonnet +- Costume Black Angel Mini Silk Hat +- Costume Necklace Rosary +- Costume Side Cap +- Costume Blessing of Fallen Angel +- Costume Hawkeye +- Costume Engineer Cap +-------------------------- +Weight: 1 +# +17774# +A box containing 10 Almighty and 1 July Green Scroll II. +You can get additionally 1 of each [Event] Mystic Powder, [Event] Tyr's Blessing and [Event] Regeneration Potion! +-------------------------- +The ultimate dish that condenses all the foods that are said to be good for you. +All Stats +10, ATK +30, MATK +30 for 30 minutes. +-------------------------- +Weight: 1 +# +17775# +A box containing 100 Almighty and 11 July Green Scroll II. +You can get additionally 1 of each [Event] Mystic Powder, [Event] Tyr's Blessing and [Event] Regeneration Potion! +-------------------------- +The ultimate dish that condenses all the foods that are said to be good for you. +All Stats +10, ATK +30, MATK +30 for 30 minutes. +-------------------------- +Weight: 1 +# +17776# +The flatter dream life, the legendary master of the three! What it says on the box. +A box containing 20 Small Life Potions, 20 Medium Life Potions and 20 Mysterious Life Potion. You can get 1 Love Scroll additionally. +-------------------------- +Weight: 1 +# +17777# +The flatter dream life, the legendary master of the three! What it says on the box. +A box containing 200 Small Life Potions, 200 Medium Life Potions and 200 Mysterious Life Potion. You can get 11 Love Scroll additionally. +-------------------------- +Weight: 1 +# +17780# +A box containing a Special Cat Can (Tuna). +-------------------------- +Special Cat Can (Tuna): Take it to NPC \ + in Izlude for special service. +-------------------------- +Can only be stored. +-------------------------- +Weight: 1 +# +17781# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Straight Long (Yellow) +- Costume Side Pigtail (Blue) +- Costume Side Pigtail (Red) +- Costume Side Pigtail (Yellow) +- Costume Side Pigtail (Green) +- Costume Low Pony (Blue) +- Costume Low Pony (Red) +- Costume Low Pony (Yellow) +- Costume Low Pony (Green) +- Costume Long Twin (Blue) +- Costume Long Twin (Red) +- Costume Long Twin (Yellow) +- Costume Long Twin (Green) +-------------------------- +Weight: 1 +# +17782# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Straight Long (White) +- Costume Side Pigtail (Black) +- Costume Side Pigtail (White) +- Costume Side Pigtail (Red) +- Costume Side Pigtail (Purple) +- Costume Low Pony (Black) +- Costume Low Pony (White) +- Costume Low Pony (Red) +- Costume Low Pony (Purple) +- Costume Long Twin (Black) +- Costume Long Twin (White) +- Costume Long Twin (Red) +- Costume Long Twin (Purple) +-------------------------- +Weight: 1 +# +17783# +A box containing 50 ASPD Enhanced Potion and 100 Red Booster. You can get 11 [Event] Brilliant Protection Scroll additionally. +-------------------------- +Weight: 1 +# +17784# +A box containing 5 ASPD Enhanced Potion and 10 Red Booster. You can get 1 [Event] Brilliant Protection Scroll additionally. +-------------------------- +Weight: 1 +# +17785# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Large Ribbon Muffler(Mid) +- Costume Vicious Mind Aura(Mid) +- Costume Pale Yellow Ribbon(Lower) +- Costume True Love(Upper) +- Costume Love Rabbit Hood(Upper) +- Costume Whisper Mask(Upper) +- Costume Burning Sun(Lower) +- Costume Anubis Hat(Upper) +- Costume Tongue Mask(Mid) +- Costume Skymet(Upper) +-------------------------- +Weight: 1 +# +17789# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Wolf Masquerade +- Costume Hopping Rabbit +- Costume Wonderful Beast Ears +- Costume Cat's Mouth +- Costume White Cat Ears Hat +- Costume Squirrel Ear Hat +- Costume Isabella Red Ears +- Costume Humming Bird +- Costume Jaguar Mask +- Costume Hippo Hat +-------------------------- +Weight: 1 +# +17792# +A box containing 5 of Enriched Elunium and Enriched Oridecon. You can get 1 Shadow Scroll II additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17793# +A box containing 50 of Enriched Elunium and Enriched Oridecon. You can get 11 Shadow Scroll II additionally.. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17794# +A box containing 13 of HD Elunium and HD Oridecon. You can get 11 Shadow Scrolls and 6 Mental Potion. +-------------------------- +HD Elunium - Used as a material to strengthen armor currently from Refine Levels 7 through 9. +HD Oridecon - Used as a material to strengthen weapon currently from Refine Levels 7 through 9. +- When refining an equipment with a Refine Level of +7 or higher, even if it fails, the equipment is not destroyed! However, +10 or higher is not Refined. - +(If the refining fails, the Refine Level decreases by 1.) +-------------------------- +Weight: 1 +# +17795# +A box containing 13 HD Bradiums & Craniums. You can get 11 Shadow Scroll II and 6 Mental Potions additionally. +-------------------------- +HD Bradium - Increases rate of refining weapons at +10 and higher. +HD Cranium - Increases rate of refining armors at +10 and higher. +- When Refine fails, equipment will not disappear or destroyed! - +(If the refining fails, the Refine Level decreases by 1.) +-------------------------- +Weight: 1 +# +17796# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Black Wing Ears(Lower) +- Costume Wings of Protector(Lower) +- Costume Straight Pony(Blue)(Mid) +- Costume Straight Pony(Red)(Mid) +- Costume Straight Pony(Yellow)(Mid) +- Costume Straight Pony(Green)(Mid) +- Costume Cowlick(Blue)(Mid) +- Costume Cowlick(Red)(Mid) +- Costume Cowlick(Yellow)(Mid) +- Costume Cowlick(Green)(Mid) +- Costume Loose Wave Twin(Blue)(Mid) +- Costume Loose Wave Twin(Red)(Mid) +- Costume Loose Wave Twin(Yellow)(Mid) +- Costume Loose Wave Twin(Green)(Mid) +-------------------------- +Weight: 1 +# +17797# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Black Wing Ears(Lower) +- Costume Wings of Protector(Lower) +- Costume Straight Pony(Black)(Mid) +- Costume Straight Pony(Wgute)(Mid) +- Costume Straight Pony(Red)(Mid) +- Costume Straight Pony(Purple)(Mid) +- Costume Cowlick(Black)(Mid) +- Costume Cowlick(White)(Mid) +- Costume Cowlick(Red)(Mid) +- Costume Cowlick(Purple)(Mid) +- Costume Loose Wave Twin(Black)(Mid) +- Costume Loose Wave Twin(White)(Mid) +- Costume Loose Wave Twin(Red)(Mid) +- Costume Loose Wave Twin(Purple)(Mid) +-------------------------- +Weight: 1 +# +17799# +A box containing 1 Defense Scroll, which helps you to survive. +You can get 5 Small Mana Potion and 30 Brilliant Protection Scrolls additionally. +You recieve 1 May's Golden Scroll when purchasing this box! +-------------------------- +Weight: 1 +# +17800# +A box containing 1 Defense Scroll, which helps you to survive. +You can get 50 Small Mana Potion and 300 Brilliant Protection Scrolls additionally. +You recieve 11 May's Golden Scroll when purchasing this box! +-------------------------- +Weight: 1 +# +17803# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume White Rabbit +- Costume Tail Hat +- Costume Warm Cat Muffler +- Costume Blinking Eyes +- Costume Black Magenta Ribbons +- Costume Sepia Parade Hat +- Costume Valhalla Idol +- Costume Red Wing Hat +- Costume Strawberry in Mouth +- Costume Fruit of Love +-------------------------- +Weight: 1 +# +17808# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Fallen Angel Wing Ears +- Costume Ghost Holiday +- Costume Stall of Angel +- Costume Black Fluttering Butterfly +- Costume Always Watching +- Costume Protect Feathers +- Costume Pure White Marching Hat +- Costume 666 Black Elven Ears +- Costume Dolor Thanatos Mask +- Costume Hades Helm +-------------------------- +Weight: 1 +# +17809# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Nekomimi Hat +- Costume Fallen Angel +- Costume Twin Red Ribbon +- Costume Red Ribbon +- Costume April's Fool Day +- Costume Magic Eyes +- Costume Hibiscus +- Costume Laurel Wreath +- Costume Decorative Geographer +-------------------------- +Weight: 1 +# +17810# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Note Headphone +- Costume Chicken Love Hat +- Costume Red Glasses +- Costume Gang Scarf +- Costume Chick Hat +- Costume Whisper Mask +- Costume Peco Ears +- Costume Valkyrie Feather Band +- Costume Ninja Scroll +- Costume Romantic White Flower +-------------------------- +Weight: 1 +# +17811# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Charming Ribbon +- Costume White Kitten Ears +- Costume Helm of Darkness +- Costume Moonlight Flower Hat +- Costume Wickebine Ears +- Costume Takius Blindfold +- Costume Phoenix Crown +- Costume Ramen Hat +- Costume Red Deviruchi Hat +- Costume Autumn Leaves +-------------------------- +Weight: 1 +# +17812# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Rabbit Magic Hat +- Costume Sweet Bonnet +- Costume Marcher Hat +- Costume Master's Hat +- Costume Tiraya Bonnet +- Costume Minstrel Hat +- Costume Captain Hat +- Costume Vacation Hat +- Costume Brown Beanie +- Costume Coppola +-------------------------- +Weight: 1 +# +17813# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Rainbow Poring Hat +- Costume Dragon Helm +- Costume Wind Milestone +- Costume Reginleif Wings +- Costume Southern Cross +- Costume Piggie Bank +- Costume Poring Letter +- Costume Benevolent Guardian +- Costume Demon Mask +- Costume Jumping Poring +-------------------------- +Weight: 1 +# +17814# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Rabbit Earplug +- Costume Shine Stanta Poring +- Costume Soulless Wing +- Costume Bell Ribbon +- Costume Round Eyes J +- Costume Tongue Mask +- Costume Silver Tiara +- Costume Santa Poring Hat +- Costume Sweet Candy +- Costume Happy Wig +-------------------------- +Weight: 1 +# +17815# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Rose Corsage +- Costume Friend Mochiring Hat +- Costume Ati Atihan +- Costume Dark Snake Lord Hat J +- Costume Blue Ribbon +- Costume Antique Pipe +- Costume Triple Poring Hat +- Costume Vane Hairpin +- Costume Kabuki Mask +- Costume Kettle Hat +-------------------------- +Weight: 1 +# +17816# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Darkness Helm +- Costume Drooping Zonda +- Costume Black Glasses +- Costume Majestic Devil Horns +- Costume Sacred Torch Coronet +- Costume Deprotai Doll +- Costume Bread Bag +- Costume Scarlet Rose +- Costume Vagabond Wolf King Helmet +- Costume Devilring Hat +-------------------------- +Weight: 1 +# +17817# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Home Cherry Blossom +- Costume Tomboy Fairy +- Costume Sakura Coronet +- Costume Mischievous Fairy +- Costume Japan Winecup +- Costume Butterfly Hairpin +- Costume Honeybee Hat +- Costume Angelring Hairpin +- Costume Emperor Wreath +- Costume Afro Wig +-------------------------- +Weight: 1 +# +17818# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Majestic Helmet +- Costume Full Bloom Hairpin +- Costume Red Vane Hairpin +- Costume Taboo Curse Scroll +- Costume Crescent Moon Helm +- Costume Fox Hat +- Costume Frog Hat +- Costume Samurai Mask +- Costume Drooping Nine Tail +- Costume Pinwheel Cap +-------------------------- +Weight: 1 +# +17819# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Lolita Ten Gallon Hat +- Costume Pecopeco Cap +- Costume Ifrit's Breath +- Costume Blazing Sun +- Costume Purple Cowboy Hat +- Costume Ears of Ifrit +- Costume Beer Cap +- Costume Large Hibiscus +- Costume Icecream Hat +- Costume Shiny Wig +-------------------------- +Weight: 1 +# +17820# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Halloween Hat +- Costume Triangle Roof Hat +- Costume Cat Eye +- Costume Witch's Pumpkin Hat +- Costume Skull Cap +- Costume Secret Society Hood +- Costume Screw stuck in head +- Costume Fascinating Phantom Mask +- Costume Flag Crown Hat +- Costume White Deviruchi Hat +-------------------------- +Weight: 1 +# +17821# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Globe +- Costume Orchid Hairband +- Costume Judge Hat +- Costume Dragonhelm Copper +- Costume Goddess of Victory(Purple) +- Costume Winner Helmet(Copper) +- Costume Shuttle to Apex(Blue) +- Costume Princess Tiara +- Costume Rainbow Scarf +- Costume RWC2013 Japan Hat +-------------------------- +Weight: 1 +# +17822# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Choir Hat +- Costume Drooping Argiope +- Costume Chain Puppet +- Costume Cardboard Box +- Costume Bubble Gum in Mouth +- Costume Parade Cap +- Costume 3D Glasses +- Costume Mini Tree +- Costume Soldier Hat +- Costume Scooter Hat +-------------------------- +Weight: 1 +# +17823# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Rabbit Knit Hat +- Costume Mouton Life +- Costume Galanthus Guard +- Costume Chilly Breath +- Costume Knit Rabbit Ears +- Costume Aura Quartz +- Costume Ice Wings Ears +- Costume Lunatic Hat +- Costume Blue Fur Hat +- Costume Elder Crown +-------------------------- +Weight: 1 +# +17824# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Rainbow Feather Ears +- Costume Lightning Speed +- Costume Double Horn Helm +- Costume Vanargand Helm +- Costume Sigrun's Wings +- Costume Dark Knight Mask +- Costume Horned Hat +- Costume Dagger in Mouth +- Costume Dragon General Helm +- Costume Dragon Skull Hat +-------------------------- +Weight: 1 +# +17825# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Bunny Headdress +- Costume Firinto Scarf +- Costume Monk Crown +- Costume Zaha Doll Hat +- Costume Heart Ribbon Hairband +- Costume Love Fragment +- Costume Heart Eyepatch +- Costume Kama's Hairband +- Costume Red Beret +- Costume Orange Ribbon +-------------------------- +Weight: 1 +# +17826# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Blue Ribbon Band +- Costume Prayer Cherry Blossom +- Costume Wind Prairie +- Costume Butterfly Wing Ears +- Costume Qing Headdress +- Costume Rose Headband +- Costume Hermos Cap +- Costume Cherryblossom in Mouth +- Costume Tropical Fruit Hat +- Costume Samambaia +-------------------------- +Weight: 1 +# +17827# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Gryphon Hairband +- Costume Alpaca Hood +- Costume Worg in Mouth +- Costume Amistr Cap +- Costume Grand Peco Hairband +- Costume Filir Hat +- Costume Filir Wings +- Costume Pecopeco Hairband +- Costume Lif Doll Hat +- Costume Vanilmirth Hat +-------------------------- +Weight: 1 +# +17828# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Volume Feather Hat +- Costume Vampire Hairband +- Costume Ljosalfar +- Costume Forgotten Angel Wings +- Costume Bragi Wing Ears +- Costume Little Feather Hat +- Costume Idun Feather Ears +- Costume Wing Frame Sunglasses +- Costume Shaman Hair Ornament +- Costume White Feather +-------------------------- +Weight: 1 +# +17829# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Lude Hood +- Costume Sepia Cap +- Costume Pumpkin Hat +- Costume Orange Halloween Hat +- Costume Diabolic Headphone +- Costume Hockey Mask +- Costume Deviruchi Headphone +- Costume Skull Hood +- Costume Long Tongue +- Costume Brown Deviruchi Cap +-------------------------- +Weight: 1 +# +17830# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Amistr Beret +- Costume Scratching Cat +- Costume Leopard Ear Hat +- Costume Misty Ears +- Costume Puppy Grass +- Costume Chick Hat +- Costume Black Cat Ears Beret +- Costume Green Foxtail +- Costume Lion Mask +- Costume Puppy Hat +-------------------------- +Weight: 1 +# +17831# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Angel Marcher Hat +- Costume Arabian Veil +- Costume Spell Circuit +- Costume Dark Night Veil +- Costume Eyes of Ifrit +- Costume Robo Eyes +- Costume Evil Marcher Hat +- Costume Black Devil Mask +- Costume Loki Mask +- Costume Rideword Hat +-------------------------- +Weight: 1 +# +17832# +The flatter dream life, the legendary master of the three! What it says on the box. +A box containing 20 Small Life Potions, 20 Medium Life Potions and 20 Mysterious Life Potion. You can get 1 General Scroll additionally. +-------------------------- +Weight: 1 +# +17833# +The flatter dream life, the legendary master of the three! What it says on the box. +A box containing 200 Small Life Potions, 200 Medium Life Potions and 200 Mysterious Life Potion. You can get 11 General Scroll additionally. +-------------------------- +Weight: 1 +# +17835# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Alice Wig +- Costume Fire Muffler +- Costume Fallen Angel Valletta +- Costume Chung e Shinyon Cap +- Costume Black Khalitzburg Knight Helm +- Costume Gerhard Von Deviruchi 83 II +- Costume Queen Scaraba's Helmet +- Costume Rolf Von Ziege 666 II +- Costume Wood Goblin's Nose +- Costume Faceworm Eggshell +-------------------------- +Weight: 1 +# +17836# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Shiba Inu +- Costume King Sura Headband +- Costume Wild Cat Knit Cap +- Costume Smart Under Rim Glasses +- Costume Cyber Cat Ear Headphone(Red) +- Costume Queen Anne's Revenge +- Costume Giant's Helm +- Costume Moon Eyepatch +- Costume Elder Devil Horn +- Costume Hunting Cap +-------------------------- +Weight: 1 +# +17881# +A box awarded to the Korean Natial Team, which participating in the 2017 Ragnarok RTC. +-------------------------- +Open to obtain either Safe to 13 Weapon Certificate or Safe to 13 Armor Certificate. +-------------------------- +Weight: 1 +# +17882# +A box containing 50 of Enriched Elunium and Enriched Oridecon. You can get 11 Sentimental Scrolls additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17883# +A box containing 5 of Enriched Elunium and Enriched Oridecon. You can get 1 Sentimental Scrolls additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17884# +A box containing 13 of HD Elunium and HD Oridecon. You can get 11 Sentimental Scroll and 6 Mental Potions. +-------------------------- +HD Elunium - Used as a material to strengthen armor currently from Refine Levels 7 through 9. +HD Oridecon - Used as a material to strengthen weapon currently from Refine Levels 7 through 9. +- When refining an equipment with a Refine Level of +7 or higher, even if it fails, the equipment is not destroyed! However, +10 or higher is not Refined. - +(If the refining fails, the Refine Level decreases by 1.) +-------------------------- +Weight: 1 +# +17885# +A box containing 13 HD Bradiums & Craniums. You can get 11 Sentimental Scrolls and 6 Mental Potion. +-------------------------- +HD Bradium - Increases rate of refining weapons at +10 and higher. +HD Cranium - Increases rate of refining armors at +10 and higher. +- When Refine fails, equipment will not disappear or destroyed! - +(If the refining fails, the Refine Level decreases by 1.) +-------------------------- +Weight: 1 +# +17886# +A box containing 10 Infinity Drink and 1 Infinity Scroll. +-------------------------- +An Infinity Drink which you can feel infinite energy from. +MaxHP +5%, MaxSP +5% for 30 minutes. +Increases critical, long range physical and Magical Damage with every element by 5%. +Casting cannot be interupted. +Item effects will also disappear when the character dies. +-------------------------- +Weight: 1 +# +17887# +A box containing 100 Infinity Drink and 11 Infinity Scroll. +-------------------------- +An Infinity Drink which you can feel infinite energy from. +MaxHP +5%, MaxSP +5% for 30 minutes. +Increases critical, long range physical and Magical Damage with every element by 5%. +Casting cannot be interupted. +Item effects will also disappear when the character dies. +-------------------------- +Weight: 1 +# +17888# +A box containing 10 [Event] Kafra Card. It is bulky for a box containing a Kafra Card. +-------------------------- +Kafra Card - The Kafra Storage Service can be used once. Warning - After use, if nothing is selected for 1 minute, the effect will not be triggered. +-------------------------- +Weight: 1 +# +17889# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Volume Low Twin +- Costume Diabolic Lapel +- Costume Punkish Cat Ears +- Costume Fake Ears +- Costume Gothic Pumpkin Head +- Costume Crow +- Costume Glastheim Obeserver +- Costume Catharina Von Brad 60th +- Costume Angel Spirit +- Costume Wind-Up Key +-------------------------- +Weight: 1 +# +17894# +'To you who want to see a big effect for an hour!' says the box. +-------------------------- +A package containing 2 Battle Manuals, 6 Brilliant Protection Scroll, 6 Mysterious Life Potion, 1 Small Mana Potion, 2 Tyr's Blessing and 1 Bloody Scroll. +-------------------------- +Weight: 1 +# +17895# +'To you who want to see a big effect for an hour!' says the box. +-------------------------- +A package containing 20 Battle Manuals, 60 Brilliant Protection Scroll, 60 Mysterious Life Potion, 10 Small Mana Potion, 20 Tyr's Blessing and 11 Bloody Scroll. +-------------------------- +Weight: 1 +# +17899# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Magic Circle +- Costume Book of Magic +- Costume Sorcerer Hood +- Costume Blinking Thin Eyes +- Costume Darkness Veil +- Costume Floating Stone of Sage +- Costume Laser of Eagle +- Costume Radio Antenna +- Costume Vajra +- Costume Magician White Hat +-------------------------- +Weight: 1 +# +17901# +A box containing 100 Limited Power Booster and 11 2017 Special Scrolls. +-------------------------- +A booster that increases your power significantly. +-------------------------- +Increases ATK and MATK by 30, ATK and MATK by 1%, +HIT and FLEE by 30, ASPD by 1, +Decreases SP Consumption by 5%, +Decreases Fixed Casting Time by 30% +(Only the highest effect of increase/decrease percentage effect is applied to Fixed Casting Time.) +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +# +17902# +A box containing 10 Limited Power Booster and 1 2017 Special Scrolls. +-------------------------- +A booster that increases your power significantly. +-------------------------- +Increases ATK and MATK by 30, ATK and MATK by 1%, +HIT and FLEE by 30, ASPD by 1, +Decreases SP Consumption by 5%, +Decreases Fixed Casting Time by 30% +(Only the highest effect of increase/decrease percentage effect is applied to Fixed Casting Time.) +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +# +17904# +A box containing one Reprinted Egg Sticker. +-------------------------- +- Take it to NPC \ + at Izlude coordinates (123 115). +-------------------------- +Reprint Egg Sticker will automatically disappear 888 hours after opening the box. +-------------------------- +This item will be available for use until May 8, 2018 (Tuesday) scheduled maintenance. +If you open the box after the usage period ends, nothing will appear. +-------------------------- +Can only be stored. +-------------------------- +Weight: 1 +# +17905# +A box containing the ultimate refining ticket. +-------------------------- +Ultimate Refining Ticket: When you bring it to the NPC \ + at the Izlude coordinates (139 130), you will get special refining. +-------------------------- +The Ultimate Refining Ticket will automatically disappear 864 hours after opening the box. +-------------------------- +This item will be available for use until March 27, 2018 (Tuesday) scheduled maintenance starts. +If you open the box after the usage period ends, nothing appears. +-------------------------- +Can only be stored. +-------------------------- +Weight: 1 +# +17906# +A box containing one Luxury Oil. +-------------------------- +Take it to the NPC \ + at the Izlude coordinates (139 130). +-------------------------- +Luxury Oil will automatically disappear 1032 hours after opening the box. +-------------------------- +This item will be available for use until June 19, 2018 (Tuesday) scheduled maintenance. +If you open the box after the usage period ends, nothing will appear. +-------------------------- +Can only be stored. +-------------------------- +Weight: 1 +# +17907# +A box containing 1 Plalock Refinement Force. +-------------------------- +Take it to the NPC \ + at the Izlude coordinates (118 107) +-------------------------- +Plalock Refining Force is only available for characters who open the box. Please open the box with the character you want to use. +-------------------------- +Plalock Refining Force will automatically disappear 672 hours after opening the box. +-------------------------- +Use period of this item is until July 3, 2018 (Tue) when regular maintenance starts. +If you open the box after the expiration date, nothing will appear. +-------------------------- +Can only be stored. +-------------------------- +Weight: 0 +# +17914# +2017 G-Star commemorative box. +-------------------------- +Opportunity to meet 4 new Costumes in November! +You can get 1 of 22 costumes randomly. +-------------------------- +Weight: 1 +# +17920# +A box containing 1 Tool Dealer Bell, which can be used for 30 days. +-------------------------- +With this, you can call a Tool Dealer anywhere, buy useful consumables or sell items you don't need. +-------------------------- +Weight: 0 +# +17921# +A box containing 1 Kafra Storage Bell, which can be used for 30 days. +-------------------------- +With this, you can call a Kafra Staff Member anywhere, which opens your storage. +-------------------------- +Weight: 0 +# +17922# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Baby Penguin +- Costume Fluffy Angel Cape +- Costume Fluffy Heart Earmuffs +- Costume Snow Bear Hood +- Costume Penguin Cap(Blue) +- Costume Floating Ice +- Costume Celestial Circle +- Costume Cloud Burst +- Costume Ghost Magician's Knit Hat +- Costume Lazy Cat +-------------------------- +Weight: 0 +# +17923# +A box containing 5 of Enriched Elunium and Enriched Oridecon. You can get 1 Ice Scroll additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17924# +A box containing 50 of Enriched Elunium and Enriched Oridecon. You can get 11 Ice Scroll additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17925# +A box containing 13 of HD Elunium and HD Oridecon. You can get 11 Ice Scroll and 6 Mental Potion. +-------------------------- +HD Elunium - Used as a material to strengthen armor currently from Refine Levels 7 through 9. +HD Oridecon - Used as a material to strengthen weapon currently from Refine Levels 7 through 9. +- When refining an equipment with a Refine Level of +7 or higher, even if it fails, the equipment is not destroyed! However, +10 or higher is not Refined. - +(If the refining fails, the Refine Level decreases by 1.) +-------------------------- +Weight: 1 +# +17926# +A box containing 13 HD Bradiums & Craniums. You can get 11 Ice Scroll and 6 Mental Potion. +-------------------------- +HD Bradium - Increases rate of refining weapons at +10 and higher. +HD Cranium - Increases rate of refining armors at +10 and higher. +- When Refine fails, equipment will not disappear or destroyed! - +(If the refining fails, the Refine Level decreases by 1.) +-------------------------- +Weight: 1 +# +17934# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Lolita Two Side Up +- Costume Blue Rose Eyepatch +- Costume White Cat +- Costume Large Ribbon Muffler(Black) +- Costume Blue Frill Ribbon +- Costume Seraphim Coronet +- Costume Sitting Pope +- Costume Toy Syringe +- Costume Light Moonlight Hat +- Costume Sting's Silk Ribbon +-------------------------- +Weight: 0 +# +17935# +The flatter dream life, the legendary master of the three! What it says on the box. +A box containing 15 Small Life Potions, 15 Medium Life Potions and 5 Small Mana Potion. You can get 1 2018 New Year Scroll additionally. +-------------------------- +Weight: 1 +# +17936# +The flatter dream life, the legendary master of the three! What it says on the box. +A box containing 150 Small Life Potions, 150 Medium Life Potions and 50 Small Mana Potion. You can get 11 2018 New Year Scroll additionally. +-------------------------- +Weight: 1 +# +17940# +A box containing 10 Lucky Silvervine Cat Fruit. +As a bonus, you also have a small amount of Malangdo Special Can. +You can get 1 Lunar New Year Scroll additionally. +-------------------------- +Weight: 1 +# +17941# +A box containing 100 Lucky Silvervine Cat Fruit. +As a bonus, you also have a small amount of Malangdo Special Can. +You can get 11 Lunar New Year Scroll additionally. +-------------------------- +Weight: 1 +# +17942# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Full Bloom Cherry Tree +- Costume Fairy Feathers +- Costume Straight Long(Black) +- Costume Black Fox Ears Ribbon +- Costume Tipsy +- Costume Yellow Cherry Blossom Hat +- Costume Sinsuncho Hat +- Costume Crow Tengu Mask +- Costume Scroll of Tengu +- Costume Celestial Flower +-------------------------- +Weight: 0 +# +17944# +A box containing 10 Almighty and 1 Spring Scroll. +You can get additionally 1 of each [Event] Mystic Powder, [Event] Tyr's Blessing and [Event] Regeneration Potion! +-------------------------- +The ultimate dish that condenses all the foods that are said to be good for you. +All Stats +10, ATK +30, MATK +30 for 30 minutes. +-------------------------- +Weight: 1 +# +17945# +A box containing 100 Almighty and 11 Spring Scroll. +You can get additionally 1 of each [Event] Mystic Powder, [Event] Tyr's Blessing and [Event] Regeneration Potion! +-------------------------- +The ultimate dish that condenses all the foods that are said to be good for you. +All Stats +10, ATK +30, MATK +30 for 30 minutes. +-------------------------- +Weight: 1 +# +17948# +A box containing 50 of Enriched Elunium and Enriched Oridecon. You can get 11 Spring Scroll additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17949# +A box containing 5 of Enriched Elunium and Enriched Oridecon. You can get 1 Spring Scroll additionally. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +Weight: 1 +# +17950# +A box containing 13 of HD Elunium and HD Oridecon. You can get Spring Scroll 11 and 6 Mental Potion. +-------------------------- +HD Elunium - Used as a material to strengthen armor currently from Refine Levels 7 through 9. +HD Oridecon - Used as a material to strengthen weapon currently from Refine Levels 7 through 9. +- When refining an equipment with a Refine Level of +7 or higher, even if it fails, the equipment is not destroyed! However, +10 or higher is not Refined. - +(If the refining fails, the Refine Level decreases by 1.) +-------------------------- +Weight: 1 +# +17951# +A box containing 13 HD Bradiums & Craniums. You can get Spring Scroll 11 and 6 Mental Potion. +-------------------------- +HD Bradium - Increases rate of refining weapons at +10 and higher. +HD Cranium - Increases rate of refining armors at +10 and higher. +- When Refine fails, equipment will not disappear or destroyed! - +(If the refining fails, the Refine Level decreases by 1.) +-------------------------- +Weight: 1 +# +17952# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Cat Ears Short +- Costume Cat Ears Long +- Costume Panda Rabbit +- Costume Fawn Ears +- Costume Rabbit Hopping Black +- Costume Isabella Blue Ears +- Costume Starving Fish Hat +- Costume Falcon Mask +- Costume Malangdo Pirate +- Costume Drooping Cat Yellow +-------------------------- +Weight: 1 +# +17958# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Shining Angel Wings +- Costume Happy Rabbit Ribbon +- Costume Lovely Heart Cap +- Costume Warm Cat Muffler Blue +- Costume Love Feeling +- Costume White Bird Rose +- Costume Shaman Hat +- Costume Blue Ears Accessory +- Costume Star Dust Hairband +- Costume Drooping Sorin Doll Hat +-------------------------- +Weight: 1 +# +17959# +A box containing 1 Defense Scroll, which helps you to survive. +You can get 5 Small Mana Potion and 30 Brilliant Protection Scrolls additionally. +You recieve 1 May's Rainbow Scroll when purchasing this box! +-------------------------- +Weight: 1 +# +17960# +A box containing 1 Defense Scroll, which helps you to survive. +You can get 50 Small Mana Potion and 300 Brilliant Protection Scrolls additionally. +You recieve 11 May's Rainbow Scroll when purchasing this box! +-------------------------- +Weight: 1 +# +17961# +The flatter dream life, the legendary master of the three! What it says on the box. +A box containing 20 Small Life Potions, 20 Medium Life Potions and 20 Mysterious Life Potion. You can get 1 Soul Plunger Scroll II additionally. +-------------------------- +Weight: 1 +# +17962# +The flatter dream life, the legendary master of the three! What it says on the box. +A box containing 200 Small Life Potions, 200 Medium Life Potions and 200 Mysterious Life Potion. You can get 11 Soul Plunger Scroll II additionally. +-------------------------- +Weight: 1 +# +17963# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Piamette Roll Hair +- Costume Clay Poring Jar +- Costume Siorava Hat +- Costume Eremes Scarf(Blue) +- Costume Clock Casque(Red) +- Costume Poporing Mascot +- Costume Poring Aura +- Costume Gemini Eyes(Red) +- Costume Gryphon Hat +- Costume Drosera Hairpin +-------------------------- +Weight: 1 +# +17964# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Love Cheeks(Lower) +- Costume Flaming Burst Wave(Garment) +- Costume Little Aquarium(Lower) +- Costume Tone of Gold(Mid) +- Costume Black Frame Glasses(Lower) +- Costume Wings of Victory(Mid) +- Costume Blue Ribbon(Mid) +- Costume Bread Bag(Mid) +- Costume Hoplite Helmet(Upper) +- Costume Moonlight Flower Hat(Upper) +-------------------------- +Can only be stored. +-------------------------- +Weight: 1 +# +17965# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Giant Cat Bag +- Costume Variant Veil +- Costume Princess Ribbon Crown +- Costume Golden Angel Stall +- Costume Sheep Horns +- Costume Blue Eyes Makeup +- Costume Royal Guard Necklace +- Costume Nurse Cap of Clergy +- Costume Eight Purgatory Wings +- Costume Zealotus Doll +-------------------------- +Can only be stored. +-------------------------- +Weight: 1 +# +17966# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Digital Space +- Costume Mobile Pursuit System +- Costume Electro Two Side Up +- Costume Mecha Cat Ears +- Costume Cyber Income +- Costume Nekomimi Cyber Headphone +- Costume Open Air Headset +- Costume Flying Drone +- Costume Cyclop's Eye +- Costume Guardian Processor +-------------------------- +Can only be stored. +-------------------------- +Weight: 1 +# +17967# +A box containing 10 Infinity Drink and 1 Soul Scroll. +-------------------------- +An Infinity Drink which you can feel infinite energy from. +MaxHP +5%, MaxSP +5% for 30 minutes. +Increases critical, long range physical and Magical Damage with every element by 5%. +Casting cannot be interupted. +Item effects will also disappear when the character dies. +-------------------------- +Weight: 1 +# +17968# +A box containing 100 Infinity Drink and 11 Soul Scroll. +-------------------------- +An Infinity Drink which you can feel infinite energy from. +MaxHP +5%, MaxSP +5% for 30 minutes. +Increases critical, long range physical and Magical Damage with every element by 5%. +Casting cannot be interupted. +Item effects will also disappear when the character dies. +-------------------------- +Weight: 1 +# +17969# +'To you who want to see a big effect for an hour!' says the box. +-------------------------- +A package containing 20 Battle Manuals, 60 Brilliant Protection Scroll, 60 Mysterious Life Potion, 10 Small Mana Potion and 20 Tyr's Blessing. +11 Kachua's Secret Key are included. +-------------------------- +Weight: 0 +# +17970# +'To you who want to see a big effect for an hour!' says the box. +-------------------------- +A package containing 2 Battle Manuals, 6 Brilliant Protection Scroll, 6 Mysterious Life Potion, 1 Small Mana Potion and 2 Tyr's Blessing. +1 Kachua's Secret Key is included. +-------------------------- +Weight: 0 +# +17971# +The flatter dream life, the legendary master of the three! What it says on the box. +A box containing 200 Small Life Potions, 200 Medium Life Potions and 200 Mysterious Life Potion. +11 Kachua's Secret Key are included. +-------------------------- +Weight: 0 +# +17972# +The flatter dream life, the legendary master of the three! What it says on the box. +A box containing 20 Small Life Potions, 20 Medium Life Potions and 20 Mysterious Life Potion. +1 Kachua's Secret Key are included. +-------------------------- +Weight: 0 +# +17973# +A box containing 100 Almighty. +You can get additionally 10 of each [Event] Mystic Powder, [Event] Tyr's Blessing, [Event] Regeneration Potion! +As well 1 [Event] Toktok Candy and 1 [Event] Magic Candy are included. +-------------------------- +The ultimate dish that condenses all the foods that are said to be good for you. +All Stats +10, ATK +30, MATK +30 for 30 minutes. +-------------------------- +11 Kachua's Secret Key are included. +-------------------------- +Weight: 0 +# +17974# +A box containing 10 Almighty. +You can get additionally 1 of each [Event] Mystic Powder, [Event] Tyr's Blessing, [Event] Regeneration Potion! +-------------------------- +The ultimate dish that condenses all the foods that are said to be good for you. +All Stats +10, ATK +30, MATK +30 for 30 minutes. +-------------------------- +1 Kachua's Secret Key are included. +-------------------------- +Weight: 0 +# +17975# +A box containing 50 of Enriched Elunium and Enriched Oridecon. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +11 Kachua's Secret Key are included. +-------------------------- +Weight: 0 +# +17976# +A box containing 5 of Enriched Elunium and Enriched Oridecon. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +1 Kachua's Secret Key are included. +-------------------------- +Weight: 0 +# +17977# +A box containing 13 of HD Elunium and HD Oridecon. You can get Mental Potion 6개가 들어있다. +-------------------------- +HD Elunium - Used as a material to strengthen armor currently from Refine Levels 7 through 9. +HD Oridecon - Used as a material to strengthen weapon currently from Refine Levels 7 through 9. +- When refining an equipment with a Refine Level of +7 or higher, even if it fails, the equipment is not destroyed! However, +10 or higher is not Refined. - +(If the refining fails, the Refine Level decreases by 1.) +-------------------------- +11 Kachua's Secret Key are included. +-------------------------- +Weight: 0 +# +17978# +A box containing 13 HD Bradiums & Craniums. You can get 6 Mental Potion additionally. +-------------------------- +HD Bradium - Increases rate of refining weapons at +10 and higher. +HD Cranium - Increases rate of refining armors at +10 and higher. +- When Refine fails, equipment will not disappear or destroyed! - +(If the refining fails, the Refine Level decreases by 1.) +-------------------------- +11 Kachua's Secret Key are included. +-------------------------- +Weight: 0 +# +17979# +A box containing 100 Limited Power Booster. +-------------------------- +A booster that increases your power significantly. +-------------------------- +Increases ATK and MATK by 30, ATK and MATK by 1%, +HIT and FLEE by 30, ASPD by 1, +Decreases SP Consumption by 5%, +Decreases Fixed Casting Time by 30% +(Only the highest effect of increase/decrease percentage effect is applied to Fixed Casting Time.) +When player's character KO'd, the buff effect will wear off. +-------------------------- +11 Kachua's Secret Key are included. +-------------------------- +Weight: 0 +# +17980# +A box containing 10 Limited Power Booster. +-------------------------- +A booster that increases your power significantly. +-------------------------- +Increases ATK and MATK by 30, ATK and MATK by 1%, +HIT and FLEE by 30, ASPD by 1, +Decreases SP Consumption by 5%, +Decreases Fixed Casting Time by 30% +(Only the highest effect of increase/decrease percentage effect is applied to Fixed Casting Time.) +When player's character KO'd, the buff effect will wear off. +-------------------------- +1 Kachua's Secret Key are included. +-------------------------- +Weight: 0 +# +17981# +A box containing 100 Infinity Drink. +-------------------------- +An Infinity Drink which you can feel infinite energy from. +MaxHP +5%, MaxSP +5% for 30 minutes. +Increases critical, long range physical and Magical Damage with every element by 5%. +Casting cannot be interupted. +Item effects will also disappear when the character dies. +-------------------------- +11 Kachua's Secret Key are included. +-------------------------- +Weight: 0 +# +17982# +A box containing 10 Infinity Drink. +-------------------------- +An Infinity Drink which you can feel infinite energy from. +MaxHP +5%, MaxSP +5% for 30 minutes. +Increases critical, long range physical and Magical Damage with every element by 5%. +Casting cannot be interupted. +Item effects will also disappear when the character dies. +-------------------------- +1 Kachua's Secret Key are included. +-------------------------- +Weight: 0 +# +17983# +A box containing 1 Defense Scroll, which helps you to survive. +You can get 50 Small Mana Potion and 300 Brilliant Protection Scrolls additionally. +-------------------------- +11 Kachua's Secret Key are included. +-------------------------- +Weight: 0 +# +17984# +A box containing 1 Defense Scroll, which helps you to survive. +You can get 5 Small Mana Potion and 30 Brilliant Protection Scrolls additionally. +-------------------------- +1 Kachua's Secret Key are included. +-------------------------- +Weight: 0 +# +17985# +A box containing 50 ASPD Enhanced Potion and 100 Red Booster. You can get 11 [Event] Brilliant Protection Scroll additionally. +-------------------------- +11 Kachua's Secret Key are included. +-------------------------- +Weight: 0 +# +17986# +A box containing 5 ASPD Enhanced Potion and 10 Red Booster. You can get 1 [Event] Brilliant Protection Scroll additionally. +-------------------------- +1 Kachua's Secret Key are included. +-------------------------- +Weight: 0 +# +17999# +A voucher that can be used to expand maximum item possession limit. +[How to use guide]65 +-------------------------- +Weight: 1 +# +18000# +A consumable item to used by Mechanic and Genetic skills. +-------------------------- +Type: Cannonball +Attack: 100 +Weight: 1 +Element: Neutral +# +18001# +A consumable item to used by Mechanic and Genetic skills. +-------------------------- +Type: Cannonball +Attack: 120 +Weight: 1 +Element: Holy +# +18002# +A consumable item to used by Mechanic and Genetic skills. +-------------------------- +Type: Cannonball +Attack: 120 +Weight: 1 +Element: shadow +# +18003# +A consumable item to used by Mechanic and Genetic skills. +-------------------------- +Type: Cannonball +Attack: 120 +Weight: 1 +Element: Ghost +# +18004# +A consumable item to used by Mechanic and Genetic skills. +-------------------------- +Type: Cannonball +Attack: 250 +Weight: 1 +Element: Neutral +# +18005# +A consumable item to used by Mechanic and Genetic skills. +-------------------------- +Type: Cannonball +Attack: 120 +Weight: 0.1 +Element: Water +# +18006# +A consumable item to used by Mechanic and Genetic skills. +-------------------------- +Type: Cannonball +Attack: 120 +Weight: 0.1 +Element: Wind +# +18007# +A consumable item to used by Mechanic and Genetic skills. +-------------------------- +Type: Cannonball +Attack: 120 +Weight: 0.1 +Element: Earth +# +18008# +A consumable item to used by Mechanic and Genetic skills. +-------------------------- +Type: Cannonball +Attack: 120 +Weight: 0.1 +Element: Fire +# +18009# +A consumable item to used by Mechanic and Genetic skills. +-------------------------- +Type: Cannonball +Attack: 120 +Weight: 0.1 +Element: Poison +# +18100# +Rental Item +Beautiful bow with a graceful appearance. +-------------------------- +Increases Ranged Physical Damage by 20%. +-------------------------- +When VIP status active: +ATK +10 +MATK +10 +Random chance to auto-cast Level 2 Double Strafe when dealing physical damage. +-------------------------- +Type: Bow +Attack: 190 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Hunter, Bard and Dancer +# +18101# +Rental Item +A bow imbued with the sacred essense of Rudra, one of the ancient gods. +-------------------------- +INT +5 +-------------------------- +Adds 50% tolerance to the Poison, Curse, Silence, Confuse and Blind statuses. +-------------------------- +Enables the use of Level 1 Heal and Level 1 Cure. +-------------------------- +Type: Bow +Attack: 185 +Weight: 0 +Element: Holy +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Archer and Rogue +# +18103# +A small bow with magical powers. +-------------------------- +INT +4 +MATK +100 +-------------------------- +Decreases SP Consumption of Severe Rainstorm by 10. +-------------------------- +Type: Bow +Attack: 75 +Weight: 170 +Weapon Level: 3 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 105 +Ranger, Wanderer and Minstrel +# +18106# +A rich bow made by the Eden Group. It is suitable for advanced Level adventurers who know how to handle a bow. +-------------------------- +Type: Bow +Attack: 140 +Weight: 0 +Weapon Level: 3 +Refineable: No +Can be enchanted by: +Weapons Expert BKmoc_para01,112,79,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Archer, Thief and Rogue +# +18107# +Rental Item +Crabs usually, live in sand or mud but this is used as a bow for some odd reason. +-------------------------- +LUK +3 +Increases Critical Damage by 50%. +-------------------------- +Base Level at least 100: +Increases Ranged Physical Damage by 20% +-------------------------- +Type: Bow +Attack: 120 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Archer, Thief and Rogue +# +18108# +Rental Item +Spotty eel that appeared on Malangdo beach. It is always elastic and trying to straighten itself. That is why we can use it as an arrow. +-------------------------- +AGI +3 +-------------------------- +Random chance to increase ASPD by 2 for 5 seconds when dealing physical damage. +-------------------------- +Base Level at least 100: +Increases Ranged Physical Damage by 20% +-------------------------- +Type: Bow +Attack: 180 +Weight: 0 +Weapon Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Hunter, Bard and Dancer +# +18109# +A bow developed by thief guild, especially made to fire multiple arrows at a time. +-------------------------- +Increases damage of Triangle Shot by (2*Refine Level)%. +Increases SP Consumption of Triangle Shot based on Refine Level. +-------------------------- +Type: Bow +Attack: 150 +Weight: 110 +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +18110# +A very sensitive bow to use and it is specialized on fusillade. +-------------------------- +Increases damage of Arrow Storm by (Refine Level*5)%. +-------------------------- +Increases SP Consumption by (Refine Level*5)%. +-------------------------- +Base AGI at least 120: +ASPD +1 +-------------------------- +Type: Bow +Attack: 160 +Weight: 90 +Weapon Level: 4 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 110 +Ranger +# +18111# +A bow made with a strong stem from the devildom. By using spider web arrow, it ties enemies. +-------------------------- +DEX +1 +-------------------------- +When using physical attacks, it has a chance to auto-cast Level 1 Spider Web with a certain rate. +-------------------------- +Type: Bow +Attack: 150 +Weight: 150 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 120 +Ranger, Minstrel and Wanderer +# +18112# +Bow that is coated by Oridecon and Gold with perfect Level. +-------------------------- +When equipped by Hunter classes: +ATK +20 +-------------------------- +For each Refine Level: +ATK +7 +Increases Ranged Physical Damage by 2%. +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Bow +Attack: 60 +Weight: 60 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Archer +# +18113# +*Effects in WoE & PVP area +Decreases target's SP by 4% on each physical attack. (This effect does not work with skills) +ASPD -5 +-------------------------- +Type: Bow +Attack: 50 +Weight: 110 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 95 +Archer, Thief and Rogue +# +18114# +*Effects in WoE & PVP area +Increases Physical Damage against Players by 30% while bypassing 30% physical defense. +-------------------------- +For each Refine Level: +Increases Physical Damage against Players by additional 1%. +-------------------------- +Type: Bow +Attack: 110 +Weight: 110 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 95 +Archer, Thief and Rogue +# +18115# +A large, powerful bow used by Orc Archers. +-------------------------- +Random chance a defeated monster will drop Steel Arrow. +-------------------------- +When equipped with Steel Arrow: +Increases Ranged Physical Damage by 10%. +-------------------------- +Type: Bow +Attack: 120 +Weight: 160 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 65 +Archer and Rogue +# +18116# +Bow coated with metal +-------------------------- +Type: Bow +Attack: 100 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Archer +# +18117# +Heirloom bow of a royal family, has a sense of magic. +-------------------------- +When equipped with Cursed Arrow: +Increases Ranged Physical Damage by 10%. +When equipped with Deviace Card: +Increases Physical Damage on Demi-Human race by (2*Refine Level)%. +-------------------------- +When equipped with Sleep Arrow: +Increases Ranged Physical Damage by 10%. +When equipped with Deviace Card: +Increases Physical Damage on Brute race by (2*Refine Level)%. +-------------------------- +When equipped with Silence Arrow: +Increases Ranged Physical Damage by 10%. +When equipped with Deviace Card: +Increases Physical Damage on Insect race by (2*Refine Level)%. +-------------------------- +When equipped with Flash Arrow: +Increases Ranged Physical Damage by 10%. +When equipped with Deviace Card: +Increases Physical Damage on Plant race by (2*Refine Level)%. +-------------------------- +Type: Bow +Attack: 80 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 105 +Ranger, Minstrel, Wanderer and Shadow Chaser +# +18118# +Rental Item +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Random chance to inflict Curse status when dealing physical damage. +-------------------------- +Type: Bow +Attack: 120 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Archer, Thief and Rogue +# +18119# +A bow sculpted from Gray Shard to counter Magic Sword Tartanos. +It offers incredible power and magic at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +110 +-------------------------- +Has low chance to drain 5% of damage inflicted into HP and SP. +-------------------------- +Drains 100 HP every 10 second. +Drains 1000 HP when unequipped. +-------------------------- +Type: Bow +Attack: 180 +Weight: 130 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Ranger, Minstrel and Wanderer +# +18120# +This bow was once used for vanquishing an evil and his followers. +-------------------------- +Increases Physical Damage against enemies of Demon and Undead race by 10%. +-------------------------- +Refine Level +9: +ATK +5% +Refine Level +12: +ATK +7% +-------------------------- +Type: Bow +Attack: 115 +Weight: 135 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Ranger, Minstrel, Wanderer and Shadow Chaser +# +18121# +Bow imbued with Vicious Mind. +-------------------------- +Increases ATK by (Refinelv*Refinelv). +(up to +15 Refine Level) +-------------------------- +Type: Bow +Attack: 170 +Weight: 170 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 160 +Ranger, Minstrel, Wanderer and Shadow Chaser +# +18122# +An oversized bow with slow shooting speed and poor accuracy, but powerful enough to kill its victims at once. +-------------------------- +HIT -50 +-------------------------- +Increases Ranged Physical Damage by 40%. +-------------------------- +Increases After Attack Delay by 15%. +-------------------------- +Type: Bow +Attack: 195 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Ranger +# +18123# +A bow that has a shape of storm. +-------------------------- +Increases Ranged Physical Damage by 30%. +-------------------------- +Decreases Severe Rainstorm skill cooldown by 2 seconds. +-------------------------- +Increases SP Consumption of Severe Rainstorm by 15. +-------------------------- +Type: Bow +Attack: 160 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Ranger, Minstrel and Wanderer +# +18125# +An infernal bow from hell. Only true demons are able control it's full power. People say that a Prince from Hell used this weapon for his army. +-------------------------- +When equipped with Arrow of Shadow: +Increases attack damage +50%. +-------------------------- +Refine Level +9: +ASPD +1 +Decreases SP Consumption by 20%. +-------------------------- +Type: Bow +Attack: 130 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Archer and Rogue +# +18126# +Blue Bow which has destructive power. +-------------------------- +AGI +5 +DEX +5 +-------------------------- +When VIP status active: +ASPD +3 +Increases Ranged Physical Damage by 20%. +-------------------------- +Type: Bow +Attack: 170 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Ranger +# +18127# +Blue golden which has destructive power. +-------------------------- +AGI +8 +DEX +8 +-------------------------- +Type: Bow +Attack: 150 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 120 +Ranger +# +18128# +This weapon contains a strange energy. +I feel that one of its benefits were sealed with a high cost. +-------------------------- +Type: Bow +Attack: 160 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Archer, Thief and Rogue +# +18129# +A beautiful bow shaped as a pair of pure white wings. +-------------------------- +Has a chance of reducing After Attack Delay by 7% for 7 seconds with low probability when attacking. +Activation probability increases according to Refine Level. +-------------------------- +Type: Bow +Attack: 135 +Weight: 30 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 70 +Sniper +# +18130# +Bow that emitting red aura. +-------------------------- +ATK increased by (RefineLv*RefineLv), up to +15 Refine Level. +-------------------------- +Base Level at least 70:Per 10 BaseLevel,ATK +5. +-------------------------- +Type: Bow +Attack: 120 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Archer, Thief and Rogue +# +18131# +A bow that was acquired from defeating the demon god and it's followers. +-------------------------- +Refine Level +5: +Increases Damage against Demon Morocc monsters by 40%. +Decreases damage taken from Demon Morocc monsters by 10%. +-------------------------- +Refine Level +7: +Increases Damage against Demon Morocc monsters by additional 60%. +Decreases damage taken from Demon Morocc monsters by additional 20%. +-------------------------- +Refine Level +9: +Increases Damage against Demon Morocc monsters by additional 80%. +Decreases damage taken from Demon Morocc monsters by additional 40%. +-------------------------- +Type: Bow +Attack: 115 +Weight: 135 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Archer and Rogue +# +18132# +A certified kingdom equipment for adventurer. +-------------------------- +Increases ATK by (Refine*Refine*1.25) +-------------------------- +Type: Bow +Attack: 114 +Weight: 60 +Weapon Level: 3 +-------------------------- +Requirement: +Archer and Rogue +# +18133# +A bow with the power of lightning. +It is said that the original performance can be exhibited by regaining the power of the wind. +-------------------------- +Grants arrows the Wind element for 180 minutes. +-------------------------- +Increases Physical Damage against enemies of Fish race by 15%. +Increases Physical Damage against enemies of Water elemental by 15%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Fish race by additional 10%. +Increases Physical Damage against enemies of Water elemental by additional 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Fish race by additional 15%. +Increases Physical Damage against enemies of Water elemental by additional 15%. +-------------------------- +When equipped with Thunder Ring: +Increases Damage against monsters of Fish race by additional 20%. +Increases Damage against Water elemental by additional 20%. +-------------------------- +Type: Bow +Attack: 120 +Weight: 150 +Element: Wind +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Archer, Thief and Rogue +# +18134# +A replica made based on the hunting bow. +Perhaps because it is an incomplete replica, the shape as a weapon will collapse after a certain period of time. +-------------------------- +Grants arrows the Fire element for 180 minutes. +-------------------------- +Increases Physical Damage against enemies of Insect and Demi-Human race, except ^FF000Players, by 15%. +Increases Physical Damage against enemies of Water and Earth elemental by 15%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Insect and Demi-Human race, except ^FF000Players, by additional 10%. +Increases Physical Damage against enemies of Water and Earth elemental by additional 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Insect and Demi-Human race, except ^FF000Players, by additional 15%. +Increases Physical Damage against enemies of Water and Earth elemental by additional 15%. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Bow +Attack: 120 +Weight: 0 +Element: Fire +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Archer, Thief and Rogue +# +18135# +Equipment designed to survive on Malangdo Island. +An excellent product that can perform Maran enchantments and sell at unexpectedly high prices. +-------------------------- +Increases Damage against monsters in Malangdo Culvert and Octopus Cave by 50%. +Decreases damage taken from Malangdo Culvert and Octopus Cave monsters by 30%. +-------------------------- +Type: Bow +Attack: 115 +Weight: 135 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Archer and Rogue +# +18136# +A bow given by the king. +It seems to have the effect of calming the souls of the dead. +-------------------------- +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by 40%. +-------------------------- +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by 5%. +-------------------------- +Refine Level +5: +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by additional 20%. +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by additional 5%. +-------------------------- +For each Refine Level equal or above +6: +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by additional 15%. +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by additional 1% +-------------------------- +Indestructible in battle +-------------------------- +Type: Bow +Attack: 100 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Archer classes and Shadow Chaser +# +18137# +A flaming bow that seems dangerous to grasp. +-------------------------- +Decreases damage taken from Fire elemental attacks by 10%. +-------------------------- +When equipped with Fire Arrow: +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Elemental Crown: +Increases Ranged Physical Damage by 45%. +-------------------------- +When equipped with Elemental Suit and Fire Arrow: +Increases Ranged Physical Damage by 20%. +Increases damage taken from Fire elemental attacks by 10%. +When Burning Bow Refined to +10: +ASPD +1 +-------------------------- +Type: Bow +Attack: 95 +Weight: 140 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Archer and Rogue +# +18138# +A frozen bow whose drawstring seems too solid to be pulled. +-------------------------- +Random chance to inflict Frozen status to target attacking. +-------------------------- +When equipped with Crystal Arrow: +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Elemental Crown: +Increases Ranged Physical Damage by 45%. +-------------------------- +When equipped with Elemental Suit and Crystal Arrow: +Increases Ranged Physical Damage by 20%. +Disables bow's ability of inflicting Freeze. +When Frozen Bow Refined to +10: +ASPD +1 +-------------------------- +Type: Bow +Attack: 100 +Weight: 140 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Archer and Rogue +# +18139# +A bow that is perfectly balanced in every aspect. +-------------------------- +Random chance to inflict Blind status to target attacking. +-------------------------- +When equipped with Stone Arrow: +Increases Ranged Physical Damage by 10%. +Random chance to inflict Stone Curse status on the target when dealing physical damage. +-------------------------- +When equipped with Elemental Crown: +Increases Ranged Physical Damage by 45%. +-------------------------- +When equipped with Elemental Suit and Stone Arrow: +Increases Ranged Physical Damage by 20%. +Disables bow's ability of inflicting Blind. +When Earth Bow Refined to +10: +ASPD +1 +-------------------------- +Type: Bow +Attack: 105 +Weight: 140 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Archer and Rogue +# +18140# +A light bow that has been enhanced with the power of whirlwinds. +-------------------------- +When equipped with Arrow of Wind: +Increases Ranged Physical Damage by 10%. +Random chance to auto-cast Level 5 Wind Blade when dealing physical damage. +The chance is increased when the wearer's INT is 40 or greater. +-------------------------- +When equipped with Elemental Crown: +Increases Ranged Physical Damage by 45%. +-------------------------- +When equipped with Elemental Suit and Arrow of Wind: +Increases Ranged Physical Damage by 20%. +Disables bow's ability to auto-cast Level 5 Wind Blade. +When Gust Bow Refined to +10: +ASPD +1 +-------------------------- +Type: Bow +Attack: 95 +Weight: 140 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 55 +Archer and Rogue +# +18141# +A metallic Bow made of oridecon created for experienced adventurers. +-------------------------- +Increases damage of Severe Rainstorm and Arrow Storm by 10%. +-------------------------- +For each Refine Level: +ATK +5 +Increases anged physical damage by 2%. +-------------------------- +For each 10 Base Level: +ATK +6 (Applies up to Base Level 150) +-------------------------- +When equipped by Hunter: +ATK +15 +-------------------------- +Type: Bow +Attack: 75 +Weight: 0 +Weapon Level: 3 +Enchantable: Yes +Enchanter: [Jumping Enchant Specialist]prontera,151,187,0,100,0,0 +-------------------------- +Requirement: +Base Level 100 +Ranger, Minstrel and Wanderer +# +18142# +A bow with the power of the earth. +It is said that the original performance can be exhibited by regaining the power of \ +. +-------------------------- +Grants arrows the Earth element for 180 minutes. +-------------------------- +Increases Physical Damage against enemies of Brute and Plant race by 15%. +Increases Physical Damage against enemies of Wind and Earth elemental by 15%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Brute and Plant race by additional 10%. +Increases Physical Damage against enemies of Wind and Earth elemental by additional 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Brute and Plant race by additional 15%. +Increases Physical Damage against enemies of Wind and Earth elemental by additional 15%. +-------------------------- +When equipped with Warrior Ring: +Increases Damage against monsters of Brute and Plant race by additional 20%. +Increases Damage against Wind and Earth elemental by additional 20%. +-------------------------- +Type: Bow +Attack: 120 +Weight: 150 +Element: Earth +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Archer, Thief and Rogue +# +18143# +A Hunter Bow forged from the regrets of people whose died in battlefield. +-------------------------- +Increases Physical Damage against monsters of Demi-Human race by 30%. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +For each Refine Level: +Increases Critical Damage by 2%. +-------------------------- +Refine Level +5: +Increases Physical Damage against monsters of Demi-Human race by 20%. +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Refine Level +7: +Increases Physical Damage against monsters of Demi-Human race by 20%. +Decreases damage taken from Demi-Human race by 10%. +Level 1 Slaughter. +-------------------------- +Refine Level +9: +Increases damage of Arrow Storm and Severe Rainstorm by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Bow +Attack: 170 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Ranger, Minstrel, Wanderer and Shadow Chaser +# +18144# +A bow with the power of water. +It is said that the original performance can be exhibited by regaining the power of \ +. +-------------------------- +Grants arrows the Water element for 180 minutes. +-------------------------- +Increases Physical Damage against enemies of all monsters except Demon race by 10%. +Increases Physical Damage against enemies of Fire elemental by 15%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of all monsters except Demon race by additional 10%. +Increases Physical Damage against enemies of Fire elemental by additional 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all monsters except Demon race by additional 15%. +Increases Physical Damage against enemies of Fire elemental by additional 15%. +-------------------------- +Type: Bow +Attack: 120 +Weight: 150 +Element: Water +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Archer, Thief and Rogue +# +18145# +A Vigilante Bow that used to prevent criminal in the past. +-------------------------- +For each 20 base DEX: +Increases Bow class weapon damage by 5%. +-------------------------- +Refine Level +7: +Increases Bow class weapon damage by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Double Strafing by 50%. +-------------------------- +Type: Bow +Attack: 140 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +18146# +A weapon of unknown origin that contains the magic of the labyrinth. +It is unclear what kind of material it is made from, and even similar weapons have different performance. +-------------------------- +MATK +170 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When equipped with Labyrinth Baphomet Card: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Type: Bow +Attack: 160 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +3rd Archer classes and Shadow Chaser +# +18147# +A Diva Wing that has mutated under the influence of the power of the labyrinth. +It is unclear what kind of material it is made from, and even similar weapons have different performance. +-------------------------- +MATK +170 +-------------------------- +For each Level of Vulture's Eye: +Perfect HIT +2 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: Bow +Attack: 160 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +3rd Archer classes and Shadow Chaser +# +18148# +A bow full of wickedness. +-------------------------- +For each Refine Level: +ATK +1 +-------------------------- +Type: Bow +Attack: 100 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser and 3rd Archer classes +# +18149# +A giant bow which was used in the ancient battles. It is been said, the bow was designed to storm through fortress walls and gates, but now it is reduced in size and damage, perhaps for a remodel. +-------------------------- +For each Refine Level: +Increases long range physical attack by 1%. +-------------------------- +When equipped with Illusion Apple of Archer: +ATK +50, +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level of Illusion Ballista and Illusion Apple of Archer each is +7 or higher: +Increases damage of Arrow Storm by 20%. +-------------------------- +Total Refine Level of entire set at least +18: +ATK +10% +-------------------------- +Total Refine Level of entire set at least +22: +Increases damage of Arrow Storm damage by additional 30%. +-------------------------- +Type: Bow +Attack: 200 +Weight: 350 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +3rd Archer classes +# +18150# +A crossbow for Rangers which are more or less familiar with bow handling. +When equipped with Enhanced Time Keeper Armor, will makes wearer's body more agile. +-------------------------- +Increases damage of Arrow Storm by 20%. +-------------------------- +For every 10 Base Level: +ATK +6 (Up to Base Level 160). +-------------------------- +Refine Level +7: +For each Level of Beatbane: +Increases Ranged Physical Damage by 1%. +-------------------------- +When equipped with Enhanced Timer Keeper Hat, +Enhanced Time Keeper Robe, +Enhanced Timer Keeper Manteau, +and Enhanced Time Keeper Boots: +ASPD +2 +MaxHP and MaxSP +10% + +For each 10 base VIT: +Decreases damage from Neutral elemental attacks by 3%. +(Up to 100 base VIT) + +For each 10 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +(Up to 100 base AGI) + +For each 10 base DEX: +HIT +3 (Up to 100 base DEX) + +For each 10 base LUK: +Critical +3 (Up to 100 base LUK) +-------------------------- +Type: Bow +Attack: 180 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Ranger +# +18151# +A bow for Wanderers and Minstrels which are more or less familiar with bow handling. +When equipped with Enhanced Time Keeper Armor, will makes wearer's body more agile. +-------------------------- +Increases damage of Severe Rainstorm by 20%. +-------------------------- +For every 10 Base Level: +ATK +6 (Up to Base Level 160). +-------------------------- +Refine Level +7: +For each Level of Dancing Lesson/Music Lesson: +Increases Ranged Physical Damage by 1%. +-------------------------- +When equipped with Enhanced Timer Keeper Hat, +Enhanced Time Keeper Robe, +Enhanced Timer Keeper Manteau, +and Enhanced Time Keeper Boots: +ASPD +2 +MaxHP and MaxSP +10% + +For each 10 base VIT: +Decreases damage from Neutral elemental attacks by 3%. +(Up to 100 base VIT) + +For each 10 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +(Up to 100 base AGI) + +For each 10 base DEX: +HIT +3 (Up to 100 base DEX) + +For each 10 base LUK: +Critical +3 (Up to 100 base LUK) +-------------------------- +Type: Bow +Attack: 160 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Minstrel & Wanderer +# +18152# +A bow with the power of fire. +It is said that the original performance can be exhibited by regaining the power of \ +... +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Insect and Demi-Human race, except Players, by 10%. +Increases Physical Damage against enemies of Water and Earth elemental by 10%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Insect and Demi-Human race, except Players, by additional 15%. +Increases Physical Damage against enemies of Water and Earth elemental by additional 15%. +-------------------------- +Type: Bow +Attack: 120 +Weight: 150 +Element: Fire +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Archer, Thief and Rogue classes +# +18153# +A thief bow with the strength to hold the power of Nive. +-------------------------- +MATK +180 +-------------------------- +Base Level at least 175: +ATK +5%, MATK +5% +-------------------------- +When equipped with Neev Barrette: +For each 10 base STR: +ATK +1%. + +For each 10 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 1%). + +For each 10 base VIT: +MaxHP +1% + +For each 10 base INT: +MATK +20 + +For each 10 base DEX: +Decreases Variable Casting Time by 1%. + +For each 10 base LUK: +Critical +1 + +For each Refine Level of Neev Thief Bow: +ATK +20, MATK +20 +-------------------------- +Type: Bow +Attack: 170 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Shadow Chaser +# +18154# +A hunter bow with the strength to hold the power of Nive. +-------------------------- +MATK +170 +-------------------------- +Base Level at least 175: +ATK +5%, MATK +5% +-------------------------- +When equipped with Neev Barrette: +For each 10 base STR: +ATK +1%. + +For each 10 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 1%). + +For each 10 base VIT: +MaxHP +1% + +For each 10 base INT: +MATK +20 + +For each 10 base DEX: +Decreases Variable Casting Time by 1%. + +For each 10 base LUK: +Critical +1 + +For each Refine Level of Neev Hunter Bow: +ATK +20, MATK +20 +-------------------------- +Type: Bow +Attack: 160 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Ranger +# +18155# +A crossbow with the strength to hold the power of Nive. +-------------------------- +MATK +170 +-------------------------- +Base Level at least 175: +ATK +5%, MATK +5% +-------------------------- +When equipped with Neev Barrette: +For each 10 base STR: +ATK +1%. + +For each 10 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 1%). + +For each 10 base VIT: +MaxHP +1% + +For each 10 base INT: +MATK +20 + +For each 10 base DEX: +Decreases Variable Casting Time by 1%. + +For each 10 base LUK: +Critical +1 + +For each Refine Level of Neev Hunter Bow: +ATK +20, MATK +20 +-------------------------- +Type: Bow +Attack: 180 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Minstrel & Wanderer +# +18163# +The bow of the vigilante who was working to protect the security of the town. +-------------------------- +MATK +170 +-------------------------- +Reflects 5% of the damage recieved from melee physical attacks. +-------------------------- +For each 10 base INT: +AGI +1 +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Refine Level +9: +FLEE +50 +-------------------------- +When equipped with Frontier Boots: +Prevents Bleeding and Sleep status. + +Refine Level of Frontier Boots is +7 or higher: +For each 40 base INT: +AGI +6 +Increases Attack Speed (Decreases After Attack Delay by 6%). + +Base INT at least 120: +FLEE +100 +Increases damage of Severe Rainstorm and Triangle Shot by 50%. +-------------------------- +Type: Bow +Attack: 140 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 130 +3rd Archer classes and Shadow Chaser +# +18164# +An ancient hero's bow, handed down from the now forgotten royal family. +Looks ancient but it contains hidden magic power and resonate with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Arrow Storm by 12%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase DEX by 20 and Bow class weapon damage by 20% for 7 seconds when dealing physical damage. +-------------------------- +Type: Bow +Attack: 180 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Ranger and Shadow Chaser +# +18165# +Bow specially made for beginner ranger. +It will show it's true ability when equipped together with Beginner Armor set. +-------------------------- +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +7: +Increases damage of Arrow Storm by 15%. +-------------------------- +When equipped with Beginner's Hat +Beginner's Suit, Beginner's Manteau +Beginner's Boots and Beginner's Ring: +For each 10 Base Level: +ATK +3 (up to Base Level 150) +ATK +2% +Increases Ranged Physical Damage by additional 5%. +-------------------------- +Type: Bow +Attack: 170 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Ranger +# +18166# +Bow specially made for beginner performer. +It will show it's true ability when equipped together with Beginner Armor set. +-------------------------- +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +7: +Increases damage of Severe Rainstorm by 15%. +-------------------------- +When equipped with Beginner's Hat +Beginner's Suit, Beginner's Manteau +Beginner's Boots and Beginner's Ring: +For each 10 Base Level: +ATK +3 (up to Base Level 150) +Decreases Variable Casting Time by 10%. +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Bow +Attack: 170 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Wanderer and Minstrel +# +18170# +A bow that contains the history of ancient war hero. +It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +9: +Increases damage of Severe Rainstorm by 10%. +-------------------------- +Refine Level +11: +Decreases Severe Rainstorm skill cooldown by 2 seconds. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase DEX by 20 and Bow class weapon damage by 20% for 7 sec when dealing physical damage. +-------------------------- +Type: Bow +Attack: 180 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +3rd Archer classes and Shadow Chaser +# +18171# +A bow received from suspicious weapon dealer Brute. +-------------------------- +Increases Physical Damage against Players by 50%. +-------------------------- +Decreases damage taken from Players by 30%. +-------------------------- +For each Refine Level: +Ignores physical defense of every race by 5%. +-------------------------- +Refine Level +8: +Increases Physical Damage against Players by additional 35%. +-------------------------- +Refine Level +9: +Increases Physical Damage against Players by additional 20%. +-------------------------- +Refine Level +10: +MaxHP +15% +MaxSP +15% +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's and moved to the storage. +-------------------------- +Type: Bow +Attack: 160 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +3rd Archer classes and Shadow Chaser +# +18174# +It is said to be mainly used by hunters, but it is difficult to use, but when used, precise shooting and destructive damage are enough to crush the user. +-------------------------- +When equipped with Hunting Arrow: +Increases Ranged Physical Damage by 10%. +-------------------------- +For each Refine Level: +Critical +1. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases Critical Damage by 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage gainst Insect and Brute race by 30%. +-------------------------- +When equipped with Illusion Boots: +ATK +10% +-------------------------- +Refine Level of Illusion Hunter Bow and Illusion Boots each is +7 or higher: +ASPD +2 +-------------------------- +Total Refine Level of entire set at least +18: +Increases Critical Damage by 10%. +-------------------------- +Total Refine Level of entire set at least +22: +Long range physical attacks have a chance to activate Hunter's Sight for 10 seconds. +-------------------------- +[Hunter's Sight]: +ATK +100 +Increases Critical Damage by 15%. +Increases Physical Damage gainst Insect and Brute race by 50%. +-------------------------- +Type: Bow +Attack: 165 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Ranger +# +18177# +A weapon that has been mutated in response to the magical power of a stranger. +Even if they look the same, the performance is different. +-------------------------- +MATK +170 +-------------------------- +Decreases damage taken from Players by 30%. +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Bow +Attack: 160 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +3rd Archer classes and Shadow Chaser +# +18178# +A bow without a string. +Trying to pull it will draw a glow of string. +-------------------------- +ATK +3% +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +9: +Increases damage of Arrow Storm by 30%. +-------------------------- +Refine Level +11: +Increases damage of Arrow Storm by additional 20%. +-------------------------- +Type: Bow +Attack: 200 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Ranger +# +18179# +Crossbow with prototype number 89 stamped on its body. +You can tell the power by the number on the dashboard after you shoot the bow. +-------------------------- +ATK +3% +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +9: +Decreases Severe Rainstorm skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Severe Rainstorm by 15%. +-------------------------- +Type: Bow +Attack: 170 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Minstrel and Wanderer +# +18180# +High strength bow made of fused carbon. +-------------------------- +MATK +135. +-------------------------- +Increases bow weapon damage by 5%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases damage of Triangle Shot by 15%. +-------------------------- +Refine Level +11: +Increases bow weapon damage by additional 10%. +-------------------------- +Type: Bow +Attack: 190 +Weight: 60 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Shadow Chaser +# +18182# +The bow of an ancient hero from the now forgotten royal family. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Arrow Storm by 12%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Bow +Attack: 180 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 99 +Ranger and Shadow Chaser +# +18183# +A bow that contains the history of ancient war hero. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +Increases damage of Severe Rainstorm by 10%. +-------------------------- +Refine Level +9: +Decreases Severe Rainstorm skill cooldown by 2 seconds. +-------------------------- +Type: Bow +Attack: 180 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 99 +3rd Archer classes and Shadow Chaser +# +18184# +Crossbow designed to shoot arrows quickly and hard. +-------------------------- +Increased Ranged Physical Damage by 10%. +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Increases damage of Triangle Shot by 20%. +-------------------------- +Refine Level +11: +Increases damage of Triangle Shot by additional 15%. +-------------------------- +Type: Bow +Attack: 185 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Shadow Chaser +# +18185# +Glossy red light bow. +-------------------------- +Critical +5 +-------------------------- +For each Refine Level: +Increases Critical Damage by 1%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +11: +Increases damage of Sharp Shooting by 10%. +-------------------------- +Type: Bow +Attack: 150 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Ranger +# +18186# +It's a bow that's made of a very resilient material. +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +For each Refine Level: +Decreases After Skill Delay by 1%. +-------------------------- +Refine Level +9: +Increases damage of Aimed Bolt by 30%. +-------------------------- +Refine Level +11: +Decreases Aimed Bolt skill cooldown by 1 second. +Increases damage of Aimed Bolt by additional 15%. +-------------------------- +Type: Bow +Attack: 210 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Ranger +# +18187# +A bow designed to lightly and quickly shoot multiple arrows. +-------------------------- +Increases Ranged Physical Damage by 10%. +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Increases damage of Arrow Storm by 25%. +-------------------------- +Refine Level +11: +Decreases Arrow Storm skill cooldown by 0.7 seconds. +-------------------------- +Type: Bow +Attack: 210 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Ranger +# +18188# +A bow which causes a strong wind like a storm. +-------------------------- +Increases Ranged Physical Damage by 10%. +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by additional 1%. +-------------------------- +Refine Level +9: +Increases damage of Severe Rainstorm by 30%. +-------------------------- +Refine Level +11: +Decreases Severe Rainstorm skill cooldown by 2 seconds. +-------------------------- +Type: Bow +Attack: 200 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Minstrel and Wanderer +# +18190# +It was modified to launch other objects +than the nails used to in the Einbech mine. +-------------------------- +ATK +10% +Increases damage of Aimed Bolt by 10%. +-------------------------- +Refine Level +7: +ATK +60 +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Aimed Bolt by additional 15%. +Physical attacks have a chance to increase physical damage against all size enemies by 15% for 10 seconds. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 20%. +-------------------------- +Type: Bow +Attack: 210 +Weight: 170 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Ranger +# +18191# +A ceremonial bow used by the Glastheim Guards. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +Increases Ranged Physical Damage by 15% +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Increases damage of Triangle Shot by 20%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +ATK +30 +Physical attacks have a chance to increase Ranged Physical Damage by additional 10% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Physical Damage against enemies of Holy and Undead elemental by 20%. +-------------------------- +Type: Bow +Attack: 180 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Shadow Chaser +# +18198# +A bow used by the Glastheim Soldiers. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +Increases Ranged Physical Damage by 15%. +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Increases damage of Aimed Bolt by 20%. +Decreases After Skill Delay by 12%. +-------------------------- +Refine Level +11: +Decreases Aimed Bolt skill cooldown by 1 second. +Increases Physical Damage against enemies of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +ATK +30 +Physical attacks have a chance to increase Ranged Physical Damage by additional 10% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Physical Damage against enemies of Holy and Undead elemental by 20%. +-------------------------- +Type: Bow +Attack: 190 +Weight: 170 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Ranger +# +18500# +Rental Item +Passionate red scarf. +-------------------------- +Increases experience gained from defeating monsters by 60%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18501# +Rental Item +Passionate red scarf. +-------------------------- +Increases experience gained from defeating monsters by 80%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18502# +Rental Item +Passionate red scarf. +-------------------------- +Increases experience gained from defeating monsters by 100%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18503# +The horns imbued with full of Devil Spirit. Feels so tight and harsh. +-------------------------- +MaxHP +10% +MaxSP +10% +MATK +5% +ATK +5% +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18504# +A hat designed after Anubis, the God of Death. It seems to belong to people who made mummies. +-------------------------- +Decreases DEF and MDef by 50%. +-------------------------- +Random chance to inflict Stone Curse status to enemies in a 11*11 cell area when you are taking physical or magical attack. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper, Middle, Lower +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +18505# +An accessory which is traditionally used in piercings by the Umbala tribespeople. +-------------------------- +MaxHP +1% +-------------------------- +Increases the recovery rate of 'Meat' by 25%. +-------------------------- +Has a chance of dropping 'Meat' when defeating monsters. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18506# +A traditional headdress typically worn by Arab men. +-------------------------- +MaxHP +10% +MaxSP +10% +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle, Lower +Weight: 400 +Armor Level: 1 +-------------------------- +Requirement: None +# +18507# +A fashion accessory that gives ears that vaunted, elvish look. For some, it is an incredible turn-on. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +18508# +A hat which is very unique and rare, made from the feathers of a legendary bird Garuda. +-------------------------- +LUK +5 +HIT +10 +MDEF +3 +-------------------------- +Reduces the global delay of skills by 5%. +-------------------------- +Reduces damage taken from All property attacks by 5%. +-------------------------- +If upgrade level is +7 or higher: +Adds a chance of gaining [Gift] Mastela Fruit when a monster is killed; +Adds an additional 1% chance per upgrade level of the item +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +Tier: 6 +-------------------------- +Requirement: +Base Level 30 +All Jobs +# +18509# +A special cap with a neon sign above, dedicated to celebrate RWC 2010 in Indonesia. +-------------------------- +LUK +5 +ASPD +1 +ATK +3%, MATK +3% +Critical +10 +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Increases recovery amount gained from Red Potion and White Potion by 100%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 15 +All Jobs except Novice +# +18510# +The bloodstained wings of a fallen angel. +-------------------------- +Decreases 10% damage from Demi-Human race. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 60 +# +18511# +The bloodstained feathers of a fallen angel. +-------------------------- +When equipped with Bloody Angel Wings: +Increases damage to Angels by 3%. +MaxHP +2%, MaxSP +1% +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 60 +# +18512# +Have a good drink and have a good mood! +However, be careful when drinking too much. +-------------------------- +Decreases After Skill Delay by 3% +-------------------------- +When equipped with Blush: +MDEF +5 +Every 10 seconds HP -10 and SP -5 +Refine Level +7: +Decreases After Skill Delay by additionally by -4% +Refine Level +9: +Decreases After Skill Delay by additionally by -5% +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18513# +The sunflower light and glitter is to come out. +-------------------------- +LUK +2 +-------------------------- +When receives physical attack, chance to auto-cast Level 1 Endure. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18514# +A hat that is provided only for members of the Eden Group. It's designed to go well with a suit. +-------------------------- +Has a chance of adding 10 ATK or 10 MATK power for 5 seconds while doing physical or magical attack. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 0 +Can be enchanted by: +Blacksmith Thornmoc_para01,111,83,0,100,0,0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +18515# +A headgear for the winner of the RTC event. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18516# +A headgear for the 2nd place winner of the RTC event. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18517# +A headgear for the 3rd place winner of the RTC event. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18518# +An ear accessory that looks just like white, beautiful angel wings. +-------------------------- +STR +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +18519# +An ear accessory made with Evil Wing. +-------------------------- +STR +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +18520# +A crown that only the person who receives the tribal honor of the Jaty Tribe can wear. +-------------------------- +Decreases damage taken from Brute and Plant race by 5%. +Increases Physical Damage against enemies of Brute and Plant race by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18521# +A rare four leaf clover.each leaves symbolize Hope, Sincerity, Love and Luck. +-------------------------- +LUK +1 +MaxSP +20 +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +18522# +A dark marching hat worn by members of an undead band from Niffleheim. +-------------------------- +STR +2 +MDEF +1 +ATK +2% +-------------------------- +Refine Level +7: +Increases Critical Damage by 10%. +-------------------------- +Refine Level +9: +ATK +5% +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +18523# +A small thundercloud, always shooting out lightning. +-------------------------- +Random chance to auto-cast Level 5 Lightning Bolt or Level 5 Thunder Storm when dealing physical damage. +If you have acquired a higher Level of these skills, it will cast the skill at that Level instead. +The Level of your Lightning Bolt and Thunder Storm will Increases the probability of casting. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +18524# +A mask more by people whose worshiped Demon god in the past. +-------------------------- +Increases Damage against monsters of Angel race by 5%. +-------------------------- +Random chance to inflict Silence status on wearer when receives physical attack. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle, Lower +Weight: 70 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +18525# +Leftover piece of watermelon, scraped clean. +-------------------------- +VIT +1, LUK +1 +MDEF +4 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18526# +Rental Item +Lollipop with mysterious power. +-------------------------- +ATK +5 +MATK +5 +ASPD +1 +-------------------------- +Decreases Fixed Casting Time by 20%. +-------------------------- +Increases recovery amount gained from Healing skills by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18527# +A pumpkin hat that has glowing eyes. +-------------------------- +Random chance a defeated monster will drop Pumpkin Pie. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +# +18528# +Lori Ruri mulin pets 'Crew'. The somewhat being acute and says that there is a tendency which all of a sudden surprises to also being trivial. +-------------------------- +INT +2 +MDEF +5 +-------------------------- +Ignores magical defense of target by 5%. +For each Refine Level: +Ignores magical defense of target by 1%. +-------------------------- +Refine Level +7: +MATK +2% +Ignores magical defense of target by 5%. +-------------------------- +Refine Level +9: +MATK +5% +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18529# +A hat that designed after Wild Rose who was famous for it's quick speed. +-------------------------- +MaxHP -10% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +When equipped with Fish In Mouth: +auto-casts Greed at certain percentage during physical attack. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18530# +A mask worn by Thanatos Despero. +It feels very powerful, but the design is charming. +-------------------------- +FLEE +4, LUK -5. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +18531# +A child doll that reproduces the appearance of a Permeter. +-------------------------- +Increases Physical Damage against enemies of Solider, Permeter, Freezer, Assaulter, Heater and Turtle General by 20%. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18532# +A cute hairband with an outstanding blue-laced ribbon. +-------------------------- +INT +2 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18533# +A striped hat with honeybee antenna's on top. +It smells good, like sweet honey. +-------------------------- +MDEF +3 +-------------------------- +Increases Physical Damage against enemies of Insect race by 5%. +-------------------------- +Decreases damage taken from Insect race by 5%. +-------------------------- +Random chance a defeated Insect monster will drop Honey. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +18534# +A Phantom mask that can be used as a facial accessory. +Most of the highly skilled people You will wear this to conceal your true identity. +-------------------------- +STR +1 +Increase physical damage 5%. +-------------------------- +Reduces skilldelay 1%. +-------------------------- +Every 1 upgrade level increases maxhp 100. +-------------------------- +Increases damge skill Mammonite 20% +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +18535# +A present received from Lude. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +18536# +A Wanderer style item +-------------------------- +MATK +10 +-------------------------- +all fixed casting reduce 0.1sec +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18537# +A souvenir hat from Malangdo. +-------------------------- +FLEE +6 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18538# +A spirit literally whispering sweet nothings into your ear and out the other. +-------------------------- +MDEF +3 +-------------------------- +Decreases damage taken from Demon and Angel race by 1% +-------------------------- +Random chance a defeated Demon monster will drop Holy Water. +-------------------------- +Random chance a defeated Angel monster will drop Cursed Water. +-------------------------- +When equipped with Heart Hairpin[0]: +Decreases damage taken from Angel race by 9%. +-------------------------- +When equipped with Crescent Hairpin[0]: +Decreases damage taken from Demon race monsters by 9%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Middle +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18539# +A driver's cap with a menacing skull on the band. +-------------------------- +MATK +2% +-------------------------- +If upgrade level is +5 or higher: +MATK +3% +-------------------------- +If upgrade level is +7 or higher: +MATK +3% +-------------------------- +If upgrade level is +9 or higher: +Reduces the variable casting time of skills by 5%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18540# +A mask worn by an ancient Rune Midgardian race that worshipped demons. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Drains 1 SP every 2 seconds. +-------------------------- +When equipped with Succubus Horn[0] or Incubus Horn[0]: +ASPD +1 +Increases Attack Speed (Decreases After Attack Delay by 9%). +Drains 3 SP every 2 seconds. +-------------------------- +Type: Headgear +Defense: 3 +Position: Middle, Lower +Weight: 100 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +18541# +A soft feathered archer's cap that gives you that dash of Errol Flynn flair. +-------------------------- +DEX +2 +-------------------------- +Increases critical damage on targets by 10% +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18542# +A headdress worn by high Level members of divine warrior members. +-------------------------- +Increases recovery amount gained from Healing skills by 5%. +-------------------------- +Increases Healing skills effectiveness by 2%. +-------------------------- +Refine Level +7: +Increases Healing skills effectiveness by 3%. +-------------------------- +When equipped with Healing Staff[0]: +Increases Healing skills effectiveness by 1% per Refine Level of the staff. +-------------------------- +When equipped with Holy Stick[1]: +Increases Healing skills effectiveness by 3% per Refine Level of the staff. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper, Middle +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18543# +A hat with self ego, once used by the Great Witch. Assists your magic spells. +-------------------------- +MDEF +5 +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +18546# +Spread it in your mouth and you will taste varied flavors. +It seems that when you chew on this, your health will increase. +-------------------------- +Random chance a defeated monster will drop Candy or Candy Cane. +Increases recovery amount gained from Candy and Candy Cane by 50%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18547# +A handmade hat made to commemorate the Students Festival. +-------------------------- +Enables the use of Level 2 Increase Agi. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18548# +A hat matching the one worn by the marionette Taini. +-------------------------- +INT +1 +AGI +1 +-------------------------- +When equipped with a loyal cute-pet Taini, 100% more HP recovery with apples. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18549# +A cute butterfly-shaped hairpin. +-------------------------- +MDEF +3 +-------------------------- +Increases Damage on Plant race by 5%. +-------------------------- +Decreases damage taken from Plant race by 5%. +-------------------------- +Random chance a defeated Plant monster will drop Izidor. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +18550# +Sacred wings that hide the power of the great god within. +-------------------------- +All Stats +2 +Reduces damage taken from all property attacks by 5%. +Restore HP 2% and SP 1% every 10 second. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18551# +A circlet which has the austere and beauty of the stars. +-------------------------- +MDEF +5 +-------------------------- +For each Refine Level: +MaxHP +10 +MaxSP +10 +-------------------------- +For each 2 Refine Levels: +Decreases damage taken from Earth, Fire and Water elemental attacks by 1%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +18552# +Statue of a baby angel that could be embarrassing to wear if you're insecure. +-------------------------- +LUK +2 +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 120 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +18553# +A 'fashionable' Christmas Tree hat designed by Louise Carol. +-------------------------- +Increases resistance against Blind, Stun, Curse and Confuse by 20%. +-------------------------- +Random chance a defeated monster will drop Cookie Bag. +-------------------------- +Refine Level +7: +Cookie Bag drop rate increases by 2%. +-------------------------- +Refine Level +9: +Cookie Bag drop rate increases by 4%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18554# +A delicious seafood, the favorite of many people. +-------------------------- +Increases recovery amount gained from Shusi and Fish Slice by 100%. +-------------------------- +When equipped with Crab Card, Aster Card and Shellfish Card: +Increases Physical Damage against enemies of Water elemental by 10%. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: None +# +18555# +A helm worn by the general who could freely handle dragons. +It seems that you could capture the mind of the dragon just wearing it. +-------------------------- +MDEF +3 +-------------------------- +Increases Damage against monsters of Dragon race by 5%. +-------------------------- +Decreases physical damages taken from Dragon race by 5% +-------------------------- +Random chance a defeated Dragon monster will drop Treasure Box. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18556# +Glasses which proves you are a member of the Angel side. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18557# +A sunglasses which proves the member of the Devil side. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18558# +Fruit from a plant that screams when uprooted from the ground. +-------------------------- +Increases experience gained from defeating Plant race monsters by 5%. +-------------------------- +Increases damage taken from monsters of Plant race by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18559# +A leather of Fafnir that made into winged ears that will Curse its wearer. +-------------------------- +Critical +3 +-------------------------- +Disables HP Recovery Rate. +-------------------------- +When equipped with Fafnir Mask: +Increases Critical Damage by 5%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +18560# +A leather of Fafnir that made into mask that will Curse its wearer. +-------------------------- +Critical +2 +-------------------------- +When equipped with Fafnir Skin: +Increases Critical Damage by 5%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +18561# +A noble High quality hat made of luxury black cloth. Wihite feather make it more gorgeous. +-------------------------- +VIT +2 +MDEF +3 +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +18562# +Corsage of eerie feeling with the motif of a skull. +-------------------------- +MDEF +3 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 5%. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Random chance a defeated Demi-Human race monster will drop Immortal Heart. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18563# +The hairband of girls that decorated with love feather and lace. +-------------------------- +Reduces the cast delay of skills by 5%. +-------------------------- +Reduces the SP cost of skills by 10%. +-------------------------- +Reduces the cast delay of skills and the SP cost of skills by an additional 3% per 3 upgrade levels of the item. +-------------------------- +Set Bonus +Heart Wing Hairband +Love Piece +Reduces the fixed casting time of skills by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +18564# +A love that can never be stopped. +-------------------------- +Increases the SP cost of skills by 15%. +-------------------------- +The users casting cannot be interrupted outside of WoE. +-------------------------- +Set Bonus +Heart Wing Hairband +Love Piece +Reduces the fixed casting time of skills by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +18565# +This is an exact replica of the hat worn by O'Riley the Leprechaun. +-------------------------- +STR +1 +INT +1 +MDEF +4 +-------------------------- +Refine Level +8: +Random chance to use 1 Green Ale when dealing physical damage. +Random chance a defeated monster will drop Green Ale. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +18566# +Donuts nuts are added, since the height further! It is well suited to the hot tea. +-------------------------- +ATK +5 +MATK +5 +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18567# +It seems the nose of a liar talented. Rumor has it that this wooden nose was a god of lies. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18568# +A bird that has the ability to recite the magic on itself. +However, sometimes it seems that the spell is wrong. +-------------------------- +MDEF +6 +-------------------------- +Reflects Magic Attacks with a certain chance. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +18569# +A cute sheep-like hat, makes you look like you have soft fluffy hair. +-------------------------- +MaxHP +1% +-------------------------- +For each Refine Level: +MaxHP +1% +-------------------------- +Random chance to inflict Sleep status on all targets on 11*11 AoE when receiving physical or magical attack. +-------------------------- +Refine Level +10: +Increases experience gained from defeating monsters by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18570# +A beautiful golden ornament created with ancient magic. It changes its power depending on the owner's class. +-------------------------- +Base Level at least 150: +All Stats +2 +-------------------------- +When equipped by Swordman, Merchant or Thief classes: +ATK +8% +-------------------------- +When equipped by Mage or Acolyte classes: +MATK +8%. +Increases Healing skills effectiveness by 7%. +-------------------------- +When equipped by Archer classes: +DEX +3 +Increases Ranged Physical Damage by 10%. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 100 +3rd classes +# +18571# +Decorated with white flowers on a white straw hat. Brings luck to those wearing this hat. +-------------------------- +Increases experience gained from defeating monsters by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18572# +Hat of famous judge. +-------------------------- +Decreases Variable Casting Time by 6%. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 6%). +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by 2%. +MDEF +2 +-------------------------- +[Swordman,Merchant,Thief,Monk,Taekwon] +For each 2 Refine Levels: +ATK +1% +-------------------------- +[Magician,Acolyte,Soul Linker,Ninja] +For each 2 Refine Levels: +MATK +1% +-------------------------- +[Archer,Gunslinger] +Every 1 Refine Levels: Ranged Physical Damage +1% +-------------------------- +When VIP status active: +All Stats +1 +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18573# +A berret decorated with white feather. +-------------------------- +MaxHP -10% +HIT +20 +-------------------------- +Refine Level +5: +MaxHP +10% +HIT -10 +HIT -3 and MaxHP +3% for every 2 Refine Levels. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18574# +The Helm of the Lord of Death. +-------------------------- +All Stats +1 +MDEF +5 +-------------------------- +Increase Damage to Boss type Monsters by 10% +-------------------------- +Take 5% more damage from Normal Monsters and Players. +-------------------------- +If upgrade level is +5 or higher: +For every upgrade add 1% more damage to Boss Class monsters. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper, Middle +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +18575# +A mysterious box with eyebrows are already drawn up. +-------------------------- +MDEF +10 +-------------------------- +Random chance to auto-cast various skills when dealing melee physical attacks. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper, Middle, Lower +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +18576# +These large Earrings carry the balance between Yin and Yang. +-------------------------- +Increases damage of Chain Combo by 10%. +-------------------------- +Increases damage of Triple Attack by 5%. +-------------------------- +Increases damage of Combo Finish by 5%. +-------------------------- +Increases SP Consumption of Chain Combo and Combo Finish by 1. +-------------------------- +When equipped with Hot-blooded Headband: +Increases damage of Triple Attack and Combo Finish by 5%. +Increases damage of Tiger Fist and Chain Crush Combo by 3%. +Increases SP Consumption by 10 which reduced by 1 per Refine Level up to +10. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +18577# +A large 24 inch Bolt. +-------------------------- +Increases Magical Damage against monsters of Undead race by 4%. +-------------------------- +Decreases damage taken from Undead race by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +18578# +A magical helm. +-------------------------- +ATK +3% +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +18579# +A hat made to celebrate 9th anniversary. +-------------------------- +MDEF +9 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 9 +Armor Level: 1 +-------------------------- +Requirement: None +# +18580# +A Crown woven from Yggdrasil's Branches which represents new life after a sacrifice. +-------------------------- +Vit + 2 +Int + 2 +-------------------------- +Increases the recovery rate of recovery skills by 1%. +-------------------------- +Increases the recovery rate of recovery skills by an additional 1% per upgrade level of the item up to a maximum upgrade level of 6. +-------------------------- +Increases the recovery rate of recovery skills by an additional 2% per upgrade level of the item past the upgrade level of 6. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +18581# +A menacing red Tiger's mask rumored to have belonged to a great warrior. +-------------------------- +STR +3 +MaxHP +100 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +18582# +A menacing blue Tiger's mask rumored to have belonged to a great warrior. +-------------------------- +STR +3 +MaxHP +100 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper, Middle +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +18583# +A lazy drooping blue kitty hat. +-------------------------- +MDEF +15 +-------------------------- +Increases resistance against Curse status by 30%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18584# +A lazy drooping brown kitty hat. +-------------------------- +MDEF +15 +-------------------------- +Increases resistance against Curse status by 30%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18585# +A hairband that attracts men. You can wear it when you want to look sexy. Your sexiness increases to 100%. +-------------------------- +VIT +3 +INT +2 +STR +1 +-------------------------- +Refine Level +9: +ATK +2% +MATK +2% +-------------------------- +Refine Level +12: +Decreases Fixed Casting Time by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +18586# +A hairband that attracts men. You can wear it when you want to look sexy. Your sexiness increases to 100%. +-------------------------- +VIT +2 +INT +3 +STR +1 +-------------------------- +Refine Level +9: +ATK +2% +MATK +2% +-------------------------- +Refine Level +12: +Decreases Fixed Casting Time by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +18587# +A hairband that attracts men. You can wear it when you want to look sexy. Your sexiness increases to 100%. +-------------------------- +VIT +2 +INT +1 +STR +3 +-------------------------- +Refine Level +9: +ATK +2% +MATK +2% +-------------------------- +Refine Level +12: +Decreases Fixed Casting Time by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +18588# +A hairband that attracts men. You can wear it when you want to look sexy. Your sexiness increases to 100%. +-------------------------- +VIT +1 +INT +3 +STR +2 +-------------------------- +Refine Level +9: +ATK +2% +MATK +2% +-------------------------- +Refine Level +12: +Decreases Fixed Casting Time by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +18589# +A ripe strawberry shaped hat. +-------------------------- +Random chance a defeated monster will drop Strawberry. +Increases the drop rate of Strawberry with each Refine Level and caps at Level 10. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18590# +A hairband made with gold strings. +-------------------------- +MDEF +3 +-------------------------- +Decreases damage taken from Demon monsters by 5%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18591# +Glasses worn by true sophisticates. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18592# +Wearing this Hat makes your summer cool. Important thing is maintenance sense of balance. +-------------------------- +MDEF +5 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +18593# +Cute red mini crown. +-------------------------- +INT +1 +MDEF +5 +MATK +3% +VCT -3% +Decreases SP Consumption by 3%. +Increase effect of Healing skill by 3% +-------------------------- +Refine Level +5: +MATK +1% +-------------------------- +Refine Level +7: +MATK +2% +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +Tier: 5 +-------------------------- +Requirement: +Base Level 1 +# +18594# +Once owned by Magni, son of Thor, the wearer of this cap is supposedly granted a measure of Magni's awesome might. +-------------------------- +STR +2 +-------------------------- +Type: Headgear +Defense: 9 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +All Jobs except Novice +# +18595# +A horns that contains ancient souls. +-------------------------- +If upgrade level is +7 or higher: +Adds 1% chance to increase attack by 100 for 10 seconds when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 40 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: +Base Level 50 +# +18596# +A thin, small-leaf-shaped hat. +-------------------------- +Enables the use of Level 3 Heaven's Drive. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +18597# +Created for military purpose, this hat boosts your fighting abilities. +-------------------------- +Critical +3 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +7: +Critical +2 +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +9: +Critical +2 +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +18598# +A small shining christmas tree that can be put as hat. +-------------------------- +MDEF +20 +-------------------------- +When equipped with Holy Santa's Beard: +MDEF +3 +Random chance a defeated monster will drop Buche De Noel. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18599# +A grotesque headgear which covers a half of a person's face. But don't you worry. The part of eyes are open so you can see well. +-------------------------- +All Stats +2 +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18600# +A cute beret with cat ears! Cats don't normally wear hats but if they did they would wear this one. +-------------------------- +ATK +5% +-------------------------- +If upgraded to +5 or higher +Every refine level. +reduces damage taken from Demihuman by 1% and increases physical damage on Demihuman monsters by 1%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +Tier: 6 +-------------------------- +Requirement: None +# +18601# +A lovely red hat with a white pom pom. +-------------------------- +MATK +5% +MDEF +5 +-------------------------- +For each Refine Level equal or above +6: +Decreases damage taken from Demi-Human race by 1%. +Increases Magical Damage against monsters of Demi-Human race by 1%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18602# +A slice of watermelon on a stick, it will make your mouth water. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +18603# +A grotesque headgear which covers a half of a person's face. But don't you worry. The part of eyes are open so you can see well. +-------------------------- +All Stats +1 +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18604# +Mask in the shape of a king of the brave Falcon sky. +-------------------------- +Increases Physical Damage against enemies of Water elemental by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle, Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +18605# +Hat of black feathers made by the power of demons who to bless the arrival of the Dark Ages. +-------------------------- +MDEF +3 +-------------------------- +Random chance to enchant weapon with Shadow element when receiving physical damage. +-------------------------- +Increases damage taken from Holy elemental monsters and Angel race by 10%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +18606# +A crystalized tears of Princess Adelaide. +-------------------------- +MATK +3% +-------------------------- +Increases Healing skills effectiveness by 1%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +18607# +Two red dots that can be worn on the face to give a blushing impression. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18608# +A pair of small red ribbons which can be used to decorate the hair of little girls. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +# +18609# +A black Blinker. Since it is black in color, it seems that you may not see the light forever if you wear it for a long time. +-------------------------- +Prevents Blind status. +-------------------------- +Increases resistance against Stun status by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18610# +[bRO item] +# +18611# +Dark-colored plastic framed glasses, great for looking retro and intelligent! +-------------------------- +INT +1 +MDEF +2 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18612# +A headgear worn by a Warrior of a fighting order. +These Warriors in White tend to be physical Combat Specialists. +-------------------------- +STR +2 +VIT +2 +LUK +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +18613# +A headgear worn by a teacher of a fighting order. +These Warriors in Black tend to be Esoteric Combat Specialists. +-------------------------- +INT +2 +DEX +2 +AGI +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +18614# +This Spooky mask of Death. You are too freaked out to put it actually over your face so for now you wear it as a hat. +-------------------------- +FLEE +3 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +18615# +A patch that protects a single eye socket. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18616# +Your parents forgot to tell you that sticking your tongue out at people was rude and this is the result. Sometimes you just gotta be you! +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18617# +Onigiri is a delicacy found only on the island nation of Amatsu. Various flavors accentuate the slightly sweet rice. +-------------------------- +Increases damage inflicted and Decreases damage taken from monsters in the Amatsu area by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +18618# +Look like a hunk o' burnin' love with this retro hairstyle wig. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18619# +A bandana that can be worn to disguise yourself one of the common folk. +-------------------------- +Random chance to auto-cast Level 1 Steal when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18620# +An eyepatch for those who would not like to look lovelier than a pirate. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +18621# +A gift given to you by Agent York which he retrieved from thugs in Geffen that used this mask to disguise themselves while committing crimes and extorting citizens. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +18622# +RWC Exclusive Champion Headgear +-------------------------- +All Stats +5 +MDEF +5 +Increases Movement Speed +Enables the use of Level 1 Teleport. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 20 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 95 +# +18623# +RWC Exclusive 2nd Place Headgear +-------------------------- +All Stats +4 +MDEF +5 +Increases Movement Speed +Enables the use of Level 1 Teleport. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 20 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 95 +# +18624# +RWC Exclusive 3rd Place Headgear +-------------------------- +All Stats +3 +MDEF +5 +Increases Movement Speed +Enables the use of Level 1 Teleport. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 20 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 95 +# +18625# +RWC Exclusive Headgear +-------------------------- +All Stats +2 +MDEF +5 +Increases movement speed. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 20 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 95 +# +18626# +A delectable frozen treat served with a cherry on top. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +18627# +A dried leaf that bring the memories of hometown. +-------------------------- +Increases Physical Damage against enemies of Plant race by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +18628# +Bu~oi to achieve it is asleep as dead. To even worry about whether wake up sleeping on the defenseless too. +-------------------------- +MaxHP +2% +MDEF +5 +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +When equipped with Manteau of Domovoi: +MaxHP +3% +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +18629# +A celebration hat for Desert Wolves, makes you feel like a member of the pack. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Ranged Physical Damage by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18630# +A cute doll of a drooping Alicel from the Robot Factory. +-------------------------- +Increases Physical Damage against enemies of Demi-Human and Demon race by 10%. +-------------------------- +Refine Level +7: +Random chance to Reduces After Attack Delay by 100% for 7 seconds when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +All Jobs except Novice +# +18631# +A sensual chef hat made in cute concept art. Goes well with casual outfit. +-------------------------- +DEX +3 +LUK +1 +-------------------------- +Refine Level +7: +Random chance a defeated monster will drop Cooking Kit. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +18632# +A cute hair pin designed with yellow poring. It goes well with anyone. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18633# +A cute hair pin designed with pink poring. It goes well with anyone. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18634# +A cute hair pin designed with green poring. It goes well with anyone. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18635# +A cute hair pin designed with blue poring. It goes well with anyone. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18636# +A ribbon expressing happiness for the new married bride. Makes you feel more sensitive. +-------------------------- +DEX +1 +-------------------------- +Random chance to auto-cast Level 1 Charm Wink when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18637# +Helmet generals of the kingdom was the cry of the ancient continent was using. Weather in general that the word of command many soldiers outpouring from all over the body Using this pitch. +-------------------------- +STR +2 +VIT +1 +-------------------------- +Refine Level +8: +Increases movement speed. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper, Middle +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: None +# +18638# +A hat that looks like a sour citron. Fresh fragrance makes you feel happy and lucky. +-------------------------- +LUK +3 +-------------------------- +Decreases damage taken from Plant race by 10%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18639# +A hat only for officers who passed hard training from the NAVY. White, Blue and Yellow color is the symbol of a sailor's providence. +-------------------------- +LUK +3 +-------------------------- +Increases Physical Damage against enemies of Water elemental by 10%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18640# +A hair band that looks like a starfish. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18641# +Casual magician's hat with a cute ribbon. +-------------------------- +INT +3 +MATK +5% +MaxSP +50 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18642# +A hat shaped like scissors, inspired by the classic game of Rock-Paper-Scissors. +-------------------------- +AGI +1 +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18643# +A hat looks like Rock from the rock-paper-scissors game +-------------------------- +STR +1 +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18644# +A hat looks like paper from the rock-paper-scissors game +-------------------------- +LUK +2 +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18645# +A hat for a real sailor who is not afraid of the water. +-------------------------- +INT +1 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 5%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +18646# +A hat which is modeled on a cow. There is rumor that If you put this on while you are sleeping, you could meet a benevolant godly cow. +-------------------------- +DEX +2 +-------------------------- +Random chance a defeated monster will drop Milk. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18647# +The stunning star eyepatch is absolutely fabulous! +-------------------------- +Increases resistance against Stun status by 15%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18648# +A charm, once it was used to scare and expel demons. +-------------------------- +Decreases damage taken from Demon race monsters by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18649# +A mask with lude's face design. +-------------------------- +Random chance to auto-cast Level 1 Crazy Uproar when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18650# +a mouth would have been advocated as unknowingly 'RWC! Fighting!' +you will have lots of extra effect when trying physical and magical attack with normal rate +will disappear after RWC match. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18651# +A mysterious hat from Captain Ignis. +-------------------------- +ATK +10 +-------------------------- +Random chance to pierce magical defense of Normal class by 100% for 7 seconds when dealing physical damage. +-------------------------- +When equipped with Ears of Ifrit: +Increases Attack Speed (Decreases After Attack Delay by 1%) every 2 Refine Level of Hat. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +18652# +Vanargand is a another name of Fenrir: the God Biter, which inspired the design of this helmet. +-------------------------- +If upgrade level is +4 or less, +Adds 1% chance of restoring 1% of damage as HP when performing a physical attack. +Adds 1% chance of restoring 1% of damage as SP when performing a physical attack. +-------------------------- +If upgrade level is +5 or higher, +Adds 1% chance of restoring 3% of damage as HP when performing a physical attack instead. +Adds 1% chance of restoring 1% of damage as SP when performing a physical attack instead. +-------------------------- +If upgrade level is +7 or higher, +Adds 3% chance of restoring 5% of damage as HP when performing a physical attack instead. +Adds 1% chance of restoring 2% of damage as SP when performing a physical attack instead. +-------------------------- +If upgrade level is +8 or higher, +Adds 5% chance of restoring 5% of damage as HP when performing a physical attack instead. +Adds 1% chance of restoring 2% of damage as SP when performing a physical attack instead. +-------------------------- +If upgrade level is +9 or higher, +Adds 6% chance of restoring 8% of damage as HP when performing a physical attack instead. +Adds 2% chance of restoring 4% of damage as SP when performing a physical attack instead. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 100 +Armor Level: 1 +Tier: 6 +-------------------------- +Requirement: +Base Level 1 +# +18653# +A headphone with design inspired from Deviruchi. Seems effective to block the noise from outside. +-------------------------- +Increases resistance against Stun status by 50%. +-------------------------- +When equipped by Mage, Archer or Acolyte classes: +Increases resistance against Stun status by 5%. +-------------------------- +If Cute pet intimacy is Cordial: +Increases resistance against Stun status by 15%. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18654# +A hood worn by member of secret society. It's made from a plain cloth, but adjusted so member able to see. +-------------------------- +MDEF +5 +MaxHP +500 +-------------------------- +Prevents Curse status. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper, Middle, Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +18655# +A stylish monocle that attached with dragonfly ornament. This monocle belong to a famous thief, Kaito. +-------------------------- +AGI +2 +-------------------------- +Random chance to auto-cast Level 1 Steal on the target when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +18656# +A tattered witch hat adorned with a baby pumpkin. +-------------------------- +STR +2 +INT +2 +MDEF +10 +-------------------------- +Increases Damage against monsters of Undead elemental and Demon race monsters by 15%. +-------------------------- +When equipped with Mr. Smile: +Random chance a defeated monster will drop Pumpkin Pie. +-------------------------- +When equipped with Hahoe Mask: +ASPD +1 +Random chance to increase ATK by 50 dealing physical attack. +-------------------------- +When equipped with Alarm Mask: +Random chance a defeated monster will drop Pumpkin or Well-Baked Cookie. +Increases recovery amount gained from Pumpkin and Well-Baked Cookie by 100%. +-------------------------- +When equipped with Opera Mask: +FLEE +10 +Random chance to inflict Stun status on the target when dealing physical damage. +-------------------------- +When equipped with Gozarian Mask: +ATK +30 +MATK +30 +Random chance a defeated monster will drop Pumpkin Pie, Well-Baked Cookie, Candy or Candy Cane. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +18657# +An accessory made with Valkyrie's wing feathers. Makes your body a little bit lighter. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Base Level at least 100: +Increases Attack Speed (Decreases After Attack Delay by 2%). +Base Level at least 150: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 80 +# +18658# +The beard which asdignity of the holy Santa. +-------------------------- +Increases Physical Damage taken from Shadow elemental by 2%. +-------------------------- +When equipped with Holy Christmas Tree: +MDEF +3 +Random chance a defeated monster will drop Buche De Noel. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18659# +A Hat created with power of mythical creature, Boitata. +-------------------------- +Random chance to auto-cast Level 5 Sonic Blow on the target when dealing physical damage. +-------------------------- +Random chance to enchant weapon with Fire element for 3 minutes when dealing physical damage. +-------------------------- +When equipped with Boitata Armor: +INT +3 +STR +3 +MDEF +10 +Enchants armor with Fire element. +Increases Physical Damage against enemies of Earth elemental by 10%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +18660# +Splendid hair accessory made of feathers of birds. Worn by women of a certain tribe. +-------------------------- +AGI +2 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18661# +Marvellous looking hat that was used by a general of an eastern kingdom. It resembles a trident. +-------------------------- +STR +2 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18662# +Gentleman's hat decorated by an antler. Used in parties and festivals. +-------------------------- +INT +3 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18663# +Casual fashion item that has sunglasses on a baseball cap. +-------------------------- +INT +3 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18664# +Fashion item with strong identity. Be a fashionista and do not mind what others say. +-------------------------- +Increases resistance against Stun and Frozen status by 10%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Middle +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18665# +According to custom of a certain tribe, holding an orange in one's mouth brings a good luck. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18666# +It feels as if massive data stored in compact disc is absorbed into the brain through the mouth. +-------------------------- +Random chance to auto-cast various Level 3 Magician skills on the target when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 15 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +18667# +Laced hairband decorated with two kitten figures. +-------------------------- +DEX +3 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +All Jobs except Novice +# +18668# +A hat that curses nearby people to be lazy. +-------------------------- +Enables the use of Level 3 Decrease Agi. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18669# +A good choice of a fashion leader. +-------------------------- +DEX +2 +MaxHP +1% +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18670# +Nibbling on this handkerchief makes people feel compassion for you. +-------------------------- +Decreases damage taken from Demi-Human race by 3%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 12 +# +18671# +A Christmas hairband. Sporting the face Christmas' most famous reindeer Rudolf. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18672# +A hat with motif of Arunafeltz Pope. Its has a lot of enthusiastic believers from around the world. +-------------------------- +MDEF +1 +-------------------------- +Increases SP Recovery Rate by 2%. +-------------------------- +Indestructible in battle +-------------------------- +When equipped with Blush: +Increases SP Recovery Rate by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18673# +A hat with motif of Arunafeltz Pope. Its has a lot of enthusiastic believers from around the world. +-------------------------- +MDEF +7 +-------------------------- +Increases Healing skills effectiveness by 5%. +-------------------------- +Refine Level +7: +For each Refine Level: +Increases Healing skills effectiveness by 1%. +Refine Level +9: +MATK +7% +Refine Level +12: +MATK +12% +-------------------------- +When equipped with Blush: +Increases Healing skills effectiveness by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18674# +A hat that has sharp wings that make you feel like flying +-------------------------- +AGI +3 +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Drains SP by 5 every 10 seconds. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18675# +A unique fresh apple that sustains an ambient odor. +-------------------------- +DEX +2 +HIT +5 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18676# +Glasses designed to enhance the wearer's agility and ease of movement +-------------------------- +Flee + 2 +-------------------------- +Type: Headgear +Defense: 3 +Position: Middle +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18677# +A beautiful sakura twig. +-------------------------- +Increases Physical Damage against enemies of Plant race by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18678# +A freshly picked leek vegetable. +-------------------------- +Decreases damage taken from Small size by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18679# +A marvelous abacus that can recognize worthy of things. +-------------------------- +Enables the use of Level 1 Item Appraisal. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18680# +A frog type hat that let's you hear insects's trembling. +-------------------------- +AGI +1 +-------------------------- +Experience from Insect Class monsters by 5%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 35 +# +18681# +A cute hat with dog's ears. +-------------------------- +VIT +2 +MaxHP +100 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +18682# +An accessory attached below eye. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18683# +It seems like a delicious carrot, but it's uneatable. +-------------------------- +Increases Physical Damage against enemies of Plant race by 3%. +-------------------------- +When equipped with Bunny Band: +Random chance to auto-cast Level 1 High Jump when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18684# +Wear this hat to be a show off! +-------------------------- +STR +3 +INT +2 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18685# +Using a form decorative star of the Stardust, the hair band that was created. It can be expressed more than my best to be lively is that. +-------------------------- +Increases experience gained from Neutral elemental monsters by 5%. +-------------------------- +Increases damage taken from Neutral elemental by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18690# +Wearing dizziness imitation of giants Sirt 'of the flame that would burn the world, you can feel the heat to get angry. +-------------------------- +STR +1 +ATK +1% +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +18691# +A helm that applied the Black Dragon's will, has fabulous side view and always keeps the side view. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18692# +When attend open audition for singers, let this hat wear. +Yourself and mic in a body may appeal to judge. +-------------------------- +DEX +2 +LUK +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18693# +Hat that refer to shape of sleeping cat. If you wake up sleeping cat, you will be suffered. +-------------------------- +Increases Physical Damage against enemies of Brute race by 2%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18694# +You will feel in a fairy tale after worn it. +-------------------------- +Critical +10 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18695# +Usually, Myo tribe wears this Headgear. It makes you to a dignified lady. +-------------------------- +INT +2 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18696# +Top of head orange that makes smooth and glossy hair. +-------------------------- +Enables the use of Level 2 Mammonite. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18697# +It is made with the shape of the syringes. It look like a nurse is injecting for the patient. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18698# +Cheese snack that melts away in the mouth. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18699# +A hat that looks like a starving big fish that want to eat human. +-------------------------- +Decreases damage taken from Water elemental by 15%. +-------------------------- +Random chance a defeated monster will drop Fresh Fish. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 120 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18700# +Gothic rabbit ribbon hat that is arrogant and cute. +-------------------------- +INT +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +18701# +The hat worn by the civil man in the ancient, it is representing the wisdom. +-------------------------- +INT +3 +DEX +2 +LUK +1 +-------------------------- +When equipped with Book class weapon: +Decreases Variable Casting Time by 3%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +All Jobs except Novice +# +18702# +Your mouth around is full with shaving cream, it look like an old man. +-------------------------- +Type: Headgear +Defense: 1 +Location: Lower +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +18703# +Stem of plant that has efficacy of neutralization. +-------------------------- +Increases resistance against Poison status by 20%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18704# +A hairpin from a plant that eat insects. +-------------------------- +MDEF +4 +MaxSP +64 +-------------------------- +Increases Physical Damage taken from Insect race by 10%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 64 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 64 +# +18705# +A hat that looks like an ordinary flower petal, modeled after flip. +-------------------------- +LUK +2 +Perfect Dodge +5 +-------------------------- +Random chance to increase HIT by 30 for 6 seconds when dealing physical damage. +For each Refine Level: +increases the chance. +-------------------------- +Random chance to auto-cast Level 10 Sonic Blow on the target when dealing physical damage. +For each Refine Level: +increases the chance. +-------------------------- +Random chance to Decreases Variable Casting Time by 30% for 6 seconds when dealing magical damage. +For each Refine Level: +increases the chance. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18706# +Can Hat whick looks so sad. Alms for the poor when I wear this! +-------------------------- +LUK +3 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18707# +Wear it will scare the surrounding people! +-------------------------- +FLEE +20 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18708# +Delicious candy in the head, people always wanted to get down to eat. +-------------------------- +Enables the use of Level 3 Heal. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18709# +The most suitable cap to wear in the warm winter! +-------------------------- +MaxSP +100 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18710# +The desert made with a variety of fruits topped with maltose. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18711# +A sunglasses that give futuristic feeling. +-------------------------- +Type: Headgear +Defense: 3 +Position: Middle +Weight: 40 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18712# +The useful tools for refreshing in the summer. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +18713# +The cute monkey fur hat for all genres. Everyone likes to wear it during winter. +-------------------------- +DEX +1 +AGI +1 +FLEE +10 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +18714# +The Hippo Hat made from Africa. You will feel are swimming in the Nile River like a Hippo after worn it. +-------------------------- +Decreases damage taken from Water elemental attacks by 10%. +-------------------------- +Random chance to auto-cast Level 1 Frost Nova when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18715# +The helm worn by the priest of Thoth. +-------------------------- +INT +2 +MDEF +5 +MaxSP +100 +-------------------------- +Type: Headgear +Defense: 2 +Position: Lower +Weight: 250 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 80 +All Jobs except Novice +# +18716# +The sweet and delicious Strawberry in the mouth. +-------------------------- +Type: Headgear +Defense: 2 +Position: Lower +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +18717# +A hood worn by grim reaper. It spreads unhappy feeling. +-------------------------- +MDEF +2 +-------------------------- +Random chance to inflict Stun, Curse, Silence, Poison or Bleeding status on the target when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper, Middle, Lower +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +18718# +The white hairband trimmed with red and blue roses. +-------------------------- +VIT +1 +INT +1 +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Decreases Variable Casting Time by 3%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18719# +Made based of fantastic weather fenomena. +-------------------------- +Random chance to auto-cast Level 5 Fire Bolt or Fire Ball when dealing Physical Damages(or activate based on learned skill Level). +Learned Level of those skills affect the auto-casting rate. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +18720# +A booster developed and discovered in Juperos ruins that can raise magical power. It's made from unknown material. +-------------------------- +MATK +3% +-------------------------- +When equipped with Southern Cross: +Increases Magical Damage against monsters of Boss class by 2%. + +Refine Level of Southern Cross is +5 or higher: +Increases Magical Damage against monsters of Boss class by 3%. +Increases damage taken from monsters of Normal class by 5%. + +Refine Level of Southern Cross is +7 or higher: +Increases Magical Damage against monsters of Boss class by 4%. +Increases damage taken from monsters of Normal class by 5%. +-------------------------- +When equipped with Staff of Piercing: +For each Refine Level of Staff of Piercing: +MATK +15 + +Refine Level of Staff of Piercing is +10 or higher: +MATK +50 +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Hypnotist's Staff: +For each Refine Level of Hypnotist's Staff: +MATK +20 +-------------------------- +Refine Level of Hypnotist's Staff is +10 or higher: +MATK +50 +Decreases After Skill Delay by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +18721# +A special hat created to celebrate valentine day. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18722# +A feather ears of bragi's wife. +-------------------------- +MaxHP +1% +-------------------------- +Base Level at least 100: +MaxHP +1% +-------------------------- +Base Level at least 150: +MaxHP +1% +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 80 +# +18723# +A crown that shine a mysterious aura. It's resonance with some elemental stones. +-------------------------- +Random chance a defeated monster will drop Flame Heart, Mystic Frozen, Rough Wind or Great Nature. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18724# +A headgear forged from the horns of the Unsealed Baphomet. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 12%. +-------------------------- +Increases ATK depending on the wearer's job Level. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +# +18725# +A hat with large rabbit ears. +-------------------------- +Increases HP and SP Recovery Rate by 20%. +-------------------------- +Base LUK at least 55: +Increases HP and SP Recovery Rate by 30%. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 33 +# +18726# +An emblem of Black Forest Republic engraved on it. A fashionable hat for combat enthusiasts. +-------------------------- +MDEF +5 +-------------------------- +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +5: +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 5%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle, Lower +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 88 +# +18727# +A cute hat made based of Sedora appearance. +-------------------------- +Decreases damage taken from Fish race monsters by 5%. +-------------------------- +Increases recovery amount gained from Sushi and Raw Fish by 50%. +-------------------------- +Refine Level +7: +Increases recovery amount gained from Sushi and Raw Fish by 100%. +When equipped with Sea Otter Card: +Increases recovery amount gained from Sushi and Raw Fish by 50%. +-------------------------- +Type: Headgear +Defense: 13 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18728# +A Helmet from Aegir, god of Ocean. If the whole set of Egir are gathered, it will show the power of the Sea. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 110 +# +18729# +You can have an excellent at critical moment after equipped it. All people will crazy for you. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Increases recovery amount gained from Mastela Fruit by 30%. +-------------------------- +Decreases Variable Casting Time by 3%. +-------------------------- +Refine Level +12: +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +14: +Decreases Variable Casting Time by 1%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: None +# +18730# +A hat which is given to new adventurers in Brynhild Ragnarok Online World. +-------------------------- +MaxHP +15 +MaxSP +5 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +18731# +Valkyrie's favorite Sunday fighting hat. It doesn't look much different than the battle helm. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18732# +Rental Item +MDEF +5 +-------------------------- +*Effects in WoE TE area +ATK +5, MATK +5 +Increases Damage against Players by 10%. +Increases Frozen resistance by 25%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +# +18733# +Rental Item +*Effects in WoE TE area +ATK +10 +Increases Physical Damage against enemies of player by 20%. +Increases resistance against Frozen Status by 25%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Swordsman and Merchant +# +18734# +Rental Item +MDEF +5 +*Effects in WoE TE area +MATK +10 +Increases Magical Damage against player by 20%. +Increases resistance against Frozen Status by 25%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Novice, Magician, Acolyte and Soul Linker +# +18735# +It softer than a normal Fairy Ears. Its unique ability allow you to sense monster better. +-------------------------- +MDEF +3 +-------------------------- +Enables the use of Level 1 Sense. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18736# +The eyes are covered in black to conceal the person's identity. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18737# +This colourful mask evokes the fiery spirit of Carnival. +-------------------------- +Increases Magical Damage with Fire element by 4%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +18738# +A hat given to standout student. +-------------------------- +Random chance to auto-cast Level 1 Weapon Perfection when dealing physical damage. +Refine Level +5: +Increases the auto-casting rate. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18739# +Express your love to your mother. +-------------------------- +LUK +1 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18740# +A wig designed after a certain race whose hair changes when jumps over his limit. +-------------------------- +Type: Constume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +18741# +To feel the fear of those who see in the eerie paranormal. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +18742# +A strong feeling of being one with the night skies. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +18743# +The soul of the Green Maiden, its scary and horrible. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +18744# +Sparkle emanating from the body. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +18745# +The choco stick let you taste slowly. +-------------------------- +MaxSP +50 +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +18746# +The white mist spitted out from the mouth due to the cold weather. +-------------------------- +INT +1 +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +18747# +The blinking eyes, looked palpitate dread. +-------------------------- +DEX +1 +-------------------------- +Increases resistance against Curse status by 25%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18748# +According to Chinese custom, it can bring the wealth and fortune to you. +-------------------------- +LUK +2 +DEX +2 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +18749# +The strength seem will Increases when your wear it. +-------------------------- +STR +2 +MaxHP +100 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +18750# +Gives you a feeling of advantage over your enemies. +-------------------------- +Increase damage dealt to Human race monsters by 2% +Increase damage dealt to Human Player race monsters by 2% +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +18751# +A legendary clover that will bring luck to its wearer. +-------------------------- +Perfect Dodge +2 +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18752# +A cursed book that can absorb life. +-------------------------- +When attacking, 4% of damage absorbed to HP by 4% chance. +HP absorption increases with every 2 Refine Levels +-------------------------- +When attacking, 1% of damage absorbed to SP by 1% chance. +SP absorption increases with every 3 Refine Levels +-------------------------- +HP would be lost per 5 sec depends on Refined degree. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +All Transcendent classes except Novice +# +18753# +The hat is made according to the traditional food during Dragon Boat Festival. It is tasty and delicious. +-------------------------- +LUK +1 +-------------------------- +Random chance a defeated monster will drop Rice Ball. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 7 +Armor Level: 1 +-------------------------- +Requirement: None +# +18754# +Cursed mask inspired by creepy vampire fang. Drains life it will. +-------------------------- +Enable a 3% chance of gaining 5% of the damage inflicted to an enemy as HP with each attack +-------------------------- +Disables autorecovery for HP and SP. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +# +18755# +A premium-grade hat that offers a great fit. The feather decoration nicely complements the sky blue color. +-------------------------- +MDEF +1 +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: None +# +18756# +A hat designed after a black Amatsu hound. + +ATK +30. +Increase physical damage against Brute monsters by 10%. + +When equipped with Fidelity Necklace, +Adds a 3% chance to ATK +30 for 5 seconds when performing a physical attack. +-------------------------- +Class: Headgear +Position: Upper +Defense: 6 +Weight: 40 +Tier: 5 +Requires Level: 1 +Usable By: All Jobs +# +18757# +A hat from eastern church that only the highest Bishop allowed to wear it. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Demon race monsters by 10%. +-------------------------- +Increases Healing skills effectiveness by 3%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 80 +# +18758# +A doll hat made based of a possum that love acorns. +-------------------------- +Increases Physical Damage against enemies of Medium size by 5%. +-------------------------- +When equipped with Special Sloth Clothes, Tiger Tooth Sword Manteau and Badge of Manny: +MaxHP +10%, MaxSP +10%, ATK +5%, MATK +5%. +Decreases Variable Casting Time by 15%. +Random chance to auto-cast Level 5 Storm Gust when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18759# +The nose of a wood goblin fashioned into a noseguard. Though comic in nature, it helps to track the scent of certain plants. +-------------------------- +Random chance a defeated monster will drop Maneater Blossoms or Maneater Root. +-------------------------- +Random chance a defeated Plant monster will drop Prickly Fruit. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +18760# +Talented Wizard's magic hat. It looks weird, but works just fine. Remodeled for extra effect. +-------------------------- +INT +2 +MaxSP +150 +-------------------------- +For each Refine Level: +MATK +1 +-------------------------- +For each Refine Level above +7: +INT +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Magician and Soul Linker classes +# +18761# +Healthy live rabbit looking wizard hat. Very firm and strong item. Remodeled for extra effect. +-------------------------- +DEX +1 +AGI +1 +MaxSP +50 +-------------------------- +For each Refine Level: +MaxSP +5 +-------------------------- +For each Refine Level above +7: +DEX +1 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Magician, Acolyte and Soul Linker +# +18762# +A replica of Assassin troops' secret hiding mask. Slick shape. Remodeled for extra effect. +-------------------------- +AGI +2 +LUK +2 +-------------------------- +Refine Level +7: +Perfect Dodge +4 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18763# +A weird looking hat made for circus clown. Remodeled for extra effect. +-------------------------- +LUK +2 +MDEF +5 +-------------------------- +Refine Level +7: +Increases Critical Damage by 5%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18764# +Rabbit ear decorated hairlace. Looks pretty, but hard to stand it straight. Remodeled for extra effect. +-------------------------- +LUK +2 +-------------------------- +Refine Level +7: +Critical +5 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18765# +Big hat for old pirate captain. Grotesque looks represents its owner himself very well. Worn out too much. +-------------------------- +VIT +1 +MaxHP +5% +-------------------------- +Refine Level +7: +Decreases damage taken from Neutral elemental attacks by 1%. +-------------------------- +Refine Level +9: +MaxHP +3% +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +All Jobs except Novice +# +18766# +High defense rate helm with angels' feather attached. Unknown creator. +-------------------------- +AGI +1 +LUK +1 +MDEF +3 +-------------------------- +Refine Level +7: +AGI +2 +LUK +2 +-------------------------- +Refine Level +9: +ASPD +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 160 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +2nd classes, Star Gladiator, Soul Linker, Kagerou, Oboro and Rebel +# +18767# +Gold Winged hat that is a symbol for the great Sun God. Don't ask how to walk in this hat. +-------------------------- +STR +3 +INT +2 +ATK +10 +MATK +10 +-------------------------- +Refine Level +7: +ATK +15 +MATK +15 +-------------------------- +Refine Level +9: +ATK +15 +MATK +15 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper, Middle +Weight: 240 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +2nd classes, Star Gladiator, Soul Linker, Kagerou, Oboro and Rebel +# +18768# +A heavy helm made of firm bone that has a solid defense rate. +-------------------------- +Increases damage taken from Shadow elemental attacks by 15%. +-------------------------- +Decreases damage taken from Neutral elemental attacks by 2%. +-------------------------- +Refine Level +7: +Decreases damage taken from Neutral elemental attacks by 2%. +-------------------------- +Refine Level +9: +Decreases damage taken from Neutral elemental attacks by 2%. +-------------------------- +Type: Headgear +Defense: 15 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Swordsman and Merchant +# +18769# +Monster Munak's hat. Big hat with an anonymous charm attached. It has been remodeled for extra effect. +-------------------------- +Decreases damage taken from Undead race by 10%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Undead race by 10%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle, Lower +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18770# +Monster Bongun used to wear this hat with charm attached as a point. It has been remodeled for extra effect. +-------------------------- +Decreases damage taken from Demon race monsters by 10%. +-------------------------- +Refine Level +7: +Increases Physical Damage against monsters of Demon race by 10%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper, Middle, Lower +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18771# +A mask worn by the dark hero of sad love story. Look into it you can feel his sadness. +-------------------------- +ATK +5 +MATK +5 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +18772# +Fancy glasses helps you see long distances. Made with compressed glass. +-------------------------- +DEX +1 +Increases Ranged Physical Damage by 1%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Archer +# +18773# +A fish fin looking helm that protects Swordmen. This doesn't help you breathe under water. +-------------------------- +MaxHP +300 +additional MaxHP given based on character's Base Level. +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 65 +Swordman classes +# +18774# +Dark mask for famous assassins. Calms you down just by wearing it. +-------------------------- +Crit +1 +Increases critical damage on targets by 1%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +Assassin and Priest +# +18775# +Steel made mask. Focussing on utility only. Protects your face from any kind of fire impacts. +-------------------------- +DEX +5 +LUK +5 +-------------------------- +Decreases damage taken from Fire elemental attacks by 10%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle, Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Merchant +# +18776# +An accessory blessed by a Super Novice guardian angel. +-------------------------- +Increases SP Recovery Rate by 30%. +-------------------------- +When equipped with Modified Angelic Cardigan: +ATK +10 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Novice +# +18777# +Genie's Lamp Replica. There is still Genie's spirit inside. +-------------------------- +LUK +10 +-------------------------- +Type: Headgear +Position: Upper +Defense: 3 +Weight: 10 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: Base Level 1 +Usable By: All Jobs +# +18778# +A cute bunny band with pink color. +-------------------------- +LUK +2 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18779# +RWC Crown of victory. +-------------------------- +All Stats +7 +MDEF +5 +-------------------------- +Prevents Stun, Curse and Blind status. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +18780# +RWC Crown of victory. +-------------------------- +All Stats +5 +MDEF +3 +-------------------------- +Prevents Stun and Curse status. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +18781# +RWC Crown of victory. +-------------------------- +All Stats +3 +MDEF +1 +-------------------------- +Prevents Curse status. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +18782# +Beautiful wings with dexterous power within. +-------------------------- +DEX +2 +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18783# +Once used by eastern dynasty princess on marriage. +-------------------------- +INT +1 +MDEF +10 +-------------------------- +Enables the use of Level 1 Spell Breaker. +-------------------------- +Increases SP Consumption by 50%. +-------------------------- +Refine Level +6: +Every Refine Reduces SP cost of all skills by 10%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +18784# +A horns that possess powerful magic. +-------------------------- +INT +2 +-------------------------- +Increases Magical Damage against monsters of Demi-Human race by 5%. +-------------------------- +Refine Level +7: +Increases Magical Damage against monsters of Demi-Human race by 5%. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +18785# +A hat made in honor of the warrior King Poring. +-------------------------- +DEX +1 +LUK +1 +-------------------------- +For each Refine Level above +5: +DEX +1 +LUK +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18786# +A golden mask which was rumored to have been worn by that the god of wind Njord. +-------------------------- +Increases Magical Damage with Wind element by 4%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +18787# +This mask calls the urge to hold a weapon in one's hand and hurt people on the 13th of every month. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 8%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle, Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +18788# +Fancy glasses helps you see long distances. Made with compressed glass. +-------------------------- +DEX +1 +-------------------------- +Increases Ranged Physical Damage by 1%. +-------------------------- +Base Level at least 100: +Increases Ranged Physical Damage by 1%. +-------------------------- +Base Level at least 150: +Increases Ranged Physical Damage by 1%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +18789# +A replica hat of monster Poison Spore. +-------------------------- +Random chance a defeated Plant monster will drop Mushroom Spore or Poison Spore. +Every 2 Refine, the drop chances is increased. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +18790# +Colorful Poring hat, make all people love it. +-------------------------- +ATK +5% +MATK +5% +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18791# +A ribbon once worn by a shrine maiden as she fought off hordes of demons and youkai. +Wearing it demonstrates - and rewards - your resolve to follow the same path. +-------------------------- +Increases damage of Magnus Exorcismus by 30%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Magnus Exorcismus by 5%. +-------------------------- +Refine Level +7: +Random chance to auto-cast learned Level of Heal on wearer when receive physical or magical attack. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 1%. +-------------------------- +Type: Headgear +Defense: 30 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +18792# +A proud sakkat of Indonesian independence fighter. +-------------------------- +VIT +10 +ATK +5% +MATK +5% +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +All Jobs except Novice +# +18793# +A hat that promotes a sophisticated yet sleepy look. It once belonged to an ancient magician who was well known for her vast knowledge and lazy behaviour, to the point she was nicknamed The Great Unmoving Library. +-------------------------- +MDEF +10 +-------------------------- +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by 50%. +-------------------------- +Refine Level +7: +Increases damage of Spell Fist by 25%. +-------------------------- +Refine Level +9: +ASPD +5 +-------------------------- +Type: Headgear +Defense: 25 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +18794# +Just an ordinary black magician's hat. For some reason, you feel somewhat extraordinary while wearing it. +-------------------------- +Increases damage of Crimson Rock, Jack Frost, Earth Strain and Chain Lightning by 5%. +-------------------------- +Ignores magical defense of Normal class by 10%. +For each Refine Level: +Ignores magical defense of Normal class by 2%. +-------------------------- +Refine Level +7: +Increases damage of Crimson Rock, Jack Frost, Earth Strain and Chain Lightning by 5%. +-------------------------- +Refine Level +9: +MATK +5% +-------------------------- +Type: Headgear +Defense: 15 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Warlock +# +18795# +A hat named after the mysterious bird that sings at night. It's song is used to cause night blindness to mask its true form in order to eat humans that stray too deep into the forest. +-------------------------- +Decreases Fixed Casting Time by 5% For each Level of Voice Lessons learned. +-------------------------- +Refine Level +7: +Increases damage of Severe Rainstorm by 25%. +-------------------------- +Refine Level +9: +MaxSP +200 +-------------------------- +Type: Headgear +Defense: 15 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Wanderer +# +18796# +All Stats +2 +Prevents Curse status. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +18797# +A beautiful featherlike hat made by feathers of angels. +It makes you high with its tenderness and you can move very pleasantly. +-------------------------- +AGI +1 +LUK +1 +DEX +3 +-------------------------- +Reduces damage taken from Demon race enemies by 3%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: +All Jobs +# +18798# +A beautiful featherlike hat made by feathers of angels. +It makes you high with its tenderness and you can move very pleasantly. +-------------------------- +AGI +1 +LUK +1 +DEX +3 +-------------------------- +Reduces damage taken from Demon race enemies by 3%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +Tier: 4 +-------------------------- +Requirement: +All Jobs +# +18799# +A golden mask once used by God of Water. +-------------------------- +Increases Magical Damage with Water element by 4%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +Tier: 4 +-------------------------- +Requirement: +Base Level 10 +# +18800# +A golden mask once used by God of Earth. +-------------------------- +Increases Magical Damage with Earth element by 4%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +18801# +An ornament imbued with the spirit of Wind. +-------------------------- +INT +2 +-------------------------- +Enables the use of Level 3 Lightning Jolt. +-------------------------- +Decreases damage taken from Wind elemental attacks by 15%. +-------------------------- +Refine Level +9: +Decreases damage taken from Wind elemental attacks by 5%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: None +# +18802# +MaxHP +5% +-------------------------- +Refine Level +5: +MaxHP +1% + +For each Refine Level: +MaxSP -2% +-------------------------- +Refine Level +10: +MaxHP +4% +MaxSP -3% +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18803# +The special hunting cap with lace. +-------------------------- +Decreases SP Consumption by 5%. +-------------------------- +Base DEX at least 100: +Decreases SP Consumption by 5%. +-------------------------- +Base DEX at least 120: +Decreases SP Consumption by 5%. +-------------------------- +When equipped with Bloody Muffler: +Decreases SP Consumption by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18804# +Hairband made with magic thorns which only grows on top floor of tower. +-------------------------- +INT +1 +DEX +1 +-------------------------- +Increases Magical Damage against monsters of Fire, Wind, Water and Earth elemental by 5%. +-------------------------- +Refine Level +5: +Increases Magical Damage against monsters of Fire, Wind, Water and Earth elemental by 5%. +-------------------------- +When equipped with Thorn Staff of Darkness: +For each Refine Level of Thorn Staff of Darkness: +MATK +10 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18805# +Eclipse hat from lunatic leader. +-------------------------- +Luk +3 +Mdef +5 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18806# +a black-rabbit hat that might be in magic show +-------------------------- +AGI +3 +DEX +2 +-------------------------- +when getting attack, agi increase lv5 for himself. +-------------------------- +Type: Headgear +Defense: 2 +Position: Headgear +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18807# +The hat is made according to the shape of citron. It make people always to eat on it. +-------------------------- +LUK +3 +VIT +2 +-------------------------- +Decreases damage taken from Plant race by 10%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18808# +Everyone will feels your eye sight is shaper if you wear this glasses. +-------------------------- +AGI +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18809# +[bRO item] +# +18810# +Pumpkin Helmet created by the Undead World. Sometimes, Attack becomes reduced to undead. You can go to the kingdom of the Undead when wearing the Helmet. +-------------------------- +Decreases damage taken from Demon and Demi-Human race by 5%. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +18811# +A white snake imitation hat. +-------------------------- +Random chance to inflict Poison status on the target when dealing physical damage. +-------------------------- +Refine Level +6: +Increases the chance of inflicting Poison. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18812# +Crown made from Elder Branch. +-------------------------- +INT +2 +MDEF +5 +-------------------------- +Random chance a defeated Plant monster will drop Elder Branch. +-------------------------- +Refine Level +6: +Increases the drops chance of Elder Branch. +-------------------------- +Refine Level +9: +further increases the drops chance of Elder Branch. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18813# +A sunglasses that give futuristic feeling. +-------------------------- +Decreases After Skill Delay by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +18814# +The symbol of good student, it represents the enthusiastic in helping. +-------------------------- +VIT +1 +INT +2 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18815# +The symbol of naughty student, it represents the devil and troublesome. +-------------------------- +VIT +1 +STR +2 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18816# +The symbol of good student, it represents the enthusiastic in helping. +-------------------------- +VIT +2 +INT +2 +LUK +1 +-------------------------- +When equipped with Red Pencil in Mouth and School Uniform: +MATK Increases according to Base Lv, (BaseLv 1/3, Maxmimum Lv150), EXP from monster +5%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18817# +The symbol of naughty student, it represents the devil and troublesome. +-------------------------- +VIT +2 +STR +2 +LUK +1 +-------------------------- +When equipped with Blue Pencil in Mouth and School Uniform: +ATK Increases according Base Lv (BaseLv 1/3, maximum Lv150), EXP from monster +5%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +18818# +The red pencil in the mouth. +-------------------------- +HIT +3 +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18819# +The blue pencil in the mouth. +-------------------------- +HIT +3 +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18820# +Sculpted out of Gray Shard and infused with Sakray's old, abandoned memories, this helm protects its wearer against holiness and fear. +-------------------------- +Decreases damage taken from 77777Holy elemental attacks by 3%. +-------------------------- +For each 2 Refine Levels: +Decreases damage taken from 77777Holy elemental attacks by 1%. +-------------------------- +Type: Headgear +Defense: 35 +Position: Upper +Weight: 45 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +3rd Classes +# +18821# +A feather decorated with elaborately bright colors to celebrate the 2012 RWC. +-------------------------- +MATK +1% +ATK +1%. +-------------------------- +For each Refine Level above +3: +MATK +1% +ATK +1%. +-------------------------- +When equipped with RWC Memorial Ring[0]: +For each 2 Refine Levels: +ATK +1%. +-------------------------- +When equipped with RWC Memorial Pendant[0]: +For each 2 Refine Levels: +MATK +1% +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18822# +Wing-like ears made of burning flames. +-------------------------- +Random chance to auto-cast Level 1 Magnum Break when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +18823# +A wing ornaments made of wings of Griffon. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Decreases damage taken from Wind elemental attacks by 5%. +-------------------------- +Base AGI at least 108: +ASPD +1 +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +When equipped with Imperial Spear and Imperial Guard: +Increases damage of Cannon Spear, Shield Press and Banishing Point by 20%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +18824# +Recover a certain amount of HP and SP with a certain chance when dealing physical or magical attack. +When equipped with Bankruptcy of Heart: MaxHP +100, +1% Neutral element resistance per 1 Refine Level for Bankruptcy of Heart. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle, lower +Weight: 49 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 49 +# +18825# +INT +1 +DEX +1 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 38 +# +18826# +VIT +2 +INT +2 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18827# +A holy circlet symbolized Valkyrie's apprentice which punish all the evil people. +-------------------------- +STR +1 +-------------------------- +Increases Physical Damage against enemies of Shadow element and Demon race by 10%. +-------------------------- +When equipped with Ears of Angel's Wing: +Adds a chance of transforming wearer into Randgris when dealing physical damage. +Increases transformation chance per 1 Refine Level. +While transforming into Randgris, lose 30 HP per every sec, HIT -10, nomal physical attacks excluding skills can be splashed up to 9 slots. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +18828# +The special headgear made for RMSC2012 Champion +-------------------------- +All Stats +5 +MDEF +5 +-------------------------- +Increases movement speed. +-------------------------- +Enables the use of Level 1 Teleport. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 20 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +18829# +The special headgear made for RMSC2012 1st Runner Up. +-------------------------- +All Stats +4 +MDEF +5 +-------------------------- +Increases movement speed. +-------------------------- +Enables the use of Level 1 Teleport. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 20 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +18830# +The special headgear made for RMSC2012 2nd Runner Up. +-------------------------- +All Stats +3 +MDEF +5 +-------------------------- +Increases movement speed. +-------------------------- +Enables the use of Level 1 Teleport. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 20 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +18831# +The special headgear made for RMSC2012 finalist. +-------------------------- +All Stats +2 +MDEF +5 +-------------------------- +Increases movement speed. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 20 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 95 +# +18832# +A celebration hat for the sworn of 666th Gigue family grand master. +-------------------------- +Certain chance of activating 2 LV Adrenalin Rush skill when performing physical attack. +2 LV Adrenalin Rush skill activation chance goes up when playing with Cute pet, Baphomet Jr.. +Extra 2 LV Adrenalin Rush skill activation chance goes up when friendly rate is 'best friend'. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18833# +A brand-new hairband designed by combining flower wreaths and Marine. +-------------------------- +All Stats +1 +MDEF +2 +-------------------------- +Random chance to auto-cast Level 3 Frost Diver when receiving physical damage. +-------------------------- +Random chance to auto-cast Level 5 Cold Bolt when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +18834# +A Sakura-shaped hairband. +-------------------------- +LUK +3 +-------------------------- +Random chance to auto-cast Level 3 Assumptio on wearer when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +18835# +A hat to celebrate 10th anniversary of RO. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18836# +A hat to celebrate 10th anniversary of RO. +-------------------------- +MaxHP +100 +MaxSP +10 +MDEF +10 +-------------------------- +For each Refine Level: +MaxHP +100 +MaxSP +10 +ATK +1 +MATK +1 +-------------------------- +Refine Level +10: +ATK +10 +MATK +10 +HIT +10 +FLEE +10 +Critical +10 +Decreases Fixed Casting Time by 10%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18837# +A whistle to cheer you up! +-------------------------- +STR +2 +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18838# +A hat applied a special engine which can move Angelring's wings. This engine seems to have a myterious function. +-------------------------- +All Stats +1 +ATK +2 +MATK +2 +-------------------------- +Additional ATK, MATK + 2 per 1 refine grade. +-------------------------- +Transform into Angelring for 5 sec by a certain chance when attacking physically or magically. +-------------------------- +When transforming with a phycial attack, ASPD +2 for 5 sec. +-------------------------- +When transforming with a magical attack, decrease Floating Casting time for 5 sec. +-------------------------- +Transformation success chance will be increased per each refine grade. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 35 +Armor Level: 1 +-------------------------- +Requirement: None +# +18839# +Cute Poring-shaped pink sunglasses. It can protect your eyes from sunshines and even look cute. +-------------------------- +DEX +1 +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18840# +A hat imitating the King of Poring. +-------------------------- +MDEF +10 +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 35 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18841# +Small Porings are so cute. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 2%) for every 3 Refine Level. +-------------------------- +Increases experience gained from defeating monsters by 3%. +-------------------------- +Refine Level +10: +ASPD +1 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 35 +Armor Level: 1 +-------------------------- +Requirement: None +# +18842# +Hat to protect you from the Sun. +-------------------------- +MaxHP -3% +-------------------------- +For each 3 Refine Levels: +INT +2 +-------------------------- +Decreases damage taken from Demi-Human race by 7%. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 35 +Armor Level: 1 +-------------------------- +Requirement: None +# +18843# +Porings are having a party. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +For each Refine Level above +8: +MaxHP +1% +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 35 +Armor Level: 1 +-------------------------- +Requirement: None +# +18844# +Blue Porings fly to the sky. +-------------------------- +All Stats +2 +Perfect Dodge +2 +-------------------------- +Type: Headgear +Defense: 5 +Position: Lower +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18845# +Kiss of Banshee Master. It could give the powerful force. +-------------------------- +MaxSP +3% +-------------------------- +Adds 1% chance of reducing damage taken from Player by 100% for 3 seconds when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 5 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18846# +There is rumor that this protector contain a Seagod's power. +-------------------------- +Decreases physical damage taken from Water elemental by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +18847# +A hat with pirate symbol on it. +-------------------------- +VIT +1 +-------------------------- +Increases Physical Damage against enemies of Water elemental by 2%. +-------------------------- +Decreases physical damage taken from Water elemental by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Water elemental by 3%. +-------------------------- +Refine Level +9: +Decreases physical damage taken from Water elemental by 3%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +18848# +Nobody knows when this beautiful rose was picked and decorated, but it has still managed to keep its freshness all this time. +-------------------------- +MATK +20 +-------------------------- +For each Refine Level: +MATK +1 +-------------------------- +Recovers 100 HP each time an enemy is killed with a magic attack. +Drains 50 HP from the user every 5 seconds. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: None +# +18849# +A luxurious ribbon with golden border, has been abandoned by Kimi for a long tme ago. +-------------------------- +DEX +3 +MATK +40 +-------------------------- +For each Refine Level: +MATK +1 +-------------------------- +Recover 200 HP when killing enemy with magical attack. +-------------------------- +Drain 50 HP every 5 second when equipped. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: None +# +18850# +Christmas hat that Raccoon Hooray team 'borrowed' from Santa. +It is very helpful for the Raccoons to keep warm since they're currently homeless. +-------------------------- +AGI +1 +DEX +1 +MDEF +3 +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18851# +It feel stronger than usual. +The source of power is love. +-------------------------- +MaxHP +5% +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +18852# +A delicious strawberry, so delicious that you'd rather put in on your head than eat it? +-------------------------- +All Stats +1 +-------------------------- +Refine Level +12: +ASPD +2 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18853# +A delicious strawberry, so delicious that you'd rather put in on your head than eat it? +-------------------------- +All Stats +1 +-------------------------- +Refine Level +12: +ASPD +2 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18854# +It feel stronger than usual. +The source of power is love. +-------------------------- +MaxSP +5% +-------------------------- +For each 2 Refine Levels: +MaxSP +1% +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +18855# +A hat of Santos Dumont, a Brazilian aviation pioneer. +-------------------------- +AGI +3 +INT +3 +-------------------------- +Random chance to enchant equipped weapon with Wind elemental for 3 minutes when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18856# +A hat inspired by Eddga. It has been dyed white to give it an edgier appearance. +-------------------------- +STR +2 +DEX +2 +-------------------------- +Increases physical damage on Brute race targets by 10%. +Increases physical damage on Doram race targets by 10%. +-------------------------- +Adds a 0.3% chance of buffing the user for 3 seconds when performing a physical attack per upgrade level if the item.; Atk + 25 per upgrade level of the item, Drains 5 SP from the user every second. +-------------------------- +Adds a 0.1% chance of buffing the user for 3 seconds when receiving a physical attack per upgrade level if the item.; Atk + 25 per upgrade level of the item, Drains 5 SP from the user every second. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +18857# +A Curupira-shaped hat, who protects the woods and animals. Their whistle scare all hunters who don't respect the woods and it finally makes them confused and lose his way. +-------------------------- +DEX +3 +-------------------------- +Random chance to inflict Confuse status on attacker when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 20 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18858# +A mysterious angelring balloon. +-------------------------- +MaxHP +200 +Aspd + 1 +-------------------------- +Type: Headgear +Defense: 5 +Position: Lower +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18859# +We shall fly far higher in the sky flapping big Angel ring. +-------------------------- +DEX +1 +-------------------------- +Type: Headgear +Defense: 5 +Position: Lower +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18860# +A hat that protect child's head from sunlight. +-------------------------- +MaxHP +500 +-------------------------- +Decreases damage taken from Fire elemental attacks by 5%. +-------------------------- +Refine Level +6: +Decreases damage taken from Fire elemental attacks by 5%. +-------------------------- +When equipped with Shoes of Hope: +Increases recovery amount gained from Healing skills and items by 5%. + +Base Level is below 80: +Increases movement speed. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18861# +Another version of a doll that resembles the angel Zaha. +-------------------------- +Increases Healing skills effectiveness by 15%. +-------------------------- +Increases SP Consumption by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +18862# +A suit of armor blessed by god of war. +Permanently grants Shadow element on wearer. +-------------------------- +MDEF +5 +-------------------------- +Type: Armor +Defense: 55 +Element: Shadow +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +18863# +This robe was once worn by a famous exorcist, it instantly improves your resistance against unholy creatures. +-------------------------- +MDEF +5 +-------------------------- +For each 3 Refine Levels: +Decreases damage taken from Demon race monsters by 5%. +-------------------------- +When equipped by Acolyte classes: +Decreases damage taken from Shadow elemental attacks by 10%. +-------------------------- +Type: Armor +Defense: 57 +Weight: 170 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +18864# +This flower decoration is blessed by the goddess of Earth, granting its wearer protection against Earth damages. +-------------------------- +VIT +2 +-------------------------- +Enables the use of Level 5 Earth Spike. +-------------------------- +Decreases damage taken from Earth elemental attacks by 15%. +-------------------------- +Refine Level +8: +Decreases damage taken from Earth elemental attacks by 5%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: None +# +18865# +A crown given to sword saint whose master of any weapons. +-------------------------- +Base Level at least 50: +ATK +5 +-------------------------- +Base Level at least 100: +ATK +10 +-------------------------- +Base Level at least 150: +ATK +15 +-------------------------- +When mastered Level 10 Sword Mastery: +HIT +10 +-------------------------- +When mastered Level 10 Two-Handed Sword Mastery: +Decreases SP Consumption by 5%. +-------------------------- +When mastered Level 10 Spear Mastery: +Decreases After Skill Delay by 10%. +-------------------------- +When mastered Level 10 Axe Mastery: +Decreases Variable Casting Time by 15%. +-------------------------- +When mastered Level 10 Katar Mastery: +Increases Critical Damage by 20%. +-------------------------- +When mastered Level 10 Mace Mastery: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +When equipped with Mysteltainn Card: +Increases Physical Damage against enemies of Small size by 5%. +-------------------------- +When equipped with Tirfing Card: +Increases Physical Damage against enemies of Medium size by 5%. +-------------------------- +When equipped with Executioner Card: +Increases Physical Damage against enemies of Large size by 5%. +-------------------------- +Type: Headgear +Defense: 30 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +18866# +A silk hat of Owl Duke. It can boost magic attack powers. +-------------------------- +INT +1 +AGI +1 +-------------------------- +When attacking magically, Mystical Amplification LV 2 can be activated with a certain chance. +With more than 6 Refine Lv, the chance to activate Mystical Amplification will be increased based on Refine Level +With wearing One Eyed Glass, the chance to activate Mystical Amplification LV 2 will be increased. +With equipping Owl Baron Card, Mystical Amplification LV 4 can be activated with a certain chance. +With equipping Owl Baron Card and Owl Duke Card, Mystical Amplification LV 6 can be activated with a certain chance. +With equipping Walking Stick, the chance to activate Mystical Amplification will be increased pereach Refine Level +With more than 10 Refine Lv of Walking Stick, decrease 20% Variable Casting Time. +-------------------------- +Type: Headgear +Defense: 15 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +18867# +One of the holy weapons of Rudra, the God of storm. +-------------------------- +DEX +1 +-------------------------- +Increases Ranged Physical Damage by 2%. +-------------------------- +When equipped with Bow of Rudra: +Increases Ranged Physical Damage by 3%. +-------------------------- +When Bow of Rudra Refined to +7 or higher: +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 48 +# +18868# +A mask worn by a group of eastern assassins. It's shaped like a skull to notify targets of their imminent death. +-------------------------- +Critical +5 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle, Lower +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +18869# +Donut coated with sugar which preapared for Valentine's day. +-------------------------- +MaxHP +100 +-------------------------- +Increases recovery amount gained from Healing skills and Restorative items by 1%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18870# +When can put it in your mouth, you will feel its sweetness increases the strength of your body. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18871# +When can put it in your mouth, you will feel its sweetness increases the strength of your body. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18872# +The headgear is designed according to the curled of snake. +-------------------------- +STR +3 +INT +3 +MDEF +5 +-------------------------- +When equipped with Snake Ring: +For each Base Level: +ATK +1 +-------------------------- +When equipped with Snake Charm: +For each Base Level: +MATK +1 +-------------------------- +When equipped with Snake Ring and Snake Charm: +Random chance a defeated monster will drop Wild Snake Berry. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18873# +A heart-shaped yellow hat celebrating Valentine's Day. +-------------------------- +Refine Level +7: +MaxHP +4% +MaxSP +4% +-------------------------- +Refine Level +8: +MaxHP +5% +MaxSP +5% +-------------------------- +Refine Level +9: +MaxHP +6% +MaxSP +6% +-------------------------- +Refine Level +10: +MaxHP +7% +MaxSP +7% +Random chance to auto-cast Level 10 Blessing on wearer when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18874# +An aristrocratically stylish lense that is worn for only one eye. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18875# +An evil marching hat dyed black. +The power of evil dwells on weapons due to the power of evil. +-------------------------- +STR +2 +-------------------------- +Certain chance to auto-cast Enchant Poison lv.3 when dealing melee physical attack. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18876# +A shield used by the hero Achilles. +It is resistant to long-range attacks so that it is difficult to shoot it's weak spot. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken by long-range physical and magical attacks by 5%. +-------------------------- +Refine Level +6: +Decreases damage taken by long-range physical and magical attacks by 1% for every Refine Level. +-------------------------- +Type: Shield +Defense: 50 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +18877# +Patterned eye patch with Baron's Evil Eye. +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Increases SP Consumption by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +18878# +A hat worn by an elite group of guards who will fight fearlessly even in a hail of bullets. +-------------------------- ++5% resistance against Neutral attacks. ++5% resistance against Ranged attacks. +-------------------------- +Additional Neutral Resistance +1% per upgrade level at +6 and above. +Additional Ranged Resistance +1% per upgrade level at +6 and above. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 15 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +18879# +A Scorpion shaped hat. +-------------------------- +Have a chance to increase your damages and give the Poison status to your target. +-------------------------- +MDEF +5 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: None +# +18880# +Advanced Dark Snake Lord Hat. You can read vaguely words written by the emperor. +-------------------------- +All Stats +3 +MaxHP +5% +MaxSP +5% +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +All Jobs +# +18881# +A hat made of leaves from the world tree \ +. +-------------------------- +MDEF +2 +-------------------------- +Increases recovery amount gained from Healing skills and Restorative items by 5% +-------------------------- +Increases Healing skills effectiveness by 5%. +-------------------------- +Refine Level +7: +Increases Healing skills effectiveness by 10% +-------------------------- +When equipped with Ring of World Tree: +Decreases damage taken by every elemental attacks by 3%. +Increases Healing skills effectiveness by 5% +-------------------------- +Type: Headgear +Defense: 16 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +18882# +A headgear that is shaped like a gourd bowl used for drawing water. +-------------------------- +MDEF +5 +-------------------------- +Random chance to auto-cast Level 1 Deluge when receiving physical damage. +-------------------------- +Refine Level +3: +Random chance to auto-cast Level 1 Waterball when receiving physical damage. +For each 3 Refine Levels: +Waterball's Level increases by 1. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +18883# +Wearing this hat, it seems to control myself by Black Witch's magic. +-------------------------- +All Stats +3 +-------------------------- +Increases recovery amount gained from Mastela Fruit by 30%. +-------------------------- +Refine Level +10: +FLEE +2 +ASPD +1 +-------------------------- +Refine Level +14: +FLEE +2 +ASPD +1 +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +18884# +Because of its robustness, it is said that it does not need a shield and it is said that it has been named \ +. +A helmet that has been handed down from generation to generation. +-------------------------- +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Increases damage taken from magical attacks by 5%. +-------------------------- +Refine Level +6: +Decreases damage taken from Neutral elemental attacks by additional 1% For each Refine Level. +Certain chance to auto-cast Parry lv.1 when recieving melee physical attacks. +Parry will be activated with every weapon. +-------------------------- +Refine Level +7: +Increases the chance to auto-cast Parry for every Refine Level. +-------------------------- +When equipped with Tatenashi Armor: +DEF +15 for every Refine Level of Tatenashi Helmet. +For each Refine Level of Tatenashi Armor: +DEF +15 +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 15 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +18885# +colorful hat that was very popular during 2010-2011, loved by JeJemons. +-------------------------- +INT +3 +STR +2 +-------------------------- +Increases defense against Demi-Human by 11%. +-------------------------- +Increases the recovery effect from Mastela Fruit by 70%. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +18886# +A seven colored hat shaped like an octopus. Watch out! It is really dangerous. +-------------------------- +VIT +2 +DEX +2 +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18887# +A hairband that attracts individuals. +You can wear it when you want to look sexy. +Sexiness increases by 100% +-------------------------- +VIT +3 +MDEF +5 +MATK +2% +-------------------------- +Refine Level +9: +MATK +4% +MDEF +5 +-------------------------- +Refine Level +12: +Decreases Fixed Casting Time by 10%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18888# +A hairband that attracts individuals. +You can wear it when you want to look sexy. +Sexiness increases by 100% +-------------------------- +INT +5 +LUK +5 +ATK +2% +MATK +5% +-------------------------- +Refine Level +9: +ATK +4% +MATK +4% +-------------------------- +Refine Level +12: +Decreases Fixed Casting Time by 10%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18889# +A hairband that attracts individuals. You can wear it when you want to look sexy. Sexiness increases by 100%. +-------------------------- +AGI +5 +LUK +5 +ATK +5% + +If upgrade level is +5 or higher, +Adds a 2% chance to restore 5% of damage as HP when performing a physical attack. + +If upgrade level is +7 or higher, +ATK +5%. + +If upgrade level is +9, +ASPD +1 +-------------------------- +Class: Headgear +Position: Upper +Defense: 2 +Weight: 10 +Tier: 5 +Required Level: 1 +Usable By: All Jobs +# +18890# +A hairband that attracts individuals. You can wear it when you want to look sexy. Sexiness increases by 100%. +-------------------------- +INT +5 +LUK +5 +MATK +5% + +If upgrade level is +5 or higher, +Adds a 5% chance to restore 100 HP per second for 5 seconds when performing a magical attack. + +If upgrade level is +7 or higher, +MATK +5%. + +If upgrade level is +9, +FCT -10% +-------------------------- +Class: Headgear +Position: Upper +Defense: 2 +Weight: 10 +Tier: 5 +Required Level: 1 +Usable By: All Jobs +# +18891# +A hat made to look like a husky's face. Makes you want to pet it. +-------------------------- +ATK +5% +MATK +5% +-------------------------- +Random chance to auto-cast Level 5 Wind Walk when dealing physical damage. +For each Refine Level: +increases the auto-cast rate. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +18892# +I come in peace! Take me to your leader, Poring!!! +-------------------------- +FLEE +5 +HIT +5 +Critical +5 +Perfect Dodge +5 +MDEF +5 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 5%. +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18893# +I feel the power of a flame dragon flowing inside me! +-------------------------- +Decreases damage taken from Dragon and Demi-Human race by 8%. +-------------------------- +Increases recovery amount gained from Meat by 200%. +-------------------------- +Refine Level +12: +MaxHP +7% +MaxSP +3% +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18894# +\ +, + + - Robert Motherwell +-------------------------- +Decreases damage taken from Demi-Human by 5%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +18895# +\ +, + + - William Butler Yeats +-------------------------- +Decreases damage taken from Fire elemental attacks by 8%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +18896# +\ +, + + - William Hazzlit' +-------------------------- +Decreases damage taken from Fire elemental attacks by 8%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +18897# +\ + - Eleanor Roosevelt' +-------------------------- +Decreases damage taken from Water elemental attacks by 8%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +18898# +A gorgeous crown made with Trunk of Yggdrasil imbued with the power of Mother Nature to the heralds of Ragnarok Online. +-------------------------- +All Stat +5 +MaxHP +100 +MaxSP +50 +-------------------------- +For each Refine Level above +9: +MaxHP +1% +Decreases Fixed Casting Time by 1%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +18899# +Bright Blue Eyeshadow, quite conspicuous appearance. +-------------------------- +DEX +1, +VIT +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +18900# +These traditional sausages taste good when eaten with sweet mustard sauce. +-------------------------- +MaxHP +50 +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +18901# +A traditional hat which is often worn during folk festivals. +-------------------------- +VIT +3 +Increases HP Recovery Rate by 10%. +-------------------------- +When equipped with Weisswurst: +Increases SP Recovery Rate by 10%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +18903# +A unique rose that only blooms on frezen land. +-------------------------- +Increases damage of Storm Gust and Jack Frost by 3%. +-------------------------- +Increases SP Consumption by 5% +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18904# +A machoman's hairstyle whose never afraid of fighting anyone. +-------------------------- +Random chance to auto-cast Level 5 Provoke on the target when wearer dealing melee physical attacks. +-------------------------- +For each Refine Level equal or above +6: +Increases the rate of auto-casting Provoke. +-------------------------- +When equipped with Sunglasses: +Increases the rate of auto-casting Provoke. +-------------------------- +When equipped with Cigarette +Increases the rate of auto-casting Provoke. +-------------------------- +Type: Headgear +Defense: 15 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +18905# +A butterfly barrette with a cute design on both sides. +It looks like a butterfly resting its wings. +-------------------------- +Increases experience gained from defeating Insect race monsters by 5%. +-------------------------- +Increases damage recieved from Insect race by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +18906# +A holy rosary that is said to have been a fisherman chosen as the apostle of God. +If you look closely, you can see that the fish symbol is slightly carved. +-------------------------- +Increases Healing skills effectiveness by 3% +-------------------------- +When equipped with Phen Card: +Increases Healing skills effectiveness by 2% +Decreases Variable Casting Time by 15%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +18907# +A panda clinging to its master. Somehow you'd feel braver with it around. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases Physical Damage against enemies of Medium size by 10%. +-------------------------- +Refine Level +9: +Random chance to auto-cast Level 2 Scream when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +18908# +Piamette's red ears cap. It's a favorite among children. +-------------------------- +STR +5 +MaxHP +5% +-------------------------- +Decreases damage taken from Fire elemental by 10%. +-------------------------- +Refine Level +9: +ASPD +1 +-------------------------- +For each 2 Refine Level above +9: +ASPD +1 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18909# +Piamette's brown ears cap. It's a favorite among children. +-------------------------- +MaxHP +10% +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +For each Refine Level: +MATK +2 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18910# +Piamette's blue ears cap. It's a favorite among children. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases damage to Medium size by 10%. +-------------------------- +Refine Level +12: +Reflects physical damage by 5%. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18911# +Lovely petals dropping from a pair of red flowers. +-------------------------- +DEX +5 +-------------------------- +Decreases damage taken from Earth elemental by 3%. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Refine Level +12: +Reflects physical damage by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +18912# +A pigeon perched on his master's shoulder. +-------------------------- +All Stats +1 +-------------------------- +Random chance to auto-cast Level 1 Ruwach when receiving physical damage. +-------------------------- +When equipped with Angel Wings: +Increases experience gained from defeating monsters by 5%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18913# +A gossiping raven that talks all day long. +-------------------------- +All Stats +1 +-------------------------- +Random chance to auto-cast Level 1 Ruwach when receiving physical damage. +-------------------------- +When equipped with Grand Circlet: +Increases experience gained from defeating monsters by 5%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18914# +Baby Deviling that follows its master everywhere. +-------------------------- +All Stats +1 +-------------------------- +When performing a physical attack, there is a chance to cast Blessing Lv. 7 on yourself. +-------------------------- +Cannot be refined or destroyed. +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18915# +Scary but beautiful. Blood is still dripping from the wings, don't ask how it was acquired. +-------------------------- +MaxHP +200 +FLEE +1 +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18916# +A balloon shaped like a bear. It is often mistaken as a Poring. +-------------------------- +STR +1 +LUK +1 +MaxHP +50 +-------------------------- +Type: Headgear +Defense: 5 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18917# +It's a way of expressing love. It fills you with the giddy excitement that only new lovers feel or.. that could just be the helium. +-------------------------- +All Stats +1 +-------------------------- +Type: Headgear +Defense: 5 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18918# +A balloon shaped like an octopus. It sticks to its owner by using suckers. +-------------------------- +VIT +1 +INT +1 +MaxSP +30 +-------------------------- +Type: Headgear +Defense: 5 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18919# +A common familiar often summoned by vampires. Very useful in scouting danger ahead of time. +-------------------------- +FLEE +5 +-------------------------- +When equipped with Majestic Goat: +STR +3 +FLEE +5 +-------------------------- +Type: Headgear +Defense: 5 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18920# +An interesting hat made of felt that comes from a far-away land. +Worn by skilled soldiers, this hat brings a sense of confidence to the wearer. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Demi-Human race by 5%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Demi-Human race by 3%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18921# +A moroccan style lamp that has lucky powers in it. +Hmm, rubbing it doesn't seem to make any genies pop out... +-------------------------- +LUK +10 +-------------------------- +Type: Costume +Position: Upper +Weight: 20 +-------------------------- +Requirement: +Base Level 50 +# +18922# +A cute machi bear cap. +-------------------------- +All Stats +2 +-------------------------- +Increases Physical Damage against enemies of Demi-Human and Fish race by 10%. +-------------------------- +For each Refine Level above +9: +MaxHP +1% +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +18923# +A cute black cat ears. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +18924# +Fezzes are neat! For the traveling adventurer with time on his or her hands. +-------------------------- +DEX +2 +-------------------------- +Refine Level +8: +DEX +1 +-------------------------- +Refine Level +10: +DEX +2 +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18925# +Hand-frying tools. It is said that the god of wind used it. +-------------------------- +MaxHp +5% +MaxSp +3% +-------------------------- +Decreases damage taken from Ranged Physical Damage by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +18926# +It's made to imitate fluffy green foxtail. +-------------------------- +Increases damage of Heaven's Drive and Earth Strain by 3%. +-------------------------- +Increases SP Consumption by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +18929# +A hat that is shaped like the biggest land mammal. +-------------------------- +DEX +2 +-------------------------- +Random chance to auto-cast Level 5 Storm Gust when receiving physical damage. +-------------------------- +Refine Level +8: +DEX +1 +-------------------------- +For each 2 Refine Level above +8: +DEX +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18930# +A hat that is shaped like the biggest primate in Africa. +-------------------------- +STR +2 +-------------------------- +Adds a chance of casting Level 1 Bowling Bash when performing a physical attack. +-------------------------- +If upgrade level is +8 or higher: +STR +3 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18931# +A hat shaped like the predatory feline mammal that is popularly known as the king of the beasts. +-------------------------- +INT +2 +-------------------------- +Random chance to auto-cast Level 5 Meteor Storm when receiving physical damage. +-------------------------- +Refine Level +8: +INT +1 +-------------------------- +For each 2 Refine Level above +8: +INT +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18932# +A hat shaped like the equine mammal that is naturally armed with thick skin and strong, intimidating horns. +-------------------------- +VIT +2 +-------------------------- +Random chance to auto-cast Level 5 Lord of Vermilion when receiving physical damage. +-------------------------- +For each Refine Level above +7: +VIT +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18933# +A hat with mixed decorations between machine and plant. +-------------------------- +DEX +2 +MDEF +7 +-------------------------- +Increases damage of Spore Explosion by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Spore Explosion by 5%. +-------------------------- +When equipped with Pipe: +Decreases After Skill Delay by 5%. +-------------------------- +When equipped with Clock Tower Manager Card: +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +# +18934# +A cute headgear that imitate the ears of fox with small bells attached on it. +-------------------------- +AGI +2 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Random chance to transform wearer into Moonlight Flower for 5 seconds when receiving physical damage. +-------------------------- +For each Refine Level: +Increases transforming chance. +-------------------------- +During transformation: +Critical +100 +Increases Ranged Physical Damage by 5%. + +For each Refine Level equal or above +6: +Increases Ranged Physical Damage by 1%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +18935# +Never look back! There is...Something... +-------------------------- +Perfect Dodge +8 +-------------------------- +Increases movement speed. +-------------------------- +Random chance to inflict Fear and Curse status on wearer when receiving physical or magical attack. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +18936# +Energy from the sea spreads throughout your body and make the wearer feel like they would fly through the sky. +-------------------------- +All Stats +2 +ATK +10, MATK +10 +-------------------------- +EXP earned increases by 2% +Damage from Fish type enemy decreases by 2%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18937# +A mechanical doll part that created by husband that cherished his died wife. +-------------------------- +MaxHP +2% +MDEF +7 +-------------------------- +When equipped with Vesper Core 1: +INT +8 +MaxSP +5% +-------------------------- +When equipped with Vesper Core 2: +STR +7 +ATK +20 +-------------------------- +When equipped with Vesper Core 3: +AGI +7 +FLEE +15 +-------------------------- +When equipped with Vesper Core 4: +DEX +7 +HIT +10 +-------------------------- +When equipped with Vesper Gear 1: +MaxSP +5% +For each 20 Base Level: +INT +1 +-------------------------- +When equipped with Vesper Gear 2: +MaxHP +5% +For each 20 Base Level: +STR +1 +-------------------------- +When equipped with Vesper Gear 3: +Increases Attack Speed (Decreases After Attack Delay by 5%). +For each 20 Base Level: +AGI +1 +-------------------------- +When equipped with Vesper Gear 4: +Decreases Variable Casting Time by 5%. +For each 20 Base Level: +DEX +1 +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18938# +A universe that spread overhead. +-------------------------- +INT +1 +-------------------------- +Decreases damage taken from Meteor Storm and Crimson Rock by 20%. +-------------------------- +Decreases damage taken from Comet by 5%. +-------------------------- +For each Refine Level equal or above +6: +Decreases damage taken from Meteor Storm and Crimson Rock by 2%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Meteor Storm and Crimson Rock by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +18939# +A cute beret based on Nekomimi. Close enough to cat. +-------------------------- +Increases recovery amount gained from Fresh Fish by 75%. +-------------------------- +When equipped with Whikebain's Black Tail: +Random chance to transform wearer into Wild Rose for 5 seconds when dealing physical damage. +During transformation: +All Stats +8 + +For each Refine Level of Black Cat Ears Beret: +Increases the trigger chance. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +Tier: 6 +-------------------------- +Requirement: +Base Level 1 +# +18940# +A hat with sealed force of false fire god. +-------------------------- +Decreases damage taken from Fire elemental attacks by 5%. +-------------------------- +Increases damage taken from Water elemental attacks by 5%. +-------------------------- +Random chance to inflict Burning status on the enemy when wearer receiving physical or magical attack. +-------------------------- +Random chance to Reduces enemy's SP by 30 when wearer receiving physical or magical attack. +-------------------------- +When equipped with Shining Trapezohedron: +ATK +9%. +MATK +9%. +Decreases damage taken from Demi-Human race by 5%. + +Refine Level +7: +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +18941# +A hat with sealed force of false wind god. +-------------------------- +Decreases damage taken from Wind elemental attacks by 5%. +-------------------------- +Increases damage taken from Earth elemental attacks by 5%. +-------------------------- +Random chance to inflict Fear status on the enemy when wearer receiving physical or magical attack. +-------------------------- +Random chance to Decreases enemy's SP by 30 when wearer receiving physical or magical attack. +-------------------------- +When equipped with Shining Trapezohedron: +Decreases damage taken from Ranged Physical Damage by 5%. +Decreases damage taken from magical attacks by 5%. +Decreases damage taken from Demi-Human race by 5%. + +Refine Level +7: +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +18942# +A hat with sealed force of false water god. +-------------------------- +Decreases damage taken from Water elemental attacks by 5%. +-------------------------- +Increases damage taken from Wind elemental attacks by 5%. +-------------------------- +Random chance to inflict Frozen status on the enemy when wearer receiving physical or magical attack. +-------------------------- +Random chance to Reduces enemy's SP by 30 when wearer receiving physical or magical attack. +-------------------------- +When equipped with Shining Trapezohedron: +Decreases Variable Casting Time by 15%. +Decreases damage taken from Demi-Human race by 5%. + +Refine Level +7: +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +18943# +A hat with sealed force of false Earth god. +-------------------------- +Decreases damage taken from Earth elemental attacks by 5%. +-------------------------- +Increases damage taken from Fire elemental attacks by 5%. +-------------------------- +Random chance to inflict Deep Sleep status on the enemy when wearer receiving physical or magical attack. +-------------------------- +Random chance to Reduces enemy's SP by 30 when wearer receiving physical or magical attack. +-------------------------- +When equipped with Shining Trapezohedron: +MaxHP +5%, +White Slim Potion recovers 10% more HP. +Decreases damage taken from Demi-Human race by 5%. + +Refine Level +7: +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +18944# +A balloon made after a small and shy devil. +-------------------------- +All Stats +1 +-------------------------- +Increases Physical Damage against monsters of Demon race by 1%. +-------------------------- +Increases Magical Damage against monsters of Demon race by 1%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +18945# +Nothing you need to worry in the World when you wear this on your head. +-------------------------- +DEX +2 +INT +2 +MaxHP +2% +MaxSP +30 +FLEE -1 +MDEF +3 +-------------------------- +Enables the use of Level 1 Magnificat. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18946# +Nothing you need to worry in the World when wear this on your head. +-------------------------- +STR +2 +LUK +2 +MaxHP +1% +MaxSP +15 +FLEE -1 +MDEF +3 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18947# +A pipe once used by a great ninja. Contains fire power. +-------------------------- +Decreases SP Consumption of Flaming Petals by 5. +-------------------------- +Decreases Variable Casting Time of Blaze Shield by 10%. +-------------------------- +Increases damage of Exploding Dragon by 20%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +Ninja +# +18948# +A pipe once used by a great ninja. Contains water power. +-------------------------- +Decreases SP Consumption of Freezing Spear by 5. +-------------------------- +Decreases Variable Casting Time of Watery Evasion by 10%. +-------------------------- +Increases damage of Snow Flake Draft by 20%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +Ninja +# +18949# +A pipe once used by a great ninja. Contains wind power. +-------------------------- +Decreases SP Consumption of Wind Blade by 5. +-------------------------- +Decreases Variable Casting Time of Lightning Jolt by 10%. +-------------------------- +Increases damage of First Wind by 20%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +Ninja +# +18950# +Anniversary Balloon of XIII generation of Gearhard Von Deviruchi. +-------------------------- +INT +1 +DEX +1 +MATK +5% +-------------------------- +Base INT at least 99: +MATK +2% +-------------------------- +Base INT at least 120: +MATK +3% +-------------------------- +When you have cute pet Deviruchi: +Decreases After Skill Delay by 2% +-------------------------- +When intimacy is Cordial: +Decreases After Skill Delay by 3% +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18951# +A symbol of underground leader. +-------------------------- +Increases experience gained from defeating Undead race monsters by 5%. +-------------------------- +Decreases damage taken from Undead race by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +18952# +It whispering to you...\ +. +-------------------------- +Enables the use of Level 1 Flasher. +-------------------------- +Random chance to inflict Stun status on the target when dealing physical damage. +-------------------------- +Base Level at least 100: +Increases inflicting rate. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18953# +A newly crafted cap. +It's already quite powerful but can still be Refined, more power the better. +Happy 10th Anniversary pRO! +-------------------------- +STR +2 +INT +2 +DEX +2 +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases recovery amount gained from White Potion, Siege White Potion and White Slim Potion by 50%. +-------------------------- +Refine Level +10: +Decreases damage taken from Demi-Human race by 5%. +Increases recovery amount gained from White Potion, Siege White Potion and White Slim Potion by 50%. +-------------------------- +Refine Level +12: +MaxHP +5% +MaxSP +2% +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 25 +# +18954# +An elegant yet cute hat for a girl. +-------------------------- +Random chance to auto-cast Level 1 Increase Agility on wearer when dealing physical or magical attack. +-------------------------- +Random chance to auto-cast Level 1 Lex Aeterna on attacker when wearer attacked by physical or magical attack. +-------------------------- +For each 3 Refine Levels: +Increases activation rate of Lex Aeterna. +-------------------------- +Type: Headgear +Defense: 15 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +18955# +A hat which symbolizes Pirate's foolishness. +-------------------------- +Random chance to absorb 6% of damage inflicted into HP when dealing physical damage. +Random chance to absorb 2% of damage inflicted into SP when dealing physical damage. +-------------------------- +When equipped with Cool Pirate Eye Patch: +MaxHP +500 +MaxSP +30 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18956# +Colorful sugar sprinkled above on a delicious chocolate. +-------------------------- +Str +1 +Int +1 +Luk +1 +-------------------------- +Class: Headgear +Position: Lower +Defense: 0 +Weight: 10 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +18959# +It seems this 'hat' has been abandoned for a long time in rice field and became pink? +-------------------------- +Decreases damage taken from Players by 13%. +-------------------------- +When equipped with Steel Chonchon Card: +Prevents Frozen. +Random chance to inflict Freeze status to all enemies in 11x11 cells when wearer receiving physical or magical attack. +-------------------------- +When equipped with Sandals [1] and Steel Chonchon Card: +MaxHP +4% +MaxSP +4% +-------------------------- +For each Refine Level of Sandals [1]: +MaxHP +1% +MaxSP +1% +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 120 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18961# +A hat made after fluffy monster Lunatic. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18962# +Cute panda balloon! +-------------------------- +ASPD +1 +All Stats +2 +-------------------------- +Exp&Drop +5% +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18963# +A hat made after pretty mocking bird. +-------------------------- +LUK +1 +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18964# +A crown with sacred aura all over it. +-------------------------- +All Stats +2 +-------------------------- +Enables the use of Level 1 Cure and Level 1 Status Recovery. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18965# +A foam on face for a better razor cutting. +-------------------------- +Increases resistance against Bleeding status by 30%. +-------------------------- +Random chance to auto-cast Level 1 Quagmire when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 80 +# +18967# +A 'Poring' jinn who makes wishes come true hovers around. +-------------------------- +STR +1 +INT +1 +LUK +1 +-------------------------- +Class: Headgear +Position: Lower +Defense: 5 +Weight: 5 +Requires Level: 1 +Usable By: All Jobs +# +18968# +A 'Marine' jinn who makes wishes come true hovers around. +-------------------------- +INT +1 +DEX +1 +MaxHP +100 +ATK +5 +MATK +5 +-------------------------- +Type: Headgear +Defense: 5 +Position: Lower +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18969# +A cute design hat with BOSS wearing beret on top of it. +-------------------------- +Decreases damage taken from Small, Medium and Large size by 5%. +-------------------------- +For each Refine Level above +6: Decreases damage taken from Small, Medium and Large size by 1%. +-------------------------- +Refine Level +10: +Decreases damage taken from Small, Medium and Large size by 10%. +-------------------------- +When equipped with 11th Anniversary Card: +Perfect Dodge +5 +-------------------------- +Refine Level +7: +Perfect Dodge +1 +-------------------------- +Refine Level +9: +Perfect Dodge +1 +-------------------------- +Refine Level +10: +Perfect Dodge +3 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +18970# +A zodiac cat got fooled by rat, back to the moon to train. +-------------------------- +All Stats +3 +-------------------------- +Enables the use of Level 1 Monster's Cry. +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +For each 2 Refine Levels: +Decreases Variable Casting Time by 1%. +Decreases After Skill Delay by 1%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +18971# +An old, abandoned rune circlet that emanates a mysterious aura. +-------------------------- +All Stats +1 +MDEF +5 +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +MaxSP +1% +Increases damage of Ignition Break by 20%. +Increases damage of Hundred Spear by 15%. +-------------------------- +For each 5 Refine Levels: +ASPD +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 170 +Rune Knight +# +18972# +An old, abandoned mitra that emanates a mysterious aura. +-------------------------- +All Stats +1 +MDEF +5 +-------------------------- +For each Refine Level: +ATK +4 +MATK +2 +Increases Healing skills effectiveness by 2%. +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +MaxSP +1% +Increases damage of Judex by 20%. +Increases damage of Magnus Exorcismus by 10%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 170 +Archbishop +# +18973# +An old, abandoned driver band that emanates a mysterious aura. +-------------------------- +All Stats +1 +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +MaxSP +1% +Increases damage of Power Swing and Axe Tornado by 20%. +-------------------------- +For each 5 Refine Levels: +ASPD +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 170 +Mechanic +# +18974# +An old, abandoned driver band that emanates a mysterious aura. +-------------------------- +All Stats +1 +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +MaxSP +1% +Increases damage of Arms Cannon by 15%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Self-Destruction by 10%. +-------------------------- +For each 5 Refine Levels: +ASPD +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 170 +Mechanic +# +18975# +An old, abandoned shadow handicraft that emanates a mysterious aura. +-------------------------- +All Stats +1 +-------------------------- +For each Refine Level: +ATK +4 +MATK +4 +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +MaxSP +1% +Increases damage of Triangle Shot by 25%. +-------------------------- +Refine Level +6: +Decreases Masquerade Enervation and Masquerade Unlucky skill cooldown by 1 second. +-------------------------- +Refine Level +8: +Decreases Masquerade Laziness and Masquerade Weakness skill cooldown by 1 second. +-------------------------- +Refine Level +10: +Decreases Masquerade Ignorance and Masquerade Gloomy skill cooldown by 1 second. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 170 +Shadow Chaser +# +18976# +An old, abandoned minstrel song hat that emanates a mysterious aura. +-------------------------- +All Stats +1 +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by 1%. +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +MaxSP +1% +Increases damage of Arrow Vulcan by 20%. +Increases damage of Severe Rainstorm by 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 170 +Minstrel +# +18977# +An old, abandoned midas whisper that emanates a mysterious aura. +-------------------------- +All Stats +1 +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +MaxSP +1% +Increases Ranged Physical Damage by 1%. +Increases damage of Cart Cannon by 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 170 +Genetic +# +18978# +An old, abandoned magic stone hat that emanates a mysterious aura. +-------------------------- +All Stats +1 +MDEF +5 +-------------------------- +Increases SP Recovery Rate by 20%. +Decreases Crimson Rock skill cooldown by 1 second. +-------------------------- +For each Refine Level: +MATK +1% +Decreases Crimson Rock skill cooldown by additional 0.1 second. +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +MaxSP +1% +Increases damage of Soul Expansion by 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 170 +Warlock +# +18979# +An old, abandoned blazing soul that emanates a mysterious aura. +-------------------------- +All Stats +1 +-------------------------- +For each Refine Level: +ATK +4 +Critical +2 +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +MaxSP +1% +Increases damage of Rampage Blaster by 15%. +Increases damage of Lightning Ride by 20%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 170 +Sura +# +18980# +An old, abandoned wind whisper that emanates a mysterious aura. +-------------------------- +All Stats +1 +MDEF +5 +-------------------------- +For each Refine Level: +MATK +1% +ATK +4 +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +MaxSP +1% +Increases damage of Poison Buster by 15%. +Increases damage of Varetyr Spear by 20%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 170 +Sorcerer +# +18981# +An old, abandoned dying swan that emanates a mysterious aura. +-------------------------- +All Stats +1 +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by 1%. +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +MaxSP +1% +Increases damage of Arrow Vulcan by 20%. +Increases damage of Severe Rainstorm by 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 170 +Wanderer +# +18982# +An old, abandoned bone circlet that emanates a mysterious aura. +-------------------------- +All Stats +1 +-------------------------- +For each Refine Level: +Increases Critical Damage by 1%. +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +MaxSP +1% +Increases damage of Cross Impact by 15%. +Increases damage of Cross Ripper Slasher by 20%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 170 +Guillotine Cross +# +18983# +An old, abandoned crown of guardian that emanates a mysterious aura. +-------------------------- +All Stats +1 +MDEF +5 +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +MaxSP +1% +Increases damage of Cannon Spear by 20%. +Increases damage of Overbrand by 15%. +-------------------------- +For each 5 Refine Levels: +ASPD +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 170 +Royal Guard +# +18984# +An old, abandoned camouflage bunny hood that emanates a mysterious aura. +-------------------------- +All Stats +1 +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by 1%. +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +MaxSP +1% +Increases damage of Cluster Bomb by 15%. +Increases damage of Warg Strike by 10%. +-------------------------- +For each 3 Refine Levels: +Perfect Dodge +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 170 +Ranger +# +18985# +A whistle that imitate the wing of Grypohn. +-------------------------- +Random chance to auto-cast learned Level of Blitz Beat when dealing physical damage. +Learned Level of Blitz Beat and base LUK (up to 120), affects the trigger rate. +-------------------------- +When equipped with Falconer Claw: +Increases damage of Blitz Beat by 100%. +-------------------------- +When equipped with Falconer Glove: +Increases damage of Falcon Assault by 50%. +-------------------------- +When equipped with Falconer Claw and Falconer Glove: +Increases damage of Blitz Beat by 200%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 75 +Hunter +# +18986# +A clever bird which immitates human voice. +-------------------------- +LUK +1 +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +18987# +Modeled after Jormungandr the Midgard Serpent. Effect of blood is strengthened with its presence. +-------------------------- +All Stats +2 +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Increases recovery amount gained from Blood in Skull by 50%. +-------------------------- +Refine Level +7: +ASPD +1 +Increases recovery amount gained from Blood in Skull by 20%. +-------------------------- +Refine Level +10: +Decreases After Skill Delay by 5%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +18988# +The winner of RWC. +-------------------------- +ALL Status +7 +Increases Physical Damage against enemies of all enemies by 7%. +MATK +7% +ASPD +1 +Decreases damage taken from Demi-Human race monstery by 10%. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +18989# +The winner of RWC. +-------------------------- +ALL Status +5 +Increases Physical Damage against enemies of all enemies by 5%. +MATK +5% +ASPD +1 +Decreases damage taken from Demi-Human race monstery by 7%. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +18990# +The winner of RWC. +-------------------------- +ALL Status +3 +Increases Physical Damage against enemies of all enemies by 3%. +MATK +3% +ASPD +1 +Decreases damage taken from Demi-Human race monstery by 5%. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +18991# +The winner of RWC. +-------------------------- +ALL Status +2 +Increases Physical Damage against enemies of all enemies by 2%. +MATK +2% +ASPD +1 +Decreases damage taken from Demi-Human race monstery by 3%. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +18992# +An over-sized, pure red ribbon enchanted with hidden magical powers. +-------------------------- +HIT +5 +Perfect Dodge +3 +-------------------------- +When equipped with Shinobi Card: +For each Refine Level: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +When equipped with Alligator Card: +For each Refine Level: +Increases HP and SP Recovery Rateeration by 4%. +-------------------------- +When equipped with Bloody Butterfly Card: +For each Refine Level: +Decreases Variable Casting Time by 2%. +Increases damage of Fire Wall by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 18 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 15 +# +18993# +A pink flower hat enchanted with magical powers so cute it weakens other humans' attacks. +-------------------------- +FLEE +2 +MATK +5% +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +For each Refine Level above +12: +MATK +10 +MaxSP +10 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18994# +A black colored veil. +-------------------------- +AGI +3 +STR +2 +-------------------------- +Decreases damage taken from Medium size by 5%. +-------------------------- +Increases Physical Damage against enemies of Medium size by 5%. +-------------------------- +For each Refine Level above +10: +ATK +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18995# +STR +3, INT +1 +-------------------------- +Decreases damage from Medium size by 5%. +-------------------------- +Increases Physical Damage against enemies of Wind elemental by 5%. +-------------------------- +For each Refine Level equal or above +12: +FLEE +2 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18996# +A pure white-laced ribbon enchanted with magical powers that increases its wearers vitality. +-------------------------- +VIT +2 +INT +3 +MATK +3% +-------------------------- +Increases Physical Damage against enemies of Wind elemental by 5%. +-------------------------- +For each Refine Level above +12: +VIT +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18997# +Feels like being controlled by an unknown machine. +-------------------------- +HIT +50 +FLEE +50 +MaxSP -50% +-------------------------- +^When equipped with Broken Chips 01 and Broken Chips 02: +ATK +50 +MATK +50 +Increases movement speed. + +Refine Level +9: +MaxHP +10% +MaxSP +50% +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +18998# +DEX +3, LUK +2, MATK +15, MaxHP +5%, MaxSP -10. +-------------------------- +For each Refine Level equal or above +12: +MaxHP +200 +Decreases Variable Casting Time by 1%. (Up to 5%) +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +18999# +LUK +2, VIT +4, MATK +3%, SP +50, AGI -1 +-------------------------- +Decreases damage taken from Demi-Human and Doram race by 10%. +-------------------------- +For each Refine Level equal or above +12: +ASPD +2 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +19000# +Decreases damage taken by Neutral elemental by 3%. +-------------------------- +Decreases damage taken by Demi-Human race by 5%. +-------------------------- +For each Refine Level equal or above +12: +MATK +10 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +19001# +Increases Physical Damage against enemies of Medium size by 5%. +-------------------------- +Decreases damage taken from Fire elemental by 3%. +-------------------------- +Refine Level +12: +Random chance to auto-cast Level 2 Scream when recieving physical damage. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +19002# +VIT +3, STR +2, LUK -1 +-------------------------- +Decreases damage taken from Neutral elemental by 5%. +-------------------------- +Decreases damage taken by Demi-Human race by 5%. +-------------------------- +Refine Level +12: +2% chance to auto-cast Level 1 Blessing when recieving physical damage. +(If you learned a higher Level, it will auto cast that Level instead.) +# +19003# +INT +3, STR +1, LUK -1. +-------------------------- +Increases Physical Damage and MaxHP by 5% when attacking with long range attacks. +-------------------------- +For each Refine Level equal or above +12: +Decreases damage taken by Demi-Human race by 1%. (Up to 5%) +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +19004# +DEX +2, HP +200, SP +50. +-------------------------- +When equipped with Flower Hat: +FLEE +2 +-------------------------- +Type: Headgear +Defense: 5 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19005# +Decreases damage taken by Demi-Human race by 1%. +-------------------------- +When equipped with Cross Tiara: +HIT +2 +-------------------------- +Type: Headgear +Defense: 5 +Position: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19006# +VIT +1 +INT +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19007# +INT +1, AGI +1 +-------------------------- +Type: Headgear +Defense: 3 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19008# +STR +3, INT +1. +-------------------------- +Decreases damage taken from Dragon race by 10%. +-------------------------- +Increases Physical Damage against enemies of Medium size by 5%. +-------------------------- +For each Refine Level equal or above +12: +VIT +5 (Up to +5) +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +19009# +Cumulonimbus that brings heavy rain. +-------------------------- +Random chance to auto-cast Level 5 Cold Bolt or Frost Driver when recieving physical damage. +(If you learned a higher Level, it will auto cast that Level instead.) +-------------------------- +For each Level of Cold Bolt and Frost Driver: +Increases the trigger chance. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +19010# +A baby dragon who has been trained to help its master. +-------------------------- +Increases experience gained from defeating Dragon race monsters by 5%. +-------------------------- +Increases Damage against monsters of Dragon race by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +19011# +A corner decoration that imitates the corner of Baphomet. +It is so powerful that you can confuse it with the real thing. +-------------------------- +Increases experience gained from defeating Demon race monsters by 5%. +-------------------------- +Decreases damage taken from Demon race by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +19012# +A hat that imitate the shining wheel that wore by angel on head. +-------------------------- +Increases experience gained from defeating Angel race monsters by 5%. +-------------------------- +Increases damage taken from monsters of Angel race by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +19013# +Everyone is afraid of Lu Bu, because all enemies will flee when a hundred Lu Bu appears. +-------------------------- +STR +3, VIT +1. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +19014# +Wearing this will makes wearer feel the world of death. +-------------------------- +Increases Physical Damage against enemies of Undead race by 5%. +-------------------------- +Decreases damage taken from Undead race by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +19015# +A hairband used in repeling Demon ritual. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +19018# +A cute \ + decorated with white chocolate by Criolo, the fairy queen of sweets. +You can get a strange effect with the power of sweet magic. +-------------------------- +FLEE +5 +-------------------------- +Increases Healing skills effectiveness by 3%. +Increases HP Recovery Rate of Recovery Items by 3%. +-------------------------- +When equipped with Heater Card: +For each Refine Level of White Chocolate Bear Hat: +Increases recovery amount gained from Red Potion, Orange Potion, Yellow Potion, White Potion and Novice Potion by 10%. +-------------------------- +When equipped with Cookie Card: +For each Refine Level of White Chocolate Bear Hat: +Decreases SP Consumption by 2%. +-------------------------- +When equipped with Muka Card: +For each Refine Level of White Chocolate Bear Hat: +Decreases damage taken from Neutral elemental attacks by 1%. +-------------------------- +When equipped with Hylozoist Card: +Random chance to inflict Freeze status on the enemy when recieving physical damage. + +For each 2 Refine Levels of White Chocolate Bear Hat: +Increases the trigger chance. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 15 +# +19019# +A crown blessed by spirit, by wearing it you can feel the flow of nature. +-------------------------- +DEX +3 +-------------------------- +For each 2 Refine Levels: +DEX +1 +-------------------------- +Increases Ranged Physical Damage by 4%. +-------------------------- +Base Level at least 130: +For each Refine Level: +DEX +1 +-------------------------- +When equipped with Burning Bow, Frozen Bow, Earth Bow or Gust Bow: +Increases Ranged Physical Damage by 45%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +19020# +A headgear worn by practitioner. +-------------------------- +INT +3 +MATK +4%. +-------------------------- +Base Level is below 100: +For each 2 Refine Levels: +INT +1 +-------------------------- +Base Level at least 100: +For each Refine Level: +INT +1 +-------------------------- +When equipped with Survivor's Rod[1]: +For each Refine Level of Survivor's Rod[1]: +MATK +10 +When Survivor's Rod[1] Refined to +9: +Random chance to Decreases Variable Casting Time by 50% for 5 seconds when dealing magical damage. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +19021# +A giant helm of guardian of the ancient temple. +-------------------------- +STR +3 +ATK +4% +-------------------------- +Base Level is below 100: +For each 2 Refine Levels: +STR +1 +-------------------------- +Base Level at least 100: +For each Refine Level: +STR +1 +-------------------------- +When equipped with Giant Axe: +Increases damage of Cart Termination by 15%. +every Refine of axe further inrease damage by 5%. +-------------------------- +When equipped with Giant Shield: +Decreases damage taken from Large size monsters by 5%. +every Refine of shield Decreases damage by 2%. +-------------------------- +When equipped with Giant Lance: +When using Joint Beat, auto cast Level 1 Spiral pierce, every Refine of lance Increases the chance of trigger and Increases damage of spiral pierce by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +19022# +A floating stone that made based of Stone of Sage. +-------------------------- +Prevents Blind status. +-------------------------- +When equipped with Filir Hat: +ASPD +1 +Reflects 4% of melee physical attacks. +Adds a chance for 7 sec Increases ASPD by 2. +Enables Level 10 Double Attack with all weapon classes. +-------------------------- +When equipped with Amistr Cap: +Adds a chance for 7 sec Increases DEF according to Refine Level when receiving physical damage. +For every Refine Level of Amistr Cap: +MaxHP +1% +Increases recovery amount gained from Healing skills by 2%. +-------------------------- +When equipped with Leaf Cat Hat: +Adds a chance for 7 sec every succesful physical hit will restore SP by3 +For every Refine Level of Leaf Cat Hat: +MaxSP +1%, +Increases SP Recovery Rate by 1%. +-------------------------- +When equipped with Vanilmirth Hat: +Random chance to auto-cast Level 1 Earth Spike, Double Cast, Fire Bolt, Cold Bolt, Lightning Bolt. +Increases magic damage of Fire Bolt, Cold Bolt, Lightning Bolt and Earth Spike by 50%. +If you learn higher Level of related skills, it will auto cast Level 2 instead. +-------------------------- +When unequipped, drains wearer's SP by 200. +-------------------------- +It's not possible to hide this equipment even if you wear a costume. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +19023# +An imitation of Queen Scaraba Crown. +-------------------------- +DEF -50% +MDEF -50% +-------------------------- +Every Refine Decreases damage taken from Insect race by 1%. +-------------------------- +when wearer receiving Physical or Magical Damages, Random chance to inflict Confuse status on 11x11 cells, every Refine Increases the chance. +-------------------------- +When equipped with Scaraba and Gold Scaraba Card: +Adds chance to cause abnormal state in 11x11 cells, every Refine Increases the chance. +-------------------------- +When equipped with Queen Scaraba Card: +Increases Physical Damage against enemies of Scaraba by 30%. +-------------------------- +When equipped with Gold Qeen Scaraba Card: +Decreases damage taken from Insect race by 10%. +Prevents Confuse status. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper and Lower +Weight: 150 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +19024# +A beautiful yet incredible head protector. +-------------------------- +MDEF +2 +Decreases damage taken from player by 2%. +-------------------------- +Increases After Attack Delay by 5%. +-------------------------- +Base VIT at least 108: +Decreases damage taken from Players by 2%. +Increases After Attack Delay by 5%. +-------------------------- +Base VIT at least 120: +MaxHP +3% +MDEF +3 +-------------------------- +When equipped with Feather Beret: +Increases Attack Speed (Decreases After Attack Delay by 5%). +If Feather Beret Refined to +7 or higher: +Increases Attack Speed (Decreases After Attack Delay by 5%). +If Feather Beret Refined to +9: +MaxHP +5% +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +19025# +A cute hat with dog's ears. +-------------------------- +MDEF +3 +-------------------------- +Increases Damage against monsters of Brute race by 5%. +-------------------------- +Decreases damage taken from Brute race by 5%. +-------------------------- +Random chance a defeated Brute monster will drop Light Granule. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +19026# +A Helmet from Aegir, god of Ocean. If the whole set of Egir are gathered, it will show the power of the Sea. +-------------------------- +VIT +3 +-------------------------- +When equipped with Aegir Manteau and Aegir Shoes: +MaxHP +1000 +MaxSP +100 +Increases experience gained from defeating Fish race monsters by 20%. +Increases Damage inflicted on Fish race by 50%. +Decreases damage taken from Water elemental attacks by 50%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +19027# +A glasses for people who like animal hunting. +-------------------------- +Increases Magical Damage against monsters of Brute race by 4%. +-------------------------- +Decreases damage taken from Brute race by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +19028# +A hat resemble servant of devil. +-------------------------- +Enables the use of Level 3 Potion Pitcher. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +# +19029# +A figurine doll that resemble maid from A-larm House 69. +-------------------------- +Increases Physical Damage against enemies of Boss class by 15%. +-------------------------- +When you have pet Alice, Increases Physical Damage against enemies of Boss class by 10%. +When intimacy with pet Alice is Loyal: +Increases Physical Damage against enemies of Boss class by 15%. +-------------------------- +Type: Headgear +Defense: 0 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +19030# +The bunny hood worn by strong warrior during insect invasion in village. +The hero has friendly image in neighborhood, wearing it give the same effect. +-------------------------- +For each Base Level: +MaxHP +15 +-------------------------- +Type: Headgear +Defense: 20 +Position: Upper, Middle, Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +19031# +Wings of Angel whose banished from heaven. +-------------------------- +Increases Physical Damage against enemies of Angel race by 5%. +-------------------------- +Decreases damage taken from Angel race by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +19032# +A hairband blessed by happy angel. +-------------------------- +Increases MaxHP by 5*Base Level. +-------------------------- +Increases MaxSP by 2*Job Level. +-------------------------- +When equipped with Wings of Happiness: +Increases HP and SP Recovery Rateeration by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +19033# +A hairband obtained from infinite space that emanating strange aura. +-------------------------- +MaxHP +1000 +-------------------------- +Refine Level +7: +MaxHP +400 +-------------------------- +Refine Level +9: +MaxHP +600 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19034# +Made from a scale of Ryorin. +-------------------------- +Increases Magical Damage against monsters of Fish race by 4%. +-------------------------- +Decreases damage taken from Fish race monsters by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +19035# +A hat that imitate a Fur Seal. +-------------------------- +MDEF +5 +-------------------------- +Restores SP by 5 when defeating Fish monster with melee attack. +-------------------------- +Restores HP by 100 when defeating monster with melee attack. +-------------------------- +Refine Level +5: +Decreases damage taken from Fish race monsters by 5%. +-------------------------- +Refine Level +7: +Decreases damage taken from Fish race monsters by 5%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +19036# +A hat that is said to belong to an adventurer who has traveled around the world. +When I wear this hat, I feel that I can understand the wealth of experience that adventurers have had with many people. +-------------------------- +Increases experience gained from defeating Demi-Human race monsters by 5%. +-------------------------- +Increases damage taken from monsters of Demi-Human race by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +19037# +A wings of Creamy Fear. Flowed with blood that has deadly magical power. +-------------------------- +Increases Magical Damage against monsters of Plant race by 4%. +-------------------------- +Decreases damage taken from Plant race by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +19038# +A crown to celebrate 12 anniversary, it has a sacred aura. +-------------------------- +All Stats +2 +MDEF +12 +-------------------------- +When equipped with 12th Anniversary Fairy Ears: +Refine Level of 12th Anniversary Crown is +7 or higher: +HIT +12 +Critical +12 +-------------------------- +Refine Level of 12th Anniversary Crown is +9 or higher: +MaxHP +1200 +MaxSP +120 +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 12 +Armor Level: 1 +-------------------------- +Requirement: None +# +19039# +A fairy ears to celebrate 12 anniversary with sacred aura all over it. +-------------------------- +Decreases damage taken from all monsters, except player, by 4%. +-------------------------- +When equipped with 12th Anniversary Crown: +Refine Level of 12th Anniversary Crown is +7 or higher: +HIT +12 +Critical +12 +-------------------------- +Refine Level of 12th Anniversary Crown is +9 or higher: +MaxHP +1200 +MaxSP +120 +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 12 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19040# +A headdress made based on appearance of Tanabata bamboo stick. +-------------------------- +LUK +3 +INT +1 +STR +1 +MDEF +5 +-------------------------- +Random chance to auto-cast Level 5 Evil Barrier on wearer when wearer receiving physical or magical attack. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +19041# +An imitation of devil's ears. +-------------------------- +Increases Magical Damage against monsters of Demon race by 4%. +-------------------------- +Decreases damage taken from Demon race monsters by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +19042# +A plant that prey on Insects. +-------------------------- +MDEF +5 +-------------------------- +When defeating Insect monster restores SP by 5. +-------------------------- +Restores 100 HP when defeating monster. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +19043# +One of the few armors that was forged by Goibne the blacksmith. +It is said that the gods valued his armors more than the weapons he had forged. +-------------------------- +VIT +3 +MDEF +3 +-------------------------- +When equipped with Goibne's Spaulders, Goibne's Greaves and Goibne's Armor: +VIT +5 +MaxHP +15% +MaxSP +5% +DEF +5 +MDEF +15 +Decreases damage taken from Water, Wind, Earth and Fire elemental attacks by 10%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 54 +All Jobs except Novice +# +19044# +A helm that was once owned by Morrigan, the goddess of war. +-------------------------- +LUK +2 +ATK +3 +-------------------------- +When equipped with Morrigan's Pendant, Morrigan's Belt and Morrigan's Manteau: +STR +2, LUK +9 +ATK +18 +Critical +13 +Perfect Dodge +13 +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 61 +All Jobs except Novice +# +19045# +Feathers of Fallen angel that made into ears accessory +-------------------------- +Increases Magical Damage against monsters of Angel race by 4%. +-------------------------- +Decreases damage taken from Angel race by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +19046# +A cloak wore by Poison Demon. +-------------------------- +MaxHP +5% +MATK +1% +MDEF +2 +Random chance to inflict Poison status on the target when dealing physical damage. +-------------------------- +Type: Garment +Defense: 16 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +2nd trans classes +# +19047# +A knitted hat with Angelring on top. +-------------------------- +MDEF +5 +-------------------------- +When defeating Angel monster gain 5 SP. +-------------------------- +Restores HP by 100 when defeating monster. +-------------------------- +Refine Level +5: +Decreases damage from Angel race by 5%. +-------------------------- +Refine Level +7: +Decreases damage from Angel race by 5%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +19048# +An improved Tights that able to excert the power of four elements. +-------------------------- +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +7: +Indestructible in battle +-------------------------- +Refine Level +8: +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 3%. +-------------------------- +When equipped with Burning Bow and Fire Arrow: +Increases Ranged Physical Damage by 20%. +Increases damage taken from Fire elemental attacks by 10%. +-------------------------- +When Refine Level of Burning Bow is +10 or higher: +ASPD +1 +-------------------------- +When equipped with Frozen Bow and Crystal Arrow: +Increases Ranged Physical Damage by 20%. +Disables bow's ability of inflicting Frozen status. +-------------------------- +When Refine Level of Frozen Bow is +10 or higher: +ASPD +1 +-------------------------- +When equipped with Earth Bow and Stone Arrow: +Increases Ranged Physical Damage by 20%. +Disables bow's ability of inflicting Stone Curse status. +-------------------------- +When Refine Level of Earth Bow is +10 or higher: +ASPD +1 +-------------------------- +When equipped with Gust Bow and Wind Arrow: +Increases Ranged Physical Damage by 20%. +Disables bow's ability of auto-casting Wind Blade. +-------------------------- +When Refine Level of Gust Bow is +10 or higher: +ASPD +1 +-------------------------- +Type: Armor +Defense: 45 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +19049# +A scarf that protects your mouth. +I can keep talking without being disturbed, though I am a little confused. +-------------------------- +Prevents Silence status. +-------------------------- +Increases Variable Casting Time of all skills by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19050# +A doll with Nidhoggur and Loki motifs. +The two cute dolls lined up on the head softens the viewer. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +19051# +A zodiac cat got fooled by rat, back to the moon to train. +-------------------------- +All Stats +3 +-------------------------- +4% chance to absorb 10% damage inflicted into HP. +-------------------------- +1% chance to absorb 2% damage inflicted into SP. +-------------------------- +For each 3 Refine Levels: +increases HP absorption by 1%. +For each 5 Refine Levels: +increases SP absorption by 1%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +19052# +Ear adornments that symbolize rebirth. They have the ability to change its effects depending on the job of the wearer. +-------------------------- +When equipped by Swordman, Merchant, Thief or Taekwon: +ASPD +1 +-------------------------- +When equipped by Mage, Acolyte, Ninja or Soul Linker: +MATK +5 +Increases Healing skills effectiveness by 2%. +-------------------------- +When equipped by Archer or Gunslinger: +Increases Ranged Physical Damage by 2%. +-------------------------- +When equipped by Novice: +MaxHP +120 +MaxSP +60 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19053# +The cat was deceived by a mouse and lost the first place in 12 Zodiac. It returned after training to the moon. +-------------------------- +All Stats +3 +-------------------------- +Enables the use of Level 1 Monster Cry. +-------------------------- +5% chance to inflict Stun status on the target when dealing physical attacks. + +For each Refine Level: +Increases stun chance by 0.5%. +-------------------------- +1% chance to inflict Stun status on the target when dealing magical attacks. + +For each Refine Level: +Increases stun chance by 0.5%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +19079# +A flower picked up by the hands of a celestial being. +-------------------------- +MDEF +5 +-------------------------- +Restores SP by 5 when defeating Undead race by melee physical attacks. +-------------------------- +Restores HP by 100 when defeating Undead race by melee physical attacks. +-------------------------- +Refine Level +5: +Decreases damage taken from Undead race by 5%. +-------------------------- +Refine Level +7: +Decreases damage taken from Undead race by 5%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +19080# +Bubble gum that can blow up balloons in the shape of a heart without special skills. +-------------------------- +Enable to use Cure Lv.1 +-------------------------- +Class: Headgear +Position: Lower +Defense: 0 +Weight: 5 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +19081# +An egg shell of faceworm. +-------------------------- +HIT +20 +-------------------------- +Increases Damage on Faceworm by 5%. +Decreases damage taken from Faceworm by 5%. +-------------------------- +Refine Level +5: +further Increases the damage inflicted and Decreases damage taken from Faceworm by 10%. +-------------------------- +Refine Level +7: +further Increases the damage inflicted and Decreases damage taken from Faceworm by 15%. +-------------------------- +Refine Level +9: +further Increases the damage inflicted and Decreases damage taken from Faceworm by 20%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +19082# +An eyes protector made for researcher. +-------------------------- +HIT +10 +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Perfect HIT +5% +-------------------------- +When equipped with Pipe: +Decreases After Skill Delay by 5%. +-------------------------- +When equipped with Mechanical Plant Hat: +For each Refine Level: +Increases damage of Spore Explosion by 5%. +-------------------------- +When equipped with Pipe and Mechanical Plant Hat: +Decreases SP Consumption of Spore Explosion of 20. +-------------------------- +Type: Headgear +Defense: 3 +Position: Middle +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +19083# +A mask of tribal hero. +-------------------------- +VIT +10 +MDEF +10 +-------------------------- +Reflects 1% of physical attack. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +19084# +By wearing this hat you can be a part of Parfait ceremony. +-------------------------- +LUK +1 +-------------------------- +Random chance to auto-cast Level 3 Blessing when dealing physical or magical attack. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +Summoner (Doram) +# +19085# +Ear adornments that symbolize rebirth. They have the ability to change its effects depending on the job of the wearer. +-------------------------- +When equipped by Swordman, Merchant, Thief or Taekwon: +AGI -2 +ASPD +1 +-------------------------- +When equipped by Mage, Acolyte, Ninja or Soul Linker: +MATK +3 +Increases Healing skills effectiveness by 1%. +-------------------------- +When equipped by Archer or Gunslinger: +Increases Ranged Physical Damage by 1%. +-------------------------- +When equipped by Novice: +MaxHP +60 +MaxSP +30 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19086# +A weird item that spreads a strange-shaped beam around the eyes. It seems to have been made in outer space. +-------------------------- +DEX +1 +MATK +1% +ATK +1%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +19087# +A golden mask rumored to be worn by some ancient Goddess. +-------------------------- +STR +1 +HIT +8 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +19088# +Fancy glasses helps you see long distances. Made with compressed glass. +-------------------------- +DEX +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Archer classes +# +19089# +A face mask that is worn by those who have trouble sleeping. +-------------------------- +Increases resistance against Blind status by 50%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +19090# +A mask which resembles the face of an Alarm monster. +-------------------------- +Increases resistance against Blind status by 25%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +19091# +A mask rumored to have been worn by a romantic hero with an unknown fate. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +All Jobs except Novice +# +19092# +70's tough guy style sunglasses that give its wearer a manly swagger. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +19093# +A pair of glasses that make the wearer's eyes look like they're spinning without focus. +-------------------------- +Increases resistance against Blind status by 8%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +19094# +A simple mask with a smile carved into it. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +19095# +Colorful balloons with poring image on it's surface. Kids love to hold these when on festival? +-------------------------- +Increases experience gained from defeating monsters by 5%. +Increases item drop rate by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19096# +A limited kafra hat made to celebrate the 13th anniversary. +-------------------------- +For each Refine Level: +MaxHP +130 +MaxSP +13 +-------------------------- +Refine Level +10: +MATK +3% +ATK +3% +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +19097# +A Piamette's big ribbon that able to increase magic power of its wearer. +-------------------------- +VIT +1 +MDEF +1 +-------------------------- +When equipped with Cursed Mad Bunny or Mad Bunny: Random chance to transform its wearer into Piamette when wearer receiving physical or magical attack. +While transforming, restore 2000 HP and adds chance to cause Sleep state to enemies on 11x11 cells. +-------------------------- +Type: Headgear +Defense: 1 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19098# +A hood of Piamette that able to increase magic power of its wearer. +-------------------------- +INT +2 +DEX +2 +-------------------------- +Increases Damage against monsters of Demi-Human race by 10%. +-------------------------- +Refine Level +12: +Nullifies weapon damage penalty resulting from monster's size. +-------------------------- +When equipped with Cursed Mad Bunny or Mad Bunny, Random chance to transform its wearer into Piamette when when dealing physical or magical attack. +While transforming, temporarily gains the power of Piamette at the cost draining 50 HP per second. +Increasing the Refine Level will also Increases the power of transformation. +Increasing the Refine Level of Mad Bunny will Increases transforming chance. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +19099# +A tiara that looks similiar to Douce's headdress. +It's made from different material and technology from this world. +-------------------------- +MDEF +10 +-------------------------- +Decreases SP Consumption by 10%. +-------------------------- +For each Refine Level above +5: +Decreases SP Consumption by 3%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +19100# +A guardian crown with enormous power. +It is made by a completely different manufacturing method from the usual one, and has a different power. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases damage of Cannon Spear and Banishing Point by 10%. +-------------------------- +For each Refine Level: +DEF +30 +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Increases damage of Cannon Spear and Banishing Point by additional 20%. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Increases damage of Cannon Spear and Banishing Point by additional 15%. +-------------------------- +Refine Level +10: +Recieving physical damage has a certain chance to reflect 100% damage of melee physical attacks for 5 seconds. +-------------------------- +When equipped with Manteau of the Fallen: +MaxHP +20% and doubles the effect received from base stats bonus. +-------------------------- +When equipped with Old Convoy Ring: +Increases damage of Cannon Spear by additional 70%. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Royal Guard +# +19101# +A bat that lives in Glastheim. +-------------------------- +ATK +2% +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 80 +# +19102# +A hat named after the mysterious bird that sings at night. +-------------------------- +FLEE +20 +-------------------------- +Enables the use of Level 1 Return to Thanatos Tower. +-------------------------- +Increases damage agaist Thanatos monsters by 5%. +-------------------------- +Decreases damage taken from Thanatos monsters by 5%. +-------------------------- +Refine Level +5: +Increases damage agaist Thanatos monsters by 10%. +Decreases damage taken from Thanatos monsters by 10%. +-------------------------- +Refine Level +7: +Increases damage agaist Thanatos monsters by 15%. +Decreases damage taken from Thanatos monsters by 15%. +-------------------------- +Refine Level +9: +Increases damage agaist Thanatos monsters by 20%. +Decreases damage taken from Thanatos monsters by 20%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +19103# +A crown with symbol of great king Groza. +-------------------------- +MATK +5% +MDEF +15 +-------------------------- +For each Refine Level equal or above +6: +MATK +1%. +Random chance to inflict Fear status on the target when dealing magical damage. +-------------------------- +Refine Level +5: +Increases the rate of inflicting Fear status, every 2 Refine Level Increases the rate of inflicting Fear status. +-------------------------- +Type: Headgear +Defense: 20 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +19104# +A decorative item created from wings of ancient imperial dragon. +-------------------------- +When equipped by Swordman classes: +Decreases damage taken from Medium size monsters by 3% and Large size monsters by 5%. +-------------------------- +When equipped by Magician classes: +Decreases damage taken from all elemental attacks by 5%. +-------------------------- +When equipped by Archer classes: +Decreases Ranged Physical Damage by 10%. +When equipped with Yellow Scarf: +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped by Acolyte classes: +Increases Healing skills effectiveness by 10%. +-------------------------- +When equipped by Thief classes: +FLEE +10 +Perfect Dodge +3 +-------------------------- +When equipped by Merchant classes: +Decreases damage taken from Normal monsters by 3% and Boss class by 5%. +-------------------------- +When equipped by Novice, Taekwon, Ninja and Gunslinger classes: +MaxHP +1000 +MaxSP +100 +-------------------------- +Type: Headgear +Defense: 7 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +19105# +The sound and vibration from this gum is enough to wake up sleeping people. +-------------------------- +Adds immunity against Sleep status. +-------------------------- +Variable Casting Time +10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19106# +An ornament decorated with gemstones that filled with a powerful magic. +-------------------------- +For each 1 base INT: +MATK +1 +-------------------------- +Nullifies gemstone requirements for certain skills. +-------------------------- +Increases SP Consumption by 100%. +-------------------------- +Refine Level +5: +MATK +3% +Decreases SP Consumption by 25%. +Increases Healing skills effectiveness by 3%. +-------------------------- +Refine Level +7: +MATK +5% +Decreases SP Consumption by 25%. +Increases Healing skills effectiveness by 5%. +-------------------------- +Refine Level +9: +MATK +7% +Decreases SP Consumption by 25%. +Increases Healing skills effectiveness by 7%. +-------------------------- +Type: Headgear +Defense: 15 +Position: Upper, Middle, Lower +Weight: 300 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +19107# +A mysterious hat designed after the backcountry people of Unbara. +-------------------------- +For each Refine Level: +Decreases damage taken from Shadow elemental attacks by 5%. +-------------------------- +Decreases damage taken from critical attacks by 20%. +-------------------------- +Refine Level +5: +Decreases damage taken from critical attacks by 30%. +-------------------------- +Refine Level +7: +Decreases damage taken from critical attacks by 50%. +-------------------------- +When equipped by Novice: +Frozen resistances +20%. + +Refine Level +5: +Frozen resistances +30%. + +Refine Level +7: +Gives immunity against Frozen. +-------------------------- +When equipped by Swordman: +Curse resistances +20%. + +Refine Level +5: +Curse resistances +30%. + +Refine Level +7: +Gives immunity against Curse. +-------------------------- +When equipped by Magician: +Bleeding resistances +20%. + +Refine Level +5: +Bleeding resistances +30%. + +Refine Level +7: +Gives immunity against Bleeding. +-------------------------- +When equipped by Archer: +Sleep resistances +20%. + +Refine Level +5: +Sleep resistances +30%. + +Refine Level +7: +Gives immunity against Sleep. +-------------------------- +When equipped by Acolyte: +Burning resistances +20%. +Refine Level +5: +Burning resistances +30%. +Refine Level +7: +Gives immunity against Burning. +-------------------------- +When equipped by Thief: +Blind resistances +20%. + +Refine Level +5: +Blind resistances +30%. + +Refine Level +7: +Gives immunity against Blind. +-------------------------- +When equipped by Merchant: +Poison resistances +20%. + +Refine Level +5: +Poison resistances +30%. + +Refine Level +7: +Gives immunity against Poison. +-------------------------- +When equipped by Taekwon: +Stun resistances +20%. + +Refine Level +5: +Stun resistances +30%. + +Refine Level +7: +Gives immunity against Stun. +-------------------------- +When equipped by Ninja: +Silence resistances +20%. + +Refine Level +5: +Silence resistances +30%. + +Refine Level +7: +Gives immunity against Silence. +-------------------------- +When equipped by Gunslinger: +Confuse resistances +20%. + +Refine Level +5: +Confuse resistances +30%. + +Refine Level +7: +Gives immunity against Confuse. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper, Lower +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +19108# +A hat resemble the Wild Rider. +-------------------------- +When equipped by Super Novice: +Adds certain chance of dropping 'Old Candy' when defeating a monster. +-------------------------- +When equipped by Knight: +Adds certain chance of dropping 'Rune stone ingredients' when defeating a monster. +-------------------------- +When equipped by Crusader: +Adds certain chance of dropping 'Ice Cream', 'Carrot Juice', 'Banana Juice' or 'Apple Juice' when defeating a monster. +-------------------------- +When equipped by Wizard: +Adds certain chance of dropping Yellow, Blue or Red Gemstone when defeating a monster. +-------------------------- +When equipped by Sage: +Adds certain chance of dropping Elemental Converter ingredints when defeating a monster. +-------------------------- +When equipped by Hunter: +Adds certain chance of dropping 'Elemental Quiver' or 'Sharp Quiver' when defeating a monster. +-------------------------- +When equipped by Bard and Dancer: +Adds certain chance of dropping 'Elemental Quiver; or 'Silence Quiver' when defeating a monster. +-------------------------- +When equipped by Priest: +Adds certain chance of dropping 'Holy Water' when defeating a monster. +-------------------------- +When equipped by Monk: +Adds certain chance of dropping 'Anodyne' when defeating a monster. +-------------------------- +When equipped by Assassin: +Adds certain chance of dropping 'Guillotine cross poison ingredients' when defeating a monster. +-------------------------- +When equipped by Rogue: +Adds certain chance of dropping 'Surface Paint Box' or 'Face Paint Box' when defeating a monster. +-------------------------- +When equipped by Blacksmith: +Adds certain chance of dropping 'Steel', 'Iron' or 'Brigan' when defeating a monster. +-------------------------- +When equipped by Alchemist: +Adds certain chance of dropping 'Herbs', 'Mole Whiskers', 'Witched Starsand' or 'Cactus Needle' when defeating a monster. +-------------------------- +When equipped by Star Gladiator: +Adds certain chance of dropping 'Enchanted stone' when defeating a monster. +-------------------------- +When equipped by Soul Linker: +Adds certain chance of dropping 'Witherless Rose', '3 carat Diamond' or 'Immortal Heart' when defeating a monster. +-------------------------- +When equipped by Ninja: +Adds certain chance of dropping 'Dried Squid Box', 'Flying Fish Box' or 'Starfish Box' when defeating a monster. +-------------------------- +When equipped by Gunslinger: +Adds certain chance of dropping 'Silver Bullet Ammo Case', 'Gong Bug Pocket' or 'Blood Ammo Case' when defeating a monster. +-------------------------- +When equipped by class higher than classes listed above, adds certain chance of dropping 'Mastela Fruit' when defeating a monster. +-------------------------- +Type: Headgear +Defense: 9 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +19109# +An ornament wore by a girl that fighting in battlefield. +-------------------------- +MaxSP +50 +-------------------------- +Random chance to auto-cast Level 10 Safety Wall when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +19110# +An ornament wore by a girl that fighting in battlefield. +-------------------------- +MaxSP +50 +-------------------------- +Random chance to auto-cast Level 10 Safety Wall when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +19111# +A hat with High-performance laser shooter. +-------------------------- +DEX +2 +-------------------------- +Increases Ranged Physical Damage by 10%. +-------------------------- +Adds a chance when dealing Physical Damages for 5 sec transform wearer into 'Cecil Damon'. +Increasing the Refine Level will increases the probability. +During transformation you will gain: +Decreases After Skill Delay by 100%. +Random chance to auto-cast Level 2 True Sight or Level 3 True Sight if you master the skill when dealing physical damage. +Random chance to auto-cast Level 1 Lex Aeterna on the target when dealing Ranged Physical Damages. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19112# +A scroll dropped by Tengu. It's said something strange might happen if you use it. +-------------------------- +Random chance to drain 5% of physical attack inflicted on the target as HP. +-------------------------- +When equipped with Crow Tengu Mask: +ATK +1%. +Increases Ranged Physical Damage by 1%. +-------------------------- +Base STR at least 108: +ATK +2% +Increases Ranged Physical Damage by 1%. +-------------------------- +Base STR at least 120: +ATK +3% +Increases Ranged Physical Damage by 1%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +# +19113# +An imitation eyes contact based of Gemini-S58 eyes. +-------------------------- +Decreases damage taken from Psychic Wave and Genesis Ray by 30%. +-------------------------- +Increases resistance against Stun and Silence status by 10%. +-------------------------- +Base AGI at least 90: +Increases resistance against Stun and Silence status by 30%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +19114# +A luxury silk ribbon. +-------------------------- +Decreases damage taken from Earth elemental attacks by 20%. +-------------------------- +Refine Level +5: +Decreases damage taken from Small, Medium and Large size by 2%. +-------------------------- +Refine Level +7: +Decreases damage taken from Small, Medium and Large size by 3%. +-------------------------- +Indestructible in battle +-------------------------- +When equipped with Crimson Rose: +Decreases damage taken from Small, Medium and Large size by 5%. +-------------------------- +When equipped with Sting Card: +Decreases damage taken from Small, Medium and Large size by 10%. +-------------------------- +Type: Headgear +Defense: 15 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +19115# +A hat that giving the feeling of being in republic of Schwartzvald. +-------------------------- +Increases Ranged Physical Damage by 6%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +10: +Increases Ranged Physical Damage by 4%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19116# +A quite rare breed of dragon that has red color. +-------------------------- +MaxHP +5% +MaxSP +5% +-------------------------- +Increases damage of Dragon Breath and Dragon Breath Water by 15%. +-------------------------- +Refine Level +6: +Increases damage of Dragon Breath and Dragon Breath Water by 15%. +-------------------------- +Refine Level +8: +Increases damage of Dragon Breath and Dragon Breath Water by 15%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +19117# +Sunglasses shaped like Poring. This is the season item for your fashion. +-------------------------- +Increases experience gained from defeating monsters by 5%. +-------------------------- +Increases items drop rate by 5%. +-------------------------- +When equipped with Angel Poring Boots: +Increases experience gained from defeating monsters by 5%. +Increases items drop rate by 5%. + +Refine Level +12: +Decreases Fixed Casting Time by 0.4 seconds. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19118# +Sunglasses shaped like Poring. This is the season item for your fashion. +-------------------------- +Increases experience gained from defeating monsters by 4%. +-------------------------- +Increases items drop rate by 4%. +-------------------------- +When equipped with Angel Poring Boots: +Increases experience gained from defeating monsters by 4%. +Increases items drop rate by 4%. + +Refine Level +12: +Decreases Fixed Casting Time by 0.4 seconds. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19119# +A hat made from a mixed Elunium and Emperium for experienced adventurers. +-------------------------- +All Stats +2 +MaxHP +500 +MaxSP +100 +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +When dealing Physical Damages, adds 3% to absorb 3 HP (Every 3 Refine Level Increases HP absorbtion by 1%). +When dealing magical attacks, adds 1% to absorb 1 SP (Every 4 Refine Level Increases SP absorbtion by 1%). +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19120# +Rental equipment recommended by Kafra staff. +-------------------------- +AGI +2 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Random chance to transform wearer into Moonlight Flower for 5 seconds when receiving physical damage. +-------------------------- +For each Refine Level: +Increases transforming chance. +-------------------------- +During transformation: +Critical +100 +Increases Ranged Physical Damage by 5%. + +For each Refine Level equal or above +6: +Increases Ranged Physical Damage by 1%. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +19121# +Rental equipment recommended by Kafra staff. +-------------------------- +AGI +5, DEX +5 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Increases Ranged Physical Damage by 5%. +-------------------------- +Perfect HIT +10% +-------------------------- +For each Refine Level: +HIT +2 +Decreases After Skill Delay by 2%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 10%. +Perfect HIT +20% +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 10%. +Perfect HIT +20% +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19122# +Rental equipment recommended by Kafra staff. +-------------------------- +MDEF +15 +-------------------------- +For each Refine Level: +Increases resistance to Fear by 10%. +MATK +1%. +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +7: +Increases damage of Psychic Wave by 15%. +Decreases Psychic Wave skill cooldown by 1 second. +-------------------------- +Refine Level +9: +Increases damage of Psychic Wave by additional 15%. +Decreases Psychic Wave skill cooldown by additional 1 second. +-------------------------- +Refine Level +10: +For each 10 combined sum of base INT and DEX: +INT +1, DEX +1 + +When equipped by Sorcerer: +Enables the use of Level 1 Ganbantein. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +19123# +Rental equipment recommended by Kafra staff. +-------------------------- +MDEF +5 +-------------------------- +VIT +3 +-------------------------- +Decreases damage taken from long range physical attacks by 6%. +-------------------------- +Decreases damage taken from Demi-Human racae monsters by 6%. +-------------------------- +For each 3 Refine Levels: +Decreases damage taken from long range physical attacks by additional 2%. +Decreases damage taken from Demi-Human racae monsters by additional 2%. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +19124# +Rental equipment recommended by Kafra staff. +-------------------------- +INT +5, DEX +5 +-------------------------- +Increases Magical Damage with every element by 10%. +-------------------------- +Ignores magic defense of all race by 20%. +-------------------------- +Refine Level +7: +Increases Magical Damage with every element by additional 15%. +Ignores magic defense of all race by additional 30%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +Ignores magic defense of all race by additional 50%. +-------------------------- +When equipped with High Wizard Card: +Decreases Variable Casting Time by 100%. +Decreases Telekinesis Intense skill cooldown by 120 seconds. +Unequipping will cancel Telekinesis Intense. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19125# +Developed to hold the chemicals when fixing carts. The cylinders are made out of reinforced material but you still have to handle it with care. +-------------------------- +STR +5 +INT +5 +-------------------------- +Decreases Variable Casting Time of Cart Cannon by 100%. +-------------------------- +Decreases SP Consumption of Cart Cannon by 30. +Decreases SP Consumption of Cart Tornado by 5. +-------------------------- +Increases damage of Cart Cannon by 10%. +Increases damage of Cart Tornado by 5%. +-------------------------- +Refine Level +5: +Increases damage of Cart Cannon by 20%. +Increases damage of Cart Tornado by 10%. +-------------------------- +Refine Level +8: +Increases damage of Cart Cannon by 30%. +Increases damage of Cart Tornado by 20%. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +19126# +A tool that can control the brain wave to amplify their skills. +-------------------------- +ASPD +1 +Decreases After Skill Delay by 1%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19127# +This mask, which is symbolic of Zealotus, mistress of the Glast Heim Underground Prison. +Makes its wearer feel like looking down on normal human peons. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 5%. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper, Middle +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +All Jobs except Novice +# +19128# +A headgear which imitates ears of Ifrit, the spiritual owner of fire. +-------------------------- +STR +1 +INT +1 +MDEF +3 +-------------------------- +Increases Magical Damage with Fire element by 3%. +-------------------------- +Increases damage of Bash and Magnum Break by 4%. +-------------------------- +Decreases damage taken from Fire elemental attacks by 3%. +-------------------------- +Increases damage taken from Water elemental attacks by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +All Jobs except Novice +# +19129# +A hat adorned with a cute chick that brings feelings of joy to those that see it hopping. +-------------------------- +LUK +2 +MaxHP +50 +MaxSP +50 +-------------------------- +Enables Level 2 Double Attack. +-------------------------- +Decreases damage taken from Demi-Human and Brute race by 3%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +19130# +A hat that looks like the eyes of a dark Magician, which are rumored to blink sometimes. +-------------------------- +MDEF +5 +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 54 +Magician and Soul Linker classes +# +19131# +A hat designed to transmit electric waves. Sometimes it receives electric waves from external worlds. +-------------------------- +Critical +5 +FLEE +5 +MDEF +5 +-------------------------- +Enables the use of Level 1 Lightning Bolt. +-------------------------- +Random chance to auto-cast Level 5 Thunder Storm when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 150 +Armor Level: 1 +-------------------------- +Requirement: None +# +19132# +A black leather mask, shaped like butterfly wings. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +19133# +A mask worn once worn by Odin during a fierce battle between the gods and humans. +-------------------------- +Decreases damage taken from Boss class by 2%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19134# +Wickebine's black cat ears. +-------------------------- +FLEE +10 +-------------------------- +Increases Critical Damage by 10%. +-------------------------- +Random chance to pierce magical defense of target for 5 seconds when dealing magical damage. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +19135# +A spirit of Green Maiden that float on your head. +-------------------------- +Random chance to transform wearer into Green Maiden for 5 seconds when dealing physical or magical attack. +While transforming, increases MATK and Critical attack damage by 30%. +-------------------------- +For each 2 Refine Levels: +Increases experience gained from defeating monsters by 1%. +Increases item drop rate by 1%. +-------------------------- +For each 4 Refine Levels: +MaxHP +2% +MaxSP +2% +-------------------------- +Refine Level +9: +Increases HP and SP Recovery Rate by 40%. +-------------------------- +Refine Level +12: +MaxHP +3% +MaxSP +3% +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +19136# +A spirit of Green Maiden that float on your head. +-------------------------- +Random chance to transform wearer into Green Maiden for 5 seconds when dealing physical or magical attack. +While transforming, increases MATK and Critical attack damage by 30%. +-------------------------- +For each 2 Refine Levels: +Increases experience gained from defeating monsters by 1%. +Increases item drop rate by 1%. +-------------------------- +For each 4 Refine Levels: +MaxHP +2% +MaxSP +2% +-------------------------- +Refine Level +9: +Increases HP and SP Recovery Rate by 40%. +-------------------------- +Refine Level +12: +MaxHP +3% +MaxSP +3% +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +19137# +A fresh strawberry. +-------------------------- +VIT +2 +-------------------------- +Base Level is below 100: +MaxHP +200 +-------------------------- +Base Level at least 100: +MaxHP +2000 +-------------------------- +Decreases damage taken from Ranged Physical Damage by 5%. +-------------------------- +Reflects 5% melee physical attacks. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 80 +# +19138# +A beautiful blue corolla decorated with feathers of Seraphim. +-------------------------- +STR +2 +-------------------------- +For each 8 base INT: +ATK +5 +Increases Healing skills effectiveness by 1%. +Increases Variable Casting Time of all skills by 1%. +-------------------------- +Base INT at least 108: +ATK +50 +Increases Healing skills effectiveness by 5%. +Increases Variable Casting Time of all skills by 4%. +-------------------------- +Base INT at least 120: +ATK +125 +Increases Healing skills effectiveness by 10%. +Increases Variable Casting Time of all skills by 6%. +-------------------------- +When equipped with Feather of Seraphim: +Increases Healing skills effectiveness by 5%. +Increases recovery amount gained from Healing skills and Restorative items by 5%. +Decreases damage taken from Players by 2%. +Decreases Variable Casting Time of Coluseo Heal by 100%. +Prevents Confuse and Bleeding status. +-------------------------- +For each 8 base INT: +Decreases Variable Casting Time by 1%. +-------------------------- +Base INT at least 108: +Decreases Variable Casting Time by 4%. +Increases Healing skills effectiveness by 10%. +Increases recovery amount gained from Healing skills and Restorative items by 10%. +Decreases damage taken from Players by 2%. +-------------------------- +Base INT at least 120: +Decreases Variable Casting Time by 6%. +Increases Healing skills effectiveness by 15%. +Increases recovery amount gained from Healing skills and Restorative items by 15%. +Decreases damage taken from Players by 4%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +19139# +Orbs that automatically assist their master in battle. +-------------------------- +ATK +2% +MATK +2% +-------------------------- +Decreases Variable Casting Time by 3% +-------------------------- +Enables the use of Level 1 Hiding. +-------------------------- +When equipped with Survivor's Rod[1]: +For each Refine Level of Survivor's Rod[1]: +MATK +10 +-------------------------- +Refine Level of Survivor's Rod[1] is +10 or higher: +Base Level is below 100: +Decreases Variable Casting Time by 3%. +Increases damage of Earth Strain and Chain Lightning by 15%. +Increases damage of Heaven's Drive and Jupitel Thunder by 70%. + +Base Level at least 100: +Decreases Variable Casting Time by 9%. +Increases damage of Earth Strain and Chain Lightning by 45%. +Increases damage of Heaven's Drive and Jupitel Thunder by 210%. +-------------------------- +When equipped with Survivor's Circlet: +VIT +4 +Decreases damage taken from Demi-Human race by 4%. +Decreases Variable Casting Time by 6%. +Increases Magical Damage with Wind and Earth element by 20%. +-------------------------- +Refine Level of Survivor's Circlet is +7 or higher: +VIT +4 +Decreases damage taken from Demi-Human race by 4%. +Decreases Variable Casting Time by 6%. +-------------------------- +Refine Level of Survivor's Circlet is +9 or higher: +VIT +4 +Decreases damage taken from Demi-Human race by 4%. +Decreases Variable Casting Time by 6%. +-------------------------- +When equipped with Survivor's Manteau: +Decreases damage taken from Demi-Human race by 1%. +Decreases Fixed Casting Time by 50%. +-------------------------- +Refine Level of Survivor's Manteau is +5 or higher: +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +Refine Level of Survivor's Manteau is +7 or higher: +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +When equipped with Survivor's Manteau and Survivor's Rod[1]: +MATK +1% +-------------------------- +Refine Level of Survivor's Rod[1] is +5 or higher: +MATK +2% +-------------------------- +Refine Level of Survivor's Rod[1] is +7 or higher: +MATK +2% +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +19140# +A cap with adorable pointy squirrel ears. +You feel like a squirrel just by wearing it. +-------------------------- +ASPD +1 +-------------------------- +Increases Critical Damage by 10%. +-------------------------- +Ignores physical defense of all monsters by 10%. +-------------------------- +Increases Critical by 5 when dealing Ranged Physical Damage. +-------------------------- +Refine Level +5: +ASPD +1 +Increases Critical Damage by 2%. +Ignores physical defense of all monsters by 20%. +Increases Critical by 10 when dealing Ranged Physical Damage. +-------------------------- +Refine Level +7: +ASPD +1 +Increases Critical Damage by 6% +Ignores physical defense of all monsters by 30%. +Increases Critical by 10 when dealing Ranged Physical Damage. +Critical +20 +-------------------------- +Refine Level +9: +ASPD +1 +Increases Critical Damage by 12% +Ignores physical defense of all monsters by 40%. +Increases Critical by 20 when dealing Ranged Physical Damage. +Random chance to critical damage by 100% for 5 sec when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19141# +A mask of Dolor Thanatos. It has charming design and high physical defense. +-------------------------- +MDEF +6 +All Stats +1 +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Decreases damage taken from Player by 1%. +-------------------------- +Decreases damage taken from Fire, Water, Wind and Earth elemental attacks by 5%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Middle, Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +19142# +A doll that resemble the legendary mercenary. +-------------------------- +Increases Ranged Physical Damage by 10%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19143# +A Poring balloon that floating over your head. Somehow you feel really luck just by wearing this. +-------------------------- +Increases experience gained from defeating monsters by 5%. +-------------------------- +Increases item drop rate by 5%. +-------------------------- +Random chance a defeated monster will drop Jellopy. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19144# +A hat of airship captain, Ferlock. He wears different hat coloreach day. +-------------------------- +When equipped with Airship Suit, Airship Boots and Airship Manteau: +Random chance to absorb 3% damage inflicted as HP and 2% damage as SP when dealing physical attacks. +-------------------------- +When equipped with Ferlock's Suit, Ferlock's Boots and Ferlock's Manteau: +Random chance to absorb 3% damage inflicted as HP and 2% damage as SP when dealing physical attacks. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +Gunslinger +# +19145# +Bouncing notes that created from whistle. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +Restores HP by 30 and SP by 3 when killing enemy. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +Gunslinger +# +19146# +A Marin balloon that floating over your head. Somehow you feel really lucky just by wearing this. +-------------------------- +Increases experience gained from defeating monsters by 5%. +-------------------------- +Increases item drop rate by 5%. +-------------------------- +Random chance to auto-cast Level 1 Quagmire when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19147# +A Drops balloon that floating over your head. Somehow you feel really lucky just by wearing this. +-------------------------- +DEX +2 +-------------------------- +Increases experience gained from defeating monsters by 5%. +-------------------------- +Increases item drop rate by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19148# +A Santa Poring balloon that floating over your head. Somehow you feel really lucky just by wearing this. +-------------------------- +Increases experience gained from defeating monsters by 5%. +-------------------------- +Increases item drop rate by 5%. +-------------------------- +Increases recovery amount gained from Candy by 200%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19149# +A Poporing balloon that floating over your head. Somehow you feel really lucky just by wearing this. +-------------------------- +Increases experience gained from defeating monsters by 5%. +-------------------------- +Increases item drop rate by 5%. +-------------------------- +Random chance to inflict Poison status on the target when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19150# +A Metalring balloon that floating over your head. Somehow you feel really lucky just by wearing this. +-------------------------- +Increases experience gained from defeating monsters by 5%. +-------------------------- +Increases item drop rate by 5%. +-------------------------- +Random chance to auto-cast Level 1 Strip Weapon on the target when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19151# +A Devilring balloon that floating over your head. Somehow you feel really lucky just by wearing this. +-------------------------- +Increases item drop rate and experience gained from defeating a monster by 5%. +-------------------------- +Adds a small chance of inflicting Curse status on target when dealing physical attacks. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19152# +An Angelring balloon that floating over your head. Somehow you feel really lucky just by wearing this. +-------------------------- +Increases item drop rate and experience gained from defeating a monster by 5%. +-------------------------- +Increases White/Yellow/Orange/Red Potion restoration by 50% +(This effect will not Work on GVG or WoE maps) +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19153# +A Ghostring balloon that floating over your head. Somehow you feel really lucky just by wearing this. +-------------------------- +Increases experience gained from defeating monsters by 5%. +-------------------------- +Increases item drop rate by 5%. +-------------------------- +Random chance to auto-cast Level 5 Soul Strike when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19154# +An Arch Angelring balloon that floating over your head. Somehow you feel really lucky just by wearing this. +-------------------------- +Increases item drop rate and experience gained from defeating a monster by 5%. +-------------------------- +Enables use of Level 1 Resurrection. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19155# +The mysterious light that came from this eye, is staring into the heart of target. +-------------------------- +Perfect Dodge +2 +-------------------------- +Decreases damage taken from Player by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 60 +# +19156# +A beautiful moon rainbow which is caused by the moonlight. +-------------------------- +MDEF +10 +-------------------------- +AGI +3 +-------------------------- +For each Refine Level: +MATK +10 +-------------------------- +When equipped with Ring of the Ancient Wise King: +Adds a 4% chance to auto-cast Level 4 Water Ball when dealing physical damage. + +For each Refine Level equal or above +5: +Increases the chance to auto-cast Water Ball by 1%. +-------------------------- +When equipped with Pitman Card: +Adds a 4% chance to auto-cast Level 4 Earth Spike or Heaven Drive when dealing physical damage. + +For each Refine Level equal or above +5: +Increases the chance to auto-cast Earth Spike or Heaven Drive by 1%. +-------------------------- +When equipped with Hill Wind Card: +Adds a 4% chance to auto-cast Level 4 Lightning Bolt or Thunderstorm when dealing physical damage. + +For each Refine Level equal or above +5: +Increases the chance to auto-cast Lightning Bolt or Thunderstorm by 1%. +-------------------------- +When equipped with Laurell Weinder Card: +Adds a 4% chance to auto-cast Level 4 Cold Bolt or Frost Nova when dealing physical damage. + +For each Refine Level equal or above +5: +Increases the chance to auto-cast Cold Bolt or Frost Nova by 1%. +-------------------------- +When equipped with Red Ferus Card: +Adds a 4% chance to auto-cast Level 4 Fire Ball or Fire Bolt when dealing physical damage. + +For each Refine Level equal or above +5: +Increases the chance to auto-cast Fire Ball or Fire Bolt by 1%. +-------------------------- +When equipped with Rainbow-colored Cat Toy: +For each Refine Level of Lunar Rainbow: +ATK +15, MATK +15, +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +19157# +A doll that resemble the legendary mercenary. Don't be fooled by its cute appearance. +-------------------------- +All Stats +3 +-------------------------- +reduces SP consumption of skills by 10%. +-------------------------- +Increases EXP gained from killing monsters by 10% +increases drop rate by 10% +-------------------------- +If refine rate is 7 or higher: +ASPD +1 +-------------------------- +If refine rate is 9 or higher: +increases movement speed. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +19158# +An imitation eyes contact based of Gemini-S58 eyes. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19159# +A large bucket-type helmet. +Since this helmet cover all head parts, the defense of this helmet is quite high. +It's said, only skilled Paladins were allowed to wear this helmet. +-------------------------- +VIT +5 +-------------------------- +HP Recovery Rate -10%. +-------------------------- +Refine Level +7: +DEF +100 +Enables Level 1 Auto Guard. +-------------------------- +Refine Level +8: +Decreases damage taken from Demi-Human race by 10%. +For each Refine Level above +8, increases the trigger rate of Auto Guard. +-------------------------- +When equipped by Super Novice: +Enables Level 5 Auto Guard. +-------------------------- +Type: Headgear +Defense: 59 +Position: Upper, Middle, Lower +Weight: 42 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +19160# +There is a hat with a strong temperament. +Added a lot of gentleman smell. +-------------------------- +STR +2 +LUK +2 +MaxHP +200 +-------------------------- +Type: Headgear +Defense: 5 +Position: Lower +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: None +# +19161# +Tied with a ribbon is more girly. +-------------------------- +VIT +2, +LUK +2, +MaxSP +50 +-------------------------- +Type: Headgear +Defense: 5 +Position: Lower +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: None +# +19162# +Specially made for underwater surfing. +-------------------------- +ATK +5 +MATK +5 +-------------------------- +When equipped with Surfer Swimsuit: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases Critical against Fish race monsters by 50. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +# +19163# +A doll hat made based on succubus appearance. Made to celebrate it's 60th generation. +-------------------------- +Restores HP by 500 and SP by 50 when defeating a monster. +-------------------------- +When wearer have Succubus pet: Restores HP by 500 and SP by 20 every 5 seconds. +When pet intimacy is cordial: Restores HP by 500 and SP by 20 every 5 seconds. +-------------------------- +Drains HP by 5000 a d SP by 500 when this hat is unequipped. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19164# +A hat given to loyal member of Eden Group. It's show the design and technology of Eden Group. +-------------------------- +Random chance to increase ATK by 15 for 5 seconds when dealing physical damage. +Random chance to increase MATK by 15 for 5 seconds when dealing magical damage. +-------------------------- +Refine Level +7: +ATK +10, +MATK +10 +-------------------------- +Refine Level +9: +All Stats +1 +-------------------------- +Refine Level +12: +Restores SP by 1% every 10 seconds. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19165# +A hat given to full-fledged member of Eden Group. It's show the design and technology of Eden Group. +-------------------------- +Random chance to increase ATK by 30 for 5 seconds when dealing physical damage. +Random chance to increase MATK by 30 for 5 seconds when dealing magical damage. +-------------------------- +Refine Level +7: +ATK +15 +MATK +15 +-------------------------- +Refine Level +9: +All Stats +2. +-------------------------- +Refine Level +12: +Restores HP by 2% and SP by 1% every 10 seconds. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +19166# +A very rare limited celebration hat. +-------------------------- +MaxSP +140 +-------------------------- +Restores SP by 6 every 4 second. +-------------------------- +Type: Headgear +Defense: 14 +Position: Upper +Weight: 14 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 14 +# +19167# +A replica horns of Demon Baphomet. +-------------------------- +ATK +50, +MATK +50 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19168# +Headband, a symbol of the Kafra staff. +Consists of a Kafra uniform and a set +-------------------------- +Reduces damage taken from all monsters by 5%. +-------------------------- +When defeating monsters, there is a chance to obtain [Event] Kafra Card, Kafra Warp Ticket, and Kafra Warehouse Ticket +The higher the refine rate, the higher the chance of obtaining it. +-------------------------- +When equipped with Kafra uniform +experience gained from monsters + 5% +item drop rate + 5% +All Stat +4 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +19169# +A doll that resemble the Tiger king with a pipe in its mouth. +-------------------------- +STR +2 +DEX +2 +-------------------------- +Increases Physical Damage against enemies of Brute race by 10%. +-------------------------- +When dealing or being attacked with physical attacks, Random chance to transform wearer into 'King Tiger'. +While transforming, drains 5 SP every seconds but gain the power of 'King Tiger'. +Increasing Refine Level will increases the chance to transform and the power of 'King Tiger'. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +All Jobs except Novice +# +19170# +Processor to control Madogear's power. +Allow players to push the envelope when piloting the suit. +-------------------------- +Decreases damage taken from Demi-Human race enemies by 10%. +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race enemies by additional 2%. +-------------------------- +When equipped with Pile Punker: +Refine Level of Pile Punker is +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases damage of Vulcan Arm by 50%. +Increases damage of Boost Knuckles by 30%. + +Refine Level of Pile Punker is +9: +Increases Attack Speed (Decreases After Attack Delay by additional 10%). +Increases damage of Vulcan Arm by additional 50%. +Increases damage of Boost Knuckles by additional 30%. + +Refine Level of Pile Punker is +10: +Decreases the After Skill Delay of Pile Punker by 1 second. +-------------------------- +When equipped with Guardian Unit: +Decreases damage taken from Demi-Human race enemies by additional 3%. + +Refine Level of Guardian Unit is +7: +MaxHP +10% +Decreases damage taken from Demi-Human race enemies by additional 2%. + +Refine Level of Guardian Unit is +9: +MaxHP +10% +Decreases damage taken from Demi-Human race enemies by additional 2%. +-------------------------- +When equipped with Guardian Engine: +Decreases damage taken from Demi-Human race enemies by additional 3%. + +Refine Level of Guardian Engine is +7: +Decreases damage taken from Demi-Human race enemies by additional 1%. +Decreases damage taken from Holy and Shadow elemental attacks by 15%. + +Refine Level of Guardian Engine is +9: +Decreases damage taken from Demi-Human race enemies by additional 1%. +Decreases damage taken from Holy and Shadow elemental attacks by additional 15%. +-------------------------- +When equipped with Guardian Boots: +Decreases damage taken from Demi-Human race enemies by additional 3%. + +Refine Level of Guardian Boots is +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +Decreases damage taken from Demi-Human race enemies by additional 1%. + +Refine Level of Guardian Boots is +9: +Increases Attack Speed (Decreases After Attack Delay by additional 5%). +Decreases damage taken from Demi-Human race enemies by additional 1%. +-------------------------- +When equipped with Guardian Barrel: +All Stats +1 +Decreases damage taken from Demi-Human race enemies by additional 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19171# +A knit hat worn by a great magician who once worshiped the ghosts. +The fibers that have a great effect on the undead are woven. +-------------------------- +MDEF +10 +-------------------------- +Increases Damage on Undead race by 5%. +-------------------------- +Decreases damage taken from Undead race by 2%. +-------------------------- +Restores 5 SP when a monster is killed. +-------------------------- +Refine Level +7: +MDEF +5 +Increases Damage on Undead race by an additional 10%. +Decreases damage taken from Undead race by an additional 3%. +Restores additional 10 SP when a monster is killed. +-------------------------- +Refine Level +9: +MDEF +5 +Increases Damage on Undead race by an additional 10%. +Decreases damage taken from Undead race by an additional 5%. +Restores additional 10 SP when a monster is killed. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +19172# +A doll made based of Arunafelt Pope in casual clothes. +-------------------------- +INT +2 +-------------------------- +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +When equipped with Zealous Necklace: +Decreases After Skill Delay by 15%. +-------------------------- +When equipped with Kiel-D-01 Card: +Increases after cast delay by 30%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19173# +Fluffy floating ice. It was made from the ice of ice cave. +-------------------------- +Increases recovery amount gained from Ice Cream by 100%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 90 +# +19174# +It's called Avenger. Created by Blacksmith as scouting aircraft. Allows you to get many rare items when you defeat certain monster. +-------------------------- +Enables Level 9 Overcharge. +-------------------------- +When you defeat Amdarais, it will drop Condensed Demonic Blood. +-------------------------- +When you defeat Realized Amdarais, it will drop Temporal Crystal. +-------------------------- +When you defeat Jitterbug, it will drop Tooth of Jitterbug. +-------------------------- +When you defeat +Grim Reaper Ankou, God of Despair Morocc, Shadow Demon and Morse Necromancer, +it will drop Expedition Prize Box. +-------------------------- +When you defeat +S.J Ernest Wolf or Bijou, it will drop Proof of Royal Family Contribution. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 90 +# +19175# +A headpiece made by hollowing out a large pumpkin that wraps your head completely. +It is made with edible pumpkins, so it seems to be a Cooking Ingredient. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper, Middle, Lower +Weight: 31 +Armor Level: 1 +-------------------------- +Requirement: None +# +19176# +Increases physical damage against Angel race monsters by 5%. +-------------------------- +Reduces damage taken from Angel race monsters by 5%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +19177# +A crown blessed by spirit. By wearing this, wearer will able to perceive the flow of nature. +-------------------------- +DEX +3 +-------------------------- +Increases Ranged Physical Damage by 4%. +-------------------------- +Every 2 Refine Level Increases DEX by 1. +-------------------------- +When equipped with either Burning Bow, Frozen Bow, Earth Bow or Gust Bow: Increases Ranged Physical Damage by 45%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +19178# +A crown blessed by spirit. By wearing this, wearer will able to perceive the flow of nature. +-------------------------- +DEX +3 +-------------------------- +Increases Ranged Physical Damage by 4%. +-------------------------- +Every 2 Refine Level Increases DEX by 1. +-------------------------- +When equipped with either Burning Bow, Frozen Bow, Earth Bow or Gust Bow: Increases Ranged Physical Damage by 45%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +19179# +A hat of renown magician. By wearing this, will makes wearer able to do some magic tricks. +-------------------------- +DEX +1, AGI +1 +MDEF +1 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Decreases After Skill Delay by 4%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +# +19180# +This ceremonial headdress holds the likeness of Anubis, god of the underworld. +It is rumored that it empowers the wearer against powerful divine beings. +-------------------------- +Reduce damage from MVPs by 2% and Increase effectiveness of healing and healing items by 2%. +-------------------------- +If refined higher than +5 reduces damage by MVPs and effectiveness of healing further. ++5 MVP -3% Heal +3% ++6 MVP -4% Heal +4% ++7 MVP -5% Heal +5% ++8 MVP -7% Heal +7% ++9 MVP -10% Heal +10% +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper, Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 65 +# +19181# +A sunglasses that gives futuristic feel. +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +19184# +When worn, it feels closed during the time it flows down. +-------------------------- +Increases damage of Psychic Wave and Soul Expansion by 10%. +-------------------------- +Since it is an equipped effect, it still will be displayed even when the effect (/effect) is turned off. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19185# +I get caught in my head and feel fate-dependent. +-------------------------- +All Status +10 +-------------------------- +Decreases SP Consumption by 20%. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +For each Refine Level: +Increases Damage by 1%. +-------------------------- +When enchanted with Neev of Comfort(Vitality): +MaxHP +5000 +-------------------------- +When enchanted with Neev of Comfort(Spirit): +MaxSP +100 +-------------------------- +When enchanted with Neev of Comfort(Life): +Recovers 1000 HP every 5 seconds. +-------------------------- +When enchanted with Neev of Comfort(Intelligence): +Recovers 25 SP every 5 seconds. +-------------------------- +When enchanted with Neev of Eternal(Fire): +Decreases damage taken from Fire elemental attacks by 15%. +-------------------------- +When enchanted with Neev of Eternal(Water): +Decreases damage taken from Water elemental attacks by 15%. +-------------------------- +When enchanted with Neev of Eternal(Wind): +Decreases damage taken from Wind elemental attacks by 15%. +-------------------------- +When enchanted with Neev of Eternal(Earth): +Decreases damage taken from Earth elemental attacks by 15%. +-------------------------- +When enchanted with Neev of Eternal(Shadow): +Decreases damage taken from Shadow elemental attacks by 15%. +-------------------------- +When enchanted with Neev of Eternal(Ghost): +Decreases damage taken from Ghost elemental attacks by 15%. +-------------------------- +When enchanted with Neev of Eternal(Poison): +Decreases damage taken from Poison elemental attacks by 15%. +-------------------------- +When enchanted with Neev of Wound(Formless Form): +Decreases damage taken from Formless race by 5%. +-------------------------- +When enchanted with Neev of Wound(Undead Form): +Decreases damage taken from Undead race by 5%. +-------------------------- +When enchanted with Neev of Wound(Brute Form): +Decreases damage taken from Brute race by 5%. +-------------------------- +When enchanted with Neev of Wound(Plant Form): +Decreases damage taken from Plant race by 5%. +-------------------------- +When enchanted with Neev of Wound(Insect Form): +Decreases damage taken from Insect race by 5%. +-------------------------- +When enchanted with Neev of Wound(Fish Form): +Decreases damage taken from Fish race by 5%. +-------------------------- +When enchanted with Neev of Wound(Demon Form): +Decreases damage taken from Demon race by 5%. +-------------------------- +When enchanted with Neev of Wound(Demi-Human Form): +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +When enchanted with Neev of Wound(Angel Form): +Decreases damage taken from Angel race by 5%. +-------------------------- +When enchanted with Neev of Wound(Dragon Form): +Decreases damage taken from Dragon race by 5%. +-------------------------- +When enchanted with Neev of Blood(Strength): +STR +5 +-------------------------- +When enchanted with Neev of Blood(Speed): +AGI +5 +-------------------------- +When enchanted with Neev of Blood(Vitality): +VIT +5 +-------------------------- +When enchanted with Neev of Blood(Intelligence): +INT +5 +-------------------------- +When enchanted with Neev of Blood(Concentration): +DEX +5 +-------------------------- +When enchanted with Neev of Blood(Fortune): +LUK +5 +-------------------------- +When enchanted with Neev of Honor(Speed): +ASPD +1 +-------------------------- +When enchanted with Neev of Honor(Concentration): +Decreases Variable Casting Time by 10%. +-------------------------- +When enchanted with Neev of Honor(Skill): +Decreases After Skill Delay by 10%. +-------------------------- +When enchanted with Neev of Death(Strength): +ATK +5% +-------------------------- +When enchanted with Neev of Death(Intelligence): +MATK +5% +-------------------------- +When enchanted with Neev of Death(Physical): +DEF +500 +-------------------------- +When enchanted with Neev of Death(Magic): +MDEF +20 +-------------------------- +When enchanted with Neev of Honor(Hit): +HIT +20 +-------------------------- +When enchanted with Neev of Honor(Flee): +FLEE +20 +-------------------------- +When enchanted with Neev of Honor(Luk): +Perfect Dodge +5 +-------------------------- +When enchanted with Neev of Death(Dex): +Increases range physical damage by 5%. +-------------------------- +When enchanted with Neev of Death(Luk): +Increases Critical Damage by 5%. +-------------------------- +When enchanted with Neev of Wound(Player): +Decreases damage taken from Demi-Human Players by 5%. +Decreases damage taken from Doram Players by 5%. +-------------------------- +When equipped with Puppet Bracelet: +Decreases damage taken from Demi-Human race by 3%. + +Refine Level of Dark Hand is +6 or higher: +Perfect HIT +15% +Decreases After Skill Delay by 5%. +Ignores physical and magical defense of all race by 25%. + +Refine Level of Dark Hand is +8 or higher: +Perfect HIT +15% +Decreases After Skill Delay by additional 10%. +Ignores physical and magical defense of all race by additional 25%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19186# +This is made by imitating Valkyrie's subordinate, Bijou's pointed hat. +-------------------------- +MDEF +20 +-------------------------- +INT +6 +-------------------------- +For each Refine Level: +MATK +1% +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage with Shadow element by 3%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19187# +A helmet bearing the sign of Virgo. +-------------------------- +MATK +7%. +-------------------------- +Increases Healing skills effectiveness by 10%. +-------------------------- +When equipped with Virgo: +MaxHP +4% +MaxSP +4% +Increases SP Recovery Rate by 50%. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +19188# +A helmet bearing the sign of Leo. +-------------------------- +ATK +6% +-------------------------- +Decreases SP Consumption by 5%. +-------------------------- +When equipped with Leo: +AGI +8, +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +19189# +A very valuable commemorative hat made by the Monster Race Association for customers who use Monster Race. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +8: +For each Level of Power Thrust: +Increases Critical Damage by 5%. +-------------------------- +Refine Level +11: +Physical attacks have a chance to auto-cast Level 5 Double Attack. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +19190# +A very valuable commemorative hat made by the Monster Race Association for customers who use Monster Race. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +8: +For each Level of Axe Training: +Increases damage of Cart Tornado by 5%. +-------------------------- +Refine Level +11: +Physical attacks have a chance to auto-cast Level 2 Cart Tornado. +(If you learned a higher Level, it will be auto-cast the Level you learned.) +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Genetic +# +19191# +A very valuable commemorative hat made by the Monster Race Association for customers who use Monster Race. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +8: +For each Level of Lefthand Mastery: +Increases Critical Damage by 5%. +-------------------------- +Refine Level +11: +Physical attacks have a chance to increase critical damage by 20% for 5 seconds. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +19192# +A very valuable commemorative hat made by the Monster Race Association for customers who use Monster Race. +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +8: +For each Level of Plagiarism: +MATK +5 +-------------------------- +Refine Level +11: +Physical attacks have a chance to auto-cast Level 5 Mystical Amplification. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +19193# +A very valuable commemorative hat made by the Monster Race Association for customers who use Monster Race. +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +8: +For each Level of Meteor Storm and Lord of Vermillion: +Decreases Tetra Vortex skill cooldown by 0.5 seconds. +-------------------------- +Refine Level +11: +Decreases Variable Casting Time of Mystical Amplification by 50%. +(However, it does not overlap with the Casting Time Reduction of Staff of Destruction.) +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Warlock +# +19194# +A very valuable commemorative hat made by the Monster Race Association for customers who use Monster Race. +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +8: +For each Level of Auto Spell: +Increases damage of Thunderstorm and Fire Ball by 5%. +-------------------------- +Refine Level +11: +Increases damage of Lightning Bolt and Fire Bolt by 50%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +19195# +A very valuable commemorative hat made by the Monster Race Association for customers who use Monster Race. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +8: +For every 2 Levels of Two-Handed Quicken: +Increases Critical Damage by 5%. +-------------------------- +Refine Level +11: +Indestructible in battle +Physical attacks have a chance to auto-cast Level 5 Double Attack. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +19196# +A very valuable commemorative hat made by the Monster Race Association for customers who use Monster Race. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +8: +For each Level of Spear Mastery: +Increases damage of GBurst Attack by 1%. +-------------------------- +Refine Level +11: +Decreases Earth Drive skill cooldown by 1 second. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Royal Guard +# +19197# +A very valuable commemorative hat made by the Monster Race Association for customers who use Monster Race. +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +8: +For each Level of Mace Mastery: +Increases damage of Duple Light by 10%. +-------------------------- +Refine Level +11: +Physical attacks have a chance to auto-cast Level 5Adoramus. +(Consumes Blue Gemstone and auto-casts at the Level when learned.) +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +19198# +A very valuable commemorative hat made by the Monster Race Association for customers who use Monster Race. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +8: +For each Level of Combo Finish: +Decreases SP Consumption of Rampage Blaster by 1. +-------------------------- +Refine Level +11: +Increases damage of Rampage Blaster by 30%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Sura +# +19199# +A very valuable commemorative hat made by the Monster Race Association for customers who use Monster Race. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +8: +For each Level of Steel Crow: +Increases damage of Aimed Bolt by 3%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Ranger +# +19200# +A very valuable commemorative hat made by the Monster Race Association for customers who use Monster Race. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +8: +For each Level of Musical Lesson: +ATK +5 +-------------------------- +Refine Level +11: +Physical attacks have a chance to auto-cast Level 2Reverberation. +(If you learned a higher Level, it will be auto-cast the Level you learned). +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Minstrel +# +19201# +A very valuable commemorative hat made by the Monster Race Association for customers who use Monster Race. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +8: +For each Level of Dancing Lesson: +ATK +5 +-------------------------- +Refine Level +11: +Physical attacks have a chance to auto-cast Level 2Reverberation. +(If you learned a higher Level, it will be auto-cast the Level you learned). +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Wanderer +# +19202# +A very valuable commemorative hat made by the Monster Race Association for customers who use Monster Race. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +8: +For each Level of Piercing Shot: +Decreases Hammer of God skill cooldown by 2 seconds. + +For each Level of Ground Drift: +Decreases Dragon Tail skill cooldown by 0.2 seconds. +-------------------------- +Refine Level +11: +Decreases Crimson Marker skill cooldown by 1 second. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +19203# +A very valuable commemorative hat made by the Monster Race Association for customers who use Monster Race. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +8: +For each Level of Throw Huuma Shuriken: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +11: +Increases damage of Swirling Petal by 30%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +19204# +A very valuable commemorative hat made by the Monster Race Association for customers who use Monster Race. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +8: +For every 2 Level of Double Attack: +Increases Critical Damage by 10%. +-------------------------- +Refine Level +11: +ASPD +1, Additional ATK +20. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Super Novice +# +19205# +A very valuable commemorative hat made by the Monster Race Association for customers who use Monster Race. +-------------------------- +For each 2 Refine Levels: +ATK and MATK +5. +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +8: +For each Level of Lunatic Carrot Beat: +Decreases Spirit of Savage skill cooldown by 4 seconds. + +For each Level of Catnip Meteor: +Decreases Nyang Grass skill cooldown by 8 seconds. + +For each Level of Bunch of Shrimp: +Decreases Tasty Shrimp Party skill cooldown by 4 seconds. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +19209# +A cap worn by nurses both great and small. +-------------------------- +INT +1 +-------------------------- +For each 2 Refine Levels: +INT +1 +Increases Healing skills effectiveness by 3%. +-------------------------- +When equipped with Illusion Puente Robe: +Increases movement speed. +Increases Healing skills effectiveness by 10%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 99 +Acolyte +# +19210# +A headgear made in the honor of the legendary archer who shot an apple, on top of a friend's head, from a long distance. +-------------------------- +DEX +3 +-------------------------- +For each 2 Refine Levels: +DEX +1 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +All Jobs except Novice +# +19211# +A winged hairband wore by priest whose fought demons. +Increases the attack and defense power against specific element. +-------------------------- +Random chance to auto-cast Level 1 Holy Light when dealing physical damage. +-------------------------- +Increases Physical Damage against enemies of Poison, Holy, Ghost, Shadow, Undead elemental monsters by 5%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Holy Light by 100%. +Increases SP Consumption by of Holy Light by 10. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Poison, Holy, Ghost, Shadow and Undead elemental monsters by 5%. +-------------------------- +Refine Level +9: +Decreases damage taken from Poison, Holy, Ghost, Shadow, Undead elemental monsters by 5%. +-------------------------- +Refine Level +12: +Increases the rate of auto-casting Holy Light. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 3 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +19212# +A member cap that proves to be a member of the Malangdo Pirates. +A cute design that fits even with cats. +-------------------------- +Decreases damage taken from Wind elemental attacks by 10%. +-------------------------- +Increases Damage against monsters in Malangdo Culvert and Octopus Cave by 15%. +Decreases damage taken from Malangdo Culvert and Octopus Cave monsters by 15%. +-------------------------- +Refine Level +7: +Increases Damage against monsters in Malangdo Culvert and Octopus Cave by additional 15%. +Decreases damage taken from Malangdo Culvert and Octopus Cave monsters by additional 15%. +-------------------------- +Refine Level +8: +Decreases damage taken from Wind elemental attacks by additional 15%. +-------------------------- +Refine Level +9: +Increases Damage against monsters in Malangdo Culvert and Octopus Cave by additional 15%. +Decreases damage taken from Malangdo Culvert and Octopus Cave monsters by additional 15%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +19213# +A hat to celebrate the discovery of Far-Star continent. +-------------------------- +MDEF +3 +-------------------------- +Decreases After Skill Delay by 1%. +-------------------------- +For each 3 Refine Levels: +Decreases After Skill Delay by additional 1%. +-------------------------- +Decreases damage taken from Brute and Demi-Human race by 3%. +-------------------------- +Refine Level +7: +All Stats +1 +Decreases damage taken from Brute and Demi-Human race by additional 7%. +-------------------------- +Refine Level +10: +All Stats +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +19214# +A hat to celebrate the discovery of Far-Star continent. +-------------------------- +All Stats +1 +MDEF +5 +-------------------------- +Decreases damage taken from Brute and Demi-Human race by 5%. +-------------------------- +Decreases After Skill Delay by 1%. +For each 2 Refine Levels: +Decreases After Skill Delay by 1% +-------------------------- +Refine Level +7: +All Stats +1 +Decreases damage taken from Brute and Demi-Human race by 7%. +-------------------------- +Refine Level +10: +All Stats +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +19215# +A cat head shaped balloon, Cat lover went crazy because of its cuteness. +-------------------------- +MaxHP +50 +MaxSP +25 +ATK +3 +MATK +3 +Decreases After Skill Delay by 1%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19218# +Glasses that can see through time. +-------------------------- +If Baselevel 90 and 90+: +Effects are disabled. +-------------------------- +If Baselevel 50 - 89: +MaxSP +25 +-------------------------- +If Baselevel 1 - 49: +MaxSP +50 +-------------------------- +When equipped with Time Keeper Ring: +Increases recovery amount gained from Novice Potion by 20%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19219# +A hat with the motif of \ +. +It may or may not have the skill to spin a different world through music. +-------------------------- +MaxHP +700 +MaxSP +200 +-------------------------- +Decreases damage taken from Small, Medium and Large size by 5%. +-------------------------- +Increases Healing skills effectiveness by 5%. +Increases HP Recovery Rate of Recovery Items by 5%. +-------------------------- +The following effects are effective only when used in the city map: +-------------------------- +When equipped with Costume Drooping Chuni Penguin: +Transform into a Chuni Penguin. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 12 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19221# +A hairband adorned with what appears to be the wings of a golden angel. +-------------------------- +Base STR at least 70: +ATK +5 +-------------------------- +Base AGI at least 70: +ASPD +2% +-------------------------- +Base VIT at least 70: +MaxHP +2% +MaxSP +2% +-------------------------- +Base INT at least 70: +MATK +5 +-------------------------- +Base DEX at least 70: +Increases long-ranged damage on the targets by 2%. +-------------------------- +Base LUK at least 70: +Increases critical damage on the targets by 2%. +-------------------------- +Refine Level +7: +Base STR at least 70: +Additional ATK +10. + +Base AGI at least 70: +Additional ASPD +3%. + +Base VIT at least 70: +Additional MaxHP +3%. +Additional MaxSP +3%. + +Base INT at least 70: +Additional MATK +10. + +Base DEX at least 70: +Increases long-ranged damage on the targets by additional 3%. + +Base LUK at least 70: +Increases critical damage on the targets by additional 3%. +-------------------------- +When equipped with Golden Angel Wings: +All Stats +1 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +19223# +A brimless hat that offers very little in the way of fashion, but does provide decent defense. +-------------------------- +ATK +1% +-------------------------- +For each Refine Level: +ATK +2 +-------------------------- +Type: Headgear +Defense: 15 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +Novice, Swordsman, Thief and Merchant +# +19224# +Rental equipment which was seriously selected by fashionistas. +-------------------------- +MaxHP +10% +ATK +6% +-------------------------- +Random chance to absorb 10% of damage into HP when dealing physical damage. +-------------------------- +Enables the use of Level 1 Crazy Uproar. +-------------------------- +Refine Level +7: +ATK +5% +Random chance to absorb 15% of damage against enemy into HP when dealing physical damage. +Chance of absorbing increases. +-------------------------- +Refine Level +9: +ATK +5% +Random chance to absorb 15% of damage against enemy into HP when dealing physical damage. +Chance of absorbing increases. +-------------------------- +When equipped with Hunter Fly Card: +Disables HP absorbing effect. +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19225# +Rental equipment which was seriously selected by fashionistas. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases damage of Ride in Lightning by 10%. +-------------------------- +For each Refine Level: +MDEF +1 +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Increases damage of Ride in Lightning by additional 30%. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Increases damage of Ride in Lightning by additional 20%. +-------------------------- +Refine Level +10: +Recieving physical damage has a certain chance to decrease Variable Casting Time by 100% for 5 seconds. +When using Ride in Lightning, auto-cast Level 1 Dangerous Soul Collect. +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Sura +# +19226# +Rental equipment which was seriously selected by fashionistas. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases damage of Cross Impact and Dark Illusion by 10%. +-------------------------- +For each Refine Level: +Decreases After Skill Delay by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Increases damage of Cross Impact and Dark Illusion by additional 20%. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Increases damage of Cross Impact and Dark Illusion by additional 15%. +-------------------------- +Refine Level +10: +Decreases Hallucination Walk skill cooldown by 60 seconds. +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +19227# +Rental equipment which was seriously selected by fashionistas. +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases damage of Crimson Rock by 10%. +-------------------------- +Increases damage of Comet by 5%. +-------------------------- +For each Refine Level: +Decreases Variable Casting Time by 7%. +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Increases damage of Crimson Rock by additional 30%. +Increases damage of Comet by additional 15%. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Increases damage of Crimson Rock by additional 20%. +Increases damage of Comet by additional 10%. +-------------------------- +Refine Level +10: +Decreases Comet skill cooldown by 30 seconds. +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Warlock +# +19228# +Rental equipment which was seriously selected by fashionistas. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Decreases Mandragora Howling skill cooldown by 4 seconds. +-------------------------- +For each Refine Level: +ATK +7, MATK +7 +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Decreases Mandragora Howling skill cooldown by 6 seconds. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Decreases Mandragora Howling skill cooldown by 2 seconds. +-------------------------- +Refine Level +10: +Increases recovery rate of Red Slim Potion, Yellow Slim Potion and White Slim Potion by 200%. +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Genetic +# +19229# +Rental equipment which was seriously selected by fashionistas. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Decreases Expiatio skill cooldown by 1 second. +-------------------------- +For each Refine Level: +Decreases damage taken from Demon and Undead race by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Enables the use of Level 2 Odin's Power. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Decreases Variable Casting Time of Highness Heal by 100%. +Decreases Highness Heal skill cooldown by 1 second. +-------------------------- +Refine Level +10: +Recieving physical or magical damage has a certain chance to decrease After Skill Delay by 100% for 5 seconds. +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +19230# +Rental equipment which was seriously selected by fashionistas. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Enables the use of Dancing Lesson, skill level is based on Musical Lesson. +-------------------------- +Increases damage of Reverberation by 10%. +-------------------------- +For each Refine Level: +All Stats +1 +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Increases damage of Reverberation by additional 30%. +Enables the use of Fortune's Kiss, skill level is based on Poem of Bragi when equipped with an Musical Instrument or Whip class weapon. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Increases damage of Reverberation by additional 20%. +When using Gloomy Shyness, inflicts Confuse 11x11 cells around the target. +-------------------------- +Refine Level +10: +Recieving physical damage has a certain chance to increase damage of Severe Rainstorm by 100% for 5 seconds. +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Minstrel +# +19231# +Rental equipment which was seriously selected by fashionistas. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Decreases SP Consumption of Warg Strike by 10. +-------------------------- +For each Refine Level: +HIT +2 +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Recieving physical damage has a certain chance to auto-cast Warg Bite at learned skill level. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Recieving physical damage has a certain chance to auto-cast Warg Strike at learned skill level. + +For each Level of Warg Strike: +Increases the trigger chance further. + +For each base LUK: +Increases the trigger chance of Warg Strike. +Up to Base LUK 120 +-------------------------- +Refine Level +10: +Deals more damage depending on the target's Defense. +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Ranger +# +19232# +Rental equipment which was seriously selected by fashionistas. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases damage of Wind Cutter by 50%. +-------------------------- +Increases damage of Storm Blast by 20%. +-------------------------- +For each Refine Level: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Refine Level +7: +Decreases damage taken from Demi-Human race by additional 5%. +Increases damage of Wind Cutter by additional 200%. +Increases damage of Storm Blast by additional 50%. +-------------------------- +Refine Level +9: +Decreases damage taken from Demi-Human race by additional 2%. +Increases damage of Wind Cutter by additional 150%. +Increases damage of Storm Blast by additional 30%. +-------------------------- +Refine Level +10: +Decreases Storm Blast re-use delay by 7 seconds. +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +19233# +Rental equipment which was seriously selected by fashionistas. +-------------------------- +ASPD +1 +-------------------------- +Increases Critical Damage by 10%. +-------------------------- +Ignores physical defense of all monsters by 10%. +-------------------------- +Increases Critical by 5 when dealing Ranged Physical Damage. +-------------------------- +Refine Level +5: +ASPD +1 +Increases Critical Damage by 2%. +Ignores physical defense of all monsters by 20%. +Increases Critical by 10 when dealing Ranged Physical Damage. +-------------------------- +Refine Level +7: +ASPD +1 +Increases Critical Damage by 6% +Ignores physical defense of all monsters by 30%. +Increases Critical by 10 when dealing Ranged Physical Damage. +Critical +20 +-------------------------- +Refine Level +9: +ASPD +1 +Increases Critical Damage by 12% +Ignores physical defense of all monsters by 40%. +Increases Critical by 20 when dealing Ranged Physical Damage. +Random chance to critical damage by 100% for 5 sec when dealing physical attack. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19234# +Rental equipment which was seriously selected by fashionistas. +-------------------------- +INT +2 +-------------------------- +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +When equipped with Zealous Necklace: +Decreases After Skill Delay by 15%. +-------------------------- +When equipped with Kiel-D-01 Card: +Increases after cast delay by 30%. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19235# +Rental equipment recommended by Kafra staff. +-------------------------- +Increases movement speed. +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +19236# +Rental equipment recommended by Kafra staff. +-------------------------- +MATK +35 +-------------------------- +Increases Magical Damage against monsters of Boss class by 2%. +-------------------------- +Base DEX at least 90: +MATK +70 +Increases Magical Damage against monsters of Boss class by additional 3%. +-------------------------- +Base DEX at least 125: +MATK +140 +Increases Magical Damage against monsters of Boss class by additional 5%. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +19237# +Rental equipment which was seriously selected by fashionistas. +-------------------------- +STR +2 +-------------------------- +For each 8 base INT: +ATK +5 +Increases Healing skills effectiveness by 1%. +Increases Variable Casting Time of all skills by 1%. +-------------------------- +Base INT at least 108: +ATK +50 +Increases Healing skills effectiveness by 5%. +Increases Variable Casting Time of all skills by 4%. +-------------------------- +Base INT at least 120: +ATK +125 +Increases Healing skills effectiveness by 10%. +Increases Variable Casting Time of all skills by 6%. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +19238# +Fresh leek, which is native to Poring Village. +-------------------------- +ATK +1 +-------------------------- +Physical attacks have a chance to transform you into a Smokie for 5 seconds. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 1 +# +19239# +Fresh carrot, which is native to Poring Village. +-------------------------- +MATK +1 +-------------------------- +Magical attacks have a chance to transform you into a Lunatic for 5 seconds. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 1 +# +19240# +Toy made of a syringe. The liquid inside seems to be syrup. +-------------------------- +Increases HP Recovery of [Event]White Slim Potion by 100%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19241# +A tool that amplifies your ability to control your brain waves. +It is possible to attach the amplification chip to give the ability. +-------------------------- +Type: Headgear +Defense: 10 +Position: Middle +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19242# +Pretty baby in a head dress decorated with a cat doll. +It's even more cute with lace. +-------------------------- +All Stats +1 +Increases Attack Delay by 5%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +12: +Protects from skill cast interruption. +-------------------------- +When equipped with Blush: +Increases Healing skills by 5%. +-------------------------- +Base Level below 100: +Increases Experience gained from defeating monsters by 10%. +-------------------------- +Base Level at least 100: +Increases Experience gained from defeating monsters by 4%. +-------------------------- +Type: Headgear +Defense: 20 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +19243# +Accessories decorated with indigo ribbons. +If you wear it, you might want to fly towards the indigo sea. +-------------------------- +Increases Experience gained from defeating monsters by 5%. +Increases Item Drop Rate from defeating monsters by 5%. +-------------------------- +When equipped with Candy Pouch Bag(Physical): +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When equipped with Candy Pouch Bag(Magic): +Decreases Variable Casting Time by 5%. +-------------------------- +When equipped with Candy Pouch Bag(Ranged): +ATK +4% +-------------------------- +Refine Level of Candy Pouch Bag is +12: +All Stats +1. +-------------------------- +Type: Headgear +Defense: 8 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19244# +The holy Rosario which God's apostles have given its power. Mysterious force seems to be flowing. +-------------------------- +Healing +5%. +-------------------------- +When equipped with Light of Recovery: +For each 2 Refine Level of Light of Recovery: +Decreases After Skill Delay by 3%. +-------------------------- +Light of Recovery's SP penalty is removed. +-------------------------- +Type: Headgear +Defense: 12 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19245# +A tool that amplifies your ability to control your brain waves. +-------------------------- +Type: Headgear +Defense: 10 +Position: Middle +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19246# +A necklace designed specifically for Royal Guards. It stands for the act of protecting others. +-------------------------- +ASPD +1 +-------------------------- +When equipped with Imperial Feather: +ATK +40 +Decreases After Attack Delay 3%. +Decreases damage taken from Players by 2%. +Prevents Blind and Silence status. + +Base AGI at least 108: +ATK +60 +Decreases After Attack Delay 5%. +Decreases damage taken from Players by 2%. + +Base AGI at least 120: +ATK +80 +Decreases After Attack Delay 7%. +Decreases damage taken from Players by 4%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 80 +# +19247# +It is a flower that is inserted in the head. +Beautiful mid-range flowers give viewers pleasure, +but they do not see themselves. +-------------------------- +MATK +1% +-------------------------- +For each Refine Level: +MATK +2 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +# +19249# +The magic circle that imaged the property. +It feels like you can use a powerful magic just to wear it. +-------------------------- +For each 2 Refine Levels: +MATK +20 +-------------------------- +Refine Level +7: +Decreases variable casting time by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Neutral and Shadow element by 10%. +-------------------------- +Refine Level +11: +Increases Magical Damage with Water, Wind, Earth and Fire element by 10%. +-------------------------- +For each Refine Level above +10: +Decreases fixed casting time by 0.1 second (up to +15). +-------------------------- +When equipped with Mental Stick: +Every 2 Refine Level of Mental Stick: +Increases damage of Psychic Wave by 5%. +-------------------------- +When equipped with Kronos: +Every 2 Refine Level of Kronos +Increases damage of Hell Inferno by 10%. +-------------------------- +When equipped with Mikatsuki or Raksasa Dagger: +Decreases variable casting time as percent equal to Refine Level of Mikatsuki or Raksasa Dagger. +-------------------------- +Every 2 Refine Level of Mikatsuki or Raksasa Dagger: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +19256# +A mark worn by players which are new to Ragnarok. Let's guide them properly. +-------------------------- +By the time you get used to this world, the effect might disappear. +Increases experience gained from defeating monsters by 10% +Increases Item Drop Rate by 10% +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +-------------------------- +Effect disappears with Level 99 +# +19262# +One of the seven magic tools that Gilant possesses. +The wearer will be forced to awaken his potential and be able to exert extraordinary power on the person. +-------------------------- +MDEF +15 +-------------------------- +For each Refine Level: +Increases resistance to Fear by 10%. +MATK +1%. +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +7: +Increases damage of Psychic Wave by 15%. +Decreases Psychic Wave skill cooldown by 1 second. +-------------------------- +Refine Level +9: +Increases damage of Psychic Wave by additional 15%. +Decreases Psychic Wave skill cooldown by additional 1 second. +-------------------------- +Refine Level +10: +For each 10 combined sum of base INT and DEX: +INT +1, DEX +1 + +When equipped by Sorcerer: +Enables the use of Level 1 Ganbantein. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +19263# +A helmet said to be used by a brave general. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +ATK +5% +ASPD +1 +-------------------------- +Refine Level +11: +Increases Critical Damage by 15%. +-------------------------- +For each Refine Level above +10: +Decreases fixed casting time by 0.1 second (up to +15). +-------------------------- +When equipped with Gungnir or Gungnir[2]: +For each 2 Refine Level of Gungnir: +Increases damage of Banishing Point by 7%. +-------------------------- +When equipped with Zweihander or Zweihander[2] +For each 2 Refine Level of Zweihander: +ATK +20 +-------------------------- +When equipped with Quadrille or Quadrille[2]: +For each 2 Refine Level of Quadrille: +Increases damage of Tiger Cannon by 7%. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +# +19264# +A smirk golden fish hat. Every time I open my mouth, it seems fishy. +-------------------------- +Has a chance to endow weapon with Holy element for 60 seconds when dealing physical damage. +Has a chance to increase Holy element magic by 10% for 60 seconds when dealing magical damage. +-------------------------- +Refine Level +7: +Increased the chance to activate Magical Damage with Holy element increase. +-------------------------- +Refine Level +9: +When hit by a physical attack, has a low chance to auto-cast Quagmire lv.1 when receiving physical damage. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +19265# +Smokey uses the leaves of transformation. +I feel the energy of Smokey. +-------------------------- +Increase all property magical damage by 1% per refine rate. +-------------------------- +Has a chance to transform into Smokie for 5 seconds when dealing melee physical damage. +-------------------------- +Grants following effects while in Smokie form: +Has 5% chance to auto-cast bolt spells level 2 when dealing Melee Physical Damage. +-------------------------- +If refine rate is 7 or higher: +has 4% chance to auto-cast Frost Nova level 5 when dealing melee physical damage. +-------------------------- +If refine rate is 8 or higher: +has 3% chance to auto-cast Thunderstorm lv.5 level 5 when dealing melee physical damage. +-------------------------- +If refine rate is 9 and Base Level 151 or higher: +has 2% chance to auto-cast Hell Inferno lv.5 level 5 when dealing melee physical damage. +-------------------------- +If refine rate is 10 and Base Level 151 or higher: +has 1% chance to auto-cast Chain Lightning lv.3 level 5 when dealing melee physical damage. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: None +# +19266# +Headdress used by monks. The power to draw the wearer's magic is said to be hidden. +-------------------------- +INT +3 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +Refine Level +10: +Matk +5% +-------------------------- +Base Level at least 130: +Matk +50 +-------------------------- +When equipped with Survivor's Orb: +Decreases After Skill Delay by as percent equal to Refine rate of Survivor's Circlet. +-------------------------- +When equipped with Survivor's Rod: +For each Refine Level of Survivor's Rod: +Matk +10. +-------------------------- +When equipped with Survivor's Manteau: +For each 2 Refine Level of Survivor's Manteau: +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +19267# +Orbs that automatically assists its owner. +-------------------------- +MDEF +2 +-------------------------- +Reduce Variable Casting time by 2%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19268# +A model depicting the fire that the giant snake is emitting +Just wearing it makes me feel like a giant snake. +-------------------------- +Increases Magical Damage with Fire element by 1%. +-------------------------- +When equipped with Giant Faceworm Snake Skin/Giant Faceworm Snake Skin[1]: +For each 20 base STR: +ATK +5 +-------------------------- +For each 20 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +For each 20 base VIT: +Increases Neutral elemental resistance by 1%. +-------------------------- +For each 20 base INT: +Decreased Variable Casting Time by 4%. +-------------------------- +For each 20 base DEX: +Increases Ranged Physical Damage by 1%. +-------------------------- +For each 20 base LUK: +Increases Critical Damage by 3%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19269# +A headgear that looks like flapping wings of the angel of happiness. It makes you feel might lighter when you wear it. +-------------------------- +Increases Damage against monsters in Clock Tower or Nightmare Clock Tower by 5%. +-------------------------- +Decreases damage taken from Clock Tower or Nightmare Clock Tower monsters by 5%. +-------------------------- +Random chance a defeated Clock Tower or Nightmare Clock Tower monster will drop Witch Starsand. +-------------------------- +Refine Level +5: +Increases Damage against monsters in Clock Tower or Nightmare Clock Tower by 10%. +Decreases damage taken from Clock Tower or Nightmare Clock Tower monsters by 10%. +-------------------------- +Refine Level +7: +Increases Damage against monsters in Clock Tower or Nightmare Clock Tower by 15%. +Decreases damage taken from Clock Tower or Nightmare Clock Tower monsters by 15%. +-------------------------- +Refine Level +8: +Prevents Stone Curse status. +-------------------------- +Refine Level +9: +Increases Damage against monsters in Clock Tower or Nightmare Clock Tower by 20%. +Decreases damage taken from Clock Tower or Nightmare Clock Tower monsters by 20%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +19272# +A hat created by imagining the garden of Eden. +-------------------------- +INT +5 +DEX +5 +-------------------------- +Increases Magical Damage with every element by 10%. +-------------------------- +Bypass 20% of hard magic defense of all race. +-------------------------- +Refine Level +7: +Increases Magical Damage with every element by additional 15%. +Bypass 30% of hard magic defense of all race. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time time by 15% +Bypass 50% of hard magic defense of all race. +-------------------------- +When compounded with High Wizard Card: +Decreases Variable Casting Time by 100%. +Decreases Telekinesis Intense skill cooldown by 120 seconds. +-------------------------- +When Garden Of Eden is unequipped Telekinesis Intense effect is disabled. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19273# +Color contacts created to resemble the eyes of the Gemini-S58. +-------------------------- +Increases resistance to Stone Curse and Sleep by 10%. +-------------------------- +Base VIT at least 90: +Increases resistance to Stone Curse and Sleep by additional 40%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19274# +Headphones with a magical voice to enhance your concentration. +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Decreases SP Consumption by 5%. +-------------------------- +Restores 5 SP when defeating monsters. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 90 +# +19275# +Rental Item +An underwater mask that can be rented for a certain period of time during the July Noodle Festival. For diving, waterproof measures against high pressure and impact are provided. +-------------------------- +ATK +20 +MATK +20 +Decreases damage taken from Fish race by 5% +-------------------------- +When equipped with Rental Surfer Swimsuit and Rental Oxygen Tank: +Increases Attack Speed (Decreases After Attack Delay by 15%). +Increases Critical against Fish race monsters by 30%. +Increases Damage against monsters of Fish race by 25%. +Endows Armor with Water element. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +# +19277# +Cool and refreshing carbonated drinks. Good friends of popcorn. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19279# +A hat full of the atmosphere of the Republic of Schwarzwald. +-------------------------- +MDEF +15 +-------------------------- +DEX +3 +HIT +30 +-------------------------- +Increases Ranged Physical Damage by 8%. +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by additional 4%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +19280# +A bandage that conveys the intensity of the battle on the battlefield. +-------------------------- +MDEF +5 +-------------------------- +VIT +3 +-------------------------- +Decreases damage taken from long range physical attacks by 6%. +-------------------------- +Decreases damage taken from Demi-Human racae monsters by 6%. +-------------------------- +For each 3 Refine Levels: +Decreases damage taken from long range physical attacks by additional 2%. +Decreases damage taken from Demi-Human racae monsters by additional 2%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +19281# +A replica of a robe once worn by a person who was told that the child would stop crying just by hearing its name. +-------------------------- +MDEF +10 +-------------------------- +For each Refine Level: +Random chance to increase magical damage by 1% for 10 seconds when dealing magical damage. +-------------------------- +When equipped with David Shield: +Decreases Variable Casting Time by 15%. +MATK +10% +-------------------------- +Type: Armor +Defense: 35 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19282# +A robe worn by a person who was once told that a child would stop crying just by hearing its name. +-------------------------- +MDEF +10 +-------------------------- +Decreases Fixed Casting Time by 50%. +-------------------------- +For each Refine Level: +MATK +2% +Increases Magical Damage with Fire element by 2%. +-------------------------- +Protects from skill cast interruption. +-------------------------- +When compounded with Entweihen Crothen Card: +Increases damage of Meteor Storm by 50%. +Prevents Frozen status. +-------------------------- +When equipped with David Shield: +Decreases Variable Casting Time by 15%. +MATK +10% +-------------------------- +Type: Armor +Defense: 35 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19283# +A girlish hair band with a small heart, wings and lace. +-------------------------- +Decreases After Skill Delay by 5%. +Decreases SP Consumption by 10%. +-------------------------- +For each 3 Refine Levels: +Decreases After Skill Delay and SP Consumption fo all skill by additional 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +19284# +Sunglasses with a near-future look. +-------------------------- +Decreases After Skill Delay by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 99 +# +19285# +A helmet worn by a certain hero. +The hero has an immortal body that does not accept any weapons. +-------------------------- +Decreases damage taken from Boss class by 5%. +-------------------------- +Refine Level +6: +Perfect Dodge +5 +Decreases damage taken from Boss class by an additional 5%. +-------------------------- +Refine Level +8: +Perfect Dodge +5 +Decreases damage taken from Boss class by an additional 10%. +Prevents the user from being knocked back. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19288# +A helm that once belonged to an ancient giant. +-------------------------- +Increases experience gained from defeating all monsters by 3% +Increases drop rate gained from defeating all monsters by 3% +Expiration date 29-04-2024 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19289# +An eye patch containing the great powers of Hatii. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 14. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19290# +The horns from an elder devil. It has great magical powers. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19291# +This shiba inu took a liking to you and now it won't leave you alone. Aren't you lucky! +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 14. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19292# +A knitted cap inspired by the smokie which can be worn daily due to its' simple design. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19293# +Fashionable glasses that do not have an upper frame to hold the lens. The ideal item for fashionable users of glasses. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19294# +A headphone with cat ears. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 14. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19296# +A small hat with a very impressive leather material. +Chic coloring fills the mature. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +9: +ATK +5% +ASPD +1 +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by 5%. +-------------------------- +For each Refine Level above +10: +Decreases fixed casting time by 0.1 second (up to +15). +-------------------------- +When equipped with Nidhoggur's Shadow Garb[1]: +For each 2 Refine Level of Nidhoggur's Shadow Garb[1]: +Increases damage of Arrow Storm by 12%. +-------------------------- +When equipped with Leather of Tendrilion[1]: +For each 2 Refine Level of Leather of Tendrilion[1]: +Increases damage of Severe Rainstorm by 7%. +-------------------------- +When equipped with Ancient Cape[1]: +For each 2 Refine Level of Ancient Cape[1]: +Increases damage of Triangle Shot by 15%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +19299# +A young leaf of a huge tree that towers in eclamation. +It is said that magical power always overflows from the young leaves. +-------------------------- +Decreases Variable Casting Time of skills by 5%. +-------------------------- +When equipped with Kardui Ears: +MATK +10 +Decreases Variable Casting Time of skills by additional 2%. +Decreases damage taken from Demi-Human race by 2%. + +Base DEX at least 108: +MATK +20 +Decreases Variable Casting Time of skills by additional 3%. +Decreases damage taken from Demi-Human race by additional 2%. + +Base DEX at least 120: +MATK +30 +Decreases Variable Casting Time of skills by additional 5%. +Decreases damage taken from Demi-Human race by additional 4%. +-------------------------- +When equipped with Tendrilion Card: +For each Refine Level of equipped Book, One-Handed Staff or Two-Handed Staff: +Increases Magical Damage on Players by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +19300# +A cap with a cozy puppy ear in a stylish officer hat. +-------------------------- +For each 2 Refine Levels: +Atk +15 +-------------------------- +Refine Level +7: +ATK +30 +-------------------------- +Refine Level +9: +ATK +5% +ASPD +1 +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by 3% and critical damage by 3%. +-------------------------- +For each Refine Level above +10: +Decreases fixed casting time by 0.1 second (up to +15). +-------------------------- +When equipped with Thanos Katar: +For each 2 Refine Level of Thanos Katar: +ATK +20 +-------------------------- +When equipped with Dark Rose: +For each 2 Refine Level of Dark Rose: +Increases damage of Fire Dance by 6%. +-------------------------- +When equipped with Tornado Axe: +For each 2 Refine Level of Tornado Axe: +Increases damage of Axe Tornado by 15%. +-------------------------- +Type: Headgear +Defense: 35 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +19302# +A helmet that bears the name of a Cancer like the constellation around the ecliptic. +It is said that it exerts its true power when it shines in the shine of a star. +-------------------------- +ATK +6% +-------------------------- +Perfect Dodge +5 +-------------------------- +When enchanted with Cancer: +MaxHP +10%, MaxSP +10% +Defeating monsters with physical attacks recovers 50 HP and 3 SP. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +19303# +A helmet bearing the name of Taurus, as if the constellations around the ecliptic were embodied. +It is said that it exerts its true power when it shines in the shine of a star. +-------------------------- +ATK +6% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When enchanted with Taurus: +MaxHP +10%, MaxSP +10% +Defeating monsters with physical attacks recovers 50 HP and 3 SP. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +19304# +A legendary helmet that is said to have been brought to life by the hands of the gods. +The blessing protects itself from fire, cold, and magic, and freezes the enemy. +-------------------------- +MDEF +15 +-------------------------- +MaxHP +5% +-------------------------- +Decreases damage taken from Fire and Water elemental attacks by 5%. +-------------------------- +For each Refine Level: +MaxHP +1% +Decreases damage taken from Fire and Water elemental attacks by additional 2%. +-------------------------- +Refine Level +8: +Enables the use of Level 5 Frost Nova. +-------------------------- +Refine Level +10: +Random chance to auto-cast Level 1 Land Protector around yourself when recieving magical damage. +-------------------------- +Type: Headgear +Defense: 30 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +19306# +A gamblers lucky ace of hearts card. +-------------------------- +Increases Critical Damage by 5%. +-------------------------- +When equipped with Gambler's Seal: +ASPD +1 +Increases Critical Damage by 2%. +Decreases critical damage taken from Player by 2%. +Decreases damage taken from Critical Slash by 100%. + +For each 10 base DEX: +Increases Critical Damage by 2%. + +Base LUK at least 108: +ASPD +1 +Increases Critical Damage by 2%. +Decreases critical damage taken from Player by 2%. + +Base LUK at least 120: +ASPD +2 +Increases Critical Damage by 4%. +Decreases critical damage taken from Player by 4%. +Normal attack will inflict splash damage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 80 +# +19307# +It is said that the mysterious flames floating around are the souls of pathetic dead who cannot even enter hell. +-------------------------- +Prevents Confusion status. +-------------------------- +Increases Variable Casting Time of all skills by 10%. +-------------------------- +Since it is an equipped effect, it still will be displayed even when the effect (/effect) is turned off. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +19308# +A beret made from the ear of Amistr. +-------------------------- +For each 2 Refine Levels: +ATK +10 +MATK +10 +-------------------------- +Refine Level +7: +Decreases variable casting time by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Neutral and Holy element by 10%. +-------------------------- +Refine Level +11: +MATK +3% +ATK +5% +-------------------------- +For each Refine Level above +10: +Decreases fixed casting time by 0.1 second (up to +15). +-------------------------- +When equipped with Holy Stick: +MATK +10 +-------------------------- +For each 2 Refine Level of Holy Stick: +Increases damage of Adoramus by 30%. +-------------------------- +When equipped with Wondrous Foxtail Staff: +For each 2 Refine Level of Wondrous Foxtail Staff: +Increases Magical Damage with Neutral element by 5%. +-------------------------- +When equipped with Twin Edge of Naght Sieger [Blue]: +For each 2 Refine Level of Twin Edge of Naght Sieger [Blue]: +Increases damage of Cart Cannon by 10%. +-------------------------- +Type: Headgear +Defense: 15 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +19310# +A hat given to adventurer who start another adventure. +-------------------------- +All Stats +1 +MaxHP +200 +-------------------------- +When equipped with Beginner's Hat, Beginner's Suit, Beginner's Manteau, Beginner's Boots and Beginner's Ring: +Physical attacks have a 2% chance to recover 500 HP and SP 50. +Magical attacks have a 2% chance to recover 250 HP and SP 100. + +Base Level at least 125: +ATK +10 +MATK +10 + +Base Level at least 130: +MaxHP +1% +MaxSP +1% +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +19311# +An unusual helmet that has vicious aura bearing the Great Demon name. +As its name implies, it has an ability to absorb the life force of its enemy. +-------------------------- +MaxHP +10% +ATK +6% +-------------------------- +Random chance to absorb 10% of damage into HP when dealing physical damage. +-------------------------- +Enables the use of Level 1 Crazy Uproar. +-------------------------- +Refine Level +7: +ATK +5% +Random chance to absorb 15% of damage against enemy into HP when dealing physical damage. +Chance of absorbing increases. +-------------------------- +Refine Level +9: +ATK +5% +Random chance to absorb 15% of damage against enemy into HP when dealing physical damage. +Chance of absorbing increases. +-------------------------- +When equipped with Hunter Fly Card: +Disables HP absorbing effect. +-------------------------- +Indestructible in battle +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19312# +A mysterious Barrette that resonates with Neve and causes various phenomena. +-------------------------- +MDEF +3 +-------------------------- +When equipped with any kind of Neev weapon: +For each 10 base STR: +ATK +1%. + +For each 10 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 1%). + +For each 10 base VIT: +MaxHP +1% + +For each 10 base INT: +MATK +20 + +For each 10 base DEX: +Decreases Variable Casting Time by 1%. + +For each 10 base LUK: +Critical +1 + +For each Refine Level of equipped Neev weapon: +ATK +20, MATK +20 +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19313# +A mysterious Barrette that resonates with Neve and causes various phenomena. +-------------------------- +MDEF +3 +-------------------------- +When equipped with any kind of Neev weapon: +For each 10 base STR: +ATK +1%. + +For each 10 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 1%). + +For each 10 base VIT: +MaxHP +1% + +For each 10 base INT: +MATK +20 + +For each 10 base DEX: +Decreases Variable Casting Time by 1%. + +For each 10 base LUK: +Critical +1 + +For each Refine Level of equipped Neev weapon: +ATK +20, MATK +20 +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19314# +A manly mantle made from unusual materials that usually worn by noble character. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from all elemental attacks by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 90 +# +19324# +A helmet bearing the name of Gemini, as if the constellations around the ecliptic were embodied. +It is said that it exerts its true power when it shines in the shine of a star. +-------------------------- +ATK +6% +-------------------------- +Increases Natural SP Recovery Rate by 20%. +-------------------------- +When enchanted with Gemini: +All Stats +10 +Increases Damage by 3%. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +19325# +It is said to exert its true power when it carries the brilliance of a star that bears the name of Sagittarius as embodied in the constellation around the ecliptic. +-------------------------- +ATK +6% +-------------------------- +HIT +20 +-------------------------- +When enchanted with Sagittarius: +Defeating monsters with physical attacks restores 5 SP. +Decreases After Skill Delay by 20%. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +19326# +A magic book with great information. The contents are only deciphered while placing the book upon your head. +-------------------------- +When equipped with Armeyer Dinze Card: +Increases experience gained from defeating Fish race monsters by 5%. +-------------------------- +When equipped with Anopheles Card: +Increases experience gained from defeating Insect race monsters by 5%. +-------------------------- +When equipped with Orc Archer Card: +Increases experience gained from defeating Demi-Human race monsters by 5%. +-------------------------- +When equipped with Grove Card: +Increases experience gained from defeating Formless race monsters by 5%. +-------------------------- +When equipped with Baroness of Retribution Card: +Increases experience gained from defeating Angel race monsters by 5%. +-------------------------- +When equipped with Stem Worm Card: +Increases experience gained from defeating Brute race monsters by 5%. +-------------------------- +When equipped with Cloud Hermit Card: +Increases experience gained from defeating Plant race monsters by 5%. +-------------------------- +When equipped with Dragon Egg Card: +Increases experience gained from defeating Dragon race monsters by 5%. +-------------------------- +When equipped with Wraith Card: +Increases experience gained from defeating Undead race monsters by 5%. +-------------------------- +When equipped with Raydric Archer Card: +Increases experience gained from defeating Demon race monsters by 5%. +-------------------------- +Refine Level +6: +Increases experience gained of item set by 5%. +-------------------------- +Refine Level +8: +Increases experience gained of item set by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +19327# +A feather said dropped by Seraphim. Whether it is genuine or not, nobody knows. +-------------------------- +Increases Healing skills effectiveness by 5%. +-------------------------- +When equipped with Seraphim Coronet: +Increases Healing skills effectiveness by 5%. +Increases recovery amount gained from Healing skills and Restorative items by 5%. +Decreases damage taken from Players by 2%. +Decreases Variable Casting Time of Coluseo Heal by 100%. +Prevents Confuse and Bleeding status. +-------------------------- +For each 8 base INT: +Decreases Variable Casting Time by 1%. +-------------------------- +Base INT at least 108: +Decreases Variable Casting Time by 4%. +Increases Healing skills effectiveness by 10%. +Increases recovery amount gained from Healing skills and Restorative items by 10%. +Decreases damage taken from Players by 2%. +-------------------------- +Base INT at least 120: +Decreases Variable Casting Time by 6%. +Increases Healing skills effectiveness by 15%. +Increases recovery amount gained from Healing skills and Restorative items by 15%. +Decreases damage taken from Players by 4%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 80 +# +19329# +A hand dropped by a psychic who was chasing after a powerful demon. It will surround you with fear once you equip it. +-------------------------- +Decreases After Attack Delay 10%. +-------------------------- +Decreases Fixed Casting Time by 50%. +-------------------------- +Increases damage of Howling of Lion by 20%. +-------------------------- +Protects from skill cast interruption. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by additional 5%). +Increases damage of Howling of Lion by additional 30%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by additional 5%). +Increases damage of Howling of Lion by additional 50%. +-------------------------- +Refine Level +10: +Bypass 100% of hard defense of all race. +-------------------------- +When Ride in Lightning is Level 5: +Decreases Variable Casting Time of Call Spirits, Steel Body, Howling of Lion and Dangerous Soul Collect by 50%. +-------------------------- +When Earth Shaker is Level 5: +Decreases Howling of Lion skill cooldown by 9.5 seconds. +-------------------------- +When Rampage Blaster is Level 5: +Increases Physical Damage against enemies of Boss class by 50%. +-------------------------- +Type: Headgear +Defense: 18 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19330# +A commemorative hat presented to a Farfalle vigilante member who was recognized as a full serving. +It is decorated with the tail pattern of Peron Peroncino, the leader of the vigilante. +-------------------------- +MaxHP +1000 +MaxSP +200 +-------------------------- +Defeating monsters restores 500 HP and 50 SP. +-------------------------- +Recovers 250 HP and 30 SP every 5 seconds. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Refineable: No +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Summoner (Doram) +# +19335# +The ambitious work of the Sweets Festival Committee. +Is it a candy? +How would syrup flow instead of blood in the body? +-------------------------- +Type: Headgear +Defense: 18 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +19337# +A pair of safety glasses which helps you during your activities in Heart Hunter Base. +It will also be useful for collecting training data. +-------------------------- +Decreases damage taken from Poison elemental attacks by 10%. +-------------------------- +Increases Damage against monsters in Heart Hunter Base by 5%. +-------------------------- +Decreases damage taken from Heart Hunter Base monsters by 5%. +-------------------------- +Refine Level +5: +Increases Damage against monsters in Heart Hunter Base by additional 10%. +Decreases damage taken from Heart Hunter Base monsters by additional 10%. +-------------------------- +Refine Level +7: +Increases Damage against monsters in Heart Hunter Base by additional 15%. +Decreases damage taken from Heart Hunter Base monsters by additional 15%. +-------------------------- +Refine Level +8: +Decreases damage taken from Poison elemental attacks by additional 15%. +-------------------------- +Refine Level +9: +Increases Damage against monsters in Heart Hunter Base by additional 20%. +Decreases damage taken from Heart Hunter Base monsters by additional 20%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +19338# +A green hat with a clover on it. +-------------------------- +AGI +2, HIT +3. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 15 +# +19339# +Old-fashioned hat. +Be careful not to break the egg shell on the sides of your head. +-------------------------- +MaxHP +75, MaxSP +25. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 15 +# +19340# +A sacred egg shell with angel wings. +If you wear it, it seems like you just come up with a good idea. +-------------------------- +Increases Healing amount by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 15 +# +19341# +The shell of evil energy with the wings of the devil. +When I wear it, it seems that only some bad thoughts come to mind. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 15 +# +19342# +A hat made from tanned cow leather. +It seems that the face turns pale when the gang bandits see this hat. +-------------------------- +Decreases damage taken from Wind elemental attacks by 10%. +-------------------------- +Increases Damage against monsters in Rock Ridge by 15%. +-------------------------- +Decreases damage taken from Rock Ridge monsters by 15%. +-------------------------- +Refine Level +7: +Increases Damage against monsters in Rock Ridge by additional 15%. +Decreases damage taken from Rock Ridge monsters by additional 15%. +-------------------------- +Refine Level +8: +Decreases damage taken from Wind elemental attacks by additional 10%. +-------------------------- +Refine Level +9: +Increases Damage against monsters in Rock Ridge by additional 20%. +Decreases damage taken from Rock Ridge monsters by additional 20%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +19343# +A bird-shaped crown that revives many times. +It is said that those who wear it have blessings. +-------------------------- +MDEF +15 +-------------------------- +MaxHP +10% +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Increases damage of Overbrand by 10%. +-------------------------- +Decreases Fixed Casting Time of Overbrand by 100%. +-------------------------- +When Level 5 King's Grace is learned: +Decreases Variable Casting Time of Inspiration by 2 seconds. +Decreases Inspiration skill cooldown by 10 seconds. +-------------------------- +When Level 5 Moon Slasher is learned: +Decreases Variable Casting Time of Overbrand by 1 second. +-------------------------- +When Level 5 Moon Slasher is learned: +MaxHP +10%, MaxSP +10% +DEF +150, MDEF +15 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 5%. +Increases damage of Overbrand by 15%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 5%. +Increases damage of Overbrand by additional 25%. +-------------------------- +Refine Level +10: +Ignores physical defense of all enemies by 100%. +-------------------------- +Type: Headgear +Defense: 18 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19344# +The preparedness and will of the burning +heart were captured in one headband. +Using this makes me want to clench my fist. +-------------------------- +STR +2 +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Water, Wind, Earth and Neutral elemental by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Small and Large size by 15%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +All Jobs except Novice +# +19347# +A cute headgear with the image of a Siamese cat hugging and spoiling. +-------------------------- +MDEF +15 +-------------------------- +MaxHP +5%, MaxSP +5% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Decreases damage taken from Players by 3%. +-------------------------- +Enables the use of Level 1 Greed. +-------------------------- +For each Refine Level: +MaxHP +1%, MaxSP +1% +Decreases damage taken from Players by additional 1%. +Decreases Fixed Casting Time by 7%. +-------------------------- +Refine Level +8: +Decreases After Skill Delay by 100%. +-------------------------- +Refine Level +10: +Random chance to increase all stats by 30 for 10 seconds when recieving physical or magical damage. +-------------------------- +Indestructible in battle +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Summoner (Doram) +# +19348# +A cute headgear with the image of a cat hugging and spoiling. +-------------------------- +MDEF +5 +-------------------------- +Defeating monsters restores 100 HP and 10 SP. +-------------------------- +Enables the use of Level 1 Greed. +-------------------------- +For each Refine Level: +Defeating monsters restores additional 50 HP and 5 SP. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Headgear +Defense: 12 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Summoner (Doram) +# +19349# +A delicious pizza with plenty of pepperoni. +I can't eat it because it seems to be eaten. +-------------------------- +Increases Damage against monsters in Dragon's Nest by 20%. +-------------------------- +Decreases damage taken from Dragon's Nest monsters by 20%. +-------------------------- +Prevents Sleep status. +-------------------------- +Refine Level +7: +Increases Damage against monsters in Dragon's Nest by additional 30%. +Decreases damage taken from Dragon's Nest monsters by additional 30%. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19350# +A carrot that is rumored to cure the dislike of carrots just by holding it. +-------------------------- +Increases recovery amount of Carrot by 1200%. +-------------------------- +Increases damage of Lunatic Carrot Beat by 15%. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19351# +A hat shaped like fresh strawberries. +-------------------------- +ATK +30, MATK +30 +-------------------------- +For each Refine Level: +ATK +5, MATK +5 +-------------------------- +Refine Level +7: +Prevents knock-back effect. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19352# +A hat shaped like a fresh green apple. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +For each Refine Level: +Decreases After Skill Delay by 2%. +-------------------------- +Refine Level +7: +Protects from skill cast interruption. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19364# +An engineer's old cap hat A craftsman's eyes seem to shine through the hat. +-------------------------- +For each 2 Refine Levels: +ATK +10, +MATK +10 +-------------------------- +Refine Level +7: +Decreases damage taken from Formless race by 5%. +-------------------------- +Refine Level +9: +Increases Damage against monsters of Formless race by 10%. +-------------------------- +Refine Level +11: +MATK +5%, +ATK +5% +-------------------------- +For each Refine Level equal or above +10: +Increases Damage against monsters of Formless race monstery by 2%. (Up to +15 ) +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +19366# +One of Goibne's few armors which made +weapons the most. The gods rated Gebne's armor better than weapons. +-------------------------- +VIT +3, +MDEF +3 +-------------------------- +Refine Level +7: +VIT +5 +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 12%. +-------------------------- +When equipped with Illusion Goibne's Armor, +Illusion Goibne's Spaulder and Illusion Goibne's Greaves: +VIT +5, MaxHP +15%, +MaxSP +5% DEF +5, +MDEF +15, +-------------------------- +Decreases damage taken from Water, Wind, +Earth and Fire elemental attacks by 10%. +-------------------------- +Refine Level of Illusion Goibne's Armor, +Illusion Goibne's Spaulder and Illusion Goibne's Greaves each is +7 or higher: +MaxHP +10% +-------------------------- +Total Refine Level of entire set at least +36: +Decreases Fixed Casting Time by 0.7 seconds. +-------------------------- +Total Refine Level of entire set at least +40: +Decreases After Skill Delay by 20%. +-------------------------- +Type: Headgear +Defense: 25 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +All Jobs except Novice +# +19367# +A symbol of great fire. +Those who have it will win the honor with their sword. +-------------------------- +Decreases damage taken from Fire elemental attacks by 20%. +-------------------------- +Decreases damage taken from Players by 3%. +-------------------------- +For each Refine Level: +Decreases damage taken from Players by additional 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Normal class by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 165 +# +19379# +A crest hat with a venerable family crest. +It seems to have been used by the user of Goumi, who was proclaimed to be a warlord. +-------------------------- +AGI +5 +DEX +5 +ASPD +10% +-------------------------- +Increases Ranged Physical Damage by 5%. +-------------------------- +Perfect HIT +10% +-------------------------- +For each Refine Level: +HIT +2 +Decreases After Skill Delay by 2%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 10%. +Perfect HIT +20% +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 10%. +Perfect HIT +20% +-------------------------- +When equipped with Brave Hero Shoes: +Increases Ranged Physical Damage by additional 25%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19380# +A mysterious Yin Yang ball that floats. +It has the power of the two contradictory energies. +-------------------------- +MATK +35 +-------------------------- +Increases Magical Damage against monsters of Boss class by 2%. +-------------------------- +Base DEX at least 90: +MATK +70 +Increases Magical Damage against monsters of Boss class by additional 3%. +-------------------------- +Base DEX at least 125: +MATK +140 +Increases Magical Damage against monsters of Boss class by additional 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +19381# +An meticulously ornamented scarf that firmly protects from the throat to the shoulder. The stout, detailed shield-like decoration embodies the toughness of an iron wall. +-------------------------- +MDEF +5 +MaxHP +5% +-------------------------- +When equipped with Protect Feathers +DEF +50, MDEF +5, +VIT +5, ASPD +5%. +Decreases damage taken from Demi-Human by 3%. +-------------------------- +If base VIT at least 108: +DEF +50, MDEF +5, +VIT +5, ASPD +5%. +-------------------------- +If base VIT at least 120: +DEF +100, MDEF +10 +VIT +10 +-------------------------- +Type: Headgear +Position: Lower +Defense: 0 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +19382# +A hat designed by popcorn lovers who wanted to pop popcorn anytime, anywhere. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +19385# +A helmet bearing the name of Serpentarius, as embodied in the constellations around the ecliptic. +It is said that it exerts its true power when it shines in the shine of a star. +-------------------------- +Increases Damage by 6%. +-------------------------- +Prevents Curse status. +-------------------------- +When enchanted with Surpentarius: +All Stats +10 +Decreases Variable Casting Time by 10%. +Decreases After Skill Delay by 20%. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +19386# +A helmet bearing the name of Aquarius, as if the constellations around the ecliptic were embodied. +It is said that it exerts its true power when it shines in the shine of a star. +-------------------------- +MATK +6%. +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +When enchanted with Aquarius: +Decreases Fixed Casting Time by 50%. +Increases Magical Damage against monsters of Boss class by 20%. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +19387# +A hat made to simulate an experimental adult goat type, which is an experimental body of Werner Institute. +-------------------------- +Decreases damage taken from Earth elemental attacks by 10%. +-------------------------- +Increases Damage against monsters in Werner Lab Central Room by 15%. +-------------------------- +Decreases damage taken from Werner Lab Central Room monsters by 15%. +-------------------------- +Refine Level +7: +Increases Damage against monsters in Werner Lab Central Room by additional 15%. +Decreases damage taken from Werner Lab Central Room monsters by additional 15%. +-------------------------- +Refine Level +8: +Decreases damage taken from Earth elemental attacks by additional 15%. +-------------------------- +Refine Level +9: +Increases Damage against monsters in Werner Lab Central Room by additional 20%. +Decreases damage taken from Werner Lab Central Room monsters by additional 20%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +19389# +Rental Item +A mask that allows you to breathe fresh air anywhere by attaching a device that filters harmful air in front. +When worn, it is possible to safely defeat the fine dust mass and when dealing with the fine dust mass, there is a certain chance that a Mysterious Plastic Bag will drop. +-------------------------- +Type: Headgear +Defense: 10 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +19390# +A hat used by members of the survey team. +Perfect for dangerous investigations. +-------------------------- +Decreases damage taken from Small, Medium and Large size by 5%. +-------------------------- +Refine Level +6: +Decreases damage taken from Small, Medium and Large size by additional 5%. +-------------------------- +Refine Level +9: +Decreases damage taken from Small, Medium and Large size by additional 5%. +-------------------------- +For each Refine Level: +Decreases damage of Self Destruction by 10%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19391# +A creepy blindfold drawn over the eyes gives a slightly uneasy feeling. +-------------------------- +MaxHP +10% +MaxSP +10% +-------------------------- +Decreases damage taken from Demi-Human by 5%. +-------------------------- +Prevents Blind status. +-------------------------- +When Illusion Doping is Level 5: +Enables the use of Level 5 Dispel. +-------------------------- +When Mandragora Howl is Level 5: +Decreases Fixed Casting Time of Mandragora Howl by 70%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 50 +-------------------------- +Requirement: +Base Level 100 +# +19394# +A helmet that bears the name of Libra, as embodied in the constellation around the ecliptic. +It is said that it exerts its true power when it shines in the shine of a star. +-------------------------- +All Stats +5 +-------------------------- +ATK +6% +-------------------------- +When enchanted with Libra: +MaxHP +10% +Increases Physical Damage against enemies of Boss class by 20%. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +19395# +A helmet bearing the name of Scorpio as embodied by the constellations around the ecliptic. +It is said that it exerts its true power when it shines in the shine of a star. +-------------------------- +ATK +6% +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +When enchanted with Scorpio: +STR +7 +Decreases After Skill Delay by additional 20%. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +19396# +A very valuable commemorative hat made by the Monster Race Association for customers who use Monster Race. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +8: +For each Level of Peaceful Break: +ATK +5 +-------------------------- +Refine Level +11: +Using Prominence Kick Increases damage of Solar Burst by 30% for 10 seconds. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Star Emperor +# +19397# +A very valuable commemorative hat made by the Monster Race Association for customers who use Monster Race. +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Decreases Variable Casting Time by 2%. +-------------------------- +Refine Level +8: +For each Level of Happy Break: +MaxSP +100 +-------------------------- +Refine Level +11: +Using Esma Increases damage of Espa and Eswhoo by 30% for 10 seconds. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Soul Reaper +# +19402# +Stars shining in the sky. +The star is said to inhale everything. +-------------------------- +Enables the use of Level 1 Greed. +-------------------------- +When equipped by Blacksmith classes: +Decreases Variable Casting Time of Greed by 100%. +Defeating monsters with physical attacks restores 5 SP. +-------------------------- +When equipped with Roaring Drum: +Ignores physical defense of all enemies by 50%. +-------------------------- +Since it is an equipped effect, it still will be displayed even when the effect (/effect) is turned off. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +19404# +It is said that many adventurers are coveted because it is an item made with the motive of the popular item, Rideword Hat and has better performance than the Rideword Hat itself. +-------------------------- +Drains 10 HP every 5 seconds while equipped. +Physical attacks have a 4% chance to absorb 2% of inflicted damage into HP. +Physical attacks have a 4% chance to absorb 2% of inflicted damage into SP. +Magical attacks have a 4% chance to recover 300 HP per second for 4 seconds. +Magical attacks have a 4% chance to recover 70 SP per second for 4 seconds. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +19407# +A hat used by mechanics at work. +It is highly convenient and is also used in fashion. +-------------------------- +MDEF +15 +VIT +10 +-------------------------- +Increases damage of Axe Tornado by 20%. +-------------------------- +Decreases Variable Casting Time of Greed by 100%. +-------------------------- +When FAW Magic Decoy is Level 5: +Increases Physical Damage against enemies of Boss class by 50%. +-------------------------- +When Axe Boomerang is Level 5: +ATK +100 +-------------------------- +When Magma Eruption is Level 5: +Random chance a defeated monster will drop 3 Carat Diamond. +-------------------------- +Refine Level +7: +Increases Axe Tornado damage by additional 30%. +-------------------------- +Refine Level +9: +Increases Axe Tornado damage by additional 50%. +-------------------------- +Refine Level +10: +Bypass 100% of hard defense of Normal, Boss and Demi-Human race when performing a physical attacks. +-------------------------- +Type: Headgear +Defense: 18 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19409# +A winged hat that is said to have been used by an executive of a certain organization. +Get high performance with top secret missions. +-------------------------- +DEX +10 +MDEF +15 +-------------------------- +Restores 50 SP when defeating enemies with physical or magical attacks. +-------------------------- +Increases damage of Feint Bomb by 10%. +-------------------------- +When Invisibility is mastered: +Increases Physical Damage against enemies of Boss class by 50%. +-------------------------- +When Maelstrom is Level 3: +Enables use of Level 7 Flying Kick. +-------------------------- +When Reproduce is Level 10: +Decreases SP Consumption of Reproduce by 30%. +-------------------------- +Refine Level +7: +HIT +30 +Increases damage of Feint Bomb by additional 15%. +-------------------------- +Refine Level +9: +HIT +20 +Increases damage of Feint Bomb by additional 25%. +-------------------------- +Refine Level +10: +Bypass 100% of hard defense of Normal, Boss and Demi-Human race when performing a physical attacks. +-------------------------- +Type: Headgear +Defense: 18 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19411# +I don't know who's making the doll of the four generals Gioia. +The fluffy appearance is adorable, but the floating principle and power are completely unknown. +-------------------------- +Increases Damage against monsters of Formless race by 20%. +-------------------------- +Prevents Fear status. +-------------------------- +Cann only be sold to NPC or stored. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +19415# +A pink rose decorated with white bird feathers. +-------------------------- +Decreases SP Consumption by 3%. +Increases Healing skill by 3%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +19424# +Helmet modeled after the appearance of the Master Cat Letter. +Jack likes. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19425# +Helmet modeled after the appearance of the Master Cat Letter. +Jack likes. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle, Lower +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +19426# +The Spirit King's power lies inside beyond this Jeweled Gemstone. +-------------------------- +MDEF +15 +Decreases After Skill Delay by of all skills by 10%. +Increases damage of Earth Grave and Diamond Dust by 10%. +-------------------------- +When Warmer is Level 5: +Decreases Varetyr Spear, Earth Grave and Diamond Dust skill cooldown by 1 second. +-------------------------- +For each Level of Elemental Shield: +Increases Magical Damage against monsters of Boss class by 25%. +-------------------------- +For each Level of Elemental Sympathy: +Decreases Variable Casting Time by 6%. +-------------------------- +For each refine level: +Decreases Fixed Casting Time by 7%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by of all skills by an additional 5%. +Increases damage of Earth Grave and Diamond Dust by an additional 15%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by of all skills by additional 5%. +Increases damage of Earth Grave and Diamond Dust by an additional 25%. +-------------------------- +Refine Level +10: +Bypass 100% of hard magic defense of Normal class monsters, Boss class monsters, and Demi-Human when performing a physical attacks. +-------------------------- +When equipped with King of Spirit Ring: +When Warmer is Level 5: +Decreases the delay of Earth Grave and Diamond Dust by 1 seconds. +Decreases the delay of Varetyr Spear by 0.5 seconds +-------------------------- +Position: Headgear +Defense: 15 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19428# +Hood that says that the true power of +Morphys is sealed in. Some items are +needed to unlock the seal. +-------------------------- +INT +10, +MDEF +15, +MaxSP +20% +-------------------------- +For each 2 Refine Levels: +Decreases Variable Casting Time by 3%. +-------------------------- +Refine Level +7: +MATK +30 +-------------------------- +Refine Level +9: +Protects from skill cast interruption. +-------------------------- +When equipped with Illusion Morpheus's Shawl +Illusion Morpheus's Bracelet and +Illusion Morpheus's Ring: +INT +5, MaxSP +10%, +DEF +100 +Increases Magical Damage with Water, Earth and Neutral element by 10%. +-------------------------- +Refine Level of Illusion Morpheus's Hood and Illusion Morpheus's Shawl each is +7 or higher: +MATK +40 +-------------------------- +Total Refine Level of entire set at least +18: +MATK +40 +Increases Magical Damage with Ghost, Wind and Holy element by 15%. +-------------------------- +Total Refine Level of entire set at least +22: +MATK +10% +Ignores magic defense of Formless, Brute and Demon race by 50%. +-------------------------- +Position: Headgear +Defense: 15 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +19429# +An item that hurts if you try to know. +# +19433# +There are dragons circling on the drums, said to be the equipment of the ancient Thor. +-------------------------- +ATK +20 +MATK +20 +ASPD +1 +-------------------------- +Refine Level +7: +ASPD +1 +-------------------------- +Refine Level +9: +ATK +3% +MATK +3% +-------------------------- +Refine Level +10: +ATK +10% +MATK +10% + +For each Refine Level above +10: +ATK +1% +MATK +1 +-------------------------- +Refine Level +12: +ASPD +1 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +19436# +A helmet made by combining parts found in the ruins of Juperos. +Looking at parts like the face makes me feel uneasy. +-------------------------- +DEX +2 +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by additional 10%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 10%. +-------------------------- +When equipped with Main Memory: +Decreases Variable Casting Time by additional 20%. +-------------------------- +When compounded with Vesper Card: +Ignores magical defense of Boss class by 70%. +Increases Magical Damage with Holy and Neutral element by 30%. +-------------------------- +When compounded with Beelzebub Card: +Increases Variable Casting Time of all skills by 30%. +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19439# +Unknown energy surrounds the body. +-------------------------- +When equipped with Fallen Warrior Manteau[1]: +-------------------------- +For each 30 base STR: +ATK +5 +-------------------------- +For each 30 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +For each 30 base VIT: +Decreases After Skill Delay by 4%. +-------------------------- +For each 30 base INT: +MATK +5 +Decreases Variable Casting Time by 8%. +-------------------------- +For each 30 base DEX: +Increases Ranged Physical Damage by 1%. +-------------------------- +For each 30 base LUK: +Increases Critical Damage by 3%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +19446# +An eye patch containing the great power of a nameless knight. +-------------------------- +AGI +10 +ASPD +15% +MaxHP +15% +-------------------------- +When equipped with Lord Knight Card: +Increases movement speed. + +When recieving physical damage in Berserk state, there is a chance to transform into Seyren Windsor for 5 seconds. +During transformation: +ATK +1000 +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 99 +# +19451# +Earrings with the power of heaven. +It is said that, you will recieve the power to judge those who disturb the order. +-------------------------- +Enables the use of Identify. +-------------------------- +For each 18 base STR: +HIT +2 +MaxHP +2% +-------------------------- +For each 18 base AGI: +FLEE +2 +Decreases After Skill Delay by 2. +-------------------------- +For each 18 base VIT: +MDEF +2 +Decreases Variable Casting Time by 2%. +-------------------------- +For each 18 base INT: +MaxSP +2% +Decreases SP Consumption by 2%. +-------------------------- +For each 18 base DEX: +Critical +2 +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +For each 18 base LUK: +ATK +15 +MATK +15 +DEF +20 +-------------------------- +When equipped with any kind of Abyss weapon: +Decreases damage taken from Players by 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +19452# +Earrings with the power of heaven. +It is said that, you will recieve the power to judge those who disturb the order. +-------------------------- +Enables the use of Identify. +-------------------------- +For each 18 base STR: +HIT +2 +MaxHP +2% +-------------------------- +For each 18 base AGI: +FLEE +2 +Decreases After Skill Delay by 2. +-------------------------- +For each 18 base VIT: +MDEF +2 +Decreases Variable Casting Time by 2%. +-------------------------- +For each 18 base INT: +MaxSP +2% +Decreases SP Consumption by 2%. +-------------------------- +For each 18 base DEX: +Critical +2 +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +For each 18 base LUK: +ATK +15 +MATK +15 +DEF +20 +-------------------------- +When equipped with any kind of Abyss weapon: +Decreases damage taken from Players by 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 0 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +19453# +A Hat made with the image of a Jejecap. +-------------------------- +Protects from skill cast interruption. +-------------------------- +Decreases After Skill Delay by 15%. +-------------------------- +Decreases Variable Casting Time of Acid Demonstration ,Crazy Weed and Full Chemical Protection by 50%. +-------------------------- +Increases damage of Acid Demonstration and Crazy Weed by 10%. +-------------------------- +Refine Level +7: +Increases damage of Acid Demonstration and Crazy Weed by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Acid Demonstration and Crazy Weed by additional 25%. +-------------------------- +Refine Level +10: +Bypass 100% of hard defense of Normal Boss class monsters and Demi-Human race when performing a physical attacks. +-------------------------- +When Fire Expansion is Level 5: +Increases Physical Damage against enemies of Boss class by 50%. +-------------------------- +When Madragora's Howl is Level 5: +Decreases After Skill Delay by 25%. +Decreases Crazy Weed skill cooldown by 4.5 seconds. +-------------------------- +For each Level of Crazy Weed: +Decreases After Skill Delay by 6%. +-------------------------- +Type: Headgear +Defense: 18 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19457# +A sweet hat full of love. +Whoever wears it will be able to radiate a sweet charm around it. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +19459# +A small Lunatic on the shoulder. It has a happy expression. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19464# +A bread hat made by processing the softest part of the sweet skin. Melon bread doesn't taste like melon, but the hat has a subtle melon scent. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19465# +A hat for spring outfits that imitate cherry blossom petals. +The shaking cherry blossoms are very cute. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +19466# +A hairpin made in celebration of the Noodle Festival. It seems as if the sea has been moved. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19469# +A crown with the sacred aura. +-------------------------- +MDEF +15 +Decreases After Attack Delay 10% +-------------------------- +Decreases SP Consumption of Judex by 15. +Decreases SP Consumption of Adoramus by 15. +-------------------------- +Increases damage of Adoramus and Judex by 20%. +-------------------------- +For each Level of Oratio: +Decreases the Variable Casting Time of Adoramus and Judex by 5%. +-------------------------- +When Clearance is Level 5: +Increases Magical Damage on Boss class by 25%. + +For each Level of Lauda Agnus and Lauda Ramus: +Increases Magical Damage against Earth, Ghost, Neutral and Undead elemental by 5%. +-------------------------- +For each Refine Level: +Increases Magical Damage against monsters of Demi-Human race by 2%. +-------------------------- +Refine Level +7, +Increases Attack Speed (Decreases After Attack Delay by 5%). +Increases damage of Adoramus and Judex by 30%. +-------------------------- +Refine Level +9, +Increases Attack Speed (Decreases After Attack Delay by 5%). +Increases damage of Adoramus and Judex by 50%. +-------------------------- +Refine Level +10 +Nullifies Gemstone requirement of certain skills. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +19472# +The silver circlet that Himelmez had. +Purified by Hugin. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19474# +A special energy was given to the circlet, which was +made of ores and gemstones from the gaps of time by Hugin. +-------------------------- +For each 2 Refine Levels: +MaxHP +250 +-------------------------- +For each 3 Refine Levels: +MaxSP +2% +Increases damage of Dragon Breath and Dragon Breath - Water by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Rune Knight +# +19475# +A special energy was given to the circlet, which was +made of ores and gemstones from the gaps of time by Hugin. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +Increases damage of Banishing Point and Cannon Spear by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +11: +ATK +5% +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Royal Guard +# +19476# +A special energy was given to the circlet, which was +made of ores and gemstones from the gaps of time by Hugin. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +Increases damage of Arms Cannon and Vulcan Boost by 10%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Mechanic +# +19477# +A special energy was given to the circlet, which was +made of ores and gemstones from the gaps of time by Hugin. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +Increases damage of Spore Explosion and Cart Tornado by 20%. +-------------------------- +For each 4 Refine Levels: +Increases Physical Damage against enemies of all size enemies by 2%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Genetic +# +19478# +A special energy was given to the circlet, which was +made of ores and gemstones from the gaps of time by Hugin. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +Increases damage of Rolling Cutter and Counter Slash by 20%. +-------------------------- +For each 4 Refine Levels: +ATK +2% +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Guillotine Cross +# +19479# +A special energy was given to the circlet, which was +made of ores and gemstones from the gaps of time by Hugin. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +Increases damage of Fatal Menace and Feint Bomb by 30%. +-------------------------- +For each 4 Refine Levels: +ATK +2% +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Shadow Chaser +# +19480# +A special energy was given to the circlet, which was +made of ores and gemstones from the gaps of time by Hugin. +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Decreases Variable Casting Time by 3%. +Increases damage of Adoramus by 20%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with Holy element by 7%. +-------------------------- +Refine Level +11: +MATK +5% +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Archbishop +# +19481# +A special energy was given to the circlet, which was +made of ores and gemstones from the gaps of time by Hugin. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +MaxHP +2% +Increases damage of Knuckle Arrow and Tiger Cannon by 10%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +11: +ATK +5% +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Sura +# +19482# +A special energy was given to the circlet, which was +made of ores and gemstones from the gaps of time by Hugin. +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Decreases Variable Casting Time by 3%. +Increases damage of Chain Lightning and Jack Frost by 20%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with Wind and Water element by 5%. +-------------------------- +Refine Level +11: +MATK +5% +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Warlock +# +19483# +A special energy was given to the circlet, which was +made of ores and gemstones from the gaps of time by Hugin. +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Decreases Variable Casting Time by 3%. +Increases damage of Psychic Wave and Diamond Dust by 20%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with Neutral and Water element by 5%. +-------------------------- +Refine Level +11: +MATK +5% +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Sorcerer +# +19484# +A special energy was given to the circlet, which was +made of ores and gemstones from the gaps of time by Hugin. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Critical Damage by 5%. +Increases damage of Arrow Storm and Aimed Bolt by 20%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +11: +Decreases Arrow Storm skill cooldown by 1 second. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Ranger +# +19485# +A special energy was given to the circlet, which was +made of ores and gemstones from the gaps of time by Hugin. +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Decreases Variable Casting Time by 5%. +Increases damage of Reverberation and Metallic Sound by 20%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with Neutral element by 7%. +-------------------------- +Refine Level +11: +MATK +5% +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Wanderer and Minstrel +# +19486# +A special energy was given to the circlet, which was +made of ores and gemstones from the gaps of time by Hugin. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +Increases damage of Falling Star by 30%. +-------------------------- +For each 4 Refine Levels: +Increases Physical Damage against enemies of all size enemies by 2%. +-------------------------- +Refine Level +11: +ATK +5% +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Star Emperor +# +19487# +A special energy was given to the circlet, which was +made of ores and gemstones from the gaps of time by Hugin. +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Decreases Variable Casting Time by 5%. +Increases damage of Curse Explosion and Eswhoo by 20%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with Shadow element by 7%. +-------------------------- +Refine Level +11: +MATK +5% +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Soul Reaper +# +19488# +A special energy was given to the circlet, which was +made of ores and gemstones from the gaps of time by Hugin. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +Increases damage of Round Trip and Banishing Buster by 20%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Rebellion +# +19489# +A special energy was given to the circlet, which was +made of ores and gemstones from the gaps of time by Hugin. +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +Increases damage of Wind Blade and Freezing Spear by 30%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with Wind and Water element by 5%. +-------------------------- +Refine Level +11: +MATK +5% +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Kagerou and Oboro +# +19490# +A special energy was given to the circlet, which was +made of ores and gemstones from the gaps of time by Hugin. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +Increases damage of Cross Slash and Kunai Explosion by 20%. +-------------------------- +For each 4 Refine Levels: +Increases Physical Damage against enemies of all size enemies by 2%. +-------------------------- +Refine Level +11: +ATK +5% +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Kagerou and Oboro +# +19491# +A special energy was given to the circlet, which was +made of ores and gemstones from the gaps of time by Hugin. +-------------------------- +For each 2 Refine Levels: +ATK +10 +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 4%). +Decreases Variable Casting Time by 4%. +-------------------------- +For each 4 Refine Levels: +Increases Critical Damage by 5%. +Increases all elemental magical damage by 5%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Super Novice +# +19492# +A special energy was given to the circlet, which was +made of ores and gemstones from the gaps of time by Hugin. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +Increases damage of Catnip Meteor and Picky Peck by 20%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 5%. +Increases Magical Damage with Neutral element by 7%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 5%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Summoner (Doram) +# +19495# +A symbol of endless darkness. +It is said that it was born from a fragment of the Demon King's feathers. +It may move freely and it seems as if it is alive. +-------------------------- +All Stats +10 +-------------------------- +Increases Damage against monsters in Temple of the Demon God by 30%. +-------------------------- +When equipped with Diabolus Armor: +STR +8, DEX +4, +MaxHP +1350 +Increases Damage against monsters in Temple of the Demon God by additional 20%. +Decreases damage taken from Memorial Dungeon's Temple of the Demon God monsters by 5%. + +For each Refine Level of Diabolus Armor: +ATK +15 +Increases Stun and Stone Curse resistance by 5%. +-------------------------- +When equipped with Diabolus Robe: +MDEF +25, MaxSP +350 +Decreases After Skill Delay by 10%. +Increases Damage against monsters in Temple of the Demon God by additional 20%. +Decreases damage taken from Memorial Dungeon's Temple of the Demon God monsters by 5%. + +For each Refine Level of Diabolus Armor: +MATK +15 +Increases Healing skills effectiveness by 2%. +-------------------------- +When equipped with Diabolus Manteau: +MaxHP +900 +Decreases damage taken from Ranged Physical Damage by 10%. +Increases Damage against monsters in Temple of the Demon God by additional 20%. +Decreases damage taken from Memorial Dungeon's Temple of the Demon God monsters by 5%. + +For each Refine Level of Diabolus Manteau: +Decreases damage taken from Fire,Water and Wind elemental attacks by 3%. +-------------------------- +When equipped with Diabolus Boots: +Increases Damage against monsters in Temple of the Demon God by additional 20%. +Decreases damage taken from Memorial Dungeon's Temple of the Demon God monsters by 5%. + +For each Base Level: +MaxHP +100 + +For each Refine Level of Diabolus Boots: +ATK +20, MATK +20 +-------------------------- +When equipped with Diabolus Ring: +MaxHP +2000, MaxSP +200 +Increases Healing skills effectiveness by 15%. +Increases Damage against monsters in Temple of the Demon God by additional 20%. +Decreases damage taken from Memorial Dungeon's Temple of the Demon God monsters by 5%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +19500# +A simple mask with a smile carved into it. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19501# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19502# +A pair of goggles designed for pilots in order to Reduces vision impairment when traveling at very high speeds. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19503# +An exact replica of Munak's turban, complete with queue and talisman. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19504# +Glasses with special, darkened lenses that block ultraviolet light. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19505# +A narrow, short roll of finely cut tobacco wrapped in thin paper. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19506# +A hairband utilizing a Feather from a Valkyrie Angel. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19507# +A brightly shining sun that floats above your head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19508# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19509# +Have the appearance of wearing the wings of a butterfly as your ears with this accessory. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19510# +You can look like you just rolled off the assembly line with these bolt-on ear accessories. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19511# +The lovely shape of eye patch in blue colour. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19512# +The lovely shape of eye patch in pink colour. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19513# +A simple bird beak. Wearing this won't make you less fearful of things. +-------------------------- +Type: Lower +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19514# +A neatly trimmed mustache reminiscent of the style worn by an 'Old Timey' actor from the past. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19515# +A simple yellow hat with a long feather in it. Fashionistas wear it to the side lest they be shunned. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19516# +A newly hatched baby bird chirps it's tunes on a twig of dreams. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19517# +A roosters dignified comb. But don't be fooled while wearing this or the yolk's on you! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19518# +Share your happiness with others with this brightly colored rainbow. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19519# +A dark thunder cloud that rivals the bolts created by Thor... well maybe not. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19520# +When it rains it pours. Especially when it's only raining above your head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19521# +A circular shaped bowler hat reminiscent of the style worn by an 'Old Timey' actor from the past. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19522# +A mini red crown affixed to a headband and worn off to the side. Though not a true symbol of royalty, this crown does have a regal air about it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19523# +A long piece of green satin tied together into a neat little ribbon that wards off harmful magic. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19524# +Grasshopper's Green feelers. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19525# +A pair of glasses that are worn on the head for a more charming appearance, instead of vision related purposes. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19526# +Helm made from metal. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19527# +A headband with two dangerously fashionable spikes. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19528# +Specialized face armor that protects the jaw and teeth in battle. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19529# +A headband adorned with what appears to be the wings of an angel. +-------------------------- +AGI +1, VIT +1 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19530# +The cat which is rough, the sample picked the wild road and the hat which made. +-------------------------- +ATK +2, MATK +2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19531# +The mask made in the form of a cube. Produces a comic impression. +-------------------------- +FLEE +1 +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19532# +A hat that makes you charming. +-------------------------- +DEX +1 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19533# +Hat for those who want to be like the Spore monster. Feel like a mushroom! +-------------------------- +VIT +1 +Experience gain +1% +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19534# +Thanatos mask filled with his anger. +-------------------------- +MATK +1% +ATK +1%. +Increases Healing skills effectiveness by 1%. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19535# +Part of wild ginseng. They say that when ginseng taken out of the ground, you can hear the human groan. +-------------------------- +STR +1 +Experience gain +1% +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19536# +A hair band decorated with small flowers. +-------------------------- +INT +1 +Experience gain +1% +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19537# +A hat from Gryphon symbolic of bravery. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19538# +Bright full moon which is the biggest on the15th of August. +-------------------------- +Has a chance of adding +50 ATK or +50 MATK while when dealing Physical or Magical Damages for 5 seconds. +This effect does not work during War of Emperium. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19539# +Hair ornament took the name of Valkyrie 'Reginleif'. Those who wear it and receive the gift of God. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19540# +Celebrate the year of the rabbit and keep your ears warm at the same time. +-------------------------- +AGI +1, FLEE +2 +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19541# +A white little petal. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19542# +You can get strong power if you resist its sweetness! +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19543# +Wolf face shaped fluffy hood. Useful when you cannot sleep well. +-------------------------- +Type: Costume +Position: Upper +Weight: 30 +-------------------------- +Requirement: +Base Level 70 +# +19544# +A hat that resembles a cat. The Cru is Roriri's beloved pet. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19545# +Lousy black hat for school kids. +-------------------------- +Type: Costume +Position: Upper +Weight: 10 +-------------------------- +Requirement: None +# +19546# +A Helm of 'Battle Princess' who serves Odin. +-------------------------- +Type: Costume +Position: Upper +Weight: 10 +-------------------------- +Requirement: +Base Level 100 +# +19547# +Copied hat of Baby Deviruchi. +-------------------------- +Type: Costume +Position: Upper +Weight: 10 +-------------------------- +Requirement: +Base Level 100 +# +19548# +A hat which resembles the Frog God. But even the God of all frogs looks exactly like any other frog. +-------------------------- +Type: Costume +Position: Upper +Weight: 10 +-------------------------- +Requirement: +Base Level 100 +# +19549# +A helmet that has been fashioned to give its wearer the appearance of having mighty goat horns. It's a helm that evokes power! +-------------------------- +Type: Costume +Position: Upper +Weight: 10 +-------------------------- +Requirement: None +# +19550# +Wear this when you want to look cute for your beloved. +-------------------------- +Type: Costume +Position: Middle +Weight: 10 +-------------------------- +Requirement: +Base Level 100 +# +19551# +Modeled after the long ears of a fairy, when worn you can hear fairys playing in the blue forest. +-------------------------- +Type: Costume +Position: Middle +Weight: 10 +-------------------------- +Requirement: None +# +19552# +A little flower leaf. The whole world seems pretty and happy. +-------------------------- +Type: Costume +Position: Lower +Weight: 10 +-------------------------- +Requirement: None +# +19553# +A dark mask for assassins. +-------------------------- +Type: Costume +Position: Lower +Weight: 10 +-------------------------- +Requirement: +Base Level 100 +# +19554# +A smily face mask eastern style, sculpted carefully. Makes you feel like home. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 10 +-------------------------- +Requirement: +Base Level 100 +# +19555# +A gorgeous and strong helm of an east country general. +-------------------------- +VIT +1 +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19556# +Traditional art mask from far eastern country. +-------------------------- +INT +1 +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19557# +An ancient helm of Ayothaya's fighter. The braver actually can wear. +-------------------------- +STR +1 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19558# +A black Raven Cap that has black beak and feathers. It is so black. +-------------------------- +VIT +1 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19559# +A baby dragon who has been trained to help its master. Nothing will freeze like this and to awake appears. +-------------------------- +AGI +1 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19560# +A Cute kwati tail hat, you can feel the scent of the forest and nature of Kwati. +-------------------------- +DEX +1 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19561# +A Tucano with bright yellow beak. It makes you look attractive. +-------------------------- +DEX +1 +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19562# +A mask of the king of the amazon Jungle, known as Jaguar. The person who equip it is rumored to receive a blessing of nature. +-------------------------- +STR +1 +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19563# +Mask of Buddhist disciple. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19564# +Decoding mask of me. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19565# +When you wear it, you will feel a gorgeous atmosphere of Qing nobility. +-------------------------- +LUK +1 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19566# +A Samurai mask to protect its neck. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box I. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19567# +With the fact that comes to make with the soft silk from Arab writes mainly in the head. +-------------------------- +VIT +1 +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19568# +Soul of the ancients the feather the horn which is listening. +-------------------------- +STR +1 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19569# +The hat of the sprout shape. +-------------------------- +INT +1 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19570# +That govern Mercury's brilliant pitching god Mercury. +-------------------------- +LUK +1 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19571# +The hat worn by white general. +-------------------------- +STR +1 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19572# +The hat is worn by black general. +-------------------------- +INT +1 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19573# +Decorated with tiny hearts and lace wings, headband Young girl wind. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19574# +Modeled after a headgear owned by the master of death. +-------------------------- +Increases physical and magical damage on Boss targets by 5%. +-------------------------- +Every effect will be remove on 16 October 2025 Before MA. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19575# +Chosen as a reminder of Black Dragon, to ascend a hat made. Time aspect of the Black Dragon will look great in the pitching has been applied, has always been maintained Side... +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19576# +Peak of popularity!. Drooping pope hat of Arunafeltz modeled after the helmet made by pope! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19577# +A Poring hat made to celebrate Ragnarok Online's 10th anniversary. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19578# +A pair of goggles designed for pilots in order to Reduces vision impairment when traveling at very high speeds. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19579# +A red driver's hat decorated with white wings. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19580# +The ornamental version of long dead Pharaoh Amset-Ra's headdress. It is lightweight and can be worn over your existing hat for decorative use. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19581# +The lucky, well-worn hat of former adventurer Mort Whimsey. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19582# +The fancy Cowboy hat of the western Cowboy. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19583# +The mysterious mask of the roguish hero. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19584# +Never bring only a knife to a gun fight, but having a spare knife is always handy. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19585# +A premium-grade hat that offers a great fit. The feather decoration nicely complements the sky blue color. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19586# +Cute Pink Rabbit Headband. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: +-------------------------- +Type: 2nd Job +# +19587# +The Master of all porings, the King Poring's hat. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Upper +Weight: 10 +-------------------------- +Requirement: None +# +19588# +A cute cat hat modeled after a cat. It looks like it will look cute when worn. The tail is the highlight +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19589# +A beatiful helm shaped as a rising angel's wing. +Wearing this item makes you feel little bit dizzy, but soon it will fresh you up. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19590# +A red ribbon with a white flower. It makes girls prettier. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19591# +A long piece of red satin tied together into a neat little ribbon that wards off harmful magic. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19592# +A flower said to be as beautiful as a fairy in a far east country and usually used as a medicinal +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19593# +A wreath made with bright blue Leaves and Flowers to make you feel Fresh and rejuvenated. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19594# +A special geographer costume designed to rest nicely on your head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19595# +Funny hats made for April Fool's Day. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19596# +A headgear that looks like flapping angel wings. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19597# +A hat that looks like the eyes of a dark Magician, which are rumored to blink sometimes. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19598# +Can feel a high dignity of the Northern Wolf Tribe. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19599# +A friendly Imp. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19600# +Doll keel of expression was not pleased with that one. When worn, also depressed mood and figure of the wearer. +-------------------------- +Type: Costume +Position: Upper +Weight: 40 +-------------------------- +Requirement: +Base Level 30 +# +19601# +Aliot doll look despondent. When worn, also depressed mood and figure of the wearer. +-------------------------- +Type: Costume +Position: Upper +Weight: 10 +-------------------------- +Requirement: None +# +19602# +It feels like a hat to the touch.. but it's invisible to the eye. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19603# +It feels like a pair of sunglasses in your hand.. but you can't see them. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19604# +It feels like a mask to the touch.. but it's invisible to the eye. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19605# +A gangster's red scarf. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19606# +A scroll used by Ninjas to cast spells. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19607# +The little chick converted from love energy. Please handle with care. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19608# +A hat adorned with a cute chick that brings feelings of joy to those that see it hopping. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19609# +A must-have item for those that care about appearances: It can Increases your beauty threefold. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19610# +A mask shaped like a Whisper that feels like its always massaging your face so it might be good for your skin. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19611# +An ornament wing created by Morgan Stanley's. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19612# +A cool looking set of headphones that have earmuffs designed to resemble music notes. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19613# +A hairband utilizing a Feather from a Valkyrie Angel. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19614# +A hat that happens to match the Super Novice costume... absolutely perfectly. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19615# +A mask that imbued with the sweet whispers of Loki. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19616# +Wickebine's black cat ears. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19617# +A cute headband that looks just like a pair of adorable puppy ears. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19618# +A mask rumored to have been worn by certain assassins in order to hide themselves. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19619# +A flamboyant hat worn only by the strongest of pirates. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19620# +This type of cap is known to have been worn by a world famous detective. It feels like a Pipe would perfectly complement this cap for some reason. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: +Base Level 20 +# +19621# +An ear accessory made with Evil Wing. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19622# +A hairpin in the shape of a crescent. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19623# +A hat made to honor Bijofnil, the legendary bird that lives above the Yggdrasil tree. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19624# +A special item that makes its wearer look absent-minded. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: +Base Level 20 +# +19625# +A hairband that gives one the appearance of having rabbit ears, a lasting symbol of extremely good luck. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: +Base Level 20 +# +19626# +A hat made from animal fur. They keep your ears warm in the bitter cold of winter. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19627# +Stay in tuned with the universe with this orbital headpiece +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: +Base Level 20 +# +19628# +A strange device that was invented by an old craftsman, but has just recently been completed by his grandson. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: +Base Level 20 +# +19629# +A jeweled coronet said to grant the wisdom of an ancient queen that had worn it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19630# +A crown adorned with gorgeous jewels that is said to be worn by a wise, ancient king who will grant his wisdom to the wearer. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19631# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19632# +An ordinary pink hat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19633# +Braids woven with a subtle floral fragrance. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19634# +A mask that is worn by people with the flu to prevent spreading sickness to others. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19635# +A headgear topped with a fashionably experimental propeller. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19636# +A fashion accessory used in clown or town drunk disguises. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19637# +A cap worn by nurses both great and small. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19638# +A simple mask with a smile carved into it. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19639# +A rustic hat knit from rough reeds and bamboos that shields against the rain and the glare of the sun. +Saurabi, the ancient Korean warrior, was known to wear one of these. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19640# +A pretty red ribbon decorated with a pink heart in the middle. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19641# +A forboding helmet that hides part of the face. People wearing this have the appearance of Beelzebub. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19642# +A hat inspired by the adorable Moonlight Flower. Be sure to hand-wash to prolong the soft Nine Tail Fur lining. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19643# +A cute costume made based on wickebine's cat ears. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 5. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19644# +A Commemorative blindfold named after the most famous of Sages; Takius from the Ragnarok Anime. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19645# +A heavy looking hat with blue and silver jewery decorations. It will match with magnificent events. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19646# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19647# +A cute hat shaped like a Deviruchi that brings happiness to its wearer and onlookers. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19648# +A headgear made from leaves fallen from an enchanted tree. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19649# +A headpiece shaped like white cat ears. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19650# +Decorations Made by Feathers of Five color to Celebrate 'RWC 2012' +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: +2nd classes +# +19651# +RWC 2012 Is Reffered as Shouting Mouth. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19652# +A hat worn by a well-known magician. Rabbit is peeping out and we don't know what is going to pop out next. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19653# +A hat which gives you a holy power and celestial melody in the rim of the ear. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19654# +This old airship captain's hat would make you think: 'That white horn was only the part of the hat' +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19655# +A long and big bonnet. It is not sure when it is used for. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19656# +A useful and broad-brimmed hat providing a big shadow and once worn by a famous minstrel. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19657# +A captain's dignified hat with heavy color. It is famous for being worn by a vessel's leader. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19658# +A hat just fit for summer vacation. It prevents face from tanning by the strong sunlight. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19659# +A woolly hat made for warming heads, but it seems that some people wear it for fashion. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19660# +Marco's favorite hat. Inside you can find a short phrase Andrea had written, 'His memories to you...'. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19661# +A sweet bonnet. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19662# +A hat worn by magicians. Rabbits are usually pulled out of this hat. +Pretty stout, it won't be destroyed easily. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19663# +Light of desired dreams come true. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19664# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19665# +A hat looking like a cake with Poring on top. +It gives you happiness even by worn on top of the head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19666# +A Hat worn by Cookie Xmas, 'the idol of Toy Dungeon'. It covers the ears to protect from cold weather. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19667# +A headgear made by the hard scale of Dragon. The wearer of this headgear can get the great power of Dragon. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19668# +A cap of post man who delivers letters with heart. +Magic in the cap protects the wearer not to lose their way. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19669# +Valkyrie Reginleif Wings. The wearer will receive blessings from the gods. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19670# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19671# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19672# +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19673# +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19674# +A mask worn by a evil warrior in the past. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19675# +A Poring hat that feels like hopping on top of your head. It brings fortune to the wearer. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19676# +Colorful Poring hat, make all people love it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19677# +A mysterious ring floating above your head. It feels like that you don't have a soul?! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19678# +A cute ribbon with small bells. The bells seem to jingle. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19679# +White round eyes make you look innocent and cute. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19680# +A funny mask that children love to put on. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19681# +A silver shining hair accessory with a star at the center. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19682# +Santa is rolling around on your head! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19683# +The sweetest yummy candy for good children. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19684# +A funky afro wig! The warmer your head, the warmer your heart. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19685# +A poring with shiny hair that transmits light from a wonderful Christmas. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19686# +A hairband with a Santa motif. +-------------------------- +Adds a chance of transforming into Antonio, when dealing a physical or magical attack. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19687# +Nobody knows when this beautiful rose was picked and decorated, but it has still managed to keep its freshness all this time. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19688# +A hair band decorated with small flowers. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19689# +A bling bling majestic headgear made by various kinds of rings. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19690# +A hat of Dark Snake Lord. You can be an emperor with this. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19691# +The symbol of an honor student! +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19692# +An antique pipe for making a perfect fashion of captain. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19693# +A cute hat stacked with popular monster porings. +It seems that Angelring, Mastering and Poring are standing in a line. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19694# +A traditional hairpin shaped like a windmill spining round. You can feel the wind with it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19695# +A kettle put on your head. It depends you well but water can overflow if you move too hard. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19696# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19697# +A hat modelled after servant deer of santa claus. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19698# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19699# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19700# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19701# +A bonnet favored by women of nobility. Wearing it supposedly causes inexplicable cravings for tea. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: +None +# +19702# +A Santa Hat with two pom-poms instead of one for double the Christmas fun! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19703# +A fluffy black colored afro wig! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19704# +A fluffy red colored afro wig! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19705# +A fluffy yellow colored afro wig! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19706# +A red dress hat. It goes well with fancy dresses. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19707# +Christmas hat that Raccoon Hooray team 'borrowed' from Santa. +It is very helpful for the Raccoons to keep warm since they're currently homeless. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19708# +A white snake that balances naturally on your head. It's beady eyes stare into your soul. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19709# +A ribbon made by an old flag. You can put it on one side of your head. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19710# +A hair ornament made from Valkyrie's Feathers and precious gems. It is rumored to protect it's wearer from any harm. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19711# +A hairband worn by Kafra staff. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19712# +You'll never feel anything less than blessed with this adorable angel relaxing atop your head! +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19713# +A fresh lucky clover. +It brings you with a good luck. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19714# +A cute doll shaped like Lady Tanee. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19715# +A scarf with a mysterious wind. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19716# +A doll shaped like a popular monster Alice. She says 'Master, cheer up' on your head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19717# +A butterfly shaped ribbon for girls, or pretty boys can wear it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19718# +A hair band with Gothic frills. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19719# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19720# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19721# +An elegant black wings which are spreading wide. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19722# +A black bold glasses. This is it- item for this season! +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19723# +A crown with holy fire. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19724# +A headgear shaped like Kafra Deprotai! All boys are chasing her so they can use Kafra service 20 times per day. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19725# +A festival hat shaped like a bread bag. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19726# +A bloody red rose in your lips. You should remove its thorns. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19727# +A hat designed like Devilring. His sharp eyes are the best point for your fashion! +-------------------------- +Type: Headgear +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19728# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19729# +A stylish hairband shaped like Kafra's and cat's ears. It's double the cuteness! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19730# +The headgear is designed according to the curled of snake. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19731# +Headgear made according to the wings on the demon's back. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19732# +A mask worn by the Goblin leader. It looks so ferocious, it's ridiculous. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19733# +A cute and cuddly headgear made in the form of a Panda's head. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19734# +Fancy glasses helps you see long distances. Made with compressed glass. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19735# +A fish fin looking helm that protects Swordmen. This doesn't help you breathe under water. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19736# +A special mask that filters out poisons from the air. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19737# +A flamboyant hat worn only by the strongest of pirates. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19738# +This type of cap is known to have been worn by a world famous detective. It feels like a Pipe would perfectly complement this cap for some reason. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19739# +Hat that refer to shape of sleeping cat. If you wake up sleeping cat, you will be suffered. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19740# +A hat with -G member wanted- words written on it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19741# +The horns imbued with full of Devil Spirit. Feels so tight and harsh. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19742# +Divine wings that rumored contain holy force. +-------------------------- +Increases 1% experience gain. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19743# +A hat sculpted like Anubis, an egyptian god of the dead. It belongs to the holy priests who make a mummy. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19744# +A black huge ribbon looks tidy. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19745# +A marching hat with sacred force. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19746# +The purple T-shirt which fit into shadowed human face. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19747# +A mask worn by the despair of Thanatos. It seems very popular of its cute design. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19748# +A headgear jewelled with love jewels. You can find your true love with wearing it. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19749# +A splendid soul ring with angel's blessing given to sincere believers. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19750# +It looks a neat big white ribbon. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19751# +A white on the left, a black wing right wing was designed as a crown. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19752# +A wing-shaped accessory with purple roses. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19753# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19754# +A legendary veil which can be used by only truly loved couple. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19755# +Earring symbolizes Yin and Yang. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19756# +A hat blessed by Holy Mother. It can bless other people even by self-sacrifice. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19757# +A hat shaped like a lily. It makes you calm and silent. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19758# +Even though it is a frog, a gentle man is waiting for a lovely girl who can dispel his curse. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19759# +Very colorful umbrella. It is very useful in rainy season. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19760# +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19761# +A costume designed from a pure white lily flower. A perfect combination for wedding dress. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 9. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19762# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19763# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19764# +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19765# +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19766# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19767# +A cute hair accessory decorated with cherry blossoms and bells. It reminds you of old memories. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19768# +A pink flowered wreath. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19769# +A headgear looks like the ears of a mischievous fairy. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19770# +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19771# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19772# +An interesting hat decorated with honeybee-like stripes and feelers. +You feel like gathering the honey! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19773# +A cute hairpin shaped like an Angelring. When wearing this, you feel like a feather. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19774# +A laurel wreath used for the coronation of the emperor. It symbolizes glory and victory. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19775# +A fluffy afro style wig which is something teenagers go crazy for. Once you wear it, you might want to dance. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19776# +A headgear that looks like the ears of a mischievous fairy. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19777# +Ornaments modeled after the stars twinkling in the night sky. +Only wish good fortune to come to find something. +-------------------------- +Type: Costume +Position: Upper +Weight: 1 +-------------------------- +Requirement: None +# +19778# +A texture that melts in the mouth. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19779# +Spring flowers bloom earlier than other kinds of flowers made of hair ornaments to tell. Smells sweet. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19780# +Knitted hat is very cuteness and comfortable. +Pendent rabbit ears are impressive. +-------------------------- +MaxHP +3%, MaxSP +3%. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19781# +An ear accessory that looks just like white, beautiful angel wings. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19782# +A cute kitty doll which can be worn on top of the head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19783# +A white colored moustache, symbol of experience and well aged sophistication. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19784# +A helm that was once owned by Morrigan, the goddess of war. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19785# +A noble headgear created in the proud image of a crunchy toast. +Wearing it makes you feel just like a part of a balanced breakfast. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19786# +A crown which is made after the one worn by Mistress. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19787# +The truly devoted have seen into the infinite and have been forever changed. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19788# +An eyepatch for those who would not like to look lovelier than a pirate. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19789# +A dark colored and very stylish hat that was popularized by smooth crooners. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19790# +A transparent veil worn by brides on the day of their wedding. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19791# +A mask which resembles the face of an Alarm monster. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19792# +A mask with a blank expression on it. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19793# +A mask with a surprised expression on it. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19794# +A mask with an annoyed expression on it. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19795# +An exquisitely made circlet, typically worn by rulers or gentry. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19796# +An incredibly heavy, yet almost impenetrable helmet constructed of bone. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19797# +A headgear made in the honor of the legendary archer who shot an apple, on top of a friend's head, from a long distance. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19798# +A headgear that finally allows its wearer into express inner rage or slight disgust. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19799# +A helmet forged from pure gold which blocks attacks effectively, but is also unaffordable. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19800# +To celebrate the month of home-made, it became a diadem of pink carnations. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19801# +A hat shaped like a white fox. People say that some east countries worship the white fox as a god. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19802# +A hat shaped like a fox with nine tails. It makes you warm, definitely. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box I. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19803# +A headband with a pinwheel. It refreshes and cools down the wearer3 +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box I. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19804# +A red hairpin with a spining round windmill. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box I. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19805# +A magic scroll which high class ninja use. It has a myterious power. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box I. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19806# +A fancy hairpin which you can feel spring flowers. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19807# +A brave headgear that no one can block. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box I. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19808# +A blazing sun +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19809# +This hat is for festival that represent west frontier in one country. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19810# +This headgear is the figuration of soul of fire Lfrit's Ear. It looks hot but when you equip, it's not at all. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19811# +Drinking beer after shower it is good~!! +Prohibition underager drinking +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19812# +Big Hibiscus flower. It is only found in Ayothaya. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19813# +Ice cream is best in hot summer. Be careful its may cause brain freeze. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19814# +Wig with Yellow, Orange and Gold +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19815# +Ten gallon hat gets along with Lolita fashion. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box7. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19816# +A hat made based on appearance of Pecopeco. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19817# +A fire-breathing machine, Its blazing forever +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19818# +A scary bloody rag doll. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19819# +A hood for Necromencers wearing at their evil worships. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19820# +Corsage for a spooky outfit with a skeleton motif. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19821# +A monster Hyegun's hat. It looks nasty and tattered but it has better defense than what you thought. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19822# +A yellow bandana wearing by a pacifist. Some bloods are on it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19823# +The cat ears on this hood feel incredibly soft and fluffy! +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19824# +You can be chic and cynical while wearing this. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19825# +Tight bandages for wounds of the eyes. It seems that they were already used. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19826# +Earrings made with ice and extra chemicals. Why is it so chilly when you wear it? +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19827# +A hat shaped like Homunculus Amistr. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19828# +A hat worn by old soldiers. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19829# +A straw hat for the hot summer. You might want to cut the grass and celebrate the harvest with wearing this. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19830# +Glasses with special, darkened lenses that block ultraviolet light. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19831# +Too shy to attack someone, Filir! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19832# +A hat shaped like the popular monster poring! It is not made by rubber. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19833# +A small, decorative ribbon for the head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19834# +A hat to protect your eyes from sunshines. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19835# +A hat with a cute Lif doll. It looks at you from your head. +It can be popular to who likes a little girl. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19836# +A headgear made from the huge horns. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19837# +A hat worn by priests for their religious ceremony. +It resembls the ancient Asara fairy. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19838# +You look very cunnniing with wearing this mask. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19839# +A hat shaped like Homunculus Vanilmirth. It's very cold and mushy. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19840# +A hat symbolizes the sun with huge golden wings. Do not ask how you can walk while wearing it. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19841# +A legendary headgear. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19842# +A hat with small brown puppy. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19843# +A hair band that gives one the appearance of having ears like a cat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19844# +A small, tight fitting headdress made of fine silk. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19845# +Well-known item which has been rumored to have been worn by a great woman warrior in ancient times. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19846# +A mask rumored to have been worn by a romantic hero with an unknown fate. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19847# +An over-sized red ribbon that contains hidden magical power. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19848# +A hat, made especially to look like a certain monster that looks like an angel, but it hates the whole human race. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19849# +An exact replica of the turban worn by Munak, complete with a queue and talisman. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19850# +A hat worn by the Bongun monster. For some reason, there's an amulet which has been torn in half. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19851# +A hat made to look like a teddy bear's face. It makes a nice present. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19852# +A cute looking cap that makes its wearer look just like Galapago the penguin. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19853# +Rental Item +With the most popular new Filir homunculus, has created a beautiful headgear shaped wings. +-------------------------- +Increases experience gained from defeating monsters by 5%. +ASPD +1 +Decreases SP Consumption by 5%. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19854# +Black and small cat shaped hardband. It looks like Wickebine from Moroc, but is would not move at all. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19855# +Gives you a happy feeling of summer season. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19856# +An Ice sherbet hat, cool from head to toe. Feels like all the heat are blown away. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19857# +It lives at the bottom of the sea near Malangdo. +Created by the legendary lobster hat. +Seems very much alive. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19858# +A leaf which rumored to be worn by the Smokie monster for transformations. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19859# +A headgear which looks like an angel flapping its wing. +It make you feel dizzy when you wear it, but also makes your body feel light. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19860# +A hat given to new adventuers just starting their careers. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19861# +A cute hairpin with a heart attached to it. +Makes its wearer look adorable and charming. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19862# +A headgear which resembles the horns of Succubus. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19863# +A headgear which resembles the horns of Incubus. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19864# +A fluffy afro style wig which is something teenagers go crazy for. Once you wear it, you might want to dance. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19865# +A comical hat worn by clowns and jesters that is rumored to protect its wearer from magic. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19866# +A lovely nightcap. It is cute and you will feel sleepy when you wear it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19867# +A lovely nightcap. It is cute and you will feel sleepy when you wear it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19868# +Wear this hat to be a show off! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19869# +A hat worn by ancient civillian. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19870# +A silk hat used in magic show. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19871# +The rhythm that stimulates your five senses. Makes you feel the melody so vividly. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19872# +A mysterious mask traditionally worn by opera phantoms. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19873# +A hat which made to celebrate the festival. +'Made especially for you.' +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19874# +A Circlet that will be used in Carnival festival +'Made especially for you.' +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19875# +A rabbit doll hat made by a very famous artist. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19876# +An energetic Bunny Band perfect for a magic show. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 4. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19877# +A blindfold with scary eyes. It is said those eyes are moving sometimes. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19878# +A doll shaped like a cute rabbit. Can be put on a head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19879# +A sexy gorgeous hairband for you! +Every man chases you as soon as wearing this! +Increases your sex appeal 100%. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19880# +A hairband with the shiny golden star. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19881# +A newly designed love rabbit hood for the new year. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19882# +Wearing it, you might want to compound CO2 and H2O into carbohydrate by the solar energy. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19883# +Piamette hood with mortuary motifs. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19884# +Fenrir Helm modeled after all is said and swallowed. +....... alias, Fenrir. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19885# +A face mask that is worn by those who have trouble sleeping. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19886# +High quality sunglasses that effectively block glare from the sun. +A face mask that is worn by those who have trouble sleeping. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19887# +An aristocratically stylish lens that is worn for only one eye. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19888# +Prescription glasses worn to compensate for defects in vision. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19889# +A pair of small red ribbons which can be used to decorate the hair of little girls. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19890# +A stylish formal hat that talented magicians usually wear during a show. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19891# +What looks like a fried egg in a skillet is actually a furious Magnolia monster. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19892# +A hat named after the mysterious bird that sings at night. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19893# +Just an ordinary black magician's hat. For some reason, you feel somewhat extraordinary while wearing it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19894# +A ribbon once worn by a shrine maiden as she fought off hordes of demons and youkai. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19895# +A hat that promotes a sophisticated yet sleepy look. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19896# +A headgear to commemorate pRO's 10th Anniversary! +Happy 10th Anniversary pRO! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19897# +A crown made of laurel, worn by emperors during coronation. A symbol of glory and victory. +-------------------------- +All Stats +3 +MDEF +3 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19898# +A crown made of laurel, worn by emperors during coronation. A symbol of glory and victory. +-------------------------- +All Stats +2 +MDEF +2 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19899# +A crown made of laurel, worn by emperors during coronation. A symbol of glory and victory. +-------------------------- +All Stats +1 +MDEF +1 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19900# +Red Cool Pirate's eye patch. 3 times cooler than before. +-------------------------- +Has a low chance of dropping Sealed Envelopes when defeating any monster. +-------------------------- +Type: Costume +Position: Middle +Weight: 10 +-------------------------- +Requirement: None +# +19901# +A surprisingly durable helmet that was crafted by expert Orcish smiths. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19902# +A narrow, short roll of finely cut tobacco wrapped in thin paper. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19903# +A dark, mysterious power of a Witch is in this hat. In contrast, shiny orange coloured pumpkin symbol makes the hat cute. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19904# +A hat decorated by skull. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19905# +Fascinating mask covers your identity. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19906# +Horror image screw item. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19907# +Fascinating mask covers your identity. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19908# +Special hat made for the event motivated by national flags. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19909# +A cute hat made after little demon Deviruchi. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19910# +A costume hat upgraded from Witch's hat for this halloween season. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19911# +Monster alarm's triangle hat costumed item. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19912# +Meow~ change your eyes to that of a mischievous cat~ +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19913# +A hat which looks just like fecal matter that is guaranteed to end a date on a tragic note. +-------------------------- +Type: Costume +Position: Upper +Weight: 70 +-------------------------- +Requirement: None +# +19914# +Airship captain Ferlock's hat. +It has different color than the normal one. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19915# +Young and growing devil's horn. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19916# +A hat decorated with black cat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19917# +Pumpkin hat with gloomy mood. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19918# +Face masks made rude motif. +If you go to the air gun barrel with a smile even when confronting difficult. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19919# +Face masks made Quve motif. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19920# +Stronger Whisper Mask. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19921# +The cat which is rough, the sample picked the wild road and the hat which made. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19922# +Costume hast were made of High Priest 'Noah'. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19923# +A hat of black feathers made by the power of demons who bless the arrival of the Dark Ages. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19924# +A mask worn once worn by Odin during a fierce battle between the gods and humans. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19925# +A dark image winged glass often used by well known theives. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19926# +A long piece of black satin tied together into a neat little ribbon that wards off harmful magic. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19927# +A cat doll that you can carry on your head. If you think you hear it meow or feel it move, it's just an illusion. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19928# +A hat prepared by Chocolat for adventurers. +The blend of chocolate and mint creates the perfect harmony! +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper,Middle +Weight: 0 +-------------------------- +Requirement: None +# +19929# +A headband for costumes with a black ribbon that looks good on boys. +The big ribbon is the point. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19930# +A hair band for a cute costume with a small top hat and attached wings. +The idea is to make the wearer more cute. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19931# +A headgear made to look like an annoyed Smokie exhausted by the summer heat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19932# +A headgear made of a book topped with an apple. Wear it to learn glamourous posture. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19934# +Fireworks with the sanctity of God's power is sealed in ten gallons Hat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19935# +The sanctity of the god of wind power is sealed in this cap. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19936# +The sanctity of the god of water power is sealed in this cap. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19937# +A hat with sealed force of false Earth god. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19938# +Carefully made by those responsible for the famous rabbit from the hat. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19939# +A set of deer antlers that humans, finally, can proudly wear. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19940# +A fashion accessory used in clown or town drunk disguises. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19941# +Costume hat to protect your ears from noise or cold. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19942# +A hair band made by orchid and it smells like a scent of a flower. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19943# +Hat of famous judge. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +19944# +Costume given only to the winner. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19945# +A costume given only to the winner. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19946# +A costume given only to the winner. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19947# +A scarf with rainbow color. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19948# +A replica of green blue planet. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19949# +A hat to celebrate RWC 2013 in Japan. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19950# +A curvy elegant and adorable tiara. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19951# +A cardboard box with a peep hole. You can show others how you can adventure solo with no problem. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19952# +A bubble gum expanding like balloon. Can be blown very big depending on one's ability. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19953# +A hat brings happy feeling as much to hold a parade unconsciously. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19954# +A mysterious glasses which shows objects in 3-dimentional. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box6. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19955# +A fashionable' Christmas Tree hat. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19956# +Cruiser's hat. It somehow gives an urge to march. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19957# +A safety equipment for motor scooter riding. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19958# +A Hat worn in church choir. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19959# +Argiope put on top of head. Be careful, sometimes it might move fiercely. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 15. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19960# +Chains for controlling puppets. It feels like I have become a doll. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 15. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19961# +A circlet designed for a Rune Knight. It has Rune magical power in it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19962# +A hat which is used for ceremonies by bishops. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19963# +A special hairband which is designed to use the most frequently used tools. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19964# +A special hairband which is designed to use the most frequently used tools. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19965# +A mini crown which is made at Shadow Artworks. Masterpiece of the designer Doomk. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19966# +A hat of a famous minstrel. Fancy and plentiful black feathers adorn this hat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19967# +Free gift of a famous Genetic Bob Rose's book. Midas mark looks cute. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19968# +A hat which is decorated with minerals from an unknown world that has magical power in it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19969# +A hat made for those who decide to become a Sura. It expresses a burning spirit. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19970# +A hat for a ritual ceremony which is made from a spiritual feather. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19971# +A beautiful head ornament of a ballerina. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19972# +Was awarded one hundred twenty-four people who keep a tube. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19973# +A circular crown as the pores of the bones. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19974# +Christmas hooded cover perforated for rabbit ears. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19975# +A cute design boss hat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19976# +Cats living in Malangdo, wearing this hat for Christmas. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19977# +Exclamation in sparkling gold. Always gives you an incredibly wonderful feeling. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19978# +Exclamation in sparkling silver. Always gives you an incredibly wonderful feeling. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19979# +Question in sparkling gold. Always gives you an incredibly wonderful feeling. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19980# +Question in sparkling silver. Always gives you an incredibly wonderful feeling. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19981# +A beard of santa. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19982# +Rental Item +A red, pompom topped cap that is associated with Santa Claus's legend. +-------------------------- +MaxHP +1000 +MaxSP +100 +ASPD +3 +MATK +10% +ATK +10% +Increase Healing amount by 10%. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19983# +A hairpin with a red flower attached. It helps hold hair in place. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19984# +A furry hat that is an all time favorite during the winter season. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19985# +A crown adorned with special crystals. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19986# +A hat designed after a fluffy monster Lunatic. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19987# +A woolly hat made for warming heads, but it seems that some people wear it for fashion. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19988# +A crown made from Elder Branch. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19989# +A smooth hairband made from sheep's fur and horn. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +19990# +A hat redesigned after Rabbit-eared knit hat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19991# +A suit of armor made from pure white flower. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19992# +It is so cold that white breathe is coming from the mouth. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 15. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19993# +Onigiri is a delicacy found only on the island nation of Amatsu. Various flavors accentuate the slightly sweet rice. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +19994# +A headgear to commemorate saLU-salo event! +Meet up, mingle and make friends, all in the name of online gaming fun. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19995# +A beatiful floating flower. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +19996# +Welcome to the year of the horse 2014 with this mask. Simply feel I can go faster but is somewhat stiff, I feel my own breath. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +19997# +A very dangerous hat! Nobody knows when it explodes. +-------------------------- +Type: Costume +Position: Upper +Weight: 10 +-------------------------- +Requirement: None +# +19998# +A turtle hat with poweful dragon scales. +-------------------------- +Type: Costume +Position: Upper +Weight: 10 +-------------------------- +Requirement: None +# +19999# +Cap with aura of mouse. +A hat which make you want to wander the nightlife. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +20000# +Cap with aura of mouse. +A hat which make you want to wander the nightlife. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +20001# +Cap with aura of mouse. +A hat which make you want to wander the nightlife. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20002# +Cap with aura of mouse. +A hat which make you want to wander the nightlife. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20003# +Cap with aura of mouse. +A hat which make you want to wander the nightlife. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20004# +It is modeled after the popular Monster Sohee's accessories, and the large drops emphasize the cuteness. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20005# +The ears for costumes made from the wings of Tenma on which Valkyrie rides. +If you equip it, you will feel like you have become lighter. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20006# +A mask worn by a knight that used dark magic to curse anyone who wore it but him. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +20007# +Costume helmet made of heavy metal. +It is so profound that it seems that any attack is a slight movement. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20008# +A helmet that is said to have been used by a valiant general. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20009# +Costume helmet made of dragon skull. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20010# +Feather ear for costume made of beautiful colorful feathers. +A very mysterious decoration that shines when illuminated. +-------------------------- +> Limited Effect < +Exp + 3% Drop + 3% +Enables use of Level 10 Discount +Expiration date 25-12-2023 +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20011# +The sleek, sharp lines of the headpiece mimic a lightning bolt's swift descent to Earth. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20012# +A fluffy and soft hat with steel horns that is both cute and stylish, and is a stylish costume helm. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20013# +A hat for clothes made to imitate the hat worn by a great cook found in high-end restaurants. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20014# +Replica of an Emancipator's tall black hat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20015# +Replica of an Emancipator's beard. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20016# +A fine dining experience is always better with lobster. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20017# +A Marionette doll that gives you strange chills when you wear it on your head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20018# +Resembles the ears of a very powerful and ancient Wolf God. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20019# +This hat is for those artiest who comtributed to the community. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20020# +A doll hat for costumes made in a cute way, imitating the beautiful celestial maiden, Bacsojin. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20021# +A hair band for pretty clothes with a point shaped like a heart. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20022# +A red heart piece that embodies a love heart. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 19. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20023# +A beret for costumes dyed in red that only selected soldiers are allowed to wear. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20024# +A ribbon for a costume tied in the shape of a beautiful butterfly. +Please note that women mainly decorate their hair, and men can be misleading. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20025# +Hat full of the spirit of the cow. +It makes me feel wanting to have a cup of fresh milk. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20026# +Hat full of the spirit of the cow. +It makes me feel wanting to have a cup of fresh milk. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20027# +Hat full of the spirit of the cow. +It makes me feel wanting to have a cup of fresh milk. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20028# +Hat full of the spirit of the cow. +It makes me feel wanting to have a cup of fresh milk. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20029# +Costumes of sweet items prepared by the fairy candy for the Valentine's Day event. +You can enjoy the sweet taste by putting it in your mouth. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20030# +Costumes of sweet items prepared by the fairy candy for the White Day event. +When I add it, I feel like a refined sweetness and aroma spread in my mouth. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20031# +An ornate headband adorned with cute bunny ears. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20032# +A scarf for costumes made with many prayers. +Also known as the Magical Triangle Hood. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20033# +A coffin used by those who have learned the law. +-------------------------- +Collection Effect +Resistance race undead and demon 2% +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20034# +Jack castle bat chases his owner anywhere. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20035# +A blue rose that can never exist. +This is a total dream to make it to Genetics. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20036# +A golden crown worn by a champion among champions. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 4. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20037# +A silk hat of Owlduke. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20038# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20039# +Wing ears for costumes made of beautiful butterfly wings. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20040# +A historical costume crown worn by the princess of the ancient dynasty in the east when she was married. +The big rose is beautiful. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20041# +A flower ornament for costumes that seems to carry the power of the Earth Mother God. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20042# +A costume hat that bears the name of the agile god \ +. +When you wear it, you feel like your body is lighter. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20043# +An artificial flower of red cherry blossoms for clothes that seems to have power. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20044# +Costume hat made with refreshing tropical fruits. +It's a decoration, so you can't eat even if you're hungry. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20045# +A circlet for costume made from leaves of Samambaia that grows in the rainforest. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20046# +Costume decorations with luxuriously decorated colorful blue roses. +The blessing of God, which is the word of the blue rose, is about to come. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20047# +Hair ornaments for costumes with cherry blossoms and spring-colored bands. +There is an atmosphere in which good things are likely to happen when prayer is spun. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20048# +Hair ornaments for costumes with neat and clean accessories on Suzuran. +The fairy wings, which feel the wind and sway, draw a vast meadow in their heads. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20049# +A hair accessory which looks just like two crossed band aids. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20050# +A ceremonial hat worn during one's graduation. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20051# +A signpost that declares its wearer's desire that people should stop whatever they are doing. +Causes catastrophes during wedding ceremonies. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20052# +A sign that says you are Away From your Keyboard. Whether or not you are telling the truth is another story. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20053# +Hat full of the most intelligent spirit of the white tiger. +Okay, but is comfortable this stuffed tiger. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20054# +An item used to shut babies up when they're crying. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20055# +A traditional Japanese headpiece associated with the afterlife. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20056# +A neatly made wedding corolla. A huge silk ribbon is attached to the back of it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20057# +A fabulous, feathered hat that turns men into womanizers and women into manizers. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20058# +A headgear which symbolizes hot-blooded challenge and battle vigor. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20059# +A durable mask made from a fat metal plate that is usually worn by welders and Blacksmiths. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +20060# +A durable safety helmet created to offer some protection from accidents. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20061# +This mask marked with an \ + is a popular fashion item for bonafide street toughs. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20062# +Great weather phenomenon where light passes through the clouds. Looks like a ladder to angels. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20063# +A smart hat that pushes the boundaries of human feelings. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20064# +A smart hat that pushes the boundaries of human feelings. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20065# +An elaborate multi-colored headdress made from the feathers of a Grand Peco. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20066# +A hairband with PecoPeco wings that lends you a PecoPeco's speed. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20067# +A hat full of the rabbit’s cuteness from the 12 zodiac animals +One ear is perked up, doubling the adorableness. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20068# +Hat full of the zodiac cute rabbit. +That beautiful ears have, but doubles the bites of ticks. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20069# +Hair band for costumes made of Griffon wings. +It has the same steel decoration as the riding griffon. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20070# +A hood for costumes made from fluffy alpaca hair. +I feel that it is a little too long to be called a hood. +Recommended for those who love alpaca. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +20071# +It seem he love his mother. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box6. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20073# +A simple hair band that holds hair in place quite neatly. It's a very cute look for girls, but dudes, on the other hand. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20074# +A stiff, squarish formal hat usually worn by clerics. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20075# +A winged hat used for hunters and adventurers who wears small and light clothing. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20076# +Feather ears of Idun, wife of Bragi. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20077# +Fashionable sunglasses for the costume, whose frame is a feather. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20078# +A berret decorated with white feather. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20079# +A hair band for costume that embodies the flapping of the main angel who controls the angel. +The power of God can be felt from the golden wings. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20080# +Hair accessories for costumes that are said to have been worn by a Shaman. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20081# +A costume that mimic the head of Dragon. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20082# +A hat for a costume in which a metal dragon is placed on the head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20083# +A hat that resemble Mythlit. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20084# +Costume corolla made of white clover. +It makes you look feminine. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20085# +Green hat with clover. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20086# +Dragon is part of 12 chinese zodiacs. +A shiny hat that resemble Dragon whose will grant any wish. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20087# +Dragon is part of 12 chinese zodiacs. +A shiny hat that resemble Dragon whose will grant any wish. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20088# +Dragon is part of 12 chinese zodiacs. +A shiny hat that resemble Dragon whose will grant any wish. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20089# +Dragon is part of 12 chinese zodiacs. +A shiny hat that resemble Dragon whose will grant any wish. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20090# +The decorative surface on the head is quite solid with a shiny surface. +There are rumors that when worn, they may be mistaken for someone with certain physical conditions. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20091# +Smoke in moderation or not at all. No one's choice but yours. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20092# +A banner which has a word 'Sale' written on the surface. +Seems to be useful when used for opening a vending shop. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20093# +A mystic hat, made specifically for wizards, which amplifies pyschic power. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20094# +A small Green ribbon emphasizes one's cuteness while wearing this hairband. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20095# +A small Red ribbon emphasizes one's cuteness while wearing this hairband. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20096# +A small Blue ribbon emphasizes one's cuteness while wearing this hairband. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20097# +A small White ribbon emphasizes one's cuteness while wearing this hairband. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20098# +A hairband that give an image of vampire to you. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 16. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20099# +This fairy loves to bless adventurers with good luck! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20100# +A small costume hat with a very gorgeous fur. +Looks a little elegant. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20101# +Costume ears benefiting from Idun's husband Bragi. +I feel the power of Bragi, who is said to be the god of poetry. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20102# +Outfitting equipment made to imitate the head of a horse-riding creature of the Northern peoples. +I feel like I can run faster if I wear it completely, but that's because of my anxiety. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +20103# +A panda in a cute outfit that doesn't let go of the master's head. +It seems that it clings so that it will not be shaken off even in a fierce battle. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20104# +Equipment for costumes made by imitating Picki that came out by breaking the shell. +It's joyfully splashing. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20105# +A fish hat with a mouth open. It looks fishy every time I open my mouth. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20106# +An old design hat for clothes. +Since it is hardened with varnish and glue, it is hard for its appearance. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20107# +A doll for a costume that imitates a fish that can be held in the mouth. +It feels like fishy, but since it is a doll, there is no need to worry about it going bad. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20108# +Light-shielding glass for costumes used during hunting. +Don't lose sight of your target even in strong sunlight. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20109# +A mortarboard with a symbol of death written mainly on the pirate flag. +There is a personality suitable for the champion of the sea. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20110# +Snake is part of 12 chinese zodiacs. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20111# +Snake is part of 12 chinese zodiacs. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20112# +A tengallon hat for costumes with a cool set of sky blue and lace patterns. +Let's enjoy a fashionable fashion even in the midsummer that seems to melt. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20113# +A hat used for costumes, which is said to have been a favorite of navigators. +The charm point is the decoration of the compass needles that imaged the North Star. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20114# +Traditional Korean headdress worn during funeral ceremonies by the bereaved family and close friends. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20115# +Costume glasses with a frame only on the bottom of the lens. +Perfect for cool and stylish coordination. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20116# +Bubbles that pop out every time you walk. +Cool and fashionable design inspired by the sea. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20117# +A costume hat with plenty of delicious raspberry mousse cake. +It looks so delicious that I want to eat it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20118# +A birthday cake replica that won't fit a Dancer inside, but it's almost just as much fun to wear it on top of your head. Almost. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20119# +A knit beanie that protects from the cold. Makes some wearers look cute and gives other wearers street cred. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20120# +A mysterious object, possibly a device, that was discovered in the depths of the ocean. Nobody knows what it is. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20121# +A hat made from a Brasilis Water Lily flower. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20122# +A ribbon for costumes with a well-balanced arrangement of green like mountains, white like clouds, and light blue like the sea. +Enjoy fashion even in the middle of summer and be happy. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20123# +Eyeglasses for clothes made in the shape of an eye with greatly raised outer corners of the eyes. +When the opposite sex has such eyes, it seems better to apologize for the time being. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20124# +Butterfly-shaped glasses for costumes made of black leather. +When I put it on, I feel a strange sense of justice. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20125# +Small glasses on the nose strongly enhance the academic atmosphere, but some people make them look like dormitory teachers... +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20126# +Mask for the costume worn by the hatred of Tanatos. +It has a charming design. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +20127# +A helm worn by the Abysmal Knight. +It is highly resistant to strong attacks, but is said to be mysteriously fragile against weak attacks. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20128# +A helmet for clothing worn by firefighters working in dangerous fire scenes. +Because it's for costumes, it's not as durable as an actual helmet. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20129# +It looks like a Poporing, but don't worry about the poison! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20130# +A costume hat with a cute Whisper motif. +I feel like Whisper is approaching when I wear this hat. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20131# +Income for the costume that the head part of the clock tower administrator was fashionably designed. +The rotating earpiece is unique. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20132# +Unknown aura that wrapped your body. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 5. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20133# +A hat inspired by the adorable Poring. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 5. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20134# +A white helmet for costumes, much like the helmet worn by the abyss knight. +It is a helmet that is dyed in pure white so that it cannot be thought of as a knight of the abyss, whose soul was impure by Himermez. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20135# +Rental Item +A crown to celebrate 12 anniversary, it has a sacred aura. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20136# +Rental Item +A fairy ears to celebrate 12 anniversary with sacred aura all over it. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20137# +A wick-like ornament worn on top of the head for a dangerous look. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20138# +A hat which looks like the face of a sea-otter. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20139# +Hat with spirits of 12 chinese zodiacs. +A high class production luxury hairpin. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20140# +Hat with spirits of 12 chinese zodiacs. +A high class production luxury hairpin. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20141# +A device that can measure opponent's power. Commoners have power Level 5. Heroes have a power Level over 9,000! +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20142# +70's tough guy style sunglasses that give its wearer a manly swagger. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20143# +A lollipop bitten in the mouth. Make sure to brush your teeth after having it. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20144# +Accessory which makes you feel like a nature-loving fairies in the past. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20145# +A weird item that spreads a strange-shaped beam around the eyes. It seems to have been made in outer space. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 4. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20146# +A golden mask rumored to be worn by some ancient Goddess. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 4. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20147# +Cute pegeon bring good fortune to the ownner. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 4. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20148# +\ + is inscribed on the inside of this extravagant hat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20149# +Glasses for costumes that are said to have been used by a famous insect researcher. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20150# +A fan for costumes that you can cover with your hands and enjoy the breeze. +It is said that the wind god used it. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20151# +A hat for clothes made by cutting the umbrella of Poison Spore's. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20152# +A rice bag for clothes that is packed with lots of rice that everyone loves. +I want to take out the contents and cook it. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +20153# +A hat for clothes characterized by its small size. +Small and cute, rather stylish design. It suits both men and women. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 21. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20154# +Falling leaves which covers the body. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20155# +A costume hat that looks good on noble women. +The combination of soothing colors and flashy decoration invites elegance. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20156# +A fan for costumes reminiscent of autumn, which is dyed red like a sunset. +Let's enjoy the refreshing autumn breeze with a fan. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20157# +A headgear that looks just like a scrumptious fish. It even has the same smell! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20158# +A jeweled, metal band worn on the head that wards off the effects of harmful magic. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20159# +A blue colored hair band worn with a rakish slant. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20160# +What looks like a fried egg in a skillet is actually a furious Magnolia monster. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20161# +A squad cap issued by the Prontera Military. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20162# +Hat full of positive energy from 12 zodiacs. +made from clean and pure white wool. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +20163# +Hat full of positive energy from 12 zodiacs. +made from clean and pure white wool. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +20164# +A costume helmet that imitates Duneyrr's head that lives in Yggdrasil, the world tree. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20165# +A costume hat modeled after the Tendrilion. +When you wear it, you feel like you have become the king of a different world. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20166# +Costume mask worn by the ice hockey goaltender. +I'm very scared because I don't know the expression because I wrap the whole face. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +20167# +Headphones for costumes that imitate the Deviruchi. +It has a high sound insulation and shuts out the sound from the outside. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20168# +A hood for a costume that is said to be worn by the Shinigami. +Because it's a costume, you don't have to worry about misfortune. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +20169# +A long tongue for costumes that makes you feel like you can talk at a great speed. +The length increases the chance of biting your tongue by yourself, but it is not a pain because it is for costumes. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20170# +A costume hat made to imitate the Deviruchi Child. +It is refreshing and cute to wear, and it is fun not only for those who wear it but also for those who see it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20171# +Costume with decoration of chocolate biscuit in sepia. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 16. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20172# +A large pumpkin hat with gorgeous big ribbon on top. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 9. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20173# +A unique costume hood illuminated by the light carried by a cute Lude. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20174# +A pumpkin hat with bright orange color, it can turn dark hallowen night into bright. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 16. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20175# +A stylish set of headphones fashioned in the likeness of a Diabolic. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20176# +It may make you happy when you wear it. A clown mask for costumes. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +20177# +A hat with a gaping mouth and plain eyes. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20178# +A wreath of wildflowers made by a woman in love. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20179# +Hat that resemble monkey, one of 12 chinese zodiacs. +Everyone love monkey's friendly aspect. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20180# +A broad brimmed casual hat, usually worn by cowboys and ranchers, that is rustically stylish. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20181# +A hat that looks just like a white rose which enhances the beauty of its wearer. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20182# +A mysteriously colorful egg shell. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20183# +You feel something heavy over your shoulders, but there's nothing there! It gives off a creepy feeling. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +20184# +A festive hat for celebrations and any kind of party. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20185# +Sunglasses for costumes that are more powerful than you can imagine in terms of a refreshing feeling of wear and the effect of focusing your eyes. +It looks nice if someone with a certain sense wears it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20186# +Once owned by Magni, son of Thor, the wearer of this cap is supposedly granted a measure of Magni's awesome might. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20187# +A circlet blessed by Freya, mother of Baldur. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20188# +A hood that is one of the three keys to the seal which binds Morpheus. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20189# +One of the few armors that was forged by Goibne the blacksmith. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20190# +A mother chicken doll hat that looks cozy. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20191# +A beret for a cute costume with a cat. +I feel like a little cat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20192# +Costume grass shaped like a fluffy dog's tail. +It seems that if you shake it in front of a cat, it can't help it. +It has the smell of the earth. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20193# +Wheat, a food crop, is used as a costume. +I can't eat it, but when I hold it in my mouth, I get hungry. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20194# +A costume helmet that imitates a lion, the king of beasts. +I feel that I can exert exceptional power when I wear it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20195# +A cat-shaped mask, where a cat scratches on the face. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +20196# +Earrings for costumes with a wild panther pattern. +The charm point is that only one ear hangs down. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20197# +A beret modeled after the ear of Amistr. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20198# +Hair band for cat ears costumes worn by Misty. +Just like Hucke's black cat ears, the principle of movement is a mystery. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20199# +A dark marching hat worn by members of an undead band from Niffleheim. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20200# +Hat with rabbit ears. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 5. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20201# +Kiss of Banshee Master. It could give the powerful force. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 5. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20202# +Hellium Balloon shaped like deviruchi. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 5. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20203# +A common, ivory colored bandana. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20204# +This hat is made especially for hunting Brute monster! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20205# +A floral decoration used to adorn the head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20206# +Hat that resemble chicken, one of 12 zodiacs +Its cute and boost mood of its wearer. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +20207# +A striped hair band which is good for preventing hair from covering the eyes. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20208# +A salaryman's necktie worn as a headband. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20209# +Bubbles for costumes in which bubbles of seven colors emerge. +Just being in a beautiful bubble makes you happy. +-------------------------- +Since it is an equipped effect, it still will be displayed even when the effect (/effect) is turned off. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20210# +Hat that resemble chicken, one of 12 zodiacs +Its cute and boost mood of its wearer. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +20211# +Hat that resemble chicken, one of 12 zodiacs +Its cute and boost mood of its wearer. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +20212# +A doll modelled after Loki & Nidhoggur. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20213# +Costume equipment that imitates the evil eye of Giant Frungnir who fought with Thor, the thunder god. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20214# +A marching hat for evil costumes dyed in black. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20215# +A mask with a strange shape that covers half of the face. +It seems that the field of view is somehow secured. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20216# +A hat for a costume made with reference to the shape of a terrifying book that attacks people. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20217# +A veil for costumes with a mysterious atmosphere that covers the back of the head and mouth. +It looks great as a gorgeous dancer. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20218# +A magic circle that images attributes. +I feel like I can use powerful magic just by wearing it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20219# +Equipment for sacred costumes with large wings and shining angel rings. +When you wear it on your head, you feel as if you have received a blessing from heaven. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20220# +A veil for clothes wrapped in a dark night that emits a jet black light. +I feel beauty in the mystery. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20221# +Costume for clothing that imitates the eyes of Ifrit, the spirit of fire. +It's a burning gaze that's dazzling like the sun. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20222# +A double-pommed Blue Christmas Cap +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20223# +A slender leaf that is placed in the mouth for a seductive look. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20224# +Pretty red ribbon. You can feel the sweetness of love. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20225# +A pumpkin hat for celebrating Halloween: wear it when you go trick-or-treating! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20226# +A bright red brush worn as a last-minute accessory. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20227# +A hat made to look like a husky's face. Makes you want to pet it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20228# +A good place to store spare change. You never know when you might need zeny here or there for a potion. +Pig one of 12 zodiacs. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: +Base Level 10 +# +20229# +Costume hair ornaments worn by people in some eastern countries when they invite God for the New Year. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20230# +A mask that showing the deep sorrows for losing everything. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 5. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +20231# +A hat that is a constant reminder of the Winter season. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 5. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20232# +A luxurious ribbon with golden border. +Had been abandoned by Kimi. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 5. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20233# +Statue of peeing baby angel. +It's a bit embarrassing to wear it. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 5. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20234# +Warm and cozy hat made with top class lamb's wool. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +20235# +An ice rose for costumes that blooms only on permafrost. +Since it is an artificial flower, it never melts. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20236# +A very soft textured hat which was inspired from Arch Angelring. +The wings are fluttering and it's likely to fly away. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20237# +A costume hat to keep your head warm. +However, some people seem to like it because it looks good. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20238# +A stuffed toy that you can put on your head and walk. +When I hear the cat crying somewhere, I feel like I was moving above my head. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20239# +A big ribbon scarf. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box6. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20240# +Could that out of your neck when equipped. +You can always enjoy the snowy scene when equip it. +-------------------------- +Since it is an equipped effect, it still will be displayed even when the effect (/effect) is turned off. +-------------------------- +Collection Effect +Reduces damage taken from medium size enemies by 1% +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20241# +A costume hat in the shape of Eclipse. +When you wear it, it feels soothing to the touch. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20242# +A costume hat modeled after the snowman called Snowysnow keeping the town Lutie. Surprisingly, snow falls on your head when you wear it. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20243# +A hat prepared by Chocolat for adventurers. +The perfect combination of chocolate and a hint of mint. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20244# +This mask, which is symbolic of Zealotus, mistress of the Glast Heim Underground Prison. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +20245# +A hairpin which resembles the shape of a cat's paw. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20246# +I feel trapped in flow of time. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20247# +It feels as if destiny is grabbing the back of my head to carry me around. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20248# +A hair inspired by certain race whose hair changes when they exceed their limits. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20249# +A wig modeled after the characteristics of a race that causes hairstyles to change when pushed beyond their limits. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20250# +A hair inspired by certain race whose hair changes when they exceed their limits. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20251# +The special hunting cap with lace. +Charm point is ash rose corsage. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20252# +Costume decoration worn by people who specialized in exterminating undead that harmed people. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20253# +A cute doll of a drooping Alicel from the Robot Factory. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20254# +A ribbon for a costume tied in the shape of a beautiful butterfly. +Please note that this is mainly for women to decorate their hair and may be misleading for men. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20255# +Feeling full of loves. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box7. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20256# +Costume pancakes with a sweet scent. It looks delicious, but since it's a costume, unfortunately, you can't eat it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20257# +Elegant fluffy rabbit ears costume. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 18. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20258# +Cool refreshing headdress costume. +Essentials for a fresh maiden. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20259# +An artificial flower that uses a very rare pink clover as a costume. +A cute accessory that is also popular as a lucky charm. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20260# +A small, star shaped hairclip that makes a great present for ladies. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20261# +Hair band for costumes with a cross accessory on top. +Light and cute. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20262# +A headgear for a cute outfit made in the shape of a fox's ear. +The small bell is the point. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20263# +Hat that refer to shape of sleeping cat. If you wake up sleeping cat, you will be suffered. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20264# +A mask for a costume that imitates the vampire's fearless fangs. +I feel that my fangs can absorb the vitality of the opponent. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20265# +A bird's nest with a newly hatched baby bird. It takes certain responsibility to keep the baby bird. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20266# +From the inside of zipper there is creature like a bunny. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box7. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20267# +Costume with penguin motif. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20268# +A sleepy Eclipse with his family, look comfortable. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box7. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20269# +A headgear for a cute outfit made in the shape of a fox's ear. +The white fur is beautiful with the image of a white fox. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20270# +Costume earrings made of Griffon wings. +I feel like I can fly in the sky with this. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20271# +Peculiar headgear designed to look like a sunflower. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20272# +A pristinely white horn worn on the forehead that makes one look like a unicorn. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20273# +Cute sheep hat. Its so cute that make people's heart beat fast. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20274# +A cute \ + dressed in white chocolate by Criolo, the fairy queen of sweets. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20275# +A hair band for clothes that looks like your head glows when equipped. +But don't worry, it doesn't reflect light. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20276# +Among the mushrooms that grow in damp shade, a hair band for costumes made by using mushrooms that happened to grow long. +Of course I can't eat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20277# +A large knitted hat that can be used to conceal long hair. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20278# +Look like a hunk o' burnin' love with this retro hairstyle wig. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20279# +Costume whistle for support. +Energize with the blowing. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20280# +A pencil for clothes that I've chewed when I was concentrated. +Be careful of the sharp core! +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20281# +A special outfit hat with a pure white color that is given only to excellent students. +Wearing this hat gives you the confidence to face things you are not good at. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20282# +A hat given to standout student. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20283# +Designed to protect the head tightly. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20284# +A hat modeled after the shape of cherry blossom petal. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20285# +A fallen sakura petals that made into costume. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20286# +Only the bottom of glasses attached with frame, its cool and stylish. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box7. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20287# +A costume which mimic a man that always fighting his opponent. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20288# +A pointy hat modeled after the Bijou, Valkyrie's henchmen. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20289# +Hair ornament for the black wing costume imitating the wings of the protector. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20290# +A hat of suffering evil druid. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20291# +A costume mask that imitates Thoth, the god of wisdom. +Thoth is the secretary of the gods but is also said to have invented the musical instrument. +There are many benefits to wearing a mask... Maybe. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +20292# +Let's take a look at the ramen made by Sarah, who had been removed from her mother, and put them into costumes to put on her head. +Don't spill it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20293# +A costume hat that mimics the appearance of a monster sleeper, such as those found in Juno Field. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20294# +The Savage Babe of the Savage family. A costume hat made in honor of the 29th president. +He has the courage to move toward a huge enemy even though he is small. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20295# +Sunglasses with lenses designed after the adorable Poring. +Their vibrant look is sure to catch everyone's attention! +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20296# +A costume hat of the Yoyo, a mischievous monster. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20297# +A costume hat with a motif of Mukha living in the Sograt Desert. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20298# +Droopy Lunatic ears. Cutely garnished with clover flower bouquets. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20299# +A mask of face with Pie on it. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +20300# +An imitation mask of Hild Wind from Rachel field. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +20301# +A doll with Savage Bebe dyed in gold as a costume. +It's a cute doll, but when I stare at it, I get hungry for some reason. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20302# +A crown of MVP Beelzebub from nameless island. It gives noble atmosphere around its wearer. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20303# +A Mandragora has bloomed on this hat. +Don't even think about plucking the flower! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20304# +A hat created in the form of Smokie the Raccoon Monster. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20305# +Now you do not need special skill to make heart shaped Bubble Gum. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20306# +A strange hat that seems to be attracted to people skilled in the arts... +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20307# +A costume awarded to adventurer who barely start his adventure. +-------------------------- +HIT +30 +MaxHP +1000 +MaxSP +200 +-------------------------- +Decreases Variable Casting Time by 10%. +Increases restoration amount of Novice Potion by 50%. +Increases Healing amount by 150%. +-------------------------- +For each 10 Base Level: +HIT -3 +Increases Variable Casting Time of all skills by 1% +MaxHP -100, MaxSP -20 +Decreases Healing amount by 10%, +Increases Healing received and Restoration items by 10%. +-------------------------- +When Base Level 99+ is reached, the item effect will not activate. +-------------------------- +The effect will not work during WoE, WoE:Second Edition, Battleground and WoE:TE Edition. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20311# +A booster developed and discovered in Juperos ruins that increases magical power. Its made from unknown material. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20312# +Eye patch for costume made to imitate the evil eye of the devil Valor. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20313# +Costume equipment that imitates a disc that can record various electronic data. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20314# +A sunglasses that give futuristic feeling. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20315# +A costume developed from unknown technology and magic in Juperos ruins. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20316# +Feathers of angel that decorated into a costume, designed for Royal Guard. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20317# +A pair of headphones with cat ears. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20318# +A costume modelled after the robot inside Charleston factory. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20319# +A costume booster with an impressive red coloring. +It's a design that looks a lot like a magical booster, but it's unclear what it was designed for. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20320# +A boldly red bandana that was possibly left over from the 80's. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20321# +'No one ever approaches perfection except by stealth and unknown to themselves. - William Hazzlit' +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20322# +Outfitting equipment that imitates the head parts worn by Otto. +Very warm and excellent in heat retention. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20323# +The rhythm that stimulates your five senses. Makes you feel the melody so vividly. +-------------------------- +Since it is an equipped effect, it still will be displayed even when the effect (/effect) is turned off. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20324# +Why are pigeons in a hat...? +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20325# +A small aquarium costume that make its wearer feels like swimming in ocean. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20326# +A decoration that uses the collar of clothes worn by sailors as a costume. +It is said that on a windy ship, the collar was raised to make it easier to hear the sound. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20327# +A hat that the sailor wears. +It is said that the hat has no brim to prevent the brim from getting caught when climbing the mast. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20328# +Fishes that only appears once every 10 years in Izlude. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20329# +Nothin you need to worry in the World when wearing this on your head. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box7. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20330# +A traditional Mexican hat with a wide, round brim. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20331# +A turban imported from fire burning desert that used by brave warrior who became a legend since several centuries ago. +-------------------------- +Collection Effect +Resistance to Fire element 2% +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20332# +Ribbon for pure white clothes that further emphasizes neatness. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20333# +A costume represent the figure of family. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20334# +A costume controller needed to control something. +It doesn't move on its own... it looks like. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20335# +Tears for clothes that can be used in a variety of situations, when you are sad, when you are happy, when you get dust in your eyes. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20338# +A hat that imitates a rare octopus dressed in a fluorescent color, longing for the rainbow. +For the time being, it seems that I tried to shine it from my legs. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20339# +A straw hat for costumes decorated with colorful flowers. +Fashionable summer essentials that prevent the midsummer sunshine. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20340# +An extended ponytail that came with different colors. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20341# +A wig that always bouncing whenever you move. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20342# +A hair extension that soft and looks wavy. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20343# +A traditional costume of the Cat Kingdom, made by processing a fine melon. +The mellow scent makes you enchanted. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20344# +Colorful balloons with poring image on its surface. Kids love to hold these when on festival. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20345# +There is rumor that this protector contain a Seagod's power. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20346# +A child doll that reproduces the appearance of a Permeter. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20347# +A cute hat of Poring pirate. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20348# +Fashionable hat with a wide brim,which is very efficient to block strong sunrays. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20349# +A galapago that have a dream to fly high in the sky. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20350# +A wig that always bouncing whenever you move. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20351# +A wig that always bouncing whenever you move. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20352# +A wig that always bouncing whenever you move. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20353# +A wig that always bouncing whenever you move. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20354# +A wig that always bouncing whenever you move. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20355# +A wig that always bouncing whenever you move. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20356# +A wig that always bouncing whenever you move. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20357# +An extended ponytail that came with different colors. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20358# +An extended ponytail that came with different colors. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20359# +An extended ponytail that came with different colors. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20360# +An extended ponytail that came with different colors. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20361# +An extended ponytail that came with different colors. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20362# +An extended ponytail that came with different colors. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20363# +An extended ponytail that came with different colors. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20364# +A hair extension that soft and looks wavy. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20365# +A hair extension that soft and looks wavy. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20366# +A hair extension that soft and looks wavy. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20367# +A hair extension that soft and looks wavy. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20368# +A hair extension that soft and looks wavy. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20369# +A hair extension that soft and looks wavy. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20370# +A hair extension that soft and looks wavy. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20371# +A limited costume to celebrate RO's 13th anniversary. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20372# +Hat to protect you from the Sun. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20373# +Leftover piece of watermelon, scraped clean. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20374# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20375# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20376# +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20377# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20378# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20379# +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20380# +A hairband made of various machine parts. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20381# +A retro style steampunk hat with attached bear doll on it. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20382# +A doll resemble the FAW Silver Sniper. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20383# +A doll resemble the FAW Silver Sniper. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20384# +A tiara that look similiar to Douce's headdress. +It's made from different material and technology from this world. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20386# +A helm made for honoring war veteran. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20387# +A hair accessory that looks like an 'X.' +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20388# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20389# +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20390# +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20391# +A mask which is designed for Guillotine Cross' costume. +* This equipment cannot be made from an old helmet. * +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +20392# +A specially designed goggle for snipers. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +20393# +A headgear which is focused on defense. It covers almost all of the face. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20394# +A hat awarded to honorable person in black school of chef. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20395# +Wearing this hat, it seems to control myself by Black Witch's magic. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 16. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20396# +A cute tree spirit hat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20397# +A helm that looks like jack. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +20398# +A hat from famous Healer of Niflheim, Hylozoist. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20399# +The mask carries the grudge of its previous owner. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20400# +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20401# +A ring made from the glowing ring on the head of an angel, when worn, makes it seem as if the angel has blessed you. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20402# +A hat from eastern church that only the highest Bishop allowed to wear it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20403# +A Dolor of Thanatos laying on your head. It's rumored that the doll is trying to speak with his owner. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20404# +A costume beam of light surrounded by the blessings of angels. +The light filled with happiness that descends from the sky is so warm and comforting +-------------------------- +effect Bonus +All stat +5, Exp/Drop rate +5% +-------------------------- +(19/12/2025 – 15/1/2026 Before MA.) +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20405# +A bright red tattered scarf. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 9. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20406# +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20407# +A costume that simulate the aura of subjects of Bio Lab. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20408# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20409# +I put it in and nothing happened, but why... does it give me this tingling feeling down my spine? +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20410# +Headgear made of the skull of dregon. So hard that it does not easily break. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20411# +So hot! A headgear with the figure of Kafra Glaris! Fascinated by her mature appearance, her advocates call her a teacher. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20412# +So hot! A headgear with the figure of Kafra Telling! She is such an active and hard-working lady. So she became the most favorite Kafra among users. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20413# +Piamette's brown ears cap. It's a favorite among children. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20414# +A deceptive crown that was once used to summon monsters. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20415# +A costume given to the winner. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20416# +A costume belong to Novice player. +-------------------------- +Type: Costume +Position: Lower +Weight: 10 +-------------------------- +Requirement: None +# +20417# +A costume belong to Novice player. +-------------------------- +Type: Costume +Position: Lower +Weight: 10 +-------------------------- +Requirement: None +# +20418# +A costume belong to Novice player. +-------------------------- +Type: Costume +Position: Lower +Weight: 10 +-------------------------- +Requirement: None +# +20419# +A costume belong to Novice player. +-------------------------- +Type: Costume +Position: Lower +Weight: 10 +-------------------------- +Requirement: None +# +20420# +A costume belong to Novice player. +-------------------------- +Type: Costume +Position: Lower +Weight: 10 +-------------------------- +Requirement: None +# +20421# +A costume belong to Novice player. +-------------------------- +Type: Costume +Position: Lower +Weight: 10 +-------------------------- +Requirement: None +# +20422# +A costume belong to Novice player. +-------------------------- +Type: Costume +Position: Lower +Weight: 10 +-------------------------- +Requirement: None +# +20423# +A costume belong to Novice player. +-------------------------- +Type: Costume +Position: Lower +Weight: 10 +-------------------------- +Requirement: None +# +20424# +A costume belong to Novice player. +-------------------------- +Type: Costume +Position: Lower +Weight: 10 +-------------------------- +Requirement: None +# +20425# +A costume belong to Novice player. +-------------------------- +Type: Costume +Position: Lower +Weight: 10 +-------------------------- +Requirement: None +# +20426# +A costume belong to Novice player. +-------------------------- +Type: Costume +Position: Lower +Weight: 10 +-------------------------- +Requirement: None +# +20427# +A costume belong to Novice player. +-------------------------- +Type: Costume +Position: Lower +Weight: 10 +-------------------------- +Requirement: None +# +20428# +A costume belong to Novice player. +-------------------------- +Type: Costume +Position: Lower +Weight: 10 +-------------------------- +Requirement: None +# +20429# +A costume that imitating the bowtie of Piamette. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20430# +A costume that imitating the protection aura of Devil Morocc. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box10. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20431# +A costume based on Magician's headdress. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20432# +A costume based on Khalitzburg Knight's helm. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box10. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20433# +A perfect costume for christmas. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box10. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20434# +This gunslinger doll perches on your head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20435# +A colorful camelia hair pin costume. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20436# +A knitted hat with Angelring on top. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20437# +A Sakura-shaped hairband. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20438# +A marvelous abacus that can recognize worthy of things. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20439# +A happy costume beam of light expressing the first sunrise of a year. +Since the first sunrise is said that the greatest blessing descended upon it, +there is a custom that you give thanks to GOD for last year and pray for health and happiness of this year. +-------------------------- +This equipment's visual appearance relies on special effects. If /effect is turned OFF the headgear will not be fully displayed. +-------------------------- +Collection Effect +Ranged Damage +1% +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20440# +A bell costume that can create strange sounds. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20441# +A large ribbon muffler with red color. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20442# +A costume that imitate the rice cake. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20443# +A silver helmet named after the legendary Unicorn beast. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20444# +A hat that wear on anniversary event. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20445# +A candle used for praying after donating to the temple. +You can feel an aura of the temple holiness on it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20446# +An easter egg with two red bunny ears. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20447# +A costume made based on appearance of small porings. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 9. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20448# +A costume that gives calm feeling of water that. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20449# +A white cat and a black cat relaxing on your head. Their tails hold each earpiece in place to warm your ears. +-------------------------- +Collection Effect +Atk +7 +Matk +7 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20450# +A beautiful magician hat with flower on it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20451# +A beautiful magician hat with flower on it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20452# +A crown that worn by a prince from strawberry kingdom. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20453# +A large piece of cloth, usually polka dotted, that is wrapped around goods which are then carried on the head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20454# +A hair ornament worn by ancient queens. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20455# +A hat that giving the feeling of being in republic of Schwartzvald. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20456# +A hat with vestiges from fierce battle on the battlefield. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20457# +Flying feathers fluttering in the wind. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20458# +A hat resemble the Wild Rider. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box10. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20459# +An ornament wore by a girl that fighting in battlefield. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box10. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20460# +Hairband made with magic thorns which only grows on top floor of tower. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20461# +A costume made based of Creamy's wings. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20462# +A cute hood adorned with playful cat ears, designed to delight the wearer with the soft and cozy fur of a black cat. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20463# +A costume made of love ribbon and two tone cookies. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20464# +A ribbon with black and white color. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box10. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20465# +A glasses without lens, worn for fashion purpose. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20466# +A ribbon with crimson color. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20467# +A crown blessed by spirit, by wearing it you can feel the flow of nature. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20468# +A mask with meaning of they become one. +It was made to approach other races. +...very effective +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +20469# +A horn symbol of demon. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20470# +A large chocolate shaped hat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20471# +An orange colored tulip hairpin. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20472# +Wondrous headgear of high defense made of feathers from the wings of angels and constructed by a unknown craftsman. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20473# +Safety helmet where a headlight is attached on the forehead,for seeing things in the dark. +It possesses strong durability,which bears most of impact. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20474# +A hat made in the image of a banana peel, the key ingredient for the most basic practical joke since time immemorial. +Just looking at it causes a primal reaction of pure rage. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20475# +A ribbon expressing happiness for the new married bride. Makes you feel more sensitive. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20476# +A stylish cape. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20477# +A headgear for a costume that makes your whole head a chicken. +It looks suspicious because it looks like it seems like it takes courage to wear it. +-------------------------- +Rental Costume Chicken Headgear] can only be sold to NPC's. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20478# +Rental costumes selected by designers that can be taken seriously. +-------------------------- +Rental Costume Royal Rabbit Crown can only be sold to NPC's. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20479# +Top rental costume selected by the Kafra staff. +-------------------------- +Rental Costume Smiley Eyes can only be sold to NPC's. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20480# +Top rental costume selected by the Kafra staff. +-------------------------- +Rental Costume Gamble Feather Hat can only be sold to NPC's. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20481# +A mask of Ifrit, the spiritual owner of fire. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +20482# +A decoration of bird and its eggs. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20483# +A cute design of barrette. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20484# +A hairpin adorned with a sunflower. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20485# +Wear it will scare the surrounding people! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20486# +A ribbon decorated with a margaret on both side. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 18. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20487# +A funny costume made of flower that gives feeling of spring season. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20488# +A crystal like silk pale yellow ribbon. It gives mysterious atmosphere by wearing this. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20489# +A replica of pope arunafeltz's crown. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20490# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20491# +A hat with High-performance laser shooter. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box10. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20492# +You can hear the piano of Jitterbug and whistle of the Ferre. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20493# +Headphones for costumes prepared by artist Luise, who hosts Rag Colle 2017. +The cute angel wings seem to symbolize those who enjoy fashion freely. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +20494# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20495# +A Coati-shaped Hat with a cute thick tail. This hat comes with a fresh forest scent. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20496# +A hat designed after a black Amatsu hound. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20497# +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20498# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20499# +A hat with attached cat ears. If you want to wear cat ears and hat at the same time, this is the one for you. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20500# +White wings of a holy Archangel. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20502# +A replica of wings of underworld demon. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box10. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20504# +A replica wings of naughty cupid. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box8. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20506# +If you touch it with your hand, it feels like a cloak.. but you can't see it with your eyes. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20507# +A bag made based shape of Poring. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box10. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20508# +A costume that resemble the poster girl that shows various sign. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +20509# +A replica wings of Angel of Destruction, Uriel. The Uriel name has a meaning of \ +. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20510# +Curved swords that made into costume. Be careful with its sharp blades. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20511# +A blue wings of fairy that looks alike butterfly wings. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box12. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20512# +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20514# +A sword that once used by a powerful knight. Some of his powers were sealed in it. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20515# +A magic circle that appears below your feet. Just by wearing this costume will give you feels of being a great wizard. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20516# +The wings of Michael, also known as the 'Angel of Judgement', one of four angels that serves god directly. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20517# +A backpack with a cute cat on it's back. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 15. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20519# +Inner peace fills you as soft blossom petals float all around. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 19. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20520# +Popular rental costumes selected by Kafra staff. +-------------------------- +The graphic is reflected on the character. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20522# +Soul costumes gathered to celebrate the drums that have reached their extreme heights. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20524# +Shines from behind when worn. Angel wings from the divine. +-------------------------- +Since it is an equipped effect, it still will be displayed even when the effect (/effect) is turned off. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20525# +The wings of angels glowing in crimson. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20526# +Shining Blue Angel Wings. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20528# +Golden Costume Wings that look like the wings of a butterfly. +It is said to be modeled after the fairy's wings. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20530# +The wing of Gabriel, also known as the \ + among the four angels. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20532# +Waves for costumes that are said to be worn when mighty monsters exert their true power. +-------------------------- +This item is equipped with special effects: +- When the effect (/effect) is switched, the display does not change immediately, so it is necessary to re-equip the item after entering the command. +- When using a disappearing skill such as \ +, the effect will not be visible to other players. +- Even when equipped with an adopted character, the same effect as a normal character will be displayed. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20533# +Pink Costume Wings that look like the wings of a butterfly. +It is said to be modeled after the fairy's wings. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 16. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20534# +A stuffed animal for a huge costume. +Healed by the weak atmosphere that drifts from the entire white cat. +-------------------------- +The graphic is reflected on the character. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20535# +A digital space for your own outfit. +Let's take a step into the cyber world. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20538# +A rainbow-colored magic circle that appears dimly around the feet. +I feel like a great wizard. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20541# +Wear a costume made of angel feathers. +It is made with a design like a bow tie. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20543# +A Viking Pumpkin Poring-shaped bag developed as Halloween decoration. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 16. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20546# +Ribbon ornament attached to the back with a large bell. +Designer Heidammal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 17. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20547# +Costume equipment with whisper that appeared out of nowhere. +It looks creepy, but for the whispers it seems to be a blessing to the wearer. +-------------------------- +Since it is an equipped effect, it still will be displayed even when the effect (/effect) is turned off. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20548# +Aura for costumes with foaming bubbles. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20570# +Bag tied to the Valentine's Day. +The poring is decorated on a chocolate heart with a ribbon. +Designer Heidammal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 18. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20571# +Costume wings reminiscent of a beautiful Valkyrie. +The feathers continue to flutter as if they are being blessed, but the feathers on the wings never disappear. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20572# +Decorative wings made to commemorate the day of love. +A cute heart is decorated in the center of the wing. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20574# +A small, cute red backpack. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20575# +A cute little black backpack. +Exp +2% +Drop +2% +Expiration date 23-04-2024 +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20576# +A cute costume fork found in Lasagne. +The carrot-shaped strap is excellent enough to be mistaken for emergency food. +Designer Heidammal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 19. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20577# +Balloon wings made in commemoration of Children's Day. +To the world of concentricity, spread wings and jump! +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20578# +Among the seven archangels, Raguel's wings, also known as the 'Archangel of Reconciliation'. +Known as the sixth angel with a trumpet. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20579# +Wings of Raphael, also known as the \ + among the four great angels. +He was also considered as an angel of love. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20582# +A costume bag with a motif of a bear doll carrying a furoshiki on its back. +There is a zipper on the belly so that you can store things in them. +Designer Heidammal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 20. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20584# +A costume foxtail which are larger than Dorams. +Because of the playful form, it is said that people who can't stop playing with one another continue. +Designer Heidammal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 20. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20586# +Wearing it gives a fairy tale like feeling. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20588# +A broom costume that seems to have a longing for anyone who walks the path of the wizard. +Coordinating with a magical fashion along with the ministries, you can feel like a wizard. +Designer Heidammal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 20. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20589# +A garment wing with a mechanical device structure that does not move due to failure. +It seems that both wings were originally equipped. +Designer Heidammal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 20. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20590# +A cross costume modeled after the cross carried by Evil Druids. +You can feel the feeling of becoming a dark priest. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20591# +Wear a bow on your back. +Anyone can feel like an archer +-------------------------- +Collection Effect +HIT +3 +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20592# +A pocket worn on the back, reminiscent of a gift bag carried by Santa. +As if waiting for Christmas, the Rudolph doll is reaching out. +Designer Heidammal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 21. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20593# +Costume wings that show the inner beauty of the ice crystals. +-------------------------- +effect Bonus +All stat +5, Exp/Drop rate +5% +-------------------------- +(19/12/2025 – 15/1/2026 Before MA.) +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20594# +A costume cloak with a long length and a bright red ribbon. +The length of the length is too long for Doram to wear, and it is dragged to the floor. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20595# +It is made in striking red color. +It seems to contain the feelings of the parents who are worried that it will be dangerous on the road when going to school. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20597# +A costume scythe modeled after Evil's weapon. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20598# +A pretty cute backpack with a black cat on his back. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 21. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20599# +Costume cherry wings made in commemoration of spring. +It is gorgeously decorated with pink petals. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 21. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20602# +Beautiful wings to support the Seraphim. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20603# +Wearing a costume made after the appearance of a beautiful big purple swallow butterfly. +Because the color of the front and back of the wings is different, it gives a different feeling depending on the viewing angle. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 22. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20604# +A veil for a wedding ceremony. +The blessed veil is said to protect the wearer from demons. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 22. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20605# +Stem the tide of the rain. This costume will leaf you bone dry during most storms +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20607# +Wings modeled after the figure of Baldr, the noble god of beautiful light. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20613# +A decoration made by imitating the shape of a spider. +The spider's legs look like wings. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20615# +A little cute blue backpack. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20616# +A cute little purple backpack. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20700# +A mantle from Aegir, god of Ocean. It protects owner with blessing of the Sea. +-------------------------- +When equipped by Mage, Archer or Acolyte classes: +Perfect Dodge +5 + +For each 2 Refine Levels: +Perfect Dodge +1 +-------------------------- +When equipped by Swordman, Merchant or Thief classes: +Reflects damage taken back to attacker by 5%. + +For each 2 Refine Levels: +Reflects damage taken back to attacker by 1%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Garment +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 110 +# +20701# +A manteau with Earth element attribute. +-------------------------- +Decreases damage taken from Earth elemental by 5%. +Increases damage taken from monsters of Fish race by 5%. +-------------------------- +When equipped with Sol Shield: +For each Refine Level of Sol Manteau: +Decreases damage taken from Fish race monsters by 1%. + +For each Refine Level of Sol Shield: +Increases Physical Damage against enemies of Earth elemental by 1%. +-------------------------- +When VIP status active: +FLEE +20 +-------------------------- +Type: Garment +Defense: 20 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +20702# +Rental Item +MDEF +5 +-------------------------- +*Effects in WoE TE area +Increases Damage against Players by 5%. +Increases Frozen resistance by 25%. +-------------------------- +Type: Garment +Defense: 5 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +# +20703# +Rental Item +*Effects in WoE TE area +Increases Physical Damage against Players by 10%. +Increases Frozen resistance by 25%. +-------------------------- +Type: Garment +Defense: 10 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Swordsman and Merchant +# +20704# +Rental Item +MDEF +5 +-------------------------- +*Effects in WoE TE area +Increases Magical Damage against Players by 10%. +Increases Frozen resistance by 25%. +-------------------------- +Type: Garment +Defense: 5 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Novice, Magician, Acolyte and Soul Linker +# +20705# +Holy spiritual magical manteau. +-------------------------- +Decreases damage taken from Holy elemental monsters by 5%. +Increases damage taken from monsters of Dragon race by 5%. +-------------------------- +When equipped with Lumiere Shield: +For each Refine Level of Lumiere Manteau: +Decreases damage taken from Dragon race by 1%. + +For each Refine Level of Lumiere Shield: +Increases damage against Holy elemental by 1%. +-------------------------- +When VIP status active: +FLEE +20 +-------------------------- +Type: Garment +Defense: 20 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +20706# +The backpack is made according to the shape famous AI \ +. +-------------------------- +All Stats +1 +-------------------------- +Resistance to all elemental attacks +5%. +-------------------------- +Type: Garment +Defense: 18 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +20707# +Wings made from a legendary mythical beast of an east Asian culture. +-------------------------- +All Stats +1 +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Type: Garment +Defense: 18 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +20708# +A mysterious manteau imbued with a strong poison. +-------------------------- +Decreases damage taken from Poison elemental by 5%. +Decreases damage taken from Plant race by 5%. +-------------------------- +When equipped with Poison Shield: +For each Refine Level of Poison Manteau: +Decreases damage taken from Plant race by 1%. + +For each Refine Level of Poison Shield: +Increases Physical Damage against enemies of on Poison elemental by 1% +-------------------------- +When equipped with Poison Shoes: +Increases Physical Damage against enemies of Poison elemental by 5%. + +For each Refine Level of Poison Manteau: +MaxHP +1% and MaxSP +1%. +-------------------------- +When VIP status active: +FLEE +20 +-------------------------- +Type: Garment +Defense: 20 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +20709# +Rental Item +Specially made to help the member of guild to grow, this formal suit generates special waves. +-------------------------- +Increases experience gained by 10%. +-------------------------- +Type: Garment +Defense: 0 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Maximum Base Level 100 +# +20710# +A cardigan for Super Novice guardian angel. Keeps you warm in any weather condition. +-------------------------- +Increases HP Recovery Rate by 50%. +-------------------------- +When equipped with Modified Angelic Protection: +AGI +5, FLEE +10. +-------------------------- +Type: Garment +Defense: 6 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Novice +# +20711# +An elegant manteau with tiger tooth sword printed on it. +-------------------------- +INT +1, DEX +1 +MDEF +3 +-------------------------- +Decreases damage taken from Medium size by 5%. +-------------------------- +Type: Garment +Defense: 15 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: None +# +20712# +Said will transform the wearer into a swan. +-------------------------- +When equipped by Mage, Archer and Acolyte: +Perfect Dodge +5 + +For each Refine Level: +Perfect Dodge +2 +-------------------------- +When equipped by Merchant, Swordman and Thief: +Reflect 5% of melee physical attacks. + +For each Refine Level: +Additional 2% damage reflected +-------------------------- +Type: Garment +Defense: 10 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +20713# +A manteau worn by Demon of water. +-------------------------- +MDEF +2 +MaxHP +5% +MATK +1% +-------------------------- +Increases Physical Damage against enemies of Water elemental by 2%. +-------------------------- +Type: Garment +Defense: 16 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Transcendent classes +# +20714# +A muffler worn by eastern group of assassin. +-------------------------- +For each Refine Level equal or above +6: +AGI +2 +-------------------------- +Type: Garment +Defense: 16 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +20715# +A manteau worn by Demon of Earth. +-------------------------- +MaxHP +5% +MATK +1% +MDEF +2 +-------------------------- +Increases Physical Damage against enemies of Earth elemental by 2%. +-------------------------- +Type: Garment +Defense: 16 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Transcendent classes +# +20716# +A mysterious cloak with the power of mind. +Decreases attacks from specific monsters. +-------------------------- +Decreases damage taken from Ghost elemental by 5%. +-------------------------- +Increases damage taken from monsters of Angel race by 5%. +-------------------------- +When equipped with Esprit Shield: +For each Refine Level of Esprit Manteau: +Decreases damage taken from Angel race by 1%. + +For each Refine Level of Esprit Shield: +Increases Physical Damage against enemies of Ghost elemental by additional 1%. +-------------------------- +When equipped with Esprit Shoes: +Increases Physical Damage against enemies of Ghost elemental by additional 5%. + +For each Refine Level of Esprit Manteau: +MaxHP +1%, MaxSP +1% +-------------------------- +Type: Garment +Defense: 20 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +20717# +A head scales of Wormface which defeated in distorted dimension. This demon once called as Jormungand's reincarnate. +-------------------------- +MDEF +10 +-------------------------- +When equipped with any type of Temporal Boots: +MaxHP +15% +MaxSP +5% +-------------------------- +Type: Garment +Defense: 38 +Weight: 40 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 95 +# +20718# +A head scales of Wormface which defeated in distorted dimension. This demon once called as Jormungand's reincarnate. +-------------------------- +MDEF +10 +-------------------------- +When equipped with any type of Temporal Boots: +MaxHP +15% +MaxSP +5% +-------------------------- +Type: Garment +Defense: 38 +Weight: 40 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 95 +# +20719# +A battle shawl symbol of supremacy. +-------------------------- +All Stats +1 +MaxHP +3% +-------------------------- +Random chance to reflect magical attack when receiving magical attack. +-------------------------- +For each 2 Refine Levels: +Decreases damage taken from all elemental attacks by 1%. +-------------------------- +Type: Garment +Defense: 25 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +3rd classes +# +20720# +A cloak wore by wind demon. +-------------------------- +MDEF +2 +MaxHP +5% +MATK +1% +-------------------------- +Increases Physical Damage against enemies of Wind elemental by 2%. +-------------------------- +Type: Garment +Defense: 16 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Transcendent classes +# +20721# +Sculpted out of Gray Shard and infused with Sakray's old, abandoned memories, this manteau protects its wearer against holiness and fear. +-------------------------- +Decreases damage taken from Holy elemental attacks by 5%. +-------------------------- +For each 2 Refine Levels: +Decreases damage taken from Holy elemental attacks by 1%. +-------------------------- +Gray set 1 +Gray Armor +Gray Helmet +Gray Boots +Decreases damage taken from Neutral elemental attacks by 15%. +Random chance to auto-cast Level 3 Drain Life when attacked by melee physical attacks. +-------------------------- +Gray set 2 +Gray Robe +Gray Helmet +Gray Boots +MaxHP +25% +MaxSP +25% +MATK +10% +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +Type: Garment +Defense: 45 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +3rd Classes +# +20722# +A shawl with a pattern and aroma of tree. +-------------------------- +ATK +5 +MATK +5 +-------------------------- +For each Refine Level: +ATK +2 +MATK +2 +-------------------------- +Refine Level +12: +ASPD +1 +-------------------------- +Type: Garment +Defense: 6 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +20723# +A cloak that received the blessing of hunter god. +-------------------------- +HIT +1 +-------------------------- +For each Refine Level equal or above +6: +HIT +1 +-------------------------- +Type: Garment +Defense: 7 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +20724# +Beautiful golden wings Shining brightly To celebrate the event of Father's Day +-------------------------- +Base STR at least 90: +All Stats +1 +MaxHP +1% +MaxSP +1% + +For each Refine Level: +STR +1 +-------------------------- +Base INT at least 90: +All Stats +1 +MaxHP +1% +MaxSP +1% + +For each Refine Level: +INT +1 +-------------------------- +Base VIT at least 90: +All Stats +1 +MaxHP +1% +MaxSP +1% + +For each Refine Level: +VIT +1 +-------------------------- +Base AGI at least 90: +All Stats +1 +MaxHP +1% +MaxSP +1% + +For each Refine Level: +AGI +1 +-------------------------- +Base DEX at least 90: +All Stats +1 +MaxHP +1% +MaxSP +1% + +For each Refine Level: +DEX +1 +-------------------------- +Base LUK at least 90: +All Stats +1 +MaxHP +1% +MaxSP +1% + +For each Refine Level: +LUK +1 +-------------------------- +Type: Garment +Defense: 15 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +20725# +A huge ribbon worn by Piamette. Blessed with strong magical power. +-------------------------- +INT +1 +DEX +1 +MATK +10 +-------------------------- +When equipped with Mad Bunny: +When magically attacking, a certain chance to transform into Piamette for 10 seconds. +While transformed, drains 30 HP each second but adds MATK +5 for every 3 Refine upgrade. +Chance to transform increases as Refine goes higher. +-------------------------- +Type: Garment +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +20726# +A cloak made from Fire dragon scales. +-------------------------- +MaxHP +5% +-------------------------- +Increases Magical Damage with Fire element by 2%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Fire element by 3%. +Decreases Magical Damage with Water element by 10%. +-------------------------- +Type: Garment +Defense: 0 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +20727# +Radiant golden wings. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20728# +A cloak made from Water dragon scales. +-------------------------- +MaxHP +5% +-------------------------- +Increases Magical Damage with Water element by 2%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Water element by 3%. +Decreases Magical Damage with Fire element by 10%. +-------------------------- +Type: Garment +Defense: 0 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +20729# +A cloak made from Wind dragon scales. +-------------------------- +MaxHP +5% +-------------------------- +Increases Magical Damage with Wind element by 2%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Wind element by 3%. +Decreases Magical Damage with Earth element by 10%. +-------------------------- +Type: Garment +Defense: 0 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +20730# +A loyal servant of the gods sacrificed himself while wearing this hood. +-------------------------- +STR +2 +MaxHP +10% +-------------------------- +Prevents knock-back effect. +Increases damage taken from all elemental attacks by 20%. +-------------------------- +Type: Garment +Defense: 20 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20731# +A cloak made from Earth dragon scales. +-------------------------- +MaxHP +5% +-------------------------- +Increases Magical Damage with Earth element by 2%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Earth element by 3%. +Decreases Magical Damage with Wind element by 10%. +-------------------------- +Type: Garment +Defense: 0 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +20732# +This mechanical device heals wounds and rejuvenates your body. +-------------------------- +MaxHP +6% +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +Refine Level +9: +Increases HP Recovery Rate by 50%. +-------------------------- +When equipped with Supplement Part STR: +Increases damage of Axe Tornado by 25%. +-------------------------- +Type: Garment +Defense: 20 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +20733# +Designed to maximize the outputs of Mado Gears, this part is easy to assemble and disassemble. +-------------------------- +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +7: +Increases resistance against Neutral elemental attacks by 10%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Type: Garment +Defense: 25 +Weight: 150 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +20734# +A manteau imbued with wind spirit power. Its protected by wind all the time. +-------------------------- +Increase 10% resistance against Wind property attacks. +Decrease 10% resistance from Earth property attacks. +-------------------------- +Increase 5% resistance against long distance attacks. +-------------------------- +Increase 1% resistance against long distance attacks per each refine Lv. +-------------------------- +Indestructible +-------------------------- +Type: Garment +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 71 +Job : All +# +20735# +A manteau imbued with fire spirit powers. +Its protected by flame all the time. +-------------------------- +Decrease 10% damage from Fire property attacks. +Increase 10% damage from Water property attacks. +-------------------------- +Reflect 10% of physical damage to be received. +Damage can be increased as twice as that of refine Lv. +-------------------------- +Indestructible. +-------------------------- +Type: Garment +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Job : All +# +20736# +A luxury diamon shaped manteau. +-------------------------- +Damage taken from Neutral elemental attacks -25% +Damage taken from all elementals attack except Neutral +10% +-------------------------- +For each Refine Level equal or above +6: +Decreases damage taken from Neutral elemental attacks by 1%. +-------------------------- +Type: Garment +Defense: 30 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +20737# +A costume made based on appearance of legendary ancient beast. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20738# +A ninja garment with the power of fire. +-------------------------- +Physical attacks have certain chance to auto-cast Level 1 Flaming Petals, +when the user has learned a higher Level of Flaming Petals, then the learned Level will be casted instead. +-------------------------- +When equipped with Flame Moon Huuma Shuriken: +MATK +50 + +Refine Level of Burning Tunic is +5: +Increases the chance to auto-cast Flaming Petals. + +Refine Level of Burning Tunic is +7: +Increases the chance to auto-cast Flaming Petals further. + +Refine Level of Burning Tunic is +10: +Increases the chance to auto-cast Flaming Petals even further. +-------------------------- +Type: Garment +Defense: 10 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +Ninja +# +20739# +A ninja garment with the power of the wind. +-------------------------- +Physical attacks have certain chance to auto-cast Wind Blade lv.1, +when the user has learned a higher Level of Wind Blade, then the learned Level will be casted instead. +-------------------------- +When equipped with Thunder Moon Huuma Shuriken: +MATK +50 + +Refine Level of Gale Tunic is +5: +Increases the chance to auto-cast Wind Blade. + +Refine Level of Gale Tunic is +7: +Increases the chance to auto-cast Wind Blade further. + +Refine Level of Gale Tunic is +10: +Increases the chance to auto-cast Wind Blade even further. +-------------------------- +Type: Garment +Defense: 10 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +Ninja +# +20740# +A ninja garment with the power of the ice. +-------------------------- +Physical attacks have certain chance to auto-cast Freezing Spear lv.1, +when the user has learned a higher Level of Freezing Spear, then the learned Level will be casted instead. +-------------------------- +When equipped with Ice Moon Huuma Shuriken: +MATK +50 + +Refine Level of Chilly Tunic is +5: +Increases the chance to auto-cast Freezing Spear. + +Refine Level of Chilly Tunic is +7: +Increases the chance to auto-cast Freezing Spear further. + +Refine Level of Chilly Tunic is +10: +Increases the chance to auto-cast Freezing Spear even further. +-------------------------- +Type: Garment +Defense: 10 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +Ninja +# +20741# +A modded mechanical doll amplifier. Because of the forced modification, it will gives burden to wearer. +-------------------------- +STR +1 +INT +1 +MaxHP +5% +MaxSP +5% +-------------------------- +For each Refine Level equal or above +6: +MaxHP +1% +MaxSP +1% +-------------------------- +When equipped with Aliot Card: +Doubles the effect of Aliot Card. +-------------------------- +Type: Garment +Defense: 25 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +20742# +An accelerator made for machine dolls, modified for human use. +Because it was remodeled forcibly, it puts a burden on the user. +-------------------------- +MaxHP -5% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +For each Refine Level equal or above +6: +MaxHP -1% +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +When equipped with Alicel Card: +MaxHP +5% +Increases Attack Speed (Decreases After Attack Delay by 2%) +-------------------------- +Type: Armor +Defense: 10 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +20743# +A cloak wore by travelers whose went aboard the airship. +These are goods that were stolen by monsters during airship raid. +-------------------------- +FLEE +20 +-------------------------- +Decreases Variable Casting Time by 20%. +-------------------------- +Decreases damage taken from Neutral elemental attacks by 10%. +-------------------------- +Type: Garment +Defense: 25 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +# +20744# +Manteau of Ferlock, captain of the airship. Acquired during the event of airship raid. +-------------------------- +FLEE +20 +-------------------------- +Decreases Variable Casting Time by 10%. +Decreases damage taken from Neutral elemental attacks by 10%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +12: +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Garment +Defense: 12 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +# +20745# +A manteau imbued with water spirit. Its protected by water all the time. +-------------------------- +Decrease 10% damage against Water elemental attacks by 10%. +Increase 10% damage from Wind property attacks. +When being physically attacked by a short distance attacks, it can activate Frozen by a certain chance. +-------------------------- +With more than 6 Refine Lv +Frozen chance will be increased per each refine Lv. +-------------------------- +With more than 10 Refine Lv +additional Frozen chance will be increased. +-------------------------- +Indestructible in battle +-------------------------- +Type: Garment +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 71 +Job : All +# +20746# +These angelic wings burn with holy energy. +-------------------------- +When equipped with Costume Rudra's Majestic Goat +Expiration date 31-03-2024 +All Stats +2 +SP Consumption reduced by 5% +Reduced Variable Cast Time by 5% +ASPD +5% +MATK +5 +ATK +5 +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20747# +A manteau imbued with Earth spirit, Its protected by stone all the time. +-------------------------- +Decrease damage taken from Earth property by 10%. +Increase damage taken from Fire property by 10%. +-------------------------- +Has a chance to apply Stone Curse to all enemies in 5x5 cells upon receiving melee or ranged physical damage. +-------------------------- +If refinement level is above + 5: +increase chance of Stone Curse for every refinement. +-------------------------- +Undestroyable. +-------------------------- +Type: Garment +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +20748# +Manteau of legendary hero whose died in battle. +-------------------------- +Base STR at least 90: +ATK +10 +-------------------------- +For each Refine Level: +ATK +2 +-------------------------- +Base INT at least 90: +MATK +20 +-------------------------- +For each Refine Level: +MATK +3 +-------------------------- +Base VIT at least 90: +Decreases damage taken from Neutral elemental attacks by 3%. +-------------------------- +Refine Level +8: +Decreases damage taken from Neutral elemental attacks by 3%. +-------------------------- +Refine Level +10: +Decreases damage taken from Neutral elemental attacks by 4%. +-------------------------- +Base AGI at least 90: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +For each 2 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Refine Level +10: +ASPD +1 +-------------------------- +Base DEX at least 90: +Increases Ranged Physical Damage by 3%. +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 1%. +-------------------------- +Base LUK at least 90: +Increases Critical Damage by 5%. +-------------------------- +For each Refine Level: +Increases Critical Damage by 1%. +-------------------------- +Type: Garment +Defense: 20 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +# +20749# +Manteau of legendary hero whose died in battle. +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +MaxSP +1% +-------------------------- +Base STR at least 90: +ATK +10 +-------------------------- +For each Refine Level: +ATK +2 +-------------------------- +Base INT at least 90: +MATK +20 +-------------------------- +For each Refine Level: +MATK +3 +-------------------------- +Base VIT at least 90: +Decreases damage taken from Neutral elemental attacks by 3%. +-------------------------- +Refine Level +8: +Decreases damage taken from Neutral elemental attacks by 3%. +-------------------------- +Refine Level +10: +Decreases damage taken from Neutral elemental attacks by 4%. +-------------------------- +Base AGI at least 90: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +For each 2 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Refine Level +10: +ASPD +1 +-------------------------- +Base DEX at least 90: +Increases Ranged Physical Damage by 3%. +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 1%. +-------------------------- +Base LUK at least 90: +Increases Critical Damage by 5%. +-------------------------- +For each Refine Level: +Increases Critical Damage by 1%. +-------------------------- +Type: Garment +Defense: 30 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +20750# +A manteau with attribute resistances. +-------------------------- +Decreases damage taken from Wind elemental by 5%. +Increases damage taken from monsters of Insect race by 5%. +-------------------------- +When equipped with Levian Shield: +For each Refine Level of Levian Shield: +Decreases damage taken from Insect race by 1%. + +For each Refine Level of Levian Manteau: +Increases damage against Wind elemental by 1%. +-------------------------- +When VIP status active: +FLEE +20 +-------------------------- +Type: Garment +Defense: 20 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +20751# +A wing wearing a jet black aura that symbolizes the power of a fallen angel. +-------------------------- +Graphics are reflected in the character. +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20752# +Shiny Golden Wings. A symbol of the Elite. +-------------------------- +Base STR at least 90: +All Stats +1 +-------------------------- +For each Refine Level: +MaxHP +1% +MaxSP +1% +STR +1 +-------------------------- +Base AGI at least 90: +All Stats +1 +-------------------------- +For each Refine Level: +MaxHP +1% +MaxSP +1% +AGI +1 +-------------------------- +Base VIT at least 90: +All Stats +1 +-------------------------- +For each Refine Level: +MaxHP +1% +MaxSP +1% +VIT +1 +-------------------------- +Base INT at least 90: +All Stats +1 +-------------------------- +For each Refine Level: +MaxHP +1% +MaxSP +1% +INT +1 +-------------------------- +Base DEX at least 90: +All Stats +1 +-------------------------- +For each Refine Level: +MaxHP +1% +MaxSP +1% +DEX +1 +-------------------------- +Base LUK at least 90: +All Stats +1 +-------------------------- +For each Refine Level: +MaxHP +1% +MaxSP +1% +LUK +1 +-------------------------- +Increases experience gained from defeating monsters by 10%. +-------------------------- +Increases item drop rate by 10%. +-------------------------- +Type: Garment +Defense: 15 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +20753# +A garment with mystical powers. +-------------------------- +Decreases damage taken from Neutral elemental by 5%. +Increases damage taken from monsters of Formless race by 5%. +-------------------------- +When equipped with Lian Shield: +For each Refine Level of Lian Manteau: +Decreases damage taken from Formless race by 1%. + +For each Refine Level of Lian Shield: +Increases Physical Damage against enemies of Neutral elemental by 1%. +-------------------------- +When equipped with Lian Shoes: +Increases Physical Damage against enemies of Neutral elemental by 5%. + +For each Refine Level of Lian Manteau: +MaxHP +1% +MaxSP +1% +-------------------------- +When VIP status active: +FLEE +20 +-------------------------- +Type: Garment +Defense: 20 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +20754# +A sash provided by the Prontera Army. +If you wear this, you will have an indomitable spirit. +-------------------------- +Refine Level +6: +Decreases damage taken from Players enemies by 2%. +-------------------------- +Refine Level +8: +Decreases damage taken from Players enemies by additional 3%. +-------------------------- +When equipped with Prontera Military Uniform and Prontera Military Boots: +MaxHP +30% +Decreases damage taken from Players enemies by additional 2%. +Decreases damage taken from all elemental attacks by 5%. +Decreases damage taken from long range physical attacks by 10%. +-------------------------- +Can only be sold to NPC's and moved to storage.000000 +-------------------------- +Type: Garment +Defense: 13 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20755# +A sash for exclusive use of corps leaders provided by the Prontera army. +If you wear this, you will have an indomitable spirit. +-------------------------- +Refine Level +6: +Decreases damage taken from Players enemies by 2%. +-------------------------- +Refine Level +8: +Decreases damage taken from Players enemies by additional 3%. +-------------------------- +When equipped with Prontera Military Commander's Uniform and Prontera Military Commander's Boots: +MaxHP +30% +Decreases damage taken from Players enemies by additional 2%. +Decreases damage taken from all elemental attacks by 5%. +Decreases damage taken from long range physical attacks by 10%. +-------------------------- +Can only be sold to NPC's and moved to storage.000000 +-------------------------- +Type: Garment +Defense: 13 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20756# +Manteau of sea god. It is said to protect wearer with sacred power of the Sea. +-------------------------- +Indestructible in battle +-------------------------- +MaxHP +500 +MaxSP +50 +-------------------------- +When equipped with Aegir Helm: +Recovers 10 SP every time defeating Fish monster with physical melee attacks. +Random chance a defeated Fish monster will drop Sushi or Raw Fish. +Increases Sushi and Raw Fish's HP recovery by 5%. + +For each Refine Level of Aegir Helm: +Increases HP recovery by 5% and drop rate. +-------------------------- +Type: Garment +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +20757# +Colorful wings sent from the heavens. +-------------------------- +All Stats +3 +-------------------------- +Enables the use of Level 3 Increase AGI. +-------------------------- +Type: Garment +Defense: 10 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +20758# +Colorful wings sent from the heavens. +-------------------------- +All Stats +3 +-------------------------- +Enables the use of Level 3 Increase AGI. +-------------------------- +Type: Garment +Defense: 10 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +20759# +Diving cylinder filled with fresh air. +A high-end model for adventurers with various built-in functions that can be used in any situation regardless of the land. +-------------------------- +For each Refine Level: +ATK +5 +-------------------------- +When equipped with Wanderer Card: +Decreases SP Consumption by 5% +-------------------------- +When equipped with ragon Tail Card: +Decreases After Attack Delay depending on Base Level. +-------------------------- +When equipped with ^99099Harpy Card: +Increases damage of Fire Wall depending on Base Level. +-------------------------- +Type: Garment +Defense: 0 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +20760# +A shawl marked with ancient conjuration patterns that is one of the three keys for releasing the seal that binds Morpheus. +-------------------------- +MaxSP +10% +MDEF +3 +-------------------------- +When equipped with Morpheus's Bandana, Morpheus's Ring and Morpheus's Bracelet: +INT +5 +MDEF +11 +MaxSP +20% +Protects from skill cast interruption. +Increases Variable Casting Time of all skills by 25%. +-------------------------- +Type: Garment +Defense: 8 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 33 +All Jobs except Novice +# +20761# +A wing for happy mood. +-------------------------- +> Limited Effect < +Exp + 3% Drop + 3% +Enables use of Level 5 Double Attack. +Expiration date 25-12-2023 +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20762# +Costume replica of famous winged demon of underworld. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20763# +Bag that looks like the Homunculus Amistr. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20764# +Large, black wings of a fallen dark angel. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20765# +White wings of a holy Archangel. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box12. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20766# +The cloak worn by the devil who controls hypocrisy. +-------------------------- +MaxHP +5% +MDEF +2 +-------------------------- +MATK +1%. +Increases Physical Damage against enemies of Holy elemental by 2%. +-------------------------- +Type: Garment +Defense: 16 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Transcendent classes +# +20767# +A must-have backpack for adventurers. +Poring and tail accessories are charm points. +-------------------------- +Enables the use of Level 1 Return to Prontera. +-------------------------- +[Novice, High Novice, 1st classes, 2nd classes, Rebirth 1st classes, Expanded 1st classes]: +Enables the use of Level 1 Increase Agility. +-------------------------- +Graphics are reflected in the character.000000 +-------------------------- +Type: Garment +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +20768# +Large wings of Archangel. +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20769# +A manteau wore by Demon king. It has the power that able to control the darkness. +-------------------------- +MaxHP +5% +MDEF +2 +MATK +1% +-------------------------- +Increases Physical Damage against monsters of Demon race by 2%. +-------------------------- +Type: Garment +Defense: 16 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Trancendent classes +# +20770# +A cloak made by a cook who cooks wild boar, which returns to its original shape in the evening no matter how much meat is cut and eaten. +-------------------------- +ASDP +1 +-------------------------- +Refine Level +5: +For each 10 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Refine Level +5: +For each 10 base AGI: +Increases Attack Speed (Decreases After Attack Delay by additional 1%). +-------------------------- +When compounded with Cenere Card: +Does not activate the effect of Cenere Card. +-------------------------- +Type: Garment +Defense: 40 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20771# +A cloak of immortal demon king. +-------------------------- +MDEF +2 +MaxHP +5% +MATK +1% +-------------------------- +Physical damage inflicted against Undead elemental monster +2% +-------------------------- +Type: Garment +Defense: 16 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Transcendent classes +# +20772# +A cloak that filled with the devil's hatred. +-------------------------- +MaxHP +5% +MATK +1% +MDEF +2 +-------------------------- +Physical damage inflicted against Shadow elemental monster +2% +-------------------------- +Type: Garment +Defense: 16 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Transcendent classes +# +20773# +A wing which made from the lost technology in Research Building Ruins. +-------------------------- +Perfect Dodge +8 +-------------------------- +Base Level at least 130: +Perfect Dodge +2 +-------------------------- +For each Refine Level: +FLEE +2 +-------------------------- +When equipped with Excellion Suit: +Decreases After Skill Delay by 10%. +Perfect Dodge +6. + +Base Level at least 130: +Decreases After Skill Delay by 10%. +-------------------------- +Type: Garment +Defense: 40 +Weight: 90 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 99 +# +20774# +A cloak of Demon King +-------------------------- +MDEF +2 +MaxHP +5% +MATK +1% +-------------------------- +Increases Physical Damage against enemies of Neutral elemental by 2%. +-------------------------- +Type: Garment +Defense: 16 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Transcendent classes +# +20775# +A noble wings of Seraph +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20776# +A tank that can amplify the amount of muscle strength that can be operated and raise the operating technology of the robot to the utmost limit. +-------------------------- +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Decreases SP Consumption of Arms Cannon by 10. +-------------------------- +When equipped with Powered Arm, Powered Boots and Powered Mail: +Increases damage of Arms Cannon, Cold Slower and Flame Launcher by 50%. +Random chance to decrease After Skill Delay by 30% for 7 seconds when receiving physical damage. + +Refine Level of Powered Mail, Powered Tank and Powered Boots is +7 or higher: +Increases damage of Arms Cannon, Cold Slower and Flame Launcher by additional 50%. +Nullifies Mado Gear Fuel Consumption when using skills. +-------------------------- +Type: Garment +Defense: 20 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +20777# +Shoulder parts made to strengthen the defense ability and maximize the performance as a guardian unit. +-------------------------- +MaxHP +2% +-------------------------- +Decreases SP Consumption of Infrared Scran by 50. +Decreases Infrared Scran skill cooldown by 1 second. +-------------------------- +When equipped with Guardian Unit, Guardian Boots and Guardian Barrel: +Decreases Variable Casting Time of Vulcan Arm and Boost Knuckle by 100%. +Prevents Frozen status. + +Refine Level of Guardian Unit, Guardian Engine and Guardian Boots is +7 or higher: +Decreases damage taken from Holy elemental attacks by 10%. +Increases damage of Vulcan Arm and Boost Knuckle by additional 50%. +When Pile Bunker is used: +Auto-casts Level 5 Dispell on the enemy. +Increases Pile Punker skill cooldown by 3 seconds. +-------------------------- +When equipped with Guardian Processor: +Decreases damage taken fron Demi-Human race by 3%. + +Refine Level of Guardian Engine is +7 or higher: +Decreases damage taken from Holy and Shadow elemental attacks by 15%. +Decreases damage taken fron Demi-Human race by additional 1%. + +Refine Level of Guardian Engine is +10 or higher: +Decreases damage taken from Holy and Shadow elemental attacks by additional 15%. +Decreases damage taken fron Demi-Human race by additional 1%. +-------------------------- +Type: Garment +Defense: 25 +Weight: 150 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +20778# +An evolved stole designed by Magician guild. +-------------------------- +MDEF +3 +MaxSP +10% +-------------------------- +Decreases SP Consumption by 1%. +-------------------------- +For each 3 Refine Levels: +Decreases SP Consumption by 2%. +-------------------------- +Refine Level +10: +Restores 20 SP when defeating enemies. + +When equipped with Grudge of Royal Knight Card: +The SP cost reduction and absorption will not activated. +-------------------------- +Type: Garment +Defense: 8 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: None +# +20779# +A cloak obtained from infinite space that emanating strange aura. +-------------------------- +MaxHP +300 +MaxSP -50 +-------------------------- +Refine Level +7: +MaxHP +400 +-------------------------- +Refine Level +9: +MaxHP +600 +-------------------------- +Type: Garment +Defense: 16 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20780# +A certified kingdom equipment for adventurer. +-------------------------- +Base Level is below 100: +Increases experience gained from defeating monsters by 4%. +-------------------------- +For each 2 Refine Levels: +MaxHP +2% +-------------------------- +Type: Garment +Defense: 20 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +20781# +A certified kingdom equipment for adventurer. +-------------------------- +Base Level is below 100: +Increases experience gained from defeating monsters by 4%. +-------------------------- +For each 2 Refine Levels: +FLEE +3 +-------------------------- +Type: Garment +Defense: 20 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +20782# +A certified kingdom equipment for adventurer. +-------------------------- +Base Level is below 100: +Increases experience gained from defeating monsters by 4%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption by 1%. +-------------------------- +Type: Garment +Defense: 20 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +20783# +A manteau wore by a kid whose dream is to become a hero. Despite its look, the robe has outstanding protection abilities. +-------------------------- +FLEE +1 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 1%. +-------------------------- +Refine Level +3: +FLEE +3 +Decreases damage taken from Neutral elemental attacks by 3%. +-------------------------- +Refine Level +10: +FLEE +20 +Decreases damage taken from Neutral elemental attacks by 20%. +-------------------------- +When equipped with Devilring Card: +Increases damage taken from Neutral elemental attacks by 50%. +-------------------------- +Type: Garment +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +20784# +Bag that resemble the Homunculus Amistr. +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20785# +A large wings of Archangel. +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20786# +A wings of fallen angel. +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20787# +A certified kingdom equipment for adventurer. +-------------------------- +Base Level is below 100: +Increases experience gained from defeating monsters by 4%. +-------------------------- +For each 2 Refine Levels: +Critical +2 +-------------------------- +Type: Garment +Defense: 20 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +20788# +A doram race's favourite manteau. +-------------------------- +FLEE +5 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 2%. +-------------------------- +For each 3 Refine Levels: +Perfect Dodge +1. +-------------------------- +Type: Garment +Defense: 20 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +20789# +A doram race's favourite luxury manteau. +-------------------------- +FLEE +7 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 3%. +-------------------------- +For each 3 Refine Levels: +LUK +1 +Perfect Dodge +1 +-------------------------- +Type: Garment +Defense: 25 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 140 +Summoner (Doram) +# +20790# +A doram race's favourite elegant manteau. +-------------------------- +FLEE +10 +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +For each 2 Refine Levels: +INT +1 +DEX +1 +LUK +1 +Perfect Dodge +1 +-------------------------- +Type: Garment +Defense: 30 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 175 +Summoner (Doram) +# +20791# +The cloak used by the captain of the airship, Ferlock. +-------------------------- +MaxHP +300 +-------------------------- +When equipped with Ferlock's Suit and Ferlock's Boots: +DEF +200, MDEF +20 +MaxHP +500, MaxSP +50 + +Total Refine Level of entire set at least +15: +MaxHP +1000 +MaxSP +30 + +Total Refine Level of entire set at least +20: +MaxHP +1500 +MaxSP +100 + +Total Refine Level of entire set at least +25: +MaxHP +2000 +MaxSP +200 +-------------------------- +When equipped with Ferlock's Hat, Ferlock's Boots and Ferlock's Manteau: +Random chance to absorb 3% damage inflicted as HP and 2% damage as SP when dealing physical attacks. +-------------------------- +Refining is only possible with the NPC \ +. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Garment +Defense: 100 +Weight: 100 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +20792# +The cloak used by the passengers of the airship. +-------------------------- +MaxHP +300 +-------------------------- +When equipped with Airship Suit and Airship Boots: +DEF +200, MDEF +20 +MaxHP +500, MaxSP +50 + +Total Refine Level of entire set at least +15: +MaxHP +1000 +MaxSP +30 + +Total Refine Level of entire set at least +20: +MaxHP +1500 +MaxSP +100 + +Total Refine Level of entire set at least +25: +MaxHP +2000 +MaxSP +200 +-------------------------- +When equipped with Airship's Hat, Airship Suit and Airship Boots: +Random chance to absorb 3% damage inflicted as HP and 2% damage as SP when dealing physical attacks. +-------------------------- +Refining is only possible with the NPC \ +. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Garment +Defense: 100 +Weight: 100 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +20793# +Cloak given by the king. +It seems there is an effect to quell the spirits of the dead. +-------------------------- +MaxHP +2% +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by 3%. +-------------------------- +Refine Level +6: +MaxHP +6% +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by 1%. +-------------------------- +Refine Level +8: +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by 1%. +-------------------------- +When equipped with Requiem Suit and Requiem Boots: +Prevents Frozen status. +Enables the use of Level 1 Hiding. +Enables the use of Level 1 Sight. +-------------------------- +When equipped with Requiem Robe and Requiem Boots: +Prevents Frozen status. +Enables the use of Level 1 Hiding. +Enables the use of Level 1 Sight. +-------------------------- +Type: Garment +Defense: 25 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20794# +A manteau of legendary hero whose fought bravely in battle field. +-------------------------- +MDEF +3 +-------------------------- +For each 2 Refine Levels: +Decreases damage taken from Demi-Human race by 1%. +-------------------------- +Base STR at least 130 +ATK +5% +-------------------------- +Base AGI at least 130: +ASPD +1 +-------------------------- +Base VIT at least 130: +DEF +300 +-------------------------- +Base INT at least 130: +MATK +5% +-------------------------- +Base DEX at least 130: +Increases Ranged Physical Damage by 5%. +-------------------------- +Base LUK at least 130: +Increases Critical Damage by 5%. +-------------------------- +When equipped with Old version of 3rd classes headgears: MaxHP +20% and double the effect received from base stat bonus. +-------------------------- +When equipped with Armor of Einherjar: +For each Refine Level of manteau adds ATK +3. +-------------------------- +Type: Garment +Defense: 30 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 175 +# +20795# +A manteau of legendary hero whose fought bravely in battle field. +-------------------------- +MDEF +3 +-------------------------- +For each 2 Refine Levels: +Decreases damage taken from Demi-Human race by 1%. +-------------------------- +Base STR at least 130 +ATK +5% +-------------------------- +Base AGI at least 130: +ASPD +1 +-------------------------- +Base VIT at least 130: +DEF +300 +-------------------------- +Base INT at least 130: +MATK +5% +-------------------------- +Base DEX at least 130: +Increases Ranged Physical Damage by 5%. +-------------------------- +Base LUK at least 130: +Increases Critical Damage by 5%. +-------------------------- +When equipped with Old version of 3rd classes headgears: MaxHP +20% and double the effect received from base stat bonus. +-------------------------- +When equipped with Armor of Einherjar: +For each Refine Level of manteau adds ATK +3. +-------------------------- +Type: Garment +Defense: 30 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 175 +# +20796# +A clothes of Seo Heon that protect its wearer from harmful magic. +-------------------------- +MDEF +10 +-------------------------- +Increases Healing skills effectiveness by 5%. +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by 1%. +-------------------------- +When equipped with Seo Hyun's Kodachi: +For each Refine Level of Seo Hyun's Hagoromo: +MATK +5 +Increases Healing skills effectiveness by 2%. +-------------------------- +Type: Garment +Defense: 20 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +20797# +Undershirt belonged to the ancient Lapine, Etran. +-------------------------- +MaxHP +2% +MDEF +10 +-------------------------- +Refine Level +7: +MaxHP +4% +-------------------------- +Refine Level +8: +MaxHP +6% +-------------------------- +Refine Level +9: +MaxHP +8% +-------------------------- +Refine Level +10: +Prevents knock-back effect. +-------------------------- +When equipped with Pantie: +INT +15 +MaxHP +5% +MaxSP +5% +-------------------------- +When Pantie's Refine Level +7: +Protects from skill cast interruption. +-------------------------- +When equipped with Devilring Card: +Decreases damage taken from all elemental attacks, except Neutral, by 50%. +-------------------------- +Type: Garment +Defense: 0 +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: None +# +20798# +A costume that resemble the grim reaper whose waiting to take someone's soul. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +20799# +A towel on the shoulder that has been improved to exert the power of the four major elements more strongly. +You can feel the power of the four major elements directly from your skin. +-------------------------- +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +7: +Decreases SP Consumption of Arrow Storm by 20. +Decreases SP Consumption of Severe Rainstorm by 60. +-------------------------- +Refine Level +8: +Increases Ranged Physical Damage by additional 2%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +When equipped with Burning Bow and Fire Arrow: +For each Refine Level of Burning Bow: +Increases damage of Arrow Storm and Severe Rainstorm by 5%. + +Refine Level of Burning Bow is +10 or higher: +ASPD +1 +-------------------------- +When equipped with Frozen Bow and Crystal Arrow: +For each Refine Level of Frozen Bow: +Increases damage of Arrow Storm and Severe Rainstorm by 5%. + +Refine Level of Frozen Bow is +10 or higher: +ASPD +1 +-------------------------- +When equipped with Earth Bow and Stone Arrow: +For each Refine Level of Earth Bow: +Increases damage of Arrow Storm and Severe Rainstorm by 5%. + +Refine Level of Earth Bow is +10 or higher: +ASPD +1 +-------------------------- +When equipped with Gust Bow and Arrow of Wind: +For each Refine Level of Gust Bow: +Increases damage of Arrow Storm and Severe Rainstorm by 5%. + +Refine Level of Gust Bow is +10 or higher: +ASPD +1 +-------------------------- +Type: Garment +Defense: 13 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20800# +Soaked with blood, this manteau releases terrible aura. +-------------------------- +MDEF +10 +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +If mastered Level 5 Cross Impact: +Increases damage of Cross Impact by 5%. +-------------------------- +If mastered Level 5 Grim Tooth: +Increases damage of Grim Tooth by 50%. +-------------------------- +If mastered Level 10 Soul Breaker: +Increases damage of Soul Breaker by 50%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by 3%. + +For each Base Level: +Increases damage of Grim Tooth by 1%. + +For each 3 Base Level: +Increases damage of Soul Breaker by 1%. + +For each 30 Base Level: +Increases damage of Cross Impact by 1%. +-------------------------- +Refine Level +9: +MaxSP +5% +Decreases After Skill Delay by 3%. +-------------------------- +When equipped by Guillotine Cross class: +MaxHP +15% +Decreases damage taken from Ranged Physical Damage by 20%. + +Refine Level of Enforcer Manteau is +7 or higher: +MaxHP +5% +Decreases damage taken from Ranged Physical Damage by 15%. +-------------------------- +When equipped by Guillotine Cross class: +When equipped with Rectangular Large Sleeve or Horn Card: +Increases damage taken from Ranged Physical Damage by 35%. +-------------------------- +Type: Garment +Defense: 18 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20801# +An enhanced manteau made from mixed elunium and emperium made for an experienced adventurer. +-------------------------- +FLEE +20 +MDEF +5 +Perfect Dodge +5 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +Type: Garment +Defense: 13 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20802# +A bag made based on Amistr appearance. +-------------------------- +All Stats +1 +Enables Level 1 Teleport. +-------------------------- +Increases the experience given from monsters by 1% per 2 upgrade levels of the item. +Increases the drop rate of items by 1% per 2 upgrade levels of the item. +-------------------------- +If upgrade level is +9 or higher +Restores 3 SP to the user when a monster is killed by a physical or magical attack. +-------------------------- +If upgrade level is +12 or higher +The users casting cannot be interrupted outside of WoE. +-------------------------- +Type: Garment +Defense: 30 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20803# +A bag that resembles the homunculus, Amistr. +-------------------------- +All Stats +1 +-------------------------- +Enables Level 1 Heal. +-------------------------- +Increases the experience given from monsters by 1% per 2 upgrade levels of the item. +Increases the drop rate of items by 1% per 2 upgrade levels of the item. +-------------------------- +If upgrade level is +9 or higher +Restores 3 SP to the user when a monster is killed by a physical or magical attack. +-------------------------- +If upgrade level is +12 or higher +The users casting cannot be interrupted outside of WoE. +-------------------------- +Type: Garment +Defense: 30 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20804# +A bag that resembles the homunculus, Amistr. +-------------------------- +All Stats +1 +-------------------------- +Enables Level 1 Greed. +-------------------------- +Increases the experience given from monsters by 1% per 2 upgrade levels of the item. +Increases the drop rate of items by 1% per 2 upgrade levels of the item. +-------------------------- +If upgrade level is +9 or higher +Restores 3 SP to the user when a monster is killed by a physical or magical attack. +-------------------------- +If upgrade level is +12 or higher +The users casting cannot be interrupted outside of WoE. +-------------------------- +Type: Garment +Defense: 30 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20805# +A bag that resembles the homunculus, Amistr. +-------------------------- +All Stats +1 +-------------------------- +Enables Level 1 Increase Agi. +-------------------------- +Increases the experience given from monsters by 1% per 2 upgrade levels of the item. +Increases the drop rate of items by 1% per 2 upgrade levels of the item. +-------------------------- +If upgrade level is +9 or higher +Restores 3 SP to the user when a monster is killed by a physical or magical attack. +-------------------------- +If upgrade level is +12 or higher +The users casting cannot be interrupted outside of WoE. +-------------------------- +Type: Garment +Defense: 30 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20806# +A bag that resembles the homunculus, Amistr. +-------------------------- +All Stats +1 +-------------------------- +Enables Level 1 Magnum Break. +-------------------------- +Increases the experience given from monsters by 1% per 2 upgrade levels of the item. +Increases the drop rate of items by 1% per 2 upgrade levels of the item. +-------------------------- +If upgrade level is +9 or higher +Restores 3 SP to the user when a monster is killed by a physical or magical attack. +-------------------------- +If upgrade level is +12 or higher +The users casting cannot be interrupted outside of WoE. +-------------------------- +Type: Garment +Defense: 30 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20807# +A bag that resembles the homunculus, Amistr. +-------------------------- +All Stats +1 +-------------------------- +Enables Level 1 Endure. +-------------------------- +Increases the experience given from monsters by 1% per 2 upgrade levels of the item. +Increases the drop rate of items by 1% per 2 upgrade levels of the item. +-------------------------- +If upgrade level is +9 or higher +Restores 3 SP to the user when a monster is killed by a physical or magical attack. +-------------------------- +If upgrade level is +12 or higher: +The users casting cannot be interrupted outside of WoE. +-------------------------- +Type: Garment +Defense: 30 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20808# +A bag that resembles the homunculus, Amistr. +-------------------------- +All Stats +1 +-------------------------- +Enables Level 1 Sight. +-------------------------- +Increases the experience given from monsters by 1% per 2 upgrade levels of the item. +Increases the drop rate of items by 1% per 2 upgrade levels of the item. +-------------------------- +If upgrade level is +9 or higher: +Restores 3 SP to the user when a monster is killed by a physical or magical attack. +-------------------------- +If upgrade level is +12 or higher: +The users casting cannot be interrupted outside of WoE. +-------------------------- +Type: Garment +Defense: 30 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20809# +A bag that resembles the homunculus, Amistr. +-------------------------- +All Stats +1 +-------------------------- +Enables Level 1 Improve Concentration. +-------------------------- +Increases the experience given from monsters by 1% per 2 upgrade levels of the item. +Increases the drop rate of items by 1% per 2 upgrade levels of the item. +-------------------------- +If upgrade level is +9 or higher +Restores 3 SP to the user when a monster is killed by a physical or magical attack. +-------------------------- +If upgrade level is +12 or higher +The users casting cannot be interrupted outside of WoE. +-------------------------- +Type: Garment +Defense: 30 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20811# +A bag that resembles the homunculus, Amistr. +-------------------------- +All Stats +1 +-------------------------- +Enables Level 1 Hiding. +-------------------------- +Increases the experience given from monsters by 1% per 2 upgrade levels of the item. +Increases the drop rate of items by 1% per 2 upgrade levels of the item. +-------------------------- +If upgrade level is +9 or higher +Restores 3 SP to the user when a monster is killed by a physical or magical attack. +-------------------------- +If upgrade level is +12 or higher +The users casting cannot be interrupted outside of WoE. +-------------------------- +Type: Garment +Defense: 30 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20812# +A wings of legendary beast, Kirin. +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20813# +A manteau which protects its wearer from the elements. +-------------------------- +VIT +10 +MDEF +5 +-------------------------- +When equipped with Survivor's Rod[1]: +MaxHP +300 +MATK -5% +MATK +1% per Refine Level of Survivor's Rod. +Decreases damage taken from Neutral elemental attacks by 3%*Refine Level of garment. +-------------------------- +When equipped with Survivor's Manteau: +Decreases damage taken from Demi-Human race by 1%. +Decreases Fixed Casting Time by 50%. + +When Survivor's Manteau Refined to +5: +Decreases damage taken from Demi-Human race by 2%. + +When Survivor's Manteau Refined to +7: +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +When equipped with Survivor's Orb and Survivor's Rod[1]: +MATK +1% + +When Survivor's Rod[1] Refined to +5: +MATK +2% + +When Survivor's Rod[1] Refined to +7: +MATK +2% +-------------------------- +When equipped with Devilring Card: +Increases damage taken from Neutral elemental attacks by 30%. +-------------------------- +When equipped with Survivor's Shoes: +MATK +10% + +If Survivor's Manteau Refine Level +7: +Decreases damage taken from Earth and Wind elemental attacks by 15%. + +If Survivor's Manteau Refine Level +9: +Decreases damage taken from Earth and Wind elemental attacks by 15%. +-------------------------- +Type: Garment +Defense: 10 +Weight: 55 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 75 +Magician and Soul Linker classes +# +20814# +A manteau made out of the wings of a Wakwak. By wearing it, you will feel like you can fly. +-------------------------- +ATK +5% +-------------------------- +Refine Level +5: +For each 10 base STR: +ATK +2 +-------------------------- +Refine Level +7: +For each 10 base STR: +ATK +3 +-------------------------- +When equipped with Wakwak Card: +For each 10 base STR: +ATK -5 +-------------------------- +Type: Garment +Defense: 40 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20815# +A cloak wore by a fallen priest whose has doubt in god. Its combine both light and darkness force. +-------------------------- +INT +5, DEX +5 +MaxHP +10% +MDEF +10 +-------------------------- +Increases Magical Damage with Neutral element by 5%. +-------------------------- +Refine Level +7: +Decreases damage taken from Holy and Shadow elemental attacks by 20%, Neutral magic damage +10%. +-------------------------- +Refine Level +9: +Decreases damage taken from Holy and Shadow elemental attacks by 10%, Decreases Variable Casting Time by 5%. +-------------------------- +For each Level of Faith: +Increases damage taken from Holy elemental attacks by 3%. +-------------------------- +Type: Garment +Defense: 18 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +20816# +A shoulder strap that a certain bow master usually used. +I feel that I can clearly see things in the distance. +-------------------------- +MDEF +10 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When Level 10 Aimed Bolt is learned: +Increases damage of Aimed Bolt by 5%. +-------------------------- +When Level 5 Sharp Shooting is learned: +Increases damage of Sharp Shooting by 60%. +-------------------------- +When Level 5 Blitz Beat is learned: +Increases damage of Blitz Beat by 15%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by additional 3%). + +For each 3 Base Level: +Increases damage of Sharp Shooting by additional 1%. + +For each 5 Base Level: +Increases damage of Blitz Beat by additional 1%. + +For each 30 Base Level: +Increases damage of Aimed Bolt by additional 1%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by additional 3%). +MaxSP +5% +-------------------------- +When equipped by Ranger: +When equipped with Rectangular Large Sleeve: +Increases damage taken from ranged physical attacks by 35%. + +When equipped with Horn Card: +Increases damage taken from ranged physical attacks by additional 35%. +-------------------------- +Type: Garment +Defense: 18 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20817# +A new backpack that's released in the market, contains many necessary items for adventure. +-------------------------- +Enables use of Level 1 Greed. +-------------------------- +Base STR at least 90: +Refine Level +7: +ATK +20 + +Refine Level +9: +ATK +10 +-------------------------- +Base INT at least 90: +Refine Level +7: +MATK +30 + +Refine Level +9: +MATK +20 +-------------------------- +Base VIT at least 90: +Refine Level +7: +Neutral resistance +10%. + +Refine Level +9: +Neutral resistance +5%. +-------------------------- +Base AGI at least 90: +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 8%). + +Refine Level +9: +ASPD +1 +-------------------------- +Base DEX at least 90: +Refine Level +7: +Ranged Physical Damages +5%. + +Refine Level +9: +Ranged Physical Damages +5%. +-------------------------- +Base LUK at least 90: +Refine Level +7: +Increases Critical Damage by 10%. + +Refine Level +9: +Increases Critical Damage by 5% +-------------------------- +Type: Garment +Defense: 20 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +20818# +A manteau which has terrible aura that once used by ancient king whose master of magic. +Originally it was a gorgeous crimson war costume, but eroded by a mighty curse that plagued over all the land. +-------------------------- +Decreases damage taken from all elemental attacks by 5%. +-------------------------- +Decreases damage taken from Ranged Physical Damage by 5%. +-------------------------- +Refine Level +7: +Decreases damage taken from Water and Wind elemental attacks by 30%. +Every 10 seconds restores HP by 2000 and SP by 100. +-------------------------- +When equipped with Cursed Magic Mail and Cursed Magic Boots: +Decreases damage taken from all elemental attacks by 5%. +Decreases damage taken from Ranged Physical Damage by 5%. +MaxHP +6666 +MaxSP +666 +-------------------------- +When equipped with Cursed Magic Ring: +Decreases damage taken from Water and Wind elemental attacks by 30%. +-------------------------- +Type: Garment +Defense: 16 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +20819# +Oxygen bottles that facilitate the underwater activity. +-------------------------- +FLEE +12 +-------------------------- +For each Refine Level: +HIT +1 +FLEE +1 +-------------------------- +When equipped with Scuba Mask: +ASPD +1 +Protects from skill cast interruption. +-------------------------- +Type: Garment +Defense: 0 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +20820# +A manteau with elemental power. +-------------------------- +FLEE +10 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 10%. +-------------------------- +For each 3 Refine Levels: +FLEE +5 +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Type: Garment +Defense: 12 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +20821# +A scarf wore by ninja whose hired by gold mine owner. +-------------------------- +FLEE +20 +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Garment +Defense: 12 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +20822# +A leather backpack of miner whose work at the gold mine. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +For each 2 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Refine Level +9: +ATK +20 +-------------------------- +Type: Garment +Defense: 16 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +20823# +A cape given to loyal member of Eden Group. It has stylish design. +-------------------------- +FLEE +12 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 10%. +-------------------------- +Refine Level +7: +MaxHP +500 +Perfect Dodge +2 +-------------------------- +Refine Level +9: +MaxHP +500 +Decreases damage taken from all elemental attacks, except Neutral, by 10%. +-------------------------- +Type: Garment +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20824# +A cape given to trained member of Eden Group. It has stylish design. +-------------------------- +MaxHP +500 +FLEE +12 +Perfect Dodge +2 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 10%. +-------------------------- +Refine Level +7: +MaxHP +500 +Decreases damage taken from all elemental attacks, except Neutral, by 10%. +-------------------------- +Refine Level +9: +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Type: Garment +Defense: 25 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +20825# +A cape given to full-fledged member of Eden Group. It has stylish design. +-------------------------- +MaxHP +1000 +FLEE +12 +Perfect Dodge +2 +-------------------------- +Decreases damage taken from all elemental attacks by 10%. +-------------------------- +Refine Level +7: +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Refine Level +9: +Enables the use of Level 1 Greed. +-------------------------- +Type: Garment +Defense: 30 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +20826# +A cute little wings based on appearance of cupid. +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20827# +Unknown manteau obtained from magical labyrinth. It is unknown from what material it was made. +-------------------------- +Refine Level +7: +MaxHP +5% +-------------------------- +Refine Level +9: +MaxHP +10% +-------------------------- +When equipped with Diva Robe and Diva Shoes: +MaxHP +10% +MaxSP +10% +-------------------------- +Type: Garment +Defense: 15 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +20828# +An altered version of Diva manteau that was influenced by magical crystal of labyrinth's power. It is unknown from what material it was made. +-------------------------- +Refine Level +7: +MaxSP +5% +-------------------------- +Refine Level +9: +MaxSP +10% +-------------------------- +When equipped with Mirage Robe and Mirage Shoes: +MaxHP +10% +MaxSP +10% +-------------------------- +Type: Garment +Defense: 15 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +20829# +Armor rented from a rental machine. +It disappears after a certain period of time. +-------------------------- +MDEF +10 +-------------------------- +AGI +5, VIT +5 +-------------------------- +Decreases damage taken from Fire and Water elemental attacks by 5%. +-------------------------- +Decreases damage taken from Demi-Human and Dragon race by 5%. +-------------------------- +Refine Level +7: +Enables the use of Level 1 Hiding. +-------------------------- +Refine Level +8: +For each 20 combined sum of base AGI and VIT: +MaxHP +1% +Decreases Variable Casting Time by 2%. +-------------------------- +Refine Level +9: +Enables the use of Level 1 Cloaking. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Garment +Defense: 15 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20830# +A glowing red noble wings of seraph. +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20831# +An item made by an adventurer's grudge. It can collect magic and withdraw it freely. +-------------------------- +INT +5 +-------------------------- +Refine Level +5: +For each 60 base INT: +MATK +5 +-------------------------- +Refine Level +7: +For each 10 base INT: +MATK +5 +-------------------------- +When equipped with Antique Book Card: +Disables effects of Antique Book Card. +-------------------------- +Type: Garment +Defense: 40 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20832# +Popular rental equipment selected by Kafra staff. +-------------------------- +Decreases After Skill Delay by 10%. +-------------------------- +When equipped with Rental King Schmidt's Uniform: +Refine Level of Rental King Schmidt's Uniform and Rental King Schmidt's Manteau is +6 or higher: +Decreases After Skill Delay by additional 20%. + +Refine Level of Rental King Schmidt's Uniform and Rental King Schmidt's Manteau is +8 or higher: +Decreases After Skill Delay by additional 20%. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Garment +Defense: 70 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +20834# +A manteau wore by wanderer. Quite durable. +-------------------------- +Decreases damage taken from Neutral elemental attacks by 20%. +-------------------------- +Refine Level +7: +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Refine Level +9: +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Type: Garment +Defense: 0 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20835# +A large black wings of fallen angel. +-------------------------- +All Stats +1 +-------------------------- +For each 20 base STR: +ATK +1 +-------------------------- +For each 20 base INT: +MATK +1 +-------------------------- +For each 20 base VIT: +Neutral elemental resistance +1%. +-------------------------- +For each 20 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +For each 20 base DEX: +Increases Ranged Physical Damage by 1. +-------------------------- +For each 20 base LUK: +Increases Critical Damage by 1%. +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +20836# +Skin of a lake dragon obtained by unknown adventurer. Too stiff to be made into manteau. +-------------------------- +AGI +5 +VIT +5 +MDEF +10 +-------------------------- +Decreases damage taken from Fire and Water elemental attacks by 5%. +Decreases damage taken from Demi-Human and Dragon race by 5%. +-------------------------- +Refine Level +7: +Enables the use of Level 1 Hiding. +-------------------------- +Refine Level +8: +Every combined sum of 20 base AGI and VIT: +MaxHP +1% +Decreases Variable Casting Time by 2%. +-------------------------- +Refine Level +9: +Enables the use of Level 1 Cloaking. +-------------------------- +Type: Garment +Defense: 15 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20837# +The skin of a dragon whose scales were as white as snow, but light as a feather. +-------------------------- +INT +5 +DEX +5 +MDEF +10 +-------------------------- +Decreases damage taken from Shadow and Undead elemental attacks by 5%. +Decreases damage taken from Demon and Undead race by 5%. +-------------------------- +Refine Level +7: +Restores 10 SP when defeating monster with physical attack. +-------------------------- +Refine Level +8: +Every combined sum of 20 base INT and DEX: +ATK +5 +Decreases After Skill Delay by 1%. +-------------------------- +Refine Level +9: +Restores 10 SP when defeating monster with physical attack. +-------------------------- +Type: Garment +Defense: 15 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20838# +A warm scarf that is worn around the neck and shoulders. +-------------------------- +MaxHP +100 +MaxSP +10 +-------------------------- +For each Refine Level: +MaxHP +100 +MaxSP +5 +-------------------------- +Type: Garment +Defense: 8 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +All Jobs except Novice +# +20840# +A fancy cape said to have once been worn by marquises long ago. +-------------------------- +AGI +2 +-------------------------- +For each 2 Refine Levels: +AGI +1 +(Up to Refine Level +10) +-------------------------- +When equipped by Rogue classes: +When equipped with Illusion Moonlight Sword: +MATK +80 + +Refine Level of Illusion Cape of Ancient Lord and Illusion Moonlight Sword each is +7 or higher: +MATK +80 + +Total Refine Level of entire set at least +18: +MATK +40 + +Total Refine Level of entire set at least +22: +Increases Magical Damage with Fire element by 15%. +-------------------------- +Type: Garment +Defense: 18 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +All Jobs except Novice +# +20841# +A pair of wings from a golden angel. +-------------------------- +Base VIT at least 90: +MaxHP +5%, MaxSP +5% + +Base STR at least 90: +ATK +15 + +Base INT at least 90: +MATK +15 + +Base AGI at least 90: +ASPD +1 + +Base DEX at least 90: +Increases long-ranged damage on the targets by 5%. + +Base LUK at least 90: +Increases critical damage on the targets by 5%. +-------------------------- +Refine Level +9: +Base VIT at least 90: +MaxHP +5%, MaxSP +5% + +Base STR at least 90: +ATK +15 + +Base INT at least 90: +MATK +15 + +Base AGI at least 90: +ASPD +1 + +Base DEX at least 90: +Increases long-ranged damage by additional 5%. + +Base LUK at least 90: +Increases Critical Damage by additional 5%. +-------------------------- +When equipped with Golden Angel Hairband: +All Stats +1 +-------------------------- +Type: Garment +Defense: 20 +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +20842# +A bag full of candies. +You can get various effects if this bag enchanted. +-------------------------- +For each 2 Refine Levels: +ATK +1% +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +12: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Base Level is below 100: +Increases experience gained from defeating monsters by 10%. +-------------------------- +Base Level at least 100: +Increases experience gained from defeating monsters by 4%. +-------------------------- +Type: Garment +Defense: 30 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20843# +A bag full of candies. +You can get various effects if this bag enchanted. +-------------------------- +For each 2 Refine Levels: +Ranged Physical Damage +1%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +12: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Base Level is below 100: +Increases experience gained from defeating monsters by 10%. +-------------------------- +Base Level at least 100: +Increases experience gained from defeating monsters by 4%. +-------------------------- +Type: Garment +Defense: 30 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20844# +A bag full of candies. +You can get various effects if this bag enchanted. +-------------------------- +For each 3 Refine Levels: +MATK +2% +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +12: +Decreases Variable Casting Time by 7%. +-------------------------- +Base Level below 100: +Increases experience gained from defeating monsters by 10%. +-------------------------- +Base Level at least 100: +Increases experience gained from defeating monsters by 4%. +-------------------------- +Type: Garment +Defense: 30 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20845# +The skin of a dragon which has a mouth large enough to swallow an entire human. +-------------------------- +STR +5 +LUK +5 +-------------------------- +Decreases damage taken from Holy and Ghost elemental attacks by 5%. +-------------------------- +Decreases damage taken from Formless and Angel race by 5%. +-------------------------- +Refine Level +7: +Increases Critical Damage by 5%. +-------------------------- +Refine Level +8: +ASPD +1% for every combined sum of 20 base STR and LUK. +-------------------------- +Refine Level +9: +Increases Critical Damage by 5%. +-------------------------- +Type: Garment +Defense: 15 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20846# +A manteau that has been made long time ago but it still looks brand new. +-------------------------- +MDEF +10 +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +When equipped with either Temporal STR Boots, +Temporal AGI Boots, Temporal VIT Boots, +Temporal INT Boots, Temporal DEX Boots +or Temporal LUK Boots: +MaxHP +15% +MDEF +10 +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +When equipped with Temporal STR Boots: +ATK +30 +-------------------------- +When equipped with Temporal AGI Boots: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When equipped with Temporal VIT Boots: +Increases recovery amount gained from Healing skills and Restorative items by 10%. +-------------------------- +When equipped with Temporal INT Boots: +MATK +30 +-------------------------- +When equipped with Temporal DEX Boots: +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Temporal LUK Boots: +Increases Critical Damage by 5%. +-------------------------- +Type: Garment +Defense: 38 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20847# +A manteau that dramatically increases your chances of survival in any situation +-------------------------- +VIT+15 +-------------------------- +When equipped with Illusion Survivor's Staff: +MaxHP +1000, +MATK -50 +-------------------------- +For each Refine Level of Illusion Survivor's Staff: +MATK +20, +-------------------------- +For each 3 Refine Levels of Illusion Survivor's Staff: +Decreases After Skill Delay by 3%. +-------------------------- +For each 2 Refine Levels of Illusion Survivor's Manteau: +Increases Neutral resistance by 1%. +-------------------------- +(Increases MATK and Neutral resistance only up to +10 Refine Level.) +-------------------------- +When equipped with Illusion Wizardry Staff: +Increases Crimson Rock by 10%. +-------------------------- +Refine Level of Illusion Survivor's Manteau and Illusion Wizardry Staff each is +7 or higher: +Increases Hell Inferno damage by 40%. +-------------------------- +Total Refine Level of entire set at least +18: +Increases Magical Damage with Wind and Shadow element by 10%. +-------------------------- +Total Refine Level of entire set at least +22: +Increases Magical Damage with Fire element by 10%. +-------------------------- +Type: Garment +Defense: 30 +Weight: 55 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +Wizard and Soul Linker classes +# +20852# +A cloak worn by Zilant, who was called a rare witch. +Multiple woven techniques protect the surgeon from fire and wind. +-------------------------- +For each Refine Level: +Decreases damage taken from Fire and Wind elemental attacks by 5%. +-------------------------- +Refine Level +7: +MATK +5% +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +9: +MATK +5% +Decreases Variable Casting Time by additional 5%. +-------------------------- +Refine Level +10: +Enables unlimited effect of Endure. +-------------------------- +When equipped with Witch's Thunder Flame Wand: +MATK +5% +Decreases damage taken from Fire and Wind elemental attacks by additional 20%. +-------------------------- +When equipped with Necromancer's Dress: +For each Refine Level of Necromancer's Manteau: +MATK +2% +Decreases Variable Casting Time by additional 2%. +-------------------------- +When equipped with Necromancer's Hand Mirror: +MATK +5% +Decreases Variable Casting Time by additional 5%. + +Refine Level of Necromancer's Hand Mirror is +8 or higher: +Perfect Dodge +20 +MATK +5% +Decreases Variable Casting Time by additional 5%. +-------------------------- +Type: Garment +Defense: 16 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +20853# +An accessory to attach to the shoulder made by collecting the fallen Rudo's wings. +Because it is so small, there is no change in appearance, but you can feel the mysterious power as if you could fly in the sky. +-------------------------- +ASPD +1 +-------------------------- +For each 2 Refine Levels: +MATK +3% +-------------------------- +When equipped with Rudo's Paper Roll: +For each Refine Level of Rudo's Paper Roll: +Decreases damage taken from Holy elemental attacks by 3%. +-------------------------- +Type: Garment +Defense: 6 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +3rd Mage and 3rd Acolyte classes +# +20854# +A cape developed to carry various medicines. +No worries if you prepare. +-------------------------- +Defeating monstery restores 100 HP and 10 SP. +-------------------------- +Random chance to drop RB Muscle 15mg when defeating Brute and Fish race. +-------------------------- +Random chance to drop Antitoxic Serum when defeating Dragon and Formless race. +-------------------------- +Random chance to drop Combat Drug when defeating Plant and Insect race. +-------------------------- +Random chance to drop Speed Potion when defeating Demon and Demi-Human race. +-------------------------- +Random chance to drop Poison Bottle when defeating Undead and Angel race. +-------------------------- +Refine Level +7: +Increases the drop chance of above effects. +-------------------------- +Refine Level +9: +Increases the drop chance of above effects further. +-------------------------- +Type: Garment +Defense: 12 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +20855# +Rental Item +An oxygen tank that can be rented for a certain period of time during the July Noodle Festival. It facilitates activities in the water. +-------------------------- +FLEE +30 +HIT +30 +-------------------------- +Decreases damage taken from Fish race by 10%. +Decreases damage taken from Neutral and Water elemental attacks by 15%. +-------------------------- +When equipped with Rental Scuba Mask: +ASPD +2 +Protects from skill cast interruption. +-------------------------- +Type: Garment +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +20856# +The manteau used by Werner Institute's experiment, YSF01. There are powerful magic swirling inside seemed cut off from the world. +If used abusely, its magic power will consume its wearer. +-------------------------- +Refine Level +8: +ATK +20 +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 3%. +-------------------------- +Refine Level +13: +Decreases After Skill Delay by 4%. +-------------------------- +Base VIT at least 125: +Decreases After Skill Delay by 10%. +-------------------------- +Type: Garment +Defense: 32 +Weight: 75 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +20857# +A veil worn by snipers to hide. +-------------------------- +MDEF +10 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +MaxHP +15% +-------------------------- +Increases Ranged Physical Damage by 10%. +-------------------------- +Decreases damage taken from ranged physical attacks by 20%. +-------------------------- +When Level 5 Anti-Material Blast is learned: +Decreases Anti-Material Blast skill cooldown by 2 seconds. +-------------------------- +When Level 5 Hammer of God is learned: +Decreases Hammer of God skill cooldown by 10 seconds. +-------------------------- +When Level 5 Mass Spiral is learned: +Decreases Variable Casting Time of Mass Spiral by 2 seconds. +-------------------------- +Refine Level +7: +MaxHP +5% +Increases Ranged Physical Damage by additional 3%. +Decreases damage taken from ranged physical attacks by additional 15%. + +For each 3 Base Level: +Increases damage of Mass Spiral by 1%. + +For each 4 Base Level: +Increases damage of Anti-Material Blast by 3%. + +For each 5 Base Level: +Increases damage of Hammer of God by 6%. +-------------------------- +Refine Level +9: +MaxHP +5% +Increases Ranged Physical Damage by additional 3%. +-------------------------- +When equipped with Rectangular Large Sleeve: +Increases damage taken from ranged physical attacks by 35%. +-------------------------- +When equipped with Horn Card: +Increases damage taken from ranged physical attacks by 35%. +-------------------------- +Type: Garment +Defense: 18 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +Rebellion +# +20858# +The cloak that the experimental body of the Ymir project was equipped with. +Y.S.F.0.1 was an abbreviation for \ +. +-------------------------- +MDEF +10 +-------------------------- +MaxHP +15% +-------------------------- +Refine Level +7: +Decreases SP Consumption of Spiral Pierce by 5. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 15%). +-------------------------- +When equipped with Y.S.F.0.1 Plate and Y.S.F.0.1 Greaves: +Decreases After Skill Delay by 10%. +Increases damage of Spiral Pierce by 50%. +Increases damage of Spear Boomerang by 100%. +Increases damage of Hundred Spear by 50%. + +Refine Level of Y.S.F.0.1 Plate, Y.S.F.0.1 Manteau and Y.S.F.0.1 Greaves is +7 or higher: +Decreases After Skill Delay by additional 20%. +Increases damage of Spiral Pierce by additional 100%. +Increases damage of Spear Boomerang by additional 200%. +Increases damage of Hundred Spear by additional 100%. + +Refine Level of Y.S.F.0.1 Plate, Y.S.F.0.1 Manteau and Y.S.F.0.1 Greaves is +9 or higher: +Decreases After Skill Delay by additional 20%. +Increases damage of Spiral Pierce by additional 100%. +Increases damage of Spear Boomerang by additional 200%. +Increases damage of Hundred Spear by additional 100%. +-------------------------- +Type: Garment +Defense: 15 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Rune Knight +# +20859# +A suit inspired by Phreeoni. You feel like you can fly! +-------------------------- +MaxHP +10% +HIT +10 +-------------------------- +Refine Level +7: +HIT +20 +-------------------------- +Refine Level +8: +HIT +30 +-------------------------- +Refine Level +9: +HIT +40 +-------------------------- +Refine Level +10: +HIT +100 +-------------------------- +When equipped with Phreeoni Card: +Perfect HIT +50% +Prevents Stone Curse status. +-------------------------- +Type: Garment +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20860# +[cRO Item] +-------------------------- +A replica of the haori worn by the lord of Amatsu Castle. +You can move very quickly when you wear it. +-------------------------- +ASPD +3%, +FLEE +10 +-------------------------- +Enables the use of Level 3 Double Attack. +Enables the use of Level 3 Triple Attack. +-------------------------- +Refine Level +7: +ASPD +3% +FLEE +10 +Enables the use of Level 5 Double Attack. +Enables the use of Level 5 Triple Attack. +-------------------------- +Refine Level +9: +ASPD +3% +FLEE +10 +Enables the use of Level 10 Double Attack. +Enables the use of Level 10 Triple Attack. +-------------------------- +Type: Garment +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +20861# +Large wings shaped by countless swords, large and small. +If you handle it incorrectly, you may hurt yourself. +-------------------------- +The graphic is reflected on the character. +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20863# +A garment made from Menblatt Wings. +I'm going to fly in the sky. +-------------------------- +ATK +30 +-------------------------- +Refine Level +5: +For each 60 base DEX: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +7: +For each 10 base DEX: +Increases Ranged Physical Damage by additional 1%. +-------------------------- +When compounded with Menblatt Card: +For each 10 base DEX: +Decreases Ranged Physical Damage by 1%. +-------------------------- +Type: Garment +Defense: 40 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20899# +A backpack of a worker who worked in a mine. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Decreases damage taken from Fire and Earth elemental attacks by 30%. +-------------------------- +For each Refine Level: +Increases damage of Magma Eruption by 10%. +-------------------------- +Type: Garment +Defense: 16 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +20900# +A scarf used by a ninja hired by the mine owner as a bouncer. +-------------------------- +MDEF +10 +-------------------------- +FLEE +10 +-------------------------- +When Level 1 Release Ninja Spell is learned: +Increases damage of Release Ninja Spell by 40%. +-------------------------- +When Level 5 Throw Huuma Shuriken is learned: +Increases damage of Throw Huuma Shuriken by 50%. +-------------------------- +When Level 5 Swirling Petal is learned: +Increases damage of Swirling Petal by 30%. +-------------------------- +Refine Level +7: +FLEE +20 + +For each Base Level: +Increases damage of Throw Huuma Shuriken by additional 1%. + +For each 2 Base Level: +Increases damage of Release Ninja Spell by additional 1%. + +For each 3 Base Level: +Increases damage of Swirling Petal by additional 1%. +-------------------------- +Refine Level +9: +FLEE +20 +MaxSP +5% +-------------------------- +When equipped by Kagerou/Oboro: +MaxHP +15% +Decreases damage taken from ranged physical attacks by 20%. + +Refine Level +7: +MaxHP +5% +Decreases damage taken from ranged physical attacks by additional 15%. +-------------------------- +When equipped by Kagerou/Oboro: +When equipped with Rectangular Large Sleeve: +Increases damage taken from ranged physical attacks by 35%. + +When equipped with Horn Card: +Increases damage taken from ranged physical attacks by 35%. +-------------------------- +Type: Garment +Defense: 18 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +20901# +A cloak with the power of the spirits of the four major elements. +-------------------------- +Decreases damage taken from Fire, Water, Wind and Earth elemental attacks by 5%. +-------------------------- +For each Refine Level: +Increases damage of Psychic Wave by 3%. +-------------------------- +Type: Garment +Defense: 12 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +20902# +A manteau awarded as a token of gratitude to the hunters who excelled in the hunt. +-------------------------- +FLEE +15, +-------------------------- +Decreases Variable Casting Time by 10%. +Decreases physical damage taken by Animal and Insect race by 10%. +-------------------------- +For each 3 Refine Levels: +Decreases Variable Casting Time by 5%. +-------------------------- +When equipped with True Hunting Boots: +Increases Magical Damage with every element by 7%. +-------------------------- +For each Refine Level above +9 or higher of True Hunting Manteau and True Hunting Boots: +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Type: Garment +Defense: 18 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20903# +A manteau made to show your skills in hunting competitions. +-------------------------- +FLEE +15, +-------------------------- +Decreases Variable Casting Time by 10%. +Decreases physical damage taken by Animal and Insect race by 10%. +-------------------------- +When equipped with Short-term Hunting Boots: +Decreases Fixed Casting Time by 0.3 seconds. +-------------------------- +Type: Garment +Defense: 18 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +20906# +A manteau given to beginner adventurers which are starting another adventure. +-------------------------- +Decreases Neutral elemental damage taken by 20%. +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Garment +Defense: 10 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +20907# +A beautiful cloth woven with fairy wings. +Beautifully decorated brooches are said to bring out the power of the four elements. +-------------------------- +MDEF +10 +-------------------------- +Perfect Dodge +8 +-------------------------- +Decreases damage taken from Demi-Human race monstery by 5%. +-------------------------- +Refine Level +5: +Perfect Dodge +10 +DEF +50, MDEF +5 +-------------------------- +Refine Level +7: +Perfect Dodge +10 +DEF +50, MDEF +5 +-------------------------- +When compounded with Jakk Card: +Decreases damage taken from Fire elemental attacks by 45%. +-------------------------- +When compounded with Dustiness Card: +Decreases damage taken from Wind elemental attacks by 45%. +-------------------------- +When compounded with Hode Card: +Decreases damage taken from Earth elemental attacks by 45%. +-------------------------- +When compounded with Mars Card: +Decreases damage taken from Water elemental attacks by 45%. +-------------------------- +When compounded with Choco Card: +Perfect Dodge -5 +-------------------------- +Type: Garment +Defense: 12 +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20915# +A cape with a pattern that the dorams like. +-------------------------- +MDEF +5 +-------------------------- +ATK +20, MATK +20 +-------------------------- +For each Refine Level: +MaxHP +1%, MaxSP +1% +-------------------------- +When equipped with Doram Suit and Doram Shoes: +Increases movement speed. +Recovers 500 HP and 5 SP every 5 seconds. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Garment +Defense: 20 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Summoner (Doram) +# +20916# +A high-class cape with a pattern that the dorams like. +-------------------------- +MDEF +5 +-------------------------- +ATK +30, MATK +30 +-------------------------- +For each Refine Level: +MaxHP +1%, MaxSP +1% +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +8: +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +9: +Perfect Dodge +15 +-------------------------- +When equipped with Luxury Doram Suit and Luxury Doram Shoes: +Increases movement speed. +Recovers 1000 HP and 10 SP every 5 seconds. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Garment +Defense: 25 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Summoner (Doram) +# +20917# +A elegant cape with a pattern that the dorams like. +-------------------------- +MDEF +5 +-------------------------- +ATK +50, MATK +50 +-------------------------- +Decreases damage taken from Players by 5%. +-------------------------- +For each Refine Level: +MaxHP +2%, MaxSP +2% +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 15%). +-------------------------- +Refine Level +8: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Perfect Dodge +20 +-------------------------- +When equipped with Luxury Doram Suit and Luxury Doram Shoes: +Increases movement speed. +Recovers 1500 HP and 15 SP every 5 seconds. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Garment +Defense: 30 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +20918# +Wings that imitate Angeling Poring carry the spirit of wanting to protect the race from humans. +-------------------------- +MDEF +4 +All Stats +2 +-------------------------- +Set Bonus +Angeling Poring Wing +Angeling Poring Ring +Angeling Poring Earrings +MaxHP + 5% +MaxSP + 5% +-------------------------- +Type: Garment +Defense: 15 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +20922# +A cloak made of the scale of the strongest creature and a feared sea monster. +-------------------------- +MDEF +5 +-------------------------- +Increases Damage on Water elemental by 15%. +-------------------------- +Decreases damage taken from Players by 5%. +-------------------------- +For each Refine Level: +ASPD +1% +Increases Damage on Water elemental by additional 1%. +-------------------------- +Refine Level +10: +Decreases damage taken from Water elemental attacks by 100%. +-------------------------- +When equipped with Toad Card +MaxHP +10% +MDEF +10 +Decreases damage taken from Neutral elemental attacks by 20%. +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Requirement: +Base Level 100 +# +20923# +The first armor made by Goibne. He loved the shoulder straps very much. +-------------------------- +VIT +1 +MDEF +2 +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Water, Wind, Earth and Fire elemental by 5%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Water, Wind, Earth and Fire elemental by additional 5%. +-------------------------- +Type: Garment +Defense: 47 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +All Jobs except Novice +# +20924# +Brave warrior cloak. +It has the power to face all dangers and difficulties. +-------------------------- +Increases resistance against Freezing status by 25%. +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by 4%. +Increases HP Recovery Rate of Recovery Items by 4%. +-------------------------- +When equipped with Brave Suit and Brave Shoes: +Increases Damage against Players by 50%. +Prevents Fear and White Imprison status. +But you still can cast White Imprison on yourself. +Cures Masquerade Ignorance status, when using Elvira Candy. +-------------------------- +Type: Garment +Defense: 16 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 165 +# +20925# +A cloak made for the purpose of taking command on the battlefield. +It is made of a fairly durable material so that you can take command even at the forefront. +-------------------------- +MDEF +10 +-------------------------- +ATK +10, MATK +10 +-------------------------- +MaxHP +3%, MaxSP +3% +-------------------------- +Decreases damage taken from Players by 5%. +-------------------------- +Refine Level +5: +ATK +20, MATK +20 +MaxHP +7%, MaxSP +7% +-------------------------- +Refine Level +7: +ATK +30, MATK +30 +MaxHP +10%, MaxSP +10% +-------------------------- +When equipped with Heroic Ungoliant Boots: +VIT +10, LUK +10 +Decreases SP Consumption by 10%. +Increases Healing skills effectiveness by 20%. +Decreases damage taken from Players by additional 5%. +-------------------------- +When equipped with Heroic Silver Fox Leather Boots: +STR +10, DEX +10 +Decreases After Skill Delay by 20%. +Decreases damage taken from Players by additional 5%. +-------------------------- +When equipped with Heroic Nepenthes Shoes: +AGI +10, INT +10 +Decreases Variable Casting Time by 10%. +Decreases damage taken from Players by additional 5%. +-------------------------- +Type: Garment +Defense: 16 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 165 +# +20931# +A beautiful scarf with an iridescent glow. +Feel the power of the four major elements. +-------------------------- +MaxHP +2% +MaxSP +2% +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases Ranged Physical Damage by 2%. +-------------------------- +When Warg Rider is Level 3: +Decreases cooldown of Unlimit by 180 seconds. +-------------------------- +When Camouflage is Level 5: +Decreases After Skill Delay by of all skills by 10%. +Decreases Arrow Storm skill cooldown by 0.2 seconds. +-------------------------- +For each Level of Aimed Bolt: +Increases Ranged Physical Damage by additional 2%. +Increases damage of Arrow Storm by 1%. +-------------------------- +When Prism Rangers Scarf is unequipped +Unlimit effect is canceled. +-------------------------- +Refine Level +5: +MaxHP, MaxSP +3% +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +7: +MaxHP, MaxSP +5% +Increases Ranged Physical Damage by additional 5%. +-------------------------- +When equipped with Fire Arrow: +Decreases damage taken from Fire elemental attacks by 75%. +-------------------------- +When equipped with Crystal Arrow: +Decreases damage taken from Water elemental attacks by 75%. +-------------------------- +When equipped with Arrow of Wind: +Decreases damage taken from Wind elemental attacks by 75%. +-------------------------- +When equipped with Stone Arrow: +Decreases damage taken from Earth elemental attacks by 75%. +-------------------------- +Type: Garment +Defense: 12 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20932# +A shawl used by ancient Morocc priests. +Very light and highly breathable. +-------------------------- +MaxHP +5% +FLEE +10 +-------------------------- +Refine Level +7: +FLEE +20 +-------------------------- +Refine Level +8: +FLEE +30 +Restores 100% HP and SP when being resurrected. +-------------------------- +Refine Level +9: +FLEE +40 +-------------------------- +Refine Level +10: +Perfect Dodoge +25 +-------------------------- +When equipped with Osiris Card: +MaxHP +15% +Decreases damage taken from Fire elemental attacks by 50%. +Decreases damage taken from Shadow elemental attacks by 100%. +Prevents Curse status. +-------------------------- +Type: Garment +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20933# +Combat engine A type created with Illusion's technology. +It is said to be able to add abilities by attaching various modules. +-------------------------- +MaxHP +1000 +-------------------------- +For each 2 Refine Levels: +MaxHP +100 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When equipped with Illusion Leg Type A: +Increases Critical Damage by 10%. +-------------------------- +When equipped with Illusion Leg Type B: +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Garment +Defense: 50 +Weight: 90 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 130 +# +20934# +Combat engine B type created with Illusion's technology. +It is said to be able to add abilities by attaching various modules. +-------------------------- +MaxHP +1000 +-------------------------- +For each 2 Refine Levels: +MaxHP +100 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 5%. +-------------------------- +When equipped with Illusion Leg Type A: +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Illusion Leg Type B: +Increases Magical Damage with every element by 10%. +-------------------------- +Type: Garment +Defense: 50 +Weight: 90 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 130 +# +20935# +Manteau that combines the skin of the creatures that live in the lava dungeon. +It seems to be still in heat. +-------------------------- +HIT +10 +-------------------------- +Refine Level +7: +HIT +5 +-------------------------- +Refine Level +9: +HIT +5 +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 3%. +-------------------------- +When equipped with Lava Leather Boots: +HIT +5 +-------------------------- +Type: Garment +Defense: 50 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 175 +# +20936# +Muffler that combines the skin of the creatures that live in the lava dungeon. +It seems to be still in heat. +-------------------------- +Critical +5 +-------------------------- +Refine Level +7: +Critical +5 +-------------------------- +Refine Level +9: +Increases Critical Damage by 5%. +-------------------------- +Refine Level +11: +ATK +3% +-------------------------- +When equipped with Lava Leather Shoes: +Increases Critical Damage by 5%. +-------------------------- +Type: Garment +Defense: 35 +Weight: 35 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 175 +# +20937# +Hood that combines the skin of the creatures that live in the lava dungeon. +It seems to be still in heat. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by additional 10%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 10%. +-------------------------- +Refine Level +11: +Increases Fire elemental magical damage by 5%. +-------------------------- +When equipped with Lava Leather Sandals: +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Garment +Defense: 25 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 175 +# +20939# +A manteau made only for you in this world. +-------------------------- +Decreases damage taken from Water, Wind, Earth and Fire elemental attacks by 10%. +FLEE +30, HIT +10. +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Temporal Transcendence Boots: +Decreases Variable Casting Time by 10%. +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Type: Garment +Defense: 30 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +20940# +The blinking violet wings are floating behind the back. +The reality seems to be a small size hologram projector. +-------------------------- +Indestructible in battle +-------------------------- +MATK +20 +Increases Ranged Physical Damage by 3%. +Increases Critical Damage by 3%. +-------------------------- +For each 3 Refine Levels: +MATK +20 +Increases Ranged Physical Damage by 3%. +Increases Critical Damage by 3%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 4%. +-------------------------- +When equipped with Magical Booster[1]: +Decreases Variable Casting Time by 30%. +-------------------------- +When equipped with Crimson Booster[1]: +Increases Ranged Physical Damage by 14%. +-------------------------- +When equipped with Sigrun's Wings/Sigrun's Wings[1]: +Increases Critical Damage by 14%. +-------------------------- +When equipped with Dark Blinkers/Dark Blinkers [1]: +Decreases After Skill Delay by 6%. +-------------------------- +Type: Garment +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +20941# +A cloak made of the wings of a phoenix and a feared flame monster. +-------------------------- +MDEF +5 +-------------------------- +Increases Damage against monsters of Fire elemental by 15%. +-------------------------- +Decreases damage taken from Players by 5%. +-------------------------- +For each Refine Level: +Increases Attack Speed (Decreases After Attack Delay by 1%). +Increases Damage against monsters of Fire elemental by additional 1%. +-------------------------- +Refine Level +10: +Decreases damage taken from Fire elemental attacks by 100%. +-------------------------- +When compounded with Mastering Card: +MDEF +10, FLEE +20 +Decreases damage taken from Neutral elemental attacks by 20%. +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20942# +A manteau made of a material that is as hard as Kongo stone. +-------------------------- +MDEF +15 +-------------------------- +MaxHP +5%, MaxSP +5% +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +For each 3 Refine Levels: +MaxHP +3%, MaxSP +3% +-------------------------- +When equipped with Kongo Stone Shoes: +Decreases damage taken from Neutral elemental attacks by 10%. +Decreases damage taken from Doram Players by 10%. +Prevents Stone Curse status. +-------------------------- +Type: Garment +Defense: 15 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20943# +Rare equipment offered in Collector Kachua's collection list. +It was reported that it was used in the past by Gefen's Archmage, but it was known to have been practiced. +It seems to be related to the equipment that was given at the Geffen Magic Tournament. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +MATK +1% +-------------------------- +Refine Level +7: +Increases Magical Damage with every element by 5%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 10%. +-------------------------- +When equipped with Geffen Magic Robe: +MATK +30 + +Refine Level of Geffen Magic Robe is +11 or higher: +MATK +40 +Decreases Variable Casting Time by additional 20%. +-------------------------- +When equipped with Magic Intensifier Ring: +Decreases SP Consumption by 5%. +-------------------------- +Type: Garment +Defense: 20 +Weight: 55 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +20944# +It seems to have been one of the products of the Geffen Magical Tournament, but it seems to be hidden in Kachua's secret box for some reason. +It seems to be matched with the equipment and sets that were given in the past GefFen Magic Competition. +-------------------------- +MaxHP +300 +-------------------------- +For each 2 Refine Levels: +MaxHP +100 +-------------------------- +For each 3 Refine Levels: +MaxHP +2% +-------------------------- +Refine Level +7: +ATK +7% +-------------------------- +Refine Level +9: +MaxHP +10% +-------------------------- +When equipped with Anti-Magic Suit: +ATK +30 + +Refine Level of Anti-Magic Suit is +11 or higher: +ATK +40 +Decreases After Skill Delay by 10%. +-------------------------- +When equipped with Physical Enhancer Ring: +Decreases After Skill Delay by additional 5%. +-------------------------- +Type: Garment +Defense: 23 +Weight: 75 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +20945# +A manteau made by the royal family as a token of appreciation for hunters who excelled in hunting competitions. +-------------------------- +FLEE +15 +Increases Attack Speed (Decreases After Attack Delay by 5%). +Decreases damage taken from Animal and Insect race by 7%. +-------------------------- +For each 3 Refine Levels: +Decreases Variable Casting Time by 2%. +-------------------------- +When equipped with Regia Hunting Boots: +ATK +20, MATK +20. +-------------------------- +For each Refine Level above +9 or higher of Regia Hunting Manteau and Regia Hunting Boots: +Increases Attack Speed (Decreases After Skill Delay by additional 5%). +-------------------------- +Type: Garment +Defense: 9 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +20946# +Hood made of various parts of a powerful dragon. +You can feel the pressure of the dragon just by wearing it. +-------------------------- +DEF +20 +MDEF +2 +Increases recovery rate received from skills and items by 15%. +-------------------------- +Refine Level +7: +Decreases damage taken from Dragon race by 2%. +-------------------------- +Refine Level +9: +Recieving physical or magical damage has a chance to recover 2000 HP per second for 3 seconds. +-------------------------- +Refine Level +11: +Decreases damage taken from Dragon race by additional 3%. +-------------------------- +Type: Garment +Defense: 23 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +20947# +Cloak worn by the priests who worshiped Odin. +The enchanted blessing of the cloak gently wraps the whole body. +-------------------------- +MaxSP +5% +MDEF +10 +Decreases Variable Casting Time by 10%. +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage against monsters of Angel and Demon race by 1%. +-------------------------- +For each 3 Refine Levels: +Decreases damage taken from Angel and Demon race by 1%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by additional 10%. +-------------------------- +Type: Garment +Defense: 40 +Weight: 45 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +20948# +One of three keys to unlocking Morpheus power, +this shawl is said to contain ancient spells. +-------------------------- +MaxSP +10% +MDEF +5 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 10%. +-------------------------- +Position: Garment +Defense: 8 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +20949# +A brown dragon's shell with 100 heads guarding a golden apple. +-------------------------- +AGI +5, VIT +5 +MDEF +10 +-------------------------- +Decreases damage taken from Demi-Human and Brute race by 5%. +-------------------------- +Decreases damage taken from Earth and Wind elemental attacks by 5%. +-------------------------- +Refine Level +7: +Restores 10 SP when a monster is killed by a physical attack. +-------------------------- +Refine Level +7: +For each 20 combined sum of base AGI and VIT: +ATK +15, HIT +5 +-------------------------- +If Refine Level is +9 or higher, +Restores additional 10 SP when a monster is killed by a physical attack. +-------------------------- +Type: Garment +Defense: 15 +Weight: 60 +Requirement: +Base Level 100 +# +20952# +A muffler allegedly worn by an assassin who was loyal to his mission. +Designed to move faster than anyone. +-------------------------- +MaxHP +3% +MaxSP +3% +MDEF +5 +Decreases damage from Players by 5%. +-------------------------- +Refine Level +7: +MaxHP +7%, MaxSP +7% +ASPD +1 +Gain 5 SP when defeating monsters with physical attacks. +-------------------------- +Refine Level +8: +Increases Movement Speed. +-------------------------- +Refine Level +9: +MaxHP +10%, MaxSP +10% +ASPD +1 +Gain additional 5 SP when defeating monsters with physical attacks. +-------------------------- +Refine Level +10: +Enables the use of Level 3 Cloacking. +-------------------------- +Type: Garment +Defense: 10 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20953# +Hood for top adventurers on a new adventure. +-------------------------- +Indestructible in battle +-------------------------- +HIT +10 +-------------------------- +Type: Garment +Defense: 25 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +20955# +A christmas tree hanging on the back to save the Christmas atmosphere. +Since it has holy power, it resonates with various items to give special abilities to the wearer. +-------------------------- +For each 2 Refine Levels: +ATK +1% +MATK +1% +-------------------------- +Refine Level +9: +ATK +30 +MATK +30 +-------------------------- +Refine Level +11: +Physical melee attacks have a chance to increase Magical Damage with Holy and Neutral element by 20% for 10 seconds. +-------------------------- +When equipped with Noble Cross and Wounded Mind: +MATK +30 +Increases damage of Double Light by 40%. + +Refine Level of Noble Cross is +10 or higher: +Increases damage of Double Light by additional 20%. +-------------------------- +When equipped with Noble Cross and Gentle Heart: +ATK +30 +Increases damage of Knuckle Arrow by 40%. + +Refine Level of Noble Cross is +10 or higher: +Increases damage of Knuckle Arrow by additional 20%. +-------------------------- +When equipped with Old Parasol and Evil Thread Glove: +MATK +80 +Physical melee attacks have a chance to auto-cast Level 10 Soul Strike. + +Refine Level of Old Parasol is +10 or higher: +Physical melee attacks have a chance to auto-cast Level 5 Napalm Vulcan. +-------------------------- +When equipped with Evil Thread Glove and Red Lantern: +Increases Attack Speed (Decreases After Attack Delay by 10%). +HIT +10, MATK +10% + +Refine Level of Christmas Guardian Tree is +10 or higher: +Physical melee attacks have a chance to auto-cast Level 3 Psychic Wave. +-------------------------- +When equipped with Wounded Mind and Gentle Heart: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases Ranged Physical Damage by 10%. +ATK +10% + +Refine Level of Christmas Guardian Tree is +10 or higher: +HIT +15 +Increases Critical Damage by 15%. +-------------------------- +Type: Garment +Defense: 20 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +20963# +It must have been made a long time ago, but it is a mysterious cloak that has never been worn or worn out. +Has the ability to strengthen your power. +-------------------------- +For each 2 Refine Levels: +ATK +10 +ATK +1% +-------------------------- +For each 4 Refine Levels: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +7: +ATK +7% +-------------------------- +Refine Level +9: +Ignores 20% physical and magic defense of Animal and Demon race monsters. +-------------------------- +Refine Level +11: +Ignores additional 10% physical and magic defense of Animal and Demon race monsters. +-------------------------- +When equipped with Temporal STR Boots or Modified Temporal STR Boots: +ATK +50 + +Refine Level of Temporal STR Boots or Modified Temporal STR Boots is +10 or higher: +Ignores 20% physical and magic defense of Animal and Demon race monsters. +-------------------------- +Type: Garment +Defense: 38 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20964# +It must have been made a long time ago, but it is a mysterious cloak that has never been worn or worn out. +Has the ability to strengthen your agility. +-------------------------- +For each 2 Refine Levels: +ATK +10 +Increases Critical Damage by 3%. +-------------------------- +For each 4 Refine Levels: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +7: +ATK +7% +-------------------------- +Refine Level +9: +Ignores 20% physical and magic defense of Animal and Demon race monsters. +-------------------------- +Refine Level +11: +Ignores additional 10% physical and magic defense of Animal and Demon race monsters. +-------------------------- +When equipped with Temporal AGI Boots or Modified Temporal AGI Boots: +Increases Critical Damage by 7%. + +Refine Level of Temporal AGI Boots or Modified Temporal AGI Boots is +10 or higher: +Ignores 30% physical and magic defense of Animal and Demon race monsters. +-------------------------- +Type: Garment +Defense: 38 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20965# +It must have been made a long time ago, but it is a mysterious cloak that has never been worn or worn out. +Has the ability to strengthen your stamina. +-------------------------- +For each 2 Refine Levels: +ATK +10 +MaxHP +400 +-------------------------- +For each 4 Refine Levels: +MaxHP +3% +-------------------------- +Refine Level +7: +ATK +7% +-------------------------- +Refine Level +9: +Ignores 20% physical and magic defense of Animal and Demon race monsters. +-------------------------- +Refine Level +11: +Ignores additional 10% physical and magic defense of Animal and Demon race monsters. +-------------------------- +When equipped with Temporal VIT Boots or Modified Temporal VIT Boots: +Decreases After Skill Delay by 5%. + +Refine Level of Temporal VIT Boots or Modified Temporal VIT Boots is +10 or higher: +Ignores 30% physical and magic defense of Animal and Demon race monsters. +-------------------------- +Type: Garment +Defense: 38 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20966# +It must have been made a long time ago, but it is a mysterious cloak that has never been worn or worn out. +Has the ability to strengthen your intelligence. +-------------------------- +For each 2 Refine Levels: +MATK +10 +MATK +1% +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with every element by 3%. +-------------------------- +Refine Level +7: +MATK +7% +-------------------------- +Refine Level +9: +Ignores 20% physical and magic defense of Animal and Demon race monsters. +-------------------------- +Refine Level +11: +Ignores additional 10% physical and magic defense of Animal and Demon race monsters. +-------------------------- +When equipped with Temporal INT Boots or Modified Temporal INT Boots: +MATK +50 + +Refine Level of Temporal INT Boots or Modified Temporal INT Boots is +10 or higher: +Ignores 30% physical and magic defense of Animal and Demon race monsters. +-------------------------- +Type: Garment +Defense: 38 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20967# +It must have been made a long time ago, but it is a mysterious cloak that has never been worn or worn out. +Has the ability to strengthen your dexterity. +-------------------------- +For each 2 Refine Levels: +ATK +10 +Increases Ranged Physical Damage by 1%. +-------------------------- +For each 4 Refine Levels: +Increases Critical Damage by 3%. +-------------------------- +Refine Level +7: +ATK +7% +-------------------------- +Refine Level +9: +Ignores 20% physical and magic defense of Animal and Demon race monsters. +-------------------------- +Refine Level +11: +Ignores additional 10% physical and magic defense of Animal and Demon race monsters. +-------------------------- +When equipped with Temporal DEX Boots or Modified Temporal DEX Boots: +Increases Ranged Physical Damage by 7%. + +Refine Level of Temporal DEX Boots or Modified Temporal DEX Boots is +10 or higher: +Ignores 30% physical and magic defense of Animal and Demon race monsters. +-------------------------- +Type: Garment +Defense: 38 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20968# +It must have been made a long time ago, but it is a mysterious cloak that has never been worn or worn out. +Has the ability to strengthen your luck. +-------------------------- +For each 2 Refine Levels: +Critical +3 +Increases Critical Damage by 3%. +-------------------------- +For each 4 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +7: +ATK +7% +-------------------------- +Refine Level +9: +Ignores 20% physical and magic defense of Animal and Demon race monsters. +-------------------------- +Refine Level +11: +Ignores additional 10% physical and magic defense of Animal and Demon race monsters. +-------------------------- +When equipped with Temporal LUK Boots or Modified Temporal LUK Boots: +ASPD +1 + +Refine Level of Temporal LUK Boots or Modified Temporal LUK Boots is +10 or higher: +Ignores 30% physical and magic defense of Animal and Demon race monsters. +-------------------------- +Type: Garment +Defense: 38 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +20988# +Butterfly wings with fine mechanical decoration. +If you're a steampunk enthusiast, you'll feel it's an irresistibly beautiful look. +-------------------------- +Type: Costume +Location: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20990# +An alchemist's ornament. +It seems that the constantly rotating gears symbolize the passage of time. +-------------------------- +Type: Costume +Location: Garment +Weight: 0 +-------------------------- +Requirement: None +# +20992# +Wings inspired by the angels gracefully soaring through the Garden of Eden. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Location: Garment +Weight: 0 +-------------------------- +Requirement: None +# +21000# +TwoHanded Sword that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +12 +MATK +5 +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Two-Handed Sword +Attack: 100 +Weight: 150 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Swordman classes +# +21001# +*Effects in WoE & PVP area +Increases Physical Damage against Players by 80% and bypasses 30% physical defense. +-------------------------- +Refine Level +6: +Increases Physical Damage against Players by additional 40%. +-------------------------- +Refine Level +9: +Has a chance to reflect damage back to the enemy as well as casting Magic Mirror. +-------------------------- +Type: Two-Handed Sword +Attack: 260 +Weight: 350 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 95 +Swordman classes +# +21002# +*Effects in WoE & PVP area +This weapon ignores it's attack damage while decreaseing the target's HP by 8% on each physical attack. (This effect does not work with skills) +-------------------------- +Type: Two-Handed Sword +Attack: 100 +Weight: 250 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 95 +Swordman classes +# +21003# +An oriental sword named after a legendary Japanese swordsmith. +-------------------------- +Critical +30 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 8%). +-------------------------- +Random chance to inflict Curse status on wielder when dealing physical damage. +-------------------------- +Type: Two-Handed Sword +Attack: 155 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +21004# +A reddish wide Two-Handed Sword. +-------------------------- +For each 2 Refine Levels: +ASPD +1 +-------------------------- +Type: Two-Handed Sword +Attack: 280 +Weight: 340 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +21005# +Two-Handed Sword coated with metal +-------------------------- +Type: Two-Handed Sword +Attack: 160 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Swordman classes +# +21006# +Rental Item +*Effects in WoE TE area +Increases Physical Damage against Players by 40%. +Random chance to inflict Bleeding status when dealing physical damage. +-------------------------- +Type: Two-Handed Sword +Attack: 150 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Swordman classes +# +21007# +A heavy broadsword with small cracks along its edges. It must have been used in many battles. +'-The sword of Richard.R.Grants' +-------------------------- +STR +20 +-------------------------- +Type: Two-Handed Sword +Attack: 330 +Weight: 250 +Weapon Level: 1 +-------------------------- +Requirement: +Base Level 150 +Rune Knight and Royal Guard +# +21008# +A rare japanese sword with doubled edge. The wound caused by it is not easy to heal. +-------------------------- +For each Refine Level: +Increases Critical Damage by 2%. +-------------------------- +Random chance to auto-cast Level 1 Critical Wound when dealing physical damage. +-------------------------- +Type: Two-Handed Sword +Attack: 170 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 50 +Swordman classes +# +21009# +A Broadsword sculpted from Gray Shard to counter Magic Sword Tartanos. +It offers incredible power and magic at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +120 +-------------------------- +Has low chance to drain 5% of damage inflicted into HP and SP. +-------------------------- +Drains 100 HP every 10 seconds. +Drains 1,000 HP when unequipped. +-------------------------- +Type: Two-Handed Sword +Attack: 280 +Weight: 130 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Rune Knight and Royal Guard +# +21010# +This Two-Handed Sword was once used for vanquishing an evil slayer and his followers. +-------------------------- +Increases Physical Damage against enemies of Demon and Undead race by 10%. +-------------------------- +Refine Level +9: +ATK +5% +-------------------------- +Refine Level +12: +ATK +7% +-------------------------- +Type: Two-Handed Sword +Attack: 225 +Weight: 200 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Rune Knight and Royal Guard +# +21011# +A large knife used to cut something, the handle is missing. +-------------------------- +Increases After Attack Delay by 5%. +-------------------------- +Base STR is below 110: +ATK -250 +-------------------------- +For each Refine Level: +Increases Critical Damage by 1%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Sword +Attack: 300 +Weight: 500 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Rune Knight and Royal Guard +# +21012# +A sword belong to magic swordman, His magic power poured to this Two-Handed Sword. +-------------------------- +MATK +150 +-------------------------- +When equipped with Death Word Card: +Random chance to auto-cast Level 5 Soul Strike when dealing melee physical attacks. +-------------------------- +When equipped with Pitman Card: +Random chance to auto-cast Level 5 Earth Spike when dealing melee physical attacks. +-------------------------- +When equipped with Hill Wind Card: +Random chance to auto-cast Level 5 Lightning Bolt when dealing melee physical attacks. +-------------------------- +When equipped with Laurell Weinder Card: +Random chance to auto-cast Level 5 Cold Bolt when dealing melee physical attacks. +-------------------------- +When equipped with Red Ferus Card: +Random chance to auto-cast Level 5 Fire Bolt when dealing melee physical attacks. +-------------------------- +For each Refine Level of weapon increases the chance of triggering magic. +-------------------------- +Type: Two-Handed Sword +Attack: 200 +Weight: 220 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 110 +Rune Knight +# +21013# +Ancient Two-Handed Sword that once used by cavalry. +-------------------------- +Decreases SP Consumption of Auto Counter by 2. +-------------------------- +Decreases SP Consumption of Parrying by 25. +-------------------------- +When equipped with Golem Card: +Decreases damage taken from Small and Large size by 15%. +-------------------------- +Type: Two-Handed Sword +Attack: 210 +Weight: 220 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 110 +Rune Knight +# +21014# +This weapon contains a strange energy. There are hidden stats sealed inside this sword. +-------------------------- +Type: Two-Handed Sword +Attack: 230 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rune Knight and Royal Guard +# +21015# +Two-Handed Sword that emitting red aura. +-------------------------- +ATK increased by (RefineLv*RefineLv) +up to +15 Refine Level. +MATK increased by (RefineLv*RefineLv)/2 +up to +15 Refine Level. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Two-Handed Sword +Attack: 170 +Weight: 170 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Swordman classes +# +21016# +Two-Handed Sword imbued with Vicious Mind. +-------------------------- +Increases ATK by (Refinelv*Refinelv). +(up to +15 Refine Level) +-------------------------- +Increases MATK by (Refinelv*Refinelv)/2. +(up to +15 Refine Level) +-------------------------- +Type: Two-Handed Sword +Attack: 220 +Weight: 220 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 160 +Rune Knight and Royal Guard +# +21017# +A two handed sword that was acquired from defeating the demon god and it's followers. +-------------------------- +Refine Level +5: +Increases Damage against Demon Morocc monsters by 40%. +Decreases damage taken from Demon Morocc monsters by 10%. +-------------------------- +Refine Level +7: +Increases Damage against Demon Morocc monsters by additional 20%. +Decreases damage taken from Demon Morocc monsters by additional 10%. +-------------------------- +Refine Level +9: +Increases Damage against Demon Morocc monsters by additional 20%. +Decreases damage taken from Demon Morocc monsters by additional 20%. +-------------------------- +Type: Two-Handed Sword +Attack: 225 +Weight: 200 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Knight and Crusader +# +21018# +Sword once used by berserker Riel. You can feel steady rhythm of enemy movement which passing in your sight. +-------------------------- +For each Refine Level: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +For each 2 Refine Levels: +ATK +1%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Sword +Attack: 340 +Weight: 340 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 170 +Rune Knight and Royal Guard +# +21019# +One of five famous swords in eastern country. +Its sharpness and handling increases the force of its user. +-------------------------- +Every 1 STR Increases ATK by 1, however it's limited up to 120 stat point. +-------------------------- +Base STR at least 95: +ATK +40 +-------------------------- +Base STR at least 108: +ATK +80 +-------------------------- +Base STR at least 120: +ATK +120 +-------------------------- +Refine Level +7: +Random chance to inflict Curse status on the targets within 11x11 cells when dealing physical damage. +Refine Level +9: +Random chance to auto-cast Level 5 Maximum Power Thrust When using Berserk skill. +When Maximum Power Thrust is activated, it will consume 5,000 zeny. +-------------------------- +Type: Two-Handed Sword +Attack: 75 +Weight: 420 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Rune Knight +# +21020# +A large blade with a missing handle. +-------------------------- +Restore SP by 1 when dealing Physical Damage on Demi-Human race monster. +-------------------------- +Restores SP by 1 when defeating Demi-Human race monster with melee physical attacks. +-------------------------- +Refine Level +7: +Restore SP by 1 when defeating Demi-Human race monster with melee physical attacks. +-------------------------- +Refine Level +10: +Ignores Demi-Human race monster's physical defense. +Restore SP by 1 when dealing Physical Damage on Demi-Human race monster. +Restore SP by 10 when defeating Demi-Human race monster with melee physical attacks. +-------------------------- +Type: Two-Handed Sword +Attack: 200 +Weight: 350 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +21021# +Equipment made to survive Malangdo Island. +An excellent product that can hold Malangdo enchantments and sells at unexpectedly high price. +-------------------------- +Increases Damage against monsters in Malangdo Culvert and Octopus Cave by 50%. +Decreases damage taken from Malangdo Culvert and Octopus Cave monsters by 30%. +-------------------------- +Type: Two-Handed Sword +Attack: 225 +Weight: 200 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Knight classes and Crusader classes +# +21022# +A two-handed sword awarded by the king. +It seems to be effective in calming the souls of the dead. +-------------------------- +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by 40%. +-------------------------- +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by 5%. +-------------------------- +Refine Level +5: +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by additional 30%. +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by additional 5%. +-------------------------- +For each Refine Level equal or above +6: +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by additional 15%. +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by additional 1% +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Sword +Attack: 220 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Swordman classes +# +21023# +A metallic Two-Handed Sword made of oridecon created for experienced adventurers. +-------------------------- +Increases damage of Ignition Break by 10%. +-------------------------- +For each Refine Level: +ATK +8, MATK +3, ASPD +2 +-------------------------- +For each 10 Base Level: +ATK +7(Applies up to Base Level 150) +-------------------------- +Type: Two-Handed Sword +Attack: 120 +Weight: 0 +Weapon Level: 3 +Enchantable: Yes +Enchanter: Jumping Enchant Specialistprontera,151,187,0,100,0,0 +-------------------------- +Requirement: +Base Level 100 +Rune Knight and Royal Guard +# +21024# +A sword that only allows for its swordmaster to use it. +-------------------------- +STR +1 +DEX +1 +-------------------------- +When Bash is mastered: +Increases damage of Bash by 50%. +-------------------------- +When Bowling Bash is mastered: +Increases damage of Bowling Bash by 50%. +-------------------------- +When equipped with Heroic Shoes: +For each Level of Enchant Blade and Aura Blade: +Increases damage of Bash and Bowling Bash by 10%. +-------------------------- +Type: Two-Handed Sword +Attack: 180 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 80 +Swordman classes +# +21025# +A weapon dyed in the dark made by those who have left the battlefield and left the world. +Although it is a two-handed weapon, it has a high defense against human races. +-------------------------- +Increases Physical Damage against enemies in Demi-Human race by 45%. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Refine Level +5: +Increases Physical Damage against enemies in Demi-Human race by additional 25%. +Decreases damage taken from Demi-Human race by additional 10%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies in Demi-Human race by additional 20% +Decreases damage taken from Demi-Human race by additional 10%. +Slaughter Lv2 +-------------------------- +Refine Level +9: +Physical attacks have a certain chance to Reduces After Skill Delay by 100% for 5 seconds. +-------------------------- +Indestructible in battle +-------------------------- +Can be sold to NPC. +-------------------------- +Type: Two-Handed Sword +Attack: 220 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +3rd Swordsman classes +# +21026# +A weapon of unknown origin that contains the magic of the labyrinth. +It is unclear what kind of material it is made from, and even similar weapons have different performance. +-------------------------- +MATK +230 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When equipped with Labyrinth Baphomet Card: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Type: Two-Handed Sword +Attack: 280 +Weight: 340 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +3rd Swordsman classes +# +21027# +A Diva Claymore that has mutated under the influence of the power of the labyrinth. +It is unclear what kind of material it is made from, and even similar weapons have different performance. +-------------------------- +Attack Range: 5 cells +-------------------------- +MATK +230 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: Two-Handed Sword +Attack: 280 +Weight: 340 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +3rd Swordsman classes +# +21028# +A two-handed sword that contains evil thoughts. +-------------------------- +For each Refine Level: +ATK +1 +-------------------------- +Type: Two-Handed Sword +Attack: 210 +Weight: 110 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +3rd Swordsman classes +# +21029# +A sword known to be used by Berserker Riel. +It seems that a certain rhythm seems to be felt when he sees him cut down the enemy. +-------------------------- +Refine Level +7: +ATK +25%. +-------------------------- +Refine Level +9: +ATK +25%. +-------------------------- +Refine Level +9: +Nullifies weapon damage penalty against all size enemies. +-------------------------- +When equipped with Immortal Corps Dog Tag: +For each Refine Level of Lindy Hop (jRO): +Increases Critical Damage by 3%. + +Refine Level of Lindy Hop (jRO) is +9 or higher: +Critical +50 +Increases Physical Damage against enemies of Boss class by 25%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Sword +Attack: 300 +Range: 3 +Weight: 900 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +3rd Swordsman classes +# +21030# +A two-handed sword for Rune Knights who are more or less used to handling runes. +When equipped with Enhanced Time Keeper Armor, will makes wearer's body more agile. +-------------------------- +Critical +10 +-------------------------- +Increases Critical Damage by 10%. +-------------------------- +For each 10 Base Level: +ATK +6 (Up to Base Level 160). +-------------------------- +Refine Level +7: +For each Level of TWo-Handed Quicken: +Increases Attack Speed (Decreases After Attack Delay by 1%.) +-------------------------- +When equipped with Enhanced Time Keeper Hat, Enhanced Time Keeper Robe, nhanced Time Keeper Manteau, Enhanced Time Keeper Boots: +ASPD +2, +MaxHP and MaxSP +10% + +For every 10 Base VIT: +Decreases damage taken from Neutral elemental attacks by 3%. +(up to Base VIT 100) + +For every 10 Base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +(up to Base AGI 100) + +For every 10 Base DEX: +HIT +3 +(up to Base DEX 100) + +For every 10 Base LUK: +Critical +3 +(up to Base LUK 100) +-------------------------- +Type: Two-Handed Sword +Attack: 200 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +21031# +A claymore with the strength to hold the power of Neev. +-------------------------- +MATK +130 +-------------------------- +Base Level at least 175: +ATK +5%, MATK +5% +-------------------------- +When equipped with Neev Barrette: +For each 10 base STR: +ATK +1%. + +For each 10 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 1%). + +For each 10 base VIT: +MaxHP +1% + +For each 10 base INT: +MATK +20 + +For each 10 base DEX: +Decreases Variable Casting Time by 1%. + +For each 10 base LUK: +Critical +1 + +For each Refine Level of Neev Claymore: +ATK +20, MATK +20 +-------------------------- +Type: Two-Handed Sword +Attack: 150 +Weight: 340 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Rune Knight +# +21037# +Two-handed sword specially made for beginner rune knights. +It will show its true ability when equipped together with Beginner Armor set. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +7: +Increases Critical Damage by 7%. +-------------------------- +When equipped with Beginner's Hat, Beginner's Suit, Beginner's Manteau, Beginner's Boots and Beginner's Ring: +For each 10 Base Level: +ATK +3 (up to Base Level 150) +ASPD +1 +ATK +5% +-------------------------- +Type: Two-Handed Sword +Attack: 170 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +21038# +An ancient sword said has cut many evil souls in eastern. +It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Sonic Wave by 10%. +-------------------------- +Refine Level +9: +Random chance to auto-cast Level 2 Sonic Wave when dealing melee physical attacks. +-------------------------- +Refine Level +11: +Indestructible in battle +-------------------------- +When equipped with Ancient Hero's Boots: +3% chance to increase STR by 20 and ATK by 15% for 7 seconds when dealing physical damage. +-------------------------- +Type: Two-Handed Sword +Attack: 180 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +21039# +Heavy Greatsword used by the honorable Knights. +-------------------------- +For each 2 Refine Levels: +ATK +20 +-------------------------- +Refine Level +7: +Increases Critical Damage by 10%. +-------------------------- +Refine Level +9: +Indestructible in battle +-------------------------- +Type: Two-Handed Sword +Attack: 280 +Weight: 400 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 175 +Rune Knight, Royal Guard +# +21046# +A weapon that has been transformed by the magical power of a stranger. +Even if they look the same, their performance is different. +-------------------------- +MATK +230 +-------------------------- +Decreases damage taken from Players by 30%. +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by 5%. +-------------------------- +Refine Level +9: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Sword +Attack: 280 +Weight: 340 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +3rd Swordsman classes +# +21047# +A two-handed sword made of high density emerald that emits rays of light. +-------------------------- +Indestructible in battle +-------------------------- +Critical +5 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases Critical Damage by 15%. +-------------------------- +Refine Level +11: +Increases Damage against monsters of Small and Medium size by 20%. +-------------------------- +Type: Two-Handed Sword +Attack: 250 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Swordman classes +# +21049# +An ancient sword said has cut many eastern demons. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Sonic Wave by 10%. +-------------------------- +Refine Level +7: +Random chance to auto-cast Level 2 Sonic Wave when dealing physical damage. +(Or activates higher skill Level based on wielder's learned skill Level.) +-------------------------- +Refine Level +9: +Indestructible in battle +-------------------------- +Type: Two-Handed Sword +Attack: 180 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 99 +Rune Knight +# +21050# +This is known as the sword of a brave man from the orient. +-------------------------- +Perfect Dodge +10 +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +7: +Decreases SP Consumption by 20%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 20%. +-------------------------- +Refine Level +11: +MaxHP +10% +MaxSP +10% +-------------------------- +When equipped with Illusion Boots: +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level of Illusion Tae Goo Lyeon and Illusion Boots each is +7 or higher: +Decreases Variable Casting Time by 10%. +-------------------------- +Total Refine Level of entire set at least +18: +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Total Refine Level of entire set at least +22: +Increases damage of Dragon Breath and Dragon Breath Water by 20%. +-------------------------- +Type: Two-Handed Sword +Attack: 250 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Rune Knight and Royal Guard +# +21051# +A Two-Handed sword made of Black Light. +-------------------------- +Increases damage of Bowling Bash by 30%. +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Decreases Bowling Bash and Ignition Break skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Bowling Bash by 20%. +-------------------------- +Type: Two-Handed Sword +Attack: 280 +Weight: 280 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Rune Knight +# +21052# +A Two-Handed sword with wide blade. +-------------------------- +ATK +5% +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +9: +Increases damage of Spiral Pierce and Sonic Wave by 30%. +-------------------------- +Refine Level +11: +Decreases Sonic Wave skill cooldown by 1.5 seconds. +-------------------------- +Type: Two-Handed Sword +Attack: 300 +Weight: 650 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Rune Knight +# +21054# +A tool used to clean up various residues at the construction site. +Can be used for many purposes. +-------------------------- +ATK +15% +Critical +5 +-------------------------- +Refine Level +7: +Increases Critical Damage by 25%. +Increases Attack Speed (Decreases After Attack Delay by 10%) +-------------------------- +Refine Level +9: +Physical attacks have a chance to increase physical damage against all size enemies by 20% for 5 seconds. +-------------------------- +Refine Level +11: +Critical +7 +Decreases After Skill Delay by 20%. +-------------------------- +Type: Two-Handed Sword +Attack: 300 +Weight: 350 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Rune Knight +# +21055# +A ceremonial two-handed sword used by the Glastheim Guards. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +ATK +5% +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Critical +5 +Increases Critical Damage by 25%. +-------------------------- +Refine Level +11: +Indestructible in battle +Increases Physical Damage against enemies of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +ATK +30 +Physical attacks have a chance to increase critical damage by additional 20% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Physical Damage against enemies of Holy and Undead elemental by 20%. +-------------------------- +Type: Two-Handed Sword +Attack: 280 +Weight: 400 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Rune Knight +# +21058# +A great sword said to have been used by a dragon slayer in the past. +He regained the glory of the past and began to show his abilities. +It seems to resonate with the Great Hero's Boots. +-------------------------- +For each 2 Refine Levels: +MaxHP/MaxSP +5% +-------------------------- +For each 3 Refine Levels: +Increases damage of Dragon Breath and Dragon Breath - Water by 5%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay and Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 10%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 7%. +MaxSP +5% +-------------------------- +When equipped with Great Hero Boots: +VIT +10 +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Two-Handed Sword +Attack: 200 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rune Knight +# +21063# +Claymore refined with Clock Tower parts and quenched with etheric power. +It supplemented the shortcomings of the existing Fortified Claymore. +-------------------------- +For each 2 Refine Levels: +Increases damage of Storm Slash by 6%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Hack and Slasher by 5%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 3%. +-------------------------- +[Bonus by Grade] +[Grade D]: POW +2 +[Grade C]: Damage of Storm Slash +10%. +[Grade B]: P.ATK +2 +-------------------------- +Type: Two-Handed Sword +Attack: 280 +Weight: 250 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Dragon Knight +# +21202# +It has been said that, since ancient times, octopigs have increased wealth and luck, and made ornaments that collect coins using the legs of octopigs. +It is said that it eats coins well, and it is named Eat Coin. +-------------------------- +Type: Costume +Position: Middle, Bottom +Weight: 10 +-------------------------- +Requirement: None +# +21205# +A mask made of nutcracker hair. +Both cheeks were filled with savory nuts to create a sense of volume. +It smells of animals a little, but it is very soft and warm, so it is said to be excellent for cold weather in winter. +-------------------------- +Type: Costume +Position: Middle, Bottom +Weight: 10 +-------------------------- +Requirement: None +# +21206# +A mask made of nutcracker hair. +Both cheeks were filled with savory nuts to create a sense of volume. +It smells of animals a little, but it is very soft and warm, so it is said to be excellent for cold weather in winter. +-------------------------- +Type: Costume +Position: Middle, Bottom +Weight: 0 +-------------------------- +Requirement: None +# +21207# +Bull-headed mask. +The dye preparation was forgotten and it was made white. +-------------------------- +Type: Costume +Position: Middle, Bottom +Weight: 0 +-------------------------- +Requirement: None +# +21300# +A mask of the East, modeled after a lion. The lion's eyes wide open, as if to be scared, are scary. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +22000# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +STR +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +ATK +5 +-------------------------- +In case the original STR is more than 99: +ATK +30 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +22001# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +INT +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +MATK +5 +-------------------------- +In case the original INT is more than 99: +MATK +30 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +22002# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +AGI +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +In case the original AGI is more than 99: +ASPD +1 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +22003# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +VIT +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +-------------------------- +In case the original VIT is more than 99: +MaxHP +5% +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +22004# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +DEX +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +DEX +3 +-------------------------- +In case the original DEX is more than 99: +fixed casting decreased 0.3sec +long distance attack power + 3%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +22005# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +LUK +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +Increases Critical Damage by 1%. +-------------------------- +In case the original LUK is more than 99: +Increases Critical Damage by 20%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +22006# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +STR +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +ATK +5 +-------------------------- +In case the original STR is more than 99: +ATK +30 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +22007# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +VIT +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +-------------------------- +In case the original VIT is more than 99: +MaxHP +5% +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +22008# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +DEX +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +DEX +3 +-------------------------- +In case the original DEX is more than 99: +fixed casting decreased 0.3sec +long distance attack power + 3%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +22009# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +INT +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +MATK +5 +-------------------------- +In case the original INT is more than 99: +MATK +30 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +22010# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +AGI +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +In case the original AGI is more than 99: +ASPD +1 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +22011# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +LUK +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +Increases Critical Damage by 1%. +-------------------------- +In case the original LUK is more than 99: +Increases Critical Damage by 20%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +22012# +Rental Item +Specially made to help the members of guilds to grow, this formal suit generates special waves and increases your EXP reward from monsters by 10%. +-------------------------- +Type: Shoes +Defense: 0 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Maximum Base Level 100 +# +22014# +A pair of shoes that emanates unnatural feeling. It is evident that the creator tried to challenge the limits but failed in overcoming it. +-------------------------- +MaxHP +12% +MaxSP +12% +-------------------------- +Increases DEF and MDEF based of Refine Level. +-------------------------- +Type: Shoes +Defense: 13 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 85 +2nd Classes, Kagerou, Oboro and Rebel +# +22015# +Heavenly sandals worn by the Guardian Angel of Super Novices. +-------------------------- +MaxHP +500 +MaxSP +100 +-------------------------- +When equipped with Modified Angel's Kiss: +MATK +20 +-------------------------- +Type: Shoes +Defense: 8 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Novice +# +22016# +A pair of shoes worn by assassin. +-------------------------- +Increases experience gained from defeating Demi-Human race monsters by 5%. +-------------------------- +For each Refine Level: +Increases experience gained when defeating Demi-Human race monsters by additional 1%. +-------------------------- +When equipped with Assassin's Despair: +For each Refine Level of Assassin's Shoes: +Increases Damage against monsters of Demi-Human race by 1%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22017# +Shoes worn by a man who lived in the fishing industry. +Man's many years of experience are accumulated in the shoes. +-------------------------- +Increases experience gained from defeating Fish race monsters by 5%. +-------------------------- +For each Refine Level: +Increases experience gained from defeating Fish race monsters by additional 1%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22018# +A magic shoes created by wise man. +-------------------------- +For each Refine Level equal or above +6: +INT +1, MaxHP -1% +-------------------------- +Type: Shoes +Defense: 15 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +22019# +Boots with diamond decoration. +-------------------------- +Decreases damage taken from Neutral elemental attacks by 3%. +-------------------------- +Increases damage taken from other elemental attacks by 3%. +-------------------------- +For each Refine Level equal or above +6: +Decreases damage taken from Neutral elemental attacks by additional 1%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +22020# +The combat boots symbolizing the highest status of the Guillotine Cross. +-------------------------- +For each 2 Refine Levels: +MaxHP +1%, MaxSP +1% +-------------------------- +When equipped with Battle Shawl: +When using Dark Illusion on an enemy will auto-cast Cloaking Exceed. + +Bonus AGI at least +10: +ATK +1% +-------------------------- +Type: Shoes +Defense: 17 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Guillotine Cross +# +22021# +The combat boots symbolizing the highest status of the Ranger. +-------------------------- +For each 2 Refine Levels: +MaxHP +100, MaxSP +1% +-------------------------- +When equipped with Battle Shawl: +Base AGI at least 90: +Recieving physical damage has a 10% chance to auto-cast Warg Bite on the enemy and increases damage of ^09900Warg Bite by 20%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Ranger +# +22022# +The combat boots symbolizing the highest status of the Royal Guard. +-------------------------- +For each 2 Refine Levels: +MaxHP +1%, MaxSP +1% +-------------------------- +When equipped with Battle Shawl: +Bonus STR at least +10: +Increases damage of Exceed Break and Pinpoint Attack by 5%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Royal Guard +# +22023# +The combat boots symbolizing the highest status of the Rune Knight. +-------------------------- +For each 2 Refine Levels: +MaxHP +1%, MaxSP +30 +-------------------------- +When equipped with Battle Shawl: +Base VIT at least 100: +Recieving physical damage has a 0.5% chance to auto-cast Kyrie Eleison. +Using Enchant Blade has a 50% chance to increase MATK by 20% for 300 seconds. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Rune Knight +# +22024# +The combat boots symbolizing the highest status of the Mechanic. +-------------------------- +For each 2 Refine Levels: +MaxHP +1%, MaxSP +1% +-------------------------- +When equipped with Battle Shawl: +Bonus VIT at least +10: +Increases damage of Axe Tornado by 5%. + +Base INT at least 100: +Increases damage of Cold Slower and Flame Launcher by 10%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +22025# +The combat boots symbolizing the highest status of the Shadow Chaser. +-------------------------- +For each 2 Refine Levels: +MaxHP +1%, MaxSP +1% +-------------------------- +When equipped with Battle Shawl: +Base INT at least 100: +Using Shadow Form auto-casts Full Strip on your enemy. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Shadow Chaser +# +22026# +The combat boots symbolizing the highest status of the Sura. +-------------------------- +For each 2 Refine Levels: +MaxHP +1%, MaxSP +30 +-------------------------- +When equipped with Battle Shawl: +Base DEX at least 100: +Protects from skill cast interruption. +Increases damage of Sky Net Blow by 10%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Sura +# +22027# +The combat boots symbolizing the highest status of the Archbishop. +-------------------------- +For each 2 Refine Levels: +MaxHP +100, MaxSP +1% +-------------------------- +When equipped with Battle Shawl: +Base INT at least 100: +Decreases SP Consumption by 5%. + +Bonus INT at least +10: +Increases Healing skills effectiveness by 5%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Archbishop +# +22028# +The combat boots symbolizing the highest status of the Archmage. +-------------------------- +For each 2 Refine Levels: +MaxHP +100, MaxSP +1% +-------------------------- +When equipped with Battle Shawl: +Base INT at least 100: +Protects from skill cast interruption. + +Base DEX at least 100: +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Shoes +Defense: 17 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Warlock and Sorcerer +# +22029# +The combat boots symbolizing the highest status of the Perfomer. +-------------------------- +For each 2 Refine Levels: +MaxHP +1%, MaxSP +1% +-------------------------- +When equipped with Battle Shawl: +Increases damage of Severe Rainstorm by 10%. + +Base DEX at least 100: +Increases damage of Severe Rainstorm by additional 10%. + +Base INT at least 100: +Protects from skill cast interruption. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Minstrel and Wanderer +# +22030# +The battle boots that symbolize the highest status of Genetics. +-------------------------- +For each 2 Refine Levels: +MaxHP +100, MaxSP +1% +-------------------------- +When equipped with the Battle Shawl: +Increases damage of Cart Tornado by 10%. + +Base INT at least 100: +Increases damage of Blood Sucker by 10%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +Genetic +# +22031# +A pair of shoes wore by a man who collects many kind of insects. All years of experience were accumulated on these shoes. +-------------------------- +Give 5% more experience when defeating Insect race. +-------------------------- +For each Refine Level: +Gives 1% more experience when defeating Insect race. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22032# +A pair of shoes worn by a man who devoted himself to devotion. All years of experience were accumulated on these shoes. +-------------------------- +Give 5% more experience when defeating Demon race monsters. +-------------------------- +For each Refine Level: +Gives 1% more experience when defeating Demon race monsters. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22033# +Sculpted out of Gray Shard and infused with Sakray's old, abandoned memories, these shoes protect their wearer against holiness and fear. +-------------------------- +Decreases damage taken from Holy elemental attacks by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases damage taken from Holy elemental attacks by additional 1%. +-------------------------- +Type: Shoes +Defense: 25 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +3rd Classes +# +22034# +Gaiter dyed with the blood of defeated enemies. +-------------------------- +Critical +2 +Increases Critical Damage by 2%. +-------------------------- +Refine Level +7: +Critical +3 +Increases Critical Damage by additional 3%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +22035# +This technology will help you to be faster. Made with nepenthes leaves, known for their effect to alleviate muscle tension. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +8: +Decreases Variable Casting Time by additional 5%. + +For each Refine Level above +8: +Decreases Variable Casting Time by additional 1%. (Upt to +10) +-------------------------- +Refine Level +11: +Decreases Variable Casting Time by additional 3%. + +For each Refine Level above +11: +Decreases Variable Casting Time by additional 3%. (Up to +13) +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +22036# +A boots made of silver fox fur that able to increase wearer's traction. +-------------------------- +Increases Ranged Physical Damage by 5%. +-------------------------- +For each Refine Level equal or above +8: +Increases Ranged Physical Damage by additional 1%. +(Up to +13) +-------------------------- +Type: Shoes +Defense: 15 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +22037# +Boots stained with body fluids Ungoliant extract that may improve the capacity to Reduces concentration. +-------------------------- +Decreases SP Consumption by 5%. +-------------------------- +For each Refine Level equal or above +8: +Decreases SP Consumption by additional 1%. +(Up to +13) +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +22038# +A shiny shoes that symbolize a life hope. +-------------------------- +MaxHP +5% +MaxSP +5% +-------------------------- +Refine Level +6: +MaxHP +5% +MaxSP +5% +-------------------------- +When equipped with Kindergarten Hat: +Increases recovery amount gained from Healing skills and items by 5%. +-------------------------- +Base Level is below 80: +Increases movement speed. +-------------------------- +Type: Shoes +Defense: 3 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +22039# +Boots contain the power of four major elements. +-------------------------- +Increases damage of Fire Bolt, Cold Bolt, Lightning Bolt and Earth Spike by 3%. +Decreases Variable Casting Time of Fire Bolt, Cold Bolt, Lightning Bolt and Earth Spike by 3%. +-------------------------- +For each Refine Level equal or above +6: +Increases damage of Fire Bolt, Cold Bolt, Lightning Bolt and Earth Spike by 1%. +Decreases Variable Casting Time of Fire Bolt, Cold Bolt, Lightning Bolt and Earth Spike by 1%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +22040# +The most popular shoes of this year. +-------------------------- +MaxHP +10% +MaxSP +10% +-------------------------- +Refine Level +12: +ASPD +2. +-------------------------- +When equipped with Bright Blue Eyes Shadow: +MaxHP +3%, MATK +4%, INT +3 +Decreases damage taken from Neutral elemental attacks by 5% +-------------------------- +Type: Shoes +Defense: 13 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22041# +The most popular shoes of this year. +-------------------------- +MaxHP +10% +MaxSP +10% +-------------------------- +Refine Level +12: +ASPD +2. +-------------------------- +When equipped with Bright Blue Eyes Shadow: +MaxHP +3%, MATK +4%, INT +3 +Resistance against Neutral elemental attacks +5% +-------------------------- +Type: Shoes +Defense: 13 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22042# +A pair of shoes that given by Hermes to prevent magic from Medusa. +-------------------------- +AGI +2 +ASPD +1 +MDEF +5 +-------------------------- +Type: Shoes +Defense: 15 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +22043# +Mechanical boots that keep you light on your feet. They are much lighter than they look. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +For each 4 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +When equipped with Axe class weapon: +ATK +30 +-------------------------- +Type: Shoes +Defense: 25 +Weight: 35 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +22044# +Designed to significantly improve Movement Speed, this Mado Gear part is easy to assemble and disassemble. +-------------------------- +Decreases SP Consumption of Hovering by 15. +-------------------------- +Refine Level +7: +Decreases SP Consumption of Acceleration by 20. +-------------------------- +Type: Shoes +Defense: 23 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +22045# +Advanced sandals summer in a well-ventilated area. Good report is made easily attend. +-------------------------- +FLEE +5 +-------------------------- +Random chance to auto-cast Level 10 Increase Agility when dealing physical or magical attack. +-------------------------- +Type: Shoes +Defense: 5 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +22046# +Boots used by travelers who come aboard Ferlock's airship. +Stolen by the monsters during the event of airship raid. +-------------------------- +AGI +1 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Type: Shoes +Defense: 26 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 125 +# +22047# +Shoes of Ferlock, captain of the airship. Acquired during the event of airship raid. +-------------------------- +AGI +1 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +7: +AGI +1 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +AGI +1 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +12: +ASPD +1 +-------------------------- +Type: Shoes +Defense: 13 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +# +22048# +Shoes stained by the power of darkness. Reduces attacks from dark attribute monsters. +-------------------------- +MDEF +3. +-------------------------- +Decreases damage taken from Shadow elemental attacks by 5%. +-------------------------- +For each Refine Level: +MaxHP +1% +MaxSP +1% +-------------------------- +When equipped with Sombre Shield: +Decreases damage taken from Shadow elemental by 5%. + +For each Refine Level of Sombre Shield: +Increases damage against Shadow elemental by 2%. +-------------------------- +When equipped with Sombre Manteau: +Increases damage against Shadow elemental by 5%. + +For each Refine Level of Sombre Manteau: +MaxHP +1% +MaxSP +1% +-------------------------- +When VIP status active: +Increases item drop rate by 10%. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +22049# +A pair of magical shoes endowed with the power of Earth. +-------------------------- +MDEF +3 +-------------------------- +Decreases damage taken from Earth elemental attacks by 5%. +-------------------------- +When equipped with Sol Shield: +Decreases damage taken from Earth elemental by 5%. + +For each Refine Level of Sol Shield: +Decreases damage taken from Earth elemental by 2%. +-------------------------- +When equipped with Sol Manteau: +Increases damage against Earth elemental by 5%. + +For each Refine Level of Sol Manteau: +MaxHP +1% +MaxSP +1% +-------------------------- +When VIP status active: +Increases item drop rate by 10%. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +22050# +A pair of shoes worn by a man whose working as a gardener. All years of experience were accumulated on these shoes. +-------------------------- +Increases experience gained from defeating Plant race monsters by 5%. +-------------------------- +For each Refine Level: +Increases experience gained from defeating Plant race monsters by 1%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22051# +A pair of magical shoes endowed with the power of undead. +-------------------------- +MDEF +3 +-------------------------- +Decreases damage taken from Undead elemental attacks by 5%. +-------------------------- +For each Refine Level: +MaxHP +1% +MaxSP +1% +-------------------------- +When equipped with L'Amour Shield: +Decreases damage taken from Undead elemental by 5%. + +For each Refine Level of L'Amour Shield: +Decreases damage taken from Undead elemental by 2%. +-------------------------- +When equipped with L'Amour Manteau: +Increases damage against monsters of Undead element by 5%. + +For each Refine Level of L'Amour Manteau: +MaxHP +1% +MaxSP +1% +-------------------------- +When VIP status active: +Increases item drop rate by 10%. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +22052# +A pair of shoes worn by a man who took care of the graveyard. All years of experience were accumulated on these shoes. +-------------------------- +Increases exeperience gained from defeating Undead race by 5%. +-------------------------- +For each Refine Level: +Increases exeperience gained from defeating Undead race by 1%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22053# +Military boots provided by the Prontera army. +It is said that wearing this will give you an indomitable spirit. +-------------------------- +Refine Level +6: +Decreases damage taken from Players by 2%. +-------------------------- +Refine Level +8: +Decreases damage taken from Players by additional 3%. +-------------------------- +When equipped with Prontera Military Uniform and Prontera Military Sash: +MaxHP +30% +Decreases damage taken from Players by additional 2%. +Decreases damage taken from all elemental attacks by 5%. +Decreases damage taken from ranged physical attacks by 10%. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Shoes +Defense: 16 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22054# +Military boots exclusively for the corps commander provided by the Prontera army. +It is said that wearing this will give you an indomitable spirit. +-------------------------- +Refine Level +6: +Decreases damage taken from Players by 2%. +-------------------------- +Refine Level +8: +Decreases damage taken from Players by additional 3%. +-------------------------- +When equipped with Prontera Military Commander's Uniform and Prontera Military Commander's Sash: +MaxHP +30% +Decreases damage taken from Players by additional 2%. +Decreases damage taken from all elemental attacks by 5%. +Decreases damage taken from ranged physical attacks by 10%. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Shoes +Defense: 16 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22055# +A magical pair of shoes containing the power of fire. Reduces attack from fire elemental monsters. +-------------------------- +MDEF +3 +-------------------------- +Decreases damage taken from Fire elemental attacks by 5%. +-------------------------- +For each Refine Level: +MaxHP +1% +MaxSP +1% +-------------------------- +When equipped with Charel Shield: +Decreases damage taken from Fire elemental by 5%. + +For each Refine Level of Charel Shield: +Decreases damage taken from Fire elemental by 2%. +-------------------------- +When equipped with Charel Manteau: +Increases damage against monsters of Fire element by 5%. + +For each Refine Level of Charel Manteau: +MaxHP +1% +MaxSP +1% +-------------------------- +When VIP status active: +Increases item drop rate by 10%. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +22056# +A pair of shoes worn by angel. All years of experience were accumulated on these shoes. +-------------------------- +Increases exeperience gained from defeating Angel race by 5%. +-------------------------- +For each Refine Level: +Increases exeperience gained from defeating Angel race by 1%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22057# +Shoes stained with the power of water. Reduces attack from water elemental monsters. +-------------------------- +MDEF +3 +-------------------------- +Decreases damage taken from Water elemental attacks by 5%. +-------------------------- +For each Refine Level: +MaxHP +1% +MaxSP +1% +-------------------------- +When equipped with Charel Shield: +Decreases damage taken from Water elemental by 5%. + +For each Refine Level of Charel Shield: +Decreases damage taken from Water elemental by 2%. +-------------------------- +When equipped with Charel Manteau: +Increases damage against monsters of Water element by 5%. + +For each Refine Level of Charel Manteau: +MaxHP +1% +MaxSP +1% +-------------------------- +When VIP status active: +Increases item drop rate by 10%. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +22058# +A pair of shoes worn by Dragon Slayer. All years of experience were accumulated on these shoes. +-------------------------- +Increases exeperience gained from defeating Dragon race by 5%. +-------------------------- +For each Refine Level: +Increases exeperience gained from defeating Dragon race by 1%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22059# +Egir, the God of Sea's Shoes. It seems to strengthen one's weakness. +-------------------------- +MaxHP +500 +MaxSP +50 +-------------------------- +Indestructible in battle +-------------------------- +When equipped with Aegir Helm and Aegir Shoes: +Increases Critical rate against Fish race monsters by 10. + +For each Refine Level of Aegir Shoes: +Increases critical damage against Fish monsters by 1%. +-------------------------- +Type: Shoes +Defense: 13 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +22060# +A pair of shoes worn by Hunter. All years of experience were accumulated on these shoes. +-------------------------- +Increases exeperience gained from defeating Brute race by 5%. +-------------------------- +For each Refine Level: +Increases exeperience gained from defeating Brute race by 1%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22061# +Holy spiritual shoes. Reduces attacks from holy elemental monsters. +-------------------------- +MDEF +3 +-------------------------- +Decreases damage taken from Holy elementals attack by 5%. +-------------------------- +For each Refine Level: +MaxHP +1% +MaxSP +1% +-------------------------- +When equipped with Lumiere Shield: +Decreases damage taken from Holy elemental by 5%. + +For each Refine Level of Lumiere Shield: +Decreases damage taken from Holy elemental by 2%. +-------------------------- +When equipped with Lumiere Manteau: +Increases damage against monsters of Holy element by 5%. + +For each Refine Level of Lumiere Manteau: +MaxHP +1% +MaxSP +1% +-------------------------- +When VIP status active: +Increases item drop rate by 10%. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +22062# +A pair of shoes worn by Astonomer. All years of experience were accumulated on these shoes. +-------------------------- +Increases exeperience gained from defeating Formless race by 5%. +-------------------------- +For each Refine Level: +Increases exeperience gained from defeating Formless race by 1%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22063# +Shoes with wind power. Decreases the attack from wind elemental monsters. +-------------------------- +MDEF +3 +-------------------------- +Decreases damage taken from Wind elementals attack by 5%. +-------------------------- +For each Refine Level: +MaxHP +1% +MaxSP +1% +-------------------------- +When equipped with Levain Shield: +Decreases damage taken from Wind elemental by 5%. + +For each Refine Level of Levain Shield: +Decreases damage taken from Wind elemental by 2%. +-------------------------- +When equipped with Levain Manteau: +Increases damage against monsters of Wind element by 5%. + +For each Refine Level of Levain Manteau: +MaxHP +1% +MaxSP +1% +-------------------------- +When VIP status active: +Increases item drop rate by 10%. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +22064# +Boots with sharp thorns on the outside. +Even a light bump is likely to cause injury. +-------------------------- +For each 2 Refine Levels: +Reflects 1% of the damage recieved from melee physical attacks. +-------------------------- +When equipped with Thorny Buckler: +For each 3 Refine Levels of Thorny Buckler: +Increases Attack Speed (Decreases After Attack Delay by 6%). +-------------------------- +When equipped with Bison Horn: +Base AGI at least 120: +ASPD +1 +-------------------------- +Type: Shoes +Defense: 25 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +22065# +Shoes stained with poison. Reduces attacks from poison monsters. +-------------------------- +MDEF +3 +-------------------------- +Decreases damage taken from Poison elemental attacks by 5%. +-------------------------- +For each Refine Level: +MaxHP +1% +MaxSP +1% +-------------------------- +When equipped with Poison Shield: +Decreases damage taken from Poison elemental by 5%. + +For each Refine Level of Poison Shield: +Decreases damage taken from Poison elemental by 2%. +-------------------------- +When equipped with Poison Manteau: +Increases damage against 663399Poison elemental by 5%. + +For each Refine Level of Poison Manteau: +MaxHP +1% +MaxSP +1% +-------------------------- +When VIP status active: +Increases item drop rate by 10%. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +22066# +Shoes dyed with the power of mind. +It reduces the attack from the monster just in case. +-------------------------- +MDEF +3 +-------------------------- +Decreases damage taken from Ghost elemental attacks by 5%. +-------------------------- +For each Refine Level: +MaxHP +1%, MaxSP +1% +-------------------------- +When equipped with Esprit Shield: +Decreases damage taken from Ghost elemental by 5%. + +For each Refine Level of Esprit Shield: +Decreases damage taken from Ghost elemental attacks by additional 2%. +-------------------------- +When equipped with Esprit Manteau: +Increases Physical Damage against enemies of Ghost elemental by 5%. + +For each Refine Level of Esprit Manteau: +MaxHP +1%, MaxSP +1% +-------------------------- +Type: Shoes +Defense: 12 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +22067# +A pair of witch's shoe with a kitten on it. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs except Novice +# +22068# +A cute red shoes designed by Louise. +-------------------------- +Increases restoration of Novice Potion by 100%. +-------------------------- +Increases HP Recovery Rate by 50%. +-------------------------- +For each Refine Level: +Increases HP Recovery Rate by 10%. +-------------------------- +When equipped with Piamette Card: +Random chance to increase Def by 200 and Mdef by 20 for 10 seconds when wearer receiving physical or magical attack. +-------------------------- +When equipped with Rideword Card: +Random chance to restore HP by 50 and SP by 10 every 2 seconds for 11 seconds when wearer receiving physical or magical attack. +-------------------------- +When equipped with Myst Case Card: +Increases recovery amount gained from Novice Potion by 100%. +Random chance a defeated monster will drop Novice Potion. +-------------------------- +When equipped with Holden Card: +Refine Level of Red Shoes of Louise is +6 or higher: +Decreases SP Consumption of Cart Revolution by 6. +-------------------------- +Type: Shoes +Defense: 0 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 12 +# +22069# +A pair of shoes dyed with the force of freedom. +-------------------------- +MDEF +3 +-------------------------- +Decreases damage taken from Neutral elementals attacks by 5%. +-------------------------- +For each Refine Level: +MaxHP +1% +MaxSP +1% +-------------------------- +When equipped with Lien Shield: +Decreases damage taken from Neutral elemental by 5%. + +For each Refine Level of Lien Shield: +Decreases damage taken from Neutral elemental by 2%. +-------------------------- +When equipped with Lien Manteau: +Increases damage against monsters of Neutral element by 5%. + +For each Refine Level of Lien Manteau: +MaxHP +1% +MaxSP +1% +-------------------------- +When VIP status active: +Increases item drop rate by 10%. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +22070# +Mysterious shoes with beautifully blooming rose decorations. +They have God's blessing to make the impossible possible, but the damage is so severe that they are not able to exert their true power. +-------------------------- +MaxSP +50 +-------------------------- +When equipped with either Gig Card, Caterpillar Card, Tri Joint Card, Zombie Master Card, Diabolic Card, Driller Card, Nereid Card, Beetle King Card, False Angel Card or Phendark Card: +For each 3 Refine Levels of Ancient Sandals: +ATK +10, MATK +10 +Defeating monsters recovers 30 HP and 3 SP. +-------------------------- +Type: Shoes +Defense: 0 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +22071# +Mysterious shoes with beautifully blooming rose decorations. +They have God's blessing to make the impossible possible. +After restoration, they regained their original beauty and power. +They have a faint rose scent. +-------------------------- +MDEF +10 +-------------------------- +For each Refine Level: +Decreases After Skill Delay by 2%. +-------------------------- +When equipped with Crown: +Decreases Variable Casting Time by 10%. + +For each 2 Refine Levels of Crown and Applause Sandals: +ATK +1%. +Decreases Variable Casting Time by additional 1%. +-------------------------- +When equipped with Tiara: +Decreases Variable Casting Time by 10%. + +For each 2 Refine Levels of Tiara and Applause Sandals: +MATK +1%. +Decreases Variable Casting Time by additional 1%. +-------------------------- +When compounded with Amon Ra Card: +Decreases Variable Casting Time by 10%. +The auto-casting effect of Amon Ra Card will not be activated. + +For each Refine Level of Applause Sandals: +All Stats +3 +-------------------------- +Type: Shoes +Defense: 7 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +22072# +A devoted shoes of mountain climber, all tears and wears are written on the shoes. +-------------------------- +MDEF +10 +MaxHP +4% +MaxSP +4% +-------------------------- +For each 3 Refine Levels: +MaxHP +3% +MaxSP +3% +-------------------------- +Refine Level +10: +Increases movement speed. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22073# +Boots that can amplify the amount of muscle strength that can be operated and raise the operating technology of the robot to the limit. +-------------------------- +Decreases SP Consumption of Cold Slower and Flame Launcher by 5. +Decreases SP Consumption of Arms Cannon by 10. +-------------------------- +When equipped with Powered Arm, Powered Tank and Powered Mail: +Increases damage of Arms Cannon, Cold Slower and Flame Launcher by 50%. +Random chance to decrease After Skill Delay by 30% for 7 seconds when receiving physical damage. + +Refine Level of Powered Mail, Powered Tank and Powered Boots is +7 or higher: +Increases damage of Arms Cannon, Cold Slower and Flame Launcher by additional 50%. +Nullifies Mado Gear Fuel Consumption when using skills. +-------------------------- +Type: Shoes +Defense: 25 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +22074# +Leg parts made to strengthen the defense ability and maximize the performance as a guardian unit. +-------------------------- +HIT +10 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +For each Refine Level equal or above +8: +Increases Attack Speed (Decreases After Attack Delay by additional 1%). +-------------------------- +When equipped with Guardian Engine, Guardian Boots and Guardian Barrel: +Decreases Variable Casting Time of Vulcan Arm and Boost Knuckle by 100%. +Prevents Frozen status. + +Refine Level of Guardian Unit, Guardian Engine and Guardian Booster is +7 or higher: +Decreases damage taken from Holy elemental attacks by 10%. +Increases damage of Vulcan Arm and Boost Knuckle by additional 50%. +When Pile Bunker is used: +Auto-casts Level 5 Dispell on the enemy. +Increases Pile Punker skill cooldown by 3 seconds. +-------------------------- +When equipped with Guardian Processor: +Decreases damage taken from Demi-Human enemies by additional 3%. + +Refine Level of Guardian Boots is +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +Decreases damage taken from Demi-Human enemies by additional 1%. + +Refine Level of Guardian Boots is +9: +Increases Attack Speed (Decreases After Attack Delay by additional 5%). +Decreases damage taken from Demi-Human enemies by additional 1%. +-------------------------- +Type: Shoes +Defense: 23 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +22075# +A shoes obtained from infinite space that emanating strange aura. +-------------------------- +MaxHP +300 +MaxSP -50 +-------------------------- +Refine Level +7: +MaxHP +400 +-------------------------- +Refine Level +9: +MaxHP +600 +-------------------------- +Type: Shoes +Defense: 12 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22076# +A slipper made from solid wood. +-------------------------- +Restore 2 HP evey 10 seconds. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 9 +Summoner (Doram) +# +22077# +Red boots made from eco-friendly materials. +-------------------------- +Critical +5 +-------------------------- +Restore 4 HP and 1 SP evey 10 seconds. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 18 +Summoner (Doram) +# +22078# +A certified kingdom equipment for adventurer. +-------------------------- +Base Level is below 100: +Exp gained +4% + +For each 2 Refine Levels: +STR +1 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +22079# +A certified kingdom equipment for adventurer. +-------------------------- +Base Level is below 100: +Exp gained +4% + +For each 2 Refine Levels: +AGI +1 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +22080# +A certified kingdom equipment for adventurer. +-------------------------- +Base Level is below 100: +Exp gained +4% + +For each 2 Refine Levels: +DEX +1 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +22081# +A certified kingdom equipment for adventurer. +-------------------------- +Base Level is below 100: +Exp gained +4% + +For each 2 Refine Levels: +INT +1 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +22082# +A beautiful shoes made from the other world. +-------------------------- +Decreases damage taken from Earth, Wind, Water, Fire and Neutral elemental attacks by 5%. +-------------------------- +Refine Level +5: +Increases Damage against Earth, Wind, Water, Fire and Neutral elemental monsters by 5%. +-------------------------- +Refine Level +7: +Increases Damage against Earth, Wind, Water, Fire and Neutral elemental monsters by 10%. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +22083# +A pair of shoes designed for doram race. +-------------------------- +MaxHP +100 +MaxSP +50 +-------------------------- +For each 3 Refine Levels: +Increases HP and SP Recovery Rate by 10%. +-------------------------- +Type: Shoes +Defense: 25 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +22084# +A luxury shoes designed for doram race. +-------------------------- +MaxHP +300 +MaxSP +100 +-------------------------- +For each 3 Refine Levels: +Increases HP and SP Recovery Rate by 20%. +-------------------------- +Type: Shoes +Defense: 30 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 140 +Summoner (Doram) +# +22085# +An elegant shoes designed for doram race. +-------------------------- +MaxHP +10% +MaxSP +5% +-------------------------- +For each 2 Refine Levels: +MaxHP +100 +MaxSP +20 +-------------------------- +Refine Level +9: +Decreases SP Consumption of Lope by 5. +-------------------------- +Type: Shoes +Defense: 35 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 175 +Summoner (Doram) +# +22086# +Boots used by the captain of the airship, Ferlock. +-------------------------- +MaxHP +200, MaxSP +20 +-------------------------- +When equipped with Ferlock's Suit and Ferlock's Manteau: +DEF +200, MDEF +20 +MaxHP +500, MaxSP +50 + +Total Refine Level of entire set at least +15: +MaxHP +1000 +MaxSP +30 + +Total Refine Level of entire set at least +20: +MaxHP +1500 +MaxSP +100 + +Total Refine Level of entire set at least +25: +MaxHP +2000 +MaxSP +200 +-------------------------- +When equipped with Ferlock's Hat, Ferlock's Boots and Ferlock's Manteau: +Random chance to absorb 3% damage inflicted as HP and 2% damage as SP when dealing physical attacks. +-------------------------- +Refining is only possible with the NPC \ +. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Shoes +Defense: 0 +Weight: 100 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +22087# +Boots used by airship passengers. +-------------------------- +MaxHP +200, MaxSP +20 +-------------------------- +When equipped with Airship Suit and Airship Manteau: +DEF +200, MDEF +20 +MaxHP +500, MaxSP +50 + +Total Refine Level of entire set at least +15: +MaxHP +1000 +MaxSP +30 + +Total Refine Level of entire set at least +20: +MaxHP +1500 +MaxSP +100 + +Total Refine Level of entire set at least +25: +MaxHP +2000 +MaxSP +200 +-------------------------- +When equipped with Ferlock's Hat, Airship Boots and Airship Manteau: +Random chance to absorb 3% damage inflicted as HP and 2% damage as SP when dealing physical attacks. +-------------------------- +Refining is only possible with the NPC \ +. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Shoes +Defense: 0 +Weight: 100 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +22088# +Boots given by the king. +It seems to have the effect of calming the souls of the dead. +-------------------------- +MaxHP +5% +-------------------------- +Decreases damage taken from Bio Lab and Tomb of the Fallen by 3%. +-------------------------- +Refine Level +6: +MaxHP +5% +Decreases damage taken from Bio Lab and Tomb of the Fallen by additional 1%. +-------------------------- +Refine Level +8: +Decreases damage taken from Bio Lab and Tomb of the Fallen by additional 1%. +-------------------------- +When equipped with Requiem Suit and Requiem Manteau: +Prevents Frozen status. +Enables the use of Level 1 Hiding. +Enables the use of Level 1 Sight. +-------------------------- +When equipped with Requiem Robe and Requiem Manteau: +Prevents Frozen status. +Enables the use of Level 1 Hiding. +Enables the use of Level 1 Sight. +-------------------------- +Type: Shoes +Defense: 25 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22089# +Gaiter dyed with the blood of defeated enemies. +-------------------------- +Critical +2 +Increases Critical Damage by 2%. +-------------------------- +Refine Level +7: +Critical +3 +Increases Critical Damage by 3%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +22090# +A pair of shoes worn by assassin. +-------------------------- +Increases experience gained from defeating Demihuman by 5%. +-------------------------- +For each Refine Level: +Increases experience gained from defeating Demihuman by 1%. +-------------------------- +When equipped with Assassin's Despair: +For each Refine Level000000 of Assassin's Shoes: +Increases Damage against monsters of Demi-Human by 1%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22091# +Shoes that men wear to keep a living by fishing. The old experience comes out of the shoes. Even foot odor and fish smell ... ? +-------------------------- +Increases experience gained from defeating Fish monsters by 5%. +-------------------------- +For each Refine Level: +Increases experience gained from defeating Fish monsters by 1%. +Increases damage to Fish monsters by 1%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22092# +A pair of shoes wore by a man who collects many kind of insects. All years of experience were accumulated on these shoes. +-------------------------- +Give 5% more experience when defeating Insect race. +-------------------------- +For each Refine Level: +Gives 1% more experience when defeating Insect race. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22093# +A pair of shoes worn by a man who devoted himself to devotion. All years of experience were accumulated on these shoes. +-------------------------- +Give 5% more experience when defeating Demon race monsters. +-------------------------- +For each Refine Level: +Gives 1% more experience when defeating Demon race monsters. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22094# +A pair of shoes worn by a man whose working as a gardener. All years of experience were accumulated on these shoes. +-------------------------- +Increases experience gained from defeating Plant race monsters by 5%. +-------------------------- +For each Refine Level: +Increases experience gained from defeating Plant race monsters by 1%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22095# +A pair of shoes worn by a man who took care of the graveyard. All years of experience were accumulated on these shoes. +-------------------------- +Increases exeperience gained from defeating Undead race by 5%. +-------------------------- +For each Refine Level: +Increases exeperience gained from defeating Undead race by 1%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22096# +A pair of shoes worn by angel. All years of experience were accumulated on these shoes. +-------------------------- +Increases exeperience gained from defeating Angel race by 5%. +-------------------------- +For each Refine Level: +Increases exeperience gained from defeating Angel race by 1%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22097# +A pair of shoes worn by Dragon Slayer. All years of experience were accumulated on these shoes. +-------------------------- +Increases exeperience gained from defeating Dragon race by 5%. +-------------------------- +For each Refine Level: +Increases exeperience gained from defeating Dragon race by 1%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22098# +A pair of shoes worn by Hunter. All years of experience were accumulated on these shoes. +-------------------------- +Increases exeperience gained from defeating Brute race by 5%. +-------------------------- +For each Refine Level: +Increases exeperience gained from defeating Brute race by 1%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22099# +A pair of shoes worn by Astonomer. All years of experience were accumulated on these shoes. +-------------------------- +Increases exeperience gained from defeating Formless race by 5%. +-------------------------- +For each Refine Level: +Increases exeperience gained from defeating Formless race by 1%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +22100# +A pair of shoes that can amplify the healing power of its wearer. +-------------------------- +Increases Healing skills effectiveness by 10%. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Coluseo Heal by 5. +-------------------------- +For each 2 Refine Levels: +Increases Healing skills effectiveness by 2%. +-------------------------- +When equipped with Light of Recovery: +For each Refine Level of Light of Recovery: +Decreases SP Consumption of Heal by 6, Coluseo Heal by 10 and Highness Heal by 14. +-------------------------- +When equipped with Benevolent Guardian: +For each 2 Refine Levels of Benevolent Guardian: +Increases Healing skills effectiveness by 3%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +22101# +A blue boots decorated with Angelring model. +Allows gain ability according attached Stone enchantment. +-------------------------- +All Stats +1 +-------------------------- +Enables the use of Level 1 Heal. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +22102# +A Time Keeper boots enhanced with mixed Elunium and Emperium. +-------------------------- +MaxHP +500 +MaxSP +100 +MDEF +4 +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Increases HP and SP Recovery Rate by 15%. +-------------------------- +Type: Shoes +Defense: 23 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22103# +A power boots that's made with the lost technology found in Juperos ruins. +-------------------------- +MaxHP +5% +MaxSP +5% +-------------------------- +Base Level at least 130: +MaxHP +4% +MaxSP +4% +-------------------------- +For each 3 Refine Levels: +MaxHP +3% +MaxSP +3% +-------------------------- +Type: Shoes +Defense: 13 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22104# +A legend says that this shoes's power can manipulate ocean. +-------------------------- +MaxHP +3% +MaxSP +3% +MDEF +15 +-------------------------- +MATK +2% +-------------------------- +Increases Magical Damage with Water element by 2%. +-------------------------- +Enables the use of Level 5 Deluge. +-------------------------- +Refine Level +5: +MaxHP +7% +MaxSP +7% +MATK +3% +Increases Magical Damage with Water element by 3%. +-------------------------- +Refine Level +7: +MaxHP +10% +MaxSP +10% +MATK +5% +Increases Magical Damage with Water element by 5%. +-------------------------- +When equipped with La'cryma Stick: +For each Level of Water Ball: +Increases damage of Water Ball by 30%. + +For each Level of Frost Nova: +Ignores magical defense of target by 5%. + +For each Refine Level of La'cryma Stick: +Increases damage of Water Ball by 20%. +Increases Magical Damage with Water element by 4%. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22105# +It was worn on the ankle so that prisoners and slaves could not escape. +It is difficult to move because both ankles have chains and heavy weights. +-------------------------- +When equipped with Bloody Iron Ball: +ATK +50 +Decreases damage taken from Zombie Prisoner and Skel Prisoner by 20%. +-------------------------- +When equipped with Prison Uniform: +ATK +5 + +For each Refine Level of Shackles: +ATK +1 +-------------------------- +When equipped with Thief Handcuffs: +For each Refine Level of Shackles: +ATK +1 +-------------------------- +Type: Shoes +Defense: 18 +Weight: 300 +Armor Level: 1 +-------------------------- +Requirement: None +# +22106# +Shoes made by imitating the shoes of the giant who was the guardian of the ancient temple. +-------------------------- +MaxHP +2%, MaxSP +2% +-------------------------- +Decreases damage taken from Demi-Human race by 1%. +-------------------------- +Refine Level +5: +MaxHP +4%, MaxSP +4% +Decreases damage taken from Demi-Human race by additional 2%. +-------------------------- +Refine Level +7: +MaxHP +4%, MaxSP +4% +Decreases damage taken from Demi-Human race by additional 2%. +-------------------------- +When equipped with Giant Axe: +Refine Level of Gigant Boots is +7 or higher: +Decreases damage taken from Demi-Human race by additional 30%. + +Refine Level of Giant Axe is +7 or higher: +Refine Level of Gigant Boots is +7 or higher: +Increases damage of Cart Termination by 8%. +Increases Damage against monsters of Boss class by 20%. + +Refine Level of Giant Axe is +9 or higher: +Refine Level of Gigant Boots is +7 or higher: +Increases damage of Cart Termination by additional 12%. +Increases Damage against monsters of Boss class by additional 30%. +-------------------------- +When equipped with Gigantic Bow: +Refine Level of Gigant Boots is +7 or higher: +For each 10 base STR: +Increases Ranged Physical Damage by 3%. + +Refine Level of Gigantic Bow is +7 or higher: +Refine Level of Gigant Boots is +7 or higher: +Increases damage of Arrow Storm and Aimed Bolt by 20%. +Increases Damage against monsters of Boss class by 20%. + +Refine Level of Gigantic Bow is +9 or higher: +Refine Level of Gigant Boots is +7 or higher: +Increases damage of Arrow Storm and Aimed Bolt by additional 30%. +Increases Damage against monsters of Boss class by additional 30%. +-------------------------- +When equipped with Giant Lance: +Decreases damage taken from Demi-Human race by additional 40%. +Using Spiral Pierce auto-casts Sonic Wave at the learned level. + +Refine Level of Giant Lance is +7 or higher: +Increases damage of Spiral Pierce and Sonic Wave by 20%. +Increases Damage against monsters of Boss class by 20%. + +Refine Level of Giant Lance is +9 or higher: +Increases damage of Spiral Pierce and Sonic Wave by additional 30%. +Increases Damage against monsters of Boss class by additional 30%. +-------------------------- +When equipped with Giant Shield: +Prevents knock-back effect. + +Refine Level of Giant Shield is +7 or higher: +Decreases damage taken from Large size by 2%. +Decreases damage taken from Boss class by 2%. + +Refine Level of Giant Shield is +9 or higher: +Decreases damage taken from Large size by additional 3%. +Decreases damage taken from Boss class by additional 3%. +-------------------------- +Type: Shoes +Defense: 13 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 85 +# +22107# +A magical boots that was made a long time ago, no sign of wear nor tear on it. +-------------------------- +MaxHP +300 +MaxSP +30 +-------------------------- +For each 3 Refine Levels: +MaxHP +100 +MaxSP +10 +ATK +7 +-------------------------- +Base STR at least 120: +ATK +50 +-------------------------- +Type: Shoes +Defense: 25 +Weight: 60 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 99 +Rebel, Kagerou, Oboro, Star Emperor and Soul Reaper +# +22108# +A magical boots that was made a long time ago, no sign of wear nor tear on it. +-------------------------- +MaxHP +300 +MaxSP +30 +MDEF +5 +-------------------------- +For each 3 Refine Levels: +MaxHP +100 +MaxSP +10 +MATK +10 +-------------------------- +Base INT at least 120: +MATK +60 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 60 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 99 +Rebel, Kagerou, Oboro, Star Emperor and Soul Reaper +# +22109# +A magical boots that was made a long time ago, no sign of wear nor tear on it. +-------------------------- +MaxHP +300 +MaxSP +30 +-------------------------- +For each 3 Refine Levels: +MaxHP +100 +MaxSP +10 +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Base AGI at least 120: +ASPD +1 +-------------------------- +Type: Shoes +Defense: 25 +Weight: 60 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 99 +Rebel, Kagerou, Oboro, Star Emperor and Soul Reaper +# +22110# +A magical boots that was made a long time ago, no sign of wear nor tear on it. +-------------------------- +MaxHP +300 +MaxSP +30 +-------------------------- +For each 3 Refine Levels: +MaxHP +100 +MaxSP +10 +-------------------------- +Base VIT at least 120: +MaxHP +8% +-------------------------- +Type: Shoes +Defense: 25 +Weight: 60 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 99 +Rebel, Kagerou, Oboro, Star Emperor and Soul Reaper +# +22111# +A magical boots that was made a long time ago, no sign of wear nor tear on it. +-------------------------- +MaxHP +300 +MaxSP +30 +-------------------------- +For each 3 Refine Levels: +MaxHP +100 +MaxSP +10 +DEX +3 +-------------------------- +Base DEX at least 120: +Decreases Fixed Casting Time by 0.5 seconds. +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Shoes +Defense: 25 +Weight: 60 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 99 +Rebel, Kagerou, Oboro, Star Emperor and Soul Reaper +# +22112# +A magical boots that was made a long time ago, no sign of wear nor tear on it. +-------------------------- +MaxHP +300 +MaxSP +30 +MDEF +5 +-------------------------- +For each 3 Refine Levels: +MaxHP +100 +MaxSP +10 +Increases Critical Damage by 2%. +-------------------------- +Base LUK at least 120: +Increases Critical Damage by 30%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 60 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 99 +Rebel, Kagerou, Oboro, Star Emperor and Soul Reaper +# +22113# +A magical boots that was made a long time ago, no sign of wear nor tear on it. +-------------------------- +MaxHP +300 +MaxSP +30 +-------------------------- +For each 3 Refine Levels: +MaxHP +100 +MaxSP +10 +ATK +7 +-------------------------- +Base STR at least 120: +ATK +50 +-------------------------- +Type: Shoes +Defense: 25 +Weight: 60 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 99 +Rebel, Kagerou, Oboro, Star Emperor and Soul Reaper +# +22114# +A magical boots that was made a long time ago, no sign of wear nor tear on it. +-------------------------- +MaxHP +300 +MaxSP +30 +MDEF +5 +-------------------------- +For each 3 Refine Levels: +MaxHP +100 +MaxSP +10 +MATK +10 +-------------------------- +Base INT at least 120: +MATK +60 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 60 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 99 +Rebel, Kagerou, Oboro, Star Emperor and Soul Reaper +# +22115# +A magical boots that was made a long time ago, no sign of wear nor tear on it. +-------------------------- +MaxHP +300 +MaxSP +30 +-------------------------- +For each 3 Refine Levels: +MaxHP +100 +MaxSP +10 +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Base AGI at least 120: +ASPD +1 +-------------------------- +Type: Shoes +Defense: 25 +Weight: 60 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 99 +Rebel, Kagerou, Oboro, Star Emperor and Soul Reaper +# +22116# +A magical boots that was made a long time ago, no sign of wear nor tear on it. +-------------------------- +MaxHP +300 +MaxSP +30 +-------------------------- +For each 3 Refine Levels: +MaxHP +100 +MaxSP +10 +-------------------------- +Base VIT at least 120: +MaxHP +8% +-------------------------- +Type: Shoes +Defense: 25 +Weight: 60 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 99 +Rebel, Kagerou, Oboro, Star Emperor and Soul Reaper +# +22117# +A magical boots that was made a long time ago, no sign of wear nor tear on it. +-------------------------- +MaxHP +300 +MaxSP +30 +-------------------------- +For each 3 Refine Levels: +MaxHP +100 +MaxSP +10 +DEX +3 +-------------------------- +Base DEX at least 120: +Decreases Fixed Casting Time by 0.5 seconds. +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Shoes +Defense: 25 +Weight: 60 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 99 +Rebel, Kagerou, Oboro, Star Emperor and Soul Reaper +# +22118# +A magical boots that was made a long time ago, no sign of wear nor tear on it. +-------------------------- +MaxHP +300 +MaxSP +30 +MDEF +5 +-------------------------- +For each 3 Refine Levels: +MaxHP +100 +MaxSP +10 +Increases Critical Damage by 2%. +-------------------------- +Base LUK at least 120: +Increases Critical Damage by 30%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 60 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 99 +Rebel, Kagerou, Oboro, Star Emperor and Soul Reaper +# +22119# +A pair of shoes which has terrible aura that once used by ancient king whose master of magic. +Originally it was a silver military boots, but eroded by a mighty curse that plagued over all the land. +-------------------------- +MaxHP +10% +MaxSP +10% +-------------------------- +Decreases damage taken from all elemental attacks by 5%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases After Skill Delay by 10%. +-------------------------- +When equipped with Cursed Magic Manteau and Cursed Magic Mail: +Decreases damage taken from all elemental attacks by 5%. +Decreases damage taken from Ranged Physical Damage by 5%. +MaxHP +6666 +MaxSP +666 +-------------------------- +When equipped with Cursed Magic Ring: +Decreases Variable Casting Time by 10%. +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases After Skill Delay by 10%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +22120# +Shoes worn by agent of god who punishes the sinner. It is said there is power of god dwelling inside. +-------------------------- +MaxHP +3% +MaxSP +3% +MATK +2% +MDEF +15 +-------------------------- +Increases Magical Damage with Holy element by 2%. +-------------------------- +Increases damage of Judex by 30%. +-------------------------- +Refine Level +5: +MaxHP +7% +MaxSP +7% +MATK +3% +Increases Magical Damage with Holy element by additional 3%. +-------------------------- +Refine Level +7: +MaxHP +10% +MaxSP +10% +MATK +5% +Increases Magical Damage with Holy element by additional 5%. +-------------------------- +When equipped with Holy Stick: +For each Level of Oratio: +Decreases Variable Casting Time of Adoramus by 5%. +Decreases Variable Casting Time of Judex by 5%. + +For each Level of Lauda Ramus, Lauda Agnus and Clearance: +Increases damage of Adoramus by 10%. + +Refine Level of Holy Stick is +7 or higher: +Increases Magical Damage against Shadow and Undead elemental by 30%. +Increases Magical Damage against monsters of Demon and Undead race by 30%. + +Refine Level of Holy Stick is +9 or higher: +Increases damage of Adoramus by an additional 20%. +Increases Magical Damage against Shadow and Undead elemental by additional 20%. +Increases Magical Damage against monsters of Demon and Undead race by additional 20%. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22121# +Armor rented from a rental machine. +It disappears after a certain period of time. +-------------------------- +MDEF +15 +-------------------------- +MaxHP +3%, MaxSP +3% +-------------------------- +MATK +2% +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Increases Magical Damage with Wind and Earth element by 2%. +-------------------------- +Refine Level +5: +MaxHP +7%, MaxSP +7% +MATK +3% +Increases Magical Damage with Wind and Earth element by additional 3%. +-------------------------- +Refine Level +7: +MaxHP +10%, MaxSP +10% +MATK +5% +Increases Magical Damage with Wind and Earth element by additional 5%. +-------------------------- +When equipped with Survivor's Rod: +Decreases damage taken from Demi-Human race by 10%. +Ignores magical defense of target by 50%. + +If Survivor's Rod[1] Refine Level +10: +Decreases Earth Strain skill cooldown by 2.4 seconds. +Decreases Chain Lightning skill cooldown by 1 seconds. +Increases Magical Damage against monsters of Demi-Human race by 20%. +Increases Magical Damage with Neutral element by 80%. +Random chance to increase damage inflicted with Chain Lightning by 100% for 5 seconds when dealing magical damage. +-------------------------- +When equipped with Survivor's Circlet: +MATK +10% + +If Survivor's Circlet[1] Refine Level +7: +Increases Magical Damage with Wind and Earth element by additional 10%. + +If Survivor's Circlet[1] Refine Level +10: +Increases Magical Damage with Wind and Earth element by additional 10%. +-------------------------- +When equipped with Survivor's Manteau: +MATK +10% + +If Survivor's Manteau[1] Refine Level +7: +Decreases damage taken from Wind and Earth elemental magic attacks by 15%. + +If Survivor's Manteau[1] Refine Level +10: +Decreases damage taken from Wind and Earth elemental magic attacks by additional 15%. +-------------------------- +When equipped with Survivor's Orb: +VIT +5, INT +5 +Decreases damage taken from Demi-Human race by 3%. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22122# +A boots given to loyal member of Eden Group. It's designed with reinforced durability for a long adventure. +-------------------------- +All Stats +1 +-------------------------- +Increases HP Recovery Rate by 30%. +Increases SP Recovery Rate by 14%. +-------------------------- +Type: Shoes +Defense: 22 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +22123# +A boots given to skilled member of Eden Group. It's designed with reinforced durability for a long adventure. +-------------------------- +All Stats +1 +-------------------------- +Increases HP Recovery Rate by 36%. +Increases SP Recovery Rate by 18%. +-------------------------- +Type: Shoes +Defense: 25 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 115 +# +22124# +A boots given to trained member of Eden Group. It's designed with reinforced durability for a long adventure. +-------------------------- +All Stats +2 +-------------------------- +Increases HP Recovery Rate by 36%. +Increases SP Recovery Rate by 18%. +-------------------------- +Type: Shoes +Defense: 27 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +22125# +A boots given to veteran member of Eden Group. It's designed with reinforced durability for a long adventure. +-------------------------- +All Stats +2 +-------------------------- +Increases HP Recovery Rate by 40%. +Increases SP Recovery Rate by 20%. +-------------------------- +Type: Shoes +Defense: 30 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 145 +# +22126# +A boots given to full-fledged member of Eden Group. It's designed with reinforced durability for a long adventure. +-------------------------- +All Stats +2 +-------------------------- +Increases HP Recovery Rate by 40%. +Increases SP Recovery Rate by 20%. +-------------------------- +Decreases SP Consumption by 5%. +-------------------------- +Type: Shoes +Defense: 30 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 160 +# +22127# +Unknown shoes obtained from magical labyrinth. It is unknown from what material it was made. +-------------------------- +Refine Level +7: +MaxHP +1000 +-------------------------- +Refine Level +9: +MaxHP +2000 +-------------------------- +When equipped with Diva Robe and Diva Manteau: +MaxHP +10% +MaxSP +10% +-------------------------- +Type: Shoes +Defense: 10 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +22128# +An altered version of Diva shoes that was influenced by magical crystal of labyrinth's power. It is unknown from what material it was made. +-------------------------- +Refine Level +7: +MaxSP +100 +-------------------------- +Refine Level +9: +MaxSP +200 +-------------------------- +When equipped with Mirage Robe and Mirage Manteau: +MaxHP +10% +MaxSP +10% +-------------------------- +Type: Shoes +Defense: 10 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +22129# +Boots that created for people who fought Devil Morocc. +It will be possible to maximize the power of the master. +-------------------------- +MaxHP +3%, MaxSP +3% +-------------------------- +Decreases damage taken from Demi-Human race by 3%. +-------------------------- +When equipped with Veteran Hammer: +For each Level of Duple Light: +Increases Attack Speed (Decreases After Attack Delay by 1%). + +For each Level of Mace Mastery: +Ignores physical defense of Undead, Demon and Demi-Human race by 10%. +Increases critical chance against Undead, Demon and Demi-Human race by 5. +-------------------------- +When equipped with Veteran Sword: +For each Level of Enchant Blade and Aura Blade: +Increases damage of Bash and Bowling Bash by 10%. +-------------------------- +When equipped with Veteran Axe: +ATK +10 for each mastered Forging skill. +(Smith Dagger, Smith Sword, Smith Two-Handed Sword, Smith Axe, Smith Mace, Smith Brass Knuckle and Smith Spear) + +For each Level of Fire Earth Research: +Decreases Axe Tornado skill cooldown by 0.2 seconds. +-------------------------- +When equipped with Ring of Brave and Veteran Hammer: +Increases critical chance against Undead, Demon and Demi-Human race by additional 50. +Random chance to auto-cast Holy Cross, skill level based on the level of Duple Light, on the enemy when recieving physical or magical damage. +Random chance to auto-cast Level 3 Hell Judgement around yourself and transform the user in Fallen Bishop Hibram for 5 seconds when recieving physical damage. + +Refine Level of Veteran Hammer is +7 or higher: +ATK +5%, MATK +5% +Increases damage of Holy Cross by 50%. + +Refine Level of Veteran Hammer is +9 or higher: +ATK +15%, MATK +15% +Increases damage of Holy Cross by additional 100%. +-------------------------- +When equipped with Ring of Brave and Veteran Sword: +Decreases SP Consumption of Bash by 5. +Decreases SP Consumption of Bowling Bash by 10. + +Refine Level of Veteran Sword is +7 or higher: +Increases damage of Bash and Bowling Bash by additional 100%. + +Refine Level of Veteran Sword is +9 or higher: +Increases damage of Bash and Bowling Bash by additional 200%. +-------------------------- +When equipped with Ring of Brave and Veteran Axe: +Decreases Axe Tornado skill cooldown by additional 0.5 seconds. +Random chance to drop Mastela Fruit when defeating monsters. + +Refine Level of Veteran Axe is +7 or higher: +Increases damage of Axe Tornado by 20%. + +Refine Level of Veteran Axe is +9 or higher: +Increases damage of Axe Tornado by additional 40%. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 85 +# +22130# +Greaves rented from a rental machine. +It disappears after a certain period of time. +-------------------------- +MaxSP +40 +-------------------------- +For each Refine Level equal or above +8: +AGI +1 +-------------------------- +When equipped with Rental Peuz Plate, Rental Peuz Manteau and Rental Peuz Seal: +An hidden effect will be activated. + +Refine Level of Rental Peuz Plate, Rental Peuz Manteau and Rental Peuz Seal is +7 or higher: +An additional hidden effect will be activated. +-------------------------- +When equipped with Rental Karma Wind Stone: +Decreases damage taken from Demi-Human race by 3%. +Decreases Variable Casting Time of Wind Cutter by 50%. + +Refine Level of Rental Karma Wind Stone is +7 or higher: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases damage taken from Demi-Human race by additional 1%. + +Refine Level of Rental Karma Wind Stone is +7 or higher: +Increases Attack Speed (Decreases After Attack Delay by additional 10%). +Decreases damage taken from Demi-Human race by additional 1%. +-------------------------- +When equipped with Rental Peuz Plate, Rental Peuz Manteau, Rental Peuz Seal and Rental Karma Wind Stone: +Decreases After Skill Delay by 70% for 10 seconds when using Aura Blade skill. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Shoes +Defense: 32 +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +22131# +Boots worn by shepherds. +-------------------------- +MaxSP +5% +-------------------------- +Refine Level +7: +MaxSP +5% +-------------------------- +Refine Level +9: +MaxSP +5% +Increases movement speed. +-------------------------- +Type: Shoes +Defense: 0 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22132# +A pair of shoes that once wore by eastern god. It's flame protect it's wearer. +-------------------------- +For each Refine Level: +MATK +5, +Decreases Variable Casting Time by 1%. +Increases Magical Damage against Earth, Ghost, Neutral and Undead elemental by 2%. +-------------------------- +When equipped with Moonlight Flower Card: +Enables the use of Level 10 Heal. + +Base Level is below 100: +For each Refine Level of Lightning God's Shoes: +MDEF +5, MATK +5. + +Base Level is below 100: +For each Refine Level of Lightning God's Shoes: +MDEF +10, MATK +15. +-------------------------- +Type: Shoes +Defense: 18 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +22133# +A pair of shoes made of supple, high quality leather. +-------------------------- +MaxHP +100 +MaxSP +10 +-------------------------- +For each Refine Level: +MaxHP +100, MaxSP +5. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +All Jobs except Novice +# +22134# +These blood soaked shoes releases a terrible aura. +-------------------------- +MaxHP +3% +MaxSP +3% +MDEF +10 +-------------------------- +Enables the use of Level 1 Maximize Power. +-------------------------- +Decreases SP Consumption of Meteor Assault by 8. +-------------------------- +Refine Level +5: +MaxHP +7% +MaxSP +7% +For each Base Level: +Increases damage of Meteor Assault by 1%. +-------------------------- +Refine Level +7: +MaxHP +10% +MaxSP +10% + +For each Base Level: +Increases damage of Meteor Assault by 1%. +-------------------------- +For each Level of Poison React: +Increases damage of Meteor Assault by 30%. +-------------------------- +For each Level of Weapon Blocking: +Decreases Hallucination Walk skill cooldown by 5 seconds. +-------------------------- +For each Level of Weapon Crush: +ATK +4% +-------------------------- +For each Level of Counter Slash: +Ignores physical defense of all monsters by 20%. +-------------------------- +For each Level of Weapon Blocking, Weapon Crush and Counter Slash: +Decreases Variable Casting Time of Meteor Assault by 7%. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +All Jobs except Novice +# +22138# +A pair of shoes made by a worshipper of Baphomet with magical powers. +-------------------------- +MaxHP +3% +MaxSP +3% +MATK +2% +-------------------------- +Increases Magical Damage with Neutral and Fire element by 2%. +-------------------------- +Refine Level +5: +MaxHP +7% +MaxSP +7% +MATK +3% +Increases Magical Damage with Neutral and Fire element by 3%. +-------------------------- +Refine Level +7: +MaxHP +10% +MaxSP +10% +MATK +5% +Increases Magical Damage with Neutral and Fire element by 5%. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +All Jobs except Novice +# +22140# +Pretty purple boots. +A crystal that imitates Elvira is attached to the tip. +It looks soft, but it's so hard that it hurts when kicked by someone who wears it. +-------------------------- +ATK +5%, MATK +5% +-------------------------- +Decreases damage taken from Wind elemental attacks by 10%. +-------------------------- +For each Refine Level: +Increases damage of Lightning Bolt by 3%. +-------------------------- +When equipped with Elvira Pendant: +ATK +10%, MATK +10% +Decreases damage taken from Wind elemental attacks by additional 20%. +-------------------------- +Type: Shoes +Defense: 13 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +22141# +The greaves used by Werner Institute's experiment, YSF01. There are powerful magic swirling inside seemed cut off from the world. +If used abusely, its magic power will consume its wearer. +-------------------------- +Refine Level +8: +Increases Attack Speed (Decreases After Attack Delay by 8%). +-------------------------- +Refine Level +11: +ASPD +1 +-------------------------- +Refine Level +13: +Increases Critical Damage by 10%. +-------------------------- +Base LUK at least 125: +Increases Critical Damage by additional 30%. +-------------------------- +Type: Shoes +Defense: 25 +Weight: 130 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +22142# +Shoes made of a material that is as hard as Kongo stone. +-------------------------- +MDEF +15 +-------------------------- +MaxHP +5%, MaxSP +5% +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +For each 3 Refine Levels: +MaxHP +3%, MaxSP +3% +-------------------------- +When equipped with Kongo Stone Manteau: +Decreases damage taken from Neutral elemental attacks by 10%. +Decreases damage taken from Doram Players by 10%. +Prevents Stone Curse status. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22143# +The greave that was equipped on the experimental body of the Ymir project. +Since the data of various experiments were provided, the identification number of this experimental body was changed to \ +. +-------------------------- +MDEF +15 +-------------------------- +MaxHP +15% +-------------------------- +Refine Level +7: +Decreases SP Consumption of Hundred Spear by 20 seconds. +-------------------------- +Refine Level +9: +MaxSP +15% +-------------------------- +When equipped with Y.S.F.0.1 Plate and Y.S.F.0.1 Manteau: +Decreases After Skill Delay by 10%. +Increases damage of Spiral Pierce by 50%. +Increases damage of Spear Boomerang by 100%. +Increases damage of Hundred Spear by 50%. + +Refine Level of Y.S.F.0.1 Plate, Y.S.F.0.1 Manteau and Y.S.F.0.1 Greaves is +7 or higher: +Decreases After Skill Delay by additional 20%. +Increases damage of Spiral Pierce by additional 100%. +Increases damage of Spear Boomerang by additional 200%. +Increases damage of Hundred Spear by additional 100%. + +Refine Level of Y.S.F.0.1 Plate, Y.S.F.0.1 Manteau and Y.S.F.0.1 Greaves is +9 or higher: +Decreases After Skill Delay by additional 20%. +Increases damage of Spiral Pierce by additional 100%. +Increases damage of Spear Boomerang by additional 200%. +Increases damage of Hundred Spear by additional 100%. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Rune Knight +# +22145# +Shoes worn by the Tengu. +The shape makes it possible to move faster than you can imagine. +-------------------------- +MaxHP +3% +MaxSP +3% +MDEF +10 +-------------------------- +Enables the use of Level 1 Cast Cancel. +-------------------------- +For each Level of Gentle Touch-Cure: +MaxHP +2% +-------------------------- +For each Level of Gentle Touch-Revitalize: +DEF +30 +Decreases damage taken from Demi-Human enemies by 1%. +-------------------------- +For each Level of Gentle Touch-Energy Gain: +Decreases Variable Casting Time of Call Spirits, Steel Body and Dangerous Soul Collect by 10%. +-------------------------- +For each Level of Gentle Touch-Change: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +For each Level of Gentle Touch-Quiet: +ATK +4% +-------------------------- +Refine Level +5: +Additional MaxHP +7% +Additional MaxSP +7% +Decreases SP Consumption of Body Relocation by 5. +-------------------------- +Refine Level +7: +Additional MaxHP +10% +Additional MaxSP +10% +Decreases SP Consumption of Body Relocation by additional 5. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22168# +Boots awarded by the royal family as a token of gratitude to the hunters who excelled at the hunt. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 8%). +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +When equipped with True Hunting Mail: +Increases Ranged Physical Damage by 7%. +-------------------------- +For each Refine Level above +9 or higher of True Hunting Boots and True Hunting Mail: +Increases Critical Damage by 10%. +-------------------------- +Type: Shoes +Defense: 13 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22169# +Boots designed to demonstrate your skills in hunting competitions. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 8%). +-------------------------- +When equipped with Short-term Hunting Mail: +ASPD +1 +-------------------------- +Type: Shoes +Defense: 13 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 50 +# +22170# +A pair of shoes that automatically protects its wearer. +-------------------------- +MaxHP +3% +MaxSP +3% +MATK +2% +MDEF +15 +-------------------------- +Increases Earth and Wind elemental magic attacks by 2%. +-------------------------- +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Refine Level +5: +MaxHP +7% +MaxSP +7% +MATK +3% +Increases Earth and Wind elemental magic attacks by 3%. +-------------------------- +Refine Level +7: +MaxHP +10% +MaxSP +10% +MATK +5% +Increases Earth and Wind elemental magic attacks by 5%. +-------------------------- +When equipped with Survivor's Circlet: +MATK +10% + +If Survivor's Circlet Refine Level +7: +Increases Earth and Wind elemental magic attacks by 10%. + +If Survivor's Circlet Refine Level +9: +Increases Earth and Wind elemental magic attacks by 10%. +-------------------------- +When equipped with Survivor's Manteau: +MATK +10% + +If Survivor's Manteau Refine Level +7: +Decreases damage taken from Earth and Wind elemental attacks by 15%. + +If Survivor's Manteau Refine Level +9: +Decreases damage taken from Earth and Wind elemental attacks by 15%. +-------------------------- +When equipped with Survivor's Orb: +VIT +5 +INT +5 +Decreases damage taken from Demi-Human race by 3%. +-------------------------- +When equipped with Survivor's Rod [1]: +Decreases damage taken from Demi-Human race by 10%. +Ignores magical defense of all monsters by 50%. + +If Survivor's Rod [1] Refine Level +10: +Decreases Earth Strain skill cooldown by 2.4 seconds. +Decreases Chain Lightning skill cooldown by 1 seconds. +Increases Magical Damage against monsters of Demi-Human race by 20%. +Increases Neutral elemental magic attacks by 80%. +Random chance to increase damage inflicted with Chain Lightning by 100% for 5 seconds when dealing magical damage. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22171# +A pair of boots said to have been worn by ancient heroes. +It resonates with the Ancient Hero's Armor. +-------------------------- +MaxHP +500 +MaxSP +50 +-------------------------- +For 3each Refine Levels: +MaxHP +2% +MaxSP +1% +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.3 seconds. +-------------------------- +Refine Level +12: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +14: +Decreases After Skill Delay by 5%. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22172# +A special artifact which empowers both black magic and white magic. +-------------------------- +MaxHP +3% +MaxSP +3% +MDEF +15 +-------------------------- +Enables the use of Level 1 Hiding. +-------------------------- +Increases Ranged Physical Damage by 2%. +-------------------------- +Increases Critical Damage by 2%. +-------------------------- +Refine Level +5: +MaxHP +7% +MaxSP +7% +Increases Ranged Physical Damage by 3%. +Increases Critical Damage by 3%. +-------------------------- +Refine Level +7: +MaxHP +10% +MaxSP +10% +Increases Ranged Physical Damage by 5%. +Increases Critical Damage by 5%. +-------------------------- +When equipped with Black Wing Suit: +Increases movement speed. +Decreases SP Consumption of Electric Shock by 30. +Restores 500 HP when a monster is defeated. + +For each 20 base INT: +Increases damage of Cluster Bomb by 30%. + +Refine Level of Black Wing Suit +7 or higher: +Perfect Dodge +6 +Decreases damage taken from Demi-Human race by 8%. +Increases damage of Aimed Bolt by 20%. +Increases damage of Cluster Bomb by 400%. + +Refine Level of Black Wing Suit +9: +Perfect Dodge +3 +Decreases damage taken from Demi-Human race by 4%. +Increases damage of Aimed Bolt by 10%. +Increases damage of Cluster Bomb by 200%. +-------------------------- +When equipped with White Wing Suit: +Increases movement speed. + +For each 20 base LUK: +Increases Critical Damage by 4%. + +Refine Level of White Wing Suit +7 or higher: +Increases Attack Speed (Decreases After Attack Delay by 8%). +Decreases damage taken from Demi-Human race by 8%. +Increases damage of Sharp Shooting by 50%. +Increases damage of Blitz Beat by 40%. + +Refine Level of White Wing Suit +9: +Increases Attack Speed (Decreases After Attack Delay by 4%). +Decreases damage taken from Demi-Human race by 4%. +Increases damage of Sharp Shooting by 25%. +Increases damage of Blitz Beat by 20%. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22173# +A pair of boots given to beginner adventurers which are starting another adventure. +-------------------------- +MaxHP +300 +MaxSP +50 +FLEE +15 +Increases HP and SP Recovery rate by 10%. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +22174# +Glittering high heels prepared by investing a huge amount of money for the queen of a country who loves Queen Scaraba. +-------------------------- +MDEF +5 +-------------------------- +MaxHP +2%, MaxSP +2% +-------------------------- +Refine Level +5: +MaxHP +4%, MaxSP +4% +-------------------------- +Refine Level +7: +MaxHP +4%, MaxSP +4% +-------------------------- +When equipped with Elven Bow: +Refine Level of Scaraba High Heels is +7 or higher: +Decreases Severe Rainstorm skill cooldown by 2 seconds. + +Refine Level of Elven Bow is +8 or higher: +Increases Physical Damage against enemies of Boss class by 20%. +Increases damage of Severe Rainstorm by 8%. + +Refine Level of Elven Bow is +10 or higher: +Increases Physical Damage against enemies of Boss class by additional 30%. +Increases damage of Severe Rainstorm by additional 12%. +-------------------------- +When equipped with Carga Mace: +Protects from skill cast interruption. + +Refine Level of Carga Mace is +7 or higher: +MaxSP +400 +Increases Physical Damage against enemies of Boss class by 20%. + +Refine Level of Carga Mace is +9 or higher: +MaxSP +600 +Increases Physical Damage against enemies of Boss class by additional 30%. +-------------------------- +When equipped with Durga: +Ignores physical defense of Boss class by 100%. + +Refine Level of Durga is +7 or higher: +Increases Physical Damage against enemies of Boss class by 20%. +Increases damage of Rolling Cutter by 8%. + +Refine Level of Durga is +9 or higher: +Increases Physical Damage against enemies of Boss class by additional 30%. +Increases damage of Rolling Cutter by additional 12%. +-------------------------- +When equipped with Lapine Staff: +Refine Level of Scaraba High Heels is +7 or higher: +Decreases Variable Casting Time by 20%. + +Refine Level of Lapine Staff is +8 or higher: +Increases Magical Damage against monsters of Boss class by 30%. +Ignores magical defense of all race by 20%. + +Refine Level of Lapine Staff is +10 or higher: +Increases Magical Damage against monsters of Boss class by additional 40%. +Ignores magical defense of all race by additional 30%. +-------------------------- +When equipped with Elven Bow and Raging Muffler: +Refine Level of Scaraba High Heels is +7 or higher: +When Level 5 Gloomy Shyness is learned: +Increases Severe Rainstorm skill cooldown by 2 seconds. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 85 +# +22178# +Boots that were equipped by excellent adventurers who went on many adventures and defeated many powerful enemies. +Although the name of the adventurer has been forgotten, the performance of the equipment that supported the legend is not lost, and it is said that it enhances the ability of the equipment and gives the power to overcome strong enemies. +-------------------------- +Increases Physical Damage against enemies of Boss class by 15%. +-------------------------- +For each Refine Level: +ATK +5 +Increases Attack Speed (Decreases After Attack Delay by 1%). +MaxHP +2%, MaxSP +2% +-------------------------- +When compounded with Boss Egnigem Card: +Enables the use of Level 10 Magnum Break. +Recovers 5000 HP and 100 SP every 10 seconds. + +Base Level is 99 or less: +For each Refine Level of Nameless Swordsman's Boots: +STR +3, FLEE +5 + +Base Level at least 100: +For each Refine Level of Nameless Swordsman's Boots: +STR +10, FLEE +15 +-------------------------- +Type: Shoes +Defense: 18 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +22183# +Slippers made of hard wood. +It's a little difficult to walk for a long time. +-------------------------- +MaxHP +100, MaxSP +100 +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Summoner (Doram) +# +22184# +Boots made of bright red leather. +Somehow there is a sense of luxury. +-------------------------- +MaxHP +100, MaxSP +100 +-------------------------- +Decreases SP Consumption of Scratch by 15. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Summoner (Doram) +# +22185# +Special shoes designed to fit the small feet of the Doram. +-------------------------- +MDEF +5 +-------------------------- +MaxHP +10%, MaxSP +10% +-------------------------- +For each Refine Level: +ATK +5, MATK +5 +-------------------------- +When equipped with Doram Cape: +Increases movement speed. +Recovers 500 HP and 5 SP every 5 seconds. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Summoner (Doram) +# +22186# +Luxury exclusive shoes designed to fit the small feet of the Doram. +-------------------------- +MDEF +5 +-------------------------- +MaxHP +15%, MaxSP +15% +-------------------------- +For each Refine Level: +ATK +10, MATK +10 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +8: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Perfect Dodge +5 +-------------------------- +When equipped with Luxury Doram Cape: +Increases movement speed. +Recovers 1000 HP and 10 SP every 5 seconds. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Shoes +Defense: 30 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Summoner (Doram) +# +22187# +Luxury exclusive shoes designed to fit the small feet of the Doram. +-------------------------- +MDEF +5 +-------------------------- +MaxHP +20%, MaxSP +20% +-------------------------- +Decreases damage taken from Players by 5%. +-------------------------- +Decreases Variable Casting Time of Lope by 50%. +-------------------------- +For each Refine Level: +ATK +15, MATK +15 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +8: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Perfect Dodge +5 +Decreases Variable Casting Time of Lope by additional 50%. +-------------------------- +When equipped with Exlusive Doram Cape: +Increases movement speed. +Recovers 1500 HP and 15 SP every 5 seconds. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Shoes +Defense: 35 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +22189# +Shoes that a faithful and enthusiastic worshiper wore during his pilgrimage. +If you wear these shoes, you will be able to receive favors from God. +-------------------------- +MDEF +15 +-------------------------- +MaxHP +3%, MaxSP +3% +-------------------------- +Decreases Praefatio skill cooldown by 1 second. +-------------------------- +For each Level of Cantocandidus: +ASPD +4% +-------------------------- +For each Level of Sacrament: +DEF +50 +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +For each Level of Highness Heal: +Increases Healing skills by 5%. +-------------------------- +For each Level of Praefatio: +Decreases After Skill Delay by by 6%. +-------------------------- +Refine Level +5: +MaxHP +7%, MaxSP +7% +Decreases SP Consumption of skills by 3%. +-------------------------- +Refine Level +7: +Max HP +10%, Max SP +10% +Decreases SP Consumption of skills by additional 5%. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22190# +Excellent shoes made of sturdy materials +that provides plenty of defense as well as activity. +-------------------------- +For each Refine Level: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +For each 3 Refine Levels: +Critical +5 +-------------------------- +Type: Shoes +Defense: 16 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Swordsman , Merchant, Thief, Archer, Gunslinger and Star Gladiator classes +# +22192# +Shoe that Goibne made for a bet against his rival Dulb. +-------------------------- +MaxHP +5%, MaxSP +5%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 10%. +-------------------------- +Type: Shoes +Defense: 42 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +All Jobs except Novice +# +22193# +Brave warrior shoes. +It has the power to face all dangers and difficulties. +-------------------------- +Increases resistance against Freezing status by 25%. +-------------------------- +For each Refine Level: +MaxHP +100, MaxSP +10 +Increases Damage against Players by 2%. +-------------------------- +When equipped with Brave Suit and Brave Muffler: +Increases Damage against Players by 50%. +Prevents Fear and White Imprison status. +But you still can cast White Imprison on yourself. +Cures Masquerade Ignorance status, when using Elvira Candy. +-------------------------- +Type: Shoes +Defense: 16 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 165 +# +22195# +Shoes that has the effect of temporarily enhancing the ability by stimulating the nerves of the foot. +The improvement effect changes according to the ability of the person who wears it. +-------------------------- +MaxHP +10% +MaxSP +10% +MDEF +10 +-------------------------- +Decreases damage taken from Players by 5% +-------------------------- +Base STR at least 125: +Refine Level +7: +ATK +90 + +Refine Level +9: +Additional ATK +90 +-------------------------- +Base AGI at least 125: +Refine Level +7: +ASPD +2 + +Refine Level +9: +Additional ASPD +2 +-------------------------- +Base VIT at least 125: +Refine Level +7: +MaxHP +12% + +Refine Level +9: +Additional MaxHP +12% +-------------------------- +Base INT at least 125: +Refine Level +7: +MATK +120 + +Refine Level +9: +Additional MATK +120 +-------------------------- +Base DEX at least 125: +Refine Level +7: +Increases Ranged Physical Damage by 10% + +Refine Level +9: +Increases Ranged Physical Damage by additional 10% +-------------------------- +Base LUK at least 125: +Refine Level +7: +Increases Critical Damage by 20% + +Refine Level +9: +Increases Critical Damage by additional 20% +-------------------------- +Type: Shoes +Defense: 30 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22196# +Combat boots A type born from Illusion's technology. +It is said to be able to add abilities by attaching various modules. +-------------------------- +MaxSP +200 +-------------------------- +For each 2 Refine Levels: +MaxSP +20 +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Illusion Armor Type A: +ATK +5% +-------------------------- +When equipped with Illusion Armor Type B: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 130 +# +22197# +Combat boots B type born from Illusion's technology. +It is said to be able to add abilities by attaching various modules. +-------------------------- +MaxSP +200 +-------------------------- +For each 2 Refine Levels: +MaxSP +20 +-------------------------- +Refine Level +7: +Increases Magical Damage with every element by 5%. +-------------------------- +When equipped with Illusion Armor Type A: +MaxSP +5% +-------------------------- +When equipped with Illusion Armor Type B: +MATK +5% +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 130 +# +22198# +Shoes fit for a traveler with much work to be done. +-------------------------- +MDEF +15 +-------------------------- +MaxHP +3%, +MaxSP +3% +MATK +2% +-------------------------- +Increases Neutral elemental magical damage by 2%. +-------------------------- +For each Level of Swing Dance: +All Stats +1 +-------------------------- +For each Level of Harmonize: +Increases Attack Speed (Decreases After Attack Delay by 4%). +-------------------------- +For each Level of Frigg's Song: +MaxHP +2% +-------------------------- +For each Level of Gloomy Shyness: +Increases damage of Metallic Sound by 10% and reduces casting time of Metallic Sound by 10%. +-------------------------- +If user learned Level 1 Deep Sleep Lullaby, has a chance of inflicting Sleep status on an enemy when dealing magical damage. + +For each Level of Deep Sleep Lullaby: +Increases the chance of inflicting Sleep status. +-------------------------- +Refine Level +5: +Additional MaxHP/MaxSP +7%, +additional MATK +3%, +Increases Neutral elemental magical damage by additional 3%. +-------------------------- +Refine Level +7: +Additional MaxHP/MaxSP +10%, +additional MATK +5%, +Increases Neutral elemental magical damage by additional 5%. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22199# +Boots that combines the skin of the creatures that live in the lava dungeon. +They seem to be still in heat. +-------------------------- +ATK +2% +-------------------------- +Refine Level +7: +ATK +25 +-------------------------- +Refine Level +9: +ATK +15 +-------------------------- +Type: Shoes +Defense: 50 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 175 +# +22200# +Shoes that combines the skin of the creatures that live in the lava dungeon. +They seem to be still in heat. +-------------------------- +Critical +5 +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of all size enemies by 5%. +-------------------------- +Refine Level +9: +Increases Critical Damage by 5%. +-------------------------- +Type: Shoes +Defense: 40 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 175 +# +22201# +Sandals that combines the skin of the creatures that live in the lava dungeon. +They seem to be still in heat. +-------------------------- +Increases Fire elemental magical damage by 3%. +-------------------------- +Refine Level +7: +MATK +25 +-------------------------- +Refine Level +9: +MATK +15 +-------------------------- +Type: Shoes +Defense: 25 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 175 +# +22203# +Boots made for use in space environments. +-------------------------- +Increases Magical Damage against monsters of Boss class by 15%. +-------------------------- +For each Refine Level: +MATK +5 +MaxHP +2%, MaxSP +2% +Decreases After Skill Delay by 1%. +-------------------------- +Refine Level +10: +INT +15 +-------------------------- +When compounded with Dark Lord Card: +Enables the use of Level 5 Volcano. + +Refine Level +1: +Random chance to gain the following effect for 15 seconds when recieving physical damage. + +For each Refine Level of Space Shoes: +Base Level is 99 or less: +Increases Magical Damage with Fire element by 5%. + +Base Level at least 100: +Increases Magical Damage with Fire element by 10%. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +22204# +Specially tailered Boots for you. +-------------------------- +Critical +10 +Increases Magical Damage with every element by 10%. +Increases Critical Damage by 10%. +-------------------------- +When equipped with Temporal Transcendence Robe: +ATK +5%, +MATK +5% +-------------------------- +Type: Shoes +Defense: 15 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +22206# +Boots made by the royal family as a token of appreciation for hunters who excelled in hunting competitions. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +For each 3 Refine Levels: +HIT +2 +-------------------------- +When equipped with Regia Hunting Mail: +Increases Ranged Physical Damage by 7%. + +For each Refine Level above +9 or higher of Regia Hunting Boots and Regia Hunting Mail: +Increases Critical Damage by 7%. +-------------------------- +Type: Shoes +Defense: 5 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +22207# +Beautiful boots adorned with patterns representing the Rune Midgard kingdom. +-------------------------- +MaxHP +3% +MaxSP +3% +MDEF +10 +Enables the use of Level 1 Increase Agility. +-------------------------- +If Inspiration is at Level 5, +Decreases Shield Spell skill cooldown by 2 seconds. +-------------------------- +For each Level of Cannon Spear: +Increases damage of Banishing Point by 10%. +-------------------------- +For each Level of Sacrifice: +ATK +4% +-------------------------- +For each Level of Pinpoint Attack: +Bypass 20% of hard defense of all race targets when performing a physical attacks. +-------------------------- +If Refine Level is +5 or higher, +MaxHP +7% +MaxSP +7% +Increases Ranged Physical Damage by 5%. +-------------------------- +If Refine Level is +7 or higher, +MaxHP +10% +MaxSP +10% +Increases Ranged Physical Damage by additional 5%. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22208# +Boots made of many parts of powerful dragons. +You can feel the pressure of the dragon just by wearing it. +-------------------------- +MaxSP +500 +Increases Attack Speed (Decreases After Attack Delay by 7%). +Decreases Variable Casting Time by 7%. +-------------------------- +Refine Level +7: +Decreases damage taken from Dragon race by 2%. +-------------------------- +Refine Level +9: +Recieving physical or magical damage has a chance to recover 500 SP per second for 3 seconds. +-------------------------- +Refine Level +11: +Decreases damage taken from Dragon race by additional 3%. +-------------------------- +Type: Shoes +Defense: 25 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +22209# +Boots worn by the priests who worshiped +Odin, which makes your movements lighter. +-------------------------- +MaxHP +5% +DEF +30 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +For each 2 Refine Levels: +Increases Physical Damage against enemies of Angel and Demon race by 1%. +-------------------------- +For each 3 Refine Levels: +Decreases damage taken from Angel and Demon race by 1%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by additional 10%). +-------------------------- +Type: Shoes +Defense: 35 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +22210# +A popular brand in the Kingdom of Rune Midgard, with a fluffy fish print on the shoe. +-------------------------- +MDEF +10 +-------------------------- +MaxHP +3%, MaxSP +3% +-------------------------- +If Spirit Of Sea is learned: +Prevents Sleep, Stun, Stone Curse for 30 seconds when Grooming is used. +-------------------------- +If Grooming is Level 5 or higher: +Decreases Fixed Casting Time of skills by 50%. +Prevents the user from being knocked back. +-------------------------- +For each Level of Tasty Shrimp Party: +Decreases Variable Casting Time of Fresh Shrimp, Bunch of Shrimp, Tuna Belly, Tuna Party, Grooming and Tasty Shrimp Partyby 10%. +-------------------------- +For each Level of Purring: +Increases Healing skills effectiveness by 10%. +-------------------------- +Refine Level +5: +MaxHP +7%, MaxSP +7% +Decreases After Skill Delay by by 10%. +-------------------------- +Refine Level +7: +MaxHP +10%, MaxSP +10% +Decreases After Skill Delay by by additional 10%. +-------------------------- +Type: Shoes +Defense: 12 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22215# +Sandals for top adventurers on a new adventure. +-------------------------- +ATK +15 +MATK +15 +-------------------------- +Type: Shoes +Defense: 15 +Weight: 60 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 150 +# +22234# +Shoes that the pioneers of the New World prefer. +-------------------------- +ATK +50, MATK +50 +-------------------------- +MaxHP +10%, MaxSP +10% +-------------------------- +Refine Level +7: +ATK +50, MATK +50 +MaxHP +10%, MaxSP +10% +-------------------------- +When equipped with Book of Origin: +Decreases After Skill Delay by 20%. + +Refine Level of Frontier Boots is +7 or higher: +For each Refine Level of Book of Origin: +Increases Magical Damage against monsters of Fire, Water, Wind and Earth elemental by 3%. +-------------------------- +When equipped with Miner's Pickaxe: +Decreases Axe Tornado skill cooldown by 0.5 seconds. + +Refine Level of Frontier Boots is +7 or higher: + +Refine Level of Miner's Pickaxe is +7 or higher: +Decreases damage taken from Boss class by 30%. + +Refine Level of Miner's Pickaxe is +9 or higher: +Decreases damage taken from Boss class by additional 20%. +-------------------------- +When equipped with Vigilante's Bow: +Prevents Bleeding and Sleep status. + +Refine Level of Frontier Boots is +7 or higher: +For each 40 base INT: +AGI +6 +Increases Attack Speed (Decreases After Attack Delay by 6%). + +Base INT at least 120: +FLEE +100 +Increases damage of Severe Rainstorm and Triangle Shot by 50%. +-------------------------- +When equipped with Guitar of Nature: +Decreases damage taken from Demi-Human race by 10%. +Decreases damage taken from Doram Players by 20%. + +Refine Level of Frontier Boots is +7 or higher: + +Refine Level of Guitar of Nature is +7 or higher: +MaxHP +10%, MaxSP +10% + +Refine Level of Guitar of Nature is +9 or higher: +Decreases damage taken from Normal class by 10%. +-------------------------- +When equipped with Rope of Nature: +Decreases damage taken from Demi-Human race by 10%. +Decreases damage taken from Doram Players by 20%. + +Refine Level of Frontier Boots is +7 or higher: + +Refine Level of Rope of Nature is +7 or higher: +MaxHP +10%, MaxSP +10% + +Refine Level of Rope of Nature is +9 or higher: +Decreases damage taken from Normal class by 10%. +-------------------------- +When equipped with Monokage: +Decreases SP Consumption of Shadow Slash by 10. + +Refine Level of Frontier Boots is +7 or higher: +ATK +30%. +Increases Critical Damage by 30%. + +Refine Level of Frontier Boots is +9 or higher: +Increases Attack Speed (Decreases After Attack Delay by 20%). +Increases Critical Damage by additional 20%. +-------------------------- +When equipped with Sakura Blossom Huuma Shuriken: +Decreases Swirling Petal skill cooldown by 0.3 seconds. + +Refine Level of Frontier Boots is +7 or higher: + +Refine Level of Sakura Blossom Huuma Shuriken is +7 or higher: +Decreases damage taken from Boss class by 30%. + +Refine Level of Sakura Blossom Huuma Shuriken is +9 or higher: +Decreases damage taken from Boss class by additional 20%. +-------------------------- +Type: Shoes +Defense: 5 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +22238# +Boots said to be worn by a great hero. +It seems to resonate with the Patent Hero Weapons. +-------------------------- +MaxHP +1500 +MaxSP +150 +-------------------------- +Refine Level +3: +MaxHP +1% +MaxSP +1% +-------------------------- +Refine Level +7: +ATK +5% +MATK +5% +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Refine Level +11: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +13: +Decreases After Skill Delay and After Cast Delay by 5%. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +22506# +A fresh shellfish that contains magical power. +-------------------------- +Weight: 10 +# +22507# +This old, discolored scroll, sustained with the mana used for maintaining distorted spaces, sends its user to a random space. +-------------------------- +Weight: 1 +# +22508# +A token that certifies a member of the Eden Group. It's made to be very portable. +-------------------------- +Type: Supportive +Effect: Teleport user to Eden Group +Cool down: 20 minutes +Weight: 0 +# +22509# +A treasure chest for the rainbow event. +-------------------------- +A chest containing 5 of JOB Battle Manual, Bubble Gum, Megaphone, Token of Siegfried and Life Insurance. +-------------------------- +Weight: 0 +# +22510# +A scroll containing rare items: Blacksmith's blessing, Vagabond Wolf King Hat, Imp Hat, +Safe to +11 Weapon Certificate, Safe to +11 Armor Certificate, an Old Ore box and Mystical Card Album. +-------------------------- +Weight: 1 +# +22511# +It temporarily endows its user with Fenrir's power. +MATK +25, -50% Fixed Casting. +Lasts for 5 minutes. +-------------------------- +Weight: 1 +# +22513# +Luxuriously wrapped box. +rumored to contain old magic Card, Kiel-D-01 Card, Meteor Storm, scroll, etc. +-------------------------- +Weight: 10 +# +22514# +Basket to Collect Candy,You can Find Old Stuff and Delicious Snacks inside it. +-------------------------- +Weight: 1 +# +22515# +A key cursed by time keeper's twisted time spell. Curses time to go slower. +It puts a curse to slow time around. +-------------------------- +Cooldown: 60 seconds +Weight: 30 +-------------------------- +Requirement: +Base Level 100 +# +22516# +A red liquid that seems hardened. It's easy to mistake this as a beutiful red gem. You can feel something evil deep inside it. +-------------------------- +Weight: 1 +# +22517# +Scroll to summon Loki +# +22519# +When you eat this item, you recieve the Stop Motion Buff. +# +22520# +When you eat this item, the Stop Motion Buff is released. +# +22521# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +* [Event] Regenerate Potion 3ea +* [Event] White Potion Box20 5ea +* [Event] Blue Potion Box10 5ea +* [Event] Battle Manual 2ea +* Unlimited Fly Wing Box (1 Day) +* [Event] Token of Siegfried 3ea +* [Event] Steamed Tongue 10ea +* [Event] Steamed Scorpion 10ea +* [Event] Dragon Breath Cocktail 10ea +* [Event] Hwergelmir's Tonic 10ea +* [Event] Cooked Nine Tail's Tail 10ea +* [Event] Stew of Immortality 10ea +* ROVerse Levelup Pack (90) +-------------------------- +Weight: 0 +Requirement: +Base Level 80 +# +22522# +A box of essentials for your Level up. +-------------------------- +A box containing 2 [Event] Battle Manual & Bubble Gum and 2 [Event] JOB Battle Manual. +If you open now, you can also get 15 World Tour Ticket and a Level-Up Box(110)! +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 100 +# +22523# +A box of essentials for your Level up. +-------------------------- +A box containing 2 [Event] Battle Manual & Bubble Gum and 2 [Event] JOB Battle Manual, 1 [Event] Infinite Fly Wing Box(7 Days), 10 [Event] Almighty and 10 [Event] Power Booster. +If you open now, you can also get 15 World Tour Ticket and a Level-Up Box(130)! +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 120 +# +22524# +A box of essentials for your Level up. +-------------------------- +A box containing 2 [Event] Battle Manual & Bubble Gum, 2 [Event] JOB Battle Manual, 30 [Event] Small Life Potion and 30 [Event] Medium Life Potion. +If you open now, you can also get 10 World Tour Ticket and a Level-Up Box(140)! +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 130 +# +22525# +A box of essentials for your Level up. +-------------------------- +A box containing 1 Greater Battle Manual, 15 [Event] Almighty, 15 [Event] Power Booster and 15 [Event] Little Mana Potion. +If you open now, you can also get 10 World Tour Ticket and a Level-Up Box(150)! +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 140 +# +22526# +A box of essentials for your Level up. +-------------------------- +A box containing 3 [Event] Battle Manual & Bubble Gum, 30 [Event] Small Life Potion, 30 [Event] Medium Life Potion and 15 [Event] Small Mana Potion. +If you open now, you can also get 30 [Event] Brilliant Protection Scroll and a Level-Up Box(160)! +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 150 +# +22527# +A box of essentials for your Level up. +-------------------------- +A box containing 2 Greater Battle Manual, 15 [Event] Almighty, 15 [Event] Power Booster and 30 [Event] Brilliant Protection Scroll. +If you open now, you can also get a Safe to +8 Weapon Certificate and a Level-Up Box(175)! +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 160 +# +22528# +\ + exchange coupons or exchange coupons for \ + in the box. +Pet are random +-------------------------- +Weight: 2 +# +22529# +Shadow Thump Box. +-------------------------- +If you combine 3 random Shadow Equipment, you can obtain 1 random Shadow Equipment. +There is a low chance that you will get Shadow II Equipment (yellow) that cannot be obtained from the Shadow Cube. +Promotional Shadow Equipment cannot be used in combination. Blue Shadow Equipment (Combination Shadow Equipment) do not come out of this pick box. +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +22533# +Outside the box is written, New Year Greeting from each Department. +-------------------------- +Weight: 0 +# +22534# +Now I will be able to open. Well closed this box had been created with a terrible loneliness. +-------------------------- +Weight: 100 +# +22535# +A scroll that summons a worker. +Take the worker to a construction site suited to his skills. +-------------------------- +Weight: 1 +# +22536# +A scroll that summons a worker. +Take the worker to a construction site suited to her skills. +-------------------------- +Weight: 1 +# +22537# +Rewarded to warriors on the quest to defeat Morocc. +-------------------------- +Weight: 10 +# +22538# +It is made of a thin silk hanbok caste. +It somehow feels crisp materials. +It seems that no iron group. +-------------------------- +Weight: 1 +# +22539# +Contains 1 of Savage Barbecue, Cocktail Warg Blood, Minor Brisket, Shiroma Iced Tea, Drosera Herb Steamed and The Petite Tail Noodles. +-------------------------- +Weight: 0 +# +22540# +Casts \ +, which boosts your physical abilities. +Physical melee attacks have a 15% chance to activate Level 1 Storm Blast. +Increases Melee Physical Damage against all enemies of every size by 30%. +Increases Melee Physical Damage by 30%. +Increases Critical Damage by 30%. +Increases Ranged Physical Damage by 30%. +Increases MaxHP and MaxSP by 30%. +-------------------------- +Type: Runestone +Weight: 1 +# +22541# +A well-wrapped gift box. Do not know what inside +-------------------------- +Weight: 1 +# +22542# +Potion that stimulates concentration. Affects the attack speed of its consumer. +-------------------------- +Type: Stat booster +Effect: Increases attack speed +Effect duration: 30 minutes +Weight: 10 +# +22543# +A very special potion that enrages the character and turns him into a berserker and increases the character's attack speed. +-------------------------- +Type: Stat booster +Effect: Increases attack speed +Effect duration: 30 minutes +Weight: 20 +-------------------------- +Requirement: +Base Level 85 +Swordsman, Merchant and Wizard classes; Rogue and Magician +# +22544# +Potion that possesses the effect of awakening. It is a mysterious medicine that helps to increase the character's attack speed. +-------------------------- +Type: Stat booster +Effect: Increases attack speed +Effect duration: 30 minutes +Weight: 15 +-------------------------- +Requirement: +Base Level 40 +All classes except Acolyte, Priest, Bard and Dancer +# +22545# +A potion which increases the moving speed of a character for a set duration. +-------------------------- +Type: Supportive +Effect: Increases movement speed +Effect duration: 5 seconds +Weight: 10 +# +22546# +A potion which decreases the moving speed of a character for a set duration. +-------------------------- +Type: Supportive +Effect: Reduces movement speed +Effect duration: 5 seconds +Weight: 10 +# +22547# +A medicine made from grinded Mint that is used to ease pain and relax muscle tension. It's a popular painkiller because of its potency. +-------------------------- +Type: Supportive +Effect: Casts Endure effect on user +Weight: 10 +# +22548# +A bottle of cursed water. +-------------------------- +Type: Supportive +Effect: Enchants equipped weapon with Shadow elemental +Effect duration: 20 minutes +Weight: 3 +# +22549# +A skeleton shaped bottle which contains deadly poison. +note: Only Assassin Cross job can use this. +-------------------------- +Type: Skill necessity +Weight: 10 +# +22550# +For young children enjoy a variety of delicious snacks in your pocket. +-------------------------- +Weight: 7 +# +22551# +Doughy, chewy snacks made out of pine pollen, chestnut flour and honey, which enhance the flavor of teas. +-------------------------- +Type: Stat booster +Effect: HIT +30 +Effect duration: 3 minutes +Weight: 7 +# +22552# +These traditional crackers from a nation in the far east are made of mixed flour, honey and sweet liquor. +-------------------------- +Type: Stat booster +Effect: FLEE +30 +Effect duration: 3 minutes +Weight: 7 +# +22553# +A colorful rice cake that is used as a party food in the far east. +-------------------------- +Type: Stat booster +Effect: ATK +10, MATK +10 +Effect duration: 1 minutes +Weight: 7 +# +22554# +A first aid kit that should contain potions, although they're known to hold other things... +Produces a random Potion item. +-------------------------- +Weight: 20 +# +22555# +Deep dark chocolate flavors of high quality. +Luxury is worth that you pay at the time of purchase and Consumption when HP 5% SP 5% recovery intact. +-------------------------- +Weight: 1 +# +22556# +Likely be used in the party's elite luxury chocolates +Luxury is worth that you pay at the time of purchase and Consumption when HP 5% SP 5% recovery intact. +-------------------------- +Weight: 1 +# +22557# +Delicately infused artisan craftsmanship of chocolate. +Luxury is worth that you pay at the time of purchase and Consumption when HP 5% SP 5% recovery intact. +-------------------------- +Weight: 1 +# +22558# +The item that contain various celebration item for festival. +-------------------------- +Weight: 1 +# +22559# +The common wild berry in the field. +-------------------------- +After used, recover HP & SP by 50%, enable Endure Lv3. +-------------------------- +Weight: 10 +# +22566# +The beginning of the frost.Was insoluble ever since the world began. +Enough to get goosebumps, cold hands and face shining like an expensive metal. +-------------------------- +Cures Burning status. +-------------------------- +Weight: 0 +# +22567# +A prize box for Morocc adventure troops. +-------------------------- +Weight: 10 +# +22568# +A magic scroll that can summon Nydhogg. +# +22569# +Luxuriously Packaged Box. +-------------------------- +Contains a mysterious box of eggs or advanced weapons, Dracula Card or Meteor Storm Scroll. +-------------------------- +Weight: 10 +# +22571# +An egg contains many holiday items. +-------------------------- +Weight: 1 +# +22589# +A box to capture the savage. Favorite food of savage. +(It disappear after finish the event) +-------------------------- +Weight: 0 +# +22590# +A box to capture the grand peco. Favorite food of grand peco. +(It disappear after finish the event) +-------------------------- +Weight: 0 +# +22591# +A box to capture the desert wolf. Favorite food of desert wolf. +(It disappear after finish the event) +-------------------------- +Weight: 0 +# +22592# +The service call to happiness responds happily paying customers per box. +The outside of the box is written audit of a representative of the advice greeting. +-------------------------- +Weight: 0 +# +22594# +A box containing 1 Devoted Eyes costume. +-------------------------- +Weight: 10 +# +22595# +A box containing 1 Blessed Armor Ore. +-------------------------- +Elunium blessed by the Blacksmith God. When refining +6~+12 Armor, the armor will not be damaged even if it fails. +-------------------------- +Go to Prontera's Refining Room and find [Blacksmith Dister]. +-------------------------- +Weight: 1 +# +22596# +A box containing 1 Blessed Weapon Ore. +-------------------------- +Oridecon blessed by the Blacksmith God. When refining +6~+12 Weapons, the weapon will not be damaged even if it fails. +-------------------------- +Go to Prontera's Refining Room and find [Blacksmith Dister]. +-------------------------- +Weight: 1 +# +22597# +A box containing 10 Orc Lord Scrolls. +-------------------------- +When used, you'll recieve part of Orc Lord's Power. +-------------------------- +Reflects 30% of physical melee damage for 3 minutes. +-------------------------- +Weight: 1 +# +22598# +A box containing 10 Enriched Oridecon. +-------------------------- +Enriched Oridecon - Increases rate of refining a weapon without breaking it. +-------------------------- +Go to the Refine Rooms in each City and find the Blacksmith capable using it. +-------------------------- +Weight: 1 +# +22599# +A box containing 10 Enriched Elunium. +-------------------------- +Enriched Elunium - Increases rate of refining a armor without breaking it. +-------------------------- +Go to the Refine Rooms in each City and find the Blacksmith capable using it. +-------------------------- +Weight: 1 +# +22600# +A box containing 10 Alice Summon Books, which contracts Alice to assist you in your battles. +-------------------------- +Mercenary disappears when its owner has drained all energy. +-------------------------- +Weight: 1 +# +22601# +A box containing 10 Teddy Bear Scrolls, which contracts Teddy Bear to assist you in your battles. +-------------------------- +Mercenary disappears when its owner has drained all energy. +-------------------------- +Weight: 1 +# +22602# +A box containing 10 Salamander Scrolls, which contracts Salamander to assist you in your battles. +-------------------------- +Mercenary disappears when its owner has drained all energy. +-------------------------- +Weight: 1 +# +22603# +A box containing 10 Kasa Scrolls, which contracts Kasa to assist you in your battles. +-------------------------- +Mercenary disappears when its owner has drained all energy. +-------------------------- +Weight: 1 +# +22604# +A box containing 10 Wicked Nymph Scrolls, which contracts Wicked Nymph to assist you in your battles. +-------------------------- +Mercenary disappears when its owner has drained all energy. +-------------------------- +Weight: 1 +# +22605# +Jam had spoken by mixing milk, flour, honey and other ingredients into bread. Looks flat and square-shaped hard and the upper surface of the outside is decorated with brown. +-------------------------- +Increases attack speed and movement speed for a certain period of time. +-------------------------- +Weight: 1 +# +22607# +A magic scroll that summons powerful companion when used. +-------------------------- +Weight: 5 +# +22610# +A box containing 1 Support Novice box, Guardian of Time Box, Level up box, the gift set contains on each. +-------------------------- +Weight: 1 +# +22611# +Often found in the Excavation Site, this envelope activates a random effect for 30 seconds when opened. +-------------------------- +Weight: 1 +# +22612# +Unknown due to the decaying debris Potion vitro. +A very short time can be a zombie-like state. +-------------------------- +Weight: 5 +# +22613# +Using waste has created a potion in vitro. +It may be a state similar between Golem but very short. +-------------------------- +Weight: 5 +# +22614# +Rental Item +Written by veteran adventurer, with this guide you can get more efficiency when you kill monsters. +-------------------------- +30Increases experience by 50% and item drop rate by 100% for 30 minutes. +Warning - The battle manual and gum don't add to their effect in this book. +-------------------------- +Weight: 0 +# +22615# +Legend has it that the egg was successfully laid at 12 noon on the Dragon Boat Festival, and good luck! +-------------------------- +Weight: 0 +# +22616# +A packet of spices. Folk customs are worn on the Dragon Boat Festival to avoid evil. +-------------------------- +After use, it can transform into a Boiled Rice monster for 1 minute. +-------------------------- +Weight: 0 +# +22617# +Awarded for completing 10 times the quest of the new episode. +Advanced Battle Manual and two new MVP boss cards are packaged in one random. +-------------------------- +Weight: 1 +# +22618# +Awarded for completing 5 times the quest of the new episode. +Advance Battle Manual, OCA, OMC, OCA (Helmet), OCA (Weapon), one is packed. +-------------------------- +Weight: 1 +# +22619# +Is there a way to summon the ghost scrolls written. +Ghost will not really out surely? +-------------------------- +Weight: 0 +# +22620# +Memories of an old box containing a collection of objects. For a bunch of different things, but one coming in his place. Okay, when I open box. +-------------------------- +Weight: 0 +# +22621# +I can feel the sincerity and sweat. Artisan roasted salty fragrant squid. +-------------------------- +Recovery a small amount of Hp and Sp. +During 5 min Increases experience when kill Fish race monsters by 25%. +-------------------------- +Weight: 25 +# +22622# +In the annual Christmas, the happy gift box is full of unknown surprises! +-------------------------- +Weight: 1 +# +22623# +A box containing 1 Support Novice box, Guardian of Time Box, Level up box, the gift set contains on each. +-------------------------- +Weight: 1 +# +22624# +A traditional snack twisted funny. It's very bigger than usual and you can see this only in Oktoberfest. +-------------------------- +It recovers all your HP instantly. +-------------------------- +Weight: 20 +# +22625# +You can be charming with this bag including a chic costume! Please enjoy the Oktoberfest! +-------------------------- +With using this, you can wear Oktoberfest Costume for 10 min. +-------------------------- +Weight: 10 +# +22626# +A box containing the following items: +-------------------------- +1 New Year Gift and 5 World Tour Tickets. +-------------------------- +Weight: 10 +# +22627# +A box containing the following items: +-------------------------- +1 Half Megingjord, +1 Half Brisingamen, +1 Half Asprika, +1 Half Brynhild, +5 World Tour Tickets. +-------------------------- +Weight: 10 +# +22648# +Angel of the ring-shaped gift package. +-------------------------- +This package contains Angel Ring Balloon, Safe to 7 Armor/Weapon Certificate, Splendid Box, for know that this question and so on, but the rumors of them do not know whether what is packed. +-------------------------- +Weight: 1 +# +22649# +Devil of the ring-shaped gift package. +-------------------------- +This package contains Angel Ring Balloon, Safe to 7 Armor/Weapon Certificate, Old Blue Box but what of those rumors that you two do not know if immersed. +-------------------------- +Weight: 1 +# +22652# +For a hat that is unknown, this packaging has a very colorful box. A sensational hat has written is inside. +-------------------------- +Weight: 20 +# +22653# +This completely wet the album card are seriously damaged. +Inside of the album, the cards is a big thick and may be perfect. +-------------------------- +Weight: 5 +# +22654# +Gorgeous card, decorated with gold leaf. +Is stamped into a shape with words that say it contains very valuable cards. +-------------------------- +Weight: 5 +# +22655# +A gift box filled with good tastes of fun and surprise gifts. +-------------------------- +Weight: 1 +# +22656# +A supply box containing mainly equipment. +It doesn't always contain what you want ... +-------------------------- +Weight: 1 +# +22657# +Mass created with rice flour, milled in the right size to cover the entire sheet and form a delicious rice cake. +One of traditional holiday food in South Korea. +-------------------------- +Type: Restorative +Heal: 20% HP +Weight: 20 +# +22658# +A meat made by steaming the cow ribs. +-------------------------- +Type: Stat booster +Effect: Variable Casting Time -5%, SP cost -3% +Effect duration: 3 minutes +Weight: 10 +# +22659# +A meat made by steaming the pork ribs. +-------------------------- +Type: Stat booster +Effect: Reduces After Attack Delay by 5%, SP cost -2% +Effect duration: 3 minutes +Weight: 10 +# +22660# +A sealed envelope. Open it up to see what's inside. +-------------------------- +Weight: 1 +# +22667# +A box containing items useful for interpersonal warfare. +-------------------------- +Weight: 10 +# +22668# +A box containing 20 Old Pudding. +-------------------------- +Weight: 10 +# +22669# +The box contains a text that says: I feel like a living Soul. +There is a figure with his tongue out and smiling, it seems funny things inside. +-------------------------- +Weight: 20 +# +22670# +Invitation for going to the world of the dead. +If you break this scroll you suddenly run out of air and your heart will become dark, will feel grab you and take you to nifelheim. +-------------------------- +Weight: 0 +# +22671# +A box containing 2 Secret Keys of Kachua and 5 World Tour Tickets. +-------------------------- +Weight: 10 +# +22672# +A box containing 1 Blacksmiths Blessing and 5 World Tour Tickets. +-------------------------- +Weight: 10 +# +22673# +A box containing 5 [Event] Small Mana Potions and 5 World Tour Tickets. +-------------------------- +Weight: 10 +# +22674# +A box containing 5 [Event] Brilliant Protection Scrolls and 5 World Tour Tickets. +-------------------------- +Weight: 10 +# +22675# +The world's most mysterious scrolls written with letters. +-------------------------- +INT +30 for 1 hour. +Caution! During cooking, this effect is not apply in cooking formula.. +-------------------------- +Weight: 100 +# +22676# +The October 9 is celebrated on Hangul Day and for that it's create this box. +-------------------------- +A box containing 10 Mysterious Scrolls and 9 Yggdrasil Berrys. +-------------------------- +Weight: 100 +# +22679# +A box containing the soul of fallen warrior. +No body knows whose soul inside it. +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 170 +# +22680# +A yellow piece spilled from a crystal that is said to carry happiness for a year. +-------------------------- +Weight: 0.1 +# +22681# +A blue piece spilled from a crystal that is said to carry happiness for a year. +-------------------------- +Weight: 0.1 +# +22682# +A red piece spilled from a crystal that is said to carry happiness for a year. +-------------------------- +Weight: 0.1 +# +22685# +Let's open only when alone. +I no know it has before opening. +-------------------------- +Weight: 0 +# +22686# +Christmas cookies to eat alone. +Alone. Alone. +-------------------------- +Type: Restorative +Heal: 5% HP, 5% SP +Weight: 5 +# +22687# +Unstable fragment that was came from powerful vicious mind. It can affect your feeling if you do something carelessly. +There is tendency from this fragment to return to its source if it fall too far. +-------------------------- +Cooldown: 5 seconds +Weight: 0.1 +# +22691# +Shard of a Memory Record found in the laboratories. Shards were only left after it broke when being decoded. +A strange energy of it being pulled somewhere can be felt. +-------------------------- +Type: Quest +Weight: 0 +# +22692# +Shard of a Memory Record found in the laboratories. Shards were only left after it broke when being decoded. +A strange energy of it being pulled somewhere can be felt. +-------------------------- +Type: Quest +Weight: 0 +# +22693# +Shard of a Memory Record found in the laboratories. Shards were only left after it broke when being decoded. +A strange energy of it being pulled somewhere can be felt. +-------------------------- +Type: Quest +Weight: 0 +# +22694# +Shard of a Memory Record found in the laboratories. Shards were only left after it broke when being decoded. +A strange energy of it being pulled somewhere can be felt. +-------------------------- +Type: Quest +Weight: 0 +# +22695# +Shard of a Memory Record found in the laboratories. Shards were only left after it broke when being decoded. +A strange energy of it being pulled somewhere can be felt. +-------------------------- +Type: Quest +Weight: 0 +# +22696# +A box containing two W tickets. +-------------------------- +This item will be available until the scheduled maintenance starts on February 25, 2014 (Tuesday). +If you open the box after the period of use, nothing will appear. +-------------------------- +Can only be moved to storage. +-------------------------- +Take a W Ticket to the NPC \ + in Izlude for special refining. +-------------------------- +Weight: 1 +# +22698# +A box containing a one-time password (OTP) or special proof that can be obtained by an ID lock user. +If you show it to the NPC \ +, you will be able to receive special magic. +-------------------------- +Barrier Reinforced Token automatically disappears 168 hours after opening the box, but does not automatically disappear when the deadline has passed in the warehouse, but disappears as soon as you leave the warehouse. +-------------------------- +Weight: 0 +# +22699# +Test reagent that has not yet passed clinical tests. +Sticker reads it can vitalize physical abilities to an extreme and temporarily Increases agility, but could lose sight as a side effect. +-------------------------- +Weight: 3 +# +22700# +A box containing 1 Temporal Transcendence Box, 1 White Slim Potion Box, 200 [Event] Fly Wing, 50 Novice Butterfly Wing, 50 Novice Magnifier and 5 Oridecon Arrow Quiver. +-------------------------- +Weight: 0 +# +22701# +Cotton candy that looks similar to Pegasus. It is said that the taste is soft and it makes you feel better. +Recovers 40% of HP/SP when used. Grants Level 5 Blessing. FLEE +10 for 30 seconds. +-------------------------- +Weight: 5 +# +22702# +Decreases base STR by 1 and give status points. +Cannot be used when STR is 1. +-------------------------- +Weight: 0 +# +22703# +Decreases base AGI by 1 and give status points. +Cannot be used when AGI is 1. +-------------------------- +Weight: 0 +# +22704# +Decreases base VIT by 1 and give status points. +Cannot be used when VIT is 1. +-------------------------- +Weight: 0 +# +22705# +Decreases base INT by 1 and give status points. +Cannot be used when INT is 1. +-------------------------- +Weight: 0 +# +22706# +Decreases base DEX by 1 and give status points. +Cannot be used when DEX is 1. +-------------------------- +Weight: 0 +# +22707# +Decreases base LUK by 1 and give status points. +Cannot be used when LUK is 1. +-------------------------- +Weight: 0 +# +22708# +I don't know the reason why i'm excited about this new box. I have a good feeling that something good will happen, Let's open! +(When the event ends, the item will be removed.) +-------------------------- +Weight: 10 +# +22709# +A small potion that spills out around those who have been taken by the warrior Aura. +Resistance to some abnormal conditions is temporarily increased. +-------------------------- +The difference of Base Level +15 determines you the potion succeeds on preventing the following conditions: +Blind, Confusion, Bleeding +Sleep, Stun, Petrification, +Freezing, Silence, Poison, +Curse, Fatal Poison +-------------------------- +This item is only effective when used in the city, indoor, siege battle and new siege battle maps. +-------------------------- +Weight: 5 +Effect duration: 180 minutes +-------------------------- +Requirement: +Base Level 100 +# +22710# +A medium potion that spills out around those who have been taken by the warrior Aura. +Resistance to some abnormal conditions is temporarily increased. +-------------------------- +The difference of Base Level +30 determines if the potion succeeds on preventing the following conditions: +Blind, Confusion, Bleeding +Sleep, Stun, Petrification, +Freezing, Silence, Poison, +Curse, Fatal Poison +-------------------------- +This item is only effective when used in the city, indoor, siege battle and new siege battle maps. +-------------------------- +Weight: 5 +Effect duration: 180 minutes +-------------------------- +Requirement: +Base Level 100 +# +22711# +A large potion that spills out around those who have been taken by the warrior Aura. +Resistance to some abnormal conditions is temporarily increased. +-------------------------- +The difference of Base Level +45 determines if the potion succeeds on preventing the following conditions: +Blind, Confusion, Bleeding +Sleep, Stun, Petrification, +Freezing, Silence, Poison, +Curse, Fatal Poison +-------------------------- +This item is only effective when used in the city, indoor, siege battle and new siege battle maps. +-------------------------- +Weight: 5 +Effect duration: 180 minutes +-------------------------- +Requirement: +Base Level 100 +# +22712# +A condensed potion that spills out around those who have been taken by the warrior Aura. +Resistance to some abnormal conditions is temporarily increased. +-------------------------- +The difference of Base Level +100 determines if the potion succeeds on preventing the following conditions: +Blind, Confusion, Bleeding +Sleep, Stun, Petrification, +Freezing, Silence, Poison, +Curse, Fatal Poison +-------------------------- +This item is only effective when used in the city, indoor, siege battle and new siege battle maps. +-------------------------- +Weight: 5 +Effect duration: 180 minutes +-------------------------- +Requirement: +Base Level 99 +# +22717# +Egg-shaped tool for capturing the Wanderer. Let's pray hard that the Wanderer will be caught with this. +-------------------------- +Weight: 0 +# +22718# +Egg-shaped tool for capturing a Lude. Let's pray hard that the Lude will be caught with this. +-------------------------- +Weight: 0 +# +22719# +Egg-shaped tool for capturing a Tatacho. Let's pray hard that the Tatacho will be caught with this. +-------------------------- +Weight: 0 +# +22720# +Egg-shaped tool for capturing a Novus. Let's pray hard that the Novus will be caught with this. +-------------------------- +Weight: 0 +# +22721# +Boom! +-------------------------- +Weight: 0 +# +22722# +Cookies made with the arms of the candidates of King Mote / Queen Tag. +The appreciation for the voters is very tasty and very delicious. +-------------------------- +Restore 2% HP and SP +-------------------------- +Casts Magnificat lv.1. +-------------------------- +Weight: 2 +# +22723# +A dish of octopus legs (?) grilled over an open flame. +It is delicious as it is, but the finished olive oil accentuates the flavor. +Let's enjoy it before the expiration date. +-------------------------- +Restore 3% HP and SP +-------------------------- +Can only be sold to NPC's and moved into storage. +-------------------------- +Weight: 3 +# +22733# +A box containing one Special Dungeon Entry Ticket. +-------------------------- +This item will be available until Tuesday, June 10, 2014. +If you open the box after the period of use, nothing will appear. +-------------------------- +Can only be moved to the storage. +-------------------------- +Special Dungeon Entry Ticket will automatically disappear 480 hours after opening the box. +-------------------------- +If you take the Special Dungeon Entry Ticket to the NPC \ + in Prontera, you then can go to the NPC \ + to enter a special dungeon. +-------------------------- +Weight: 1 +# +22734# +Pay per remain in second place in the competition of faster trivial. +A box containing for example 2 Blacksmith's Blessing, 1 Seagod's Anger, 1 Enchanted Letter Introduction. +-------------------------- +Weight: 1 +# +22735# +A limited edition of sealed moonlight flower Scroll. Contain one of: +Sealed moonlight flower card +Safe to 9 Weapon Certificate +Safe to 9 Armor Certificate +Infinity Shadow Earring +Costume Lolita Ten Gallon Hat +Infinite Giant Fly Wing Box V +Blacksmith's Blessing +Gold and other rare items. +-------------------------- +Weight: 1 +# +22736# +A box containing 2 Sealed Mysterious Egg and 5 World Tour Tickets. +-------------------------- +Weight: 10 +# +22737# +An ammo case that contains 500 Bloody Shells. +-------------------------- +Weight: 25 +# +22738# +An ammo case that contains 500 Silver Bullets. +-------------------------- +Weight: 25 +# +22739# +A box that contains 500 Lightning Grenades. +-------------------------- +Weight: 35 +# +22740# +A box that contains 500 Flash Grenades. +-------------------------- +Weight: 35 +# +22741# +A box that contains 500 Poison Grenades. +-------------------------- +Weight: 35 +# +22742# +A box that contains 500 Cryo Grenades. +-------------------------- +Weight: 35 +# +22743# +A box that contains 500 Incendiary Grenades. +-------------------------- +Weight: 35 +# +22744# +An ammo case that contains 500 Armor-Piercing bullets. +-------------------------- +Weight: 25 +# +22745# +An ammo case that contains 500 Blazing Bullets. +-------------------------- +Weight: 25 +# +22746# +An ammo case that contains 500 Freezing Bullets. +-------------------------- +Weight: 25 +# +22747# +An ammo case that contains 500 Lightning Bullet. +-------------------------- +Weight: 25 +# +22748# +An ammo case that contains 500 Magic Stone Bullet. +-------------------------- +Weight: 25 +# +22749# +An ammo case that contains 500 Purifying Bullet. +-------------------------- +Weight: 25 +# +22750# +Over a period of time this scroll transforms you into a Horn Scaraba. +During transformation: +ASPD +2 +HIT +10 +-------------------------- +Weight: 1 +# +22751# +Over a period of time this scroll transforms you into a Wanderer. +During transformation: +ASPD +2 +HIT +10 +-------------------------- +Weight: 1 +# +22752# +Over a period of time this scroll transforms you into a Gazeti. +During transformation: +Increases ranged attack by 30%. +-------------------------- +Weight: 1 +# +22753# +Over a period of time this scroll transforms you into a Kobold Archer. +During transformation: +Increases ranged attack by 30%. +-------------------------- +Weight: 1 +# +22754# +Over a period of time this scroll transforms you into a Necromancer. +During transformation: +MATK +50 +-------------------------- +Weight: 1 +# +22755# +Over a period of time this scroll transforms you into a Wind Ghost. +During transformation: +MATK +50 +-------------------------- +Weight: 1 +# +22756# +A box containing 2 [Event] Battle Manual & Bubble Gum and 5 World Tour Tickets. +-------------------------- +Weight: 10 +# +22757# +A bundle scroll contains 1 Transformation Scroll(Wind Ghost) and 1 Transformation Scroll(Necromancer). +-------------------------- +Weight: 20 +# +22758# +A bundle scroll contains 1 Transformation Scroll(Kobold Archer) and 1 Transformation Scroll(Gazeti). +-------------------------- +Weight: 20 +# +22759# +A bundle scroll contains 1 Transformation Scroll(Wanderer) and 1 Transformation Scroll(Horn Scaraba). +-------------------------- +Weight: 20 +# +22760# +A box for Argiope. Go fishing and wish for the biggest boy +(The item disappears after Event Period) +-------------------------- +Weight: 0 +# +22761# +A box for Luciola Vespa. Go fishing and wish for the biggest boy +(The item disappears after Event Period) +-------------------------- +Weight: 0 +# +22762# +A box for Centipede. Go fishing and wish for the biggest boy +(The item disappears after Event Period) +-------------------------- +Weight: 0 +# +22764# +A box containing 1 Pet Exchange Ticket. +What type of pet will be inside is unknown. +-------------------------- +Weight: 1 +# +22770# +Grilled skewer of Shark, the predator of Sea and Symbol of fear. +You might want to be careful because eating this can summon a cruel shark. +-------------------------- +Weight: 1 +# +22771# +A skewer made from bluefin tuna, the finest fish for various dishes. +-------------------------- +Type: Stat booster +Effect: Physical attack damage +30% +Effect duration: 5 seconds +Weight: 1 +# +22772# +Grilled skewer of Sea Bream whose color and taste is fabulous. +-------------------------- +Type: Stat booster +Effect: MATK +30% +Effect duration: 5 seconds +Weight: 1 +# +22773# +Grilled skewer of Piranha with hideous teeth. +-------------------------- +Type: Stat booster +Effect: ASPD +5 +Effect duration: 5 seconds +Weight: 1 +# +22774# +Grilled skewer of Salmon which has an instinct to go back to its born-place. +-------------------------- +Type: Stat booster +Effect: Increases movement speed +Effect duration: 5 seconds +Weight: 1 +# +22775# +Grilled skewer of Eel famous for its strength. +-------------------------- +Type: Stat booster +Effect: DEF +30% +Effect duration: 5 seconds +Weight: 1 +# +22776# +Grilled skewer of Carp which was used as a medicine from long time ago in the far east. +-------------------------- +Type: Stat booster +Effect: MDEF +30% +Effect duration: 5 seconds +Weight: 1 +# +22777# +Using G-Points sold this gift with a selection of buffs. +A box containing 5 [Event] Small Life Potion, 10 [Event] Blessing Scrolls Lv 5, 10 [Event] Increase Agility Lv 5. +Extra, a box contains 2 [Event] foods Level 10each group. +Weight: 10 +# +22778# +An egg that shines in gold. +Items can be obtained by opening the egg. +-------------------------- +Can only be moved to the storage. +-------------------------- +Weight: 1 +# +22779# +An egg that shines in silver. +Items can be obtained by opening the egg. +-------------------------- +Can only be moved to the storage. +-------------------------- +Weight: 1 +# +22780# +An egg with a star shape. +Items can be obtained by opening the egg. +-------------------------- +Can only be moved to the storage. +-------------------------- +Weight: 1 +# +22781# +A box that can be earned by consuming 2 points of PC room mileage. +-------------------------- +A box containing 50 White Slim Potion. +Upon opening, you can get one of the additional rare items. +-------------------------- +Weight: 20 +# +22782# +A box that can be obtained by consuming 10 points of PC room mileage. +-------------------------- +A box containing 80 White Slim Potion. +Upon opening, you can get one of the additional rare items. +-------------------------- +Weight: 20 +# +22783# +A box that can be obtained by consuming 100 points of PC room mileage. +-------------------------- +A box containing 2 White Slim Potion Box and 10 Elunium. +Upon opening, you can get one of the additional rare items. +-------------------------- +Weight: 20 +# +22784# +A box that can be obtained by consuming 300 points of PC room mileage. +-------------------------- +A box containing 2 White Slim Potion Box, 10 Speed Potion and 12 Poison Bottle. +Upon opening, you can get one of the additional rare items. +-------------------------- +Weight: 20 +# +22802# +Contains Safe to 6 Armor Certificate and Safe to 6 Weapon Certificate. +-------------------------- +Weight: 1 +# +22808# +A gift set to support adventurers of Midgard continent! +It is a good idea to check your weight before opening it. +-------------------------- +Weight: 10 +# +22812# +Sealed Dracula Scroll for a limited time. +-------------------------- +You can get one of several rare items: +Sealed Dracula Card, +Safe to +9 Weapon Certificate, +Safe to +9 Armor Certificate, +Bearer's Shadow Box, +Costume Silk Hat of Earth, +Infinite Fly Wing Box(1 Day), +Blacksmiths Blessing +and more. +-------------------------- +Weight: 1 +# +22813# +A box containing Bearer's Shadow Equipment. +-------------------------- +You can get one of the Bearer's (Armor, Shoes, Shield, Weapon, Earring, Pendant) Shadow Equipment. +-------------------------- +Weight: 1 +# +22814# +A ticket given by leader of Cat Hand service. +Cats are expanding their business over the year of service. +-------------------------- +Can be use to store items in the storage of Cat Hand Service. +-------------------------- +Weight: 1 +# +22816# +A concentrate of Life Potion which created for recovery purpose. +-------------------------- +Recovers 4% MaxHP every 3 seconds for 60 minutes. +Cannot be used in Berserk state. +Increases movement speed for 10 minutes. +Effect will disappear when character die. +-------------------------- +Weight: 1 +# +22817# +A bottle which contain sap of Yggdrasil tree. Has effect to recover a wound. +-------------------------- +Recovers 5% MaxHP every 5 seconds for 60 minutes. +Cannot be used in Berserk state. +Increases movement speed for 10 minutes. +Effect will disappear when character die. +-------------------------- +Weight: 1 +# +22818# +A bottle which contain sap of Yggdrasil tree. Has effect to recover a wound. +-------------------------- +Recovers 7% MaxHP every 4 seconds for 60 minutes. +Cannot be used in Berserk state. +Increases movement speed for 10 minutes. +Effect will disappear when character die. +-------------------------- +Weight: 1 +# +22819# +A notorious dish which good for body. +-------------------------- +All Stats +10, ATK and MATK +30 for 60 minutes. +Increases movement speed for 10 minutes. +Caution!! Using it twice will not doubled the effect. +-------------------------- +Weight: 1 +# +22820# +A potion that has equal effect with normal attack speed potion. +Its more effective when used in conjunction with any other attack speed potion. +-------------------------- +Increases aspd for 60 minutes, can be used by all jobs. +Increases movement speed for 10 minutes. +-------------------------- +Weight: 1 +# +22821# +A booster that can assist in battle by activate the energy in body. Caution!! it will strain your stamina. +-------------------------- +For 60 minutes: +ATK and MATK +30, +Increases Attack Speed (Decreases After Attack Delay by 5%), +Decreases Variable Casting Time by 5%, +MaxHP and MaxSP -10%. +When attacking (physical or magical), has chance to activate Level 3 Improve Concentration. +Increases movement speed for 10 minutes. +Effect will disappear when character die. +-------------------------- +Weight: 1 +# +22822# +A pocket containing a newly created swimsuit. +-------------------------- +When used, you can wear a swimsuit for 10 minutes. +-------------------------- +Weight: 10 +# +22823# +Sealed Sniper Scroll for a limited time. +-------------------------- +A box containing one of the following items: +Sealed Sniper Card, +Safe to 9 Weapon Certificate, +Safe to 9 Armor Certificate, +Hasty Shadow Shoes, +Hasty Shadow Armor, +Costume Flowerpot Mask, +Infinite Fly Wing Box(5 Days), +Blacksmiths Blessing +and more. +-------------------------- +Weight: 1 +# +22825# +Weight: 0 +# +22826# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +ASPD Stone(Garment) +Stones from existing costume enchant stone boxes can also be obtained with a relatively low chance. +-------------------------- +Weight: 1 +# +22827# +A box that contain various kinds of shadow equipment. +-------------------------- +Weight: 1 +# +22828# +A limited Sealed Seal Scroll. Contains one of the following items: +-------------------------- +Sealed Seal Card +Safe to 9 Weapon Certificate +Safe to 9 Armor Certificate +Expert Shadow Shoes +Expert Shadow Shield +Infinite Fly Wing Box 5 days +Heroic Desocketing Book +and more. +-------------------------- +Weight: 1 +# +22829# +A collectible card. Obtained from Sealed Seal Scroll. Contains 1 Card of following list: +-------------------------- +Dark Lord +Stormy Knight +Beelzebub +Kiel-D-01 +Gloom Under Night +Fallen Bishop +Ifrit +Turtle General +White Lady +Pharaoh +Moonlight Flower +Boss Egnigem +Vesper +Dracula +Sniper +-------------------------- +Weight: 1 +# +22836# +You can get a card by opening the notebook. +-------------------------- +00It will disappear automatically 336 hours after you receive it. +-------------------------- +Can only be stored. +-------------------------- +Weight: 5 +# +22837# +Reward you get for all the adventurers in their suffered and ferocious battles. When consumed you get five bronze coins. +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 50 +# +22838# +A basket for Halloween candies. When opened, various goodies and old stuffs will be found. +-------------------------- +Weight: 1 +# +22839# +A mysterious box that may make you happy when you open it. +I don't know what will happen. +-------------------------- +Weight: 20 +# +22841# +Halloween celebration candy. +It would be better not to know about the ingredients. +-------------------------- +Recovers about 25% of SP. +-------------------------- +Weight: 3 +# +22842# +Limited edition Sealed Dracula Scroll. Contains one of the following items: +-------------------------- +Safe to 9 Weapon Certificate, +Safe to 9 Armor Certificate, +Enhanced Force Shadow Weapon, +Enhanced Soul Shadow Weapon, +Infinite Giant Fly Wing Box(5 Days), +Enchant Letter +and more. +-------------------------- +Weight: 1 +# +22843# +A product obtained when the selected monster hunts in the event super star R. Taste the elegance of as feels like a winner. +For 5 minutes Increases ATK and MATK by 50. +ATK and MATK bonus cannot be overwrite if player consume another Superstar snack. +Bonus effect will gone when player is death. +When player Level up, status windows will not be updated. +-------------------------- +Weight: 1 +# +22844# +You can get Sealed Dracula card from this album. Its unknown which card will you get. +-------------------------- +Weight: 5 +# +22845# +Contains one 'Sealed' Card like: +-------------------------- +Dark Lord, +Stormy Knight, +Beelzebub, +Kiel D-01, +Gloom Under Night, +Fallen Bishop, +Ifrit, +Turtle General, +White Lady, +Pharaoh, +Moonlight Flower, +General Egnigem Cenia, +Vesper, +Dracula +-------------------------- +Weight: 1 +# +22846# +The power of Dracula seems to be felt for some time. +5% chance to restore 5% of the damage deal into SP +5 minutes duration. +-------------------------- +Weight: 1 +# +22847# +A prontera emblem crafted on it. +When used, it will teleport you to prontera. +-------------------------- +Weight: 1 +# +22848# +A key ring that hold many keys. +Can be used to go to Prontera Underground Prison dungeon. +-------------------------- +Weight: 1 +# +22849# +A rare small crystal that found in time distortion. +You can return to the past Prontera when there is valkyrie chaos invasion. +-------------------------- +Weight: 1 +# +22850# +A box containing one Mysterious Egg. +-------------------------- +Weight: 10 +# +22851# +A box containing 1 [Event] Yggdrasil Seed Box. +-------------------------- +Weight: 10 +# +22852# +A box containing two Taming Gift Sets. +-------------------------- +Weight: 10 +# +22853# +A box containing 1 Half Megingjord, Half Brisingamen, Half Asprika, Half Brynhild. Available for 14 days. +-------------------------- +Weight: 10 +# +22854# +A box containing 1 Buff Gift Set. +-------------------------- +Weight: 10 +# +22855# +A box containing one Wet Card Album. +-------------------------- +Weight: 10 +# +22856# +A box containing one New Year Gift. +-------------------------- +Weight: 10 +# +22857# +A box containing a crown of the Costume Strawberry Prince. +-------------------------- +Weight: 10 +# +22858# +A box containing 1 Rental Sigrun Wings. Available for 7 days. +-------------------------- +Weight: 10 +# +22859# +A box containing 1 [Event] Royal Jelly Box. +-------------------------- +Weight: 10 +# +22860# +A box containing 1 Half Megingjord, Half Brisingamen, Half Asprika, Half Brynhild. Available for 14 days. +-------------------------- +Weight: 10 +# +22861# +A box containing 2 Mysterious Eggs. +-------------------------- +Weight: 10 +# +22868# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +ASPD Stone(Garment) +Attack Stone(Upper) +Magic Stone(Upper) +Strength Stone(Mid) +Intelligence Stone(Mid) +Agility Stone(Mid) +Dexterity Stone(Mid) +Vitality Stone(Mid) +Lucky Stone(Mid) +HP Stone(Lower). +Stones from existing costume enchant stone boxes can also be obtained with a relatively low chance. +-------------------------- +Weight: 1 +# +22869# +Winter limited time product! Ticket with 10 points added to Bronze Point of Lucky Roulette. +-------------------------- +Weight: 0 +Level Requirement: 50 +# +22870# +A wonderful package with all the paraphernalia and Christmas atmosphere. +(This item will be removed when Christmas event ends.) +-------------------------- +Weight: 1 +# +22871# +A box containing the Ultimate Refinement Ticket. +-------------------------- +Ultimate Refinement Ticket will automatically disappear 696 hours after opening the box. +-------------------------- +This item will be available until the scheduled maintenance starts on February 24, 2015 (Tuesday). +If you open the box after the expiration date, nothing will appear. +-------------------------- +Can only be moved to the storage. +-------------------------- +Take the Ultimate Refinement Ticket to the NPC \ + in Izlude for special refining. +-------------------------- +Weight: 1 +# +22873# +Limit edition sealed beelzebub scroll. +sealed beelzebub card, Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Safe to 9 Weapon Certificate, Safe to 9 Armor Certificate. +Blitz Shadow Shoes, Blitz Shadow Shield, Infinite Giant Fly Wing Box 5, Blacksmith's Blessing and other rare items, only can get one of the items. +-------------------------- +Weight: 1 +# +22874# +You can get Sealed Beelzebub Card at small chance +-------------------------- +Weight: 5 +# +22875# +You can come to feel for a time all the power of Beelzebub. +Decreases the Variable Casting Time of skills by 15%. +During 5 minutes. +(This item will be removed when the event ends) +-------------------------- +Weight: 1 +# +22876# +Old purse, appears to be very worn. +there is noise when you shake it. It seems that does not contain a lot of money. +-------------------------- +Weight: 0 +# +22881# +A hunting rope to capture something or someone. Useful for capturing 'Lost Lamb'. +-------------------------- +Weight: 0 +# +22882# +Restore 10% of HP and SP. +-------------------------- +Weight: 10 +# +22883# +A box containing 1 Event Inventory Expansion Coupon and 5 World Tour Tickets. +-------------------------- +Weight: 10 +# +22884# +A box containing 1 Costume Angel Veil and 5 World Tour Tickets. +-------------------------- +Weight: 10 +# +22885# +A box containing 1 [Event] Transformation Scroll Bundle and 5 World Tour Tickets. +-------------------------- +Weight: 10 +# +22886# +A box containing 3 Secret Keys of Kachua and 5 World Tour Tickets. +-------------------------- +Weight: 10 +# +22887# +Contain one of [Event] White Slim Potion Box(100), Golden Sealed Card or +7 Refine Ticket +-------------------------- +Weight: 1 +# +22888# +Limited New Year scrolls. +-------------------------- +A scroll containing one of the following items: +Safe to 11 Weapon Certificate +Safe to 11 Armor Certificate +Safe to 9 Weapon Certificate +Safe to 9 Armor Certificate +Caster Shadow Shoes +Caster Shadow Shield +Caster Shadow Armor +Infinite Giant Fly Wing Box 5 +and more. +-------------------------- +Weight: 1 +# +22893# +A box that contains one Shadow Equipment. +-------------------------- +Weight: 1 +# +22894# +When pressed, it will flashing a blue light, people who look at it will pass out. +Reset skill tree. +Can be only used in town and total weight must be zero. Cannot be placed in storage. +-------------------------- +Weight: 0 +# +22895# +You can request a reset on reset NPC. +Its possible for 1 hour to three retries. +Weight must be zero, cart and mount must be off. +-------------------------- +Weight: 0 +# +22896# +Used by NAMI to reset stats. +In addition, if the item is expired, status reset in imposible, even you are in conversation with the NPC. +Weight must be zero, cart and mount must be off. +-------------------------- +Weight: 0 +# +22899# +A guide map to the interior of city. +When used, cast Level 1 Increases agility on user. +CAUTION! do not use when casting a skill. +CAUTION! its consume 15 HP, don't use it when HP is below 15. +-------------------------- +Weight: 1 +# +22900# +Medicine created by some witch. +-------------------------- +Weight: 1 +# +22901# +People know what this box is, but the content is quite different. +-------------------------- +Weight: 0 +# +22902# +Sealed Seal Scroll for limited time. +-------------------------- +You can get one of the following items: +Sealed Seal Scroll, +Safe to 11 Weapon Certificate, +Safe to 11 Armor Certificate, +Reload Shadow Shoes, +Reload Shadow Shield, +Reload Shadow Armor, +Infinite Fly Wing Box(5 Days) +and more. +-------------------------- +Weight: 1 +# +22905# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +HP Absorbtion Stone (Garment) +SP Restoration Stone (Garment) +Stones from existing costume enchant stone boxes can also be obtained with a relatively low chance. +-------------------------- +Weight: 1 +# +22906# +Sealed Seal Scroll for limited time. +-------------------------- +You can get get one of the following items: +Sealed Seal Card, +Safe to 9 Weapon Certificate, +Safe to 9 Armor Certificate, +New Year Shadow Cube, +Infinite Fly Wing Box(5 Days) +and more. +-------------------------- +Weight: 1 +# +22907# +A bell to call Edward, a staff member of the Zonda Support Service. +When the ringtone rings, it appears in front of the customer anytime, anywhere. +-------------------------- +[Basic Service] +Providing more efficient services for growth: +- Bubble Gum (30 minutes, twice a day) +- JOB Battle Manual (30 minutes, twice a day) +- Butterfly Wings (Unlimited) +- These items are sellable +Caution! - Possessing any number will not duplicate the benefits. +-------------------------- +[Zonda Special Service] +We offer the following services at special prices. (Consumes Silvervine Cat Fruit): +- Battle Manual (24 hours) +- JOB Battle Manual (24 hours) +- Initialize Skill Tree +- Initialize Status +-------------------------- +Weight: 0 +# +22908# +A bell to call Elysee, a staff member of the Zonda Support Service. +When the ringtone rings, it appears in front of the customer anytime, anywhere. +-------------------------- +[Basic Service] +Providing more efficient services for growth: +- Bubble Gum (30 minutes, twice a day) +- JOB Battle Manual (30 minutes, twice a day) +- Butterfly Wings (Unlimited) +- These items are sellable +Caution! - Possessing any number will not duplicate the benefits. +-------------------------- +[Zonda Special Service] +We offer the following services at special prices. (Consumes Silvervine Cat Fruit): +- Battle Manual (24 hours) +- JOB Battle Manual (24 hours) +- Initialize Skill Tree +- Initialize Status +-------------------------- +Weight: 0 +# +22909# +An envelope contain 1 Safe to 5 Weapon Certificate. +-------------------------- +Weight: 1 +# +22910# +An envelope contain 1 Safe to 6 Weapon Certificate. +-------------------------- +Weight: 1 +# +22911# +An envelope contain 1 Safe to 7 Weapon Certificate. +-------------------------- +Weight: 1 +# +22912# +An envelope contain 1 Safe to 8 Weapon Certificate. +-------------------------- +Weight: 1 +# +22913# +An envelope contain 1 Safe to 9 Weapon Certificate. +-------------------------- +Weight: 1 +# +22914# +Bubble Gum 24h +-------------------------- +Weight: 0 +# +22915# +An envelope contain 1 Safe to 11 Weapon Certificate. +-------------------------- +Weight: 1 +# +22916# +An envelope contain 1 Safe to 12 Weapon Certificate. +-------------------------- +Weight: 1 +# +22917# +An envelope contain 1 Safe to 13 Weapon Certificate. +-------------------------- +Weight: 1 +# +22918# +An envelope contain 1 Safe to 14 Weapon Certificate. +-------------------------- +Weight: 1 +# +22919# +An envelope contain 1 Safe to 15 Weapon Certificate. +-------------------------- +Weight: 1 +# +22920# +An envelope contain 1 Safe to 16 Weapon Certificate. +-------------------------- +Weight: 1 +# +22921# +An envelope contain 1 Safe to 17 Weapon Certificate. +-------------------------- +Weight: 1 +# +22922# +An envelope contain 1 Safe to 18 Weapon Certificate. +-------------------------- +Weight: 1 +# +22923# +An envelope contain 1 Safe to 19 Weapon Certificate. +-------------------------- +Weight: 1 +# +22924# +An envelope contain 1 Safe to 5 Armor Certificate. +-------------------------- +Weight: 1 +# +22925# +An envelope contain 1 Safe to 6 Armor Certificate. +-------------------------- +Weight: 1 +# +22926# +An envelope contain 1 Safe to 7 Armor Certificate. +-------------------------- +Weight: 1 +# +22927# +An envelope contain 1 Safe to 8 Armor Certificate. +-------------------------- +Weight: 1 +# +22928# +An envelope contain 1 Safe to 9 Armor Certificate. +-------------------------- +Weight: 1 +# +22929# +Job Battle Manual25 24h +-------------------------- +Weight: 0 +# +22930# +An envelope contain 1 Safe to 11 Armor Certificate. +-------------------------- +Weight: 1 +# +22931# +An envelope contain 1 Safe to 12 Armor Certificate. +-------------------------- +Weight: 1 +# +22932# +An envelope contain 1 Safe to 13 Armor Certificate. +-------------------------- +Weight: 1 +# +22933# +An envelope contain 1 Safe to 14 Armor Certificate. +-------------------------- +Weight: 1 +# +22934# +An envelope contain 1 Safe to 15 Armor Certificate. +-------------------------- +Weight: 1 +# +22935# +An envelope contain 1 Safe to 16 Armor Certificate. +-------------------------- +Weight: 1 +# +22936# +An envelope contain 1 Safe to 17 Armor Certificate. +-------------------------- +Weight: 1 +# +22937# +An envelope contain 1 Safe to 18 Armor Certificate. +-------------------------- +Weight: 1 +# +22938# +An envelope contain 1 Safe to 19 Armor Certificate. +-------------------------- +Weight: 1 +# +22943# +An envelope contain 1 Safe to 10 Armor Certificate. +-------------------------- +Weight: 1 +# +22944# +An envelope contain 1 Safe to 10 Weapon Certificate. +-------------------------- +Weight: 1 +# +22945# +Sweets made from cherry blossom leaves perfect for a spring picnic. +-------------------------- +Recovers HP and SP by 30%. +Increases damage against enemies of every size by 5% for 5 minutes. +-------------------------- +Weight: 3 +# +22946# +Limited Status Reduction Scroll. +-------------------------- +Contain: +Safe to 11 Weapon Certificate, +Safe to 11 Armor Certificate, +Safe to 9 Weapon Certificate, +Safe to 9 Armor Certificate, +STR Reduction Potion, +VIT Reduction Potion +and more. +-------------------------- +Weight: 1 +# +22947# +Box that contain 5 STR Reduction Potion. +-------------------------- +Weight: 1 +# +22948# +Box that contain 5 AGI Reduction Potion. +-------------------------- +Weight: 1 +# +22949# +Box that contain 5 VIT Reduction Potion. +-------------------------- +Weight: 1 +# +22950# +Box that contain 5 INT Reduction Potion. +-------------------------- +Weight: 1 +# +22951# +Box that contain 5 DEX Reduction Potion. +-------------------------- +Weight: 1 +# +22952# +Box that contain 5 LUK Reduction Potion. +-------------------------- +Weight: 1 +# +22953# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +HP Absorp Stone(Upper) +SP Restore Stone(Upper) +AGI Convert Stone(Lower) +and more. +Stones from existing costume enchant stone boxes can also be obtained with a relatively low chance. +-------------------------- +Weight: 1 +# +22954# +A magic box created to celebrate the growth of adventurers. +-------------------------- +By opening this box you can recieve the following items: +- Armor Exchange Ticket +- Level Up Box(Lv10) +Level Up Box(Lv10) will disappear automatically 336 hours after you get it. +-------------------------- +It is possible to open when Base Level is 1 or higher. +-------------------------- +Weight: 0 +# +22955# +A magic box created to celebrate the growth of adventurers. +-------------------------- +By opening this box you can recieve the following items: +- Weapon Exchange Ticket +- Armor Exchange Ticket +- Level Up Box(Lv30) +Level Up Box(Lv30) will disappear automatically 336 hours after you get it. +-------------------------- +It is possible to open when Base Level is 10 or higher. +-------------------------- +Weight: 0 +# +22956# +A magic box created to celebrate the growth of adventurers. +-------------------------- +By opening this box you can recieve the following items: +- Weapon Exchange Ticket +- Level Up Box(Lv45) +Level Up Box(Lv45) will disappear automatically 336 hours after you get it. +-------------------------- +It is possible to open when Base Level is 30 or higher. +-------------------------- +Weight: 0 +# +22957# +A magic box created to celebrate the growth of adventurers. +-------------------------- +By opening this box you can recieve the following items: +- Orlean's Full Course +- Beginner's Manual 2 +- Level Up Box(Lv55) +Orlean's Full Course and Level Up Box(Lv55) will disappear automatically 336 hours after you get it. +-------------------------- +It is possible to open when Base Level is 45 or higher. +-------------------------- +Weight: 0 +# +22958# +A magic box created to celebrate the growth of adventurers. +-------------------------- +By opening this box you can recieve the following items: +- Boarding Halter +- Beginner's Manual 3 +- Level Up Box(Lv65) +Boarding Halter and Level Up Box(Lv65) will disappear automatically 336 hours after you get it. +-------------------------- +It is possible to open when Base Level is 55 or higher. +-------------------------- +Weight: 0 +# +22959# +A magic box created to celebrate the growth of adventurers. +-------------------------- +By opening this box you can recieve the following items: +- Armor Exchange Ticket +- Level Up Box(Lv72) +Level Up Box(Lv72) will disappear automatically 336 hours after you get it. +-------------------------- +It is possible to open when Base Level is 65 or higher. +-------------------------- +Weight: 0 +# +22960# +A magic box created to celebrate the growth of adventurers. +-------------------------- +By opening this box you can recieve the following items: +- Weapon Exchange Ticket +- Level Up Box(Lv79) +Level Up Box(Lv79) will disappear automatically 336 hours after you get it. +-------------------------- +It is possible to open when Base Level is 72 or higher. +-------------------------- +Weight: 0 +# +22961# +A magic box created to celebrate the growth of adventurers. +-------------------------- +By opening this box you can recieve the following items: +- Orlean's Full Course +- Beginner's Manual 2 +- Level Up Box(Lv85) +Orlean's Full Course and Level Up Box(Lv85) will disappear automatically 336 hours after you get it. +-------------------------- +It is possible to open when Base Level is 79 or higher. +-------------------------- +Weight: 0 +# +22962# +A magic box created to celebrate the growth of adventurers. +-------------------------- +By opening this box you can recieve the following items: +- Armor Exchange Ticket +- Level Up Box(Lv90) +Level Up Box(Lv90) will disappear automatically 336 hours after you get it. +-------------------------- +It is possible to open when Base Level is 85 or higher. +-------------------------- +Weight: 0 +# +22963# +A magic box created to celebrate the growth of adventurers. +-------------------------- +By opening this box you can recieve the following items: +- Armor Exchange Ticket +- Level Up Box(Lv93) +Level Up Box(Lv93) will disappear automatically 336 hours after you get it. +-------------------------- +It is possible to open when Base Level is 90 or higher. +-------------------------- +Weight: 0 +# +22964# +A magic box created to celebrate the growth of adventurers. +-------------------------- +By opening this box you can recieve the following items: +- Armor Exchange Ticket +- Level Up Box(Lv95) +Level Up Box(Lv95) will disappear automatically 336 hours after you get it. +-------------------------- +It is possible to open when Base Level is 93 or higher. +-------------------------- +Weight: 0 +# +22965# +A magic box created to celebrate the growth of adventurers. +-------------------------- +By opening this box you can recieve the following items: +- Armor Exchange Ticket +- Level Up Box(Lv96) +Level Up Box(Lv96) will disappear automatically 336 hours after you get it. +-------------------------- +It is possible to open when Base Level is 95 or higher. +-------------------------- +Weight: 0 +# +22966# +A magic box created to celebrate the growth of adventurers. +-------------------------- +By opening this box you can recieve the following items: +- Armor Exchange Ticket +- Level Up Box(Lv97) +Level Up Box(Lv97) will disappear automatically 336 hours after you get it. +-------------------------- +It is possible to open when Base Level is 96 or higher. +-------------------------- +Weight: 0 +# +22967# +A magic box created to celebrate the growth of adventurers. +-------------------------- +By opening this box you can recieve the following items: +- Armor Exchange Ticket +- Level Up Box(Lv98) +Level Up Box(Lv98) will disappear automatically 336 hours after you get it. +-------------------------- +It is possible to open when Base Level is 97 or higher. +-------------------------- +Weight: 0 +# +22968# +A magic box created to celebrate the growth of adventurers. +-------------------------- +By opening this box you can recieve the following items: +- Armor Exchange Ticket +- Level Up Box(Lv99) +Level Up Box(Lv99) will disappear automatically 336 hours after you get it. +-------------------------- +It is possible to open when Base Level is 98 or higher. +-------------------------- +Weight: 0 +# +22969# +A magic box created to celebrate the growth of adventurers. +-------------------------- +By opening this box you can recieve the following item: +- Graduation Certificate +Graduation Certificate will disappear automatically 48 hours after you get it. +-------------------------- +It is possible to open when Base Level is 99 or higher. +-------------------------- +Weight: 0 +# +22970# +It has a nostalgic scent that you may have smelled somewhere. +-------------------------- +You can return to the 1st floor of the lounge when using it at an official internet cafe. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Weight: 0 +# +22971# +Limited time offer. +-------------------------- +You can get one of the following items: +Mad Bunny Special[0] +Safe to 7 Armor Certificate +Safe to 7 Headgear Certificate +Safe to 7 Weapon Certificate +Safe to 10 Certificate +Str Soul Potion +Agi Soul Potion +Vit Soul Potion +Int Soul Potion +Dex Soul Potion +Luk Soul Potion +(Soul Potions reset 1 stat point) +Blacksmith's Blessing (Save it for later!) +-------------------------- +Weight: 1 +# +22972# +Paper box with smiley ornament, decorated with yellow ribbon. +Contains one of the following items: +-------------------------- +Evil Marching Hat +Vagabond Wolf King Helmet +Drooping Kitty Crew +Imp Hat +Red Marching Hat +-------------------------- +Weight: 20 +# +22973# +Contain 1 of various kinds of Shadow weapon. +-------------------------- +Weight: 1 +# +22974# +A box where you can get one of a variety of Shadow Armor Equipments. +-------------------------- +Weight: 1 +# +22975# +A box where you can get one of a variety of Shadow Shield Equipments. +-------------------------- +Weight: 1 +# +22976# +A box where you can get one of a variety of Shadow Shoes Equipments. +-------------------------- +Weight: 1 +# +22977# +A box where you can get one of a variety of Shadow Pendant Equipments. +-------------------------- +Weight: 1 +# +22978# +A box where you can get one of a variety of Shadow Earring Equipments. +-------------------------- +Weight: 1 +# +22979# +A set of chewy and sweet bubble gum with a written description of more efficient combat methods. +Somehow, you feel like you're growing fast and you'll feel like you're going to defeat all the monsters you meet. +-------------------------- +Experience gained is increased by 50% for 30 minutes. +Item Drop Chance is increased by 100% for 30 minutes. +-------------------------- +Weight: 0 +# +22980# +A scroll showing the vicinity of the 'wavelength of cracks' on Beacon Island, Pharos. +When this scroll is consumed, it moves to a place close to the 'wavelength of the crack'. +-------------------------- +Weight: 1 +# +22981# +A mysterious beacon that pierces the ground and turns on the switch and a Mado Gear appears from nowhere. +-------------------------- +If you have mastered Mado Gear License, you can board your Mado Gear. +-------------------------- +Can not be used on WoE, Battleground and Turbo Track maps. +-------------------------- +Cooldown: 180 seconds +Weight: 10 +# +22982# +A bell to call Edward, a staff member of the Zonda Support Service. +When the ringtone rings, it appears in front of the customer anytime, anywhere. +-------------------------- +[Basic Service] +Providing more efficient services for growth: +- Bubble Gum (30 minutes, twice a day) +- JOB Battle Manual (30 minutes, twice a day) +- Butterfly Wings (Unlimited) +- These items are sellable +Caution! - Possessing any number will not duplicate the benefits. +-------------------------- +[Zonda Special Service] +We offer the following services at special prices. (Consumes Silvervine Cat Fruit): +- Battle Manual (24 hours) +- JOB Battle Manual (24 hours) +- Initialize Skill Tree +- Initialize Status +-------------------------- +[Lucky Egg Gift Service] +Lucky Eggs are in my hands every 4 days! +- Collect 4 Mysterious Eggs and recieve 1 Lucky Egg. +- A Mysterious Egg Sculpture is obtained through a conversation with a Zonda Support Staff. (1 per day) +-------------------------- +Weight: 0 +# +22983# +A bell to call Elysee, a staff member of the Jonda Support Service. +When the ringtone rings, it appears in front of the customer anytime, anywhere. +-------------------------- +[Basic Service] +Providing more efficient services for growth: +- Bubble Gum (30 minutes, twice a day) +- JOB Battle Manual (30 minutes, twice a day) +- Butterfly Wings (Unlimited) +- These items are sellable +Caution! - Possessing any number will not duplicate the benefits. +-------------------------- +[Zonda Special Service] +We offer the following services at special prices. (Consumes Silvervine Cat Fruit): +- Battle Manual (24 hours) +- JOB Battle Manual (24 hours) +- Initialize Skill Tree +- Initialize Status +-------------------------- +[Lucky Egg Gift Service] +Lucky Eggs are in my hands every 4 days! +- Collect 4 Mysterious Eggs and recieve 1 Lucky Egg. +- A Mysterious Egg Sculpture is obtained through a conversation with a Zonda Support Staff. (1 per day) +-------------------------- +Weight: 0 +# +22984# +Doram's favourite drink. +One of popular menus in pub. +For 3 minutes every 10 seconds restores 10 HP. +-------------------------- +Weight: 1 +# +22985# +A magical grass that gros on the head of basilisk. +Has detoxification effect on basilisk's poison. Taste a little spicy if eaten raw. +For 3 minutes every 10 second restore 5 SP. +-------------------------- +Weight: 1 +# +22986# +A limited number of sweets made to commemorate the RJC. +Pleasant sweetness heals the mind and body. +-------------------------- +Recovers 5% of HP and SP. +-------------------------- +Weight: 4 +# +22987# +A special card book given in honor of the good fight at RJC2015. +-------------------------- +Obtain one random Boss Monster Card, including MVP's. +-------------------------- +The above special effects will disappear at the end of regular maintenance on December 8, 2015. +-------------------------- +Weight: 0 +# +22988# +A well packed red box with purple ribbon. +Contains one of the following items: +-------------------------- +Heart Wings Hairband +Drooping Kitty Crew +World Cup Hat of Honor +Drooping Incarnation of Morocc +Mask of Ifrit +-------------------------- +Weight: 20 +# +22989# +A box that can be earned by consuming 2 points of PC room mileage. +Contains 50 [Event] White Slime Potion and 1 [Event] First Aid Box +Upon opening, you can get one of the additional rare items. +-------------------------- +Weight: 1 +\ + +# +22991# +A football shaped cake. +-------------------------- +Type: Restorative +Heal: 10% HP, 10% SP +Effect: Casts Level 1 Seismic Weapon on user +Weight: 1 +# +22996# +A bar with a blue flash when you press the switch. Those who looked at the flash seem to lose some of their memories. +-------------------------- +Initializes the skill tree. +Can only be used in towns and must be in possession of 0. +(All occupation groups with summons can use it). +-------------------------- +Weight: 0 +# +22997# +Scroll to use the greed skill. Why is it that a person feels greedy even if he just lifts it up? +Warning! - Can not be used in the towns. +-------------------------- +Weight: 0 +# +22998# +A ticket issued by the top of the Cat Hand Service. +A service ticket for the Cat Hand Service which grows every year. +When used, you can use the Cat Hand Storage Service. +-------------------------- +Weight: 0 +# +22999# +This Scroll Bundle contains one of each of the following items: +-------------------------- +Transformation Scroll(Wind Ghost) +Transformation Scroll(Horn Scaraba) +Transformation Scroll(Wanderer) +Transformation Scroll(Gazeti) +Transformation Scroll(Kobold Archer) +Transformation Scroll(Necromancer) +-------------------------- +Weight: 10 +# +23001# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +Greed Stone(Lower) +Cast Stone(Garment) +ASPD Stone(Upper) +Also added an effect stone that enchant costume's 4th slot: Twinkle(Upper), Ghost effect(Mid). +Stones from existing costume enchant stone boxes can also be obtained with a relatively low chance. +-------------------------- +Weight: 1 +# +23007# +A box that can be obtained by consuming 10 points of PC Cafe mileage. +1 White Slim Potion Box, 3 [Event] First Aid Boxes +and 1 Improved PC Cafe Normal Box are packed. +Upon opening, you can get one of the additional rare items. +-------------------------- +Weight: 1 +Caution - If the weight or possession limit is exceeded when the box is opened, items may be lost! +# +23008# +24h +-------------------------- +Weight: 0 +# +23010# +24h +-------------------------- +Weight: 0 +# +23011# +24h +-------------------------- +Weight: 1 +# +23012# +A small bottle that contain a sap of yggdrasil. It's said has a mana regeneration effect. +-------------------------- +Restores 5% of MaxSP every 5 second for 10 minutes. +Can't be used in Berserk state. +Effect disappear when character KO'ed. +-------------------------- +Weight: 1 +# +23013# +A box that can be obtained by consuming 100 points of PC Cafe mileage. +1 White Slim Potion Box, 1 [Event] Blessing Scroll Box(10), +1 [Event] Increase Agility Scroll Box(10), 5 Improved PC Cafe Normal Box, +5 Speed Change Potions and 10 Poison Bottles are packed. +Upon opening, you can get one of the additional rare items. +-------------------------- +Weight: 1 +Caution - If the weight or possession limit is exceeded when the box is opened, items may be lost! +# +23014# +A box that can be obtained by consuming 300 points of PC Cafe mileage. +1 Potion Box, 1 Poison Bottle Box, 1 [Event] Small Life Potion Box, +1 [Event] Abrasive Box, 1 [Event] Blessing Scroll Box(10), +1 [Event] Increase Agility Scroll Box(10), 30 Improved PC Cafe Normal Box +and 30 Speed Change Potions are packed. +Upon opening, you can get one of the additional rare items. +-------------------------- +Weight: 1 +Caution - If the weight or possession limit is exceeded when the box is opened, items may be lost! +# +23015# +A box containing 100 Red Slim Potions. Handle with care. +-------------------------- +Weight: 0 +Attention! Item will be lost if you exceed the weight limit when opening this box. +# +23016# +Unstable material made up of powerful vicious mind. There are so many feelings mixed up, may cause problem if you touch it. +-------------------------- +Weight: 0.1 +# +23021# +A box containing the appreciation of all personnel developing and servicing Ragnarok. +On the outer surface of the box, each person's appreciation is written. +-------------------------- +There rumors that it contains 1 Golden Seal Card, an +9 Refine Ticket and a Mysterious Egg. +-------------------------- +Weight: 10 +# +23022# +Mobile game cross event support box. +-------------------------- +Weight: 10 +# +23023# +Rental Item +An enchanted wings of fly. Able to transport many people at once. +When party leader use it, all party member within a map will be teleported together. Howling Mandragora gives no effect. +-------------------------- +Weight: 0 +# +23024# +A limited Piamette scroll. +You can get one of several rare items such as, Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, [Event] Neutralizer, Piamette Ribbon and Piamette Hood. +-------------------------- +Weight: 1 +# +23025# +A scroll that can summon Pope as mercenary. +-------------------------- +Weight: 0 +# +23026# +A scroll that can summon casual Pope as mercenary. +-------------------------- +Weight: 0 +# +23027# +A dandelion ring of rustic weave. Dandelion spores will fly somewhere when blown by wind. +Enables 'Return to Rachel'. +60 minutes re-use delay. +-------------------------- +Weight: 0 +# +23028# +A rope used to captue a runaway rabbit +-------------------------- +Weight: 0 +# +23029# +It includes a squeak for costumes where you can enjoy a different hairstyle. +You can't tell which one of the eight colors will come out until you open it. +-------------------------- +Weight: 1 +# +23030# +It includes a straight pony for costumes that allows you to enjoy a different hairstyle. +You can't tell which one of the eight colors will come out before you open it. +-------------------------- +Weight: 1 +# +23031# +Includes a loose-wave twintail for costumes to enjoy a different hairstyle than usual. +You can't tell which one of the eight colors will come out until you open it. +-------------------------- +Weight: 1 +# +23032# +Includes one of the following Status Reduction Potions below. +-------------------------- +STR Reduction Potion +AGI Reduction Potion +VIT Reduction Potion +INT Reduction Potion +DEX Reduction Potion +LUK Reduction Potion +-------------------------- +Weight: 0 +# +23033# +Contains one of Invisible Cap, Invisible Sunglasses, Invisible Mask and Invisible Manteau. +You cannot see it before you open it. +-------------------------- +Weight: 0 +# +23034# +Invisible Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, an Invisible Box and a Sealed Seal Card.. +-------------------------- +Weight: 1 +# +23035# +A box containing one Special Dungeon Entry Ticket. +-------------------------- +This item will be available until October 20, 2015 (Tuesday), when regular maintenance starts. +If you open the box after the end of the usage period, nothing will appear. +-------------------------- +Can only be stored. +-------------------------- +The Special Dungeon Entry Ticket will automatically disappear 480 hours after opening the box. +-------------------------- +Take it to the NPC \ + in Prontera to move to a special map to enter a special dungeon. +-------------------------- +Weight: 0 +# +23036# +A scroll that can summon Pope as mercenary +-------------------------- +Weight: 0 +# +23037# +A scroll that can summon casual Pope as mercenary. +-------------------------- +Weight: 0 +# +23038# +A box containing 200 [Event] White Slim Potions. Caution when opening. +-------------------------- +Caution - Items may be lost if you've exceeded the weight or carrying amount when you open the box! +-------------------------- +Weight: 0 +# +23039# +A box containing 200 [Event] Mastela Fruit. Caution when opening. +-------------------------- +Weight: 0 +Caution - If the weight or possession limit is exceeded when the box is opened, items may be lost! +# +23040# +A box containing 100 [Event] White Potion. Caution when opening. +-------------------------- +Weight: 0 +Caution - If the weight or possession limit is exceeded when the box is opened, items may be lost! +# +23041# +A box containing 100 [Event] Royal Jelly. Caution when opening. +-------------------------- +Weight: 0 +Caution - If the weight or possession limit is exceeded when the box is opened, items may be lost! +# +23042# +Seed from the Yggdrasil tree which holds our world together. It has a weird, energizing pungence. +-------------------------- +Type: Restorative +Heal: 50% HP, 50% SP +Cooldown: 3 Seconds +Weight: 30 +# +23043# +A box containing 30 [Event] Yggdrasil Seeds. Caution when opening. +-------------------------- +Caution - Items may be lost if you've exceeded the weight or carrying amount when you open the box! +-------------------------- +Weight: 0 +# +23044# +I don't know who makes the candy that looks like Elvira. +It looks like soda, but it's actually mint. +-------------------------- +Cures Curse, Slow Cast, Mental Shock, Fatal Wound, Fall and Freezing status. +-------------------------- +Cooldown: 60 seconds +Weight: 1 +# +23045# +A tasty mont blanc cake that perfect to eat on autumn night. +-------------------------- +Restores HP and SP by 20%. +Activate Level 5 Improve concentration. +-------------------------- +Weight: 5 +# +23046# +A mysterious powder will lighten your body for a while when sprayed. +-------------------------- +FLEE +20, LUK +10 for 5 minutes. +-------------------------- +Item effects will also disappear if the character dies. +-------------------------- +Weight: 1 +# +23047# +Potion that contains the blessing of god Tyr of fighting. +-------------------------- +Increase ATK and MATK by 20, HIT and FLEE by 30 for 5 minutes. +-------------------------- +Warning! - When using confections, snack food, Rainbow Rice Cake during the duration, the stats are not applied properly. Does not stack with same buffs. +-------------------------- +Item effects will disappear if the character dies. +-------------------------- +Weight: 1 +# +23048# +A potion made of alchemy and magical powers. The ingredients are made secret, but rumor has it that they were made by melting Rosary. +There are rumors that the manufactured alchemist loved beer and made potion bottles into beer bottles, but this seems quite credible. +-------------------------- +Taking it increases the performance of your Heal and some Potion Recovery items by 20% for 30 minutes. +-------------------------- +Item effects will also disappear if the character dies. +-------------------------- +Weight: 1 +# +23049# +A magical candy that pops up when you put it in your mouth. Make sure to brush your teeth after eating. +-------------------------- +ATK +20, Increases Attack Speed (Decreases After Attack Delay by 25%) and permanent endurance for 1 minute. Drains 100 HP every 10 seconds. +If you are incapacitated, the item effect will disappear. +-------------------------- +Cooldown: 3 minutes +Weight: 1 +# +23050# +A magical candy that pops up when you put it in your mouth. Make sure to brush your teeth after eating. +-------------------------- +MATK +30, Decreases Fixed Casting Time by 70% and protects from skill cast interruption. Drains 90 SP every 10 seconds. +(Only the highest effect of increases/decrease of Fixed Casting Time will be applied. The cooldown is shared with Tok Tok Candy.) +If you are incapacitated, the item effect will disappear. +-------------------------- +Cooldown: 3 minutes +Weight: 1 +# +23051# +New Hat Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Sealed Hat Box, Sealed Hat Box II and New Hat Box. +-------------------------- +Weight: 1 +# +23052# +Paper box decorated with a cat, decorated with a yellow ribbon. +Contains one of the following items: +-------------------------- +New Wave Sunglasses +8Way Wings of Purgatory +Noble Mask +Palace Guard Cap +Bandit's Bandana +-------------------------- +Weight: 20 +# +23058# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +Electric Effect(Mid) +Shrink Effect(Mid) +Green Flare Effect(Lower) +Stones from existing costume enchant stone boxes can also be obtained with a relatively low chance. +-------------------------- +Weight: 1 +# +23059# +When you open it, you will get 50 Face Paint. +-------------------------- +Weight: 15 +# +23060# +When you open it, you will get 50 Surface Paint. +-------------------------- +Weight: 15 +# +23061# +A quiver which contains 500 sharp arrows within. +-------------------------- +Weight: 25 +# +23062# +Coupon that can be provided when using the \ + application made by Inven. +-------------------------- +A box containing 100 [Event] White Slim Potions and it is saied that more rare items such as Golden Seal Cards or +7 Refine Tickets are issued rather than potions. +-------------------------- +Weight: 1 +# +23063# +Fragment of someone's dream. If you look closely you can see a lot of dreams. +You can break it to get more dream fragment. +-------------------------- +Weight: 0 +# +23069# +2015 Special Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Premium Reset Stone, 2015 Special Box and 2nd Job Shadow Equipment. +-------------------------- +Weight: 1 +# +23070# +A box of popular items from Lucky Eggs in 2015. +Contains one of the following items: +The chance for every item is equal. +-------------------------- +Caster Shadow Shoes +Caster Shadow Shield +Caster Shadow Armor +Reload Shadow Shoes +Reload Shadow Shield +Reload Shadow Armor +New Year Shadow Cube +Cursed Mad Bunny +Mad Bunny +Sealed Hat Box +Sealed Hat Box II +Soul Plunger +Happy Balloon +Piamette's Ribbon +Piamette's Hood +Invisible Box +New Hat Box +-------------------------- +Weight: 20 +# +23071# +A spinner made according to the appearance of the Devil Poring. +Senior Gift Exchangerprontera,147,170,0,100,0,0 +-------------------------- +Weight: 1 +# +23072# +Limited Angel Scroll. +-------------------------- +You can get one of several rare items, such as +Safe to 11 Weapon Certificate, +Safe to 11 Armor Certificate, +Sealed Seal Card, +Angel Poring Boots Box +and one of every Shadow Cube. +-------------------------- +Weight: 1 +# +23073# +A box containing 1 Angel Poring Boots. +You can also get one of the Angel Poring Boots Stones. +-------------------------- +Weight: 1 +# +23074# +A box containing 2 Mysterious Eggs. +-------------------------- +Weight: 10 +# +23075# +A box containing Half Megingjord, Half Brisingamen, Half Asprika and Half Brynhild. Available for 14 days. +-------------------------- +Weight: 10 +# +23076# +A vial attached with sticker 'Incomplete Clinical Test'. +When used in Werner Institute(General): +ASPD +10 for 10 seconds. +-------------------------- +Weight: 1 +# +23077# +A vial attached with sticker 'Incomplete Clinical Test'. +When used in Werner Institute(General): +Critical +10 for 10 seconds. +-------------------------- +Weight: 1 +# +23078# +A vial attached with sticker 'Incomplete Clinical Test'. +When used in Werner Institute(General): +Decreases Variable Casting Time by 80% for 10 seconds. +-------------------------- +Weight: 1 +# +23079# +Cake made with strawberries and cream. +-------------------------- +Recovers 10% HP and SP. +Casts Assumptio Level 3 on yourself. +-------------------------- +Weight: 0 +# +23080# +Crystalized grudge which was roaming. +Allow to gain a lot of pieces of grudge from it when it is broken down. +-------------------------- +Weight: 50 +# +23081# +Attention! If there are more than 30,000 items in inventory, items may be lost. +-------------------------- +Summons 500 Heat Wave Kunais. +-------------------------- +Weight: 25 +# +23082# +Attention! If there are more than 30,000 items in inventory, items may be lost. +-------------------------- +Summons 500 Iceicle Kunais. +-------------------------- +Weight: 25 +# +23083# +Attention! If there are more than 30,000 items in inventory, items may be lost. +-------------------------- +Summons 500 High Wind Kunais. +-------------------------- +Weight: 25 +# +23084# +Attention! If there are more than 30,000 items in inventory, items may be lost. +-------------------------- +Summons 500 Black Earth Kunais. +-------------------------- +Weight: 25 +# +23085# +Attention! If there are more than 30,000 items in inventory, items may be lost. +-------------------------- +Summons 500 Fell Poison Kunais. +-------------------------- +Weight: 25 +# +23086# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +Lex Aeterna Stone(Mid) +Variable Casting Stone(Upper, Middle, Lower) +Experience Stone(Upper) +Stones from existing costume enchant stone boxes can also be obtained with a relatively low chance. +-------------------------- +Weight: 1 +# +23087# +A bag once owned by Seyren Windsor. It is said to contains his companions belongings. +-------------------------- +Type: Container +Weight: 0 +# +23094# +A fantasy wine glass made from the dew of dawn on a fantasy flower. The drinker creates his illusion, making it difficult for him to attack. +-------------------------- +Perfect Dodge +20 for 1 minute. +If you are incapacitated, the item effect will disappear. +-------------------------- +Cooldown: 5 minutes +Weight: 1 +# +23095# +Poring Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Sealed Seal Card, Poring Sunglasses and Wet Card Album. +-------------------------- +Weight: 1 +# +23096# +A coupon that can be provided when using the MOBI application provided by the Hungry App. +-------------------------- +Contains 100 [Event] White Slim Potions, +it is saied that some items such as +11 and +7 Refine Tickets are rare. +-------------------------- +Weight: 1 +# +23097# +A box containing 1 Boarding Halter Box(7 Days) and 1 of Enhanced Time Keeper Shield, Boots, Manteau, Hat and Robe. +-------------------------- +Weight: 0 +# +23098# +A set of Shadow Boxes prepared for adventurers who had a hard run. +-------------------------- +1 Shadow Cube(Earring), Shadow Cube(Pendant), Shadow Cube(Armor), Shadow Cube(Shoes), Shadow Cube(Shield) and Shadow Cube(Weapon) are included. +-------------------------- +Weight: 0 +# +23100# +A scroll containing battle skills of the legendary mercenaries. +-------------------------- +When used, grand 2 Random Options to Dropping Rebel. +Caution! - When a Random Option is granted, the Refine Level and card slot will be reset. +-------------------------- +Weight: 1 +# +23106# +Amistr Scroll for limited time. +You can get one of several rare items such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Amistr Box and 3rd Class Shadow Weapon. +-------------------------- +Weight: 1 +# +23107# +A box containing an Amistr Bag. +There are total of nine types Amistr Bags and the chance for each bag is equal. +-------------------------- +Teleport Amistr Bag +Heal Amistr Bag +Greed Amistr Bag +Increases Agility Amistr Bag +Magnum Break Amistr Bag +Endure Amistr Bag +Sight Amistr Bag +Improve Concentration Amistr Bag +Hiding Amistr Bag +-------------------------- +Weight: 20 +Box Weight: 1 +# +23113# +Colorful painted eggs with many flowers. +-------------------------- +Weight: 1 +# +23114# +A happy gift box filled with unknown items. +-------------------------- +Weight: 1 +# +23115# +Contain 1 of random shadow equipment for spesific class. +-------------------------- +Weight: 1 +# +23116# +A limited shadow scroll. +Contain 1 of: +Safe to 11 Armor Certificate, +Safe to 11 Weapon Certificate, +Pet Exhange Coupon Box, +3rd class Shadow Equipment. +-------------------------- +Weight: 1 +# +23119# +Soul Scroll for limited time. +You can get one of several rare items such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Spirit of Green Maiden, Soul Plunger, Sealed Hat Box III and Blacksmith's Blessing. +-------------------------- +Weight: 1 +# +23120# +A blue box packed neatly. +Contains one of the following items: +-------------------------- +Ears of Ifrit +Samambaia +Gryphon Hat +Rabbit Bonnet +RWC Commemorative Pin +-------------------------- +Weight: 20 +# +23122# +Using the natural colors of fruits, many different decorations are carved. +-------------------------- +Weight: 1 +# +23123# +Attention! If there are more than 30,000 items in inventory, the items may be lost. +-------------------------- +A bullet case containing 500 Flare Bullets. +-------------------------- +Weight: 25 +# +23124# +Attention! If there are more than 30,000 items in inventory, the items may be lost. +-------------------------- +A bullet case containing 500 Lightning Bullets. +-------------------------- +Weight: 25 +# +23125# +Attention! If there are more than 30,000 items in inventory, the items may be lost. +-------------------------- +A bullet case containing 500 Ice Bullets. +-------------------------- +Weight: 25 +# +23126# +Attention! If there are more than 30,000 items in inventory, the items may be lost. +-------------------------- +A bullet case containing 500 Poison Bullets. +-------------------------- +Weight: 25 +# +23127# +Attention! If there are more than 30,000 items in inventory, the items may be lost. +-------------------------- +A bullet case containing 500 Blinding Bullets. +-------------------------- +Weight: 25 +# +23134# +Balloon Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Sealed Seal Card, Poring Balloon Box, Class Shadow Cube and Blacksmith's Blessing. +-------------------------- +Weight: 1 +# +23135# +A capsule containing 1 of various Poring Balloons. +10 types of Porings! Let's get a balloon of your favourite type. +-------------------------- +Poring Balloon +Marine Balloon +Drops Balloon +Santa Poring Balloon +Poporing Balloon +Metalring Balloon +Deviling Balloon +Angeling Balloon +Ghostring Balloon +Arch Angelring Balloon +-------------------------- +Weight: 1 +# +23136# +A box packed with 3 [Event]-type Butterfly Wings of 4 colors. +Each Butterfly Wing has a different place to go to. +-------------------------- +[Event] Yellow Butterfly Wing +\ +,\ +, \ +, \ +, \ +, \ +, \ +-------------------------- +[Event] Green Butterfly Wing +\ +, \ +, \ +, \ +, \ +-------------------------- +[Event] Red Butterfly Wing +\ +, \ +-------------------------- +[Event] Blue Butterfly Wing +\ +, \ +, \ +, \ +, \ +, \ +, \ +-------------------------- +Warning - After use, if nothing is selected for 1 minute, the effect will not be triggered. +Weight: 20 +# +23137# +A support box for newly launched Rebellions. +The box contains all of the items below: +-------------------------- +Trial Rebel's Revolver +Trial Rebel's Rifle +Trial Rebel's Shotgun +Trial Rebel's Gatling Gun +Trial Rebel's Grenade Launcher +Enhanced Time Keeper Hat +Enhanced Time Keeper Robe +Enhanced Time Keeper Manteau +Enhanced Time Keeper Boots +-------------------------- +Level Requirement: 100 +Weight: 0 +# +23138# +A jewel that has the power of a sarcophagus sealed in it. +You should avoid using it carelessly ... +-------------------------- +Causes Petrification. +-------------------------- +Weight: 0.1 +# +23139# +A jewel that has the power of the night shade sealed in it. +You should avoid using it carelessly ... +-------------------------- +Causes Sleep. +-------------------------- +Weight: 0.1 +# +23140# +A jewel that has the power of ice crystals sealed in it. +You should avoid using it carelessly ... +-------------------------- +Causes Frozen. +-------------------------- +Weight: 0.1 +# +23141# +A jewel that has the power of excess weight sealed in it. +You should avoid using it carelessly ... +-------------------------- +Causes Sit. +-------------------------- +Weight: 0.1 +# +23142# +A potion that gives certain amount of experience. +A maximum number of Level up is limited to 1 Level. +If you over Level 100, the effect will be decreased. +-------------------------- +Weight: 1 +# +23143# +A potion that gives certain amount of job experience. +A maximum number of Level up is limited to 1 Level. +If you over Level 100, the effect will be decreased. +-------------------------- +Weight: 1 +# +23144# +Contains 5 Minor Growth Elixir. +Can be used as a gift for other. +-------------------------- +Weight: 1 +# +23145# +Contains 5 Minor Job Elixir. +Can be used as a gift for other. +-------------------------- +Weight: 1 +# +23146# +A gift box packed with the image of an Angel Poring. +-------------------------- +Weight: 1 +# +23147# +A gift box packed in the shape of a Demon Poring. +-------------------------- +Weight: 1 +# +23148# +A box that provides Premium Services for 2 days. +-------------------------- +When open the box, you will recieve a Premium Buff for every character on the server for 2 days. +- Increases Experience by 20% +- Increases Item drop rate by 20% +-------------------------- +Weight: 1 +# +23149# +A box that provides Premium Services for 3 days. +-------------------------- +When open the box, you will recieve a Premium Buff for every character on the server for 3 days. +- Increases Experience by 20% +- Increases Item drop rate by 20% +-------------------------- +Weight: 1 +# +23150# +Lapine's Thump Box. +A mysterious box that was made by Lapine Pension Association [The Gate of Truth] to compress extra objects. +You can get a combination box for combining various items. +It also includes some weird items that can be used in moderation. +Caution! - The contents of Lapine's Thump Box are subject to change without notice. +-------------------------- +Weight: 1 +# +23151# +Costume Enchant Stone Thump Box. +-------------------------- +If you combine 3 Costume Enchant Stones, you can obtain 1 random Costume Enchant Stone. +There is a low chance that you may encounter an Enchant Stone that you cannot obtain from the Enchant Stone Box. +Caution! - Only different types of Costume Enchant Stones are accepted. +-------------------------- +Weight: 1 +# +23152# +Collection Thump Box. +-------------------------- +You can get 1 random Consumable by placing 10x collectibles of 10 different types. +Only items with the words 'Sold to Collectibles Merchant' will be accepted. +Occasionally, a pretty decent item might come out. +Caution! - Only different types of items are accepted as material. +-------------------------- +Weight: 1 +# +23153# +Pet Egg Thump Box. +-------------------------- +If you add 2 Pet Eggs, you can get 1 Taming Gift Set II. +The eggs of the Baby Poring are not taken as ingredients. +-------------------------- +Weight: 1 +# +23154# +Silvervine Cat Costume Thump Box. +-------------------------- +You can get 1 Costume that can be exchanged randomly by inserting any one of them. +There is a low chance that there will be new outfits you can't get anywhere else. +This new outfit can be exchanged for a Costume Enchant Stone Box. +-------------------------- +Weight: 1 +# +23159# +A pack containing 10 Poison Bottles. +-------------------------- +Weight: 0 +Caution - If the weight or possession limit is exceeded when the box is opened, items may be lost! +# +23160# +A box where you can get one of a variety of shadow items. +-------------------------- +Weight: 0 +# +23161# +A box containing one Dropping Gunslinger and one Gunslinger Scroll. +-------------------------- +Two Random Options can be applied to Dropping Gunslinger using the Gunslinger Scroll. +Gunslinger Scroll can be obtained from +[Cat Salesman Nyarom]itemmall,41,50,0,100,0,0, +by using Silvervine Cat Fruit or Zeny. +-------------------------- +Weight: 1 +# +23162# +Gunslinger Scroll for limited time. +You can get one of a several of rare items such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Gunslinger Box, Extended Class Shadow Equipment, Lapine's Thump Box and more. +-------------------------- +Weight: 1 +# +23163# +A cube that contains random item. +-------------------------- +Weight: 0 +# +23164# +A potion created and distributed by 13th anniversary NPC Granpa Boxter. +No matter who you race with, you will pass everyone. +-------------------------- +Weight: 1 +# +23165# +A magic wand that calls a staff member in charge of Premium Services. Shake it in your hand and appear in front of your customers anytime, anywhere. +-------------------------- +[Service History] +Consuming Silvervine Cat Fruits will allow all your characters in one server to receive the following effects: +- EXP UP (24 hours, Price: 1) +Increases Experience by 15% +- ITEM UP (24 hours, Price: 2) +Increases Item drop rate by 15% +- DEATH DOWN (24 hours, Price: 5) +Decreases Death Penalty by 100% +- Advanced Package (24 hours, Price: 7) +All 3 effects from above +Caution! - You cannot select a buff effect or an advanced package that overlaps the buff while it is active. +-------------------------- +Weight: 0 +# +23166# +A mysterious pill that dramatically improves the amount of recovery for a particular potion. +Prontera Army shining shiningly. +-------------------------- +When used as Swordman classes: +Increases healing of Prontera Army Potion and White Slim Potion by 420%. +-------------------------- +When used as Alchemist classes: +Increases healing of Prontera Army Potion and White Slim Potion by 575%. +-------------------------- +When used as other classes: +Increases healing of Prontera Army Potion and White Slim Potion by 600%. +-------------------------- +Can only be used in town, indoor, siege battle and new siege battle maps. +-------------------------- +Effect duration: 180 minutes +-------------------------- +Weight: 10 +# +23167# +Green Scroll of July for limited time. +You can get one of several rare items such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Mini Fan Box, Class Shadow Cube and Lapine's Thump Box. +-------------------------- +Weight: 1 +# +23168# +A box containing a Sea-Otter Mini Fan and Fan Remodeling Kit. +Two Random Options can be assigned to the Sea-Otter Mini Fan by using the Fan Remodeling Kit. +-------------------------- +Fan Remodeling Kit can be obtained from +[Cat Salesman Nyarom]itemmall,41,50,0,100,0,0, +by using Silvervine Cat Fruit or Zeny. +-------------------------- +Weight: 1 +# +23169# +A box containing Alchemist's research results, selected as'Alchemist of the Year' by the Alchemist Association. +The contents cannot be checked before opening, but chemicals may be contained, so care must be taken in handling. +-------------------------- +Weight: 1 +# +23170# +Kit containing tools for retrofitting Sea-Otter Mini Fans. +Contains only the right ingredients for a one-time modification. +-------------------------- +When used, grants 2 Random Options to the Sea-Otter Mini Fan +Caution! - When a Random Option is granted, the card slot of the Sea-Otter Mini Fan is reset and transformed into the Seal Mini Fan with low probability. +-------------------------- +Weight: 1 +# +23171# +I think you can feel the power of Gloom Under Night for a while. +-------------------------- +Increases Physical Damage against enemies of Holy and Shadow elemental, Angel and Demon race by 20%. +Duration: 5 minutes. +-------------------------- +Weight: 1 +# +23172# +I think you can feel the power of Pharaoh for a while. +-------------------------- +Decreases SP Consumption by 15%. +Duration: 5 minutes. +-------------------------- +Weight: 1 +# +23173# +I think you can feel the power of Kiel-D-01 for a while. +-------------------------- +Decreases After Skill Delay by 15%. +Duration: 5 minutes. +-------------------------- +Weight: 1 +# +23174# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +Heal Stone(Lower) +Steal Stone(Lower) +Teleport Stone(Lower) +Stones from existing costume enchant stone boxes can also be obtained with a relatively low chance. +-------------------------- +Weight: 1 +# +23175# +Caution! - When using Clothing Repair Kit, the card slot and Refine Level will be reset. +A kit that repairs the Kafra Costume and grants additional stats. +It contains only the right material for a single repair. +-------------------------- +When used, grants 2 Random Options to the Kafra Costume. +-------------------------- +Clothing Repair Kits can be obtained from +[Cat Salesman Nyarom]itemmall,41,50,0,100,0,0, +by using Silvervine Cat Fruit or Zeny. +-------------------------- +Weight: 1 +# +23176# +Kafra Scroll for limited time. +You can get one of several rare items such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Kafra Staff Headband, Kafra Box, Class Shadow Cube and Infinite Fly Wing Box(5 Days). +-------------------------- +Weight: 1 +# +23177# +A Kafra Business Card issued by the Kafra Headquarter. The named Kafra is obliged to respond to customer calls at any time. +When used, the Kafra Storage service can be used once. +Warning - After use, if nothing is selected for 1 minute, the effect will not be triggered. +-------------------------- +Weight: 1 +# +23178# +A box containing one Kafra Costume and one Clothing Repair Kit. +Using the Clothing Repair Kit, grants 2 Random Options to the Kafra Costume. +-------------------------- +Weight: 51 +# +23179# +A card full of \ + of various things. +-------------------------- +Casts Level 1 Spell Breaker. +-------------------------- +Weight: 1 +# +23180# +A card full of \ + of various things. +-------------------------- +Casts Level 1 Maximize Power. +-------------------------- +Weight: 1 +# +23181# +A card full of \ + of various things. +-------------------------- +Casts Level 5 Meteor Storm. +-------------------------- +Weight: 1 +# +23182# +A card full of \ + of various things. +-------------------------- +Casts Level 1Recovery. +-------------------------- +Weight: 1 +# +23183# +A card full of \ + of various things. +-------------------------- +Casts Level 5 Gloria. +-------------------------- +Weight: 1 +# +23184# +When I fell into a pinch ... +When you want to help someone ... +When you want to sprain evil ... +Press this button and you can become a hero right now! +-------------------------- +* Precautions before usage: +- The effect time is 60 seconds. +- Please refrain from continuos use. +Allow at least 180 seconds before use. +- Please follow the usage and dosage. +-------------------------- +The places where you can use it are as follows: +Izlude +Alberta +Geffen +Morocc +Payon +Comodo +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 1 +# +23187# +A sap of ancient tree. +Can't be used on event or slave monsters. +-------------------------- +Type: Taming Item +Monster: Nine Tails +Weight: 0 +# +23188# +A broken part of a machine. +Can't be used on event or slave monsters. +-------------------------- +Type: Taming Item +Monster: Gremlin +Weight: 0 +# +23189# +A needle used to repair doll. +Can't be used on event or slave monsters. +-------------------------- +Type: Taming Item +Monster: Teddy Bear +Weight: 0 +# +23190# +A special gift box prepared for the Mid-Autumn Festival. +-------------------------- +Weight: 1 +# +23191# +A Scroll that can be used to cast Level 5 Varetyr Spear. Mighty magic is felt on the scroll. +-------------------------- +Requirement: +Base Level 100 +Weight: 1 +# +23192# +A Scroll that can be used to cast Level 5 Diamond Dust. Mighty magic is felt on the scroll. +-------------------------- +Requirement: +Base Level 100 +Weight: 1 +# +23193# +A Scroll that can be used to cast Level 5 Crimson Rock. Mighty magic is felt on the scroll. +-------------------------- +Requirement: +Base Level 100 +Weight: 1 +# +23194# +A Scroll that can be used to cast Level 5 Sienna Execrate. Mighty magic is felt on the scroll. +(2 Red Gemstone are consumed) +-------------------------- +Requirement: +Base Level 100 +Weight: 1 +# +23195# +Sigrun Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safet to 11 Armor Certificate, Sigrun Shadow Armor and Sigrun Shadow Shield. +-------------------------- +Weight: 1 +# +23198# +A wooden box packed with useful items. +1 White Slim Potion Box, 3 [Event] First Aid Box, 1 Premium Normal Box are packed. +Upon opening, you can get one of the additional rare items. +-------------------------- +Weight: 1 +Caution - If the weight or possession limit is exceeded when the box is opened, items may be lost! +# +23199# +A gold box packed with useful items. +-------------------------- +1 White Slim Potion Box, 1 [Event] Blessing Scroll (10), +1 [Event] Increase Agility Scroll (10), 5 Premium Normal Box as well as +10 Speed Change Potions and 10 Poison Bottls are packed. +Upon opening, you can get one of the additional rare items. +-------------------------- +Weight: 1 +Caution - If the weight or possession limit is exceeded when the box is opened, items may be lost! +# +23200# +A platinum box packed with useful items. +-------------------------- +1 Potion Box, 1 Poison Bottle Box, 1 [Event] Small Life Potion Box, +1 [Event] Abrasive Box, 1 [Event] Blessing Scroll (10), +1 [Event] Increase Agility Scroll (10), 30 Premium Normal Box as well as. +30 Speed Change Potions are packed +Upon opening, you can get one of the additional rare items. +-------------------------- +Weight: 1 +Caution - If the weight or possession limit is exceeded when the box is opened, items may be lost! +# +23201# +An ordinary box packed with useful items. +-------------------------- +50 [Event] White Slim Potions 50, 1 [Event] First Aid Box are packed. +Upon opening, you can get one of the additional rare items. +-------------------------- +Weight: 1 +Caution - If the weight or possession limit is exceeded when the box is opened, items may be lost! +# +23202# +Healthy drink that helps prevent cold. +Restore 7% SP. +-------------------------- +Weight: 4 +# +23203# +A small bottle of sap from the petals of Yggdrasil. It is said to be effective in mana regeneration. +-------------------------- +When consumed, it restores 5% of MaxSP every 5 seconds for 10 minutes. +The effect does not activate in Berserk. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +23204# +A scroll that greatly increases the physical and magical defenses for a certain period of time, helping to increase the survival rate. +-------------------------- +DEF +500 and MDEF +200 for 10 minutes. +-------------------------- +Weight: 1 +# +23205# +New Hat Scroll II for limited time. +You can get one of several rare items such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificiate, New Hat Box II and Soul Plunger. +-------------------------- +Weight: 1 +# +23206# +A horror pumpkin box with spooky flying ghosts. +Contains one of the following items: +-------------------------- +Shadow Booster +Fallen Angel Blessing +Elemental Crown +Rabbit Magic Hat +Anubis Helm +-------------------------- +Weight: 20 +# +23207# +A box that provides Premium Services for 30 days. +-------------------------- +When you open the box, you will receive a 30-days Premium Buff for all your characters in the server: +- Increases Experience by 15% +- Increases Item drop rate by 15% +-------------------------- +Includes one magic wand that calls up a Premium Service Staff who provides additional services. +-------------------------- +Weight: 1 +# +23209# +A box that provides Premium Services for 1 day. +-------------------------- +When you open the box, you will receive a 1-day Premium Buff for all your characters in the server: +- Increases Experience by 20% +- Increases Item drop rate by 20% +-------------------------- +Weight: 1 +# +23210# +A box that provides Premium Services for 4 days. +-------------------------- +When you open the box, you will receive a 4-day Premium Buff for all your characters in the server: +- Increases Experience by 20% +- Increases Item drop rate by 20% +-------------------------- +Weight: 1 +# +23211# +A box that provides Premium Services for 5 days. +-------------------------- +When you open the box, you will receive a 5-day Premium Buff for all your characters in the server: +- Increases Experience by 20% +- Increases Item drop rate by 20% +-------------------------- +Weight: 1 +# +23212# +A box that provides Premium Services for 6 days. +-------------------------- +When you open the box, you will receive a 6-day Premium Buff for all your characters in the server: +- Increases Experience by 20% +- Increases Item drop rate by 20% +-------------------------- +Weight: 1 +# +23213# +A box that provides Premium Services for 7 days. +-------------------------- +When you open the box, you will receive a 7-day Premium Buff for all your characters in the server: +- Increases Experience by 20% +- Increases Item drop rate by 20% +-------------------------- +Weight: 1 +# +23214# +A box that provides Premium Services for 8 days. +-------------------------- +When you open the box, you will receive a 8-day Premium Buff for all your characters in the server: +- Increases Experience by 20% +- Increases Item drop rate by 20% +-------------------------- +Weight: 1 +# +23215# +A box that provides Premium Services for 9 days. +-------------------------- +When you open the box, you will receive a 9-day Premium Buff for all your characters in the server: +- Increases Experience by 20% +- Increases Item drop rate by 20% +-------------------------- +Weight: 1 +# +23216# +A box that provides Premium Services for 10 days. +-------------------------- +When you open the box, you will receive a 10-day Premium Buff for all your characters in the server: +- Increases Experience by 20% +- Increases Item drop rate by 20% +-------------------------- +Weight: 1 +# +23217# +2016 Special Scroll for a limited time. +You can get one of several rare items such as Safet to 11 Weapon Certificate, Safe to 11 Armor Certificate, 2016 Special Box and a Professinal Shadow Box. +-------------------------- +Weight: 1 +# +23218# +A box of popular items from Lucky Eggs in 2016. +Contains one of the following items: +-------------------------- +Angel Poring Boots Box +Poring Sunglasses+ +Poring Sunglasses +Amistr Box +Spirit of Green Maiden +Poring Capsule +Gunslinger Box +Mini Fan Box +Kafra Box +Sigrun Shadow Armor +Sigrun Shadow Shield +New Hat Box II +Kafra Staff Headband +-------------------------- +Weight: 20 +# +23219# +A whistle made from ancient dragon bones. +The sound of a whistle that resembles a dragon moth seems to attract nearby dragons. +-------------------------- +When Dragon Training is learned at lv.5, enables you to call a dragon. +-------------------------- +Cannot be used in siege battles, new siege battle maps and turbo track. +-------------------------- +Can only be sold to NPC's and moved into the storage. +-------------------------- +Cooldown: 20 seconds +Weight: 0 +-------------------------- +Requirement: +Rune Knight +# +23220# +A mysterious bell that is used by striking against armor. +A griffon appears from the sky, guided by the sound of a bell that reverberates like a tuning fork. +-------------------------- +When Cavalry Training is learned at lv.5, enables you to call a griffon. +-------------------------- +Cannot be used in siege battles, new siege battle maps and turbo track. +-------------------------- +Can only be sold to NPC's and moved into the storage. +-------------------------- +Cooldown: 20 seconds +Weight: 0 +-------------------------- +Requirement: +Royal Guard +# +23221# +This biscuit stick was created to remember the day with most fireworks. +-------------------------- +DEX +15 for 30 minutes. +HIT +11~33 for 10 minutes. +- Applies the highest DEX amongst all. +- HIT does not overlap with other bonus and cannot be checked in the Status window. +If you are incapacitated or hit by the Dispell skill, the item effect will disappear. +-------------------------- +Weight: 1 +# +23222# +This biscuit stick was created to remember the day with most fireworks. +-------------------------- +LUK +15 for 30 minutes. +Critical +11~33% for 10 minutes. +- Applies the highest LUK amongst all. +- Critical does not overlap with other bonus and cannot be checked in the Status window. +If you are incapacitated or hit by the Dispell skill, the item effect will disappear. +-------------------------- +Weight: 1 +# +23223# +This biscuit stick was created to remember the day with most fireworks. +-------------------------- +STR +15 for 30 minutes. ++11~111 ATK for 10 minutes. +- Applies the highest STR amongst all. +- ATK does not overlap with other bonus and cannot be checked in the Status window. +If you are incapacitated or hit by the Dispell skill, the item effect will disappear. +-------------------------- +Weight: 1 +# +23224# +This biscuit stick was created to remember the day with most fireworks. +-------------------------- +VIT +15 for 30 minutes. +MaxHP +11~33% for 10 minutes. +- VIT does not overlap with other bonus. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +23225# +This biscuit stick was created to remember the day with most fireworks. +-------------------------- +AGI +15 for 30 minutes. +FLEE +11~33 for 10 minutes. +- Applies the highest AGI amongst all. +- FLEE does not overlap with other bonus and cannot be checked in the Status window. +If you are incapacitated or hit by the Dispell skill, the item effect will disappear. +-------------------------- +Weight: 1 +# +23226# +This biscuit stick was created to remember the day with most fireworks. +-------------------------- +INT +15 for 30 minutes. +MATK +11~111 for 10 minutes. +- Applies the highest INT amongst all. +- MATK does not overlap with other bonus and cannot be checked in the Status window. +If you are incapacitated or hit by the Dispell skill, the item effect will disappear. +-------------------------- +Weight: 1 +# +23227# +This biscuit stick was created to remember the day with most fireworks. +Contains 2 of each [Event] STR Biscuit Stick, [Event] VIT Biscuit Stick, [Event] AGI Biscuit Stick, [Event] INT Biscuit Stick, [Event] DEX Biscuit Stick and [Event] LUK Biscuit Stick. +# +23228# +Children's favorite moon shaped cake. Suddenly my vision become blurry. +-------------------------- +Weight: 1 +# +23229# +Scroll that resets the card slot and Refine Level of Fallen Angel Wings. +-------------------------- +After use, it changes Fallen Angel Wings to [Kachua] Fallen Angel Wings and the card and Refine Level are reset. +Caution! - Fallen Angel's Wings have a 99 Level limit. This scroll allows you to reset Fallen Angel Wings. +-------------------------- +Weight: 1 +# +23235# +Mad Bunny Scroll II for limited time. +You can get one of several rare items such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Magical Feather, Mad Bunny, Class Shadow Box of any part, Blacksmith's Blessing and a Shadow Cube of any part. +-------------------------- +Weight: 1 +# +23236# +Class Shadow Thump Box. +-------------------------- +If you exchange a Class Shadow Weapon which is refined to +7 or higher, you can obtain 1 Class Shadow Weapon with 1~10 Refine Level and a Random Option of STR or INT +1~+10 randomly. +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +23237# +Class Shadow Thump Box. +-------------------------- +If you exchange a Class Shadow Armor which is refined to +7 or higher, you can obtain 1 Class Shadow Armor with 1~10 Refine Level and a Random Option of INT or VIT +1~+10 randomly. +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +23238# +Class Shadow Thump Box. +-------------------------- +If you exchange a Class Shadow Shoes which is refined to +7 or higher, you can obtain 1 Class Shadow Shoes with 1~10 Refine Level and a Random Option of VIT or AGI +1~+10 randomly. +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +23239# +Class Shadow Thump Box. +-------------------------- +If you exchange Class Shadow Shield which is refined to +7 or higher, you can obtain 1 Class Shadow Shield with 1~10 Refine Level and a Random Option of AGI or LUK +1~+10 randomly. +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +23240# +Class Shadow Thump Box. +-------------------------- +If you exchange a Class Shadow Pendant which is refined to +7 or higher, you can obtain 1 Class Shadow Pendant with 1~10 Refine Level and a Random Option of LUK or DEX +1~+10 randomly. +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +23241# +Class Shadow Thump Box. +-------------------------- +If you exchange a Class Shadow Earring which is refined to +7 or higher, you can obtain 1 Class Shadow Earring with 1~10 Refine Level and a Random Option of DEX or STR +1~+10 randomly. +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +23242# +Fried chicken is collected by part and finished with one! +Just looking at it is hungry and ecstatic. +When you need cool barley flavored sparkling water! +-------------------------- +Recovers 50% HP/SP +Batch deletion at the end of the event. +(December 28, 2016 ~ February 1, 2017) +-------------------------- +Weight: 10 +# +23243# +The well-groomed chicken was cut into pieces, fried and carefully fried. +The savory aroma and juicy flavor are excellent. +Everyone smells of saliva spreading in the wind. +-------------------------- +Recovers 5% HP/SP +Batch deletion at the end of the event. +(December 28, 2016 ~ February 1, 2017) +-------------------------- +Weight: 10 +# +23245# +Lapine Scroll for limited time. +You can get one of several rare items such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, New Year Shadow Cube, Status Shadow Thump Box, [Limited] Lapine's Thump Box and Infinite Cat Hand Ticket Box(7 Days). +-------------------------- +Weight: 1 +# +23246# +A limited Lapine's Thump Box which was launched to celebrate the beginning of 2017. +The chance to recieve a Shadow Thump Box is increased and you also get a Class Shadow Thump Box with low chance. +-------------------------- +Weight: 1 +# +23247# +Status Shadow Thump Box. +-------------------------- +If you combine 5 of any of the following Shadow Equipment which are refined to +7 or higher, you can obtain 1 Almighty Shadow Earring or Almighty Shadow Pendant: +Power +Vital +Athletic +Dexterous +Lucky +-------------------------- +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +23248# +Gemstone Shadow Thump Box. +-------------------------- +If you combine 3 of any of the Gemstone Shadow Equipments which are refined to +7 or higher, you can obtain 1 Gemstone Shadow Weapon II or Gemstone Shadow Shield II. +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +23249# +Bearer's Shadow Thump Box. +-------------------------- +If you combine 3 of any of the Bearer's Shadow Equipments which are refined to +7 or higher, you can obtain 1 Bearer's Shadow Armor II or Bearer's Shadow Shoes II. +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +23250# +Compose Shadow Thump Box. +-------------------------- +If you combine 4 of any of the following Shadow Equipments (stackable) which are refined to +7 or higher, you can obtain 1 Magic Compose Shadow Armor: +Lightning Bolt Shadow Armor +Fire Bolt Shadow Armor +Cold Bolt Shadow Armor +Earth Spike Shadow Armor +-------------------------- +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +23251# +A box containing Rose of Eden and Angelic Ring. +-------------------------- +Weight: 0 +# +23252# +A box containing Orlean's Necklace and Orlean's Gown. +-------------------------- +Weight: 0 +# +23253# +A box containing Black Shiba Inu Hat and Fidelity Necklace. +-------------------------- +Weight: 0 +# +23254# +A box containing Valkyrie Shield and Long Horn. +-------------------------- +Weight: 0 +# +23255# +A box containing Contains Kardui's Robe and Lapine Staff. +-------------------------- +Weight: 0 +# +23256# +A miracle bandage that contains the energy of eternal afterlife. +Can't be used on event or slave monsters. +-------------------------- +Type: Taming Item +Monster: Mummy +Weight: 5 +# +23257# +A shining dew of old tree. +Can't be used on event or slave monsters. +-------------------------- +Type: Taming Item +Monster: Willow +Weight: 5 +# +23258# +A chunk of rotten meat. +Can't be used on event or slave monsters. +-------------------------- +Type: Taming Item +Monster: Roween +Weight: 5 +# +23259# +A cupcake made with fresh strawberry above soft whip cream. +-------------------------- +Type: Restorative +Heal: 5% SP +Effect: Casts Level 5 Blessing on user +Weight: 10 +# +23260# +A sweet desert filled with Ice Cream, Cream, Syrup and Fruits. +The sweetness of this desert is the taste of evil. +[A 0 calorie desert!] +-------------------------- +Type: Restorative +Heal: 20% HP +Weight: 10 +# +23261# +Small round meringue crust cookie with jam and cream inside. Crispy outside, soft and moist inside. +-------------------------- +Type: Restorative +Heal: 5% HP +Effect: Casts Level 5 Angelus on user +Weight: 10 +# +23262# +It contains a dangko hair for costumes that allows you to enjoy a different hairstyle. +You can't tell which one of the eight colors will come out until you open it. +-------------------------- +Weight: 1 +# +23263# +Includes a roll twin for costumes where you can enjoy a different hairstyle. +You can't tell which one of the eight colors will come out until you open it. +-------------------------- +Weight: 1 +# +23264# +Includes a long pony for costumes to enjoy a different hairstyle than usual. +You can't tell which one of the eight colors will come out until you open it. +-------------------------- +Weight: 1 +# +23267# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +* Time Keeper Hat +* Time Keeper Glasses +* Time Keeper Ring +* Time Keeper Shield +* Time Keeper Boots +* Time Keeper Manteau +* Time Keeper Robe +* Metal Staff +* Metal Dagger +* Metal Mace +* Metal Bow +* Metal Two-handed Sword +* Metal Two-handed Axe +* Metal Katar +* [Event] Concentration Potion 3ea +* [Event] Blessing 10 Scroll 10ea +* [Event] Increase AGI 10 Scroll 10ea +* [Event] Orange Potion Box20 3ea +* ROVerse Level-Up Pack (10) +-------------------------- +Weight: 0 +# +23268# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +* [Event] Concentration Potion 5ea +* [Event] Orange Potion Box20 5ea +* [Event] Blue Potion Box10 3ea +* [Event] Blessing 10 Scroll 10ea +* [Event] Increase AGI 10 Scroll 10ea +* [Event] Battle Manual 2ea +* Unlimited Fly Wing Box (1 Day) +* ROVerse Level-Up Pack (20) +-------------------------- +Weight: 0 +Requirement: +Base Level 10 +# +23269# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +* [Event] Concentration Potion 10ea +* [Event] Orange Potion Box20 5ea +* [Event] Blue Potion Box10 5ea +* [Event] Blessing 10 Scroll 10ea +* [Event] Increase AGI 10 Scroll 10ea +* [Event] Battle Manual 2ea +* Unlimited Fly Wing Box (1 Day) +* ROVerse Level-Up Pack (30) +-------------------------- +Weight: 0 +Requirement: +Base Level 20 +# +23270# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +* [Event] Orange Potion Box20 5ea +* [Event] Blue Potion Box10 3ea +* [Event] Blessing 10 Scroll 10ea +* [Event] Increase AGI 10 Scroll 10ea +* [Event] Battle Manual 2ea +* [Event] Token of Siegfried 2ea +* Unlimited Fly Wing Box (1 Day) +* ROVerse Level-Up Pack (40) +-------------------------- +Weight: 0 +Requirement: +Base Level 30 +# +23271# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +* [Event] Awakening Potion 3ea +* [Event] Orange Potion Box20 5ea +* [Event] Blue Potion Box10 5ea +* [Event] Battle Manual 2ea +* [Event] Small Life Potion 3ea +* [Event] Small Mana Potion 3ea +* Metal Weapon Refine Ticket +* ROVerse Level-Up Pack (50) +-------------------------- +Weight: 0 +Requirement: +Base Level 40 +# +23272# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +* [Event] Awakening Potion 3ea +* [Event] Orange Potion Box20 5ea +* [Event] Blue Potion Box10 5ea +* [Event] Battle Manual 2ea +* [Event] Small Life Potion 5ea +* [Event] Small Mana Potion 5ea +* Unlimited Fly Wing Box (1 Day) +* ROVerse Level-Up Pack (60) +-------------------------- +Weight: 0 +Requirement: +Base Level 50 +# +23273# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +* [Event] Awakening Potion 5ea +* [Event] White Potion Box20 5ea +* [Event] Blue Potion Box10 5ea +* [Event] Battle Manual 2ea +* [Event] Token of Siegfried 5ea +* Unlimited Fly Wing Box (1 Day) +* ROVerse Level-Up Pack (70) +-------------------------- +Weight: 0 +Requirement: +Base Level 60 +# +23274# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +* [Event] Regenerate Potion 3ea +* [Event] White Potion Box20 5ea +* [Event] Blue Potion Box10 5ea +* [Event] Battle Manual 2ea +* Unlimited Fly Wing Box (1 Day) +* [Event] Token of Siegfried 3ea +* [Event] Steamed Tongue 10ea +* [Event] Steamed Scorpion 10ea +* [Event] Dragon Breath Cocktail 10ea +* [Event] Hwergelmir's Tonic 10ea +* [Event] Cooked Nine Tail's Tail 10ea +* [Event] Stew of Immortality 10ea +* ROVerse Levelup Pack (80) +-------------------------- +Weight: 0 +Requirement: +Base Level 70 +# +23275# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +* [Event] Regenerate Potion 5ea +* [Event] White Potion Box20 5ea +* [Event] Blue Potion Box10 5ea +* [Event] Battle Manual 2ea +* Unlimited Fly Wing Box (1 Day) +* [Event] Token of Siegfried 3ea +* [Event] Steamed Tongue 10ea +* [Event] Steamed Scorpion 10ea +* [Event] Dragon Breath Cocktail 10ea +* [Event] Hwergelmir's Tonic 10ea +* [Event] Cooked Nine Tail's Tail 10ea +* [Event] Stew of Immortality 10ea +* ROVerse Goal Gift Box +-------------------------- +Weight: 0 +Requirement: +Base Level 90 +# +23276# +A box of essentials for a quickly level up. +-------------------------- +Contains 30 [Event] Brilliant Protection Scroll, 20 [Event] Power Booster and 20 [Event] Almighty. +-------------------------- +Requirement: +Base Level 175 +Weight: 0 +# +23277# +Emergency Madogear for use in the event of suit failure. +[Madogear License] is required to this item. +-------------------------- +Type: Usable +Cooldown: 3 minutes +Weight: 30 +-------------------------- +Requirement: +Base Level 100 +# +23278# +I can't do anything without me? If you need help, click me out. +-------------------------- +Weight: 0 +# +23280# +The wings cut from fly to be made into enchanted item. +-------------------------- +Type: Supportive +Effect: Teleport to random cell +Limit Level: 98 +Weight: 0 +# +23281# +Race Shadow Thump Box. +-------------------------- +If you combine 4 of any of the following Shadow Equipments which are refined to +7 or higher, you can obtain either 1 All Races Shadow Shield or All Races Shadow Shoes: +- Shadow Shields +Cranial +Safeguard +Brutal +Gargantua +Homer's +Dragoon +Satanic +Frame Guard +Requiem +Cadi Shadow Shields + +- Shadow Shoes +Bloody +Liberation +Chemical +Clamorous +Insecticide +Fisher +Seraphim +Beholder +Divine +Dragon +-------------------------- +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +23282# +This biscuit stick was created to remember the day with most fireworks. +Contains 2 of each [Event] STR Biscuit Stick, [Event] VIT Biscuit Stick, [Event] AGI Biscuit Stick, [Event] INT Biscuit Stick, [Event] DEX Biscuit Stick and [Event] LUK Biscuit Stick. +-------------------------- +Weight: 1 +# +23283# +Love Scroll for limited time. +You can get one of several rare items such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, a Candy Pouch Box, Blitz Shadow Weapon, Blitz Shadow Armor and Premium Taming Gift Set +-------------------------- +Weight: 1 +# +23284# +A set of beautifully packed taming items. Includes 3 Taming Gift items. +You can get popular pet taming items such as Girl's Naivety, Boy's Pure Heart and Spirit Liquor with a higher probability than existing taming sets. +-------------------------- +Weight: 20 +# +23285# +A box containing 1 Candy Pouch Bag(Physical) and 1 Candy Pouch Blessing Scroll(Physical). +Two Random Options can be granted to a Candy Pouch Bag(Physical) by using the Candy Pouch Blessing Scroll(Physical). +-------------------------- +Candy Pouch Blessing Scroll(Physical) can be obtained from +[Cat Salesman Nyarom]itemmall,41,50,0,100,0,0, +by using Silvervine Cat Fruit or Zeny. +-------------------------- +Weight: 1 +# +23286# +A box containing 1 Candy Pouch Bag(Ranged) and 1 Candy Pouch Blessing Scroll(Ranged). +Two Random Options can be granted to a Candy Pouch Bag(Ranged) by using the Candy Pouch Blessing Scroll(Ranged). +-------------------------- +Candy Pouch Blessing Scroll(Ranged) can be obtained from +[Cat Salesman Nyarom]itemmall,41,50,0,100,0,0, +by using Silvervine Cat Fruit or Zeny. +-------------------------- +Weight: 1 +# +23287# +A box containing 1 Candy Pouch Bag(Magic) and 1 Candy Pouch Blessing Scroll(Magic). +Two Random Options can be granted to a Candy Pouch Bag(Magic) by using the Candy Pouch Blessing Scroll(Magic). +-------------------------- +Candy Pouch Blessing Scroll(Magic) can be obtained from +[Cat Salesman Nyarom]itemmall,41,50,0,100,0,0, +by using Silvervine Cat Fruit or Zeny. +-------------------------- +Weight: 1 +# +23288# +The wings cut from fly to be made into enchanted item. +-------------------------- +Type: Supportive +Effect: Teleport to random cell +Weight: 1 +# +23289# +A scroll to bless Candy Pouch Bag(Physical). +-------------------------- +When used, grant 2 Random Options to Candy Pouch Bag(Physical). +Caution! - When a Random Option is given, Refine Level and card slots of Candy Pouch Bag(Physical) are reset. +-------------------------- +Weight: 1 +# +23290# +A scroll to bless Candy Pouch Bag(Ranged). +-------------------------- +When used, grant 2 Random Options to Candy Pouch Bag(Ranged). +Caution! - When a Random Option is given, Refine Level and card slots of Candy Pouch Bag(Range) are reset. +-------------------------- +Weight: 1 +# +23291# +A scroll to bless Candy Pouch Bag(Magic). +-------------------------- +When used, grant 2 Random Options to Candy Pouch Bag(Magic). +Caution! - When a Random Option is given, Refine Level and card slots of Candy Pouch Bag(Magic) are reset. +-------------------------- +Weight: 1 +# +23296# +An insect-repellent product developed by Yuno's university students. +It looks very tasty and has a nice scent, but it's for catching deadly insects, so never put it on your mouth. +-------------------------- +Weight: 0 +# +23297# +A suspicious looking box that seems to hold something inside, but you'll have to open it to find out. +-------------------------- +Weight: 0 +# +23298# +A magical egg that pops out outfits when opened. +-------------------------- +Any of the following costume equipment will appear at random. +- Costume Wrapping Ribbon +- Costume Royal Rabbit Crown +- Costume Dog Officer +- Costume Charcoal Stove +- Costume Fluttering Feather +- Costume Persica +- Costume Happy Balloon +- Costume Dokkebi Mask +- Costume Octopus Hat +- Costume Weird Beard +-------------------------- +Weight: 1 +# +23299# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +Double Attack Stone(Garment) +Critical Stone(Garment) +Variable Casting Stone(Garment) +and 2 enchantment stones more have been added. +Stones from existing costume enchant stone boxes can also be obtained with a relatively low chance. +-------------------------- +Weight: 1 +# +23300# +A fashionable mechanism that can project a special image into the air. +-------------------------- +Shows or hides the frame each time you use the item. +-------------------------- +This item will be available until August 18, 2020 (Tuesday), when regular maintenance starts. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 0 +# +23301# +A futuristic item that moves to a \ + at the push of a button. +Since it is a prototype type, it does not function until a specific period of time, and it is finished with sharp performance. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Cooldown: 10 seconds +Weight: 0 +# +23302# +A treasure box found in Poring Dungeon. +-------------------------- +Requirement: Base Level 30 +Class: Item Giver +Weight: 20 +# +23303# +A box containing one Infinite Cat Hand Ticket, which can be used for 1 day. +-------------------------- +Rental Item +A ticket given by leader of Cat Hand Service. +Cats are expanding their business over the year of service. +Can be use to store items in the storage of Cat Hand Service. +-------------------------- +Weight: 1 +-------------------------- +Box Weight: 1 +# +23304# +A box containing one Unlimited Fly Wing, which can be used for 1 day. +-------------------------- +Rental Item +The wings cut from fly to be made into enchanted item. You can warp anywhere on the map using this item. +-------------------------- +Weight: 1 +# +23305# +Cat Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Toy Syringe, Magical Booster Box, Cat Headdress Gift Basket, Blue Rear Ribbon and Rosario Necklace. +-------------------------- +Weight: 1 +# +23307# +Thus Scroll greatly increases the physical and magic defenses for a certain amount of time to increase the survival rate. +-------------------------- +DEF +500, MDEF +200 for 10 minutes. +-------------------------- +Weight: 1 +# +23308# +Remote control that changes the frequency of Magic Booster, transforming the ability. +-------------------------- +Give 2 Random Options to Magical Booster. +Caution! - When a Random Option is given, the card slot of Magical Booster is reset. Also, there is a chance that Magical Booster can be transformed into Crimson Booster. +-------------------------- +Weight: 1 +# +23309# +A box containing one Magical Booster and one Magical Booster Remote Control. +-------------------------- +Two Random Options can be granted to Magical Booster by using the Magical Booster Remote Control. +Magical Booster Remote Control can be obtained from +[Cat Salesman Nyarom]itemmall,41,50,0,100,0,0, +by using Silvervine Cat Fruit or Zeny. +-------------------------- +Weight: 1 +# +23310# +A box containing one Cat Headdress and one Magic Cat Hand. +-------------------------- +Two Random Options can be granted to Cat Headdress by using the Magic Cat Hand. +Magic Cat Hand can be obtained from +[Cat Salesman Nyarom]itemmall,41,50,0,100,0,0, +by using Silvervine Cat Fruit or Zeny. +-------------------------- +Weight: 1 +# +23311# +An enchanting cat hand exclusively for the Cat Headdress, guaranteed by the top of the cat's hand. +-------------------------- +When used, grants 2 Random Options to Cat Headdress. +Caution! - When a Random Option is given, Refine Level and card slot of Cat Headdress are reset. +-------------------------- +Weight: 1 +# +23312# +A bag commonly used by researchers at the Alchemist Association. +Contains one of these items: Fire Bottle, Acid Bottle, Plant Bottle, Glistening Coat, Marine Sphere Bottle or Poison Bottle. +-------------------------- +Weight: 1 +# +23317# +Sweets made from cherry blossom leaves perfect for a spring picnic. +-------------------------- +Decreases damage taken from all sized enemies by 5% for 5 minutes. +Recovers HP and SP by 30%. +-------------------------- +Weight: 3 +# +23318# +Shadow Scroll II for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Tempest Shadow Shoes, Tempest Shadow Shield, Stability Shadow Thump Box and Premium Taming Gift Set. +-------------------------- +Weight: 1 +# +23320# +It is made by cutting only the soft part of the melon pulp. +It is easy to drink, so it recovers better than just eating. +-------------------------- +Recovers 10% HP and SP, HIT +30 for 3 minutes. +-------------------------- +Weight: 5 +# +23321# +It is ground with a mixture of sweet melon pulp and nutritious flour. +What powder? ? that is? I do not know? +Anyway, it's a perfect nutrition. +-------------------------- +Recovers 30% HP and SP. +-------------------------- +Weight: 10 +# +23322# +Parfait made from melon and ice cream. It is a dessert that uses fragrant melons generously +and gives a time without regret until the last bite is swallowed. +-------------------------- +Recovers HP and SP fully, Grants Level 10 Kyrie Eleison. +-------------------------- +Cooldown: 5 seconds +Weight: 15 +# +23323# +A box containing one Infinite Fly Wing, which can be used for 3 days. +-------------------------- +Rental Item +The wings cut from fly to be made into enchanted item. You can warp anywhere on the map using this item. +-------------------------- +Weight: 0 +-------------------------- +Weight: 1 +# +23324# +Stability Shadow Thump Box. +-------------------------- +If you combine 3 of any of the following Shadow Equipments which are refined to +5 or higher, you can obtain 1 Plasteres II, Insomnia II, Peerless II, Adurate II, Unfreezing II, Neutral II, Uncurse II or Vitality II Shadow Equipment randomly: +Plasteres +Insomnia +Peerless +Adurate +Unfreezing +Neutral +Uncurse +Vitality +-------------------------- +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +23325# +A box designed for adventurers experiencing Ragnarok for the first time. +The outer surface of the box is filled with welcoming greetings from Ragnarok representatives. +It is packed with various items to help with gameplay. +-------------------------- +Weight: 1 +# +23328# +Justice and truth. +# +23329# +A box containing one Unlimited Fly Wing, which can be used for 5 days. +-------------------------- +Rental Item +The wings cut from fly to be made into enchanted item. You can warp anywhere on the map using this item. +-------------------------- +Weight: 1 +# +23330# +A box containing 1 Infinite Giant Fly Wing that available for 1 day. +-------------------------- +Rental Item +An enchanted, giant wing from an ancient creatures. +Enables instant teleportation of many people when used by a Party Master. +-------------------------- +Weight: 0 +(Not affected by \ +.) +-------------------------- +Weight: 1 +# +23331# +A box containing one Infinite Fly Wing, which can be used for 1 week. +-------------------------- +Rental Item +The wings cut from fly to be made into enchanted item. You can warp anywhere on the map using this item. +-------------------------- +Weight: 1 +# +23332# +May's Golden Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, New Hat Box III, a Sealed Hat Box and Mysterious Medal Piggy Bank. +-------------------------- +Weight: 1 +# +23333# +A luxurious blue box decorated with an infinite band. +Contains one of the following items: +-------------------------- +Gold Fish Head Hat +Smokey's Transformation Leaf +Survivor's Circlet +Survivor's Orb +Gigant Snake's Breath +-------------------------- +Weight: 20 +# +23334# +Exchange Shadow Thump Box. +A box containing only a box of crumbles that can be combined with various Shadows Equipment to obtain a new Shadow Equipment. +You can get 1 of a variety of combinations. +-------------------------- +Weight: 1 +# +23335# +A cube that collects Shadow Equipments used as materials in a combination shadow box. +You can obtain 2 of Shadow Equipments of Stability, Race, Status or Compose Shadow Thump Box. +-------------------------- +Weight: 1 +# +23336# +A piggy bank that holds a mysterious medal hidden by Leylang. +When used, it is said that a random number of Mysterious Medals will appear. +\ +-------------------------- +Weight: 1 +# +23338# +The wings cut from fly to be made into enchanted item. +You can warp anywhere on the map. +-------------------------- +Weight: 0 +# +23340# +Trumpet-shaped suspicious machine. Has a mysterious ability by speaking in it to spread your voice farther. +-------------------------- +It is possible to broadcast the sentences entered by the entire server. +-------------------------- +Warning-After 3 minutes of inactivity, no effect is triggered. +-------------------------- +Weight: 1 +# +23342# +Envelope containing document issued by merchant guild. +When you open the envelope, you will get Part-time Student Sales(Novice) Employment Certificate. +-------------------------- +Weight: 1 +# +23343# +Envelope containing document issued by merchant guild. +When you open the envelope, you will get Part-time Student Sales(Normal) Employment Certificate. +-------------------------- +Weight: 1 +# +23344# +Envelope containing document issued by merchant guild. +When you open the envelope, you will get Part-time Student Sales(Expert) Employment Certificate. +-------------------------- +Weight: 1 +# +23345# +Envelope containing document issued by merchant guild. +When you open the envelope, you will get Part-time Student Buyer(Novice) Employment Certificate. +-------------------------- +Weight: 1 +# +23346# +Envelope containing document issued by merchant guild. +When you open the envelope, you will get Part-time Student Buyer(Normal) Employment Certificate. +-------------------------- +Weight: 1 +# +23347# +Envelope containing document issued by merchant guild. +When you open the envelope, you will get Part-time Student Buyer(Expert) Employment Certificate. +-------------------------- +Weight: 1 +# +23348# +Employment Certificate that can hire Novice student for sales booth. +Can't be used when the contract has ended. +-------------------------- +Weight: 0 +# +23349# +Employment Certificate that can hire Normal student for sales booth. +Can't be used when the contract has ended. +-------------------------- +Weight: 0 +# +23350# +Employment Certificate that can hire expert student for sales booth. +Can't be used when the contract has ended. +-------------------------- +Weight: 0 +# +23351# +Employment Certificate that can hire novice student for buying booth. +Can't be used when the contract has ended. +-------------------------- +Weight: 0 +# +23352# +Employment Certificate that can hire normal student for buying booth. +Can't be used when the contract has ended. +-------------------------- +Weight: 0 +# +23353# +Employment Certificate that can hire expert student for buying booth. +Can't be used when the contract has ended. +-------------------------- +Weight: 0 +# +23354# +Envelope containing document issued by merchant guild. +When you open the envelope, you will get Part-time Student Sales(Novice) Employment Certificate. +-------------------------- +Weight: 1 +# +23355# +Envelope containing document issued by merchant guild. +When you open the envelope, you will get Part-time Student Sales(Normal) Employment Certificate. +-------------------------- +Weight: 1 +# +23356# +Envelope containing document issued by merchant guild. +When you open the envelope, you will get Part-time Student Sales(Expert) Employment Certificate. +-------------------------- +Weight: 1 +# +23357# +Envelope containing document issued by merchant guild. +When you open the envelope, you will get Part-time Student Buyer(Novice) Employment Certificate. +-------------------------- +Weight: 1 +# +23358# +Envelope containing document issued by merchant guild. +When you open the envelope, you will get Part-time Student Buyer(Normal) Employment Certificate. +-------------------------- +Weight: 1 +# +23359# +Envelope containing document issued by merchant guild. +When you open the envelope, you will get Part-time Student Buyer(Expert) Employment Certificate. +-------------------------- +Weight: 1 +# +23360# +\ + - An internal medicine made by Lekkenberg. +-------------------------- +When used, you recieve the Gloomy Shyness status. +-------------------------- +Weight: 1 +Requirement: +Base Level 100 +# +23361# +A powerful drug that detoxifies poison. +Since the effect is very strong, there is a limit to continuous use. +-------------------------- +Cancels the following effects on usage: +Oblivion Curse +Death Hurt +Toxin +Pyrexia +Paralysis +Venom Bleed +Magic Mushroom +Leech End +-------------------------- +Cooldown: 60 seconds +Weight: 1 +Requirement: +Base Level 100 +# +23362# +The best taste ingredients you can get from Nile Pig. It is said that any kind of noodles can taste heaven by eating this pork potato. +-------------------------- +Recovers 15% of HP and SP. +-------------------------- +Weight: 5 +# +23363# +It is a pudding made with watermelon and decorated with watermelon. +-------------------------- +Recovers 15% SP, MATK +5% for 10 minutes. +-------------------------- +Weight: 3 +# +23364# +This cookie is modeled after the current Pope in the Temple of Setrum. +This is a special cookie sent from the temple directly to the Critatura Academy attached to the paradise in the sense of gratitude for the adventurer's achievement. +-------------------------- +Decreases Variable Casting Time by 10% and Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Weight: 0 +# +23365# +A box prepared by the Critatura Academy attached to the paradise for a member who has returned from a long mission. +-------------------------- +Inlcudes 20 Eden Coin, 20 [Event] White Potion and 20 Critatura Pope Cookie. +-------------------------- +Weight: 0 +# +23367# +Tomato noodles made from elongated noodles, the most basic noodle dish, is widely loved by everyone. +-------------------------- +Recovers 30% HP and SP. +-------------------------- +Weight: 10 +# +23368# +A special catalog created by Merchant Guild. +When you touch the screen lightly, street stall products in the area are displayed, and you can easily buy or sell items. +However, only stalls on the map are being searched through. +-------------------------- +Weight: 1 +# +23372# +Most people knew what was inside this box. But the content seems different. +-------------------------- +Weight: 20 +# +23374# +Magic scroll that contains Fire Armor. Those who use it will wear fire armor. +Changing armor element of user to Fire for 30 minutes, effect does not disappear when user KO'ed. +-------------------------- +Weight: 1 +# +23375# +Magic scroll that contains Water Armor Scroll. Those who use it will wear water armor. +Changing armor element of user to Water for 30 minutes, effect does not disappear when user KO'ed. +-------------------------- +Weight: 1 +# +23376# +Magic scroll that contains Wind Armor. Those who use it will wear wind armor. +Changing armor element of user to wind for 30 minutes, effect does not disappear when user KO'ed. +-------------------------- +Weight: 1 +# +23377# +Magic scroll that contains Earth Armor. Those who use it will wear Earth armor. +Changing armor element of user to Earth for 30 minutes, effect does not disappear when user KO'ed. +-------------------------- +Weight: 1 +# +23383# +Warlord's Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, General's Helm, Mortal Blow Shadow Weapon, Healing Shadow Shield, Restore Shadow Earring, Fire Armor Scroll. +-------------------------- +Weight: 1 +# +23405# +July Green Scroll II for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Penetration Shadow Shoes, Executioner Holy Water Shadow Armor, Classical Feather Hat and Pet Exchange Ticket Box. +-------------------------- +Weight: 1 +# +23436# +A hammer that randomly refines Shadow Equipment to Level 1~10. There is a high chance that the Refine Level will be 4. +If you try already refined Shadow Equipment the Refine Level may drop! +-------------------------- +Weight: 1 +# +23438# +You can randomly get 1 Shadow Equipment, which is not included in exisiting Shadow Cubes(any Shadow Cube, Class Shadow Cube). +Shadows obtained through combinations are not included. +-------------------------- +Weight: 1 +# +23440# +Sentimental Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Dog Officer, Hollgrehenn's Shadow Refine Hammer, Sentimental Shadow Weapon and Enchanting Shadow Weapon. +-------------------------- +Weight: 1 +# +23444# +The Rune-Midgards fashion is me!!! A box containing new costume items that might claim to be . +In additional to one Costume Enchant Stone Box12, one of four types of wigs are included. +-------------------------- +Costume Man's Medal +Costume Man's Medal(Gold) +Costume Straight Long(White) +Costume Straight Long(Yellow) +-------------------------- +Weight: 1 +# +23445# +It is a collection of traditional foods from each region eaten at harvest time. It is said that anyone can taste the taste of their hometown by eating this. +-------------------------- +Recovers 20% HP and SP. +-------------------------- +Weight: 10 +# +23446# +A trap that can safely capture hungry boars. +-------------------------- +Weight: 0 +# +23473# +Infinity Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Amistr Beret, Blacksmith's Blessing and 10 [Event] Kafra Card Box. +-------------------------- +Weight: 1 +# +23474# +Infinity Shadow Thump Box. +-------------------------- +If you combine 1 of Infinity Shadow Earring and Infinity Shadow Pendant which are refined to +7 or higher, you can obtain 1 Infinity Shadow Weapon. +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +23475# +An Infinity Drink which you can feel infinite energy from. +-------------------------- +Effect: +MaxHP +5%, MaxSP +5% for 30 minutes. +Increases critical, long range physical and Magical Damage with every element by 5%. +Casting cannot be interupted. +-------------------------- +Item effects will also disappear when the character dies. +Take it to the following NPCs to make a True Infinity Drink. +-------------------------- +[Nya Time]malangdo,208,163,0,100,0,0 +[Nya Time]moc_para01,26,174,0,100,0,0 +-------------------------- +Weight: 1 +# +23484# +First aid box containing simple medications. +It contains the following items: +-------------------------- +20x Freshly Squeezed Milk +10x Novice Blue Potion +15x Novice Magnifier +1x [Event] Concentration Potion +1x First Aid Box(10) +-------------------------- +\ +-------------------------- +Requirement: +Base Level 5 +-------------------------- +Weight: 0 +# +23485# +First aid box containing simple medications. +It contains the following items: +-------------------------- +40x Freshly Squeezed Milk +15x Novice Blue Potion +15x Novice Magnifier +1x [Event] Concentration Potion +1x First Aid Box(15) +-------------------------- +\ +-------------------------- +Requirement: +Base Level 10 +-------------------------- +Weight: 0 +# +23486# +First aid box containing simple medications. +It contains the following items: +-------------------------- +60x Freshly Squeezed Milk +20x Novice Blue Potion +10x Novice Magnifier +2x [Event] Concentration Potion +1x First Aid Box(20) +-------------------------- +\ +-------------------------- +Requirement: +Base Level 15 +-------------------------- +Weight: 0 +# +23487# +First aid box containing simple medications. +It contains the following items: +-------------------------- +80x Sweet Potato +15x Novice Blue Potion +10x Novice Magnifier +2x [Event] Concentration Potion +1x First Aid Box(25) +-------------------------- +\ +-------------------------- +Requirement: +Base Level 20 +-------------------------- +Weight: 0 +# +23488# +First aid box containing simple medications. +It contains the following items: +-------------------------- +100x Sweet Potato +20x Novice Blue Potion +5x Novice Magnifier +3x [Event] Concentration Potion +1x First Aid Box(30) +-------------------------- +\ +-------------------------- +Requirement: +Base Level 25 +-------------------------- +Weight: 0 +# +23489# +First aid box containing simple medications. +It contains the following items: +-------------------------- +120x Sweet Potato +25x Novice Blue Potion +5x Novice Magnifier +3x [Event] Concentration Potion +1x First Aid Box(35) +-------------------------- +\ +-------------------------- +Requirement: +Base Level 30 +-------------------------- +Weight: 0 +# +23490# +First aid box containing simple medications. +It contains the following items: +-------------------------- +5x [Event] Red Potion Box(20) +15x [Event] Blue Potion +3x [Event] Concentration Potion +1x First Aid Box(40) +-------------------------- +\ +-------------------------- +Requirement: +Base Level 35 +-------------------------- +Weight: 0 +# +23491# +First aid box containing simple medications. +It contains the following items: +-------------------------- +6x [Event] Red Potion Box(20) +15x [Event] Blue Potion +2x [Event] Awakening Potion +1x First Aid Box(45) +-------------------------- +\ +-------------------------- +Requirement: +Base Level 40 +-------------------------- +Weight: 0 +# +23492# +First aid box containing simple medications. +It contains the following items: +-------------------------- +7x [Event] Red Potion Box(20) +20x [Event] Blue Potion +2x [Event] Awakening Potion +1x First Aid Box(50) +-------------------------- +\ +-------------------------- +Requirement: +Base Level 45 +-------------------------- +Weight: 0 +# +23493# +First aid box containing simple medications. +It contains the following items: +-------------------------- +7x [Event] Orange Potion Box(20) +20x [Event] Blue Potion +2x [Event] Awakening Potion +1x First Aid Box(55) +-------------------------- +\ +-------------------------- +Requirement: +Base Level 50 +-------------------------- +Weight: 0 +# +23494# +First aid box containing simple medications. +It contains the following items: +-------------------------- +8x [Event] Orange Potion Box(20) +25x [Event] Blue Potion +2x [Event] Awakening Potion +1x First Aid Box(60) +-------------------------- +\ +-------------------------- +Requirement: +Base Level 55 +-------------------------- +Weight: 0 +# +23495# +First aid box containing simple medications. +It contains the following items: +-------------------------- +9x [Event] Orange Potion Box(20) +25x [Event] Blue Potion +1x First Aid Box(65) +-------------------------- +\ +-------------------------- +Requirement: +Base Level 60 +-------------------------- +Weight: 0 +# +23496# +First aid box containing simple medications. +It contains the following items: +-------------------------- +5x [Event] Yellow Potion Box(20) +30x [Event] Blue Potion +1x First Aid Box(70) +-------------------------- +\ +-------------------------- +Requirement: +Base Level 65 +-------------------------- +Weight: 0 +# +23497# +First aid box containing simple medications. +It contains the following items: +-------------------------- +6x [Event] Yellow Potion Box(20) +30x [Event] Blue Potion +1x First Aid Box(75) +-------------------------- +\ +-------------------------- +Requirement: +Base Level 70 +-------------------------- +Weight: 0 +# +23498# +First aid box containing simple medications. +It contains the following items: +-------------------------- +7x [Event] Yellow Potion Box(20) +35x [Event] Blue Potion +1x First Aid Box(80) +-------------------------- +\ +-------------------------- +Requirement: +Base Level 75 +-------------------------- +Weight: 0 +# +23499# +First aid box containing simple medications. +It contains the following items: +-------------------------- +8x [Event] Yellow Potion Box(20) +35x [Event] Blue Potion +1x First Aid Box(85) +-------------------------- +\ +-------------------------- +Requirement: +Base Level 80 +-------------------------- +Weight: 0 +# +23500# +First aid box containing simple medications. +It contains the following items: +-------------------------- +7x [Event] White Potion Box(20) +40x [Event] Blue Potion +2x [Event] Berserk Potion +1x First Aid Box(90) +-------------------------- +\ +-------------------------- +Requirement: +Base Level 85 +Weight: 0 +# +23501# +First aid box containing simple medications. +It contains the following items: +-------------------------- +7x [Event] White Potion Box(20) +40x [Event] Blue Potion +2x [Event] Berserk Potion +1x First Aid Box(90) +-------------------------- +\ +-------------------------- +Requirement: +Base Level 90 +-------------------------- +Weight: 0 +# +23502# +First aid box containing simple medications. +It contains the following items: +-------------------------- +8x [Event] White Potion Box(20) +45x [Event] Blue Potion +2x [Event] Berserk Potion +-------------------------- +\ +-------------------------- +Requirement: +Base Level 95 +-------------------------- +Weight: 0 +# +23503# +A box containing 20x [Event] Red Potions. +Perfect for taking out whenever you need it. +\ +-------------------------- +Weight: 0 +# +23504# +A box containing 20x [Event] Orange Potions. +Perfect for taking out whenever you need it. +\ +-------------------------- +Weight: 0 +# +23505# +A box containing 20x [Event] Yellow Potions. +Perfect for taking out whenever you need it. +\ +-------------------------- +Weight: 0 +# +23506# +A box containing 20x [Event] White Potions. +Perfect for taking out whenever you need it. +\ +-------------------------- +Weight: 0 +# +23524# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +Sura Stone(Garment) +Ranger Stone(Garment) +Sorcerer Stone(Garment) +and 9 enchantment stones more have been added. +Stones from existing costume enchant stone boxes can also be obtained with a relatively low chance. +-------------------------- +Weight: 1 +# +23533# +A rose that you can receive when you complete a hunting mission. +It can used for trading at Hunting Competition Maineprt_fild01,101,155,0,100,0,0 +If you use it, you can move to the main hunting area, so be careful not to use it recklessly. +-------------------------- +Weight: 0 +# +23537# +Bloody Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate,Cursed Knight's Shield Box, Ancient Hero's Boots, Royal Bow, Shadow Staff and Iron Nail. +-------------------------- +Weight: 1 +# +23538# +A box containing one Cursed Knight's Shield and Silver Statue. +-------------------------- +Two Random Options can be granted to Cursed Knight's Shield by using a Silver Statue. +Silver Statue can be obtained from +[Cat Salesman Nyarom]itemmall,41,50,0,100,0,0, +by using Silvervine Cat Fruit or Zeny. +-------------------------- +Weight: 1 +# +23545# +Angel statue granting Random Options to Cursed Knight's Shield. +If the curse is removed with a low chance, you can get Bloody Knight's Shield. +There is a story that you can obtain a shield with tremendous power that is completely purified with an extremely rare probability� +-------------------------- +When used, grants 2 Random Options to Cursed Knight's Shield. +Caution! - When Random Options are granted, Refine Level and card slots of Cursed Knight's Shield are reset. In addition, there is a low chance that the Cursed Knight's Shield can be transformed into Bloody Knight's Shield or Purified Knight's Shield. +-------------------------- +Weight: 1 +# +23546# +Cursed Blood grants a Random Option to Bloody Knight's Shield. +-------------------------- +When used, grants 2 Random Options to Bloody Knight's Shield. +-------------------------- +Weight: 1 +# +23547# +Angel statue granting a Random Option to the Purified Knight's Shield. +It is more powerful than Silver Statue. +-------------------------- +When used, grants 3 Random Options to Purified Knight's Shield. +-------------------------- +Weight: 1 +# +23548# +Crystal Clear Candy +A candy with embedded ice crystals, which may cause a freezing effect when swallowed. +-------------------------- +Type: Restorative +Restores: 5% HP, 5% SP +Effect: Has a chance to inflict the Frozen status +Weight: 2 +# +23549# +A cookie shaped like a snowman, with a unique taste that you can feel when eaten. +-------------------------- +Type: Restorative +Restores: 5% HP +Effect: Increases HIT +30 +Effect duration: 10 minutes +Cannot be used with other items that provide the same effect. +Weight: 5 +# +23550# +A delicious cookie shaped like a snowman, known as Winter. +-------------------------- +Type: Restorative +Restores: 5% HP +Effect: Increases ATK +3% +Effect duration: 10 minutes +Cannot be used with other items that provide the same effect. +Weight: 5 +# +23551# +A cookie shaped like a Pestie snowman, with a unique taste that you can feel when eaten. +-------------------------- +Type: Restorative +Restores: 5% HP +Effect: Increases ASPD +10% +Effect duration: 10 minutes +Cannot be used with other items that provide the same effect. +Weight: 5 +# +23552# +A delicious cookie shaped like a snowman, known as Flora. +-------------------------- +Type: Restorative +Restores: 5% HP +Effect: Increases MATK +3% +Effect duration: 10 minutes +Cannot be used with other items that provide the same effect. +Weight: 5 +# +23553# +A box containing various items from snacks to hats. I'm excited about what will come out. +-------------------------- +Weight: 10 +# +23554# +An envelop that has snow flower card inside. +-------------------------- +Type: Container +Weight: 5 +# +23556# +Royal hunting competition buff items. +Sweet Potato and Meat recovery effect increased by 2000%. +Duration: 6 hours +# +23575# +A box supported by the Rune Midgartz Kingdom for adventurers. +It contains the following items: +-------------------------- +1x Treasure Chest +1x Mysterious Egg +5x [Event] Battle Manual & Bubble Gum +5x [Event] Life Insurrance +100x [Event] Novice Potion +50x [Event] Fly Wing +1x Adventurer Support Box(15) +\ +-------------------------- +Weight: 0 +# +23576# +A box supported by the Rune Midgartz Kingdom for adventurers. +It contains the following items: +-------------------------- +150x [Event] Novice Potion +50x [Event] Fly Wing +1x Adventurer Support Box(30) +\ +-------------------------- +Requirement: +Base Level 15 +-------------------------- +Weight: 0 +# +23577# +A box supported by the Rune Midgartz Kingdom for adventurers. +It contains the following items: +-------------------------- +20x [Event] Red Potion Box(20) +50x [Event] Fly Wing +1x Adventurer Support Box(45) +\ +-------------------------- +Requirement: +Base Level 30 +-------------------------- +Weight: 0 +# +23578# +A box supported by the Rune Midgartz Kingdom for adventurers. +It contains the following items: +-------------------------- +25x [Event] Red Potion Box(20) +50x [Event] Fly Wing +1x Adventurer Support Box(60) +\ +-------------------------- +Requirement: +Base Level 45 +-------------------------- +Weight: 0 +# +23579# +A box supported by the Rune Midgartz Kingdom for adventurers. +It contains the following items: +-------------------------- +20x [Event] Orange Potion Box(20) +50x [Event] Fly Wing +1x Adventurer Support Box(75) +\ +-------------------------- +Requirement: +Base Level 60 +-------------------------- +Weight: 0 +# +23580# +A box supported by the Rune Midgartz Kingdom for adventurers. +It contains the following items: +-------------------------- +25x [Event] Orange Potion Box(20) +50x [Event] Fly Wing +1x Adventurer Support Box(90) +\ +-------------------------- +Requirement: +Base Level 75 +-------------------------- +Weight: 0 +# +23581# +A box supported by the Rune Midgartz Kingdom for adventurers. +It contains the following items: +-------------------------- +20x [Event] Yellow Potion Box(20) +50x [Event] Fly Wing +\ +-------------------------- +Requirement: +Base Level 90 +-------------------------- +Weight: 0 +# +23582# +A box containing Infinite Fly Wing which can be used for 7 days. +-------------------------- +Rental Item +The wings cut from fly to be made into enchanted item. You can warp anywhere on the map using this item. +-------------------------- +Weight: 0 +-------------------------- +Weight: 0 +# +23583# +A box supported by the Rune Midgartz Kingdom for beginner adventurers who will begin another adventure. +Contains the following items below. +-------------------------- +1x Beginner's Hat +1x Beginner's Suit +1x Beginner's Manteau +1x Beginner's Boots +1x Beginner's Ring +\ +-------------------------- +Requirement: +Base Level 100 +-------------------------- +Weight: 0 +# +23584# +A box supported by the Rune Midgartz Kingdom for beginner adventurers who will begin another adventure. +Contains the following items below. +-------------------------- +1x Beginner's Shadow Armor +1x Beginner's Shadow Shield +1x Beginner's Shadow Weapon +1x Beginner's Shadow Shoes +1x Beginner's Shadow Earring +1x Beginner's Shadow Pendant +\ +-------------------------- +Requirement: +Base Level 120 +-------------------------- +Weight: 0 +# +23585# +A box supported by the Rune Midgartz Kingdom for beginner adventurers who will begin another adventure. +Contains the following items: +A box containing the beginner's armor and a voucher for the beginner's weapon are included. +-------------------------- +25x [Event] Yellow Potion Box(20) +1x [Event] Infinite Fly Wing Box(7 Days) +1x Beginner's Armor Box +1x Beginner's Equipment Exchange Voucher +1x Beginner Support Box(110) +\ +-------------------------- +Requirement: +Base Level 100 +-------------------------- +Weight: 0 +# +23586# +A box supported by the Rune Midgartz Kingdom for beginner adventurers who will begin another adventure. +Contains the following items: +A voucher for refining the beginner's weapon is included. +-------------------------- +20x [Event] White Potion Box(20) +2x [Event] Infinite Fly Wing(7 Days) +1x Beginner's Safe to 7 Weapon Certificate +1x Beginner Support Box(120) +\ +-------------------------- +Requirement: +Base Level 110 +-------------------------- +Weight: 0 +# +23587# +A box supported by the Rune Midgartz Kingdom for beginner adventurers who will begin another adventure. +Contains the following items: +A box containing the Beginner's Shadow Equipment is included. +-------------------------- +25x [Event] White Potion Box(20) +3x [Event] Infinite Fly Wing Box(7 Days) +1x Beginner's Shadow Box +\ +-------------------------- +Requirement: +Base Level 120 +-------------------------- +Weight: 0 +# +23618# +2017 Special Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, 2017 Special Box, New Shadow Cube and Premium Taming Gift Set. +-------------------------- +Weight: 1 +# +23619# +A box of popular items from Lucky Eggs in 2017. +You can get 1 item out of a 19 different items. +-------------------------- +Cursed Knight's Shield Box +Ancient Hero's Boots +Royal Bow +Shadow Staff +Iron Nail +Amistr Beret +Dog Officer +Classical Feather Hat +General's Helm +New Hat Box III +Spell Circuit +Toy Syringe +Magical Booster Box +Cat Headdress Gift Basket +Blue Rear Ribbon +Rosario Necklace +Candy Pouch Box(Physical) +Candy Pouch Box(Ranged) +Candy Pouch Box(Magic) +-------------------------- +Weight: 20 +# +23629# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +Rune Knight Stone(Garment) +Genetic Stone(Garment) +Warlock Stone(Garment) +and 9 enchantment stones more have been added. +Stones from existing costume enchant stone boxes can also be obtained with a relatively low chance. +-------------------------- +Weight: 1 +# +23647# +When you shake the bell, a wanderer appears anywhere, selling or buying things. +With this, you don't have to go to town! +-------------------------- +Weight: 0 +# +23648# +Bells for easy access to the Kafra Storage. +Just shake it anywhere, and the Kafra Staff will open the storage. +-------------------------- +Weight: 0 +# +23650# +Ice Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Iron Staff, Red Lotus Sword, Oriental Sword and Blacksmith's Blessing. +-------------------------- +Weight: 1 +# +23660# +A bottle that smells so much that dangs like to follow without even knowing it. +The contents of the inside are also dangerously delicious, so the risk is lowered so you can enjoy safely. +-------------------------- +Recovers 18% HP and SP. +Weight: 18 +# +23661# +2018 New Year Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Soaring Power Armor, Strong Magic Power, Physical Magical Thump Box and Blacksmith's Blessing. +-------------------------- +Weight: 1 +# +23662# +A box where you can get one of the popular shadow equipments. +-------------------------- +Weight: 1 +# +23663# +A cube that collects Shadow Equipment used as materials in a combination Shadow Box. +You can get 2 of the Shadow Equipments Stability, Race, Status, Compose, Physical Magical, Immune Athena, Hard Champion, Kingbird Ancient or Critical Hit Thump Box. +-------------------------- +Weight: 1 +# +23664# +This limited edition Lapine's Thump Box was launched to commemorate the beginning of 2018. +You can get one of the various Thump Boxes that have been released so far. +-------------------------- +Weight: 1 +# +23665# +Physical Magical Shadow Thump Box. +-------------------------- +If you combine 3 of either Physical Shadow Weapon/Earring/Pendant or Magical Shadow Weapon/Earring/Pendant which are refined to +7 or higher, you can obtain 1 Physical Shadow Shield/Armor/Shoes or Magical Shadow Shield/Armor/Shoes. +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +23666# +Immune Athena Shadow Thump Box. +-------------------------- +If you combine 2 of either Athena Shadow Shield/Earring and Immune Shadow Armor which are refined to +7 or higher, you can obtain 1 Immune Athena Shadow Shield. +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +23667# +Hard Champion Shadow Thump Box. +-------------------------- +If you combine 2 of either Hard Shadow Armor/Earring and Champion Shadow Shoes, you can obtain 1 Hard Champion Shadow Shoes. +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +23668# +Kingbird Ancient Shadow Thump Box. +-------------------------- +If you combine 1 Kingbird Shadow Weapon and Ancient Shadow Armor which are refined to +7 or higher, you can obtain 1 King Bird's Shadow Armor. +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +23669# +Critical Hit Shadow Thump Box. +-------------------------- +If you combine 2 of either Critical Hit Shadow Weapon and Critical Shadow Armor/Shield/Shoes which are refined to +7 or higher, you can obtain 1 Critical Hit Shadow Armor. +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +23674# +Ambitiously organized by the Sweets Festival Committee. +It is said that the snack box is specially sealed to prevent melting. +Be careful not to shake! +-------------------------- +Weight: 10 +# +23675# +An Enchantment Scroll prepared during the Geffen Magic Tournament, provides a variety of magic randomly. +It is made for Armor. +Both Refine Level and card are preserved. +-------------------------- +[Geffen Magic Armor List] +Geffen Magic Robe +Anti-Magic Suit +-------------------------- +Weight: 10 +# +23676# +A special abrasive made by Gray Blacksmith. +It was made to be suitable for physical Thanos' and Thanos'-AD weapons. +Both Refine Level and card are preserved. +-------------------------- +[Gray weapon list] +Thanos Sword +Thanos Greatsword +Thanos Spear +Thanos Two-Handed Spear +Thanos Dagger +Thanos Katar +Thanos Knuckle +Thanos Hammer +Thanos Axe +Thanos Whip +Thanos Violin +-------------------------- +Weight: 5 +# +23677# +A special abrasive made by Gray Blacksmith. +It was made to be suitable for magical Thanos' and Thanos'-AD weapons. +Both Refine Level and card are preserved. +-------------------------- +[Gray weapon list] +Thanos Two-Handed Staff +Thanos Staff +Thanos Dagger +Thanos Sword +Thanos Violin +Thanos Whip +-------------------------- +Weight: 5 +# +23678# +A special abrasive made by Gray Blacksmith. +It is designed to be fit with ranged weapons. +Both Refine Level and card are preserved. +-------------------------- +[Gray weapon list] +Thanos Bow +Thanos Whip +Thanos Violin +Thanos Sword +Thanos Greatsword +Thanos Spear +Thanos Two-Handed Spear +Thanos Katar +Thanos Knuckle +Thanos Hammer +Thanos Axe +-------------------------- +Weight: 5 +# +23679# +Order Sheet prepared during the Geffen Magic Tournament, provides a variety of magic randomly. +It is made for Accessory. +Both Refine Level and card are preserved. +-------------------------- +[Geffen Magic Accessory List] +Physical Enhancer Ring +Magic Intensifier Ring +-------------------------- +Weight: 10 +# +23682# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +Shadow Chaser Stone(Garment) +Mechanic Stone(Garment) +Wandermins Stone(Garment) +and 9 enchantment stones more have been added. +Stones from existing costume enchant stone boxes can also be obtained with a relatively low chance. +-------------------------- +Weight: 1 +# +23683# +A lucky bag made of luxurious silk. +Contains one of many different types of gifts. +-------------------------- +Weight: 10 +# +23684# +A mysterious seal card that is said to be in the Phantom Wraith's Pocket. +# +23700# +New Year Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, New Hat Box, Narcissus Bow, Mado Sword and Avenger. +-------------------------- +Weight: 1 +# +23705# +Lasagna's specialty canned food. +Eating it reminds me of lasagna, and for some reason I can really move to lasagna. +-------------------------- +You can teleport to Lasagna if you use it. +-------------------------- +Will not be consumed even when used. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Cooldown: 5 seconds +Weight: 0 +# +23706# +Upgraded parts from the Charleston factory. +Ideal for optimizing weapons produced at the factory for melee attacks. +-------------------------- +[Charleston Weapon List] +Robot's Arm +Pile Bunker +Pile Bunker S +Pile Bunker T +Pile Bunker P +Tornado Axe +Gigantic Blade +-------------------------- +Weight: 5 +# +23707# +Upgraded parts from the Charleston factory. +Ideal for optimizing weapons produced at the factory for ranged attacks. +-------------------------- +[Charleston Weapon List] +Robot's Arm +Pile Bunker +Pile Bunker S +Pile Bunker T +Pile Bunker P +Tornado Axe +Gigantic Blade +-------------------------- +Weight: 5 +# +23708# +The Rune-Midgards fashion is me!!! A box containing new costume items that might claim to be. +In additional to one Costume Enchant Stone Box 15, one of four types of wigs are included. +-------------------------- +Costume Volume Low Twin +Costume Red Afro Wig +Costume Strong Hair +Costume Lolita Two Side Up +-------------------------- +Weight: 1 +# +23710# +Spring's Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Exchange Shadow Thump Box, Unexpected Lucky Armor, Hardened Vitality Armor, Hollgrehenn's Shadow Refine Hammer and Heart Pact. +-------------------------- +Weight: 1 +# +23711# +Caution! If you have more than 30,000 items in your inventory, the items may be lost. +-------------------------- +A box containing 500 Traps. +-------------------------- +Weight: 25 +# +23718# +Spring Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Sealed Seal Card II, Brilliant Rapid Armor, Excellent Dexterity Armor, Shadow Random Option Thump Box, Class Shadow Thump Box(for any location), Blacksmith's Blessing and Hollgrehenn's Shadow Refine Hammer. +-------------------------- +Weight: 1 +# +23719# +Card decorated with silver. You can get one of the sealed card series. +- Queen Scaraba, Baphomet, Maya, Clown, Professor, Champion, Creator, Stalker, Paladin, Gypsy, General Daehyon, Gioia, Fallen Pyuriel, Guardian Kades, Time Holder, Edgar, MasterSmith, High Priest, Orc Lord, Incantation Samurai, Lady Tanee, Orc Hero, Mistress, Ktullanux +-------------------------- +Weight: 1 +# +23720# +Shadow Upgrade Thump Box. +-------------------------- +If you put 1 Shadow Equipment, except Class Shadow Equipment, which are refined to +7 or higher, 1 Random Option is granted. +-------------------------- +Weight: 1 +# +23723# +Sweet and savory cookie toppings are mixed on soft and soft bread, so once you taste it, it doesn't matter if you're wondering why it's not a melon. +-------------------------- +Recovers 30% HP. +-------------------------- +Weight: 5 +# +23724# +Egg of blessing to commemorate the birth of the world. +There seems to be something in the egg, so carefully peel the shell. +-------------------------- +Weight: 1 +# +23743# +Canned food specially made to celebrate the noodles festival. +Contains all kinds of prizes. +-------------------------- +Weight: 5 +# +23744# +Shrimp cream pasta made of ribbon-shaped noodles, +shrimp and cream have a soft taste, and you can feel the deep and deep sea flavor. +Recovers 5% HP, ATK +3% for 10 minutes. +-------------------------- +Weight: 5 +# +23751# +A box containing 1 Premium Service for Premium Buffs. +-------------------------- +[Basic Service] +When you activate the Premium Service, you will receive a 30-day Premium Buff for all your characters in the server: +- Increases Experience by 20% +- Increases Item drop rate by 20% +-------------------------- +[Additional Service] +Consuming Silvervine Cat Fruits will allow all your characters in one server to receive the following effects: +- EXP UP (24 hours, Price: 4) +Increases Experience by 30% +- ITEM UP (24 hours, Price: 2) +Increases Item drop rate by 30% +- DEATH DOWN (24 hours, Price: 1) +Decreases Death Penalty by 50% +- Advanced Package (24 hours, Price: 6) +All 3 effects from above +Caution! - You cannot select a buff effect or an advanced package that overlaps the buff while it is active. +-------------------------- +Weight: 0 +# +23752# +A box made with apology for the drop rate error. +Each of the following gifts is included. +-------------------------- +Elysee Zonda Owner EX(30 Days) +Premium Reset Stone +-------------------------- +Weight: 0 +# +23754# +A box containing one Apology Ring and 1 Magnifier. Can be used for 30 days after opening. +-------------------------- +A ring of apology. +Enables the use of Level 1 Teleport and Heal. +Protects from skill cast interruption. +All Status +1. +Decreases Variable Casting Time by 10%, Increases Attack Speed(Decreases After Attack Delay by 10%). +-------------------------- +Weight: 0 +# +23761# +A set of beautifully packed taming items. Includes 3 Taming Gift items. +Includes new Taming Exchange Tickets for Civil Servant, Golem, Nightmare Terror, Miyabi Doll and Stone Shooter. +-------------------------- +Weight: 20 +# +23763# +A small egg whose identity is unknown. +Two lucky eggs released between 2015 and 2017 are included. +-------------------------- +Weight: 1 +# +23764# +A box made with the apology of the Silvervine Cat Fruit drop rate error. +Contains the gift below. +-------------------------- +1x Mysterious Egg III +5x [Event] Battle Manual & Bubble Gum. +-------------------------- +Weight: 0 +# +23765# +May's Rainbow Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Powerful Soul Essence, New Hat Box, Angel Poring Boots Box, Poring Sunglasses, Premium Taming Gift Set II. +-------------------------- +Weight: 1 +# +23766# +A box containing Temporal Armor. +Contains 1 of 6 types of Temporal Armor. +-------------------------- +Soaring Power Armor +Strong Magic Armor +Unexpected Lucky Armor +Hardened Vitality Armor +Brilliant Rapid Armor +Excellent Dexterity Armor +-------------------------- +Weight: 200 +# +23767# +A box of helmets that combines powerful abilities with a nice appearance. +Contains 1 of 5 types of helmets. +-------------------------- +Dog Officer +Spell Circuit +General's Helm +Classical Feather Hat +Amistr Beret +-------------------------- +Weight: 80 +# +23770# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +Archbishop Stone(Garment) +Royal Guard Stone(Garment) +Guillotine Cross Stone(Garment) +and 9 enchantment stones more have been added. +Stones from existing costume enchant stone boxes can also be obtained with a relatively low chance. +-------------------------- +Weight: 1 +# +23771# +A mysterious plastic bag found in a fine dust clump. +-------------------------- +Weight: 0 +# +23772# +OS Weapon Box. +Upon opening, you can get one of the OS weapons. +-------------------------- +Weight: 10 +# +23773# +Weapon Modification Device Box(Physical). +A box containing a device that can modify OS weapons. +Upon opening, you can obtain a Weapon Modification Device(Physical). +-------------------------- +Weight: 5 +# +23774# +Weapon Modification Device Box(Magic). +A box containing a device that can modify OS weapons. +Upon opening, you can obtain a Weapon Modification Device(Magic). +-------------------------- +Weight: 5 +# +23775# +Modification Module Box. +A box containing modules that can be used to modify Illusion Armor. +Upon opening, you can get one of several modules. +-------------------------- +Weight: 10 +# +23776# +An device that can modifiy OS weapons. +Can be enchanted with a Physical Random Options. +-------------------------- +[OS-Weapon List] +Cannon Rapier-OS +Beam Claymore-OS +Rutilus Stick-OS +Circuit Board-OS +Blasti-OS +Saphir Mace-OS +Virtual Bow-OS +MH-P89-OS +Meuchler-OS +Burning Knuckle-OS +HR-S55-OS +Kuroiro-OS +AC-B44-OS +Boost Lance-OS +Ultio-OS +-------------------------- +Weight: 5 +# +23777# +An advanced device that can modifiy OS weapons. +Can be enchanted with a Physical Random Options. +-------------------------- +[OS-Weapon List] +Cannon Rapier-OS +Beam Claymore-OS +Rutilus Stick-OS +Circuit Board-OS +Blasti-OS +Saphir Mace-OS +Virtual Bow-OS +MH-P89-OS +Meuchler-OS +Burning Knuckle-OS +HR-S55-OS +Kuroiro-OS +AC-B44-OS +Boost Lance-OS +Ultio-OS +-------------------------- +Weight: 5 +# +23778# +An highly advanced device that can modifiy OS weapons. +Can be enchanted with a Physical Random Options. +-------------------------- +[OS-Weapon List]] +Cannon Rapier-OS +Beam Claymore-OS +Rutilus Stick-OS +Circuit Board-OS +Blasti-OS +Saphir Mace-OS +Virtual Bow-OS +MH-P89-OS +Meuchler-OS +Burning Knuckle-OS +HR-S55-OS +Kuroiro-OS +AC-B44-OS +Boost Lance-OS +Ultio-OS +-------------------------- +Weight: 5 +# +23779# +An device that can modifiy OS weapons. +Can be enchanted with a Magical Random Options. +-------------------------- +[OS-Weapon List]] +Cannon Rapier-OS +Beam Claymore-OS +Rutilus Stick-OS +Circuit Board-OS +Blasti-OS +Saphir Mace-OS +Virtual Bow-OS +MH-P89-OS +Meuchler-OS +Burning Knuckle-OS +HR-S55-OS +Kuroiro-OS +AC-B44-OS +Boost Lance-OS +Ultio-OS +-------------------------- +Weight: 5 +# +23780# +An advanced device that can modifiy OS weapons. +Can be enchanted with a Magical Random Options. +-------------------------- +[OS-Weapon List]] +Cannon Rapier-OS +Beam Claymore-OS +Rutilus Stick-OS +Circuit Board-OS +Blasti-OS +Saphir Mace-OS +Virtual Bow-OS +MH-P89-OS +Meuchler-OS +Burning Knuckle-OS +HR-S55-OS +Kuroiro-OS +AC-B44-OS +Boost Lance-OS +Ultio-OS +-------------------------- +Weight: 5 +# +23781# +An highly advanced device that can modifiy OS weapons. +Can be enchanted with a Magical Random Options. +-------------------------- +[OS-Weapon List]] +Cannon Rapier-OS +Beam Claymore-OS +Rutilus Stick-OS +Circuit Board-OS +Blasti-OS +Saphir Mace-OS +Virtual Bow-OS +MH-P89-OS +Meuchler-OS +Burning Knuckle-OS +HR-S55-OS +Kuroiro-OS +AC-B44-OS +Boost Lance-OS +Ultio-OS +-------------------------- +Weight: 5 +# +23784# +A box containing 1 Sweet Candy Box. Can be used for 7 days. +-------------------------- +Rental Item +A sweet candy rumored to spring up a mysterious power that you don't even know about. +Increases Experience gained from monsters by 10%. +ASPD +1 +ATK, MATK +5 +Increases Healing skills effectiveness by 5%. +Decreases Fixed Casting Time by 0.1 second. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +23804# +Soul Plunger Scroll II for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, Aquatic Spear, Exorcist's Bible, Katar of Shiver, Rebellion Shadow Equipment and Kagerou&Oboro Shadow Equipment. +-------------------------- +Weight: 1 +# +23805# +You can get 1 of the following hats by opening the box. +-------------------------- +Sigrun's Wings, Robo Eye +Angel Spirit, Spirit of Green Maiden +Ears of Ifrit, Chick Hat +Shadow Booster +Fallen Angel Blessing +Elemental Crown +Rabbit Magic Hat +Anubis Helm +New Wave Sunglasses +-------------------------- +Weight: 1 +# +23806# +A box containing 1 Ancient Hero's Weapon. +Contains 1 Ancient Hero's Weapon from a total of 36. +-------------------------- +Royal Bow, Shadow Staff +Iron Nail, Narcissus Bow +Mado Sword, Aquatic Spear +Iron Staff, Red Lotus Sword +Avengers, Golden Lord Launcher +Exorcist's Bible, Katar of Shiver +One Sky One Sun, Clarity Huuma Shuriken +Kiri no Tsuyu, Crimson Rose +Meowmeow Foxtail, The Black +Oriental Sword, Surudoi Kaze +Master Soul Rifle +Demon Slayer Shot, Spirit Pendulum +Dragon Slayer +Light Blade +Meteor Striker +Slate Sword +Trumpet Shell +Barbed Wire Whip +Saint Mace, Ray Knuckle +Blade Katar +Fatalist +Scarlet Dragon Leather Bow +Blue Crystal Staff +Chilling Cane +-------------------------- +Weight: 200 +# +23815# +A mysterious essence bearing the heat of the lava dungeon. +Give mysterious energy to the following items. +-------------------------- +[Nogg Road F3 Armor List] +Lava Leather Armor +Lava Leather Suit +Lava Leather Robe +Can be enchanted with 2 Random Options. +-------------------------- +Weight: 5 +# +23817# +A bundle containing an interesting Order Sheet. +It is said that it contains the recipe for making very rare equipment. +-------------------------- +Weight: 1 +# +23818# +A Combination Scroll that explains how to craft a Large Orc Hero's Helm. +-------------------------- +[Required Materials] +150x Orc Lord's Token +10x Zelunium +-------------------------- +[Large Orc Hero's Helm(1)] +True orc hero helm. But if it's too big, it will hurt your neck. +STR +2 +On attack, a chance to active Weapon Perfection Level3 +Type: Headgear Defense: 5 +Position: Upper, Middle Weight: 90 +Requirement: None +-------------------------- +Weight: 1 +# +23819# +A Combination Scroll that explains how to craft a Crimson Rose. +-------------------------- +[Required Materials] +150x Valhala's Flower +10x Zelunium +-------------------------- +[Crimson Rose] +Crimson Rose biting in the mouth. Did you remove the dangerous thorns? +ATK +1%. +MATK +1%, MaxSP +30. +Type: Headgear Defense: 0 +Position: Lower Weight: 10 +Job: All Jobs +-------------------------- +Weight: 1 +# +23820# +A Combination Scroll that explains how to craft a Grand Peco Headdress. +-------------------------- +[Required Materials] +150x Broken Crown +10x Zelunium +-------------------------- +[Grand Peco Headdress] +An elaborate multi-colored headdress made from the feathers of a Grand Peco. +Increases Physical Damage against enemies of Demihuman and Brute monsters by 7%. +Random chance to inflict Curse status on the target when receiving physical damage. +Type: Headgear Defense : 5 +Position: Upper, Middle Weight : 80 +Job: All Jobs +-------------------------- +Weight: 1 +# +23821# +A Combination Scroll that explains how to craft a Moonlight Flower Hat. +-------------------------- +[Required Materials] +150x Mother's Nightmare +10x Zelunium +-------------------------- +[Moonlight Flower Hat] +A hat made after the monster moonflower. +It is said that 30% of moonflower hair and 70% of tail fox were used. Note that only hand washing is possible +If you wear it together with a nine tailed neckerchief, your fashion is completed this winter? +Automatically cast Level 1 Increase Agility by chance when struck by Physical attack. +DEX +2 +Type: Headgear Defense : 3 +Position: Upper, Middle Weight: 20 +Job: All Jobs +-------------------------- +Weight: 1 +# +23822# +A Combination Scroll that explains how to craft a 8Way Wings of Purgatory. +-------------------------- +[Required Materials] +150x Skeletal Armor Piece +10x Zelunium +-------------------------- +[8Way Wings of Purgatory] +Earrings processed in the form of wings under the breath of a dragon. +There is strength against the dragon. +Increases Magical Damage against Dragon monsters by 4% +Decreases damage taken from Dragon monsters 5% +Type: Headgear Defense: 0 +Position: Middle Weight: 20 +Level Requirement: 20 +Job: All Jobs +-------------------------- +Weight: 1 +# +23823# +A Combination Scroll that explains how to craft a Drooping Neko Crew. +-------------------------- +[Required Materials] +150x Mother's Nightmare +10x Zelunium +-------------------------- +[Drooping Neko Crew(1)] +Lori Ruri mulin pets 'Crew'. The somewhat being acute and says that there is a tendency which all of a sudden surprises to also being trivial. +INT +2, MDEF +5. +Ignores magical defense of target by 5%. For each Refine Level Pierces magical defense of target by 1%. +Refine Level +7: +Ignores magical defense of target by 5%. MATK +2% +Refine Level +9: +MATK +5% +Type: Headgear Defense: 0 +Position: Upper Weight: 10 +Job: All Jobs +-------------------------- +Weight: 1 +# +23824# +A Combination Scroll that explains how to craft a World Cup Hat of Honor. +-------------------------- +[Required Materials] +50x Shining Spear Edge +10x Zelunium +-------------------------- +[World Cup Hat of Honor(1)] +Glorious soccer ball hat decorated in gold. +All Stats +1, ASPD +1. +ATK and MATK Increases by a certain amount of BaseLV. +Type: Headgear Defense: 2 +Position: Upper Weight: 60 +Job: All Jobs +-------------------------- +Weight: 1 +# +23825# +A Combination Scroll that explains how to craft a Evil Marching Hat. +-------------------------- +[Required Materials] +30x Osiris Doll +10x Zelunium +-------------------------- +[Evil Marching Hat(1)] +Black marching hat with wickedness. +STR +2, MDEF +1, Increases Physical Damage by 2%. +Refine Level +7: +Increases Critical Damage by 10%. +Refine Level +9: +ATK +5%, Increases Ranged Physical Damage by 5%. +Type: Headgear Defense: 10 +Position: Upper Weight: 50 +Job: All Jobs +-------------------------- +Weight: 1 +# +23826# +A Combination Scroll that explains how to craft a Vagabond Wolf King Helmet. +-------------------------- +[Required Materials] +120x Fang of Hatii +10x Zelunium +-------------------------- +[Vagabond Wolf King Helmet(1)] +Made out of a Wolf King's fur and feels like you're surrounded by a dignified force when worn but basically worn for its looks +AGI +5, FLEE +10. +Ignores physical defense of Demihuman and Brute monsters by 10%. ++7 Refine: Random chance to inflict Bleeding status to enemies on 5x5 cells when dealing physical damage. ++9 Refine: Random chance to auto-cast Level 1 Howling of Lion when dealing physical damage. +Type: Headgear Defense: 5 +Position: Upper, Middle Weight: 60 +Job: All Jobs +-------------------------- +Weight: 1 +# +23827# +A Combination Scroll that explains how to craft a Status Shadow Equipment. +You can get 1 Status Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +50x Pocket Watch +10x Shadowdecon +-------------------------- +[Obtainable Items] +Vital Shadow Shoes, Vital Shadow Shield, Power Shadow Pendant, Power Shadow Earring, Intelligent Shadow Pendant, Intelligent Shadow Earring, Dexterous Shadow Weapon, Dexterous Shadow Armor, Athletic Shadow Shoes, Athletic Shadow Shield, Lucky Shadow Weapon, Lucky Shadow Armor +-------------------------- +Weight: 1 +# +23828# +A Combination Scroll that explains how to craft a Elegant Shadow Equipment. +You can get 1 Elegant Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +10x Osiris Doll +10x Shadowdecon +-------------------------- +[Obtainable Items] +Elegant Shadow Pendant, Elegant Shadow Earring, Elegant Shadow Weapon +-------------------------- +Weight: 1 +# +23829# +A Combination Scroll that explains how to craft a Tension Shadow Equipment. +You can get 1 Tension Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +10x Baphomet Doll +10x Shadowdecon +-------------------------- +[Obtainable Items] +Tension Shadow Pendant, Tension Shadow Earring, Tension Shadow Weapon +-------------------------- +Weight: 1 +# +23830# +A Combination Scroll that explains how to craft a Restore Shadow Equipment. +You can get 1 Restore Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +50x Shining Spear Edge +10x Shadowdecon +-------------------------- +[Obtainable Items] +Restore Shadow Pendant, Restore Shadow Earring +-------------------------- +Weight: 1 +# +23831# +A Combination Scroll that explains how to craft a Healing Shadow Equipment. +You can get 1 Healing Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +50x Loki's Whispers +10x Shadowdecon +-------------------------- +[Obtainable Items] +Healing Shadow Shield, Healing Shadow Shoes, Healing Shadow Weapon +-------------------------- +Weight: 1 +# +23832# +A Combination Scroll that explains how to craft a Amistr Cap. +-------------------------- +[Required Materials] +30x Baphomet Doll +20x Zelunium +-------------------------- +[Amistr Cap(1)] +A doll hat modeled after Homunculus 'Amistre'. +VIT +1, For each 2 Refine Levels VIT +1. +Random chance to auto-cast Level 5 Pierce when dealing physical damage. +When equipped with Romantic Leaf: +Reflects physical damage by 1%. For each 2 Refine Levels of Amistr Cap: Reflects physical damage by 1%. +When equipped with Romantic Flower: +MaxSP +20. For each 2 Refine Levels of Amistr Cap: MaxSP +10 +When equipped with Crimson Rose: +For each Refine Level of Amistr Cap: MATK +1%, Increases Physical Damage by 1%. (Limited to +10 Refine Level) +When equipped with Crunch Toast: MaxHP +100 +Type: Headgear Defense: 4 +Position: Upper Weight: 50 +Job: All Jobs +-------------------------- +Weight: 1 +# +23833# +A Combination Scroll that explains how to craft a Tiger King Doll Hat. +-------------------------- +[Required Materials] +150x Tiger's Footskin +20x Zelunium +-------------------------- +[Tiger King Doll Hat(1)] +A hat that looks like a tiger wearing a hat and smoking a cigarette. It is part of the expression 'a very old time'. +STR +2, DEX +2. +Increases Physical Damage against enemies of Brute monsters by 10%. +Random chance to transform wearer into Eddga when dealing or receiving physical attack. During transformation: Drains 5 SP per sec but gains a brutal power for a while. +Both transformation rate and power are increased pereach Refine Level. +Type: Headgear Defense: 6 +Position: Upper Weight: 40 +Job: All Jobs except Novice +-------------------------- +Weight: 1 +# +23834# +A Combination Scroll that explains how to craft a Bacsojin Doll Hat. +-------------------------- +[Required Materials] +150x White Snake's Tear +20x Zelunium +-------------------------- +[Bacsojin Doll Hat(1)] +A doll resembles the fairy \ +. +INT +3, MDEF +9. +Increases Magical Damage against Undead monsters by 10%. +Random chance to transform wearer into Bacsojin when dealing or receiving magical attack. While in transform, you will lose 10 SP per sec but you will gain more magical power. Higher Refine Level will Increases the transform duration and magical power. +Type: Headgear Defense: 0 +Position: Upper Weight: 0 +Level Requirement: 1 +Job: All Jobs except Novice +-------------------------- +Weight: 1 +# +23835# +A Combination Scroll that explains how to craft a Candy Pouch Equipment. +You can get 1 kind of Candy Pouch Equipment when combining the required materials. +-------------------------- +[Required Materials] +150x Gemstone +20x Zelunium +-------------------------- +[Obtainable Items] +Candy Pouch Bag(Magic), Candy Pouch Bag(Physical), Candy Pouch Bag(Ranged) +-------------------------- +Weight: 1 +# +23836# +A Combination Scroll that explains how to craft a Gold Fish Head Hat. +-------------------------- +[Required Materials] +150x Young Twig +20x Zelunium +-------------------------- +[Gold Fish Head Hat(1)] +A smirk golden fish hat. Every time I open my mouth, it seems fishy. +Has a chance to endow weapon with holy property for 60 seconds when dealing physical damage. +Has a chance to increase holy property magic by 10% for 60 seconds when dealing magical damage. +Refine Level +7: +Granted holy elemental, slightly increased chance of Holy elemental Magic damage increase. +Refine Level +9: +When hit by a physical attack, has a low chance to auto-cast Quagmire lv.1 when receiving physical damage. +Type: Headgear Defense: 2 +Position: Upper Weight: 40 +Job: All Jobs +-------------------------- +Weight: 1 +# +23837# +A Combination Scroll that explains how to craft a Survivor's Equipment. +You can get 1 Survivor's Equipment when combining the required materials. +-------------------------- +[Required Materials] +150x Ba Gua +20x Zelunium +-------------------------- +[Obtainable Items] +Survivor's Orb, Survivor's Circlet +-------------------------- +Weight: 1 +# +23838# +A Combination Scroll that explains how to craft a Toy Syringe. +-------------------------- +[Required Materials] +150x Ice Scale +20x Zelunium +-------------------------- +[Toy Syringe] +Toy made of a syringe. The liquid inside seems to be syrup. +[Event] White Slim Potion: When using White Slim Potion, 100% Increases in recovery. +Type: Headgear Defense: 3 +Position: Lower Weight: 10 +Job: All Jobs +-------------------------- +Weight: 1 +# +23839# +A Combination Scroll that explains how to craft a Blue Rear Ribbon. +-------------------------- +[Required Materials] +150x Gemstone +20x Zelunium +-------------------------- +[Blue Rear Ribbon] +Accessories decorated with indigo ribbons. +If you wear it, you might want to fly towards the indigo sea. +Increases Experience gained from defeating monsters by 5%, Increases Item Drop Rate from defeating monsters by 5%. +When equipped with: +[Candy Pouch Bag(Physical)]: Decreases After Attack delay by 5%. +[Candy Pouch Bag(Magic)]: Decreases Variable Casting Time by 5%. +[Candy Pouch Bag(Ranged)]: ATK +4%. +If Refine Level of Candy Pouch Bag is over 12, All Stats +1. +Type: Headgear Defense: 8 +Position: Lower Weight: 10 +Job: All Jobs +-------------------------- +Weight: 1 +# +23840# +A Combination Scroll that explains how to craft a Magical Booster. +-------------------------- +[Required Materials] +150x Dark Red Scale Piece +20x Zelunium +-------------------------- +[Magical Booster(1)] +A tool that amplifies your ability to control your brain waves. +It is possible to attach the amplification chip to give the ability. +Type: Headgear Defense: 10 +Position: Middle Weight: 30 +Job: All Jobs +-------------------------- +Weight: 1 +# +23841# +A Combination Scroll that explains how to craft a Rosario Necklace. +-------------------------- +[Required Materials] +150x Mother's Nightmare +20x Zelunium +-------------------------- +[Rosario Necklace] +The holy Rosario which God's apostles have given its power. Mysterious force seems to be flowing. +Healing +5%. +When equipped with [Light of Recovery] every 2 Refine decreases delay after skill by 3%. +Light of Recovery's SP penalty is removed. +Type: Headgear Defense: 12 +Position: Lower Weight: 30 +Job: All Jobs +-------------------------- +Weight: 1 +# +23842# +A Combination Scroll that explains how to craft a Elemental Crown. +-------------------------- +[Required Materials] +150x Broken Crown +20x Zelunium +-------------------------- +[Elemental Crown] +A crown blessed by spirit, by wearing it you can feel the flow of nature. +DEX +3. +Increases Ranged Physical Damage by 4%. +For each 2 Refine Levels: DEX +1 +When equipped with Burning Bow, Frozen Bow, Earth Bow or Gust Bow: Increases Ranged Physical Damage by 45%. +Type: Headgear Defense: 10 +Position: Upper Weight: 50 +Level Requirement: 50 +Job: All Jobs +-------------------------- +Weight: 1 +# +23843# +A Combination Scroll that explains how to craft a Palace Guard Cap. +-------------------------- +[Required Materials] +150x Tiger's Footskin +20x Zelunium +-------------------------- +[Palace Guard Cap(1)] +A hat worn by an elite group of guards who will fight fearlessly even in a hail of bullets. +Decreases damage taken from Neutral elemental attacks by 5%. +Decreases damage taken from Ranged Physical Damage by 5%. +For each Refine Level above +6: +Decreases damage taken from Ranged Physical Damage and Neutral elemental attacks by 1%. +Indestructible in battle +Type: Headgear Defense: 15 +Position: Upper Weight: 100 +Level Requirement: 50 +Job: All Jobs +-------------------------- +Weight: 1 +# +23844# +A Combination Scroll that explains how to craft a Thief Bandana. +-------------------------- +[Required Materials] +200x Loki's Whispers +20x Zelunium +-------------------------- +[Thief Bandana(1)] +A bandana that can be worn to disguise yourself one of the common folk. +MDEF +5 +Each time a Demihuman monster killed by physical attack, restores SP by 5. +Each time a monster killed by melee physical attack, restores HP by 100. +Refine Level +5: +Decreases damage taken from Demihuman monster (except player) by 5%. +Refine Level +7: +Decreases damage taken from Demihuman monster (except player) by 5%. +Type: Headgear Defense: 5 +Position: Upper Weight: 30 +Level Requirement: 20 +Job: All Jobs +-------------------------- +Weight: 1 +# +23845# +A Combination Scroll that explains how to craft a Fallen Angel Blessing. +-------------------------- +[Required Materials] +150x Pocket Watch +20x Zelunium +-------------------------- +[Fallen Angel Blessing(1)] +Wings of Angel whose banished from heaven. +Increases Physical Damage against enemies of Angel monsters by 5%. +Decreases damage taken from Angel monsters by 5%. +Type: Headgear Defense: 1 +Position: Middle Weight: 20 +Level Requirement: 10 +Job: All Jobs +-------------------------- +Weight: 1 +# +23846# +A Combination Scroll that explains how to craft a Rabbit Magic Hat. +-------------------------- +[Required Materials] +150x Mask of Tutankhamen +20x Zelunium +-------------------------- +[Rabbit Magic Hat(1)] +A hat of renown magician. By wearing this, will makes wearer able to do some magic tricks. +DEX +1, AGI +1, MDEF +1. +Increases Attack Speed (Decreases After Attack Delay by 5%). +Decreases After Skill Delay by 4%. +Type: Headgear Defense: 4 +Position: Upper Weight: 80 +Job: All Jobs +-------------------------- +Weight: 1 +# +23847# +A Combination Scroll that explains how to craft a Anubis Helm. +-------------------------- +[Required Materials] +150x Broken Pharaoh Emblem +20x Zelunium +-------------------------- +[Anubis Helm(1)] +A headdress that resemble the god of darkness, Anubis. +MDEF +5 +Decreases damage taken from Boss monsters by 10%. +Increases recovery amount gained from Healing skills and Restorative items by 10%. +Refining is impossible. +Type: Headgear Defense: 8 +Position: Upper, Middle Weight: 0 +Level Requirement: 65 +Job: All Jobs +-------------------------- +Weight: 1 +# +23848# +A Combination Scroll that explains how to craft a Imp Hat. +-------------------------- +[Required Materials] +150x Dark Red Scale Piece +20x Zelunium +-------------------------- +[Imp Hat(1)] +A hat that mimic Imp, the mascot of Thor Volcano Dungeon. +Random chance to enchant equipped weapon with Fire elemental for 60 sec when dealing physical damage. +Random chance to increase Fire elemental magic damage by 10% for 60 sec when dealing magical damage. +Refine Level +7: +Increases the chance of increasing Fire elemental magic damage. +Refine Level +9: +Random chance to auto-cast Level 1 Pulse Strike when receiving physical damage. +Type: Headgear Defense: 1 +Position: Upper Weight: 40 +Job: All Jobs +-------------------------- +Weight: 1 +# +23849# +A Combination Scroll that explains how to craft a Red Marching Hat. +-------------------------- +[Required Materials] +150x Fire Dragon Scale +20x Zelunium +-------------------------- +[Red Marching Hat(1)] +A marching hat with holy angel wings affixed to the sides made famous by a righteous Rune Midgardian band. +INT +1, MDEF +5, MATK +2%. +Refine Level +7: +Increases Healing skills by 5%. +Refine Level +9: +MATK +5% +Type: Headgear Defense: 5 +Position: Upper Weight: 20 +Job: All Jobs +-------------------------- +Weight: 1 +# +23850# +A Combination Scroll that explains how to craft a Mask of Ifrit. +-------------------------- +[Required Materials] +150x Knot Letter +20x Zelunium +-------------------------- +[Mask of Ifrit(1)] +A mask of Ifrit, the spiritual owner of fire. +STR+ 2, INT +2, MDEF +5. +Random chance to auto-cast Level 3 Meteor Storm when dealing physical damage. +Increases Physical Damage against enemies of Earth elemental monsters by 10%., Increases Fire elemental magic damage by 10%. +Decreases damage taken from Fire elemental attacks by 10%. Increases damage taken from Water elemental attacks by 10%. +Type: Headgear Defense: 12 +Position: Lower Weight: 80 +Level Requirement: 50 +Job: All Jobs except Novice +-------------------------- +Weight: 1 +# +23851# +A Combination Scroll that explains how to craft a Drooping Incarnation of Morocc. +-------------------------- +[Required Materials] +30x Osiris Doll +20x Zelunium +-------------------------- +[Drooping Incarnation of Morocc(1)] +An unusually cute doll of the usually hideous Incarnation of Morocc monster. +When killing enemy with Physical or Magical Damages, restores SP by 2. +Random chance to inflict Level 2 Critical Wound on attacker when receiving physical damage. +Refining is impossible. +Type: Headgear Defense: 0 +Position: Upper Weight: 30 +Level Requirement: 70 +Job: All Jobs +-------------------------- +Weight: 1 +# +23852# +A Combination Scroll that explains how to craft a Samambaia. +-------------------------- +[Required Materials] +150x Orc Lord's Token +20x Zelunium +-------------------------- +[Samambaia(1)] +A circlet made of samambaia leaf. +ATK +2% +MATK +2% +Increases Healing skills by 2%. +ASPD +1, Reduces Fixed Casting Time of all skills by 10%. +(Fixed Casting Time decrease only applies to the largest effect.) +Type: Headgear Defense: 5 +Position: Upper, Middle Weight: 20 +Job: All Jobs +-------------------------- +Weight: 1 +# +23853# +A Combination Scroll that explains how to craft a Chick Hat. +-------------------------- +[Required Materials] +150x Young Twig +20x Zelunium +-------------------------- +[Chick Hat] +A hat adorned with a cute chick that brings feelings of joy to those that see it hopping. +Decreases damage taken from Demihuman and Brute monsters by 3% +Enables Level 2 Double Attack. +MaxHP, MaxSP +50, Luk +2. +Type: Headgear Defense: 2 +Position: Upper Weight: 10 +Level Requirement: 10 +Job: All Jobs +-------------------------- +Weight: 1 +# +23854# +A Combination Scroll that explains how to craft a Class Shadow Equipment. +When used in combination, you can obtain one of the Shadow Equipments for each class. +-------------------------- +[Required Materials] +50x Fire Dragon Scale +20x Shadowdecon +-------------------------- +Weight: 1 +# +23855# +A Combination Scroll that explains how to craft a Spell Shadow Equipment. +You can get 1 Spell Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +50x Piece of Queen's Wing +20x Shadowdecon +-------------------------- +[Obtainable Items] +Spellflow Shadow Armor, Spellflow Shadow Shoes, Spellflow Shadow Shield, Caster Shadow Weapon, Caster Shadow Pendant, Caster Shadow Earring, Caster Shadow Armor, Caster Shadow Shoes, Caster Shadow Shield +-------------------------- +Weight: 1 +# +23856# +A Combination Scroll that explains how to craft a Size Shadow Equipment. +You can get 1 Size Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +50x Tiger's Footskin +20x Shadowdecon +-------------------------- +[Obtainable Items] +Large Shadow Armor, Medium Shadow Armor, Small Shadow Armor, Large Shadow Weapon, Medium Shadow Weapon, Small Shadow Weapon, Titan Shadow Pendant, Titan Shadow Earring, Bound Shadow Pendant, Bound Shadow Earring, Gigantic Shadow Pendant, Gigantic Shadow Earring +-------------------------- +Weight: 1 +# +23857# +A Combination Scroll that explains how to craft a Race Shadow Equipment. +You can get 1 Race Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +50x Broken Shield Piece +20x Shadowdecon +-------------------------- +[Obtainable Items] +Homers Shadow Shield, Gargantua Shadow Shield, Safeguard Shadow Shield, Brutal Shadow Shield, Cranial Shadow Shield, Dragoon Shadow Shield, Satanic Shadow Shield, Frame Guard Shadow Shield, Requiem Shadow Shield, Cadi Shadow Shield, Dragoon Shadow Shoes, Chemical Shadow Shoes, Seraphim Shadow Shoes, Beholder Shadow Shoes, Divine Shadow Shoes, Bloody Shadow Shoes, Liberation Shadow Shoes, Clamorous Shadow Shoes, Insecticide Shadow Shoes, Fisher Shadow Shoes +-------------------------- +Weight: 1 +# +23858# +A Combination Scroll that explains how to craft a Stability Shadow Equipment. +You can obtain 1 Stability Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +50x Will of Red Darkness +20x Shadowdecon +-------------------------- +[Obtainable Items] +Stability Shadow Shield, Harrods Plaster Shadow Armor, Harrods Plaster Shadow Shoes, Insomnia Shadow Armor, Insomnia Shadow Shoes, Peerless Shadow Armor, Peerless Shadow Shoes, Andre Shadow Armor, Andre Shadow Shoes, Unfreezing Shadow Weapon, Unfreezing Shadow Earring, Unfreezing Shadow Pendant, Neutral Shadow Weapon, Neutral Shadow Earring, Neutral Shadow Pendant, Frozen Curse Shadow Earring, Frozen Curse Shadow Pendant, Vitality Shadow Earring, Vitality Shadow Pendant +-------------------------- +Weight: 1 +# +23859# +A Combination Scroll that explains how to craft a Special Shadow Equipment. +You can obtain 1 Special Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +50x Orc Hero's Token +20x Shadowdecon +-------------------------- +[Obtainable Items] +Kingbird Shadow Weapon, Critical Hit Shadow Weapon, Healing Shadow Weapon, Ancient Shadow Armor, Critical Shadow Armor, Immune Shadow Armor, Hard Shadow Armor, Hard Shadow Earring, Athena Shadow Shield, Spiritual Shadow Pendant, Spiritual Shadow Earring, Spiritual Shadow Weapon, Athena Shadow Earring, Resist Spell Power Shadow Pendant, Immortal Shadow Pendant, Immortal Shadow Armor, Solid Shadow Weapon, Solid Shadow Earring, Rapid Shadow Pendant, Wise Shadow Earring, Breeze Shadow Armor, Champion Shadow Shoes, Malicious Shadow Armor, Malicious Shadow Shoes, Malicious Shadow Shield +-------------------------- +Weight: 1 +# +23860# +A Combination Scroll that explains how to craft a Physical Shadow Equipment. +You can get 1 Physical Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +50x Orc Lord's Token +20x Shadowdecon +-------------------------- +[Obtainable Items] +Physical Shadow Earring, Physical Shadow Weapon, Physical Shadow Pendant +-------------------------- +Weight: 1 +# +23861# +A Combination Scroll that explains how to craft a Magical Shadow Equipment. +You can get 1 Magical Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +50x Mother's Nightmare +20x Shadowdecon +-------------------------- +[Obtainable Items] +Magical Shadow Earring, Magical Shadow Weapon, Magical Shadow Pendant +-------------------------- +Weight: 1 +# +23862# +A Combination Scroll that explains how to craft a EXP Shadow Equipment. +You can get 1 EXP Shadow item when combining using Material. +-------------------------- +[Required Materials] +50x Broken Horn +20x Shadowdecon +-------------------------- +[Obtainable Items] +Beginner Shadow Shoes, Beginner Shadow Shield, Rookie Shadow Shoes, Rookie Shadow Shield, Advanced Shadow Shoes, Advanced Shadow Shield, Expert Shadow Shield, Expert Shadow Shoes +-------------------------- +Weight: 1 +# +23863# +A Combination Scroll that explains how to craft a Mad Bunny. +You can obtain 1 kind of Mad Bunny Equipment when combining the required materials. +-------------------------- +[Required Materials] +30x Osiris Doll +25x Zelunium +-------------------------- +[Obtainable Items] +Cursed Mad Bunny, Mad Bunny +-------------------------- +Weight: 1 +# +23864# +A Combination Scroll that explains how to craft a Archangel's Wings. +-------------------------- +[Required Materials] +150x Valhala's Flower +25x Zelunium +-------------------------- +[Archangel's Wings(1)] +White wings of a holy Archangel. +Type: Garment Defense: 18 +Weight: 20 +Job: All Jobs +-------------------------- +Weight: 1 +# +23865# +A Combination Scroll that explains how to craft a Smokey's Transformation Leaf. +-------------------------- +[Required Materials] +150x Dark Red Scale Piece +25x Zelunium +-------------------------- +[Smokey's Transformation Leaf(1)] +Smokey uses the leaves of transformation. +I feel the energy of Smokey. +Increases all property magic damage by 1% per Refine rate. +Has a chance to transform into Smokie for 5 seconds when dealing melee physiical damage. +Grants following effects while in Smokie form: +Has 5% chance to auto-cast bolt spells lv.2 when dealing Melee Physical Damage. +Refine Level +7: +4% chance to auto-cast Frost Nova lv.5 when dealing Melee Physical Damage. +Refine Level +8: +3% chance to auto-cast Thunderstorm lv.5 when dealing Melee Physical Damage. +Refine Level +9 and Base Level 100: +2% chance to auto-cast Hell Inferno lv.5 when dealing Melee Physical Damage. +Refine Level +9 and Base Level 100: +1% chance to auto-cast Chain Lightning lv.3 when dealing Melee Physical Damage. +Type: Headgear Defense: 7 +Position: Upper Weight: 60 +Job: All Jobs +-------------------------- +Weight: 1 +# +23866# +A Combination Scroll that explains how to craft Ears of Ifrit. +-------------------------- +[Required Materials] +150x Will of Red Darkness +25x Zelunium +-------------------------- +[Ears of Ifrit] +A headgear which imitates ears of Ifrit, the spiritual owner of fire. +STR +1, INT +1, MDEF +3. +Increases Fire elemental magic damage by 3%. +Increases damage of Bash and Magnum Break by 4%. +Decreases damage taken from Fire elemental attacks by 3%, Increases damage taken from Water elemental attacks by 3%. +Type: Headgear Defense: 0 +Position: Middle Weight: 30 +Level Requirement: 50 +Job: All Jobs except Novice +-------------------------- +Weight: 1 +# +23867# +A Combination Scroll that explains how to craft a Heart Wings Hairband. +-------------------------- +[Required Materials] +150x Mother's Nightmare +25x Zelunium +-------------------------- +[Heart Wings Hairband(1)] +A girlish hairband with wings and lace. +Decreases After Skill Delay by 5%. Increases SP Consumption by 10%. +For each 3 Refine Levels: +Decreases After Skill Delay by 3%. +Increases SP Consumption by 3%. +Type: Headgear Defense: 0 +Position: Upper Weight: 30 +Level Requirement: 50 +Job: All Jobs +-------------------------- +Weight: 1 +# +23868# +A Combination Scroll that explains how to craft Sigrun's Wings. +-------------------------- +[Required Materials] +150x Ice Scale +25x Zelunium +-------------------------- +[Sigrun's Wings] +Ear adornments that symbolize rebirth. They have the ability to change its effects depending on the job of the wearer. +When equipped by Swordman, Merchant, Thief or Taekwon: ASPD +1 +When equipped by Magician, Acolyte, Ninja or Soul Linker: +MATK +5, Increases Healing skills by 2%. +When equipped by Archer or Gunslinger: Increases Ranged Physical Damage by 2%. +When equipped by Novice: MaxHP +120, MaxSP +60 +Refining is impossible. +Type: Headgear Defense: 2 +Position: Middle Weight: 10 +Job: All Jobs +-------------------------- +Weight: 1 +# +23869# +A Combination Scroll that explains how to craft a Cat Headdress. +-------------------------- +[Required Materials] +150x Broken Crown +25x Zelunium +-------------------------- +[Cat Headdress(1)] +Pretty baby in a head dress decorated with a cat doll. +It's even more cute with lace. +All Stats +1, Increases Attack Delay by 5%. +Refine Level +9: +Decreases Variable Casting Time by 10%. +Refine Level +12: +Protects from skill cast interruption. +Type: Headgear Defense: 20 +Position: Upper Weight: 10 +Job: All Jobs +-------------------------- +Weight: 1 +# +23870# +A Combination Scroll that explains how to craft a Noble Mask. +-------------------------- +[Required Materials] +150x Will of Red Darkness +25x Zelunium +-------------------------- +[Noble Mask] +A silver mask worn by nobles. +Increases damage of Sacrifice by (Base Level*2)% +Decreases Variable Casting Time of Devotion by 2 seconds. +Decreases Variable Casting Time of Pressure by 2 seconds. +MaxHP +1%, Reduces After Attack Delay by 1%. +Base Level at least 100: MaxHP +1%, Reduces After Attack Delay by 1%. +Base Level at least 150: MaxHP +1% Reduces After Attack Delay by 1%. +Type: Headgear Defense: 0 +Position: Middle Weight: 20 +Level Requirement: 30 +Job: All Jobs +-------------------------- +Weight: 1 +# +23871# +Gemstone Shadow Equipment. +You can get 1 Gemstone Shadow item when combined using materials. +-------------------------- +[Required Materials] +50x Young Twig +25x Shadowdecon +-------------------------- +[Obtainable Items] +Gemstone Shadow Armor, Gemstone Shadow Shield, Gemstone Shadow Weapon, Gemstone Shadow Shoes, Gemstone Shadow Earring, Gemstone Shadow Pendant +-------------------------- +Weight: 1 +# +23872# +Bearer's Shadow Equipment. +You can get 1 Bearer's Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +50x Tiger's Footskin +25x Shadowdecon +-------------------------- +[Obtainable Items] +Bearer's Shadow Armor, Bearer's Shadow Shield, Bearer's Shadow Weapon, Bearer's Shadow Shoes, Bearer's Shadow Earring, Bearer's Shadow Pendant +-------------------------- +Weight: 1 +# +23873# +Hasty Shadow Equipment. +You can get 1 Hasty Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +50x Will of Red Darkness +25x Shadowdecon +-------------------------- +[Obtainable Items] +Hasty Shadow Armor, Hasty Shadow Shoes +-------------------------- +Weight: 1 +# +23874# +Critical Shadow Equipment. +When used in combination with the material, you can obtain one critical shadow item. +-------------------------- +[Required Materials] +10x Shining Spear Edge +25x Shadowdecon +-------------------------- +[Obtainable Items] +Critical Shadow Armor, Critical Shadow Shoes, Critical Shadow Shield +-------------------------- +Weight: 1 +# +23875# +Mortal Blow Shadow Equipment. +You can obtain 1 Mortal Blow Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +50x Fang of Hatii +25x Shadowdecon +-------------------------- +[Obtainable Items] +Mortal Blow Shadow Earring, Mortal Blow Shadow Pendant, Mortal Blow Shadow Weapon +-------------------------- +Weight: 1 +# +23876# +A Combination Scroll that explains how to craft Fallen Angel Wings. +-------------------------- +[Required Materials] +300x Valhala's Flower +30x Zelunium +-------------------------- +[Fallen Angel Wings(1)] +A large black wings of fallen angel. +All Stats +1 +For each 20 base STR: ATK +1 +For each 20 base INT: MATK +1 +For each 20 base VIT: Neutral elemental resistance +1%. +For each 20 base AGI: Reduces After Attack Delay by 1%. +For each 20 base DEX: Increases Ranged Physical Damage by 1. +For each 20 base LUK: Increases Critical Damage by 1%. +Type: Garment Defense: 18 +Weight: 20 +Job: All Jobs +-------------------------- +Weight: 1 +# +23877# +A Combination Scroll that explains how to craft a Adventurer's Backpack. +-------------------------- +[Required Materials] +150x Broken Crown +30x Zelunium +-------------------------- +[Adventurer's Backpack(1)] +A small backpack with essential items for adventure. +Enables the use of Level 1 Greed. +Base STR at least 90: +Refine Level +7: ATK +20 +Refine Level +9: ATK +10 +Base INT at least 90: +Refine Level +7: MATK +30 +Refine Level +9: MATK +20 +Base VIT at least 90: +Refine Level +7: Decreases damage taken from Neutral elemental attacks by 10%. +Refine Level +9: Decreases damage taken from Neutral elemental attacks by 5%. +Base AGI at least 90: +Refine Level +7: Reduces After Attack Delay by 8%. +Refine Level +9: ASPD +1 +Base DEX at least 90: +Refine Level +7: Increases Ranged Physical Damage by 5%. +Refine Level +9: Increases Ranged Physical Damage by 5%. +Base LUK at least 90: +Refine Level +7: Increases Critical Damage by 10%. +Refine Level +9: Increases Critical Damage by 5%. +Type: Garment Defense: 20 +Weight: 20 +Job: All Jobs +-------------------------- +Weight: 1 +# +23878# +Star and Soul Scroll for limited time. +You can get one of several rare items, such as Safe to 11 Weapon Certificate, Safe to 11 Armor Certificate, One Sky One Sun, Spirit Pendulum, Meowmeow Foxtail, Star Emperor Shadow(Armor, Shoes), Soul Reaper Shadow(Armor, Shoes) and Doram Shadow(Armor, Shoes). +-------------------------- +Weight: 1 +# +23879# +A Combination Scroll that explains how to craft a Spell Circuit. +-------------------------- +[Required Materials] +150x Rosetta Stone Sculpture +30x Zelunium +-------------------------- +[Spell Circuit(1)] +The magic circle that imaged the property. +It feels like you can use a powerful magic just to wear it. +Matk +20 per 2 Refine rate. +Refine Level +7: +Decreases variable casting time by 10%. +Refine Level +9: +Increases neutral and shadow property magic damage by 10%. +Refine Level +11: +Increases water, wind, Earth and fire property magic damage by 10%. +Each Refine rate above 10 will Reduces fixed casting time by 0.1 second (up to 15). +When equipped with Mental Stick, Increases Psychic Wave damage by 5% every 2 Refine rate of Mental Stick. +When equipped with Kronos, Increases Hell Inferno damage by 10% every 2 Refine rate of Kronos. +When equipped with Mikatsuki or Raksasa Dagger: +Decreases variable casting time as percent equal to Refine rate of Mikatsuki or Raksasa Dagger. +Every 2 Refine rate of Mikatsuki or Raksasa Dagger Increases Flaming Petals, Freezing Spear and Wind Blade damage by 5%. +Type: Headgear Defense: 0 +Position: Upper Weight: 10 +Job: All Jobs +-------------------------- +Weight: 1 +# +23880# +A Combination Scroll that explains how to craft New Wave Sunglasses. +-------------------------- +[Required Materials] +200x Loki's Whispers +30x Zelunium +-------------------------- +[New Wave Sunglasses] +A sunglasses that give futuristic feeling. +Decreases After Skill Delay by 10%. +Type: Headgear Defense: 0 +Position: Middle Weight: 10 +Level Requirement: 30 +Job: All Jobs +-------------------------- +Weight: 1 +# +23881# +A Combination Scroll that explains how to craft a Gigant Snake's Breath. +-------------------------- +[Required Materials] +150x Broken Horn +30x Zelunium +-------------------------- +[Gigant Snake's Breath] +A model depicting the fire that the giant snake is emitting +Just wearing it makes me feel like a giant snake. +Increases Fire Magic Damage by 1%. +When equipped with Giant Faceworm Snake Skin/Giant Faceworm Snake Skin[1]: +For each 20 base STR: +ATK +5 +For each 20 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 3%). +For each 20 base VIT: +Neutral elemental resistance +1%. +For each 20 base INT: +Decreased Variable Casting Time by 4%. +For each 20 base DEX: +Increases Ranged Physical Damage by 1%. +For each 20 base LUK: +Increases Critical Damage by 3%. +Type: Headgear Defense: 2 +Position: Lower Weight: 30 +Job: All Jobs +-------------------------- +Weight: 1 +# +23882# +A Combination Scroll that explains how to craft a Judge Hat. +-------------------------- +[Required Materials] +150x Taeguk Plate +30x Zelunium +-------------------------- +[Judge Hat(1)] +Hat of famous judge. +Decreases Variable Casting Time by 6%. Reduces After Attack Delay by 6%. +Refine Level +7: +Decreases damage taken from Demihuman monsters by 2%. +MDEF +2. +[Swordman,Merchant,Thief,Monk,Taekwon] For each 2 Refine Levels: ATK +1% +[Magician,Acolyte,Soul Linker,Ninja] For each 2 Refine Levels: MATK +1% +[Archer,Gunslinger] Every 1 Refine Levels: Ranged Physical Damage +1% +When VIP status active: +All Stats +1, Decreases damage taken from Demihuman monsters by 10%. +Type: Headgear Defense: 2 +Position: Upper Weight: 30 +Job: All Jobs +-------------------------- +Weight: 1 +# +23883# +A Combination Scroll that explains how to craft a Dog Officer. +-------------------------- +[Required Materials] +150x Fang of Hatii +30x Zelunium +-------------------------- +[Dog Officer(1)] +A cap with a cozy puppy ear in a stylish officer hat. +Atk +15 per 2 Refine rate. +Refine Level +7: +ATK +30 +Refine Level +9: +ATK +5%, ASPD +1. +Refine Level +11: +Adds an additional Ranged Physical Damage by 3% and critical damage by 3%. +Each Refine rate above 10 will Reduces fixed casting time by 0.1 second (up to 15). +When equipped with: +Thanos Katar: Atk +20 per 2 Refine rate of the weapon. +Dark Rose: Increases Fire Dance damage by 6% per 2 Refine rate of the weapon. +Tornado Axe: Increases Axe Tornado damage by 15% per 2 Refine rate of the weapon. +Type: Headgear Defense: 35 +Position: Upper Weight: 40 +Job: All Jobs +-------------------------- +Weight: 1 +# +23884# +A Combination Scroll that explains how to craft a Classical Feather Hat. +-------------------------- +[Required Materials] +150x Gemstone +30x Zelunium +-------------------------- +[Classical Feather Hat(1)] +A small hat with a very impressive leather material. +Chic coloring fills the mature. +Atk +15 per 2 Refine rate.. +Refine Level +7: +Increases Ranged Physical Damage by 7%. +Refine Level +9: +ATK +5%, ASPD +1. +Refine Level +11: +Adds an additional Ranged Physical Damage by 5%. +Each Refine rate above 10 will Reduces fixed casting time by 0.1 second (up to 15). +When equipped with: +Nidhoggur's Shadow Garb[1]: Increases Arrow Storm damage by 12% per 2 Refine rate of the garment. +Leather of Tendrilion[1]: Increases Severe Rainstorm damage by 7% per 2 Refine rate of the garment. +Ancient Cape[1]: Increases Triangle Shot damage by 15% per 2 Refine rate of the garment. +Type: Headgear Defense: 0 +Position: Upper Weight: 0 +Job: All Jobs +-------------------------- +Weight: 1 +# +23885# +A Combination Scroll that explains how to craft a Amistr Beret. +-------------------------- +[Required Materials] +150x Young Twig +30x Zelunium +-------------------------- +[Amistr Beret(1)] +A beret made from the ear of Amistra. +For each 2 Refine Levels: +Atk +10 +Matk +10 +Refine Level +7: +Decreases variable casting time by 10%. +Refine Level +9: +Increases neutral and holy property magic damage by 10%. +Refine Level +11: +MATK +3%, ATK +5% +For each Refine Level above +10: +Decreases fixed casting time by 0.1 second (up to +15). +When equipped with Holy Stick: +Matk +10 +-------------------------- +For each 2 Refine Level of Holy Stick: +Increases Adoramus damage by 30%. +When equipped with Wondrous Foxtail Staff: +For each 2 Refine Level of Wondrous Foxtail Staff: +Increases neutral property magic damage by 5%. +When equipped with Twin Edge of Naght Sieger [Blue]: +For each 2 Refine Level of Twin Edge of Naght Sieger [Blue]: +Increases Cart Cannon damage by 10%. +Type: Headgear Defense: 15 +Position: Upper Weight: 20 +Job: All Jobs +-------------------------- +Weight: 1 +# +23886# +A Combination Scroll that explains how to craft a General's Helm. +-------------------------- +[Required Materials] +150x Broken Shield Piece +30x Zelunium +-------------------------- +[General's Helm(1)] +A helmet said to be used by a brave general. +For each 2 Refine Levels: +ATK +15. +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Refine Level +9: +ATK +5% +ASPD +1 +Refine Level +11: +Increases Critical Damage by 15%. +For each Refine Level above +10: +Decreases fixed casting time by 0.1 second (up to +15). +When equipped with Gungnir or Gungnir[2]: +For each 2 Refine Level of Gungnir: +Increases Banishing Point damage by 7%. +When equipped with Zweihander or Zweihander[2] +For each 2 Refine Level of Zweihander: +ATK +20 +When equipped with Quadrille or Quadrille[2]: +For each 2 Refine Level of Quadrille: +Increases Tiger Cannon damage by 7%. +Type: Headgear Defense: 12 +Position: Upper Weight: 80 +Job: All Jobs +-------------------------- +Weight: 1 +# +23887# +A Combination Scroll that explains how to craft a Cursed Knight's Shield. +-------------------------- +[Required Materials] +50x Shining Spear Edge +30x Zelunium +-------------------------- +[Cursed Knight's Shield(1)] +A knight's shield that was carried by Cursed Knight. +If you clean the curse, you can obtain more power from it. +ATK +3% +MATK +3% +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases damage taken from all elemental monsters by 7%. +Random chance to restore 25 SP per second for 5 seconds when receiving physical damage. +Random chance to restore 150 HP per second for 5 seconds when dealing physical or magical attack. +Refine Level +7: +ATK +10 +MATK +10 +-------------------------- +Refine Level +9: +ASPD +1 +-------------------------- +Refine Level +12: +Decreases After Skill Delay by 3%. +Type: Shield Defense: 0 +Weight: 80 +Job: All Jobs +-------------------------- +Weight: 1 +# +23888# +A Combination Scroll that explains how to craft Penetration Shadow Equipment. +You can get 1 Penetration Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +50x Skeletal Armor Piece +30x Shadowdecon +-------------------------- +[Obtainable Items] +Penetration Shadow Shoes, Penetration Shadow Shield, Executioner Holy Water Shadow Armor, Corrupted Exorcist Shadow Armor, Vibration Dragon Killer Shadow Armor, Scissor Hunting Shadow Armor, Fishing Insect Net Shadow Armor, Penetration Shadow Earring, Penetration Shadow Pendant, Executioner Shadow Weapon, Exorcist Shadow Weapon, Hunting Shadow Weapon, Insect Shadow Weapon, Fishing Shadow Weapon, Dragon Killer Shadow Weapon, Angelus Shadow Weapon, Formless Shadow Weapon, Holy Water Shadow Weapon, Plant Shadow Weapon +-------------------------- +Weight: 1 +# +23889# +A Combination Scroll that explains how to craft Tempest Shadow Equipment. +You can get 1 Tempest Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +50x Knot Letter +30x Shadowdecon +-------------------------- +[Obtainable Items] +Tempest Shadow Shoes, Tempest Shadow Shield, Magic Executioner Holy Water Shadow Armor, Magic Corrupted Exorcist Shadow Armor, Magic Vibration Dragon Killer Shadow Armor, Magic Scissor Hunting Shadow Armor, Magic Fishing Insect Net Shadow Armor, Tempest Shadow Earring, Tempest Shadow Pendant, Magic Executioner Shadow Weapon, Magic Exorcist Shadow Weapon, Magic Hunting Shadow Weapon, Magic Insect Shadow Weapon, Magic Fishing Shadow Weapon, Magic Dragon Killer Shadow Weapon, Magic Angelus Shadow Weapon, Magic Formless Shadow Weapon, Magic Holy Water Shadow Weapon, Magic Plant Shadow Weapon +-------------------------- +Weight: 1 +# +23890# +A Combination Scroll that explains how to craft Blitz Shadow Equipment. +You can get 1 Blitz Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +50x Taeguk Plate +30x Shadowdecon +-------------------------- +[Obtainable Items] +Blitz Shadow Armor, Blitz Shadow Weapon, Blitz Shadow Shield, Blitz Shadow Shoes, Blitz Shadow Pendant, Blitz Shadow Earring +-------------------------- +Weight: 1 +# +23891# +A Combination Scroll that explains how to craft Reload Shadow Equipment. +You can get 1 Reload Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +50x Loki's Whispers +30x Shadowdecon +-------------------------- +[Obtainable Items] +Reload Shadow Armor, Reload Shadow Shoes, Reload Shadow Shield +-------------------------- +Weight: 1 +# +23892# +A Combination Scroll that explains how to craft Force&Spirit Shadow Equipment. +You can obtain 1 Force & Spirit Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +150x Pocket Watch +25x Shadowdecon +-------------------------- +[Obtainable Items] +Force Shadow Weapon, Force Shadow Earring, Force Shadow Pendant, Enhanced Force Shadow Weapon, Spirit Shadow Weapon, Spirit Shadow Earring, Spirit Shadow Pendant, Enhanced Spirit Shadow Weapon +-------------------------- +Weight: 1 +# +23893# +A Combination Scroll that explains how to craft Infinity Shadow Equipment. +You can get 1 Infinity Shadow Equipment when combining the required materials. +-------------------------- +[Required Materials] +150x Gemstone +25x Shadowdecon +-------------------------- +[Obtainable Items] +Infinity Shadow Pendant, Infinity Shadow Earring +-------------------------- +Weight: 1 +# +23894# +A Combination Scroll that explains how to craft Wickebine's Black Cat Ears. +-------------------------- +[Required Materials] +150x Piece of Queen's Wing +20x Zelunium +-------------------------- +[Wickebine's Black Cat Ears] +Wickebine's Black Cat Ears. +FLEE +10 +Increases Critical Damage by 10%. +Random chance to pierce magical defense of target for 5 sec when dealing magical damage. +Type: Headgear Defense: 4 +Position: Upper Weight: 20 +Level Requirement: 45 +Job: All Jobs +-------------------------- +Weight: 1 +# +23896# +We apologize for the restrictions on the access of iPIN subscribers, and we will deliver it as a thank you for re-authentication. +-------------------------- + - 1x Premium Service Box(7 Days) + - 10x World Tour Ticket + - 1x Greater Battle Manual + - 2x [Event] Bubble Gum +-------------------------- +Weight: 0 +# +23897# +\ +. +A golden box with the words inscripted on the floor. +-------------------------- +10x [Event] Almighty, 20x [Event] Small Life Potion, 20x [Event] Medium Life Potion, 10x [Event] Power Booster, 10x [Event] Small Mana Potion and 20x World Tour Ticket. +-------------------------- +Weight: 0 +# +23898# +A booster that boosts power significantly by activating energy in the body. +-------------------------- +ATK and MATK +30, ATK and MATK +1% for 30 minutes. +HIT and FLEE +30, ASPD +1, Decreases SP Consumption by 5%. +Decreases Fixed Casting Time by 30%. +(Only the highest effect of increase/decrease percentage effect is applied to Fixed Casting Time.) +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +# +23899# +The ultimate dish that condenses all the foods that are said to be good for you. +-------------------------- +All Stats +10, ATK +30, MATK +30 for 30 minutes. +-------------------------- +If the character KO'ed in battle, this effect will not disappear!. +-------------------------- +Weight: 1 +# +23900# +A box containing 1 of each Temporal Transcendence (Ring, Boots, Manteau, Robe) and Temporal Transcendent Shadow (Armor, Shield, Shoes, Earring, Pendant). +-------------------------- +Weight: 0 +# +23901# +An essential box for quick level-up. +-------------------------- +Contains 2 [Event] Battle Manual & Bubble Gum, 2 [Event] JOB Battle Manual, 30 [Event] Small Life Potion and 30 [Event] Medium Life Potion. +If you open it now, you also can get 10 World Tour Tickets and one Level-Up Box(120)! +-------------------------- +Requirement: +Base Level 110 +-------------------------- +Weight: 0 +# +23905# +March Festival Egg Reward Box +(Not visible to real users) +-------------------------- +Weight: 0 +# +23906# +April Spring Flower Festival Reward Box +(Not visible to real users) +-------------------------- +Weight: 0 +# +23907# +May 2021 Melon Festival Reward Box +Contains various items needed for adventurers. +# +23913# +A box containing Enchant Stones that can be enchanted in Costume Equipment for each area. +Only stones that grant additional stats to each class are selected and included in the component. +-------------------------- +Weight: 1 +# +23914# +Lucky Box for this server. +-------------------------- +Weight: 1 +# +23919# +A key to unlock Kachua's Secret Box. +Various treasures are included! +-------------------------- +The contents in the Secret Box are changed every month, so please check and use: +Kachua's Secret Boxhttp://ro.gnjoy.com/news/probability/list.asp?category=5,1024,768 +-------------------------- +Weight: 0 +# +23921# +Rewards offered by participating in the event +-------------------------- +Weight: 0 +# +23922# +A box containing 1 of these items: Candy Pouch Box(Physical), Candy Pouch Box(Ranged) or Candy Pouch Box(Magic). +-------------------------- +Weight: 1 +# +23923# +A box containing 1 Poring Sunglasses. +-------------------------- +You can get 1 Poring Sunglasses+ with a low chance. +-------------------------- +Weight: 1 +# +23924# +A box containing either 1 Sigrun Shadow Shield or Sigrun Shadow Armor. +-------------------------- +Weight: 1 +# +23925# +A box containing 1 Mad Bunny or Cursed Mad Bunny. +-------------------------- +Weight: 1 +# +23926# +Refine Shadow Equipment to +9 without condition. +It does not fail! +-------------------------- +Weight: 1 +# +23949# +A box given to adventurers who leveled up in the 2018 jumping characters to Level 170. +All of the items below are included. +-------------------------- +Costume Enchant Stone Box 13 +Costume Enchant Stone Box 14 +Costume Enchant Stone Box 15 +Costume Enchant Stone Box 16 +-------------------------- +Weight: 20 +# +23952# +A box containing 1 Silit Pong. +Caution! - When opening the box, it is impossible to trade with other accounts. +-------------------------- +Weight: 1 +# +23962# +Malangdo special products and cans are packaged for easy storage. Oddly enough, it is said that when a person eats, energy overflow. +-------------------------- +Increases Experience gained from monsters by 20% for 30 minues. (Can be stacked with other experience-increasing items and only applies when hunting monsters.) +Increases Item drop rate by 20% for 30 minutes. +-------------------------- +Weight: 5 +# +23967# +A thump box that exchanges Costumes for a random Costume Enchant Stone Boxes. +You can get 20 kinds of costumes you can buy in September. You can get one of the following Enchant Stone Boxes. +-------------------------- +Costume Enchant Stone Box 13 +Costume Enchant Stone Box 14 +Costume Enchant Stone Box 15 +Costume Enchant Stone Box 16 +-------------------------- +You can exchange the following Costumes: +-------------------------- +Costume Chain Puppet +Costume Dropping Argiope +Costume Baby Pinguin +Costume Sorcerer Hood +Costume Fluffy Heart Earmuffs +Costume Floating Ice +Costume Ghost Holiday +Costume Blessing Sky Lantern +Costume Celestial Circle +Costume Elephangel +Costume Flying Drone +Costume Bouquet Hat +Costume Poring Muffler +Costume Happy Rabbit Ribbon +Costume Sepia Cap +Costume Birdcage of Paradise +Costume Monk Crown +Costume White Rabbit Ears +Costume Autumn Headband +Costume Hopping Rabbit +-------------------------- +Weight: 1 +# +23981# +Orb with a Dragon's power raging wildly. +You can apply random options to the following items: +-------------------------- +[Enchantable Items] +Red Dragon Plate +Green Dragon Plate +Gold Dragon Plate +Purple Dragon Plate +Blue Dragon Plate +Silver Dragon Plate +-------------------------- +Weight: 1 +# +23985# +Chest of Dragon Treasures +You can get one of the items below: +-------------------------- +[Obtainable Items] +Swirling Dragon Power +Burning Dragon Power +Hot Dragon Power +Large Dragon Bone +Small Dragon Bone +Dragon Scale Boots +Dragon Scale Hood +Red Dragon Orb +Green Dragon Orb +Gold Dragon Orb +Purple Dragon Orb +Blue Dragon Orb +Silver Dragon Orb +Dragon Skin +Dragon Canine +Dragon Scale +Dragon Tail +-------------------------- +Weight: 10 +# +23986# +Chest of Treasures of the Temple of Odin +You can get one of the items below: +-------------------------- +[Obtainable Items] +Str Soutane +Agi Soutane +Vit Soutane +Dex Soutane +Int Soutane +Luk Soutane +Clergy's Boots +Clergy's Manteau +Angel's Dream +Rune of Darkness +Soft Feather +-------------------------- +Weight: 10 +# +23992# +Contains one of ready to use experimental weapon. +-------------------------- +Weight: 1 +# +23993# +Piled up Biological research data. +I wonder if any of these materials are useful. +-------------------------- +Weight: 1 +# +23994# +Contains materials from live experiments. +-------------------------- +Weight: 1 +# +24000# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +STR +1 +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24001# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +DEX +1 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24002# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +LUK +1 +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24003# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +AGI +1 +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24004# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +VIT +1 +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24005# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +INT +1 +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24006# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +STR +2 +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24007# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +DEX +2 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24008# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +LUK +2 +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24009# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +AGI +2 +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24010# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +VIT +2 +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24011# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +INT +2 +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24012# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +DEX +1 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24013# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +LUK +1 +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24014# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +AGI +1 +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24015# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +VIT +1 +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24016# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +INT +1 +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24017# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +STR +1 +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24018# +An earring worn to enhance physical attack. +-------------------------- +Max HP + 10 per upgrade level of the item. +-------------------------- +Aspd + 1% +-------------------------- +If upgrade level is +7 or higher: +Additional Aspd + 2% +-------------------------- +Set Bonus +Physical Shadow Earring +Physical Shadow Pendant +Physical Shadow Weapon +-------------------------- +Atk + 1 per upgrade level of Physical Shadow Earring, Physical Shadow Pendant, and Physical Shadow Weapon. +-------------------------- +If the combined upgrade levels of Physical Shadow Earring, Physical Shadow Pendant and Physical Shadow Weapon are +23 or higher, +Atk + 1% +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24019# +A glove worn to enhance physical attack. +-------------------------- +ATK +10 +-------------------------- +Per upgrade level of the item: +Additional Atk + 1 +-------------------------- +If upgrade level is +7 or higher: +ATK +1%. +-------------------------- +Set Bonus +Physical Shadow Earring +Physical Shadow Pendant +Physical Shadow Weapon +-------------------------- +Atk + 1 per upgrade level of Physical Shadow Earring, Physical Shadow Pendant, and Physical Shadow Weapon. +-------------------------- +If the combined upgrade levels of Physical Shadow Earring, Physical Shadow Pendant and Physical Shadow Weapon are +23 or higher, +Atk + 1% +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24020# +A pendant worn to enhance physical attack. +-------------------------- +MaxHP +100 +-------------------------- +Additional Max HP + 10 per upgrade level of the item. +-------------------------- +If upgrade level is +7 or higher: +MaxHP +1% +-------------------------- +Set Bonus +Physical Shadow Earring +Physical Shadow Pendant +Physical Shadow Weapon +-------------------------- +Atk + 1 per upgrade level of Physical Shadow Earring, Physical Shadow Pendant, and Physical Shadow Weapon. +-------------------------- +If the combined upgrade levels of Physical Shadow Earring, Physical Shadow Pendant and Physical Shadow Weapon are +23 or higher, +Atk + 1% +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24021# +An earring worn to enhance magical attack. +-------------------------- +Max HP + 10 per upgrade level of the item. +-------------------------- +Reduces the variable casting time of skills by 1%. +-------------------------- +If upgrade level is +7 or higher: +Reduces the variable casting time of skills by an additional 2%. +-------------------------- +Set Bonus: +Magical Shadow Earring +Magical Shadow Pendant +Magical Shadow Weapon +-------------------------- +Matk + 1 per upgrade level of Magical Shadow Earring, Magical Shadow Pendant, and Magical Shadow Weapon. +-------------------------- +If the combined upgrade levels +Magical Shadow Earring +Magical Shadow Pendant +Magical Shadow Weapon ++23 or higher: +MATK +1% +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24022# +A glove worn to enhance magical attack. +-------------------------- +Additional Matk + 1 per upgrade level of the item. +-------------------------- +MATK +10 +-------------------------- +If upgrade level is +7 or higher: +MATK +1% +-------------------------- +Set Bonus: +Magical Shadow Earring +Magical Shadow Pendant +Magical Shadow Weapon +-------------------------- +Matk + 1 per upgrade level of Magical Shadow Earring, Magical Shadow Pendant, and Magical Shadow Weapon. +-------------------------- +If the combined upgrade levels +Magical Shadow Earring +Magical Shadow Pendant +Magical Shadow Weapon ++23 or higher: +MATK +1% +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24023# +A pendant worn to enhance magical attack. +-------------------------- +Max HP + 10 per upgrade level of the item. +-------------------------- +MaxSP +50 +-------------------------- +If upgrade level is +7 or higher: +MaxSP +1% +-------------------------- +Set Bonus: +Magical Shadow Earring +Magical Shadow Pendant +Magical Shadow Weapon +-------------------------- +Matk + 1 per upgrade level of Magical Shadow Earring, Magical Shadow Pendant, and Magical Shadow Weapon. +-------------------------- +If the combined upgrade levels +Magical Shadow Earring +Magical Shadow Pendant +Magical Shadow Weapon ++23 or higher: +MATK +1% +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24024# +An armor worn to enhance dodging capabilities. +-------------------------- +Max HP + 10 per upgrade level of the item. +Flee + 5 +If upgrade level is +7 or higher, +Additional Flee + 10 +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24025# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxHP +20 +MaxSP +10 +-------------------------- +For each Refine Level: +HP +10 +-------------------------- +Refine Level +7: +MaxHP +1% +MaxSP +1% +-------------------------- +When equipped with Hard Shadow Armor: +For each Refine Level of entire set: +MaxHP and MaxSP +1 +-------------------------- +Total Refine Level of entire set at least +15: +MaxHP +1% +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24026# +A shield worn to enhance physical defense. +-------------------------- +Max HP + 10 per upgrade level of the item. +Def + 10 +If upgrade level is +7 or higher, +Additional Def + 10 +Set Bonus +Athena Shadow Shield +Immune Shadow Armor +Def + 1 per upgrade level of Athena Shadow Shield and Immune Shadow Armor. +If the combined upgrade levels of Athena Shadow Shield and Immune Shadow Armor are +15 or higher, +Reduces damage taken from Neutral property attacks by 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24027# +An armor worn to enhance physical defense. +-------------------------- +Max HP + 10 per upgrade level of the item. +Reduces damage taken from Neutral property attacks by 1%. +Set Bonus +Athena Shadow Shield +Immune Shadow Armor +Def + 1 per upgrade level of Athena Shadow Shield and Immune Shadow Armor. +If the combined upgrade levels of Athena Shadow Shield and Immune Shadow Armor are +15 or higher, +Reduces damage taken from Neutral property attacks by 1%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24028# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxHP +50 +-------------------------- +For each Refine Level: +HP +10 +-------------------------- +Refine Level +7: +MaxHP +1% +-------------------------- +When equipped with Champion's Shadow Shoes: +For each Refine Level of entire set: +MaxHP and MaxSP +1 +-------------------------- +Total Refine Level of entire set at least +15: +MaxHP +1% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24029# +An armor worn to enhance accuracy. +-------------------------- +Max HP + 10 per upgrade level of the item. +Hit + 10 +If upgrade level is +7 or higher, +Additional Hit + 10 +Set Bonus +Ancient Shadow Armor +Kingbird's Shadow Weapon +ATK + 1 per upgrade level of Ancient Shadow Armor and Kingbird's Shadow Weapon. +If the combined upgrade levels of Ancient Shadow Armor and Kingbird's Shadow Weapon are +15 or higher, +Increases long-ranged damage on targets by 1%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24030# +An armor worn to enhance critical attacks. +-------------------------- +Max HP + 10 per upgrade level of the item. +Crit + 5 +If upgrade level is +7 or higher, +Additional Crit + 5 +Set Bonus +Critical Shadow Armor +Critical Shadow Weapon +ATK + 1 per upgrade level of Critical Shadow Armor and Critical Shadow Weapon. +If the combined upgrade levels of Critical Shadow Armor and Critical Shadow Weapon are +15 or higher, +Increases critical damage on targets by 1%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24031# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK + 10 +Additional ATK + 1 per upgrade level of the item. +If upgrade level is +7 or higher, +Increases long-ranged damage on targets by 1%. +Set Bonus +Ancient Shadow Armor +Kingbird's Shadow Weapon +ATK + 1 per upgrade level of Ancient Shadow Armor and Kingbird's Shadow Weapon. +If the combined upgrade levels of Ancient Shadow Armor and Kingbird's Shadow Weapon are +15 or higher, +Increases long-ranged damage on targets by 1%. +-------------------------- +Total Refine Level of entire set at least +15: +Increases Ranged Physical Damage by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24032# +A glove worn to enhance critical attacks. +-------------------------- +ATK + 10 +Additional ATK + 1 per upgrade level of the item. +If upgrade level is +7 or higher, +Increases critical damage on targets by 1%. +Set Bonus +Critical Shadow Armor +Critical Shadow Weapon +ATK + 1 per upgrade level of Critical Shadow Armor and Critical Shadow Weapon. +If the combined upgrade levels of Critical Shadow Armor and Critical Shadow Weapon are +15 or higher, +Increases critical damage on targets by 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24033# +A glove worn to enhance healing. +-------------------------- +MATK +10 +-------------------------- +For each Refine Level: +MATK +1 +-------------------------- +If refine level is +7 or higher: +Increases the recovery rate of recovery skills by 5%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24034# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Luk + 1 +ATK + 1 per upgrade level of the item. +MATK + 1 per upgrade level of the item. +-------------------------- +If upgrade level is +7 or higher, +Additional Luk + 1 +-------------------------- +If upgrade level is +9 or higher, +Additional Luk + 1 +-------------------------- +Set Bonus +Lucky Shadow Armor +Lucky Shadow Weapon +Luk + 1 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24035# +An earring worn to enhance strength. +-------------------------- +Str + 1 +Max HP + 10 per upgrade level of the item. +If upgrade level is +7 or higher, +Additional Str + 1 +If upgrade level is +9 or higher, +Additional Str + 1 +Set Bonus +Power Shadow Earring +Power Shadow Pendant +Str + 1 +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24036# +A pendant worn to enhance intelligence. +-------------------------- +Int + 1 +Max HP + 10 per upgrade level of the item. +If upgrade level is +7 or higher, +Additional Int + 1 +If upgrade level is +9 or higher, +Additional Int + 1 +Set Bonus +Intelligent Shadow Earring +Intelligent Shadow Pendant +Int + 1 +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24037# +An armor worn to enhance dexterity. +-------------------------- +Dex + 1 +Max HP + 10 per upgrade level of the item. +If upgrade level is +7 or higher, +Additional Dex + 1 +If upgrade level is +9 or higher, +Additional Dex + 1 +Set Bonus +Dexterous Shadow Armor +Dexterous Shadow Weapon +Dex + 1 +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24038# +A pair of shoes worn to enhance vitality. +-------------------------- +Vit + 1 +Max HP + 10 per upgrade level of the item. +If upgrade level is +7 or higher, +Additional Vit + 1 +If upgrade level is +9 or higher, +Additional Vit + 1 +Set Bonus +Vital Shadow Shield +Vital Shadow Shoes +Vit + 1 +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24039# +A shield worn to enhance agility. +-------------------------- +Agi + 1 +Max HP + 10 per upgrade level of the item. +-------------------------- +If upgrade level is +7 or higher, +Additional Agi + 1 +-------------------------- +If upgrade level is +9 or higher, +Additional Agi + 1 +-------------------------- +Set Bonus +Athletic Shadow Shield +Athletic Shadow Shoes +Agi + 1 +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24040# +An armor worn to enhance luck. +-------------------------- +Luk + 1 +Max HP + 10 per upgrade level of the item. +Crit + 1 per 2 upgrade levels of the item. +-------------------------- +Set Bonus +Lucky Shadow Armor +Lucky Shadow Weapon +Luk + 1 +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24041# +A pendant worn to enhance strength. +-------------------------- +Str + 1 +Max HP + 10 per upgrade level of the item. +ATK + 1 per upgrade level of the item. +Set Bonus +Power Shadow Earring +Power Shadow Pendant +Str + 1 +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24042# +An earring worn to enhance intelligence. +-------------------------- +Int + 1 +Max HP + 10 per upgrade level of the item. +MATK + 1 per upgrade level of the item. +Set Bonus +Intelligent Shadow Earring +Intelligent Shadow Pendant +Int + 1 +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24043# +A glove worn to enhance dexterity. +-------------------------- +Dex + 1 +ATK + 1 per upgrade level of the item. +MATK + 1 per upgrade level of the item. +Hit + 1 per upgrade level of the item. +Set Bonus +Dexterous Shadow Armor +Dexterous Shadow Weapon +Dex + 1 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24044# +A shield worn to enhance vitality. +-------------------------- +Vit + 1 +Max HP + 10 per upgrade level of the item. +Def + 1 per upgrade level of the item. +Set Bonus +Vital Shadow Shield +Vital Shadow Shoes +Vit + 1 +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24045# +A pair of shoes worn to enhance agility. +-------------------------- +Agi + 1 +Max HP + 10 per upgrade level of the item. +-------------------------- +Flee + 1 per upgrade level of the item. +-------------------------- +Set Bonus +Athletic Shadow Shield +Athletic Shadow Shoes +Agi + 1 +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24046# +A pendant worn to enhance magical defense. +-------------------------- +Max HP +10 per upgrade level of the item. +Mdef +3 +-------------------------- +If upgrade level is +7 or higher, +Mdef +3 +-------------------------- +Set Bonus +Athena Shadow Earring +Resist Spell Power Shadow Pendant +Reduces damage taken from Neutral property attacks by 1%. +-------------------------- +If the combined upgrade levels of Athena Shadow Earring and Resist Spell Power Shadow Pendant are +15 or higher, +Reduces damage taken from Neutral property attacks by an additional 1%. +-------------------------- +Class: Shadow Pendant +Weight: 0 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +24047# +A pendant worn to enhance attack speed. +-------------------------- +Max HP + 10 per upgrade level of the item. +Aspd + 1% +If upgrade level is +7 or higher, +Additional Aspd + 1% +If upgrade level is +9 or higher, +Additional Aspd + 2% +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24048# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by additional 1%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24049# +An earring worn to enhance health. +-------------------------- +Max HP + 100 +Additional Max HP + 10 per upgrade level of the item. +If upgrade level is +7 or higher, +Max HP + 1% +If upgrade level is +9 or higher, +Additional Max HP + 1% +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24050# +An earring worn to enhance mana. +-------------------------- +Max HP + 10 per upgrade level of the item. +Max SP + 50 +If upgrade level is +7 or higher, +Max SP + 1% +If upgrade level is +9 or higher, +Additional Max SP + 1% +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24051# +An earring worn to enhance physical defense. +-------------------------- +Max HP +10 per upgrade level of the item. +Def +10 +-------------------------- +If upgrade level is +7 or higher, +Def +10 +-------------------------- +Set Bonus +Athena Shadow Earring +Resist Spell Power Shadow Pendant +Reduces damage taken from Neutral property attacks by 1%. +-------------------------- +If the combined upgrade levels of Athena Shadow Earring and Resist Spell Power Shadow Pendant are +15 or higher, +Reduces damage taken from Neutral property attacks by an additional 1%. +-------------------------- +Class: Shadow Earring +Weight: 0 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +24052# +A shield worn to enhance demi-human resistance. +-------------------------- +Max HP + 10 per upgrade level of the item. +-------------------------- +Reduces damage taken from Demi-Human race enemies by 1%. +-------------------------- +If upgrade level is +7 or higher: +Reduces damage taken from Demi-Human race enemies by an additional 1%. +-------------------------- +If upgrade level is +9 or higher: +Reduces damage taken from Demi-Human race enemies by an additional 1%. +-------------------------- +Set Bonus: +Bloody Shadow Shoes +Cranial Shadow Shield +Increases the experience given from Demi-Human race monsters by 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24053# +A small shield that can be mounted on the arm. Also available as a single, but the effect is small. +-------------------------- +Reduces damage taken from Boss enemies by 1%. +-------------------------- +If upgrade level is +7 or higher: +reduces damage taken from Boss enemies by additional 1%. +-------------------------- +If upgrade level is +9 or higher: +reduces damage taken from Boss enemies by additional 1%. +-------------------------- +When equipped with Liberation Shadow Shoes: +Increases physical damage on Boss targets by 5%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24054# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases damage taken from Brute race by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Brute race by additional 1%. +-------------------------- +Refine Level +9: +Decreases damage taken from Brute race by additional 1%. +-------------------------- +When equipped with Clamorous Shadow Shoes: +Increases experience gained from defeating Brute race monsters by 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24055# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases damage taken from Insect race by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Insect race by additional 1%. +-------------------------- +Refine Level +9: +Decreases damage taken from Insect race by additional 1%. +-------------------------- +When equipped with Insecticide Shadow Shoes: +Increases experience gained from defeating Insect race monsters by 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24056# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases damage taken from Fish race by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Fish race by additional 1%. +-------------------------- +Refine Level +9: +Decreases damage taken from Fish race by additional 1%. +-------------------------- +When equipped with Fisher Shadow Shoes: +Increases experience gained from defeating Fish race by 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24057# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases damage taken from Dragon race by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Dragon race by additional 1%. +-------------------------- +Refine Level +9: +Decreases damage taken from Dragon race by additional 1%. +-------------------------- +When equipped with Dragoon Shadow Shoes: +Increases experience gained from defeating Dragon race monsters by 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24058# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases damage taken from Angel race by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Angel race by additional 1%. +-------------------------- +Refine Level +9: +Decreases damage taken from Angel race by additional 1%. +-------------------------- +When equipped with Seraphim Shadow Shoes: +Increases experience gained from defeating Angel race monsters by 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24059# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases damage taken from Formless race by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Formless race by additional 1%. +-------------------------- +Refine Level +9: +Decreases damage taken from Formless race by additional 1%. +-------------------------- +When equipped with Beholder Shadow Shoes: +Increases experience gained from defeating Formless race monsters by by 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24060# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases damage taken from Undead race by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Undead race by 1%. +-------------------------- +Refine Level +9: +Decreases damage taken from Undead race by 1%. +-------------------------- +When equipped with Divine Shadow Shoes: +Increases experience gained from defeating Undead race monsters by 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24061# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases damage taken from Plant race by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Plant race by 1%. +-------------------------- +Refine Level +9: +Decreases damage taken from Plant race by 1%. +-------------------------- +When equipped with Chemical Shadow Shoes: +Increases experience gained from defeating Plant race monsters by 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24062# +A pair of shoes worn to enhance demi-human damage. +-------------------------- +Increases physical and magical damage on Demi-Human race targets by 2%. +-------------------------- +If upgrade level is +7 or higher: +Increases physical and magical damage on Demi-Human race targets by an additional 1%. +-------------------------- +If upgrade level is +9 or higher: +Increases physical and magical damage on Demi-Human race targets by an additional 2%. +-------------------------- +Set Bonus: +Bloody Shadow Shoes +Cranial Shadow Shield +Increases the experience given from Demi-Human race monsters by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24063# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases physical damage on Boss targets by 2%. +-------------------------- +If upgrade level is +7 or higher: +Increases physical damage on Boss targets by additional 1%. +-------------------------- +If upgrade level is +9 or higher: +Increases physical damage on Boss targets by additional 2%. +-------------------------- +When equipped with Safeguard Shadow Shield: +Increases physical damage on Boss targets by 5% +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24064# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of Plant race by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Plant race by 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Plant race by 2%. +-------------------------- +When equipped with Cadi Shadow Shield: +Increases experience gained from defeating Plant race monsters by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24065# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of Brute race by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Brute race by 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Brute race by 2%. +-------------------------- +When equipped with Brutal Shadow Shield: +Increases experience gained from defeating Brute race monsters by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24066# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of Insect race by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Insect race by 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Insect race by 2%. +-------------------------- +When equipped with Gargantua Shadow Shield: +Increases experience gained from defeating Insect race monsters by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24067# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of Fish race by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Fish race by 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Fish race by 2%. +-------------------------- +When equipped with Homer's Shadow Shield: +Increases experience gained from defeating Fish race monsters by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24068# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of Angel race by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Angel race by 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Angel race by 2%. +-------------------------- +When equipped with Satanic Shadow Shield: +Increases experience gained from defeating Angel race monsters by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24069# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of Formless race by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Formless race by 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Formless race by 2%. +-------------------------- +When equipped with Frame Guard Shadow Shield: +Increases experience gained from defeating Formless race monsters by by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24070# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of Undead race by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Undead race by 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Undead race by 2%. +-------------------------- +When equipped with Requiem Shadow Shield: +Increases experience gained from defeating Undead race monsters by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24071# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of Dragon race by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Dragon race by 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Dragon race by 2%. +-------------------------- +When equipped with Dragoon Shadow Shield: +Increases experience gained from defeating Dragon race monsters by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24072# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Reduce incoming physical/magical damage from Large monsters by 2%. +-------------------------- +When refined to +7 or higher, reduce incoming physical/magical damage from Large monsters by 1%. +-------------------------- +When refined to +9 or higher, reduce incoming physical/magical damage from Large monsters by additional 2%. +-------------------------- +Set Bonus +Large Shadow Weapon +Large Shadow Armor +MaxHP +1% +MaxSP +1% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24073# +A suit of armor worn on top of normal armor for additional defense. Requires a complete set to gain bonus effects. +-------------------------- +Reduces damage taken from Medium monsters by 2%. +-------------------------- +If refine level is +7 or higher: +Reduces damage taken from Medium monsters by an additional 1%. +-------------------------- +If refine level is +9 or higher: +Reduces damage taken from Medium monsters by an additional 2%. +-------------------------- +Set Bonus: +Medium Shadow Weapon +Medium Shadow Armor +-------------------------- +MaxHP +1% +MaxSP +1% +-------------------------- +Type: Shadow Armor +Weight: 0 +-------------------------- +Requirement: Base Level 1 +Usable By: All Jobs +# +24074# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Reduce incoming physical/magical damage from Small monsters by 2%. +-------------------------- +When refined to +7 or higher: +reduce incoming physical/magical damage from Small monsters by 1%. +-------------------------- +When refined to +9 or higher: +reduce incoming physical/magical damage from Small monsters by additional 2%. +-------------------------- +Set Bonus: +Small Shadow Weapon +Small Shadow Armor +-------------------------- +MaxHP +1% +MaxSP +1% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24075# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increase physical/magical damage to Large monsters by 2%. +-------------------------- +When refined to +7 or higher, increase physical/magical damage to Large monsters by 1%. +-------------------------- +When refined to +9 or higher, increase physical/magical damage to Large monsters by additional 2%. +-------------------------- +Set Bonus +Large Shadow Weapon +Large Shadow Armor +MaxHP +1% +MaxSP +1% +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24076# +A pair of gloves that can draw out the wearer's potential abilities. +-------------------------- +Increases physical and magical damage against Medium monsters by 2%. +-------------------------- +If refine level is +7 or higher: +Increases physical and magical damage against Medium monsters by an additional 1%. +-------------------------- +If refine level is +9 or higher: +Increases physical and magical damage against Medium monsters by an additional 2%. +-------------------------- +Set Bonus: +Medium Shadow Weapon +Medium Shadow Armor +-------------------------- +MaxHP +1% +MaxSP +1% +-------------------------- +Type: Shadow Weapon +Weight: 0 +-------------------------- +Requirement: Base Level 1 +Usable By: All Jobs +# +24077# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increase physical/magical damage to Small monsters by 2%. +-------------------------- +When refined to +7 or higher: +Increase physical/magical damage to Small monsters by 1%. +-------------------------- +When refined to +9 or higher: +Increase physical/magical damage to Small monsters by additional 2%. +-------------------------- +Set Bonus: +Small Shadow Weapon +Small Shadow Armor +-------------------------- +MaxHP +1% +MaxSP +1% +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24078# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases SP Recovery Rate by 5%. +-------------------------- +Refine Level +7: +Increases SP Recovery Rate by 5%. +-------------------------- +When equipped with Spiritual Shadow Earring and Spiritual Shadow Pendant: +1% chance to absorb 1% physical damage infllicted on the target into SP. +-------------------------- +Total Refine Level of entire set at least +10: +Additional 1% of the damage absorbed as SP. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24079# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MaxSP +50 +-------------------------- +Refine Level +7: +MaxSP +1% +-------------------------- +When equipped with Spiritual Shadow Weapon and Spiritual Shadow Pendant: +1% chance to absorb 1% physical damage infllicted on the target into SP. +-------------------------- +Total Refine Level of entire set at least +10: +additional 1% of the damage absorbed by SP. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24080# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MaxSP +1% +-------------------------- +Refine Level +7: +MaxSP +1% +-------------------------- +When equipped with Spiritual Shadow Weapon and Spiritual Shadow Earring: +1% chance to absorb 1% physical damage infllicted on the target into SP. +-------------------------- +Total Refine Level of entire set at least +10: +additional 1% of the damage absorbed by SP. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24081# +An armor worn to enhance health leeching. +-------------------------- +Max HP + 100 +Additional Max HP + 10 per upgrade level of the item. +If upgrade level is +7 or higher, +Max HP + 1% +Set Bonus +Malicious Shadow Armor +Malicious Shadow Shield +Malicious Shadow Shoes +Adds a 4% chance of restoring 4% of damage as HP when performing a physical attack. +Adds a 4% chance of restoring an additional 1% of damage as HP when performing a physical attack per 5 upgrade levels of Malicious Shadow Armor, Malicious Shadow Shield and Malicious Shadow Shoes. +-------------------------- +Type: Shadow +Position: Armor +Weight: 0 +-------------------------- +Requirement: None +# +24082# +A pair of shoes worn to enhance health leeching. +-------------------------- +Max HP + 10 per upgrade level of the item. +Max HP + 1% +If upgrade level is +7 or higher, +Additional Max HP + 1% +Set Bonus +Malicious Shadow Armor +Malicious Shadow Shield +Malicious Shadow Shoes +Adds a 4% chance of restoring 4% of damage as HP when performing a physical attack. +Adds a 4% chance of restoring an additional 1% of damage as HP when performing a physical attack per 5 upgrade levels of Malicious Shadow Armor, Malicious Shadow Shield and Malicious Shadow Shoes. +-------------------------- +Type: Shadow +Position: Shoes +Weight: 0 +-------------------------- +Requirement: None +# +24083# +A shield worn to enhance health leeching. +-------------------------- +Max HP + 10 per upgrade level of the item. +HP Recovery + 5% +If upgrade level is +7 or higher, +Additional HP Recovery + 5% +Set Bonus +Malicious Shadow Armor +Malicious Shadow Shield +Malicious Shadow Shoes +Adds a 4% chance of restoring 4% of damage as HP when performing a physical attack. +Adds a 4% chance of restoring an additional 1% of damage as HP when performing a physical attack per 5 upgrade levels of Malicious Shadow Armor, Malicious Shadow Shield and Malicious Shadow Shoes. +-------------------------- +Type: Shadow +Position: Shield +Weight: 0 +-------------------------- +Requirement: None +# +24084# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Critical +5 +-------------------------- +For each 2 Refine Levels: +Critical +1 +-------------------------- +When equipped with Gemstone Shadow Weapon, Gemstone Shadow Shield, Gemstone Shadow Shoes, Gemstone Shadow Earring and Gemstone Shadow Pendant: +All Stats +1 +-------------------------- +Total Refine Level of entire set at least +45: +Nullifies gemstone from the requirement of skills. +Increases SP Consumption by 100%. +-------------------------- +For each Refine Level of entire set: +Decreases SP Consumption by 1%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24085# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +FLEE +5 +-------------------------- +For each 2 Refine Levels: +FLEE +1 +-------------------------- +When equipped with Gemstone Shadow Weapon, Gemstone Shadow Armor, Gemstone Shadow Shield, Gemstone Shadow Earring and Gemstone Shadow Pendant: +All Stats +1 +-------------------------- +Total Refine Level of entire set at least +45: +Nullifies gemstone from the requirement of skills. +Increases SP Consumption by 100%. +-------------------------- +For each Refine Level of entire set: +Decreases SP Consumption by 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24086# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEF +5 +-------------------------- +For each 2 Refine Levels: +DEF +1 +-------------------------- +When equipped with Gemstone Shadow Weapon, Gemstone Shadow Armor, Gemstone Shadow Shoes, Gemstone Shadow Earring and Gemstone Shadow Pendant: +All Stats +1 +-------------------------- +Total Refine Level of entire set at least +45: +Nullifies gemstone from the requirement of skills. +Increases SP Consumption by 100%. +-------------------------- +For each Refine Level of entire set: +Decreases SP Consumption by 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24087# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +HIT +5 +-------------------------- +For each 2 Refine Levels: +HIT +1 +-------------------------- +When equipped with Gemstone Shadow Armor, Gemstone Shadow Shield, Gemstone Shadow Shoes, Gemstone Shadow Earring and Gemstone Shadow Pendant: +All Stats +1 +-------------------------- +Total Refine Level of entire set at least +45: +Nullifies gemstone from the requirement of skills. +Increases SP Consumption by 100%. +-------------------------- +For each Refine Level of entire set: +Decreases SP Consumption by 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24088# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MATK +5 +-------------------------- +For each 2 Refine Levels: +MATK +5 +-------------------------- +When equipped with Gemstone Shadow Weapon, Gemstone Shadow Armor, Gemstone Shadow Shield, Gemstone Shadow Shoes and Gemstone Shadow Pendant: +All Stats +1 +-------------------------- +Total Refine Level of entire set at least +45: +Nullifies gemstone from the requirement of skills. +Increases SP Consumption by 100%. +-------------------------- +For each Refine Level of entire set: +Decreases SP Consumption by 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24089# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +ATK +5 +-------------------------- +For each 2 Refine Levels: +ATK +1 +-------------------------- +When equipped with Gemstone Shadow Weapon, Gemstone Shadow Armor, Gemstone Shadow Shield, Gemstone Shadow Shoes and Gemstone Shadow Earring: +All Stats +1 +-------------------------- +Total Refine Level of entire set at least +45: +Nullifies gemstone from the requirement of skills. +Increases SP Consumption by 100%. +-------------------------- +For each Refine Level of entire set: +Decreases SP Consumption by 1%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24090# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEF +3 +-------------------------- +For each Refine Level: +Increases resistance against Stone Curse, Sleep, Silence and Blind statuses by 1%. +-------------------------- +For each 2 Refine Levels: +Increases resistance against Stun, Frozen, Curse and Bleeding statuses by 1%. +-------------------------- +When equipped with Plasterus Shadow Armor and Plasterus Shadow Shoes: +DEF +5 + +Total Refine Level of entire set at least +20: +Prevents Stone Curse status. +-------------------------- +When equipped with Insomnia Shadow Armor and Insomnia Shadow Shoes: +DEF +5 + +Total Refine Level of entire set at least +20: +Prevents Sleep status. +-------------------------- +When equipped with Peerless Shadow Armor and Peerless Shadow Shoes: +DEF +5 + +Total Refine Level of entire set at least +20: +Prevents Silence status. +-------------------------- +When equipped with Adurate Shadow Armor and Adurate Shadow Shoes: +DEF +5 + +Total Refine Level of entire set at least +20: +Prevents Blind status. +-------------------------- +When equipped with Unfreezing Shadow Weapon, Unfreezing Shadow Earring and Unfreezing Shadow Pendant: +DEF +4 + +Total Refine Level of entire set at least +30: +Prevents Frozen status. +-------------------------- +When equipped with Neutral Shadow Earring, Neutral Shadow Pendant and Neutral Shadow Weapon: +DEF +4 + +Total Refine Level of entire set at least +30: +Prevents Stun status. +-------------------------- +When equipped with Uncurse Shadow Earring and Uncurse Shadow Pendant: +DEF +5 + +Total Refine Level of entire set at least +20: +Prevents Curse status. +-------------------------- +When equipped with Vitality Shadow Earring and Vitality Shadow Pendant: +DEF +5 + +Total Refine Level of entire set at least +20: +Prevents Bleeding status. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24091# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Stone Curse status by 1%. +-------------------------- +When equipped with Plasterus Shadow Shoes and Stability Shadow Shield: +DEF +5 +-------------------------- +Total Refine Level of entire set at least +20: +Prevents Stone Curse status. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24092# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Stone Curse status by 1%. +-------------------------- +When equipped with Plasterus Shadow Armor and Stability Shadow Shield: +DEF +5 +-------------------------- +Total Refine Level of entire set at least +20: +Prevents Stone Curse status. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24093# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Sleep status by 1%. +-------------------------- +When equipped with Insomnia Shadow Shoes and Stability Shadow Shield: +DEF +5 +-------------------------- +Total Refine Level of entire set at least +20: +Prevents Sleep status. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24094# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Sleep status by 1%. +-------------------------- +When equipped with Insomnia Shadow Armor and Stability Shadow Shield: +DEF +5 +-------------------------- +Total Refine Level of entire set at least +20: +Prevents Sleep status. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24095# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Silence status by 1%. +-------------------------- +When equipped with Peerless Shadow Shoes and Stability Shadow Shield: +DEF +5 +-------------------------- +Total Refine Level of entire set at least +20: +Prevents Silence status. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24096# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Silence status by 1%. +-------------------------- +When equipped with Peerless Shadow Armor and Stability Shadow Shield: +DEF +5 +-------------------------- +Total Refine Level of entire set at least +20: +Prevents Silence status. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24097# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Blind status by 1%. +-------------------------- +When equipped with Adurate Shadow Shoes and Stability Shadow Shield: +DEF +5 +-------------------------- +Total Refine Level of entire set at least +20: +Prevents Blind status. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24098# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Blind status by 1%. +-------------------------- +When equipped with Adurate Shadow Armor and Stability Shadow Shield: +DEF +5 +-------------------------- +Total Refine Level of entire set at least +20: +Prevents Blind status. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24099# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Frozen status by 1%. +-------------------------- +When equipped with Unfreezing Shadow Earring, Unfreezing Shadow Pendant and Stability Shadow Shield: +DEF +4 +-------------------------- +Total Refine Level of entire set at least +30: +Prevents Frozen status. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24100# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Frozen status by 1%. +-------------------------- +When equipped with Unfreezing Shadow Weapon, Unfreezing Shadow Pendant and Stability Shadow Shield:_ +DEF +4 +-------------------------- +Total Refine Level of entire set at least +30: +Prevents Frozen status. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24101# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Frozen status by 1%. +-------------------------- +When equipped with Unfreezing Shadow Weapon, Unfreezing Shadow Earring and Stability Shadow Shield: +DEF +4 +-------------------------- +Total Refine Level of entire set at least +30: +Prevents Frozen status. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24102# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Bleeding status by 1%. +-------------------------- +When equipped with Vitality Shadow Pendant and Stability Shadow Shield: +DEF +5 +-------------------------- +Total Refine Level of entire set at least +20: +Prevents Bleeding status. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24103# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Bleeding status by 1%. +-------------------------- +When equipped with Vitality Shadow Earring and Stability Shadow Shield: +DEF +5 +-------------------------- +Total Refine Level of entire set at least +20: +Prevents Bleeding status. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24104# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +DEF +1 +-------------------------- +For each 2 Refine Levels: +Increases resistance against Stun status by 1%. +-------------------------- +When equipped with Neutral Shadow Earring, Neutral Shadow Pendant and Stability Shadow Shield: +DEF +4 +-------------------------- +Total Refine Level of entire set at least +30: +Prevents Stun status. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24105# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Stun status by 1%. +-------------------------- +When equipped with Neutral Shadow Pendant, Neutral Shadow Weapon and Stability Shadow Shield: +DEF +4 +-------------------------- +Total Refine Level of entire set at least +30: +Prevents Stun status. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24106# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Stun status by 1%. +-------------------------- +When equipped with Neutral Shadow Earring, Neutral Shadow Weapon and Stability Shadow Shield: +DEF +4 +-------------------------- +Total Refine Level of entire set at least +30: +Prevents Stun status. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24107# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Curse status by 1%. +-------------------------- +When equipped with Uncurse Shadow Pendant and Stability Shadow Shield: +DEF +5 +-------------------------- +Total Refine Level of entire set at least +20: +Prevents Curse status. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24108# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Curse status by 1%. +-------------------------- +When equipped with Uncurse Shadow Earring and Stability Shadow Shield: +DEF +5 +-------------------------- +Total Refine Level of entire set at least +20: +Prevents Curse status. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24109# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 1%. +-------------------------- +When equipped with Caster Shadow Weapon and Caster Shadow Pendant: +Protects from skill cast interruption. +Increases Variable Casting Time of all skills by 40%. +-------------------------- +For each Refine Level of entire set: +Decreases Variable Casting Time by 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24110# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by additional 1%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 2%. +-------------------------- +When equipped with Caster Shadow Earring and Caster Shadow Pendant: +Protects from skill cast interruption. +Increases Variable Casting Time of all skills by 40%. +-------------------------- +For each Refine Level of entire set: +Decreases Variable Casting Time by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24111# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption by 1%. +-------------------------- +Refine Level +7: +Increases SP Recovery Rate by 5%. +-------------------------- +When equipped with Spell Flow Shadow Armor and Spell Flow Shadow Shield: +Protects from skill cast interruption. +Increases SP Consumption by 40%. +-------------------------- +For each Refine Level of entire set: +Decreases SP Consumption by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24112# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption by 1%. +-------------------------- +Refine Level +7: +Decreases SP Consumption by additional 1%. +-------------------------- +Refine Level +9: +Decreases SP Consumption by additional 1%. +-------------------------- +When equipped with Spell Flow Shadow Shield and Spell Flow Shadow Shoes: +Protects from skill cast interruption. +Increases SP Consumption by 40%. +-------------------------- +For each Refine Level of entire set: +Decreases SP Consumption by additional 1%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24113# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption by 1%. +-------------------------- +Refine Level +7: +MaxSP +1% +-------------------------- +When equipped with Spell Flow Shadow Armor and Spell Flow Shadow Shoes: +Protects from skill cast interruption. +Increases SP Consumption by 40%. +-------------------------- +For each Refine Level of entire set: +Decreases SP Consumption by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24114# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Enables the use of Level 1 Greed. +-------------------------- +Increases SP Consumption of Greed by 100. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Greed by 10. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24115# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Enables the use of Level 1 Greed. +-------------------------- +Increases SP Consumption of Greed by 100. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Greed by 10. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24116# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Enables to use Greed level 1. +Increases SP consumption of Greed by 100, reduces SP consumption of Greed by 10 per refine rate (Refine Max +10). +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24117# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Enables the use of Level 1 Greed. +-------------------------- +Increases SP Consumption of Greed by 100. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Greed by 10. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24118# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Enables the use of Level 1 Greed. +-------------------------- +Increases SP Consumption of Greed by 100. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Greed by 10. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24119# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Enables the use of Level 1 Greed. +-------------------------- +Increases SP Consumption of Greed by 100. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Greed by 10. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24120# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Enables the use of Level 1 Heal. +-------------------------- +Increases SP Consumption of Heal by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Heal by 5. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24121# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Enables the use of Level 1 Heal. +-------------------------- +Increases SP Consumption of Heal by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Heal by 5. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24122# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Enables the use of Level 1 Heal. +-------------------------- +Increases SP Consumption of Heal by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Heal by 5. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24123# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Enables the use of Level 1 Heal. +-------------------------- +Increases SP Consumption of Heal by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Heal by 5. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24124# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Enables the use of Level 1 Heal. +-------------------------- +Increases SP Consumption of Heal by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Heal by 5. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24125# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Enables the use of Level 1 Heal. +-------------------------- +Increases SP Consumption of Heal by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Heal by 5. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24126# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Enables the use of Level 1 Hiding. +-------------------------- +Increases SP Consumption of Hiding by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Hiding by 5. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24127# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Enables the use of Level 1 Hiding. +-------------------------- +Increases SP Consumption of Hiding by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Hiding by 5. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24128# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Enables the use of Level 1 Hiding. +-------------------------- +Increases SP Consumption of Hiding by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Hiding by 5. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24129# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Enables the use of Level 1 Hiding. +-------------------------- +Increases SP Consumption of Hiding by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Hiding by 5. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24130# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Enables the use of Level 1 Hiding. +-------------------------- +Increases SP Consumption of Hiding by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Hiding by 5. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24131# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Enables the use of Level 1 Hiding. +-------------------------- +Increases SP Consumption of Hiding by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Hiding by 5. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24132# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Enables the use of Level 1 Cloaking. +-------------------------- +Increases SP Consumption of Cloaking by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Cloaking by 5. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24133# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Enables the use of Level 1 Cloaking. +-------------------------- +Increases SP Consumption of Cloaking by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Cloaking by 5. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24134# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Enables the use of Level 1 Cloaking. +-------------------------- +Increases SP Consumption of Cloaking by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Cloaking by 5. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24135# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Enables the use of Level 1 Cloaking. +-------------------------- +Increases SP Consumption of Cloaking by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Cloaking by 5. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24136# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Enables the use of Level 1 Cloaking. +-------------------------- +Increases SP Consumption of Cloaking by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Cloaking by 5. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24137# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Enables the use of Level 1 Cloaking. +-------------------------- +Increases SP Consumption of Cloaking by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Cloaking by 5. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24138# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Enables the use of Level 1 Teleport. +-------------------------- +Increases SP Consumption of Teleport by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Teleport by 5. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24139# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Enables the use of Level 1 Teleport. +-------------------------- +Increases SP Consumption of Teleport by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Teleport by 5. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24140# +Enables to use Teleport level 1. + +Increases SP consumption of Teleport by 50, reduces SP consumption of Teleport by 5 per refine rate. +-------------------------- +Class: Shadow Shield +Weight: 0 +Requires Level: 1 +Usable By: All Jobs +# +24141# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Enables the use of Level 1 Teleport. +-------------------------- +Increases SP Consumption of Teleport by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Teleport by 5. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24142# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Enables the use of Level 1 Teleport. +-------------------------- +Increases SP Consumption of Teleport by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Teleport by 5. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24143# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Enables the use of Level 1 Teleport. +-------------------------- +Increases SP Consumption of Teleport by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Teleport by 5. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24144# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Enables the use of Level 1 Steal. +-------------------------- +Increases SP Consumption of Steal by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Steal by 5. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24145# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Enables the use of Level 1 Steal. +-------------------------- +Increases SP Consumption of Steal by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Steal by 5. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24146# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Enables the use of Level 1 Steal. +-------------------------- +Increases SP Consumption of Steal by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Steal by 5. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24147# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Enables the use of Level 1 Steal. +-------------------------- +Increases SP Consumption of Steal by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Steal by 5. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24148# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Enables the use of Level 1 Steal. +-------------------------- +Increases SP Consumption of Steal by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Steal by 5. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24149# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Enables the use of Level 1 Steal. +-------------------------- +Increases SP Consumption of Steal by 50. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Steal by 5. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24150# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases damage taken from Small, Medium and Large size by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Small, Medium and Large size by additional 1%. +-------------------------- +Refine Level +9: +Decreases damage taken from Small, Medium and Large size by additional 1%. +-------------------------- +When equipped with Infinity Shadow Pendant: +ATK +1% +-------------------------- +Total Refine Level of entire set at least +15: +Nullifies weapon damage penalty resulting from monster's size. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24151# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases damage taken from Small, Medium and Large size by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from Small, Medium and Large size by additional 1%. +-------------------------- +Refine Level +9: +Decreases damage taken from Small, Medium and Large size by additional 1%. +-------------------------- +When equipped with Infinity Shadow Earring: +ATK +1% +-------------------------- +Total Refine Level of entire set at least +15: +Nullifies weapon damage penalty resulting from monster's size. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24152# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +5 +-------------------------- +For each 2 Refine Levels: +ATK +1 +-------------------------- +When equipped with Solid Shadow Earring: +For each Refine Level of entire set: +ATK +1 +-------------------------- +Total Refine Level of entire set at least +15: +Weapon becomes indestructible (except in upgrade attempts). +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24153# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +HIT +5 +-------------------------- +For each 2 Refine Levels: +HIT +1 +-------------------------- +When equipped with Solid Shadow Weapon: +For each Refine Level of entire set: +ATK +1 +-------------------------- +Total Refine Level of entire set at least +15: +Weapon becomes indestructible (except in upgrade attempts). +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24154# +Armor that grants additional defense when layered over another armor. It can be worn on its own, but its defensive power will be reduced. +-------------------------- +DEF +5 +-------------------------- +For each Refine Level: +DEF +1 +-------------------------- +When equipped with Immortal Shadow Pendant: +For each Refine Level of entire set: +DEF +1 +-------------------------- +Total Refine Level of entire set at least +15: +Armor cannot break in battle. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24155# +Pendant that grants additional defense when layered over another armor. It can be worn on its own, but its defensive power will be reduced. +-------------------------- +MDEF +5 +-------------------------- +For each Refine Level: +MDEF +1 +-------------------------- +When equipped with Immortal Shadow Armor: +For each Refine Level of entire set: +DEF +1 +-------------------------- +Total Refine Level of entire set at least +15: +Armor cannot break in battle. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24156# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores physical defense of Demi-Human race by 5% (Except Players). +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Demi-Human race by additional 1% (Except Players). +-------------------------- +When equipped with Penetration Shadow Pendant and Penetration Shadow Earring: +ATK +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores physical defense of Demi-Human race by 100% (Except Players). +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24157# +Ignore Hard Defense against Demon monster by 5% when performing a physical attack. + +For every 2 refine levels, ignore additional 1% of hard defense of Demon monsters when performing a physical attack. +-------------------------- +Class: Shadow Weapon +Weight: 0 +Requires Level: 1 +Usable By: All Jobs +# +24158# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores physical defense of Brute race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Brute race by additional 1%. +-------------------------- +When equipped with Penetration Shadow Pendant and Penetration Shadow Earring: +ATK +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores physical defense of Brute race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24159# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores physical defense of Insect race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Insect race by additional 1%. +-------------------------- +When equipped with Penetration Shadow Pendant and Penetration Shadow Earring: +ATK +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores physical defense of Insect race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24160# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores physical defense of Fish race monsters by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Fish race monsters by additional 1%. +-------------------------- +When equipped with Penetration Shadow Pendant and Penetration Shadow Earring: +ATK +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores physical defense of Fish race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24161# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores physical defense of Dragon race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Dragon race by additional 1%. +-------------------------- +When equipped with Penetration Shadow Pendant and Penetration Shadow Earring: +ATK +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores physical defense of Dragon race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24162# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores physical defense of Angel race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Angel race by additional 1%. +-------------------------- +When equipped with Penetration Shadow Pendant and Penetration Shadow Earring: +ATK +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores physical defense of Angel race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24163# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores physical defense of Formless race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Formless race by additional 1%. +-------------------------- +When equipped with Penetration Shadow Pendant and Penetration Shadow Earring: +ATK +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores physical defense of Formless race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24164# +Ignores Hard Defense against Undead monsters by 5% when performing a physical attack. +-------------------------- +For every 2 refine levels: +Ignores an additional 1% of Hard Defense of Undead monsters when performing a physical attack. +-------------------------- +Type: Shadow Weapon +Weight: 0 +-------------------------- +Requirement: Base Level 1 +Usable By: All Jobs +# +24165# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores physical defense of Plant race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Plant race by additional 1%. +-------------------------- +When equipped with Penetration Shadow Pendant and Penetration Shadow Earring: +ATK +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores physical defense of Plant race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24166# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Ignores physical defense of all monsters by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of all monsters by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24167# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Ignores physical defense of all monsters by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of all monsters by additional 1%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24168# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Ignores magical defense of Normal class by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of Normal class by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24169# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Ignores magical defense of Normal class by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of Normal class by additional 1%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24170# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores magical defense of Demi-Human race by 5%.(Except Players) +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of Demi-Human race by additional 1%.(Except Players) +-------------------------- +When equipped with Tempest Shadow Pendant and Tempest Shadow Earring: +MATK +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores magical defense of Demi-Human race by 100%.(Except player) +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24171# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores magical defense of Demon race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of Demon race by additional 1%. +-------------------------- +When equipped with Tempest Shadow Pendant and Tempest Shadow Earring: +MATK +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores magical defense of Demon race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24172# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores magical defense of Brute race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of Brute race by additional 1%. +-------------------------- +When equipped with Tempest Shadow Pendant and Tempest Shadow Earring: +MATK +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores magical defense of Brute race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24173# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores magical defense of Insect race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of Insect race by additional 1%. +-------------------------- +When equipped with Tempest Shadow Pendant and Tempest Shadow Earring: +MATK +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores magical defense of Insect race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24174# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores magical defense of Fish race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignoresmagical defense of Fish race by additional 1%. +-------------------------- +When equipped with Tempest Shadow Pendant and Tempest Shadow Earring: +MATK +5 +Total Refine Level of entire set at least +25: +Ignores magical defense of Fish race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24175# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores magical defense of Dragon race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of Dragon race by additional 1%. +-------------------------- +When equipped with Tempest Shadow Pendant and Tempest Shadow Earring: +MATK +5 +Total Refine Level of entire set at least +25: +Ignores magical defense of Dragon race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24176# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores magical defense of Angel race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of Angel race by additional 1%. +-------------------------- +When equipped with Tempest Shadow Pendant and Tempest Shadow Earring: +MATK +5 +Total Refine Level of entire set at least +25: +Ignores magical defense of Angel race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24177# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores magical defense of Formless race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of Formless race by additional 1%. +-------------------------- +When equipped with Tempest Shadow Pendant and Tempest Shadow Earring: +MATK +5 +Total Refine Level of entire set at least +25: +Ignores magical defense of Formless race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24178# +Ignores Hard Magic Defense against Undead monsters by 5% when performing a magical attack. +-------------------------- +For every 2 refine levels: +Ignores an additional 1% of Hard Magic Defense of Undead monsters when performing a magical attack. +-------------------------- +Type: Shadow Weapon +Weight: 0 +-------------------------- +Requirement: Base Level 1 +Usable By: All Jobs +# +24179# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores magical defense of Plant race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of Plant race by additional 1%. +-------------------------- +When equipped with Tempest Shadow Pendant and Tempest Shadow Earring: +MATK +5 +Total Refine Level of entire set at least +25: +Ignores magical defense of Plant race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24180# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MDEF +1 +-------------------------- +For each 2 Refine Levels: +MDEF +1 +-------------------------- +When equipped with Bearer's Shadow Weapon, Bearer's Shadow Shield, Bearer's Shadow Shoes, Bearer's Shadow Earring and Bearer's Shadow Pendant: +All Stats +1 +-------------------------- +Total Refine Level of entire set at least +45: +Enables unlimited effect of Endure. +MaxHP -60% +-------------------------- +For each Refine Level of entire set: +MaxHP +1% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24181# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxSP +50 +-------------------------- +For each 2 Refine Levels: +MaxSP +5 +-------------------------- +When equipped with Bearer's Shadow Weapon, Bearer's Shadow Armor, Bearer's Shadow Shield, Bearer's Shadow Earring and Bearer's Shadow Pendant: +All Stats +1 +-------------------------- +Total Refine Level of entire set at least +45: +Enables unlimited effect of Endure. +MaxHP -60% +-------------------------- +For each Refine Level of entire set: +MaxHP +1% +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24182# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEF +5 +-------------------------- +For each 2 Refine Levels: +DEF +1 +-------------------------- +When equipped with Bearer's Shadow Weapon, Bearer's Shadow Armor, Bearer's Shadow Shoes, Bearer's Shadow Earring and Bearer's Shadow Pendant: +All Stats +1 +-------------------------- +Total Refine Level of entire set at least +45: +Enables unlimited effect of Endure. +MaxHP -60% +-------------------------- +For each Refine Level of entire set: +MaxHP +1% +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24183# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +MaxHP +100 +-------------------------- +For each 2 Refine Levels: +MaxHP +10 +-------------------------- +When equipped with Bearer's Shadow Armor, Bearer's Shadow Shield, Bearer's Shadow Shoes, Bearer's Shadow Earring and Bearer's Shadow Pendant: +All Stats +1 +-------------------------- +Total Refine Level of entire set at least +45: +Enables unlimited effect of Endure. +MaxHP -60% +-------------------------- +For each Refine Level of entire set: +MaxHP +1% +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24184# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MATK +5 +-------------------------- +For each 2 Refine Levels: +MATK +1 +-------------------------- +When equipped with Bearer's Shadow Weapon, Bearer's Shadow Armor, Bearer's Shadow Shield, Bearer's Shadow Shoes and Bearer's Shadow Pendant: +All Stats +1 +-------------------------- +Total Refine Level of entire set at least +45: +Enables unlimited effect of Endure. +MaxHP -60% +-------------------------- +For each Refine Level of entire set: +MaxHP +1% +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24185# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +ATK +5 +-------------------------- +For each 2 Refine Levels: +ATK +1 +-------------------------- +When equipped with Bearer's Shadow Weapon, Bearer's Shadow Armor, Bearer's Shadow Shield, Bearer's Shadow Shoes and Bearer's Shadow Earring: +All Stats +1 +-------------------------- +Total Refine Level of entire set at least +45: +Enables unlimited effect of Endure. +MaxHP -60% +-------------------------- +For each Refine Level of entire set: +MaxHP +1% +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24186# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Damage against Neutral elemental by 1%. +-------------------------- +For each 2 Refine Levels: +Increases Damage against Neutral elemental by additional 1%. +-------------------------- +When equipped with Basis Shadow Shield: +Decreases Physical and Magical Damage taken from Neutral elemental by 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24187# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Damage against Shadow elemental by 1%. +-------------------------- +For each 2 Refine Levels: +Increases Damage against Shadow elemental by additional 1%. +-------------------------- +When equipped with Hallowed Shadow Shield: +Decreases Physical and Magical Damage taken from Shadow elemental by 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24188# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Damage against Water elemental by 1%. +-------------------------- +For each 2 Refine Levels: +Increases Damage against Water elemental by additional 1%. +-------------------------- +When equipped with Saharic Shadow Shield: +Decreases Physical and Magical Damage taken from Water elemental by 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24189# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Damage against Earth elemental by 1%. +-------------------------- +For each 2 Refine Levels: +Increases Damage against Earth elemental by additional 1%. +-------------------------- +When equipped with Underneath Shadow Shield: +Decreases Physical and Magical Damage taken from Earth elemental by 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24190# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Damage against monsters of Fire elemental by 1%. +-------------------------- +For each 2 Refine Levels: +Increases Damage against monsters of Fire elemental by additional 1%. +-------------------------- +When equipped with Flame Shadow Shield: +Decreases Physical and Magical Damage taken from Fire elemental by 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24191# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Damage against Wind elemental by 1%. +-------------------------- +For each 2 Refine Levels: +Increases Damage against Wind elemental by additional 1%. +-------------------------- +When equipped with Windy Shadow Shield: +Decreases Physical and Magical Damage taken from Wind elemental by 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24192# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Damage against Poison elemental by 1%. +-------------------------- +For each 2 Refine Levels: +Increases Damage against Poison elemental by additional 1%. +-------------------------- +When equipped with Envenom Shadow Shield: +Decreases Physical and Magical Damage taken from Poison elemental by 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24193# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Damage against Holy elemental by 1%. +-------------------------- +For each 2 Refine Levels: +Increases Damage against Holy elemental by additional 1%. +-------------------------- +When equipped with Damned Shadow Shield: +Decreases Physical and Magical Damage taken from Holy elemental by 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24194# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Damage against Ghost elemental by 1%. +-------------------------- +For each 2 Refine Levels: +Increases Damage against Ghost elemental by additional 1%. +-------------------------- +When equipped with Geist Shadow Shield: +Decreases Physical and Magical Damage taken from Ghost elemental by 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24195# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Damage against Undead elemental by 1%. +-------------------------- +For each 2 Refine Levels: +Increases Damage against Undead elemental by additional 1%. +-------------------------- +When equipped with Divine Shadow Shield: +Decreases Physical and Magical Damage taken from Undead elemental by 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24196# +Wear shoes in addition to shoes. Also available as a single, but the effect is small. +-------------------------- +FLEE +5 +FLEE +1 per refine level. +-------------------------- +Set Bonus: +Hasty Shadow Shoes +Hasty Shadow Armor +-------------------------- +FLEE +5 +If total refine level of the set is +15 or higher: +Increases movement speed. +-------------------------- +Type: Shadow Shoes +Weight: 0 +-------------------------- +Requirement: Base Level 1 +Usable By: All Jobs +# +24197# +Wear armor in addition to armor. Also available as a single, but the effect is small. +-------------------------- +DEF +5 +DEF +1 per refine level. +-------------------------- +Set Bonus: +Hasty Shadow Shoes +Hasty Shadow Armor +-------------------------- +FLEE +5 +If total refine level of the set is +15 or higher: +Increases movement speed. +-------------------------- +Type: Shadow Armor +Weight: 0 +-------------------------- +Requirement: Base Level 1 +Usable By: All Jobs +# +24198# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Physical and Magical Damage taken from Neutral elemental by 1%. +-------------------------- +Refine Level +7: +Decreases Physical and Magical Damage taken from Neutral elemental by additional 1%. +-------------------------- +Refine Level +9: +Decreases Physical and Magical Damage taken from Neutral elemental by additional 1%. +-------------------------- +When equipped with Basis Shadow Armor: +Decreases Physical and Magical Damage taken from Neutral elemental by additional 2%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24199# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Physical and Magical Damage taken from Shadow elemental by 1%. +-------------------------- +Refine Level +7: +Decreases Physical and Magical Damage taken from Shadow elemental by additional 1%. +-------------------------- +Refine Level +9: +Decreases Physical and Magical Damage taken from Shadow elemental by additional 1%. +-------------------------- +When equipped with Hallowed Shadow Armor: +Decreases Physical and Magical Damage taken from Shadow elemental by additional 2%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24200# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Physical and Magical Damage taken from Water elemental by 1%. +-------------------------- +Refine Level +7: +Decreases Physical and Magical Damage taken from Water elemental by additional 1%. +-------------------------- +Refine Level +9: +Decreases Physical and Magical Damage taken from Water elemental by additional 1%. +-------------------------- +When equipped with Saharic Shadow Armor: +Decreases Physical and Magical Damage taken from Water elemental by additional 2%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24201# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Physical and Magical Damage taken from Earth elemental by 1%. +-------------------------- +Refine Level +7: +Decreases Physical and Magical Damage taken from Earth elemental by additional 1%. +-------------------------- +Refine Level +9: +Decreases Physical and Magical Damage taken from Earth elemental by additional 1%. +-------------------------- +When equipped with Underneath Shadow Armor: +Decreases Physical and Magical Damage taken from Earth elemental by additional 2%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24202# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Physical and Magical Damage taken from Fire elemental by 1%. +-------------------------- +Refine Level +7: +Decreases Physical and Magical Damage taken from Fire elemental by additional 1%. +-------------------------- +Refine Level +9: +Decreases Physical and Magical Damage taken from Fire elemental by additional 1%. +-------------------------- +When equipped with Flame Shadow Armor: +Decreases Physical and Magical Damage taken from Fire elemental by additional 2%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24203# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Physical and Magical Damage taken from Wind elemental by 1%. +-------------------------- +Refine Level +7: +Decreases Physical and Magical Damage taken from Wind elemental by additional 1%. +-------------------------- +Refine Level +9: +Decreases Physical and Magical Damage taken from Wind elemental by additional 1%. +-------------------------- +When equipped with Windy Shadow Armor: +Decreases Physical and Magical Damage taken from Wind elemental by additional 2%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24204# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Physical and Magical Damage taken from Poison elemental by 1%. +-------------------------- +Refine Level +7: +Decreases Physical and Magical Damage taken from Poison elemental by additional 1%. +-------------------------- +Refine Level +9: +Decreases Physical and Magical Damage taken from Poison elemental by additional 1%. +-------------------------- +When equipped with Envenom Shadow Armor: +Decreases Physical and Magical Damage taken from Poison elemental by additional 2%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24205# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Physical and Magical Damage taken from Holy elemental by 1%. +-------------------------- +Refine Level +7: +Decreases Physical and Magical Damage taken from Holy elemental by additional 1%. +-------------------------- +Refine Level +9: +Decreases Physical and Magical Damage taken from Holy elemental by additional 1%. +-------------------------- +When equipped with Damned Shadow Armor: +Decreases Physical and Magical Damage taken from Holy elemental by additional 2%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24206# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Physical and Magical Damage taken from Ghost elemental by 1%. +-------------------------- +Refine Level +7: +Decreases Physical and Magical Damage taken from Ghost elemental by additional 1%. +-------------------------- +Refine Level +9: +Decreases Physical and Magical Damage taken from Ghost elemental by additional 1%. +-------------------------- +When equipped with Geist Shadow Armor: +Decreases Physical and Magical Damage taken from Ghost elemental by additional 2%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24207# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Physical and Magical Damage taken from Undead elemental by 1%. +-------------------------- +Refine Level +7: +Decreases Physical and Magical Damage taken from Undead elemental by additional 1%. +-------------------------- +Refine Level +9: +Decreases Physical and Magical Damage taken from Undead elemental by additional 1%. +-------------------------- +When equipped with Divine Shadow Armor: +Decreases Physical and Magical Damage taken from Undead elemental by additional 2%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24208# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +For each 4 Refine Levels: +Increases experience gained from defeating monsters by 1%. +-------------------------- +When equipped with Expert Shadow Shield: +Increases experience gained from defeating monsters by additional 1%. +-------------------------- +Total Refine Level of entire set at least +15: +Increases experience gained from defeating monsters by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 150 +Maximum Base Level 175 +# +24209# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +For each 4 Refine Levels: +Increases experience gained from defeating monsters by 1%. +-------------------------- +When equipped with Expert Shadow Shoes: +Increases experience gained from defeating monsters by additional 1%. +-------------------------- +Total Refine Level of entire set at least +15: +Increases experience gained from defeating monsters by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 150 +Maximum Base Level 175 +# +24210# +Shoes that can be worn on top of the gear. Most effective when worn as part of a set. +-------------------------- +Increases experience gained from monsters by 1% per 1 refine rates. +-------------------------- +Set Bonus +Beginner's Shadow Shield +Beginner's Shadow Shoes +Increases experience gained from monsters by 10%. +Increases experience gained from monsters by an additional 10% if the sum of refine rate is 15 or higher. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Maximum Base Level 49 +# +24211# +A small shield that can be worn on top of the arm. Most effective when worn as part of a set. +-------------------------- +Increases experience gained from monsters by 1% per 1 refine rates. +-------------------------- +Set Bonus +Beginner's Shadow Shield +Beginner's Shadow Shoes +Increases experience gained from monsters by 10%. +Increases experience gained from monsters by an additional 10% if the sum of refine rate is 15 or higher. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Maximum Base Level 49 +# +24212# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases experience gained from monsters by 1% Per 2 Refine Rates. +-------------------------- +Set Bonus: +Rookies's Shadow Shield +Rookies's Shadow Shoes +Increases experience gained from monsters by 5%. +-------------------------- +Increases experience gained from monsters by an additional 5% if the sum of refine rate is 15 or higher. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 50 +Maximum Base Level 99 +# +24213# +A small shield that can be worn on top of the arm. Most effective when worn as part of a set. +-------------------------- +Increases experience gained from monsters by 1% Per 2 Refine Rates. +-------------------------- +Set Bonus: +Rookies's Shadow Shield +Rookies's Shadow Shoes +Increases experience gained from monsters by 5%. +-------------------------- +Increases experience gained from monsters by an additional 5% if the sum of refine rate is 15 or higher. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 50 +Maximum Base Level 99 +# +24214# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +For each 3 Refine Levels: +Increases experience gained from defeating monsters by 1%. +-------------------------- +When equipped with Advanced Shadow Shield: +Increases experience gained from defeating monsters by additional 2%. +-------------------------- +Total Refine Level of entire set at least +15: +Increases experience gained from defeating monsters by additional 2%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 100 +Maximum Base Level 149 +# +24215# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +For each 3 Refine Levels: +Increases experience gained from defeating monsters by 1%. +-------------------------- +When equipped with Advanced Shadow Shoes: +Increases experience gained from defeating monsters by additional 2%. +-------------------------- +Total Refine Level of entire set at least +15: +Increases experience gained from defeating monsters by additional 2%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 100 +Maximum Base Level 149 +# +24216# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect +-------------------------- +1% chance to increase ATK by 5*Refine Level for 3 sec when dealing physical attacks. +-------------------------- +For each Refine Level: +Increases trigger rate by 0.2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24217# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +HIT +5 +-------------------------- +For each 2 Refine Levels: +HIT +1 +-------------------------- +Refine Level +7: +ASPD +1 +-------------------------- +When equipped with Blitz Shadow Pendant: +For each Refine Level of entire set: +ATK +1 +-------------------------- +Total Refine Level of entire set at least +15: +ASPD +1 +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24218# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +ATK +5 +-------------------------- +For each 2 Refine Levels: +ATK +1 +-------------------------- +Refine Level +7: +ASPD +1 +-------------------------- +When equipped with Blitz Shadow Earring: +For each Refine Level of entire set: +ATK +1 +-------------------------- +Total Refine Level of entire set at least +15: +ASPD +1 +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24219# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Refine Level at least +2: +1% chance to auto-cast Level (Refine Level/2) Cold Bolt when dealing melee physical attacks. +-------------------------- +For each Refine Level: +Increases trigger rate by 0.2% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24220# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Refine Level at least +2: +1% chance to auto-cast Level (Refine Level/2) Fire Bolt when dealing melee physical attacks. +-------------------------- +For each Refine Level: +Increases trigger rate by 0.2% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24221# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Refine Level at least +2: +1% chance to auto-cast Level (Refine Level/2) Lightning Bolt when dealing melee physical attacks. +-------------------------- +For each Refine Level: +Increases trigger rate by 0.2% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24222# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Refine Level +2: +1% chance to auto-cast Level (Refine Level/2) Earth Spike when dealing melee physical attacks. +-------------------------- +For each Refine Level: +Increases trigger rate by 0.2% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24223# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +-------------------------- +For each 2 Refine Levels: +ATK +1%. +-------------------------- +When equipped with Force Shadow Earring and Force Shadow Pendant: +ATK +1%. +-------------------------- +Total Refine Level of entire set at least +20: +ATK +1%. +-------------------------- +Total Refine Level of entire set at least +25: +ATK +1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 100 +3rd classes +# +24224# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +-------------------------- +Refine Level +7: +ATK +1%. +-------------------------- +Refine Level +9: +ATK +1%. +-------------------------- +When equipped with Force Shadow Earring and Force Shadow Pendant: +ATK +10 +-------------------------- +Total Refine Level of entire set at least +20: +ATK +1%. +-------------------------- +Total Refine Level of entire set at least +25: +ATK +1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 70 +# +24225# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +ATK +5 +-------------------------- +For each Refine Level: +ATK +1 +-------------------------- +Refine Level +7: +MaxHP +1% +-------------------------- +Refine Level +9: +ATK +1%. +-------------------------- +When equipped with Force Shadow Weapon and Force Shadow Pendant: +ATK +10 +-------------------------- +Total Refine Level of entire set at least +20: +ATK +1%. +-------------------------- +Total Refine Level of entire set at least +25: +ATK +1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 70 +# +24226# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +ATK +5 +-------------------------- +For each Refine Level: +ATK +1 +-------------------------- +Refine Level +7: +MaxHP +1% +-------------------------- +Refine Level +9: +ATK +1%. +-------------------------- +When equipped with Force Shadow Weapon and Force Shadow Earring: +ATK +10 +-------------------------- +Total Refine Level of entire set at least +20: +ATK +1%. +-------------------------- +Total Refine Level of entire set at least +25: +ATK +1%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 70 +# +24227# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +MATK +10 +-------------------------- +For each Refine Level: +MATK +1% +-------------------------- +When equipped with Soul Shadow Earring and Soul Shadow Pendant: +MATK +1% +-------------------------- +Total Refine Level of entire set at least +20: +MATK +1% +-------------------------- +Total Refine Level of entire set at least +25: +MATK +1% +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 100 +3rd classes +# +24228# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +MATK +1% +-------------------------- +Refine Level +7: +MATK +1% +-------------------------- +Refine Level +9: +MATK +1% +-------------------------- +When equipped with Soul Shadow Earring and Soul Shadow Pendant: +MATK +10 +-------------------------- +Total Refine Level of entire set at least +20: +MATK +1% +-------------------------- +Total Refine Level of entire set at least +25: +MATK +1% +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 70 +# +24229# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MATK +5 +-------------------------- +For each Refine Level: +MATK +1 +-------------------------- +Refine Level +7: +MaxHP +1% +-------------------------- +Refine Level +9: +MATK +1% +-------------------------- +When equipped with Soul Shadow Weapon and Soul Shadow Pendant: +MATK +10 +-------------------------- +Total Refine Level of entire set at least +20: +MATK +1% +-------------------------- +Total Refine Level of entire set at least +25: +MATK +1% +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 70 +# +24230# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MATK +5 +-------------------------- +For each Refine Level: +MATK +1 +-------------------------- +Refine Level +7: +MaxHP +1% +-------------------------- +Refine Level +9: +MATK +1% +-------------------------- +When equipped with Soul Shadow Weapon and Soul Shadow Earring: +MATK +10 +-------------------------- +Total Refine Level of entire set at least +20: +MATK +1% +-------------------------- +Total Refine Level of entire set at least +25: +MATK +1% +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 70 +# +24231# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +FLEE +5 +-------------------------- +For each 2 Refine Levels: +FLEE +1 +-------------------------- +Refine Level +7: +ASPD +1 +-------------------------- +Refine Level +9: +ASPD +1 +-------------------------- +When equipped with Blitz Shadow Shield: +FLEE +5 +-------------------------- +Total Refine Level of entire set at least +15: +ASPD +1 +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24232# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Critical +5 +-------------------------- +For each 2 Refine Levels: +Critical +1 +-------------------------- +Refine Level +7: +ASPD +1 +-------------------------- +Refine Level +9: +ASPD +1 +-------------------------- +When equipped with Blitz Shadow Shoes: +FLEE +5 +-------------------------- +Total Refine Level of entire set at least +15: +ASPD +1 +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24233# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +5 +MATK +5 +-------------------------- +For each 2 Refine Levels: +MATK +1% +ATK +1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 100 +# +24234# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Physical Damage against enemies of Large size by 1%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Large size by additional 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Large size by additional 2%. +-------------------------- +When equipped with Titan Shadow Pendant: +ATK +5 +-------------------------- +Total Refine Level of entire set at least +15: +Increases Physical Damage against enemies of Large size by additional 2%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24235# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Physical Damage against enemies of Large size by 1%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Large size by additional 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Large size by additional 2%. +-------------------------- +When equipped with Titan Shadow Earring: +ATK +5 +-------------------------- +Total Refine Level of entire set at least +15: +Increases Physical Damage against enemies of Large size by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24236# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage against medium size monsters by 1%. +-------------------------- +If upgrade level is 7 or higher,: +increases damage against medium size monsters by additional 1%. +-------------------------- +If upgrade level is 9 or higher,: +increases damage against medium size monsters by additional 2%. +-------------------------- +When equipped with Boned Shadow Pendant: +ATK +5 +-------------------------- +Total Refine Level of entire set at least +15: +increases damage against medium size monsters by additional 2%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24237# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage against medium size monsters by 1%. +-------------------------- +If upgrade level is 7 or higher,: +increases damage against medium size monsters by additional 1%. +-------------------------- +If upgrade level is 9 or higher,: +increases damage against medium size monsters by additional 2%. +-------------------------- +When equipped with Boned Shadow Earring: +ATK +5 +-------------------------- +Total Refine Level of entire set at least +15: +increases damage against medium size monsters by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24238# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Physical Damage against enemies of Small size by 1%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Small size by additional 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Small size by additional 2%. +-------------------------- +When equipped with Gigantic Shadow Pendant: +ATK +5 +-------------------------- +Total Refine Level of entire set at least +15: +Increases Physical Damage against enemies of Small size by additional 2%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24239# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Physical Damage against enemies of Small size by 1%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Small size by additional 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Small size by additional 2%. +-------------------------- +When equipped with Gigantic Shadow Earring: +ATK +5 +-------------------------- +Total Refine Level of entire set at least +15: +Increases Physical Damage against enemies of Small size by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24240# +MATK +5 +Reduces SP comsumption of skills by 1%. +Reduces variable casting time by 1% per 2 refine rate. +-------------------------- +When Caster Shadow Shield and Caster Shadow Shoes Caster Shadow Armor are equipped together,: +reduces SP comsumption of skills by 1%. + +Reduces variable casting time by 1% per 5 refine rate of set. +-------------------------- +If the sum of refine rate is 25 or higher: +reduces SP comsumption of skills by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24241# +MATK +5 +Reduces SP comsumption of skills by 1%. +Reduces variable casting time by 1% per 2 refine rate. +-------------------------- +When Caster Shadow Shield and Caster Shadow Shoes Caster Shadow Armor are equipped together,: +reduces SP comsumption of skills by 1%. + +Reduces variable casting time by 1% per 5 refine rate of set. +-------------------------- +If the sum of refine rate is 25 or higher: +reduces SP comsumption of skills by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24242# +MATK +5. +Reduces SP consumption of skills 1%. +-------------------------- +Every 2 refine levels, Reduces Variable Cast Time by 1%. +-------------------------- +Set Bonus +Caster Shadow Armor +Caster Shadow Shield +Caster Shadow Shoes + +Reduces SP consumption of skills 1%, +Every 5 refine level of set, Reduces Variable Cast Time by 1%. + +If sum total refine level of the set is +25 or higher, Reduces Variable Cast Time by 1%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24243# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases After Skill Delay by 1%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by additional 1%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by additional 1%. +-------------------------- +When equipped with Reload Shadow Armor and Reload Shadow Shield: +Decreases After Skill Delay by additional 1%. +-------------------------- +Total Refine Level of entire set at least +25: +Decreases After Skill Delay by additional 5%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24244# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases After Skill Delay by 1%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by additional 1%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by additional 1%. +-------------------------- +When equipped with Reload Shadow Armor and Reload Shadow Shoes: +Decreases After Skill Delay by additional 1%. +-------------------------- +Total Refine Level of entire set at least +25: +Decreases After Skill Delay by additional 5%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24245# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases After Skill Delay by 1%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by additional 1%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by additional 1%. +-------------------------- +When equipped with Reload Shadow Shield and Reload Shadow Shoes: +Decreases After Skill Delay by additional 1%. +-------------------------- +Total Refine Level of entire set at least +25: +Decreases After Skill Delay by additional 5%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24246# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Reduces SP cost of Bash by 20%. +-------------------------- +For every refine level: +reduces SP cost of Bash by 3%. +-------------------------- +Item Combo +Swordman Shadow Pendant +Swordman Shadow Earring +ATK +1% +MaxHP +1% +-------------------------- +If total refine levels of entire set at least +10: +Weapon ATK Power +2% +MaxHP +2% +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24247# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increase Damage of Mammonite by 10% +For every refine level, increase of the Mammonite damage by 1% +-------------------------- +Set Bonus +Merchant Shadow Pendant +ATK+1% +MaxHP +1%. +-------------------------- +If total refine levels of entire set at least +10: +ATK+2% +MaxHP +2%. +-------------------------- +Class: Shadow Earring +Weight: 0 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +24248# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Reduces the SP cost of Heal by 20%. +-------------------------- +For every upgrade level Acolyte Shadow Earring: +reduces SP cost of Heal by an additional 3%. +-------------------------- +When equipped with Acolyte Shadow Pendant: +MATK +1% +MaxSP +1% +-------------------------- +If total upgrade levels of entire set at least +10: +MATK +2% +MaxSP +2% +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24249# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Reduces variable casting time of Fire Bolt, Cold Bolt and Lightning Bolt by 20%. +-------------------------- +For every upgrade level of Magician Shadow Earring, reduces variable casting time of Fire Bolt, Cold Bolt and Lightning Bolt by an additional 3%. +-------------------------- +When equipped with Magician Shadow Pendant: +MATK +1% +MaxSP +1% +-------------------------- +If combined upgrade levels of entire set are +10 or higher: +MATK +2% +MaxSP +2% +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24250# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases the damage of Magnum Break by 20%. +-------------------------- +For every upgrade level of Swordman Shadow Pendant +Increases Magnum Break damage by an additional 5%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24251# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases the damage of Cart Revolution by 20%. +For every upgrade level of Merchant Shadow Pendant, increases Cart Revolution damage by an additional 3%. +-------------------------- +Class: Shadow Pendant +Weight: 0 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +24252# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases the damage of Holy Light by 50%. +-------------------------- +For every upgrade level Acolyte Shadow Pendant: +increases Holy Light damage by an additional 5%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24253# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Envenom by 20%. +-------------------------- +For every upgrade level: +Increases damage of Envenom by an additional 5%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24254# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases the damage of [Fire Wall] by 20%. +-------------------------- +For every upgrade level of Magician Shadow Pendant, increases [Fire Wall] damage by an additional 5%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24255# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases the damage of Arrow Shower by 20%. +-------------------------- +For every upgrade level of Archer Shadow Pendant: +Increases Arrow Shower damage by an additional 5%. +-------------------------- +Class: Shadow Pendant +Weight: 0 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +24256# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Pierce by 20%. +-------------------------- +For each Refine Level: +Increases damage of Pierce by additional 5%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24257# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption of Holy Cross by 20%. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Holy Cross by additional 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24258# +Shoes worn on top of normal shoes for additional effect. Can be equipped alone but the effect is insignificant. +-------------------------- +Reduces the SP cost of Hammer Fall and Adrenaline Rush by 20%. +-------------------------- +For every upgrade level of Blacksmith Shadow Shoes: +reduces SP cost by an additional 5%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24259# +Shoes worn on top of normal shoes for additional effect. Can be equipped alone but the effect is insignificant. + +When equipped by Alchemist classes, increases Healing skills by 30%. + +For every upgrade level of Alchemist Shadow Shoes, increases Healing skills by an additional 7%. +-------------------------- +Class: Shadow Shoes +Weight: 0 +Requires Level: 1 +Usable By: All Jobs +# +24260# +Shoes worn on top of normal shoes for additional effect. Can be equipped alone but the effect is insignificant. +-------------------------- +Reduces the SP cost of Lex Aeterna and Kyrie Eleison by 20%. +-------------------------- +For every upgrade level of Priest Shadow Shoes, reduces SP cost by an additional 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24261# +Shoes worn on top of normal shoes for additional effect. Can be equipped alone but the effect is insignificant. +-------------------------- +Increases the damage of Chain Combo by 20%. +-------------------------- +For every upgrade level of Monk Shadow Shoes: +increases Chain Combo damage by an additional 5%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24262# +Shoes worn on top of normal shoes for additional effect. Can be equipped alone but the effect is insignificant. +-------------------------- +Increases the damage of Grim Tooth by 20%. +-------------------------- +For every upgrade level of Assassin Shadow Shoes, increase Grim Tooth damage by an additional 5% +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24263# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +When equipped by Rogue classes: +Increases ATK based on Sword Mastery skill level. + +For each Refine Level equal or above +6: +Increases ATK based on Sword Mastery skill level. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24264# +Shoes worn on top of normal shoes for additional effect. Can be equipped alone but the effect is insignificant. +-------------------------- +Reduces the variable cast time of Lord of Vermillion, Storm Gust and Meteor Storm by 20%. +-------------------------- +For every upgrade level of Wizard Shadow Shoes, reduce the variable cast time of Lord of Vermillion, Storm Gust and Meteor Storm by an additional 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24265# +Shoes worn on top of normal shoes for additional effect. Can be equipped alone but the effect is insignificant. +-------------------------- +Increases damage of Heaven's Drive by 20%. +Increases damage of Heaven's Drive by additional 5% per refine rate. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24266# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Blitz Beat by 20%. +-------------------------- +For each Refine Level: +Increases damage of Blitz Beat by additional 5%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24267# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases ATK based on Musical Lesson skill level. +-------------------------- +For each Refine Level equal or above +6: +Increases ATK based on Musical Lesson skill level. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24268# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases ATK based on Dancing Lesson skill level. +-------------------------- +For each Refine Level equal or above +6: +Increases ATK based on Dancing Lesson skill level. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24269# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption of Bowling Bash by 20%. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Bowling Bash by additional 3%. +-------------------------- +When equipped with Knight Shadow Shoes: +Decreases SP Consumption of Pierce by 20%. +Increases damage of Bowling Bash by additional 20%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24270# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Grand Cross by 20%. +-------------------------- +For each Refine Level: +Increases damage of Grand Cross by additional 5%. +-------------------------- +When equipped with Crusader Shadow Shoes: +Decreases SP Consumption of Grand Cross by 20%. +Increases damage of Grand Cross by additional 20%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24271# +An armor worn on top of normal armor for additional defense. Can be equipped alone but the defense effect is insignificant. +-------------------------- +When Weapon Perfection is used: +Increases Physical Damage against enemies of all size monsters by 5% for 50 seconds. +-------------------------- +Each refine rate above 6 +increases damage by additional 1% per refine rate. When equipped with Blacksmith Shadow Shoes +-------------------------- +When equipped by Blacksmith classes: +increases damage against all size monsters by 3%. +Decreases SP Consumption of Weapon Perfection by 20%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24272# +An armor worn on top of normal armor for additional defense. Can be equipped alone but the defense effect is insignificant. + +Increases ATK based on the Learning Potion skill level. + +If upgrade level is +6 or higher, +For every upgrade level of Alchemist Shadow Armor, increases ATK based on the Learning Potion skill level. + +When equipped with Alchemist Shadow Shoes, +When equipped by Alchemist, enables the use of Level 3 Adrenaline Rush. +-------------------------- +Class: Shadow Armor +Weight: 0 +Requires Level: 1 +Usable By: All Jobs +# +24273# +An armor worn on top of normal armor for additional defense. Can be equipped alone but the defense effect is insignificant. +-------------------------- +Increases damage of Magnus Exorcismus by 20%. +For every upgrade level of Priest Shadow Armor, increases Magnus Exorcismus damage by an additional 5%. +-------------------------- +When equipped with Priest Shadow Shoes: +When equipped by Priest classes: +MATK +3% +Reduces the variable cast time of Magnus Exorcismus by 40%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24274# +An armor worn on top of normal armor for additional defense. Can be equipped alone but the defense effect is insignificant. +-------------------------- +Increases the damage of Throw Spirit Sphere and Occult Impaction by 20%. +-------------------------- +For every upgrade level of Monk Shadow Armor: +increases Throw Spirit Sphere and Occult Impaction damage by an additional 5%. +-------------------------- +When equipped with Monk Shadow Shoes: +Reduces the SP cost of Chain Combo, Throw Spirit Sphere and Occult Impaction by 20%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24275# +An armor worn on top of normal armor for additional defense. Can be equipped alone but the defense effect is insignificant. +-------------------------- +Reduces the SP cost of Sonic Blow by 20%. +-------------------------- +For every upgrade level of Assassin Shadow Armor, reduces the SP cost of Sonic Blow by an additional 3%. +-------------------------- +When equipped with Assassin Shadow Shoes: +Reduces the SP cost of Grim Tooth by 20%. +Increases the damage of Sonic Blow by 20%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24276# +An armor worn on top of normal armor for additional defense. Can be equipped alone but the defense effect is insignificant.. +-------------------------- +Increases the damage of Sightless Mind by 20%. +-------------------------- +For every upgrade level of Rogue Shadow Armor, increases Sightless Mind damage by an additional 5%. +-------------------------- +When equipped with Rogue Shadow Shoes: +Decreases SP Consumption of Raid by 20%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24277# +An armor worn on top of normal armor for additional defense. Can be equipped alone but the defense effect is insignificant. +-------------------------- +Increases the damage Jupitel Thunder by 10%. +-------------------------- +For every upgrade level of Wizard Shadow Armor, increases Jupitel Thunder damage by an additional 5%. +-------------------------- +When Equip With Wizard Shadow Shoes +Increases the damage of Meteor Storm, Storm Gust and Lord of Vermilion by 10%. +Reduces the variable cast time of Jupitel Thunder by 40%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24278# +An armor worn on top of normal armor for additional defense. Can be equipped alone but the defense effect is insignificant. +-------------------------- +When using Hindsight, increases attack speed as percent equal to refine rate for 50 seconds. +-------------------------- +If refine rate is 7 or higher, additional ASPD + 1 for 50 seconds when using Hindsight. +-------------------------- +If refine rate is 9 or higher, additional ASPD + 1 for 50 seconds when using Hindsight. +-------------------------- +When equipped with Sage Shadow Shoes: +Reduces variable casting time of Heaven's Drive by 40%. +-------------------------- +When equipped by Sage classes: +Matk +3% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24279# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Claymore Trap and Land Mine by 20%. +-------------------------- +For each Refine Level: +Increases damage of Claymore Trap and Land Mine by additional 5%. +-------------------------- +When equipped with Hunter Shadow Shoes: +When equipped by Hunter classes: +Increases Physical Damage against enemies of all size monsters by 3%. +Decreases SP Consumption of Claymore Trap and Land Mine by 20%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24280# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +When Bard classes uses Dissonance, Poem of Bragi, Assassin Cross on Sunset, Apple of Idun or Whistle: +Recovers SP by 5 every 5 seconds for 30 seconds. +-------------------------- +For each Refine Level: +Increases SP Recovery bonus by 1. +-------------------------- +When equipped with Bard Shadow Shoes: +When Adaptation to Circumstances is used: +Increases ASPD and movement speed drastically for 5 seconds. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24281# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +When Bard classes uses Don't Forget Me, Service for you, Fortune's Kiss, Humming or Ugly Dance: +Recovers SP by 5 every 5 seconds for 30 seconds. +-------------------------- +For each Refine Level: +Increases SP Recovery bonus by 1. +-------------------------- +When equipped with Dancer Shadow Shoes: +When Adaptation to Circumstances is used: +Increases ASPD and movement speed drastically for 5 seconds. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24282# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +MaxHP +1000 +MaxSP +200 +-------------------------- +For each Level of One-Handed Sword Mastery: +Ignores physical defense of Normal class by 3%. +-------------------------- +For each Level of Increases SP Recovery: +Ignores magical defense of Normal class by 3%. +-------------------------- +For each Refine Level: +Piercing physical and magical defense of Normal class by additional 3%. +-------------------------- +Refine Level +7: +MaxHP +5% +MaxSP +5% +-------------------------- +Refine Level +9: +MaxHP +5% +MaxSP +5% +Increases SP Recovery Rate by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Novice +# +24283# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ASPD +1 +-------------------------- +For each Level of Snake Eyes: +Ignores physical defense of Normal class by 3%. +-------------------------- +For each Refine Level: +Piercing physical defense of Normal class by additional 3%. +-------------------------- +Refine Level +7: +ASPD +1 +Increases Ranged Physical Damages by 3%. +-------------------------- +Refine Level +9: +ASPD +1 +Increases Ranged Physical Damages by additional 5%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Gunslinger +# +24284# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ASPD +1 +-------------------------- +For each Refine Level: +ATK +1% +MATK +1% +-------------------------- +Refine Level +7: +ASPD +1 +MaxHP +1000 +MaxSP +200 +-------------------------- +Refine Level +9: +ASPD +1 +MaxHP +10% +MaxSP +10% +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Taekwondo Boy/Girl +# +24285# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +3% +MATK +3% +-------------------------- +Decreases Explosive Kunai skill cooldown by 2 seconds. +-------------------------- +For each Level of Ninja Mastery: +MATK +3 +-------------------------- +Refine Level +7: +ATK +3% +MATK +3% +-------------------------- +Refine Level +9: +ATK +4% +MATK +4% +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Ninja +# +24286# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +For each Refine Level: +Decreases Variable Casting Time by additional 1%. +-------------------------- +If skill Power of Earth is learned: +Decreases Fixed Casting Time by 0.1 second. +-------------------------- +If skill Power of Sea is learned: +Decreases Fixed Casting Time by additional 0.1 second. +Decreases SP Consumption by 3%. +-------------------------- +Refine Level +7: +MATK +5% +-------------------------- +Refine Level +9: +MATK +5% +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Summoner (Doram) +# +24287# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by 1%. +-------------------------- +When Power of Life is learned: +ASPD +1 +-------------------------- +Refine Level +7: +Perfect Dodge +2 +-------------------------- +Refine Level +9: +Perfect Dodge +3 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Summoner (Doram) +# +24288# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases damage of Sonic Wave by 20%. +-------------------------- +For each Refine Level: +Increases damage of Sonic Wave by additional 5%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Rune Knight +# +24289# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases damage of Cannon Spear by 20%. +-------------------------- +For each Refine Level: +Increases damage of Cannon Spear by additional 5%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Royal Guard +# +24290# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases damage of Vulcan Arms by 20%. +-------------------------- +For each Refine Level: +Increases damage of Vulcan Arms by additional 5%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +24291# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases damage of Cart Tornado by 20%. +-------------------------- +For each Refine Level: +Increases damage of Cart Tornado by additional 5%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Genetic +# +24292# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases damage of Duple Light by 20%. +-------------------------- +For each Refine Level: +Increases damage of Duple Light by additional 5%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Archbishop +# +24293# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Decreases Rampage Blaster skill cooldown by 2 seconds. +-------------------------- +For each Refine Level: +Decreases Rampage Blaster skill cooldown by additional 0.5 seconds. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Sura +# +24294# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Decreases SP Consumption of Dark Illusion by 20%. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Dark Illusion by additional 3%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Guillotine Cross +# +24295# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases damage of Triangle Shot by 20%. +-------------------------- +For each Refine Level: +Increases damage of Triangle Shot by additional 5%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Shadow Chaser +# +24296# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases damage of Drain Life by 20%. +-------------------------- +For each Refine Level: +Increases damage of Drain Life by additional 5%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Warlock +# +24297# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Decreases Diamond Dust cooldown time by 1 seconds. +-------------------------- +For each Refine Level: +Decreases Diamond Dust cooldown time by additional 0.3 seconds. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Sorcerer +# +24298# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases damage of Cluster Bomb by 20%. +-------------------------- +For each Refine Level: +Increases damage of Cluster Bomb by additional 5%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Ranger +# +24299# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +MaxHP +3% +-------------------------- +For each Refine Level: +DEF +1 multiplied with total skill level of Minstrel's exclusive skills: +Echo Song, Harmonize and Windmill Rush +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Minstrel +# +24300# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +MaxHP +3% +-------------------------- +For each Refine Level: +DEF +1 multiplied with total skill level of Wanderer's exclusive skills: +Moonlight Serenade, Swing Dance and Symphony of Lover +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Wanderer +# +24301# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +When Enchant Blade is used: +For each Refine Level: +Increases ASPD by 1% for 50 seconds. +-------------------------- +Refine Level +7: +When Enchant Blade is used: +Increases ASPD by 1 for 50 seconds. +-------------------------- +Refine Level +9: +When Enchant Blade is used: +Increases ASPD by additional 1 for 50 seconds. +-------------------------- +When equipped with Rune Knight Shadow Weapon: +Decreases SP Consumption of Sonic Wave by 20% +Random chance to auto-cast Level 3 Ignition Break when dealing physical damage. +-------------------------- +When equipped with 2 types of Swordman Shadow, Knight Shadow and Rune Knight Shadow Equipment: +All Stats +10 +MaxHP +5% +MaxSP +5% +Ignores physical and magical defense of Normal class by 50%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Rune Knight +# +24302# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Earth Drive by 20%. +-------------------------- +For each Refine Level: +Increases damage of Earth Drive by additional 5%. +-------------------------- +When equipped with Royal Guard Shadow Weapon: +Decreases SP Consumption of Cannon Spear by 20%. +Enables the use of Level 3 Chemical Protection Shield. +-------------------------- +When equipped with 2 types of Swordman Shadow, Crusader Shadow and Royal Guard Shadow Equipment: +All Stats +10 +MaxHP +5% +MaxSP +5% +Ignores physical and magical defense of Normal class by 50%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Royal Guard +# +24303# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Flame Launcher by 20%. +-------------------------- +For each Refine Level: +Increases damage of Flame Launcher by additional 5%. +-------------------------- +When equipped with Mechanic Shadow Weapon: +Increases damage of Vulcan Arms by 20%. +Decreases SP Consumption of Flame Launcher by 20%. +-------------------------- +When equipped with 2 types of Merchant Shadow, Blacksmith Shadow and Mechanic Shadow Equipment: +All Stats +10 +MaxHP +5% +MaxSP +5% +Ignores physical and magical defense of Normal class by 50%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +24304# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxHP +3% +-------------------------- +DEF +1 multiplied with total skill level of Genetic's related skills: +Cart Tornado, Cart Cannon and Cart Boost +-------------------------- +When equipped with Genetic Shadow Weapon: +MaxHP +2% +Decreases Cart Tornado skill cooldown by 1 second. +Decreases Variable Casting Time of Cart Boost by 100%. +-------------------------- +When equipped with 2 types of Merchant Shadow, Alchemist Shadow and Genetic Shadow Equipment: +All Stats +10 +MaxHP +5% +MaxSP +5% +Ignores physical and magical defense of Normal class by 50%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Genetic +# +24305# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Adoramus by 20%. +-------------------------- +For each Refine Level: +Increases damage of Adoramus by additional 5%. +-------------------------- +When equipped with Archbishop Shadow Weapon: +Increases damage of Duple Light by 20%. +Decreases Adoramus skill cooldown by 1 second. +-------------------------- +When equipped with 2 types of Acolyte Shadow, Priest Shadow and Archbishop Shadow Equipment: +All Stats +10 +MaxHP +5% +MaxSP +5% +Ignores physical and magical defense of Normal class by 50%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Archbishop +# +24306# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Sky Net Blow by 20%. +-------------------------- +For each Refine Level: +Increases damage of Sky Net Blow by additional 5%. +-------------------------- +When equipped with Sura Shadow Weapon: +Increases damage of Rampage Blaster by 20%. +Decreases SP Consumption of Sky Net Blow by 20%. +-------------------------- +When equipped with 2 types of Acolyte Shadow, Monk Shadow and Sura Shadow Equipment: +All Stats +10 +MaxHP +5% +MaxSP +5% +Ignores physical and magical defense of Normal class by 50%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Sura +# +24307# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Dark Claw skill cooldown by 10 seconds. +-------------------------- +For each Refine Level: +Decreases Dark Claw skill cooldown by additional 2 seconds. +-------------------------- +When equipped with Guillotine Cross Shadow Weapon: +Increases damage of Dark Illusion by 20%. +Random chance to auto-cast Level 1 Dark Claw when dealing physical damage. +-------------------------- +When equipped with 2 types of Thief Shadow, Assassin Shadow and Guillotine Cross Shadow Equipment: +All Stats +10 +MaxHP +5% +MaxSP +5% +Ignores physical and magical defense of Normal class by 50%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Guillotine Cross +# +24308# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +When Auto Shadow Spell is used: +For each Refine Level: +Increases Attack Speed (Decreases After Attack Delay by 1%) for 50 seconds. +-------------------------- +Refine Level +7: +Random chance to increase ASPD by 1 for 50 sec when using Auto Shadow Spell. +-------------------------- +Refine Level +9: +Random chance to increase ASPD by 1 for 50 sec when using Auto Shadow Spell. +-------------------------- +When equipped with Shadow Chaser Shadow Weapon: +Increases damage of Triangle Shot by 20%. +ATK +2% +MATK +2% +Increases Ranged Physical Damage by 2%. +-------------------------- +When equipped with 2 types of Thief Shadow, Rogue Shadow and Shadow Chaser Shadow Equipment: +All Stats +10 +MaxHP +5% +MaxSP +5% +Ignores physical and magical defense of Normal class by 50%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Shadow Chaser +# +24309# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Earth Strain by 20%. +-------------------------- +For each Refine Level: +Increases damage of Earth Strain by additional 5%. +-------------------------- +When equipped with Warlock Shadow: +Decreases Life Drain cooldown by 1 second. +Decreases Earth Strain cooldown by 4 seconds. +-------------------------- +When equipped with 2 types of Mage Shadow, Wizard Shadow and Warlock Shadow Equipment: +All Stats +10 +MaxHP +5% +MaxSP +5% +Ignores physical and magical defense of Normal class by 50%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Warlock +# +24310# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Earth Grave skill cooldown by 1 second. +-------------------------- +For each Refine Level: +Decreases Earth Grave skill cooldown by additional 0.3 seconds. +-------------------------- +When equipped with Sorcerer Shadow Weapon: +Increases damage of Earth Grave and Diamond Dust by 20%. +-------------------------- +When equipped with 2 types of Mage Shadow, Sage Shadow and Sorcerer Shadow Equipment: +All Stats +10 +MaxHP +5% +MaxSP +5% +Ignores physical and magical defense of Normal class by 50%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Sorcerer +# +24311# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption of Aimed Bolt by 20%. +-------------------------- +For each Refine Level: +Decreases SP Consumption of Aimed Bolt by additional 5%. +-------------------------- +When equipped with Ranger Shadow Weapon: +Increases damage of Cluster Bomb and Aimed Bolt by 20%. +-------------------------- +When equipped with 2 types of Archer Shadow, Hunter Shadow and Ranger Shadow Equipment: +All Stats +10 +MaxHP +5% +MaxSP +5% +Ignores physical and magical defense of Normal class by 50%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Ranger +# +24312# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxSP +3% +-------------------------- +For each Refine Level: +MDEF +1 multiplied by every 5 skill levels of Minstrel's exclusive skills: +Echo Song, Harmonize and Windmill Rush +-------------------------- +When equipped with Minstrel Shadow Weapon: +MaxHP +2% +MaxSP +2% +For each 2 Level of Lesson: +Increases Ranged Physical Damage by 1%. +-------------------------- +When equipped with 2 types of Archer Shadow, Bard Shadow and Minstrel Shadow Equipment: +All Stats +10 +MaxHP +5% +MaxSP +5% +Ignores physical and magical defense of Normal class by 50%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Minstrel +# +24313# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxSP +3% +-------------------------- +MDEF +1 multiplied by every 5 skill levels of Wanderer's exclusive skills: +Moonlight Serenade, Swing Dance and Symphony of Lover +-------------------------- +When equipped with Wanderer Shadow Weapon: +MaxHP +2% +MaxSP +2% +For each 2 Level of Lesson: +Increases Ranged Physical Damage by 1%. +-------------------------- +When equipped with 2 types of Archer Shadow, Dancer Shadow and Wanderer Shadow Equipment: +All Stats +10 +MaxHP +5% +MaxSP +5% +Ignores physical and magical defense of Normal class by 50%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Wanderer +# +24314# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +ASPD +1 +-------------------------- +For each Level of Ninja Training: +ATK +3. +-------------------------- +When Ninja Aura is used: +ASPD +1 for 50 seconds. +-------------------------- +For each Refine Level: +Ignores physical and magical defense of Normal class by 4%. +-------------------------- +Refine Level +7: +Ignores physical and magical defense of Normal class by additional 10%. +-------------------------- +Refine Level +9: +Ignores physical and magical defense of Normal class by additional 10%. +-------------------------- +When equipped with Ninja Shadow Weapon: +All Stats +3 +MaxHP +2% +MaxSP +2% +Decreases SP Consumption by 10%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Ninja +# +24315# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +ATK +3% +MATK +3% +-------------------------- +For each Level of Peaceful Break: +Ignores physical defense of Normal class by 3%. +-------------------------- +For each Level of Happy Break: +Ignores magical defense of Normal class by additional 3%. +-------------------------- +For each Refine Level: +Ignores physical and magical defense of Normal class by additional 3%. +-------------------------- +Refine Level +7: +ATK +2% +MATK +2% +-------------------------- +Refine Level +9: +ATK +3% +MATK +3% +-------------------------- +When equipped with Taekwon Shadow Weapon: +All Stats +3 +MaxHP +2% +MaxSP +2% +Decreases SP Consumption by 10%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Taekwon +# +24316# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +ATK +3% +-------------------------- +When Arclouse Dash is used on yourself: +ASPD +1 for 50 seconds. +-------------------------- +For each Level of Lunatic Carrot Beat: +Decreases Lunatic Carrot Beat skill cooldown by 0.2 seconds. +-------------------------- +Refine Level +7: +Increases damage of Lunatic Carrot Beat by 5%. +-------------------------- +Refine Level +9: +Increases damage of Lunatic Carrot Beat by additional 5%. +-------------------------- +When equipped with Doram Physical Shadow Weapon: +All Stats +3 +MaxHP +2% +MaxSP +2% +Decreases SP Consumption by 10%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Summoner (Doram) +# +24317# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MATK +3% +-------------------------- +When using Bunch of Shrimp: +Recovers SP by 5 every 5 second for 30 seconds. +-------------------------- +For each Level of Catnip Meteor: +Decreases Catnip Meteor skill cooldown by 0.1 second. +-------------------------- +Refine Level +7: +Increases damage of Catnip Meteor by 5%. +-------------------------- +Refine Level +9: +Increases damage of Catnip Meteor by additional 5%. +-------------------------- +When equipped with Doram Magical Shadow Weapon: +All Stats +3 +MaxHP +2% +MaxSP +2% +Decreases SP Consumption by 10%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Summoner (Doram) +# +24318# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxHP +1000 +MaxSP +200 +-------------------------- +For each Level of Double Attack: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +For each Level of Owl's Eye: +Decreases Variable Casting Time by 2%. +-------------------------- +For each Refine Level: +Increases Attack Speed (Decreases After Attack Delay by 1%). +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +7: +ATK +2% +MATK +2% +-------------------------- +Refine Level +9: +ATK +3% +MATK +3% +-------------------------- +When equipped with Super Novice Shadow Weapon: +All Stats +3 +MaxHP +2% +MaxSP +2% +Decreases SP Consumption by 10%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Novice +# +24319# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Critical Damage by 5%. +-------------------------- +For each Refine Level: +Critical +1 +-------------------------- +For each Level of Single Action: +Critical +2 +-------------------------- +Refine Level +7: +Increases Critical Damage by 2%. +-------------------------- +Refine Level +9: +Increases Critical Damage by 3%. +-------------------------- +When equipped with Gunslinger Shadow Weapon: +All Stats +3 +MaxHP +2% +MaxSP +2% +Decreases SP Consumption by 10%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Gunslinger +# +24320# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +FLEE +5 +ATK +1% +MATK +1% +-------------------------- +For each 2 Refine Levels: +ATK +1% +MATK +1% +-------------------------- +When equipped with Hasty Shadow Armor: +FLEE +5 +-------------------------- +Total Refine Level of entire set at least +15: +Increases movement speed. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24321# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +ATK +5 +MaxHP +1% +-------------------------- +Refine Level +7: +MaxHP +2% +-------------------------- +When equipped with Bearer's Shadow Weapon, Bearer's Shadow Armor, Bearer's Shadow Shield, Bearer's Shadow Shoes and Bearer's Shadow Earring: +All Stats +1 +-------------------------- +Total Refine Level of entire set at least +45: +Enables unlimited effect of Endure. +MaxHP -60% +-------------------------- +For each Refine Level of entire set: +MaxHP +1% +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24322# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MATK +5 +-------------------------- +Decreases SP Consumption by 2%. +-------------------------- +Refine Level +7: +Decreases SP Consumption by additional 1%. +-------------------------- +When equipped with Gemstone Shadow Weapon, Gemstone Shadow Armor, Gemstone Shadow Shield, Gemstone Shadow Shoes and Gemstone Shadow Pendant: +All Stats +1 +-------------------------- +Total Refine Level of entire set at least +45: +Removes Gemstone requirement from certain skills. +Increases SP Consumption by 100%. +-------------------------- +For each Refine Level of entire set: +Decreases SP Consumption by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24323# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MATK +1% +-------------------------- +Refine Level +7: +MATK +1% +-------------------------- +Decreases SP Consumption by 1%. +-------------------------- +When equipped with Spell Flow Shadow Armor and Spell Flow Shadow Shoes: +Protects from skill cast interruption. +-------------------------- +Increases SP Consumption by 40%. +-------------------------- +For each Refine Level of entire set: +Decreases SP Consumption by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24324# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +1% +-------------------------- +Increases SP Recovery Rate by 5%. +-------------------------- +Refine Level +7: +ATK +1% +-------------------------- +When equipped with Spiritual Shadow Earring and Spiritual Shadow Pendant: +1% chance to absorb 1% physical damage into SP when dealing physical attacks. +-------------------------- +Total Refine Level of entire set at least +10: +Additional 1% of the damage absorbed into SP. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24325# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxHP +100 +ATK +1% +-------------------------- +Refine Level +7: +ATK +1% +-------------------------- +When equipped with Malicious Shadow Shield and Malicious Shadow Shoes: +4% chance to absorb 2% physical damage into HP when dealing physical damage. +-------------------------- +For each 5 Refine Levels of entire set: +Additional 1% of the damage absorbed into HP. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24326# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +LUK +1 +-------------------------- +For each Refine Level: +HIT +1 +-------------------------- +When equipped by Swordman, Thief, Taekwon and Star Gladiator: +ATK +15 +-------------------------- +When equipped by Merchant, Archer and Gunsliner: +Increases Ranged Physical Damage by 3%. +-------------------------- +When equipped by Mage, Acolyte, Ninja and Soul Linker: +MATK +15 +-------------------------- +When equipped by Novice and Doram: +Increases Attack Speed (Decreases After Attack Delay by 5%). +MaxHP +1000 +-------------------------- +When equipped with Sigrun Shadow Shield: +Total Refine Level of entire set at least +17: +The effect of bonus stats increased by 100%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24327# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +VIT +1 +-------------------------- +For each Refine Level: +DEF +5 +MDEF +1 +-------------------------- +When equipped by Swordman, Thief, Taekwon and Star Gladiator: +ASPD +1 +-------------------------- +When equipped by Merchant, Archer and Gunsliner: +FLEE +15 +-------------------------- +When equipped by Mage, Acolyte, Ninja and Soul Linker: +MaxSP +2% +Increases Healing skills effectiveness by 3%. +-------------------------- +When equipped by Novice and Doram: +Decreases Variable Casting Time by 5%. +MaxSP +300 +-------------------------- +When equipped with Sigrun Shadow Armor: +Total Refine Level of entire set at least +17: +The effect of bonus stats increased by 100%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Gunslinger +# +24328# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +5 +-------------------------- +For each Refine Level: +ATK +1 +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Demi-Human race monster (except player) by 1%. +-------------------------- +When equipped with Executioner Shadow Earring and Executioner Shadow Pendant: +Total Refine Level of entire set at least +25: +Ignores 100% physical defense of Demi-Human race (Except Player). +-------------------------- +When equipped with Force Shadow Earring and Force Shadow Pendant: +ATK +10 +-------------------------- +Total Refine Level of entire set at least +20: +ATK +1% +-------------------------- +Total Refine Level of entire set at least +25: +ATK +1% +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24329# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +MATK +5 +-------------------------- +For each Refine Level: +MATK +1 +-------------------------- +For each 2 Refine Levels: +Ignores 1% magical defense of Demi-Human race monster (Except Player). +-------------------------- +When equipped with Tempest Shadow Earring and Tempest Shadow Pendant: +Total Refine Level of entire set at least +25: +Ignores 100% magical defense of Demi-Human race (Except Player). +-------------------------- +When equipped with Spiritual Shadow Earring and Spiritual Shadow Pendant: +MATK +10 + +Total Refine Level of entire set at least +20: +MATK +1% + +Total Refine Level of entire set at least +25: +MATK +1% +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24330# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +INT +3 +-------------------------- +Increases SP Recovery Rate by 20%. +-------------------------- +For each 2 Refine Levels: +Decreases Variable Casting Time by 1%. +-------------------------- +When equipped with Caster Shadow Shoes and Caster Shadow Shield: +Decreases SP Consumption by 1%. +-------------------------- +For each 5 Refine Levels of entire set: +Decreases Variable Casting Time by additional 1%. +-------------------------- +Total Refine Level of entire set at least +25: +Decreases SP Consumption by additional 1%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24331# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +VIT +3 +-------------------------- +Increases HP Recovery Rate by 20%. +-------------------------- +For each 3 Refine Levels: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Reload Shadow Shoes and Reload Shadow Shield: +Decreases After Skill Delay by additional 1%. +-------------------------- +Total Refine Level of entire set at least +25: +Decreases After Skill Delay by additional 5%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24332# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Critical +5 +-------------------------- +For each 2 Refine Levels: +Critical +1 +-------------------------- +Refine Level +7: +Increases Critical Damage by 1%. +-------------------------- +Refine Level +9: +Increases Critical Damage by additional 1%. +-------------------------- +When equipped with Critical Shadow Shoes: +For each Refine Level of entire set: +ATK +1 +-------------------------- +Total Refine Level of entire set at least +15: +Increases Critical Damage by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24333# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +FLEE +5 +-------------------------- +For each 2 Refine Levels: +FLEE +1 +-------------------------- +Refine Level +7: +Critical +2 +-------------------------- +Refine Level +9: +Critical +2 +-------------------------- +When equipped with Critical Shadow Shield: +For each Refine Level of entire set: +ATK +1 +-------------------------- +Total Refine Level of entire set at least +15: +Increases Critical Damage by 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24334# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Refine Level +2: +Random chance to auto-cast Level (RefineLv/2) Lightning Bolt, Cold Bolt, Fire Bolt or Earth Spike when dealing melee physical attacks. +-------------------------- +For each Refine Level: +Increases the chance by 0.1%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24335# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +HIT +5 +-------------------------- +Decreases SP Consumption by 2%. +-------------------------- +Refine Level +7: +Decreases SP Consumption by additional 1%. +-------------------------- +When equipped with Gemstone Shadow Shield II and Gemstone Shadow Earring II: +All Stats +1 +-------------------------- +Total Refine Level of entire set at least +25: +Nullifies gemstone requirement of certain skills. +Increases SP Consumption by 70%. +-------------------------- +For each Refine Levels of entire set: +Decreases SP Consumption by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24336# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEF +5 +-------------------------- +Decreases SP Consumption by 2%. +-------------------------- +Refine Level +7: +Decreases SP Consumption by additional 1%. +-------------------------- +When equipped with Gemstone Shadow Weapon II and Gemstone Shadow Earring II: +All Stats +1 +-------------------------- +Total Refine Level of entire set at least +25: +Nullifies gemstone requirement of certain skills. +Increases SP Consumption by 70%. +-------------------------- +For each Refine Levels of entire set: +Decreases SP Consumption by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24337# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxHP +1% +MDEF +1 +-------------------------- +Refine Level +7: +MaxHP +2% +-------------------------- +When equipped with Bearer's Shadow Pendant II and Bearer's Shadow Shoes II: +All Stats +1 +-------------------------- +Total Refine Level of entire set at least +25: +Enables unlimited effect of Endure. +MaxHP -35% +-------------------------- +For each Refine Levels of entire set: +MaxHP +1% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24338# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxSP +50 +MaxHP +1% +-------------------------- +Refine Level +7: +MaxHP +2% +-------------------------- +When equipped with Bearer's Shadow Armor II and Bearer's Shadow Pendant II: +All Stats +1 +-------------------------- +Total Refine Level of entire set at least +25: +Enables unlimited effect of Endure. +MaxHP -35% +-------------------------- +For each Refine Levels of entire set: +MaxHP +1% +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24339# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +For each Refine Level: +All Stats +1 +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24340# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +For each Refine Level: +All Stats +1 +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24341# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of all monsters by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of all monsters by additional 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all monsters by additional 2%. +-------------------------- +When equipped with All Races Shadow Shield: +Increases experience gained from defeating monsters by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24342# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases damage taken from all monster races by 1%. +-------------------------- +Refine Level +7: +Decreases damage taken from all monster races by additional 1%. +-------------------------- +Refine Level +9: +Decreases damage taken from all monster races by additional 1%. +-------------------------- +When equipped with All Races Shadow Shoes: +Increases experience gained from defeating monsters by 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24343# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +For each 2 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by additional 1%). +-------------------------- +Refine Level +7: +ASPD +1 +-------------------------- +Refine Level +9: +Decreases After Skill Delay by additional 1%. +-------------------------- +When equipped with Blitz Shadow Armor: +For each Refine Level of entire set: +MDEF +1 +-------------------------- +Total Refine Level of entire set at least +15: +ASPD +1 +Decreases After Skill Delay by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24344# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEF +25 +-------------------------- +For each 2 Refine Levels: +DEF +5 +-------------------------- +Refine Level +7: +ASPD +1 +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Blitz Shadow Weapon: +For each Refine Level of entire set: +MDEF +1 +-------------------------- +Total Refine Level of entire set at least +15: +ASPD +1 +Decreases After Skill Delay by additional 1%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24345# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores physical defense of Normal class by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Normal class by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24346# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores physical defense of Normal class by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Normal class by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24347# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores magical defense of Demi-Human (except Player) and Undead race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of Demi-Human (except Player) and Undead race by additional 1%. +-------------------------- +When equipped with Tempest Shadow Shoes and Tempest Shadow Shield: +MDEF +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores magical defense of Demi-Human (except Player) and Undead race by 100%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24348# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores magical defense of Demon and Angel race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of Demon and Angel race by additional 1%. +-------------------------- +When equipped with Tempest Shadow Shoes and Tempest Shadow Shield: +MDEF +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores magical defense of Demon and Angel race by 100%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24349# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores magical defense of Formless and Dragon race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of Formless and Dragon race by additional 1%. +-------------------------- +When equipped with Tempest Shadow Shoes and Tempest Shadow Shield: +MDEF +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores magical defense of Formless and Dragon race by 100%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24350# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores magical defense of Plant and Brute race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of Plant and Brute race by additional 1%. +-------------------------- +When equipped with Tempest Shadow Shoes and Tempest Shadow Shield: +MDEF +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores magical defense of Plant and Brute race by 100%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24351# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores magical defense of Fish and Insect race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of Fish and Insect race by additional 1%. +-------------------------- +When equipped with Tempest Shadow Shoes and Tempest Shadow Shield: +MDEF +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores magical defense of Fish and Insect race by 100%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24352# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Stone Curse status by 1%. +-------------------------- +When equipped with Stability Shadow Shield: +DEF +50 +-------------------------- +Total Refine Level of entire set at least +15: +Prevents Stone Curse status. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24353# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Sleep status by 1%. +-------------------------- +When equipped with Stability Shadow Shield: +DEF +50 +-------------------------- +Total Refine Level of entire set at least +15: +Prevents Sleep status. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24354# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Silence status by 1%. +-------------------------- +When equipped with Stability Shadow Shield: +DEF +50 +-------------------------- +Total Refine Level of entire set at least +15: +Prevents Silence status. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24355# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Blind status by 1%. +-------------------------- +When equipped with Stability Shadow Shield: +DEF +50 +-------------------------- +Total Refine Level of entire set at least +15: +Prevents Blind status. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24356# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Frozen status by 1%. +-------------------------- +When equipped with Stability Shadow Shield: +DEF +50 +-------------------------- +Total Refine Level of entire set at least +15: +Prevents Frozen status. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24357# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Bleeding status by 1%. +-------------------------- +When equipped with Stability Shadow Shield: +DEF +50 +-------------------------- +Total Refine Level of entire set at least +15: +Prevents Bleeding status. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24358# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +DEF +1 +-------------------------- +For each 2 Refine Levels: +Increases resistance against Stun status by 1%. +-------------------------- +When equipped with Stability Shadow Shield: +DEF +50 +-------------------------- +Total Refine Level of entire set at least +15: +Prevents Stun status. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24359# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +DEF +1 +-------------------------- +For each Refine Level: +Increases resistance against Curse status by 1%. +-------------------------- +When equipped with Stability Shadow Shield: +DEF +50 +-------------------------- +Total Refine Level of entire set at least +15: +Prevents Curse status. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24360# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +MaxHP +100 +-------------------------- +For each 2 Refine Levels: +MaxHP +150 +-------------------------- +When equipped with Tension Shadow Earring and Tension Shadow Pendant: +2% chance to restore 100 HP per second for 5 seconds when dealing physical attacks. +-------------------------- +Total Refine Level of entire set at least +10: +Increases trigger rate by 1%. +-------------------------- +Total Refine Level of entire set at least +25: +Increases restored HP by 400. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24361# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MaxHP +1% +ATK +5 +-------------------------- +For each 2 Refine Levels: +MaxHP +50 +-------------------------- +When equipped with Tension Shadow Weapon and Tension Shadow Pendant: +2% chance to restore 100 HP per second for 5 seconds when dealing physical attacks. +-------------------------- +Total Refine Level of entire set at least +10: +Increases trigger rate by 1%. +-------------------------- +Total Refine Level of entire set at least +25: +Increases restored HP by 400. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24362# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +ATK +5 +-------------------------- +Increases recovery amount gained from Healing skills and Restorative items by 2%. +-------------------------- +For each 3 Refine Levels: +Increases recovery amount gained from Healing skills and Restorative items by 1%. +-------------------------- +When equipped with Tension Shadow Weapon and Tension Shadow Earring: +2% chance to restore 100 HP per second for 5 seconds when dealing physical attacks. +-------------------------- +Total Refine Level of entire set at least +10: +Increases trigger rate by 1%. +-------------------------- +Total Refine Level of entire set at least +25: +Increases restored HP by 400. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24363# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +MaxHP +100 +-------------------------- +For each 2 Refine Levels: +MaxHP +150 +-------------------------- +When equipped with Elegant Shadow Earring and Elegant Shadow Pendant: +1% chance to restore 100 HP per second for 5 seconds when dealing magical attacks. +-------------------------- +Total Refine Level of entire set at least +15: +Increases trigger rate by 1%. +-------------------------- +Total Refine Level of entire set at least +25: +Increases restored HP by 150. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24364# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MaxHP +1% +MATK +5 +-------------------------- +For each 2 Refine Levels: +MaxHP +50 +-------------------------- +When equipped with Elegant Shadow Weapon and Elegant Shadow Pendant: +1% chance to restore 100 HP per second for 5 seconds when dealing magical attacks. +-------------------------- +Total Refine Level of entire set at least +15: +Increases trigger rate by 1%. +-------------------------- +Total Refine Level of entire set at least +25: +Increases restored HP by 150. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24365# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MATK +5 +-------------------------- +Increases recovery amount gained from Healing skills and Restorative items by 2%. +-------------------------- +For each 3 Refine Levels: +Increases recovery amount gained from Healing skills and Restorative items by 1%. +-------------------------- +When equipped with Elegant Shadow Weapon and Elegant Shadow Earring: +1% chance to restore 100 HP per second for 5 seconds when dealing magical attacks. +-------------------------- +Total Refine Level of entire set at least +15: +Increases trigger rate by 1%. +-------------------------- +Total Refine Level of entire set at least +25: +Increases restored HP by 150. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24366# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MATK +10 +-------------------------- +If refine rate is 7 or higher, increases heal effectiveness by 3%. +-------------------------- +If refine rate is 9 or higher, increases heal effectiveness by 5%. +-------------------------- +When equipped with Healing Shadow Weapon and Healing Shadow Shoes: +Increases Healing skills effectiveness by additional 5%. +-------------------------- +Total Refine Level of entire set at least +25: +Increases Healing skills effectiveness by additional 15%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24367# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MATK +10 +-------------------------- +If refine rate is 7 or higher, increases heal effectiveness by 3%. +-------------------------- +If refine rate is 9 or higher, increases heal effectiveness by 5%. +-------------------------- +When equipped with Healing Shadow Weapon and Healing Shadow Shield: +Increases Healing effectiveness by 5%. +-------------------------- +If the sum of refine rate is 25 or higher: +increases heal effectiveness by addital 15%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24368# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases HP Recovery Rate by 20%. +-------------------------- +Refine Level +7: +Increases HP Recovery Rate by additional 10%. +-------------------------- +Refine Level +9: +Increases HP Recovery Rate by additional 20%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24369# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases SP Recovery Rate by 20%. +-------------------------- +Refine Level +7: +Increases SP Recovery Rate by additional 10%. +-------------------------- +Refine Level +9: +Increases SP Recovery Rate by additional 20%. +-------------------------- +When Restore Shadow set (Earring, Pendant) are equipped together: +and the sum of refine rate is 15 or higher, increases HP and SP recovery rate by 25%. + +and the sum of refine rate is 18 or higher, increases HP and SP recovery rate by additional 25%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24370# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Critical Damage by 2%. +-------------------------- +If refine rate is 7 or higher: +Increases Critical Damage by 2%. +-------------------------- +If refine rate is 9 or higher: +Increases Critical Damage by 3%. +-------------------------- +When equipped with Mortal Blow Shadow Earring and Mortal Blow Shadow Pendant: +Increases Critical Damage by 2%. +-------------------------- +If the sum of refine rate is 25 or higher: +Increases Critical Damage by 10%. +-------------------------- +If the sum of refine rate is 30 or higher: +ASPD +2 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24371# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Critical Damage by 1%. +-------------------------- +If refine rate is 7 or higher: +Increases Critical Damage by 1%. +-------------------------- +If refine rate is 9 or higher: +Increases Critical Damage by 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24372# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Critical Damage by 1%. +-------------------------- +If refine rate is 7 or higher: +Increases Critical Damage by 1%. +-------------------------- +If refine rate is 9 or higher: +Increases Critical Damage by 1%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24373# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores physical defense of Normal class by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Normal class by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24374# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores physical defense of Normal class by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Normal class by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24375# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores physical defense of Demi-Human (except Player) and Undead race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Demi-Human (except Player) and Undead race by additional 1%. +-------------------------- +When equipped with Penetration Shadow Shield and Penetration Shadow Shoes: +DEF +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores physical defense of Demi-Human (except Player) and Undead race by 100%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24376# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores physical defense of Demon and Angel race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Demon and Angel race by additional 1%. +-------------------------- +When equipped with Penetration Shadow Shield and Penetration Shadow Shoes: +DEF +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores physical defense of Demon and Angel race by 100%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24377# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores physical defense of Formless and Dragon race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Formless and Dragon race by additional 1%. +-------------------------- +When equipped with Penetration Shadow Shield and Penetration Shadow Shoes: +DEF +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores physical defense of Formless and Dragon race by 100%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24378# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores physical defense of Brute (except Player) and Plant race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Brute (except Player) and Plant race by additional 1%. +-------------------------- +When equipped with Penetration Shadow Shield: +Penetration Shadow Shoes +DEF +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores physical defense of Brute (except Player) and Plant race by 100%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24379# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores physical defense of Fish and Insect race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Fish and Insect race by additional 1%. +-------------------------- +When equipped with Penetration Shadow Shield and Penetration Shadow Shoes: +DEF +5 +-------------------------- +Total Refine Level of entire set at least +25: +Ignores physical defense of Fish and Insect race by 100%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24380# +Gloves mounted on arms-bearing hands to elicit the potential abilities of the wearer. +-------------------------- +Max SP + 10 +For every 2 refine levels, increases Max SP by 15. + +Sentimental Shadow (Weapon, Earring, Pendant) +2% chance of recovering 10 SP per 1 sec for 5 secs when performing a physical attack. + +If the sum of the refine rate of the set is 10 or higher, the chance is increased by an additional 1%. + +If the sum of the refine rate of the set is 25 or higher, increases Recovered SP by an additional 20 per 1 sec. +-------------------------- +Class: Shadow Shield +Weight: 0 +Requires Level: 1 +Usable By: All Jobs +# +24381# +A sacred earring that is said to protect the wearer. Eliciting the potential ability of the wearer. +-------------------------- +ATK + 5 +Max SP + 1% +For every 2 refine levels, increases Max SP by 5. +-------------------------- +Class: Shadow Earring +Weight: 0 +Requires Level: 1 +Usable By: All Jobs +# +24382# +A sacred pendant that is said to protect the wearer. Eliciting the potential ability of the wearer. +-------------------------- +ATK + 5 +Increases SP Recovery Amount by 2%. +For every 3 refine levels, increases SP Recovery Amount by an additional 1%. +-------------------------- +Class: Shadow Pendant +Weight: 0 +Requires Level: 1 +Usable By: All Jobs +# +24383# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +MaxSP +10 +-------------------------- +For each 2 Refine Levels: +MaxSP +15 +-------------------------- +When equipped with Enchanting Shadow Earring and Enchanting Shadow Pendant: +1% chance to restore 10 SP for 5 seconds when dealing magical attacks. +-------------------------- +Total Refine Level of entire set at least +15: +Increases the trigger rate by 1%. +-------------------------- +Total Refine Level of entire set at least +25: +Increases total of restored SP by 20. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24384# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MaxSP +1% +MATK +5 +-------------------------- +For each 2 Refine Levels: +MaxSP +5 +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24385# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MATK +5 +-------------------------- +Increases SP Recovery Rate by 2%. +-------------------------- +For each 3 Refine Levels: +Increases SP Recovery Rate by additional 1%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24386# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +For each 3 Refine Levels: +Increases Physical Damage against enemies of all size monsters by 1%. +Decreases damage taken from all size monsters by 1%. +-------------------------- +Refine Level +10: +Nullifies weapon damage penalty resulting from monster's size. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24387# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +INT +2 +-------------------------- +When equipped with Beginner's Shadow Armor, Beginner's Shadow Weapon, Beginner's Shadow Shield, Beginner's Shadow Shoes, Beginner's Shadow Earring and Beginner's Shadow Pendant: +Ignores physical and magical defense of all monsters, except Players, by 20%. +-------------------------- +For each Refine Level of entire set (up to +30): +Ignores physical and magical defense of all monsters, except Players, by additional 1%. +-------------------------- +Base Level at least 125: +Ignores physical and magical defense of all monsters, except Players, by additional 3%. +-------------------------- +Base Level at least 130: +Ignores physical and magical defense of all monsters, except Players, by additional 3%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 100 +# +24388# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +VIT +2 +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 100 +# +24389# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +AGI +2 +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 100 +# +24390# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +STR +2 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 100 +# +24391# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +DEX +2 +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 100 +# +24392# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +LUK +2 +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 100 +# +24393# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by additional 3%). +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by additional 3%). +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24394# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxHP +200 +-------------------------- +Refine Level +7: +MaxHP +2% +-------------------------- +Refine Level +9: +MaxHP +3% +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24395# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +ATK +20 +-------------------------- +Refine Level +7: +ATK +2% +-------------------------- +Refine Level +9: +ATK +3% +-------------------------- +When equipped with Physical Shadow Shield and Physical Shadow Shoes: +For each 2 Refine Levels of entire set: +ATK +1 +-------------------------- +Total Refine Level of entire set at least +23: +ATK +2% +-------------------------- +Total Refine Level of entire set at least +25: +ATK +3% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24396# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Variable Casting Time by 2%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by additional 3%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24397# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxSP +100 +-------------------------- +Refine Level +7: +MaxSP +2% +-------------------------- +Refine Level +9: +MaxSP +3% +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24398# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MATK +20 +-------------------------- +Refine Level +7: +MATK +2% +-------------------------- +Refine Level +9: +MATK +3% +-------------------------- +When equipped with Magical Shadow Shield and Magical Shadow Shoes: +For each 2 Refine Levels of entire set: +MATK +1 +-------------------------- +Total Refine Level of entire set at least +23: +MATK +2% +-------------------------- +Total Refine Level of entire set at least +25: +MATK +3% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24399# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEF +50 +-------------------------- +For each 2 Refine Levels: +DEF +20 +-------------------------- +When equipped with Hard Champion Shadow Shoes: +DEF +50 +MaxHP +2% +MaxSP +2% +-------------------------- +Total Refine Level of entire set at least +16: +DEF +50 +MaxHP +2% +MaxSP +2% +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24400# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxHP +200 +MaxSP +100 +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +MaxSP +1% +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24401# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +ATK +15 +HIT +15 +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +7: +HIT +15 +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24402# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Heat Barrel skill cooldown by 1 second. +-------------------------- +For each 2 Refine Levels: +Decreases Heat Barrel skill cooldown by additional 1 second. +-------------------------- +When equipped with Rebellion Shadow Shoes: +Decreases Heat Barrel skill cooldown by additional 4 seconds. +Decreases Hammer of God skill cooldown by 2 seconds. +-------------------------- +When equipped with 2 types of Gunslinger Shadow or Rebellion Shadow Equipment: +All Stats +7 +MaxHP +3% +MaxSP +3% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +24403# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Swirling Petal by 20%. +-------------------------- +For each Refine Level: +Increases damage of Swirling Petal by additional 5%. +-------------------------- +When equipped with Kagerou Shadow Shoes: +Increases Ranged Physical Damage by 5%. +Decreases Cross Slash skill cooldown by 1 second. +-------------------------- +When equipped with 2 types of Ninja Shadow or Kagerou Shadow Equipment: +All Stats +7 +MaxHP +3% +MaxSP +3% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +24404# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 20%. +-------------------------- +For each Refine Level: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 5%. +-------------------------- +When equipped with Oboro Shadow Shoes: +Increases damage of Fire, Water and Wind elemental magic attacks by 5%. +Decreases Illusion - Shadow skill cooldown by 3 seconds. +-------------------------- +When equipped with 2 types of Ninja Shadow or Oboro Shadow Equipment: +All Stats +7 +MaxHP +3% +MaxSP +3% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +24405# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Hammer of God by 20%. +-------------------------- +For each Refine Level: +Increases damage of Hammer of God by additional 5%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +24406# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Kunai Splash by 20%. +-------------------------- +For each Refine Level: +Increases damage of Kunai Splash by additional 5%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +24407# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Illusion - Shadow skill cooldown by 2 seconds. +-------------------------- +For each 2 Refine Levels: +Decreases Illusion - Shadow skill cooldown by additional 1 second. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +24408# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Picky Peck by 20%. +-------------------------- +For each Refine Level: +Increases damage of Lunatic Carrot Beat by 3%. +-------------------------- +When equipped with Doram Physical Shadow Shoes: +Decreases Lunatic Carrot Beat skill cooldown by 3 seconds. +-------------------------- +When equipped with Doram Physical Weapon, Doram Physical Shield and Doram Physical Shoes: +All Stats +7 +MaxHP +3% +MaxSP +3% +Ignores physical and magical defense of Normal class by 50%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +24409# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Hiss skill cooldown by 3 seconds. +-------------------------- +For each 2 Refine Levels: +Decreases Hiss skill cooldown by additional 3 seconds. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +24410# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Catnip Meteor by 20%. +-------------------------- +For each Refine Level: +Increases damage of Silvervine Stem Spear by 3%. +-------------------------- +When equipped with Doram Magical Shadow Shoes: +Decreases Silvervine Stem Spear skill cooldown by 1 second. +-------------------------- +When equipped with Doram Magical Weapon, Doram Magical Shield and Doram Magical Shoes: +All Stats +7 +MaxHP +3% +MaxSP +3% +Ignores physical and magical defense of Normal class by 50%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +24411# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Chattering skill cooldown by 3 seconds. +-------------------------- +For each 2 Refine Levels: +Decreases Chattering skill cooldown by additional 3 seconds. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +24412# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of New Moon Kick by 20%. +-------------------------- +For each Refine Level: +Increases damage of Full Moon Kick by 3%. +-------------------------- +When equipped with Star Emperor Shadow Shoes: +Decreases Sun Moon Star Record skill cooldown by 2 seconds. +-------------------------- +When equipped with 2 types of Taekwon Shadow or Star Emperor Shadow Equipment: +All Stats +7 +MaxHP +3% +MaxSP +3% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 100 +Star Emperor +# +24413# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Sun Moon Star Record skill cooldown by 3 seconds. +-------------------------- +For each 2 Refine Levels: +Decreases Sun Moon Star Record skill cooldown by additional 3 seconds. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 100 +Star Emperor +# +24414# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Eswhoo by 20%. +-------------------------- +For each Refine Level: +Increases damage of Espa by 3%. +-------------------------- +When equipped with Soul Reaper Shadow Shoes: +Decreases Soul Harvest skill cooldown by 2 seconds. +-------------------------- +When equipped with 2 types of Taekwon Shadow or Soul Reaper Shadow Equipment: +All Stats +7 +MaxHP +3% +MaxSP +3% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 100 +Soul Reaper +# +24415# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Soul Harvest skill cooldown by 3 seconds. +-------------------------- +For each 2 Refine Levels: +Decreases Soul Harvest skill cooldown by additional 1 second. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 100 +Soul Reaper +# +24416# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Critical Damage by 7%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24417# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +ASPD +1 +-------------------------- +When equipped with Temporal Transcendent Weapon, Temporal Transcendent Shield, Temporal Transcendent Shoes, Temporal Transcendent Earring and Temporal Transcendent Pendant: +ASPD +2 +Decreases Variable Casting Time by 10%. +Ignores physical and magical defense of all monsters, except Players, by 70%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24418# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24419# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24420# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MATK +15 +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24421# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +ATK +15 +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24423# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores magical defense of Normal class by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of Normal class by additional 1%. +-------------------------- +When equipped with Tempest Shadow Armor, Tempest Shadow Shield, Tempest Shadow Shoes, Tempest Shadow Earring and Tempest Shadow Pendant: +Total Refine Level of entire set at least +54: +Ignores magical defense of Normal class by additional 20%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24424# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores magical defense of Normal class by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of Normal class by additional 1%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24425# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases physical and Magic Damage against enemies of every size by 2%. +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +Refine Level +7: +Increases physical and magic damage to enemies of every size by additional 2%. +-------------------------- +Refine Level +9: +Increases physical and magic damage to enemies of every size by additional 3%. +-------------------------- +When equipped with Perfect Size Armor Shadow: +MaxHP +2%, MaxSP +2%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24426# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases physical and magic damage from enemies of every size by 2%. +-------------------------- +For each Refine Level: +DEF +10 +-------------------------- +Refine Level +7: +Decreases physical and magic damage from enemies of every size by additional 2%. +-------------------------- +Refine Level +9: +Decreases physical and magic damage from enemies of every size by additional 3%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24427# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignore magic defense of Demon and Angel race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignore magic defense of Demon and Angel race by additional 1%. +-------------------------- +When equipped with Tempest Shadow Earring and Tempest Shadow Pendant: +MATK +5 +-------------------------- +If Refine Level is total +25 or higher: +Ignore magic defense of Demon and Angel race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24428# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignore magic defense of Ghost elemental and Dragon race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignore magic defense of Ghost elemental and Dragon race by additional 1%. +-------------------------- +When equipped with Tempest Shadow Earring and Tempest Shadow Pendant: +MATK +5 +-------------------------- +If Refine Level is total +25 or higher: +Ignore magic defense of Ghost elemental and Dragon race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24429# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignore magic defense of Animal (except players) and Plant race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignore magic defense of Animal (except players) and Plant race by additional 1%. +-------------------------- +When equipped with Tempest Shadow Earring and Tempest Shadow Pendant: +MATK +5 +-------------------------- +If Refine Level is total +25 or higher: +Ignore magic defense of Animal (except players) and Plant race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24430# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignore magic defense of Fish and Insect race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignore magic defense of Fish and Insect race by additional 1%. +-------------------------- +When equipped with Tempest Shadow Earring and Tempest Shadow Pendant: +MATK +5 +-------------------------- +If Refine Level is total +25 or higher: +Ignore magic defense of Fish and Insect race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24431# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignore magic defense of Demi-Human (except Players) and Undead race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignore magic defense of Demi-Human (except Players) and Undead race by additional 1%. +-------------------------- +When equipped with Tempest Shadow Earring and Tempest Shadow Pendant: +MATK +5 +-------------------------- +If Refine Level is total +25 or higher: +Ignore magic defense of Demi-Human (except Players) and Undead race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24432# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores physical defense of Normal class by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Normal class by additional 1%. +-------------------------- +When equipped with Penetration Shadow Armor, Penetration Shadow Shield, Penetration Shadow Shoes, Penetration Shadow Earring and Penetration Shadow Pendant: +Iftotal Refine Level is +54 or higher: +Ignores physical defense of Normal class by additional 20%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24433# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores physical defense of Normal class by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Normal class by additional 1%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24434# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores physical defense of Demi-Human (except Players) and Undead race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Demi-Human (except Players) and Undead race by additional 1%. +-------------------------- +When equipped with Penetration Shadow Earring and Penetration Shadow Pendant: +MATK +5 +-------------------------- +If Refine Level is total +25 or higher: +Ignores physical defense of Demi-Human (except Players) and Undead race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24435# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores physical defense of Fish and Insect race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Fish and Insect race by additional 1%. +-------------------------- +When equipped with Penetration Shadow Earring and Penetration Shadow Pendant: +MATK +5 +-------------------------- +If Refine Level is total +25 or higher: +Ignores physical defense of Fish and Insect race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24436# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores physical defense of Animal (except players) and Plant race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Animal (except players) and Plant race by additional 1%. +-------------------------- +When equipped with Penetration Shadow Earring and Penetration Shadow Pendant: +MATK +5 +-------------------------- +If Refine Level is total +25 or higher: +Ignores physical defense of Animal (except players) and Plant race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24437# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores physical defense of Ghost elemental and Dragon race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Ghost elemental and Dragon race by additional 1%. +-------------------------- +When equipped with Penetration Shadow Earring and Penetration Shadow Pendant: +MATK +5 +-------------------------- +If Refine Level is total +25 or higher: +Ignores physical defense of Ghost elemental and Dragon race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24438# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Ignores physical defense of Demon and Angel race by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Demon and Angel race by additional 1%. +-------------------------- +When equipped with Penetration Shadow Earring and Penetration Shadow Pendant: +MATK +5 +-------------------------- +If Refine Level is total +25 or higher: +Ignores physical defense of Demon and Angel race by 100%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24439# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +1% +MATK +1% +-------------------------- +For each 2 Refine Levels: +ATK +1% +MATK +1% +-------------------------- +Refine Level +7: +DEF +15 +FLEE +15 +-------------------------- +Refine Level +10: +Increases Movement Speed. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +# +24440# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Sonic Wave by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Sonic Wave by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Rune Knight +# +24441# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increased Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increased Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increased Ranged Physical Damage by additional 4%. +-------------------------- +When equipped with Sonic Shadow Armor and Sonic Shadow Shoes: +For each Refine Level of entire set: +Increases damage of Sonic Wave by 1%. +-------------------------- +When equipped with Rune Knight Shadow Weapon: +Ignores physical defense of every race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of every race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Rune Knight +# +24442# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption of Sonic Wave by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Sonic Wave by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Rune Knight +# +24443# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Physical melee attacks have a low chance to auto-cast Level 3 Ignition Break. +(If you have learned a higher Level, auto-cast that instead.) +-------------------------- +Refine Level +7: +Increases the chance to auto-cast Ignition Break by additional 1%. +-------------------------- +Refine Level +9: +Increases the chance to auto-cast Ignition Break by additional 2%. +-------------------------- +When equipped with Ignition Shadow Pendant and Ignition Shadow Earring: +For each Refine Level of entire set: +Increases damage of Ignition Break by 1%. +-------------------------- +When equipped with Rune Knight Shadow Shield: +Ignores physical defense of every race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of every race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Rune Knight +# +24444# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Ignition Break by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Ignition Break by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Rune Knight +# +24445# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases Ignition Break skill cooldown by 0.2 seconds. +-------------------------- +For each 3 Refine Levels: +Decreases Ignition Break skill cooldown by additional 0.1 seconds. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Rune Knight +# +24446# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Dragon Breath - Water by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Dragon Breath - Water by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Rune Knight +# +24447# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 4%. +-------------------------- +When equipped with Cold Breath Shadow Armor and Cold Breath Shadow Shoes: +For each 2 Refine Levels of entire set: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Rune Knight Shadow Weapon: +For each Refine Level of entire set: +Increases damage of Dragon Breath - Water by 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Rune Knight +# +24448# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption of Dragon Breath - Water by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Dragon Breath - Water by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Rune Knight +# +24449# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 4%. +-------------------------- +When equipped with Fire Breath Shadow Pendant and Fire Breath Shadow Earring: +For each 2 Refine Levels of entire set: +MaxHP and MaxSP by 1%. +-------------------------- +When equipped with Rune Knight Shadow Weapon: +For each Refine Level of entire set: +Increases damage of Dragon Breath by 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Rune Knight +# +24450# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Dragon Breath by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Dragon Breath by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Rune Knight +# +24451# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases SP Consumption of Dragon Breath by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Dragon Breath by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Rune Knight +# +24452# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Cluster Bomb by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Cluster Bomb by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Ranger +# +24453# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Cluster Bomb by 3%. +-------------------------- +Refine Level +7: +Increases damage of Cluster Bomb by additional 3%. +-------------------------- +Refine Level +9: +Increases damage of Cluster Bomb by additional 4%. +-------------------------- +When equipped with Cluster Shadow Armor and Cluster Shadow Shoes: +For each Refine Level of entire set: +Increases damage of Cluster Bomb by 1%. +-------------------------- +When equipped Ranger Shadow Weapon: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Ranger +# +24454# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Cluster Bomb by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Cluster Bomb by additional 2%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Ranger +# +24455# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 4%. +-------------------------- +When equipped with Aimed Shadow Pendant and Aimed Shadow Earring: +For each Refine Level of entire set: +Increases damage of Aimed Bolt by 1%. +-------------------------- +When equipped with Ranger Shadow Shield: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Ranger +# +24456# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Aimed Bolt by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Aimed Bolt by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Ranger +# +24457# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Physical Damage against enemies of every size by 3%. +-------------------------- +For each 3 Refine Levels: +Increases Physical Damage against enemies of every size by additional 2%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Ranger +# +24458# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Arrow Storm by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Arrow Storm by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Ranger +# +24459# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 4%. +-------------------------- +When equipped with Arrow Shadow Armor and Arrow Shadow Shoes: +For each Refine Level of entire set: +Increases damage of Arrow Storm by 1%. +-------------------------- +When equipped with Ranger Shadow Weapon: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Ranger +# +24460# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption of Arrow Storm by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Arrow Storm by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Ranger +# +24461# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 4%. +-------------------------- +When equipped with Shooting Shadow Pendant and Shooting Shadow Earring: +For each 2 Refine Levels of entire set: +Increases Critical Damage by 1%. +-------------------------- +When equipped with Ranger Shadow Shield: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Ranger +# +24462# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Sharp Shooting by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Sharp Shooting by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Ranger +# +24463# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases SP Consumption of Sharp Shooting by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Sharp Shooting by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Ranger +# +24464# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Axe Tornado by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Axe Tornado by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +24465# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of every size by 3%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by additional 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by additional 4%. +-------------------------- +When equipped with Tornado Shadow Armor and Tornado Shadow Shoes: +For each 2 Refine Levels of entire set: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Mechanic Shadow Weapon: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +24466# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption of Axe Tornado by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Axe Tornado by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +24467# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 4%. +-------------------------- +When equipped with Boomerang Shadow Pendant and Pendant Shadow Earring: +For each 2 Refine Levels of entire set: +Increases damage of Axe Boomerang by 1%. +-------------------------- +When equipped with Mechanic Shadow Shield: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +24468# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Axe Boomerang by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Axe Boomerang by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +24469# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases Axe Boomerang skill cooldown by 0.1 second. +-------------------------- +For each 4 Refine Levels: +Decreases Axe Boomerang skill cooldown by additional 0.1 second. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +24470# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Vulcan Arm by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Vulcan Arm by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +24471# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 4%. +-------------------------- +When equipped with Vulcan Shadow Armor and Vulcan Shadow Shoes: +For each 2 Refine Levels of entire set: +Increases damage of Vulcan Arm by 1%. +-------------------------- +When equipped with Mechanic Shadow Weapon: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +24472# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption of Vulcan Arm by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Vulcan Arm by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +24473# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 4%. +-------------------------- +When equipped with Arm Shadow Pendant and Arm Shadow Earring: +For each 2 Refine Levels of entire set: +Increases damage of Arms Cannon by 1%. +-------------------------- +When equipped with Mechanic Shadow Shield: +For each 2 Refine Levels of entire set: +Decreases Variable Casting Time by 1. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +24474# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Arms Cannon by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Arms Cannon by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +24475# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases SP Consumption of Arms Cannon by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Arms Cannon by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +24476# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Rampage Blaster by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Rampage Blaster by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Sura +# +24477# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 4%. +-------------------------- +When equipped with Rampage Shadow Armor and Rampage Shadow Shoes: +For each Refine Level of entire set: +Increases damage of Rampage Blaster by 1%. +-------------------------- +When equipped with Sura Shadow Weapon: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Sura +# +24478# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Rampage Blaster skill cooldown by 0.1 second. +-------------------------- +For each 3 Refine Levels: +Decreases Rampage Blaster skill cooldown by additional 0.1 second. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Sura +# +24479# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Physical Damage against enemies of every size by 3%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by additional 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by additional 4%. +-------------------------- +When equipped with Sky Blow Shadow Pendant and Sky Blow Shadow Earring: +For each Refine Level of entire set: +Increases damage of Sky Net Blow by 1%. +-------------------------- +When equipped with Sura Shadow Shield: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Sura +# +24480# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Sky Net Blow by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Sky Net Blow by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Sura +# +24481# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +ATK +2% +-------------------------- +For each 3 Refine Levels: +ATK +1% +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Sura +# +24482# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Knuckle Arrow by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Knuckle Arrow by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Sura +# +24483# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 4%. +-------------------------- +When equipped with Knuckle Arrow Shadow Armor and Knuckle Arrow Shadow Shoes: +For each 2 Refine Levels of entire set: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Sura Shadow Weapon: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Sura +# +24484# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of every size by 3%. +-------------------------- +For each 3 Refine Levels: +Increases Physical Damage against enemies of every size by 2%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Sura +# +24485# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Physical Damage against enemies of every size by 3%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by additional 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by additional 4%. +-------------------------- +When equipped with Tiger Cannon Shadow Pendant and Tiger Cannon Shadow Earring: +For each 2 Refine Levels of entire set: +MaxHP and Max SP +1% +-------------------------- +When equipped with Sura Shadow Shield: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Sura +# +24486# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Tiger Cannon by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Tiger Cannon by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Sura +# +24487# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases SP Consumption of Tiger Cannon by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Tiger Cannon by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Sura +# +24488# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Duple Light by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Duple Light by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Archbishop +# +24489# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of every size by 1% and Increases Magical Damage with Holy element by 1%. +-------------------------- +Refine Level +7: +Increases physical and magical Holy elemental damage against all sizes by additional 2%. +-------------------------- +Refine Level +9: +Increases physical and magical Holy elemental damage against all sizes by additional 2%. +-------------------------- +When equipped with Duplex Shadow Armor and Duplex Shadow Shoes: +For each Refine Level of entire set: +Increases damage of Duple Light by 1%. +-------------------------- +When equipped with Arc Bishop Shadow Weapon: +Ignores physical and magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical and magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Archbishop +# +24490# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Critical Damage by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Critical Damage by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Archbishop +# +24491# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Magical Damage with Holy element by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Holy element by additional 3%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Holy element by additional 4%. +-------------------------- +When equipped with Adora Shadow Pendant and Adora Shadow Earring: +For each Refine Level of entire set: +Increases damage of Adoramus by 1%. +-------------------------- +When equipped with Arc Bishop Shadow Shield: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Archbishop +# +24492# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Adoramus by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Adoramus by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Archbishop +# +24493# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases SP Consumption of Adoramus by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Adoramus by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Archbishop +# +24494# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Judex by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Judex by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Archbishop +# +24495# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Magical Damage with Holy element by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Holy element by additional 3%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Holy element by additional 4%. +-------------------------- +When equipped with Judex Shadow Armor and Judex Shadow Shoes: +For each Refine Level of entire set: +Increases damage of Adoramus by 1%. +-------------------------- +When equipped with Arc Bishop Shadow Weapon: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Archbishop +# +24496# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Magical Damage against all sizes by 3%. +-------------------------- +For each 3 Refine Levels: +Increases Magical Damage against all sizes by 2%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Arc Bishio +# +24497# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Magical Damage with Holy element by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Holy element by additional 3%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Holy element by additional 4%. +-------------------------- +When equipped with Magnus Shadow Pendant and Magnus Shadow Earring: +For each Refine Level of entire set: +Increases damage of Magnus Exorcismus by 1%. +-------------------------- +When equipped with Arc Bishop Shadow Shield: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Archbishop +# +24498# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Magnus Exorcismus by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Magnus Exorcismus by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Archbishop +# +24499# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases SP Consumption of Magnus Exorcismus by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Magnus Exorcismus by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Archbishop +# +24500# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Severe Rainstorm by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Severe Rainstorm by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Minstrel and Wanderer +# +24501# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 4%. +-------------------------- +When equipped with Rainstorm Shadow Armor and Rainstorm Shadow Shoes: +For each Refine Level of entire set: +Increases damage of Severe Rainstorm by 1%. +-------------------------- +When equipped with Minstrel Shadow Weapon or Wanderer Shadow Weapon: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Minstrel and Wanderer +# +24502# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption of Severe Rainstorm by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Severe Rainstorm by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Minstrel and Wanderer +# +24503# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 4%. +-------------------------- +When equipped with Arrow Vulcan Shadow Pendant and Arrow Vulcan Shadow Earring: +For each Refine Level of entire set: +Increases damage of Arrow Vulcan by 1%. +-------------------------- +When equipped with Minstrel Shadow Shield or Wanderer Shadow Shield: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Minstrel and Wanderer +# +24504# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Arrow Vulcan by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Arrow Vulcan by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Minstrel and Wanderer +# +24505# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases Arrow Vulcan skill cooldown by 0.1 second. +-------------------------- +For each 3 Refine Levels: +Decreases Arrow Vulcan skill cooldown by additional 0.1 second. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Minstrel and Wanderer +# +24506# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Metallic Sound by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Metallic Sound by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Minstrel and Wanderer +# +24507# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Magical Damage with Neutral element by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Neutral element by additional 3%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Neutral element by additional 4%. +-------------------------- +When equipped with Metallic Shadow Armor and Metallic Shadow Shoes: +For each Refine Level of entire set: +Increases damage of Metallic Sound by 1%. +-------------------------- +When equipped with Minstrel Shadow Weapon or Wanderer Shadow Weapon: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Minstrel and Wanderer +# +24508# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption of Metallic Sound by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Metallic Sound by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Minstrel and Wanderer +# +24509# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Magical Damage with Neutral element by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Neutral element by additional 3%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Neutral element by additional 4%. +-------------------------- +When equipped with Reverberation Shadow Armor and Reverberation Shadow Shoes: +For each 2 Refine Levels of entire set: +Increases damage of Reverberation by 1%. +-------------------------- +When equipped with Minstrel Shadow Shield or Wanderer Shadow Shield: +Ignores physical and magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical and magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Minstrel and Wanderer +# +24510# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Reverberation by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Reverberation by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Minstrel and Wanderer +# +24511# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases SP Consumption of Reverberation by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Reverberation by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Minstrel and Wanderer +# +24512# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Jack Frost by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Jack Frost by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Warlock +# +24513# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Magical Damage with Water element by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Water element by additional 3%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Water element by additional 4%. +-------------------------- +When equipped with Jack Shadow Armor and Jack Shadow Shoes: +For each Refine Level of entire set: +Increases damage of Jack Frost by 1%. +-------------------------- +When equipped with Warlock Shadow Weapon: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Warlock +# +24514# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Jack Frost skill cooldown by 0.1 second. +-------------------------- +For each 3 Refine Levels: +Decreases Jack Frost skill cooldown by additional 0.1 second. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Warlock +# +24515# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Magical Damage with Earth element by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Earth element by additional 3%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Earth element by additional 4%. +-------------------------- +When equipped with Strain Shadow Pendant and Strain Shadow Earring: +For each Refine Level of entire set: +Increases damage of Earth Strain by 1%. +-------------------------- +When equipped with Warlock Shadow Shield: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Warlock +# +24516# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Earth Strain by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Earth Strain by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Warlock +# +24517# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases Earth Strain skill cooldown by 0.2 seconds. +-------------------------- +For each 3 Refine Levels: +Decreases Earth Strain skill cooldown by additional 0.1 second. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Warlock +# +24518# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Crimson Rock by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Crimson Rock by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Warlock +# +24519# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Magical Damage with Fire element by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Fire element by additional 3%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Fire element by additional 4%. +-------------------------- +When equipped with Crimson Shadow Armor and Crimson Shadow Shoes: +For each Refine Level of entire set: +Increases damage of Crimson Rock by 1%. +-------------------------- +When equipped with Warlock Shadow Weapon: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Warlock +# +24520# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption of Crimson Rock by 4%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Crimson Rock by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Warlock +# +24521# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Magical Damage with Wind element by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Wind element by additional 3%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Wind element by additional 4%. +-------------------------- +When equipped with Chain Shadow Pendant and Chain Shadow Earring: +For each Refine Level of entire set: +Increases damage of Chain Lightning by 1%. +-------------------------- +When equipped with Warlock Shadow Shield: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Warlock +# +24522# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Chain Lightning by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Chain Lightning by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Warlock +# +24523# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases SP Consumption of Chain Lightning by 4%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Chain Lightning by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Warlock +# +24524# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Triangle Shot by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Triangle Shot by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Shadow Chaser +# +24525# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 4%. +-------------------------- +When equipped with Triangle Shadow Armor and Triangle Shadow Shoes: +For each 2 Refine Levels of entire set: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Shadow Chaser Shadow Weapon: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Shadow Chaser +# +24526# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption of Triangle Shot by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Triangle Shot by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Shadow Chaser +# +24527# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Physical melee attacks have a low chance to auto-cast Psychic Wave Lv.3. +-------------------------- +Refine Level +7: +Increases the chance to auto-cast Psychic Wave by 1%. +-------------------------- +Refine Level +9: +Increases the chance to auto-cast Psychic Wave by 2%. +-------------------------- +When equipped with Ignition Shadow Pendant and Ignition Shadow Earring: +For each Refine Level of entire set: +Increases damage of Psychic Wave by 1%. +-------------------------- +When equipped with Shadow Chaser Shadow Shield: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Shadow Chaser +# +24528# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Meteor Storm by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Meteor Storm by additional 3%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Shadow Chaser +# +24529# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Magical Damage with Neutral and Fire element by 2%. +-------------------------- +For each 3 Refine Levels: +Increases Magical Damage with Neutral and Fire element by additional 2%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Shadow Chaser +# +24530# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Fatal Menace by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Fatal Menace by additional 3%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Shadow Chaser +# +24531# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of every size by 3%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by additional 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by additional 4%. +-------------------------- +When equipped with Menace Shadow Armor and Menace Shadow Shoes: +For each 2 Refine Levels of entire set: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Shadow Chaser Shadow Weapon: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Shadow Chaser +# +24532# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption of Fatal Menace by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Fatal Menace by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Shadow Chaser +# +24533# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Physical Damage against enemies of every size by 3%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by additional 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by additional 4%. +-------------------------- +When equipped with Feint Shadow Pendant and Feint Shadow Earring: +For each 2 Refine Levels of entire set: +Increases damage of Feint Bomb by 1%. +-------------------------- +When equipped with Shadow Chaser Shadow Shield: +For each 2 Refine Levels of entire set: +Decreases Variable Casting Time by 1. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Shadow Chaser +# +24534# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Feint Bomb by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Feint Bomb by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Shadow Chaser +# +24535# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases Feint Bomb skill cooldown by 0.2 seconds. +-------------------------- +For each 3 Refine Levels: +Decreases Feint Bomb skill cooldown by additional 0.1 second. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Shadow Chaser +# +24536# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Rolling Cutter by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Rolling Cutter by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Guillotine Cross +# +24537# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of every size by 3%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by additional 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by additional 4%. +-------------------------- +When equipped with Rolling Shadow Armor and Rolling Shadow Shoes: +For each Refine Level of entire set: +Increases damage of Rolling Cutter by 1%. +-------------------------- +When equipped with Guillotine Cross Shadow Weapon: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Guillotine Cross +# +24538# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption of Rolling Cutter by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Rolling Cutter by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Guillotine Cross +# +24539# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Physical melee attacks have a chance to increase critical damage by 10% and physical damage against all sizes by 10% for 5 seconds. +-------------------------- +Refine Level +7: +Increases the chance to increase critical damage by additional 5% and physical damage against all sizes by additional 5% for 5 seconds. +-------------------------- +Refine Level +9: +Increases the duration of increased critical damage and physical damage against all sizes by additional 5 seconds. +-------------------------- +When equipped with Katar Shadow Pendant and Katar Shadow Earring: +For each Refine Level of entire set: +ATK +1 +-------------------------- +When equipped with Guillotine Cross Shadow Shield: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Guillotine Cross +# +24540# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Critical Damage by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Critical Damage by additional 1%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Guillotine Cross +# +24541# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Physical Damage against enemies of every size by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Guillotine Cross +# +24542# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Counter Slash by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Counter Slash by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Guillotine Cross +# +24543# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of every size by 3%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by additional 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by additional 4%. +-------------------------- +When equipped with Slash Shadow Armor and Slash Shadow Shoes: +For each 2 Refine Levels of entire set: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Guillotine Cross Shadow Weapon: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Guillotine Cross +# +24544# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption of Counter Slash by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Counter Slash by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Guillotine Cross +# +24545# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 4%. +-------------------------- +When equipped with Ripper Slasher Shadow Pendant and Ripper Slasher Shadow Earring: +For each Refine Level of entire set: +Increases damage of Cross Ripper Slasher by 1%. +-------------------------- +When equipped with Guillotine Cross Shadow Shield: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Guillotine Cross +# +24546# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Cross Ripper Slasher by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Cross Ripper Slasher by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Guillotine Cross +# +24547# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Physical Damage against enemies of every size by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Guillotine Cross +# +24548# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Diamond Dust by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Diamond Dust by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Sorcerer +# +24549# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Magical Damage with Water element by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Water element by additional 3%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Water element by additional 4%. +-------------------------- +When equipped with Dust Shadow Armor and Dust Shadow Shoes: +For each Refine Level of entire set: +Increases damage of Diamond Dust by 1%. +-------------------------- +When equipped with Sorcerer Shadow Weapon: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Sorcerer +# +24550# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption of Diamond Dust by 2%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Diamond Dust by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Sorcerer +# +24551# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Magical Damage with Earth element by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Earth element by additional 3%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Earth element by additional 4%. +-------------------------- +When equipped with Grave Shadow Pendant and Grave Shadow Earring: +For each Refine Level of entire set: +Increases damage of Earth Grave by 1%. +-------------------------- +When equipped with Sorcerer Shadow Shield: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Sorcerer +# +24552# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Earth Grave by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Earth Grave by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Sorcerer +# +24553# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases Earth Grave skill cooldown by 0.2 seconds. +-------------------------- +For each 3 Refine Levels: +Decreases Earth Grave skill cooldown by additional 0.1 second. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Sorcerer +# +24554# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Psychic Wave by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Psychic Wave by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Sorcerer +# +24555# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Magical Damage with Neutral element by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Neutral element by additional 3%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Neutral element by additional 4%. +-------------------------- +When equipped with Psychic Shadow Armor and Psychic Shadow Shoes: +For each Refine Level of entire set: +Increases damage of Psychic Wave by 1%. +-------------------------- +When equipped with Sorcerer Shadow Shield: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Sorcerer +# +24556# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption of Psychic Wave by 4%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Psychic Wave by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Sorcerer +# +24557# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Magical Damage with Wind element by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Wind element by additional 3%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Wind element by additional 4%. +-------------------------- +When equipped with Varetyr Shadow Pendant and Varetyr Shadow Earring: +For each Refine Level of entire set: +Increases damage of Varetyr Spear by 1%. +-------------------------- +When equipped with Sorcerer Shadow Shield: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Sorcerer +# +24558# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Varetyr Spear by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Varetyr Spear by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Sorcerer +# +24559# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases SP Consumption of Varetyr Spear by 4%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Varetyr Spear by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Sorcerer +# +24560# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Cart Tornado by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Cart Tornado by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Genetic +# +24561# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of every size by 3%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by additional 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by additional 4%. +-------------------------- +When equipped with Tornado Shadow Armor and Tornado Shadow Shoes: +For each Refine Level of entire set: +Increases damage of Cart Tornado by 1%. +-------------------------- +When equipped with Genetic Shadow Weapon: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Genetic +# +24562# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases SP Consumption of Cart Tornado by 4%. +-------------------------- +For each 2 Refine Levels: +Decreases SP Consumption of Cart Tornado by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Genetic +# +24563# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 4%. +-------------------------- +When equipped with Cannon Cart Shadow Pendant and Cannon Cart Shadow Earring: +For each 2 Refine Levels of entire set: +Increases damage of Cart Cannon by 1%. +-------------------------- +When equipped with Guillotine Cross Shadow Shield: +For each 2 Refine Levels of entire set: +Decreases Variable Casting Time by 1. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Genetic +# +24564# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Cart Cannon by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Cart Cannon by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Genetic +# +24565# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Physical Damage against enemies of every size by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Genetic +# +24566# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Spore Explosion by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Spore Explosion by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Genetic +# +24567# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of every size by 3%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by additional 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by additional 4%. +-------------------------- +When equipped with Spore Bomb Shadow Armor and Spore Bomb Shadow Shoes: +For each Refine Level of entire set: +Increases damage of Spore Explosion by 1%. +-------------------------- +When equipped with Genetic Shadow Weapon: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Genetic +# +24568# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Spore Explosion skill cooldown by 0.2 seconds. +-------------------------- +For each 3 Refine Levels: +Decreases Spore Explosion skill cooldown by additional 0.1 second. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Genetic +# +24569# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Physical Damage against enemies of every size by 3%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by additional 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by additional 4%. +-------------------------- +When equipped with Crazy Shadow Pendant and Crazy Shadow Earring: +For each Refine Level of entire set: +Increases damage of Crazy Weed by 1%. +-------------------------- +When equipped with Genetic Shadow Shield: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Genetic +# +24570# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Crazy Weed by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Crazy Weed by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Genetic +# +24571# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases Crazy Weed skill cooldown by 0.2 seconds. +-------------------------- +For each 3 Refine Levels: +Decreases Crazy Weed skill cooldown by additional 0.1 second. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Genetic +# +24572# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Over Brand by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Over Brand by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Royal Guard +# +24573# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of every size by 3%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by additional 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by additional 4%. +-------------------------- +When equipped with rand Shadow Armor and GBrand Shadow Shoes: +For each 2 Refine Levels of entire set: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Royal Guard Shadow Weapon: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Royal Guard +# +24574# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Over Brand by 5%. +-------------------------- +For each 3 Refine Levels: +Decreases After Skill Delay by 1.% +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Royal Guard +# +24575# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Physical Damage against enemies of every size by 3%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by additional 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by additional 4%. +-------------------------- +When equipped with Chain Press Shadow Pendant and Chain Press Shadow Earring: +For each Refine Level of entire set: +Increases damage of Shield Chain and Shield Press by 1%. +-------------------------- +When equipped with Royal Guard Shadow Shield: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Royal Guard +# +24576# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Shield Press by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Shield Press by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Royal Guard +# +24577# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Shield Chain by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Shield Chain by additional 2%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Royal Guard +# +24578# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Banishing Point by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Cannon Spear by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Royal Guard +# +24579# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of every size by 3%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by additional 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by additional 4%. +-------------------------- +When equipped with Banishing Cannon Shadow Armor and Banishing Cannon Shadow Shoes: +For each Refine Level of entire set: +Increases damage of Banishing Point and Cannon Spear by 1%. +-------------------------- +When equipped with Royal Guard Shadow Weapon: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Royal Guard +# +24580# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Cannon Spear skill cooldown by 0.2 seconds. +-------------------------- +For each 3 Refine Levels: +Decreases Cannon Spear skill cooldown by additional 0.1 second. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Royal Guard +# +24581# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Magical Damage with Holy element by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Holy element by additional 3%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Holy element by additional 4%. +-------------------------- +When equipped with Magnus Shadow Pendant and Magnus Shadow Earring: +For each 2 Refine Levels of entire set: +Increases damage of Genesis Ray by 1%. +-------------------------- +When equipped with Royal Guard Shadow Shield: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Royal Guard +# +24582# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Genesis Ray by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Genesis Ray by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Royal Guard +# +24583# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases Genesis Ray skill cooldown by 0.2 seconds. +-------------------------- +For each 3 Refine Levels: +Decreases Genesis Ray skill cooldown by additional 0.1 second. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Royal Guard +# +24584# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxHP +100 +ASPD +1 +-------------------------- +Type: Shadow Armor +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +24585# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxHP +100 +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Shadow Shield +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +24586# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxHP +100 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Type: Shadow Shoes +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +24587# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MaxHP +100 +MATK +15 +-------------------------- +Type: Shadow Earring +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +24588# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MaxHP +100 +ATK +15 +-------------------------- +Type: Shadow Pendant +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +24589# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Booster Shadow Armor, Booster Shadow Shield, Booster Shadow Shoes, Booster Shadow Earring and Booster Shadow Pendant: +Decreases Ignition Break skill cooldown by 0.5 seconds. +Physical attacks have a certain chance to auto cast Level 3 Ignition Break. (If you learned a higher Level, it will auto cast that Level instead.) +Increases Ranged Physical Damage by 15%. +Decreases After Skill Delay by 15%. +Ignores 70% physical and magical defense of all race (Except Players). +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +24590# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Booster Shadow Armor, Booster Shadow Shield, Booster Shadow Shoes, Booster Shadow Earring and Booster Shadow Pendant: +Decreases Cannon Spear skill cooldown by 0.5 seconds. +Increases Magical Damage with Holy element by 10%. +Increases damage of Cannon Spear and Genesis Ray by 15%. +Increases Ranged Physical Damage by 15%. +ASPD +2 +Ignores 70% physical and magical defense of all race (Except Players). +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Royal Guard +# +24591# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Booster Shadow Armor, Booster Shadow Shield, Booster Shadow Shoes, Booster Shadow Earring and Booster Shadow Pendant: +Increases Physical Damage against enemies of all size enemies by 5%. +Increases damage of Axe Tornado and Arms Cannon by 15%. +Increases Ranged Physical Damage by 15%. +Decreases After Skill Delay by 15%. +Ignores 70% physical and magical defense of all race (Except Players). +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +24592# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Booster Shadow Armor, Booster Shadow Shield, Booster Shadow Shoes, Booster Shadow Earring and Booster Shadow Pendant: +Decreases Variable Casting Time by 10%. +Decreases Cart Tornado skill cooldown by 1 second. +Increases damage of Cart Cannon by 15%. +Increases Ranged Physical Damage by 15%. +Decreases After Skill Delay by 15%. +Ignores 70% physical and magical defense of all race (Except Players). +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Genetic +# +24593# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Booster Shadow Armor, Booster Shadow Shield, Booster Shadow Shoes, Booster Shadow Earring and Booster Shadow Pendant: +Critical +10 +Increases damage of Rolling Cutter and Counter Slash by 15%. +Increases Ranged Physical Damage by 15%. +Decreases After Skill Delay by 15%. +Ignores 70% physical and magical defense of all race (Except Players). +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +24594# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Booster Shadow Armor, Booster Shadow Shield, Booster Shadow Shoes, Booster Shadow Earring and Booster Shadow Pendant: +Physical attacks have a certain chance to auto cast Level 3 Psychic Wave. (If you learned a higher Level, it will auto cast that Level instead.) +Increases Magical Damage with Neutral element by 10%. +Increases damage of Triangle Shot and Fatal Menace by 15%. +Decreases After Skill Delay by 15%. +ASPD +2 +Ignores 70% physical and magical defense of all race (Except Players). +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +24595# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Booster Shadow Armor, Booster Shadow Shield, Booster Shadow Shoes, Booster Shadow Earring and Booster Shadow Pendant: +Increases Magical Damage with every element by 10%. +Decreases Variable Casting Time by 10%. +Increases damage of Crimson Rock and Chain Lightning by 15%. +Decreases After Skill Delay by 15%. +Ignores 70% physical and magical defense of all race (Except Players). +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Warlock +# +24596# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Booster Shadow Armor, Booster Shadow Shield, Booster Shadow Shoes, Booster Shadow Earring and Booster Shadow Pendant: +Increases Magical Damage with every element by 10%. +Decreases Diamond Dust skill cooldown by 4 seconds. +Increases damage of Psychic Wave and Diamond Dust by 15%. +Increases Magical Damage against all size enemies by 15%. +Ignores 70% physical and magical defense of all race (Except Players). +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +24597# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Booster Shadow Armor, Booster Shadow Shield, Booster Shadow Shoes, Booster Shadow Earring and Booster Shadow Pendant: +Increases Magical Damage with Holy element by 10%. +Decreases Adoramus skill cooldown by 1 second. +Increases damage of Duple Light by 15%. +Increases Damage against all size enemies by 15%. +Ignores 70% physical and magical defense of all race (Except Players). +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +24598# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Booster Shadow Armor, Booster Shadow Shield, Booster Shadow Shoes, Booster Shadow Earring and Booster Shadow Pendant: +Decreases Rampage Blaster skill cooldown by 7.5 seconds. +Increases damage of Tiger Cannon and Rampage Blaster by 15%. +Increases Ranged Physical Damage by 15%. +Decreases After Skill Delay by 15%. +Ignores 70% physical and magical defense of all race (Except Players). +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Sura +# +24599# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Booster Shadow Armor, Booster Shadow Shield, Booster Shadow Shoes, Booster Shadow Earring and Booster Shadow Pendant: +Decreases After Skill Delay by 15%. +Decreases Variable Casting Time by 10%. +Increases damage of Aimed Bolt and Arrow Storm by 15%. +Increases Ranged Physical Damage by 15%. +Ignores 70% physical and magical defense of all race (Except Players). +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Ranger +# +24600# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Booster Shadow Armor, Booster Shadow Shield, Booster Shadow Shoes, Booster Shadow Earring and Booster Shadow Pendant: +Increases Magical Damage with every element by 10%. +Decreases Variable Casting Time by 10%. +Increases damage of Severe Rainstorm and Reverberation by 15%. +Increases Ranged Physical Damage by 15%. +Ignores 70% physical and magical defense of all race (Except Players). +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Minstrel and Wanderer +# +24601# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +increases Ranged Physical Damage by additional 4%. +-------------------------- +When combined with Tail Dragon Shadow Shield and Tail Dragon Shadow Armor: +For each 2 Refine Levels of entire set: +Increases damage of Dragon Tail by 1%. +-------------------------- +When combined with Rebellion Shadow Shoes: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Gunslinger +# +24602# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Dragon Tail by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Dragon Tail by additional 2%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Gunslinger +# +24603# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage against from Small, Medium and Large size by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage against from Small, Medium and Large size by 1%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Gunslinger +# +24604# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MaxHP +5% +-------------------------- +Refine Level +7: +MaxHP +5% +-------------------------- +Refine Level +9: +MaxHP +2000, MaxSP +200. +Increases Ranged Physical Damage by 7%. +-------------------------- +When combined with Flare Dance Shadow Pendant and Flare Dance Shadow Shoes: +For each 2 Refine Levels of entire set: +Increases damage of Fire Dance by 1%. +-------------------------- +When combined with Rebellion Shadow Armor: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Gunslinger +# +24605# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Fire Dance by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Fire Dance by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Gunslinger +# +24606# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of on Small, Medium and Large size by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Physical Damage against enemies of on Small, Medium and Large size by 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Gunslinger +# +24607# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +increases Ranged Physical Damage by additional 4%. +-------------------------- +When combined with God Hammer Shadow Shield and God Hammer Shadow Armor: +For each 2 Refine Levels of entire set: +Increases damage of Hammer of God by 1%. +-------------------------- +When combined with Rebellion Shadow Shoes: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Gunslinger +# +24608# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Hammer of God by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Hammer of God by additional 2%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Gunslinger +# +24609# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of on all elemental monsters by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Physical Damage against enemies of on all elemental monsters by additional 1%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Gunslinger +# +24610# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MaxSP +5% +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +9: +Decreases SP Consumption of Banishing Buster by 15%. +-------------------------- +When combined with Shatter Buster Shadow Pendant and Shatter Buster Shadow Shoes: +For each 2 Refine Levels of entire set: +Increases damage of Shattering Storm and Banishing Buster damage by 1%. +-------------------------- +When combined with Rebellion Shadow Armor: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Gunslinger +# +24611# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Shattering Storm by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Shattering Storm by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Gunslinger +# +24612# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Banishing Buster by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Banishing Buster by additional 2%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Gunslinger +# +24613# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +MaxHP +10% +-------------------------- +When combined with Trip Shadow Shield and Trip Shadow Armor: +For each 2 Refine Levels of entire set: +Increases Round Trip damage by 1%. +-------------------------- +When combined with Rebellion Shadow Shoes: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Gunslinger +# +24614# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Round Trip by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Round Trip by additional 2%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Gunslinger +# +24615# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage against from Small, Medium and Large size by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage against from Small, Medium and Large size by 1%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Gunslinger +# +24616# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Neutral, Magical Damage with Water, Wind, Earth and Fire element by 5%. +-------------------------- +Refine Level +7: +Increases Neutral, Magical Damage with Water, Wind, Earth and Fire element by 5%. +-------------------------- +Refine Level +9: +Enables the use of Gravitational Field, skill Level based on learned Level of Water Ball. +-------------------------- +When combined with Super Magic Shadow Shield and Super Magic Shadow Shoes: +Enables the use of Level 5 Double Casting. + +For each Refine Level*2 of entire set: +Increases damage of Fire Bolt, Cold Bolt, Lightning Bolt, Storm Gust, Lord of Vermilion, Heaven's Drive and Meteor Storm by 1%. +-------------------------- +When combined with Super Novice Shadow Weapon: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Novice +# +24617# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by additional 4%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Novice +# +24618# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Storm Gust, Lord of Vermillion, Heaven's Drive and Meteor Storm by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Storm Gust, Lord of Vermillion, Heaven's Drive and Meteor Storm by additional 4%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Novice +# +24619# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Melee and Ranged Physical Damage by 5%. +-------------------------- +Refine Level +7: +Increases Melee and Ranged Physical Damage by additional 5%. +-------------------------- +Refine Level +9: +Enables the use of Meltdown, skill level based on learned level of Weapon Research. +-------------------------- +When combined with Super Power Shadow Earring and Super Power Shadow Pendant: +Enables the use of Level 5 Shield Chain. + +For each Refine Level*2 of entire set: +Increases damage of Back Stab, Raid, Shield Boomerang and Shield Chain by 1%. +-------------------------- +When combined with Super Novice Shadow Shield: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Novice +# +24620# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Shield Boomerang and Shield Chain by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Shield Boomerang and Shield Chain by additional 4%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Novice +# +24621# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Back Stab and Raid by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Back Stab and Raid by additional 4%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Novice +# +24622# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 4%. +-------------------------- +When combined with Kunai Shadow Shield and Kunai Shadow Shadow Armor: +For each 2 Refine Levels of entire set: +Increases damage of Kunai Splash and Kunai Explosion by 1%. +-------------------------- +When combined with Kagerou Shadow Shoes: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Ninja +# +24623# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of on Small, Medium and Large size by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Physical Damage against enemies of on Small, Medium and Large size by 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Ninja +# +24624# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Kunai Explosion by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Kunai Explosion by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Ninja +# +24625# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Decreases SP Consumption by 10%. +-------------------------- +When combined with Cross Shuriken Shadow Pendant and Cross Shuriken Shadow Shoes: +For each 2 Refine Levels of entire set: +Increases damage of Swirling Petal by 1%. +-------------------------- +When combined with Kagerou Shadow Armor: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Ninja +# +24626# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Swirling Petal by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Swirling Petal by additional 2%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Ninja +# +24627# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Cross Slash by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Cross Slash by additional 2%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Ninja +# +24628# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by 5%. +-------------------------- +Refine Level +7: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 5%. +-------------------------- +When combined with First Exploding Draft Shadow Shield and First Exploding Draft Shadow Armor: +For each Refine Level of entire set: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 1%. +-------------------------- +When combined with Oboro Shadow Shoes: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Ninja +# +24629# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 2%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Ninja +# +24630# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Magical Damage against on all elemental monsters by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage against on all elemental monsters by additional 1%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Ninja +# +24631# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 3%. +-------------------------- +Refine Level +7: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 3%. +-------------------------- +Refine Level +9: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 4%. +-------------------------- +When combined with Wind Spear Petal Shadow Pendant and Wind Spear Petal Shadow Shoes: +For each 2 Refine Levels of entire set: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 1%. +-------------------------- +When combined with Oboro Shadow Armor: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Ninja +# +24632# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MaxSP +2% +-------------------------- +For each 2 Refine Levels: +MaxSP +1% +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Ninja +# +24633# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Magical Damage against all size enemies by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage against all size enemies by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Ninja +# +24634# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 4%. +-------------------------- +When equipped with Picky Rush Shadow Shield and Picky Rush Shadow Armor: +For each 2 Refine Levels of entire set: +Increases damage of Picky Peck by 1%. +-------------------------- +When equipped with Doram Physical Shadow Shoes: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Summoner (Doram) +# +24635# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of all size enemies by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Physical Damage against enemies of all size enemies by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Summoner (Doram) +# +24636# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Picky Peck by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Picky Peck by additional 1%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Summoner (Doram) +# +24637# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 5%. +-------------------------- +Refine Level +9: +Decreases SP Consumption of Lunatic Carrot Beat by 10%. +-------------------------- +When equipped with Savage Rabbit Shadow Pendant and Savage Rabbit Shadow Shoes: +For each Refine Level of entire set: +Increases damage of Lunatic Carrot Beat and Spirit of Savage by 1%. +-------------------------- +When equipped with Doram Physical Shadow Armor: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Summoner (Doram) +# +24638# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases damage of Lunatic Carrot Beat by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Spirit of Savage by 3%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Summoner (Doram) +# +24639# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of all size enemies by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Physical Damage against enemies of all size enemies by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Summoner (Doram) +# +24640# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases damage of Catnip Meteor by 5%. +-------------------------- +Refine Level +7: +Increases damage of Catnip Meteor by additional 5%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 5%. +-------------------------- +When equipped with Catnip Shadow Shield and Catnip Shadow Armor: +For each Refine Level of entire set: +Increases damage of Catnip Meteor by 1%. +-------------------------- +When equipped with Doram Magical Shadow Shoes: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Summoner (Doram) +# +24641# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Nyang Grass skill cooldown by 4 seconds. +-------------------------- +For each 2 Refine Levels: +Increases damage of Catnip Meteor by 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Summoner (Doram) +# +24642# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Magical Damage against all size enemies by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage against all size enemies by additional 1%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Summoner (Doram) +# +24643# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Magical Damage with Earth, Fire, Water and Wind element by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Earth, Fire, Water and Wind element by additional 3%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 5%. +-------------------------- +When equipped with Silvervine Shadow Pendant and Silvervine Shadow Shoes: +For each 2 Refine Levels of entire set: +Increases damage of Silvervine Stem Spear by 1%. +-------------------------- +When equipped with Doram Magical Shadow Armor: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Summoner (Doram) +# +24644# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Decreases Variable Casting Time by 3%. +-------------------------- +For each 2 Refine Levels: +Decreases Variable Casting Time by additional 1%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Summoner (Doram) +# +24645# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Magical Damage against enemies of every element by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage against enemies of every element by additional 1%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Summoner (Doram) +# +24646# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Melee Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Melee Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Melee Physical Damage by additional 4%. +-------------------------- +When equipped with Sunshine Shadow Shield and Sunshine Shadow Armor: +For each 2 Refine Levels of entire set: +Increases damage of Solar Burst by 1%. +-------------------------- +When equipped with Star Emperor Shadow Shoes: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Star Emperor +# +24647# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Physical Damage against enemies of every size by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Star Emperor +# +24648# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Prominence Kick by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Prominence Kick by additional 2%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Star Emperor +# +24649# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Melee Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Melee Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Decreases SP Consumption of Full Moon Kick by 10%. +-------------------------- +When equipped with Moonlight Shadow Pendant and 9Moonlight Shadow Shoes: +For each 2 Refine Levels of entire set: +Increases damage of Full Moon Kick by 1%. +-------------------------- +When equipped with ^99009Star Emperor Shadow Armor: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Star Emperor +# +24650# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Physical Damage against enemies of every size by additional 1%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Star Emperor +# +24651# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of New Moon Kick by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of New Moon Kick by additional 2%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Star Emperor +# +24652# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases damage of Flash Kick by 3%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by additional 5%). +-------------------------- +When equipped with Stardust Shadow Shield and Stardust Shadow Armor: +For each Refine Levels of entire set: +Increases damage of Falling Star by 1%. +-------------------------- +When equipped with Star Emperor Shadow Shoes: +Ignores physical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Star Emperor +# +24653# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +ASPD +1 +-------------------------- +For each 2 Refine Levels: +Increases damage of Falling Star by 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Star Emperor +# +24654# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Physical Damage against enemies of against enemies of all elements by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Physical Damage against enemies of against enemies of all elements by additional 1% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Star Emperor +# +24655# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +MaxSP +5% +-------------------------- +Refine Level +7: +Increases damage of Esma by 10%. +-------------------------- +Refine Level +9: +Decreases SP Consumption of Espa by 10%. +-------------------------- +When equipped with S Shadow Shield and S Shadow Armor: +For each Refine Levels of entire set: +Increases damage of Espa and Eswhoo by 1%. +-------------------------- +When equipped with Soul Reaper Shadow Shoes: +Ignores magical defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +Soul Reaper +# +24656# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Magical Damage against enemies of every size by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage against enemies of every size by additional 1%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +Soul Reaper +# +24657# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases damage of Esma by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Espa and Eswhoo by additional 1%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: +Base Level 99 +Soul Reaper +# +24658# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Magical Damage with Shadow element by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Shadow element by additional 3%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Shadow element by additional 4%. +-------------------------- +When equipped with Evil Curse Shadow Pendant and 9Evil Curse Shadow Shoes: +For each Refine Level of entire set: +Increases damage of Curse Explosion by 1%. +-------------------------- +When equipped with ^99009Soul Reaper Shadow Armor: +Ignores magic defense of all race, except Players, by 40%. + +For each Refine Level of entire set: +Ignores magic defense of all race, except Players, by additional 1%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: +Base Level 99 +Soul Reaper +# +24659# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Magical Damage with Shadow element by 5%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Curse Explosion by 3%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: +Base Level 99 +Soul Reaper +# +24660# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Decreases Curse of Wicked Soul skill cooldown by 1 second. +-------------------------- +For each 2 Refine Levels: +Decreases Curse of Wicked Soul skill cooldown by additional 0.1 seconds. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: +Base Level 99 +Soul Reaper +# +24661# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Ignores physical defense of all race, except Players, by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Refine Level +10: +Increases Physical Damage against enemies of every race, except Players, by 3%. +-------------------------- +When equipped with Full Penetration Shadow Pendant: +ATK +2% + +Total Refine Level of entire set at least +18: +Ignores physical defense of all race, except Players, by 100%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24662# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Ignores physical defense of all race, except Players, by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Refine Level +10: +Increases Physical Damage against enemies of every race, except Players, by 3%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24663# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores physical defense of all race, except Players, by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Refine Level +10: +Increases Physical Damage against enemies of every race, except Players, by 3%. +-------------------------- +When equipped with Full Penetration Shadow Shoes: +ATK +2% + +Total Refine Level of entire set at least +18: +Ignores physical defense of all race, except Players, by 100%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24664# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores physical defense of all race, except Players, by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of all race, except Players, by additional 1%. +-------------------------- +Refine Level +10: +Increases Physical Damage against enemies of every race, except Players, by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24665# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Ignores magical defense of all race, except Players, by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Refine Level +10: +Increases Magical Damage against monsters of every race, except Players, by 3%. +-------------------------- +When equipped with Full Tempest Shadow Pendant: +MATK +2% + +Total Refine Level of entire set at least +18: +Ignores magical defense of all race, except Players, by 100%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24666# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores magical defense of all race, except Players, by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Refine Level +10: +Increases Magical Damage against monsters of every race, except Players, by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24667# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Ignores magical defense of all race, except Players, by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Refine Level +10: +Increases Magical Damage against monsters of every race, except Players, by 3%. +-------------------------- +When equipped with Full Tempest Shadow Shoes: +MATK +2% + +Total Refine Level of entire set at least +18: +Ignores magical defense of all race, except Players, by 100%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24668# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Ignores magical defense of all race, except Players, by 5%. +-------------------------- +For each 2 Refine Levels: +Ignores magical defense of all race, except Players, by additional 1%. +-------------------------- +Refine Level +10: +Increases Magical Damage against monsters of every race, except Players, by 3%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24669# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Critical +10 +-------------------------- +For each 2 Refine Levels: +Critical +1 +-------------------------- +Refine Level +9: +Increases Critical Damage by 5%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24670# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +FLEE +10 +-------------------------- +For each 2 Refine Levels: +FLEE +1 +-------------------------- +Refine Level +9: +ASPD +1 +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24671# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +ATK +10 +-------------------------- +For each 2 Refine Levels: +ATK +1 +-------------------------- +Refine Level +9: +ATK +3% +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24672# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Increases Critical Damage by 1%. +-------------------------- +For each 2 Refine Levels: +Increases Critical Damage by additional 1%. +-------------------------- +Refine Level +9: +Increases Physical Damage by 3%. +-------------------------- +When equipped with Mammoth Shadow Armor, Mammoth Shadow Shield, Mammoth Shadow Shoes, Mammoth Shadow Weapon, Mammoth Shadow Earring and Mammoth Shadow Pendant: +ATK +1% + +Total Refine Level of entire set at least +45: +Prevents knock-back effect. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24673# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +HIT +10 +-------------------------- +For each 2 Refine Levels: +HIT +1 +-------------------------- +Refine Level +9: +Perfect Hit +5% +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24674# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEF +5 +-------------------------- +For each 2 Refine Levels: +DEF +1 +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24675# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MATK +3% +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage with every element by 1%. +-------------------------- +Refine Level +10: +Decreases Variable Casting Time by 3%. +-------------------------- +When equipped with True Gemstone Shadow Shoes: +MATK +2% + +Total Refine Level of entire set at least +18: +Nullifies Gemstone requirement of certain skills. +Increases SP Consumption by 40%. + +Total Refine Level of entire set at least +20: +Increases Magical Damage against enemies of every size by 12%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24676# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MATK +3% +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage with every element by 1%. +-------------------------- +Refine Level +10: +Decreases Variable Casting Time by 3%. +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24677# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MATK +3% +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage with every element by 1%. +-------------------------- +Refine Level +10: +Decreases Variable Casting Time by 3%. +-------------------------- +When equipped with True Gemstone Shadow Pendant: +MATK +2% + +Total Refine Level of entire set at least +18: +Nullifies Gemstone requirement of certain skills. +Increases SP Consumption by 40%. + +Total Refine Level of entire set at least +20: +Increases Magical Damage against enemies of every size by 12%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24678# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MATK +3% +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage with every element by 1%. +-------------------------- +Refine Level +10: +Decreases Variable Casting Time by 3%. +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24679# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +ATK +3% +-------------------------- +For each 2 Refine Levels: +Increases melee and ranged phsyical damage by 1%. +-------------------------- +Refine Level +10: +MaxHP +3% +-------------------------- +When equipped with Maximum Mammoth Shadow Shoes: +ATK +2% + +Total Refine Level of entire set at least +18: +Prevents knock-back effect. + +Total Refine Level of entire set at least +20: +Increases Physical Damage against enemies of against enemies of all elements by 12%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24680# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +ATK +3% +-------------------------- +For each 2 Refine Levels: +Increases melee and ranged phsyical damage by 1%. +-------------------------- +Refine Level +10: +MaxHP +3% +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24681# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +ATK +3% +-------------------------- +For each 2 Refine Levels: +Increases melee and ranged phsyical damage by 1%. +-------------------------- +Refine Level +10: +MaxHP +3% +-------------------------- +When equipped with Maximum Mammoth Shadow Pendant: +ATK +2% + +Total Refine Level of entire set at least +18: +Prevents knock-back effect. + +Total Refine Level of entire set at least +20: +Increases Physical Damage against enemies of against enemies of all elements by 12%. +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24682# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +ATK +3% +-------------------------- +For each 2 Refine Levels: +Increases melee and ranged phsyical damage by 1%. +-------------------------- +Refine Level +10: +MaxHP +3% +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24683# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Base Level less than 175: +Increases experience gained from monsters by 20%. +-------------------------- +Base Level at least 175: +Increases experience gained from monsters by 10%. +-------------------------- +For each 2 Refine Levels: +Increases experience gained from monsters by additional 1%. +-------------------------- +Refine Level +10: +Increases experience gained from monsters by additional 5%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24685# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxHP +3% +MaxSP +3% +-------------------------- +For each 3 Refine Levels: +ATK +1% +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 3%. +-------------------------- +Refine Level +10: +Physical attacks have a 2% chance to absorb 2% of the inflicted damage as HP and 1% chance to absorb 2% of the inflicted damage as SP. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24686# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +MaxHP +3% +MaxSP +3% +-------------------------- +For each 3 Refine Levels: +ATK +1% +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 3%. +-------------------------- +Refine Level +10: +Physical attacks have a 2% chance to absorb 2% of the inflicted damage as HP and 1% chance to absorb 2% of the inflicted damage as SP. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24687# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +Increases Magical Damage with every element by 5%. +Increases Melee and Ranged Physical Damage by 5%. +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: None +# +24688# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxHP +100 +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Shadow Shield +Refineable: No +-------------------------- +Requirement: None +# +24689# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxHP +100 +HIT +5 +-------------------------- +When equipped with Paradise Shadow Weapon, Paradise Shadow Shield, Paradise Shadow Shoes, Paradise Shadow Pendant and Paradise Shadow Earring: +ASPD +2 +Decreases Variable Casting Time by 10%. +Ignores physical and magical defense of all race, except Players, by 50%. +-------------------------- +Type: Shadow Armor +Refineable: No +-------------------------- +Requirement: None +# +24690# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxHP +100 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Type: Shadow Shoes +Refineable: No +-------------------------- +Requirement: None +# +24691# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MaxHP +100 +MATK +5 +-------------------------- +Type: Shadow Earring +Refineable: No +-------------------------- +Requirement: None +# +24692# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MaxHP +100 +ATK +5 +-------------------------- +Type: Shadow Pendant +Refineable: No +-------------------------- +Requirement: None +# +24693# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxHP +100 +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Shadow Shield +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +24694# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxHP +100 +HIT +15 +-------------------------- +Type: Shadow Armor +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +24695# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MaxHP +100 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Type: Shadow Shoes +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +24696# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MaxHP +100 +MATK +15 +-------------------------- +Type: Shadow Earring +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +24697# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +MaxHP +100 +ATK +15 +-------------------------- +Type: Shadow Pendant +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +24698# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Advanced Paradise Shadow Armor, Advanced Paradise Shadow Shield, Advanced Paradise Shadow Shoes, Advanced Paradise Shadow Earring, Advanced Paradise Shadow Pendant: +Decreases Ignition Break skill cooldown by 0.5 seconds. +Physical melee attacks have a certain chance to auto-cast Level 3 Ignition Break. +(If you learned a higher Level, it will auto cast that Level instead.) +Increases damage of Sonic Wave, Dragon Breath, Dragon Breath - Water and Hundred Spear by 15%. +Increases Melee and Ranged Physical Damage by 15%. +Decreases After Skill Delay by 15%. +Ignores physical defense of all race, except Players, by 50%. +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +24699# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Advanced Paradise Shadow Armor, Advanced Paradise Shadow Shield, Advanced Paradise Shadow Shoes, Advanced Paradise Shadow Earring, Advanced Paradise Shadow Pendant: +Decreases Cannon Spear skill cooldown by 0.5 seconds. +Increases Magical Damage with Holy element by 10%. +Increases damage of Banishing Point, Overbrand and Genesis Ray by 15%. +Increases Magical Damage with every element by 15%. +Increases Melee and Ranged Physical Damage by 15%. +ASPD +2 +Ignores physical defense of all race, except Players, by 50%. +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Royal Guard +# +24700# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Advanced Paradise Shadow Armor, Advanced Paradise Shadow Shield, Advanced Paradise Shadow Shoes, Advanced Paradise Shadow Earring, Advanced Paradise Shadow Pendant: +Increases Physical Damage against enemies of every size by 5%. +Increases damage of Axe Tornado, Power Swing, Vulcan Arm, Knuckle Boost and Arms Cannon by 15%. +Increases Melee and Ranged Physical Damage by 15%. +Decreases After Skill Delay by 15%. +Ignores physical defense of all race, except Players, by 50%. +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +24701# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Advanced Paradise Shadow Armor, Advanced Paradise Shadow Shield, Advanced Paradise Shadow Shoes, Advanced Paradise Shadow Earring, Advanced Paradise Shadow Pendant: +Decreases Variable Casting Time by 10%. +Decreases Cart Tornado skill cooldown by 1 second. +Increases damage of Cart Tornado and Cart Cannon by 15%. +Increases Melee and Ranged Physical Damage by 15%. +Decreases After Skill Delay by 15%. +Ignores physical defense of all race, except Players, by 50%. +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Genetic +# +24702# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Advanced Paradise Shadow Armor, Advanced Paradise Shadow Shield, Advanced Paradise Shadow Shoes, Advanced Paradise Shadow Earring, Advanced Paradise Shadow Pendant: +Critical +10 +Increases damage of Cross Impact, Rolling Cutter and Counter Slash by 15%. +Increases Melee and Ranged Physical Damage by 15%. +Decreases After Skill Delay by 15%. +Ignores physical defense of all race, except Players, by 50%. +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +24703# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Advanced Paradise Shadow Armor, Advanced Paradise Shadow Shield, Advanced Paradise Shadow Shoes, Advanced Paradise Shadow Earring, Advanced Paradise Shadow Pendant: +Physical melee attacks have a certain chance to auto-cast Level 3 Psychic Wave. +Increases damage of Triangle Shot and Fatal Menace by 15%. +Increases Magical Damage with every element by 15%. +Increases Melee and Ranged Physical Damage by 15%. +Decreases After Skill Delay by 15%. +ASPD +2 +Ignores physical and magical defense of all race, except Players, by 50%. +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +24704# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Advanced Paradise Shadow Armor, Advanced Paradise Shadow Shield, Advanced Paradise Shadow Shoes, Advanced Paradise Shadow Earring, Advanced Paradise Shadow Pendant: +Increases Magical Damage with every element by 15%. +Decreases Variable Casting Time by 10%. +Increases damage of Crimson Rock, Earth Strain, Chain Lightning and Soul Expansion by 15%. +Decreases After Skill Delay by 15%. +Ignores magical defense of all race, except Players, by 50%. +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Warlock +# +24705# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Advanced Paradise Shadow Armor, Advanced Paradise Shadow Shield, Advanced Paradise Shadow Shoes, Advanced Paradise Shadow Earring, Advanced Paradise Shadow Pendant: +Increases Magical Damage with every element by 15%. +Increases damage of Psychic Wave, Diamond Dust, Earth Grave and Varetyr Spear by 15%. +Decreases After Skill Delay by 15%. +ASPD +2 +Ignores magical defense of all race, except Players, by 50%. +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +24706# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Advanced Paradise Shadow Armor, Advanced Paradise Shadow Shield, Advanced Paradise Shadow Shoes, Advanced Paradise Shadow Earring, Advanced Paradise Shadow Pendant: +Increases Magical Damage with every element by 15%. +Decreases Adoramus skill cooldown by 1 second. +Increases damage of Adoramus, Judex, Magnus Exorcismus and Duple Light by 15%. +Decreases After Skill Delay by 15%. +Ignores physical and magical defense of all race, except Players, by 50%. +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +24707# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Advanced Paradise Shadow Armor, Advanced Paradise Shadow Shield, Advanced Paradise Shadow Shoes, Advanced Paradise Shadow Earring, Advanced Paradise Shadow Pendant: +Decreases Rampage Blaster skill cooldown by 7.5 seconds. +Increases damage of Fallen Empire, Tiger Cannon, Rampage Blaster and Knuckle Arrow by 15%. +Increases Melee and Ranged Physical Damage by 15%. +Decreases After Skill Delay by 15%. +Ignores physical defense of all race, except Players, by 50%. +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Sura +# +24708# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Advanced Paradise Shadow Armor, Advanced Paradise Shadow Shield, Advanced Paradise Shadow Shoes, Advanced Paradise Shadow Earring, Advanced Paradise Shadow Pendant: +Decreases After Skill Delay by 15%. +Decreases Variable Casting Time by 10%. +Increases damage of Sharp Shooting, Aimed Bolt and Arrow Storm by 15%. +Increases Ranged Physical Damage by 15%. +Ignores physical defense of all race, except Players, by 50%. +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Ranger +# +24709# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Advanced Paradise Shadow Armor, Advanced Paradise Shadow Shield, Advanced Paradise Shadow Shoes, Advanced Paradise Shadow Earring, Advanced Paradise Shadow Pendant: +Increases Magical Damage with every element by 15%. +Decreases Variable Casting Time by 10%. +Increases damage of Severe Rainstorm, Metallic Sound and Reverberation by 15%. +Decreases After Skill Delay by 15%. +Increases Ranged Physical Damage by 15%. +Ignores physical defense of all race, except Players, by 50%. +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Minstrel and Wanderer +# +24710# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Advanced Paradise Shadow Armor, Advanced Paradise Shadow Shield, Advanced Paradise Shadow Shoes, Advanced Paradise Shadow Earring, Advanced Paradise Shadow Pendant: +Increases Magical Damage with every element by 15%. +Decreases Variable Casting Time by 10%. +Increases damage of Flaming Petals, Freezing Spear, Wind Blade, Cross Slash and Swirling Petal by 15%. +Decreases After Skill Delay by 15%. +Increases Ranged Physical Damage by 15%. +Ignores physical and magical defense of all race, except Players, by 50%. +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +24711# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Advanced Paradise Shadow Armor, Advanced Paradise Shadow Shield, Advanced Paradise Shadow Shoes, Advanced Paradise Shadow Earring, Advanced Paradise Shadow Pendant: +Decreases Heat Barrel skill cooldown by 5 seconds. +Decreases Variable Casting Time by 10%. +Increases damage of Fire Dance, Fire Rain and Round Trip by 15%. +Decreases After Skill Delay by 15%. +Increases Ranged Physical Damage by 15%. +Ignores physical defense of all race, except Players, by 50%. +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +24712# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Advanced Paradise Shadow Armor, Advanced Paradise Shadow Shield, Advanced Paradise Shadow Shoes, Advanced Paradise Shadow Earring, Advanced Paradise Shadow Pendant: +Increases Magical Damage with every element by 15%. +Decreases Variable Casting Time by 10%. +Increases damage of Espa, Eswhoo and Curse Explosion by 15%. +Decreases Curse of Wicked Soul skill cooldown by 1.5 seconds. +Decreases After Skill Delay by 15%. +Ignores magical defense of all race, except Players, by 50%. +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Soul Reaper +# +24713# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Advanced Paradise Shadow Armor, Advanced Paradise Shadow Shield, Advanced Paradise Shadow Shoes, Advanced Paradise Shadow Earring, Advanced Paradise Shadow Pendant: +Decreases Variable Casting Time by 10%. +Increases damage of Prominence Kick, Solar Burst, New Moon Kick and Full Moon Kick by 15%. +Decreases After Skill Delay by 15%. +Increases Melee Physical Damage by 15%. +Ignores physical defense of all race, except Players, by 50%. +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Star Emperor +# +24714# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Advanced Paradise Shadow Armor, Advanced Paradise Shadow Shield, Advanced Paradise Shadow Shoes, Advanced Paradise Shadow Earring, Advanced Paradise Shadow Pendant: +Increases Magical Damage with every element by 15%. +Decreases Variable Casting Time by 10%. +Increases damage of Picky Peck, Spirit of Savage, Silvervine Stem Spear and Catnip Meteor by 15%. +Decreases After Skill Delay by 15%. +Increases Ranged Physical Damage by 15%. +Ignores physical and magical defense of all race, except Players, by 50%. +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +24715# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +When equipped with Advanced Paradise Shadow Armor, Advanced Paradise Shadow Shield, Advanced Paradise Shadow Shoes, Advanced Paradise Shadow Earring, Advanced Paradise Shadow Pendant: +Increases Magical Damage with every element by 15%. +Decreases Variable Casting Time by 10%. +Increases damage of Raid, Backstab, Fire Bolt, Cold Bolt, Lightning Bolt, Fire Ball and Heaven's Drive by 15%. +Decreases After Skill Delay by 15%. +Increases Melee Physical Damage by 15%. +Ignores physical and magical defense of all race, except Players, by 50%. +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Super Novice +# +24722# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MATK +15 +-------------------------- +For each 2 Refine Levels: +MATK +1 +-------------------------- +Refine Level +9: +Physical melee attacks have a 7% chance to auto-cast Level 7 Napalm Beat. +-------------------------- +Refine Level +10: +Physical melee attacks have a 10% chance to auto-cast Level 10 Napalm Beat. +-------------------------- +When equipped with Auto Spell Shadow Armor and Auto Spell Shadow Shoes: +MATK +1% + +Total Refine Level of entire set at least +21: +Physical melee attacks have a 4% chance to auto-cast Level 3 Napalm Vulcan. + +Total Refine Level of entire set at least +27: +Physical melee attacks have a 8% chance to auto-cast Level 5 Napalm Vulcan. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24723# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +HIT +10 +-------------------------- +For each 2 Refine Levels: +HIT +1 +-------------------------- +Refine Level +9: +Perfect HIT +5% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24724# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +FLEE +10 +-------------------------- +For each 2 Refine Levels: +FLEE +1 +-------------------------- +Refine Level +9: +ASPD +1 +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24725# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +15 +-------------------------- +For each 2 Refine Levels: +ATK +1 +-------------------------- +Refine Level +9: +Physical melee attacks have a 7% chance to auto-cast Level 7 Bash. +-------------------------- +Refine Level +10: +Physical melee attacks have a 10% chance to auto-cast Level 10 Bash. +-------------------------- +When equipped with Auto Spell Shadow Earring and Auto Spell Shadow Pendant: +ATK +1%, + +Total Refine Level of entire set at least +21: +Physical melee attacks have a 4% chance to auto-cast Level 7 Sonic Blow. + +Total Refine Level of entire set at least +27: +Physical melee attacks have a 8% chance to auto-cast Level 10 Sonic Blow. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24726# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +HIT +10 +-------------------------- +For each 2 Refine Levels: +HIT +1 +-------------------------- +Refine Level +9: +Perfect HIT +5% +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24727# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +FLEE +10 +-------------------------- +For each 2 Refine Levels: +FLEE +1 +-------------------------- +Refine Level +9: +ASPD +1 +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24728# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MATK +3% +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage with every element by 1%. +-------------------------- +Refine Level +9: +ASPD +1 +-------------------------- +Refine Level +10: +Physical melee attacks have a 7% chance to auto-cast Level 3 Frost Misty. +(If you learned a higher Level, it will auto cast that Level instead.) +-------------------------- +When equipped with Major Auto Spell Shadow Shoes: +MATK +2% + +Total Refine Level of entire set at least +18: +Physical melee attacks have a 4% chance to auto-cast Level 2 Jack Frost. +(If you learned a higher Level, it will auto cast that Level instead.) + +Total Refine Level of entire set at least +20: +Physical melee attacks have a 8% chance to auto-cast Level 4 Jack Frost. +(If you learned a higher Level, it will auto cast that Level instead.) +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24729# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +MATK +3% +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage with every element by 1%. +-------------------------- +Refine Level +10: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24730# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +ATK +3% +-------------------------- +For each 2 Refine Levels: +Increases Melee Physical Damage by 1%. +-------------------------- +Refine Level +9: +ASPD +1 +-------------------------- +Refine Level +10: +Physical melee attacks have a 7% chance to auto-cast Level 7 Fatal Menace. +(If you learned a higher Level, it will auto cast that Level instead.) +-------------------------- +When equipped with Major Auto Spell Shadow Pendant: +ATK +2% + +Total Refine Level of entire set at least +18: +Physical melee attacks have a 4% chance to auto-cast Level 4 Power Swing. +(If you learned a higher Level, it will auto cast that Level instead.) + +Total Refine Level of entire set at least +20: +Physical melee attacks have a 8% chance to auto-cast Level 8 Power Swing. +(If you learned a higher Level, it will auto cast that Level instead.) +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24731# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +ATK +3% +-------------------------- +For each 2 Refine Levels: +Increases Melee Physical Damage by 1%. +-------------------------- +Refine Level +10: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24732# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +ATK +1%, MATK +1%. +-------------------------- +For each 2 Refine Levels: +ATK +1%, MATK +1%. +-------------------------- +Refine Level +7: +DEF +15, FLEE +15. +-------------------------- +Refine Level +10: +Increases Movement Speed. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24733# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +For each 3 Refine Levels: +Increases Damage against enemies of every size by 1%. +Decreases Physical and Magical Damage taken from enemies of every size by 1%. +-------------------------- +Refine Level +10: +Nullifies weapon damage size penalty against all monsters. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24734# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Melee and Ranged Physical Damage by 2%. +-------------------------- +For each 2 Refine Levels: +ATK +1% +-------------------------- +Refine Level +9: +ASPD +1 +-------------------------- +Refine Level +10: +Increases Melee and Ranged Physical Damage by additional 7%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +# +24735# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Melee and Ranged Physical Damage by 2%. +-------------------------- +For each 2 Refine Levels: +ATK +1% +-------------------------- +Refine Level +9: +ASPD +1 +-------------------------- +Refine Level +10: +Increases Melee and Ranged Physical Damage by additional 7%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +# +24736# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Magical Damage with every element by 2%. +-------------------------- +For each 2 Refine Levels: +MATK +1% +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +10: +Increases Magical Damage with every element by additional 7%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: +Base Level 99 +# +24737# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +Increases Magical Damage with every element by 2%. +-------------------------- +For each 2 Refine Levels: +MATK +1% +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +10: +Increases Magical Damage with every element by additional 7%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: +Base Level 99 +# +24738# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +15, Critical +7 +-------------------------- +For each 2 Refine Levels: +Increases Critical Damage by 1%. +-------------------------- +Refine Level +7: +Critical +7 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24739# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10, MATK +10 +-------------------------- +When equipped with Booster Shadow Armor, Booster Shadow Shield, Booster Shadow Shoes, Booster Shadow Earring and Booster Shadow Pendant: +Increases Magical Damage with every element by 15%. +Increases Ranged Physical Damage by 15%. +Increases damage of Picky Peck, Lunatic Carrot Beat, Silvervine Stem Spear and Catnip Meteor by 15%. +Decreases Lunatic Carrot Beat skill cooldown by 5 seconds. +Decreases After Skill Delay by 15%. +Ignores 70% physical and magical defense of all race (Except Players). +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +24740# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10, MATK +10 +-------------------------- +When equipped with Booster Shadow Armor, Booster Shadow Shield, Booster Shadow Shoes, Booster Shadow Earring and Booster Shadow Pendant: +Increases Melee Physical Damage by 15%. +Decreases After Skill Delay by 15%. +Decreases Variable Casting Time by 10%. +Increases damage of Prominence Kick, Solar Burst, Full Moon Kick and Falling Star by 15%. +Decreases Document of Sun Moon Star skill cooldown by 20 seconds. +Ignores 70% physical and magical defense of all race (Except Players). +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Star Emperor +# +24741# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10, MATK +10 +-------------------------- +When equipped with Booster Shadow Armor, Booster Shadow Shield, Booster Shadow Shoes, Booster Shadow Earring and Booster Shadow Pendant: +Increases Magical Damage with every element by 15%. +Decreases Variable Casting Time by 10%. +Increases Ranged Physical Damage by 15%. +Decreases Cross Slash skill cooldown by 1 second. +Decreases After Skill Delay by 15%. +Increases damage of Flaming Petals, Freezing Spear, Cross Slash and Swirling Petal by 15%. +Ignores 70% physical and magical defense of all race (Except Players). +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Ninja classes +# +24742# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10, MATK +10 +-------------------------- +When equipped with Booster Shadow Armor, Booster Shadow Shield, Booster Shadow Shoes, Booster Shadow Earring and Booster Shadow Pendant: +Decreases Heat Barrel skill cooldown by 5 seconds. +Decreases Variable Casting Time by 10%. +Increases Ranged Physical Damage by 15%. +Decreases After Skill Delay by 15%. +Increases damage of Fire Dance, Fire Rain and Round Trip by 15%. +Ignores 70% physical and magical defense of all race (Except Players). +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +24743# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10, MATK +10 +-------------------------- +When equipped with Booster Shadow Armor, Booster Shadow Shield, Booster Shadow Shoes, Booster Shadow Earring and Booster Shadow Pendant: +Increases Magical Damage with every element by 15%. +Decreases Variable Casting Time by 10%. +Increases damage of Espa, Eswhoo and Curse Explosion by 15%. +Decreases Curse of Wicked Soul skill cooldown by 1.5 seconds. +Decreases Soul Reaper skill cooldown by 5 seconds. +Ignores 70% physical and magical defense of all race (Except Players). +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Soul Reaper +# +24744# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10, MATK +10, +MaxHP +1500, MaxSP +300 +-------------------------- +When equipped with Booster Shadow Armor, Booster Shadow Shield, Booster Shadow Shoes, Booster Shadow Earring and Booster Shadow Pendant: +Increases Magical Damage with every element by 15%. +Increases Melee Physical Damage by 15%. +Decreases Variable Casting Time by 10%. +Decreases After Skill Delay by 15%. +Increases damage of Ignition Break and Psychic Wave by 15%. +Ignores 70% physical and magical defense of all race (Except Players). +-------------------------- +Type: Shadow Weapon +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Novice classes +# +24745# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +15, HIT +15 +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +7: +HIT +15 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24746# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +For each Refine Level: +Decreases After Skill Delay by 1%. +-------------------------- +For each 2 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +9: +ATK +3%, MATK +3% +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24747# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +For each Refine Level: +Decreases Variable Casting Time by 1%. +-------------------------- +For each 3 Refine Levels: +ATK +1%, MATK +1% +-------------------------- +When equipped with Spell Caster Shadow Boots: +Decreases SP Consumption by 10%. + +Total Refine Level of entire set is at least +20: +Decreases Fixed Casting Time by 0.3 seconds. +(However, when equipped with Spell Caster Shadow Earring and Spell Caster Shadow Pendant, Fixed Casting Reduction will not overlap.) +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24748# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +For each Refine Level: +Decreases Variable Casting Time by 1%. +-------------------------- +For each 3 Refine Levels: +ATK +1%, MATK +1% +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24749# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +For each Refine Level: +Decreases Variable Casting Time by 1%. +-------------------------- +For each 3 Refine Levels: +ATK +1%, MATK +1% +-------------------------- +When equipped with Spell Caster Shadow Pendant: +Decreases SP Consumption by 10%. + +Total Refine Level of entire set is at least +20: +Decreases Fixed Casting Time by 0.3 seconds. +(However, when equipped with Spell Caster Shadow Armor and Spell Caster Shadow Shoes, Fixed Casting Reduction will not overlap.) +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24750# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +For each Refine Level: +Decreases Variable Casting Time by 1%. +-------------------------- +For each 3 Refine Levels: +ATK +1%, MATK +1% +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24751# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +For each 2 Refine Levels: +POW +1 +-------------------------- +Refine Level +7: +P.ATK +3 +-------------------------- +Refine Level +9: +P.ATK +3 +-------------------------- +When equipped with Physical Power Shadow Shield: +P.ATK +3 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24752# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +For each 2 Refine Levels: +POW +1 +-------------------------- +Refine Level +7: +P.ATK +3 +-------------------------- +Refine Level +9: +P.ATK +3 +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24753# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +For each 2 Refine Levels: +SPL +1 +-------------------------- +Refine Level +7: +S.MATK +3 +-------------------------- +Refine Level +9: +S.MATK +3 +-------------------------- +When equipped with Magical Spell Shadow Shield: +S.MATK +3 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24754# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +For each 2 Refine Levels: +SPL +1 +-------------------------- +Refine Level +7: +S.MATK +3 +-------------------------- +Refine Level +9: +S.MATK +3 +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24755# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +For each Refine Level: +CON +1 +-------------------------- +Refine Level +7: +P.ATK +2, S.MATK +2 +-------------------------- +Refine Level +9: +P.ATK +2, S.MATK +2 +-------------------------- +When equipped with Concentration Shadow Shield: +P.ATK +2, S.MATK +2 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24756# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +For each Refine Level: +CON +1 +-------------------------- +Refine Level +7: +P.ATK +2, S.MATK +2 +-------------------------- +Refine Level +9: +P.ATK +2, S.MATK +2 +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24757# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +For each Refine Level: +WIS +1 +-------------------------- +Refine Level +7: +MRES +30 +-------------------------- +Refine Level +9: +MRES +30 +-------------------------- +When equipped with Wisdom Shadow Shield: +MRES +30 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24758# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +For each Refine Level: +WIS +1 +-------------------------- +Refine Level +7: +MRES +30 +-------------------------- +Refine Level +9: +MRES +30 +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24759# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +For each Refine Level: +STA +1 +-------------------------- +Refine Level +7: +RES +30 +-------------------------- +Refine Level +9: +RES +30 +-------------------------- +When equipped with Stamina Shadow Shield: +RES +30 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24760# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +For each Refine Level: +STA +1 +-------------------------- +Refine Level +7: +RES +30 +-------------------------- +Refine Level +9: +RES +30 +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24761# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +For each 2 Refine Levels: +CRT +1 +-------------------------- +Refine Level +7: +C.RATE +2, H.PLUS +2 +-------------------------- +Refine Level +9: +C.RATE +2, H.PLUS +2 +-------------------------- +When equipped with Creative Shadow Shield: +C.RATE +2, H.PLUS +2 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +24762# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +For each 2 Refine Levels: +CRT +1 +-------------------------- +Refine Level +7: +C.RATE +2, H.PLUS +2 +-------------------------- +Refine Level +9: +C.RATE +2, H.PLUS +2 +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24763# +A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect. +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +Refine Level +7: +Increases Physical and Magical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +MaxHP +5% +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +24764# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +Refine Level +7: +Increases Physical and Magical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +MaxHP +5% +-------------------------- +When equipped with Lord Bearer's Shadow Shoes: +All Stats +2, MaxHP -20% +Enables unlimited effect of Endure. + +Total Refine Level of entire set is at least +18: +MaxHP +25% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +24765# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +Refine Level +7: +Increases Physical and Magical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +MaxHP +5% +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +24766# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +Refine Level +7: +Increases Physical and Magical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +MaxHP +5% +-------------------------- +When equipped with Lord Bearer's Shadow Pendant: +All Stats +2, MaxHP -20% +Enables unlimited effect of Endure. + +Total Refine Level of entire set is at least +18: +MaxHP +25% +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +24767# +A small shield worn on the arm for additional defense. Needs a complete set to have bonus effect. +-------------------------- +CRI +5 +-------------------------- +For each 2 Refine Levels: +Critical +2, C.RATE +1 +-------------------------- +Refine Level +7: +ASPD +1, Critical +3 +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 8%). +Increases Critical Damage by 5%. +-------------------------- +Refine Level +10: +C.RATE +3 +Increases Critical Damage by additional 3%. +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +24768# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +For each 2 Refine Levels: +Decreases After Skill Delay by 1%. +-------------------------- +Refine Level +7: +ASPD +1, Critical +3 +-------------------------- +Refine Level +9: +ASPD +1 +Increases Attack Speed (Decreases After Attack Delay by additional 3%). +-------------------------- +Refine Level +10: +P.ATK +2, S.MATK +2 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +25000# +A stone can absorb SP. +Adds enchantment in upper slot costume. +Adds 1% chance of absorbing 1% damage given to target as SP. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25001# +A stone that increases defense. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +DEF +20. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25002# +A stone that increases LUK but decreases STR. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +LUK +3, STR -3. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25003# +A stone that increases STR but decreases INT. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +STR +3, INT -3. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25004# +A stone that increases AGI but decreases LUK. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +AGI +3, LUK -3. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25005# +A stone that increases INT but decreases DEX. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +INT +3, DEX -3. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25006# +A stone that increases VIT but decreases AGI. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +VIT +3, AGI -3. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25007# +A stone that increases DEX but decreases VIT. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +DEX +3, VIT -3. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25008# +A stone that increases VIT but decreases LUK. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +VIT +3, LUK -3. +When equipped with VIT Convert Stone(Mid): +AGI +3, LUK +3. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25009# +A stone that increases AGI but decreases STR. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +AGI +3, STR -3. +When equipped with AGI Convert Stone(Mid): +LUK +3, STR +3. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25010# +A stone that increases DEX but decreases AGI. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +DEX +3, AGI -3. +When equipped with DEX Convert Stone(Mid): +VIT +3, AGI +3. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25011# +A stone that increases LUK but decreases INT. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +LUK +3, INT -3. +When equipped with LUK Convert Stone(Mid): +STR +3, INT +3. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25012# +A stone that increases STR but decreases DEX. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +STR +3, DEX -3. +When equipped with STR Convert Stone(Mid): +INT +3, DEX +3. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25013# +A stone that increases INT but decreases VIT. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +INT +3, VIT -3. +When equipped with INT Convert Stone(Mid): +DEX +3, VIT +3. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25014# +A stone that Increases magic defense. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +MDEF +4. +When equipped with Defense Stone(Mid) give the following abilities. +HIT +5, FLEE +5. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25015# +A stone that increases experience gained. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +Increases experience gained from defeating monsters by 2%. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25016# +A stone that increases attack power. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +ATK +1% +-------------------------- +When equipped with upper and middle Attack Stone give the following ability. +ATK +2% +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25017# +A stone with a magic power. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +MATK +1% +-------------------------- +When equipped with MATK Stone(Upper) and MATK Stone(Mid) give the following ability. +MATK +2% +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25018# +A ticket that can be exchanged for a weapon by giving it to Master Sunus. +-------------------------- +Weight: 0 +# +25019# +A ticket that can be exchanged for a armor by giving it to Master Sunus. +-------------------------- +Weight: 0 +# +25020# +Proof of achieving unreincarnated Lv99. +Ask Master Sunus for details on how to use it. +-------------------------- +This item will disappear automatically 48 hours after you get it. +-------------------------- +Weight: 0 +# +25022# +A manual that describes how to use the \ +. +-------------------------- +You can read the manual by clicking the open book mark in the upper left of the window. +-------------------------- +Weight: 0 +# +25023# +A manual that describes how to use the \ +. +-------------------------- +You can read the manual by clicking the open book mark in the upper left of the window. +-------------------------- +Weight: 0 +# +25024# +A manual that describes how to use the \ +. +-------------------------- +You can read the manual by clicking the open book mark in the upper left of the window. +-------------------------- +Weight: 0 +# +25025# +A manual that describes how to use the \ +. +-------------------------- +You can read the manual by clicking the open book mark in the upper left of the window. +-------------------------- +Weight: 0 +# +25038# +A trap used to capture wild animals, but it was destroyed. +-------------------------- +Weight: 0 +# +25039# +A trap used to capture wild animals. +-------------------------- +Weight: 0 +# +25040# +A piece of knowledge gained by reading the Book of Wisdom. +I feel like I have a glimpse of a part of the world. +-------------------------- +This item can use the services of the NPC \ + on the 2nd floor of the lounge or the \ + in each city. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 0 +# +25041# +A tool that can create a socket on headgear. disappear after 1 time use. +-------------------------- +List of socketable items: +Sigrun's Wings, Robo Eye, Angel Spirit, Binoculars, +Alarm Mask, Opera Phantom Mask, Geek Glasses, Machoman's Glasses, +Ears of Ifrit, Chick Hat, Gigantic Majestic Goat, Spirit of Green Maiden, +Butterfly Mask, Shadow Booster, Fallen Angel Blessing, Elemental Crown, +Rabbit Magic Hat, Anubis Helm, New Wave Sunglasses. +-------------------------- +The success rate is 25%, if fail the item will vanish. +Attention! Any upgrade will be reset to zero if the socket process is success. +Piercing Artisanitemmall,18,66,0,100,0,0 +Weight: 1 +# +25042# +Piece of unidentified egg. If you collect and bring this to certain person, he can make them into a complete egg. +-------------------------- +Weight: 0 +# +25043# +A flute made of thorny vine that grows in ravioli forest. It's can't be used as musical instrument because of the thorns and the sound produced by it is not good either. +-------------------------- +Weight: 0 +# +25044# +A solid dried thorny vine. +-------------------------- +Weight: 1 +# +25045# +A luxury cloth piece. Can be used as bow tie. +-------------------------- +Weight: 0 +# +25046# +A boarding permit between New world and Lasagna. Can be regarded as diploma, because only trained adventurer can obtained it. +-------------------------- +Weight: 0 +# +25047# +A precious shellfish found in Lasagna. It has sweet scent. When mature, it can be used as ingredient of Kalugna milk. +-------------------------- +Weight: 0 +# +25048# +A hearty lunchbox meticulously packed with various food that gives strength when eaten. +-------------------------- +Weight: 0 +# +25049# +A hard, clam-shaped stone that can be obtained from Basilisks. +-------------------------- +Weight: 0 +# +25050# +A gold coin made to commemorate the holding of RJC. +Courage springs up when you grasp it. +-------------------------- +This item can be used by NPCs \ + and \ + in Izlude from the end of regular maintenance on July 28, 2015 to the start of regular maintenance on November 4, 2015. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 0 +# +25051# +A certified investment slip of Rune Midgard metropolitan. Returning it to the investor will give you a trust from metropolist. +-------------------------- +Type: Quest +Weight: 0 +# +25052# +A huge mass of energy. +By enchanting, you can demonstrate it's original abilities. +-------------------------- +Take it to the NPC \ + in Morocc for a special enchantment. +-------------------------- +When enchanted, it has the following effects: +-------------------------- +Decreases damage taken from all elemental attacks by 7%. +-------------------------- +For each 3 Base Level: +MaxSP +1 +-------------------------- +For each Refine Level of equipped Garment: +MaxSP +10 +-------------------------- +Random chance to absorb 1% of the damage inflicted on the enemy as SP. +-------------------------- +When enchanted on Evil Dragon Armor: +The SP absorbtion effect of Energy will not be activated. +-------------------------- +Weight: 0 +# +25053# +A huge mass of energy. +By enchanting, you can demonstrate it's original abilities. +-------------------------- +Take it to the NPC \ + in Morocc for a special enchantment. +-------------------------- +When enchanted, it has the following effects: +-------------------------- +When equipped by Mage, Archer or Acolyte classes: +Perfect Dodge +5 + +For each Refine Level of equipped Garment: +Perfect Dodge +2 +-------------------------- +When equipped by Swordman, Thief or Merchant classes: +Reflects 5% of Melee Physical Damage. + +For each Refine Level of equipped Garment: +Reflects additional 2% of Melee Physical Damage. +-------------------------- +Weight: 0 +# +25054# +A huge mass of energy. +By enchanting, you can demonstrate it's original abilities. +-------------------------- +Take it to the NPC \ + in Morocc for a special enchantment. +-------------------------- +When enchanted, it has the following effects: +-------------------------- +FLEE +10 +-------------------------- +MaxHP +200 +-------------------------- +Weight: 0 +# +25055# +A bomb covered in ice. +-------------------------- +Weight: 10 +# +25056# +The most central essence of watermelon is said to be the sweetest part. +-------------------------- +Weight: 10 +# +25057# +Mysterious cantaloupe, what kind of melon is unknown? +-------------------------- +Weight: 10 +# +25058# +An enchantment stone that can give effect on 4th slot of upper costume equipment. +Twinkle +[Gregio Grumani]mal_in01,24,121,0,100,0,0 +-------------------------- +Weight: 10 +# +25059# +An enchantment stone that can give effect on 4th slot of middle costume equipment. +Ghost +[Gregio Grumani]mal_in01,24,121,0,100,0,0 +-------------------------- +Weight: 10 +# +25060# +A stone that can Increases critical damage. +Adds enchantment on middle slot costume. +Increases Critical Damage by 3% +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25061# +A stone that increases Ranged Physical Damages. +Adds enchantment on middle slot costume. +Ranged Physical Damages +3% +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25062# +A greed looking stone. +Adds enchantment on lower slow costume. +Enables the use of Level 1 Greed. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25063# +A stone that increases health point. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +MaxHP +100, At base Level 120 Increases MaxHP by 2%. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25064# +A stone that increases magic point. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +MAXSP +50, At base Level 120 Increases MAXSP by 2%. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25065# +A stone that can cure poison. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +Enables the use of Level 1 Detoxify. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25066# +A stone that can recover all bad states. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +Enables the use of Level 1 Recovery. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25067# +A stone that can Reduces Fixed Casting Time. +Adds enchantment on garment slot costume. +Decreases Fixed Casting Time by 0.5 second. +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25068# +A stone that can Increases ASPD. +Adds enchantment on upper slot costume. +ASPD +1 +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25069# +A stone that can Reduces after cast delay. +Adds enchantment on upper slot costume. +Decreases After Skill Delay by 1%. +When equipped with Reload Stone(Mid) and Reload Stone(Lower): Reduces After Skill Delay by 2%. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25070# +A stone that can Reduces after cast delay. +Adds enchantment on middle slot costume. +Decreases After Skill Delay by 1%. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25071# +A stone that can Reduces after cast delay. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +Decreases After Skill Delay by 1%. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25072# +A stone blessed with kyrie eleison. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +Enables the use of Level 1 Kyrie Eleison. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25073# +Ancient documents owned by Sphinx's sorcerer, Marduk. An ancient ritual information written on it. +-------------------------- +Weight: 0 +# +25074# +An old coin that once used as currency in the past. Can be found in ancient ruin and ancient tomb. It has now great value because of its material. +-------------------------- +Weight: 0 +# +25075# +An old sword of navi admiral of Rune Midgard kingdom. This sword was rusted because has been abandoned for a long time. +-------------------------- +Weight: 0 +# +25076# +A special herb that only grow in deep cave. Can be obtained from Comodo cave. It has unique fragrance due the effect of witch that being sealed on it. +-------------------------- +Weight: 0 +# +25077# +A box containing supply for prontera knight. Contains simple first aid kit tools and remedies. +-------------------------- +Weight: 0 +# +25078# +A soju created through summer flower traditional technique. You can feel floral scent from it. +-------------------------- +Weight: 0 +# +25079# +The last breath of the soul. It is likely that it will freeze if it is wrapped in cold air and it does not touch well. +-------------------------- +Weight: 0 +# +25080# +A bead that give warm and powerful feeling. With the fox's steam, you can feel the grudge. +-------------------------- +Weight: 0 +# +25081# +It seems necessary to perform quests in the game of \ +. +-------------------------- +Take it to the NPC \ + in Prontera, the capital of the Kingdom of Rune Midgards. +-------------------------- +FF0000This item will be available until October 6, 2015 (Tuesday), when regular maintenance starts. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 0 +# +25082# +A crystallized hero's power. +It seems that the lost hero power can be recovered. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 1 +# +25083# +A soft hair of runaway rabbit. Can be used as material of hat. Wildlife conservation society people like it. +-------------------------- +Weight: 0 +# +25084# +A captured runaway rabbit. +It's still alive so please handle it with care. +-------------------------- +Weight: 0 +# +25085# +A hair of rabbit. Can be used as material of hat?Wildlife conservation society people like it. +-------------------------- +Weight: 0 +# +25086# +Magic ribbon used to wrap gifts in Lutie. Don't use it on light weight gift or you will be in trouble. +-------------------------- +Weight: 0 +# +25087# +An old doll with burned hands. It is treasured and well maintained. +-------------------------- +Weight: 0 +# +25088# +A piece of dream that can be obtained from someone's dreams. +-------------------------- +Weight: 0 +# +25089# +An ornament wings that used on gift in Lutie. Don't use it on light weight gift or you will be in trouble. +-------------------------- +Weight: 0 +# +25090# +A mysterious piece that has a slight sign of fire. +-------------------------- +Weight: 1 +# +25091# +A mysterious piece that has a slight sign of water. +-------------------------- +Weight: 1 +# +25092# +A mysterious piece that has a slight sign of wind. +-------------------------- +Weight: 1 +# +25093# +A mysterious piece that has a slight sign of soil. +-------------------------- +Weight: 1 +# +25094# +A mysterious piece that has a slight sign of darkness. +-------------------------- +Weight: 1 +# +25095# +A mysterious piece that has a slight sign of light. +-------------------------- +Weight: 1 +# +25096# +A mysterious piece that has a slight sign of life. +-------------------------- +Weight: 1 +# +25097# +Tickets required to perform the exclusive quest for \ +. +-------------------------- +Take it to the NPC \ + in the middle of time. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 0 +# +25098# +The list of all jobs. +Clicking the name below will start the navigation. +The first classes that you can choose. +Swordmanizlude_in,74,172,0,100,0,0 +Magegeffen_in,164,124,0,100,0,0 +Merchantalberta_in,56,43,0,100,0,0 +Acolyteprt_church,184,41,0,100,0,0 +Thiefmoc_prydb1,39,126,0,100,0,0 +Archerpayon_in02,64,71,0,100,0,0 +Taekwondopayon_in01,62,10,0,100,0,0 +Ninjaalberta.gat,168,138,0,100,0,0 +Gunslingerque_ng,152,167,0,100,0,0 +-------------------------- +Weight: 0 +# +25099# +The list of all jobs. +Clicking the name below will start the navigation. +Super Novicealdeba_in,223,167,0,100,0,0 +-------------------------- +Weight: 0 +# +25100# +The list of all jobs. +Clicking the name below will start the navigation. +Knightprt_in,88,101,0,100,0,0 +Crusaderprt_cas,251,75,0,100,0,0 +-------------------------- +Weight: 0 +# +25101# +The list of all jobs. +Clicking the name below will start the navigation. +Wizardgef_tower,111,37,0,100,0,0 +Sageyuno_in02,38,61,0,100,0,0 +-------------------------- +Weight: 0 +# +25102# +The list of all jobs. +Clicking the name below will start the navigation. +Blacksmithein_in01,18,24,0,100,0,0 +Alchemistalde_alche,27,185,0,100,0,0 +-------------------------- +Weight: 0 +# +25103# +The list of all jobs. +Clicking the name below will start the navigation. +Priestprt_church,16,41,0,100,0,0 +Monkprt_monk,59,247,0,100,0,0 +-------------------------- +Weight: 0 +# +25104# +The list of all jobs. +Clicking the name below will start the navigation. +Assassinin_moc_16,19,33,0,100,0,0 +Roguein_rogue,363,122,0,100,0,0 +-------------------------- +Weight: 0 +# +25105# +The list of all jobs. +Clicking the name below will start the navigation. +Hunterhu_in01,386,373,0,100,0,0 +Bard(Male)comodo,211,155,0,100,0,0 +Dancer(Female)job_duncer,43,93,0,100,0,0 +-------------------------- +Weight: 0 +# +25106# +The list of all jobs. +Clicking the name below will start the navigation. +Star Gladiatorpayon,215,102,0,100,0,0 +Soul Linkermorocc_in,174,30,0,100,0,0 +-------------------------- +Weight: 0 +# +25107# +The list of all jobs. +Clicking the name below will start the navigation. +It's not possible to rebirth if you're a Transcendent jobs. +Rune Knightprt_in,162,24,0,100,0,0 +Transcendentyuno_in02,88,164,0,100,0,0 +-------------------------- +Weight: 0 +# +25108# +The list of all jobs. +Clicking the name below will start the navigation. +It's not possible to rebirth if you're a Transcendent jobs. +Royal Guardprt_cas,172,275,0,100,0,0 +Transcendentyuno_in02,88,164,0,100,0,0 +-------------------------- +Weight: 0 +# +25109# +The list of all jobs. +Clicking the name below will start the navigation. +It's not possible to rebirth if you're a Transcendent jobs. +Warlockmorocc,95,132,0,100,0,0 +Transcendentyuno_in02,88,164,0,100,0,0 +-------------------------- +Weight: 0 +# +25110# +The list of all jobs. +Clicking the name below will start the navigation. +It's not possible to rebirth if you're a Transcendent jobs. +Sorcerergef_tower,102,34,0,100,0,0 +Transcendentyuno_in02,88,164,0,100,0,0 +-------------------------- +Weight: 0 +# +25111# +The list of all jobs. +Clicking the name below will start the navigation. +It's not possible to rebirth if you're a Transcendent jobs. +Mechanicyuno,129,156,0,100,0,0 +Transcendentyuno_in02,88,164,0,100,0,0 +-------------------------- +Weight: 0 +# +25112# +The list of all jobs. +Clicking the name below will start the navigation. +It's not possible to rebirth if you're a Transcendent jobs. +Geneticalde_alche,35,186,0,100,0,0 +Transcendentyuno_in02,88,164,0,100,0,0 +-------------------------- +Weight: 0 +# +25113# +The list of all jobs. +Clicking the name below will start the navigation. +It's not possible to rebirth if you're a Transcendent jobs. +Archbishopprt_church,103,88,0,100,0,0 +Transcendentyuno_in02,88,164,0,100,0,0 +-------------------------- +Weight: 0 +# +25114# +The list of all jobs. +Clicking the name below will start the navigation. +It's not possible to rebirth if you're a Transcendent jobs. +Surave_in,237,125,0,100,0,0 +Transcendentyuno_in02,88,164,0,100,0,0 +-------------------------- +Weight: 0 +# +25115# +The list of all jobs. +Clicking the name below will start the navigation. +It's not possible to rebirth if you're a Transcendent jobs. +Guillotine Crossque_job01,75,96,0,100,0,0 +Transcendentyuno_in02,88,164,0,100,0,0 +-------------------------- +Weight: 0 +# +25116# +The list of all jobs. +Clicking the name below will start the navigation. +It's not possible to rebirth if you're a Transcendent jobs. +Shadow Chaserin_rogue,376,100,0,100,0,0 +Transcendentyuno_in02,88,164,0,100,0,0 +-------------------------- +Weight: 0 +# +25117# +The list of all jobs. +Clicking the name below will start the navigation. +It's not possible to rebirth if you're a Transcendent jobs. +Rangertur_dun01,156,36,0,100,0,0 +Transcendentyuno_in02,88,164,0,100,0,0 +-------------------------- +Weight: 0 +# +25118# +The list of all jobs. +Clicking the name below will start the navigation. +It's not possible to rebirth if you're a Transcendent jobs. +Minstrelalberta,196,133,0,100,0,0 +Transcendentyuno_in02,88,164,0,100,0,0 +-------------------------- +Weight: 0 +# +25119# +The list of all jobs. +Clicking the name below will start the navigation. +It's not possible to rebirth if you're a Transcendent jobs. +Wandererxmas,162,212,0,100,0,0 +Transcendentyuno_in02,88,164,0,100,0,0 +-------------------------- +Weight: 0 +# +25120# +The list of all jobs. +Clicking the name below will start the navigation. +Kagerou & Oboroque_ng,28,156,0,100,0,0 +-------------------------- +Weight: 0 +# +25121# +The list of all jobs. +Clicking the name below will start the navigation. +Rebelmoc_fild12,261,318,0,100,0,0 +-------------------------- +Weight: 0 +# +25122# +The list of all jobs. +Clicking the name below will start the navigation. +Super Novice Level expansionaldeba_in,216,169,0,100,0,0 +-------------------------- +Weight: 0 +# +25123# +Clicking the name below will start the navigation. +Transcendent 2nd classesyuno_in02,88,164,0,100,0,0 +-------------------------- +Weight: 0 +# +25124# +A cursed shard infused with Demon King Baphomet's magic power +It seems to be something. +-------------------------- +Weight: 0.1 +# +25125# +A cursed proof that seals the power of a crashed Orc Hero. +It seems to be something. +-------------------------- +Weight: 0.1 +# +25126# +A stone that a shrine maiden once planted in the body of Orcs to brainwash them. +It contains ominous magical power. +-------------------------- +Weight: 0.1 +# +25127# +A fragment of energy that somehow losses it's power. +Can be obtained from 1st -2nd floor of Bio Lab. +-------------------------- +Type: Quest +Weight: 0 +# +25128# +A fragment of energy that just created. +Can be obtained from 1st -2nd floor of Bio Lab. +-------------------------- +Type: Quest +Weight: 0 +# +25129# +A fragment of energy that weak and unstable, may perish in any moment. +Can be obtained from 3th floor of Bio Lab. +-------------------------- +Type: Quest +Weight: 0 +# +25130# +A fragment of energy that gives ominous feeling. +Can be obtained from 4th floor of Bio Lab. +-------------------------- +Type: Quest +Weight: 0 +# +25131# +A fragment of energy that became corrupted. +Can be obtained from Tomb of the Fallen. +-------------------------- +Type: Quest +Weight: 0 +# +25132# +A typical halloween decoration. +Turn on the candle to gives atmosphere of halloween. +-------------------------- +Weight: 0 +# +25133# +Seasoned White Stem. +Perfect for a Halloween decoration!! +-------------------------- +Weight: 0 +# +25134# +Lottery tickets won by participating in the garden. +-------------------------- +Weight: 0 +# +25135# +A socket tool that can create a slot on equipment. +Piercing Expertitemmall,14,66,0,100,0,0 +-------------------------- +Weight: 1 +# +25136# +Gives enhancement to middle costume slot. +Electric +[Gregio Grumani]mal_in01,24,121,0,100,0,0 +-------------------------- +Weight: 10 +# +25137# +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +Green Flare +[Gregio Grumani]mal_in01,24,121,0,100,0,0 +-------------------------- +Weight: 10 +# +25138# +Gives enhancement to middle costume slot. +Shrink +Effect does not apply on PVP and WOE area. +[Gregio Grumani]mal_in01,24,121,0,100,0,0 +-------------------------- +Weight: 10 +# +25139# +A stone with appraisal ability. +Give enhancement on Costume Lower Headgear equipment slots. +Enables the use of Level 1 Item Appraisal +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25140# +A stone with resurrection power. +Give enhancement on Costume Lower Headgear equipment slots. +Enables the use of Level 1 Resurrection. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25141# +A stone that can Increases experience gain when defeating monster. +Give enhancement on middle costume equipment slots. +Exp bonus +2%. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25142# +A token that commonly used among adventurer. Can be exchanged with a better equipment. +Doram Tribe Chara Folklasagna,135,247,0,200,0,0 +-------------------------- +Weight: 0 +# +25143# +A stuffed animal doll prepared for a christmas gift. +-------------------------- +Weight: 0 +# +25144# +A weird looking doll that takes a bridge like posture. Kinda flexible for a doll. +-------------------------- +Weight: 0 +# +25145# +An abandoned burned black demon doll. It looks a little evil. +-------------------------- +Weight: 0 +# +25146# +A doll resemble the cold blooded queen. +When you push the doll it will laugh 'Ohohoho~'. +-------------------------- +Weight: 0 +# +25147# +A cute rabbit doll. +It seems just eat something delicious. +-------------------------- +Weight: 0 +# +25148# +A doll with a starved looking expression. +-------------------------- +Weight: 0 +# +25149# +A doll wrapped with a warm shawl. +-------------------------- +Weight: 0 +# +25150# +A soft and comfy pillow. +Drawn with Alice figure. +It seems to be mainly used for hugging purpose instead for sleeping. +-------------------------- +Weight: 0 +# +25151# +A revolver repaired by Rachel. It's not recommended to be used as weapon. +-------------------------- +Weight: 0 +# +25152# +A tribute bouquet to dearest person that has passed away. +-------------------------- +Weight: 0 +# +25153# +A scrap of broken gun. You can repair it if you take it to an expert. Let's deal with it carefully. +-------------------------- +Weight: 0 +# +25154# +A bunch of old gun powder which can be found scattred on ground. +-------------------------- +Weight: 1 +# +25155# +A special Token of Honor from Schwartzvald. +-------------------------- +Type: Valuable +Weight: 0 +# +25156# +Can be sold to item collector. +-------------------------- +Weight: 1 +# +25157# +Can be sold to item collector. +-------------------------- +Weight: 1 +# +25158# +Can be sold to item collector. +-------------------------- +Weight: 1 +# +25159# +A seal with symbol of Heart Hunter organization. +-------------------------- +Weight: 1 +# +25160# +You should return it to its owner. +-------------------------- +Weight: 0 +# +25161# +It was made by apprentice chef, but it's quite delicious. +-------------------------- +Weight: 0 +# +25162# +A well dried and crispy Anchovy cookie. It's the best snack for cat, but not for human. +-------------------------- +Weight: 0 +# +25163# +An ad flyer of \ + arms shop written on it. +It's quite difficult to read. +-------------------------- +Weight: 0 +# +25164# +A freshly harvested tea leaf. +You can make a fine tea from this leaf with a secret recipe. +-------------------------- +Weight: 0 +# +25165# +The finest tea processed from a secret recipe. +It's tasted sweet yet refreshing. +-------------------------- +Weight: 0 +# +25166# +An ornament used by Courtney. +Crafted from gold, with Ruby attached on it, very classy yet elegance. +It's really fit on finger, but you decide to use it as a decoration instead... +-------------------------- +Weight: 0 +# +25167# +An old letter that has been abandoned for decades. +It's too worn out, it makes harder to read any words on it. Looks like written by a teenager. +-------------------------- +Weight: 0 +# +25168# +Medals won by participating in art festivals +-------------------------- +Weight: 0 +# +25169# +Very sticky octopus mucus, which can be obtained from extracting octopus legs. +Can be used as Mask material when processed in particular way. +-------------------------- +Weight: 0 +# +25170# +Decreases Fixed Casting Time by 0.3 seconds. +Gives ability when compounded on garment costume slot. +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25171# +Increases experience gained from defeating monsters by 2%. +Gives ability when compounded on upper slot costume. +Experience Stone SET (Upper, Middle and Lower), Increases experience gained from defeating monsters by 3%. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25172# +Decreases Variable Casting Time by 3%. +Gives ability when compounded on upper slot costume. +Variable Cast Stone SET (Upper, Middle and Lower), Decreases Variable Casting Time by 6%. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25173# +Decreases Variable Casting Time by 3%. +Gives ability when compounded on middle slot costume. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +# +25174# +Decreases Variable Casting Time by 3%. +Gives ability when compounded on lower slot costume. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +# +25175# +Random chance to auto-cast Level 1 Lex Aeterna when dealing physical damage. +Gives ability when compounded on middle slot costume. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25176# +Gives Blue Aura effect when compounded on costume's 4th slot. +Blue Aura +[Gregio Grumani]mal_in01,24,121,0,100,0,0 +-------------------------- +Weight: 10 +# +25177# +Gives Shadow effect when compounded on costume's 4th slot. +Shadow +Has no effect in PvP and WoE areas. +[Gregio Grumani]mal_in01,24,121,0,100,0,0 +-------------------------- +Weight: 10 +# +25178# +Gives Pink Glow effect when compounded on costume's 4th slot. +Pink Glow +[Gregio Grumani]mal_in01,24,121,0,100,0,0 +-------------------------- +Weight: 10 +# +25179# +A little gem engraved with royal family of Prontera kingdom \ + symbol. +It was made from the piece of Heart of Ymir and used in blessing ceremony 'Star of Blessing'. +-------------------------- +Type: Quest +Weight: 0 +# +25180# +A pair of rings made from scrap metal. It seemseach ring has size that suit for a man and a woman. +Knight Windsorprt_in,177,26,0,100,0,0 +-------------------------- +Type: Quest +Weight: 0 +# +25181# +A crude rosary made from wood. +Sister Margarethaprt_monk,93,254,0,100,0,0 +-------------------------- +Type: Quest +Weight: 0 +# +25182# +A small assassin dagger with engraved mark. It seems has been used for a very long time. +Gail Marowitzque_job01,89,91,0,100,0,0 +-------------------------- +Type: Quest +Weight: 0 +# +25183# +A small accessory for bow that attached on the edge of bow. It has an old shimmering gemstone. +Blacksmith Cleaveryuno_in01,163,31,0,100,0,0 +-------------------------- +Type: Quest +Weight: 0 +# +25184# +It seems has been treasured for a long time. This leather case contain some needles, thread and buttons. +Hunter Serinpayon_in03,194,39,0,100,0,0 +-------------------------- +Type: Quest +Weight: 0 +# +25185# +An old pendant. It has portrait of man and woman. +Knight Windsorprt_in,177,26,0,100,0,0 +-------------------------- +Type: Quest +Weight: 0 +# +25186# +Can replace the synthetic scroll of the clover necklace. +-------------------------- +Weight: 1 +# +25187# +Can only be used with Slug Shoot skill. +It's made from expensive material. +Automatically consumed when slug shoot skill is used. +-------------------------- +Weight: 120 +# +25188# +Sohee's Handkerchief. It's gives pleasant feeling when you touch it. +-------------------------- +Weight: 0 +# +25189# +A-Tolerance blueprint. +If you bring it to MARS_01 in the Verus excavation site, it will enchant the Excelion equipment. +-------------------------- +Weight: 1 +# +25190# +A-Hit blueprint. +If you bring it to MARS_01 in the Verus excavation site, it will enchant the Excelion equipment. +-------------------------- +Weight: 1 +# +25191# +A-FLEE blueprint. +If you bring it to MARS_01 in the Verus excavation site, it will enchant the Excelion equipment. +-------------------------- +Weight: 1 +# +25192# +A-Mdef blueprint. +If you bring it to MARS_01 in the Verus excavation site, it will enchant the Excelion equipment. +-------------------------- +Weight: 1 +# +25193# +S-Atk blueprint. +If you bring it to MARS_01 in the Verus excavation site, it will enchant the Excelion equipment. +-------------------------- +Weight: 1 +# +25194# +S-Matk blueprint. +If you bring it to MARS_01 in the Verus excavation site, it will enchant the Excelion equipment. +-------------------------- +Weight: 1 +# +25195# +S-Avoid blueprint. +If you bring it to MARS_01 in the Verus excavation site, it will enchant the Excelion equipment. +-------------------------- +Weight: 1 +# +25196# +S-MaxHP blueprint. +If you bring it to MARS_01 in the Verus excavation site, it will enchant the Excelion equipment. +-------------------------- +Weight: 1 +# +25197# +S-Quick blueprint. +If you bring it to MARS_01 in the Verus excavation site, it will enchant the Excelion equipment. +-------------------------- +Weight: 1 +# +25198# +S-Cri blueprint. +If you bring it to MARS_01 in the Verus excavation site, it will enchant the Excelion equipment. +-------------------------- +Weight: 1 +# +25200# +A light, soft and fluffy cloud. Collecting it will cause great thermal effect. +-------------------------- +Weight: 0 +# +25201# +This claw has a miracle aura. It's a proof that someone has fight with tiger god. +-------------------------- +Weight: 0 +# +25202# +A mysterious flame with special magic. +It seems that there is a surgeon who will reset the stats and skills of Gunslingers and Rebellions if you have this flame. +-------------------------- +This item can be used from the end of regular maintenance on May 17, 2016 to the start of regular maintenance on June 14, 2016. +-------------------------- +This item can only be sold to NPCs. +-------------------------- +Weight: 0 +# +25203# +A coin that is said to have been owned by a legendary rebel. +It seems that there is a girl who gives various rewards at Gunslinger and Rebellion when showing this coin. +-------------------------- +This item can be used from the end of regular maintenance on May 17, 2016 to the start of regular maintenance on June 14, 2016. +-------------------------- +This item can only be sold to NPCs. +-------------------------- +Weight: 0 +# +25204# +A coin used in a kingdom that once flourished but died overnight. +Even after the existence of the kingdom was buried in the darkness of history, only this coin remains, barely proving that the kingdom once existed. +-------------------------- +This item will not be available on future events. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 0 +# +25205# +Adds enhancement on 4th sloth of Costume Lower Headgear. +Shrink +Not applicable in PvP and WoE area. +Only affect basic body size. +[Gregio Grumani]mal_in01,24,121,0,100,0,0 +-------------------------- +Weight: 10 +# +25206# +Adds enhancement on 4th sloth of upper costume. +Electric +[Gregio Grumani]mal_in01,24,121,0,100,0,0 +-------------------------- +Weight: 10 +# +25207# +A stone that can absorb SP. +Adds enhancement on upper costume. +Adds 2% chance of absorbing 1% damage as SP. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25208# +A stone that can absorb SP. +Adds enhancement on garment costume. +Adds 2% chance of absorbing 1% damage as SP. +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25209# +A stone that can absorb HP. +Adds enhancement on garment costume. +Adds 2% chance of absorbing 3% damage as HP. +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25210# +A stone that can absorb HP. +Adds enhancement on upper costume. +Adds 2% chance of absorbing 3% damage as HP. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25211# +Small crystals rarely found in places where time is distorted. +A product that is solidified with a stronger \ + by supercritical elongation crystallization. +-------------------------- +Weight: 1 +# +25212# +Enables you to cross the time. +It's used in certain ceremony as a sacrifice to condense special magic power. +-------------------------- +Weight: 1 +# +25213# +A collection of magical powers. +If you leave it as it is, it will disappear. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 0 +# +25214# +A compass with enormous magical power. +When the distortion of time is detected, a needle appears on the luopan and identifies the position of the distortion. +-------------------------- +Weight: 1 +# +25215# +The power of time goes out of control, and the magical power is crushed and crystallized. +It's very soft and seems to be blown away by the wind. +-------------------------- +Weight: 0.1 +# +25216# +A ticket that can be exchanged for a Gun Petit pet. +-------------------------- +This item can be used from the end of regular maintenance on Tuesday, September 13, 2016 to the start of regular maintenance on Tuesday, April 4, 2017. +-------------------------- +Take it to the NPC \ + in Izlude. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 1 +# +25217# +A box containing one Gun Petit Premium Ticket. +-------------------------- +This item can be used from the end of regular maintenance on Tuesday, September 13, 2016 to the start of regular maintenance on Tuesday, April 4, 2017. +If you open the box after the end of the usage period, nothing will appear. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Take it to the NPC \ + in Izlude. +-------------------------- +Weight: 1 +# +25218# +Thin, smoothly trimmed branches. +-------------------------- +Weight: 0 +# +25219# +Sturdy Korean paper used mainly when applying the door. +-------------------------- +Weight: 0 +# +25220# +A tough and sturdy kite that all ols sleep with moonlight. +-------------------------- +Weight: 0 +# +25221# +Tree trunks trimmed by cutting branches grown while bathing in moonlight. +-------------------------- +Weight: 0 +# +25222# +A window paper that is full of the energy of the moon and shines softly. +-------------------------- +Weight: 0 +# +25223# +An eden currency obtained from eden group mission. Can be exchanged with special item. +-------------------------- +Type: Valuable +Weight: 0 +# +25224# +Add enchantment on 4th slot of middle costume. +White Body +[Gregio Grumani]mal_in01,24,121,0,100,0,0 +-------------------------- +Weight: 10 +# +25225# +Add enchantment on 4th slot of middle costume. +Crimson Wave +[Gregio Grumani]mal_in01,24,121,0,100,0,0 +-------------------------- +Weight: 10 +# +25226# +Add enchantment on 4th slot of Costume Lower Headgear. +Water Field Effect +[Gregio Grumani]mal_in01,24,121,0,100,0,0 +-------------------------- +Weight: 10 +# +25227# +A stone that give healing effect. +Add enchantment on 4th slot of Costume Lower Headgear. +Enables the use of Level 1 Heal. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25228# +Add enchantment on 4th slot of Costume Lower Headgear. +Enables the use of Level 1 Teleport. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25229# +Add enchantment on 4th slot of Costume Lower Headgear. +Enables the use of Level 1 Steal. +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25231# +A suspicious bottle that containing red light object. +It's make Nine Tails's eyes glittering. +-------------------------- +Type: Pet Food +Pet: Nine Tails +Weight: 1 +# +25232# +A cheap lubricant with strange color. +It's make Gremlin's mouth water just by smelling it. +-------------------------- +Type: Pet Food +Pet: Gremlin +Weight: 1 +# +25233# +Necessity of stuffed animals, especially the teddy bear. +-------------------------- +Type: Pet Food +Weight: 1 +# +25234# +Colorful needles made of old iron. Use this to make beautiful Chinese knots. +-------------------------- +Weight: 1 +# +25235# +A gemstone that can be mounted on an accessory. +It seems that some special efficacy occurs when handed to an accessory through the hands of an experienced craftsman. +It seems that most accessories can work, but some special accessories are said to be impossible to work. +-------------------------- +Weight: 0 +# +25236# +-------------------------- +Seven Star Fragments. +-------------------------- +Weight: 1 +# +25237# +A crystal obtained from Labyrinth of magic. +-------------------------- +Type: Valuable +Weight: 0 +# +25238# +An oil that helps on seperating card and equipment. +Becuase of the reduced toxic, this oil will prevent equipment from being destroyed or Refine Level from being reduced, thus Increases the success rate. +-------------------------- +Type: Valuable +Weight: 0 +# +25239# +An oil that helps on seperating card and equipment. +Becuase of the reduced toxic, this oil will prevent equipment from being destroyed or Refine Level from being reduced, thus Increases the success rate. +-------------------------- +Type: Valuable +Weight: 0 +# +25240# +This certificate is necessary for the separation of generations in order for the baby to leave the arms of his parents and move into a larger world. +[Prontera Family Relations Guide]prt_in,285,171,0,100,0,0 +[Lasagna Independent Helper]lasagna,100,200,0,100,0,0 +-------------------------- +Weight: 0 +# +25241# +A huge lump of energy. +Only shows it's true ability by enchanting. +-------------------------- +Take it to NPC \ + in Morocc to get a special enchantment. +-------------------------- +Needs to be enchanted to make the following effects work.000000 +-------------------------- +Decreases damage taken by Dragon race by 15%. +-------------------------- +Weight: 0 +# +25242# +A huge lump of energy. +Only shows it's true ability by enchanting. +-------------------------- +Take it to NPC \ + in Morocc to get a special enchantment. +-------------------------- +Needs to be enchanted to make the following effects work.000000 +-------------------------- +MDEF +5 +-------------------------- +VIT +10 +-------------------------- +Weight: 0 +# +25243# +A huge lump of energy. +Only shows it's true ability by enchanting. +-------------------------- +Take it to NPC \ + in Morocc to get a special enchantment. +-------------------------- +Needs to be enchanted to make the following effects work.000000 +-------------------------- +Protects from skill cast interruption. +-------------------------- +Increases Variable Casting Time by 15%. +-------------------------- +For each Refine Level equal or above +5: +MDEF +1, MaxSP +1% +-------------------------- +Weight: 0 +# +25244# +A huge lump of energy. +Only shows it's true ability by enchanting. +-------------------------- +Take it to NPC \ + in Morocc to get a special enchantment. +-------------------------- +Needs to be enchanted to make the following effects work.000000 +-------------------------- +ATK +3, Critical +5 +Perfect Dodge +4 +-------------------------- +For each Refine Level: +LUK +3, ATK +5 +-------------------------- +For each Refine Level equal or above +5: +Critical +1 , Perfect Dodge +1 +-------------------------- +Weight: 0 +# +25245# +A pile of small animal bones. +There is small collar with bell between the bones. +-------------------------- +Type: Quest +Weight: 0 +# +25246# +A package containing a mix of juice. +-------------------------- +Type: Quest +Weight: 0 +# +25247# +An ore that radiates strange light. It's flowed with magic. +-------------------------- +Type: Quest +Weight: 0 +# +25248# +A box full of purple ores. +-------------------------- +Type: Quest +Weight: 0 +# +25249# +A buffalo mane of Albert Ford. Used as evidence of negotiation. +-------------------------- +Type: Quest +Weight: 0 +# +25250# +Common currency in Rockridge Village. It can be used to buy goods from Rock Ridge. +-------------------------- +Type: Valuable +Weight: 0 +# +25251# +Well fermented and sweet smelling grape juice. +-------------------------- +Type: Quest +Weight: 0 +# +25252# +A sprig of Holly tree. +-------------------------- +Type: Quest +Weight: 0 +# +25253# +A box of sugar to be delivered to valerie. +-------------------------- +Type: Quest +Weight: 0 +# +25254# +Parched tree branches. +-------------------------- +Type: Quest +Weight: 0 +# +25256# +A fragment of crystallized spiritual imprint. It works like a mirror, reflecting the image of a lost memory. +-------------------------- +Weight: 1 +# +25257# +The names of its sender and recipient are smudged beyond recognition. \ +. +-------------------------- +Weight: 1 +# +25258# +An arrow found from soldiers who died fighting for their village. It radiates with negative energy. +-------------------------- +Weight: 1 +# +25259# +Used for recruiting members of a monster subjugation party. \ +. +-------------------------- +Weight: 1 +# +25260# +A fragment of purple ore. +It's flowed with magic. +-------------------------- +Type: Quest +Weight: 0 +# +25261# +An old piece of paper that is filled with writing. +It's believed to be torn of an old journal. \ +. +Can be sold to Collection Merchants. +-------------------------- +Weight: 1 +# +25262# +A carefully dried four-leaf clover. +It's believed to bring good luck to its bearer. +It has a message written on it in small letters, \ +. +Can be sold to Collection Merchants. +-------------------------- +Weight: 1 +# +25263# +Short, stiff hair that is so dark that it absorbs light instead of reflecting it. +Capes made with this hair are popular among people with secretive, unsavory jobs. +Can be sold to Collection Merchants. +-------------------------- +Weight: 1 +# +25264# +A cluster of nightmares that causes you to wake up sweating and panting. +Can be sold to Collection Merchants. +-------------------------- +Weight: 1 +# +25265# +Glowing mushroom spores. They grow into mushrooms that illuminate dark caves. +Can be sold to Collection Merchants. +-------------------------- +Weight: 1 +# +25266# +An old dry Yggdrasil leaf that is partially used. It's cut into tiny pieces. +Can be sold to Collection Merchants. +-------------------------- +Weight: 1 +# +25267# +A creepy-looking magic scroll. It has a pentacle drawn in red paint and has a faint, unpleasant odor. +Can be sold to Collection Merchants. +-------------------------- +Weight: 1 +# +25268# +Sticky blood that is sustained with the vicious energy of tombs. It's highly toxic and thus requires careful handling. +-------------------------- +Weight: 0 +# +25269# +Sap from mushrooms that grow in extreme conditions. Used for making detoxifying and diluent medicines. +-------------------------- +Weight: 0 +# +25270# +A lock of mane that waves like dancing flames. Rumor has it that this mane lets those who gaze upon it peek into someone else's dream. +-------------------------- +Weight: 0 +# +25271# +A mysterious ore that is rarely can be found. Rumor has it that this clear ore lets those who gaze into it experience lifelike illusions. +Only the wisest can see the true value of this ore. +-------------------------- +Type: Quest +Weight: 0 +# +25272# +A mysterious ore that is rarely found. Looking at this ore, I can't help but wonder how valuable it is and if there's someone I could talk to about its value. +-------------------------- +Weight: 1 +# +25273# +Medal made of special metal issued by the Monster Racing Association. +-------------------------- +Weight: 0 +# +25274# +Racing ticket issued by the Monster Racing Association. +-------------------------- +Weight: 0 +# +25276# +A small bone. +A collectible that can be sold to merchant. +-------------------------- +Type: Collectible +Weight: 1 +# +25277# +A powder with high toxic Level. +A collectible that can be sold to merchant. +-------------------------- +Type: Collectible +Weight: 1 +# +25278# +A red scarf wore by wild west robber. +A collectible that can be sold to merchant. +-------------------------- +Type: Collectible +Weight: 1 +# +25279# +An ammunition that is illegally produced. +A collectible that can be sold to merchant. +-------------------------- +Type: Collectible +Weight: 1 +# +25280# +Just a broken shotgun. +A collectible that can be sold to merchant. +-------------------------- +Type: Collectible +Weight: 1 +# +25281# +A rusty old scimitar. It seems may break at any moment. +A collectible that can be sold to merchant. +-------------------------- +Type: Collectible +Weight: 1 +# +25282# +A rusty old revolver. +A collectible that can be sold to merchant. +-------------------------- +Type: Collectible +Weight: 1 +# +25283# +A brown colored scarf. A necessity for a night watch. +A collectible that can be sold to merchant. +-------------------------- +Type: Collectible +Weight: 1 +# +25284# +A Bark of Marsh Worm. +A collectible that can be sold to merchant. +-------------------------- +Type: Collectible +Weight: 1 +# +25285# +A tail of brown rat. +A collectible that can be sold to merchant. +-------------------------- +Type: Collectible +Weight: 1 +# +25286# +A very sticky liquid that can be obtained from octopus legs that appear briefly in the New Year. +I don't know why it's so sticky, but it's sticky like it's not sticky in this world. +-------------------------- +Batch deletion at the end of the event. +(December 28, 2016 ~ February 1, 2017) +-------------------------- +Weight: 0 +# +25287# +Very mysterious feathers. +I am worried that there is still a warm energy, but I think I can make something. +-------------------------- +Batch deletion at the end of the event. +(December 28, 2016 ~ February 1, 2017) +-------------------------- +Weight: 0 +# +25290# +Celebration coin for Sweets Festival. Can exchange with sweet treats from Sweets Shop. +-------------------------- +Type: Valuable +Weight: 0 +# +25291# +Factory made chocolate using cacao beans. Need to deliver this to Sweets Shop. +-------------------------- +Weight: 0 +# +25292# +Dried product of fermented cacao seed. Needed from Charles' chocolate factory. +-------------------------- +Weight: 0 +# +25293# +An item that was lost when the \ + came to the continent of Midgard. +It seems to be a very important thing. +-------------------------- +Weight: 0 +# +25294# +A ticket to use the Happy Egg Festival vending machine. +(This item will be removed after the end of the event.) +-------------------------- +Weight: 0 +# +25295# +A three leaf clover that smells like Spring. +(This item will be removed after the end of event.) +-------------------------- +Weight: 0 +# +25296# +A lethal bug inside a box. It's making noises every time it moves. Let's give this to the Festival Guide ASAP. +(This item will be removed after the end of the event.) +-------------------------- +Weight: 0 +# +25297# +A piece of stone that has been frozen for a very long time. Can be sold to Item Collectors. +-------------------------- +Weight: 1 +# +25298# +An unusual gemstone that looks crude in the inside. Can be sold to Item Collectors. +-------------------------- +Weight: 1 +# +25299# +A well rounded snow ball, can be quite painful if you get hit by it. Can be sold to Item Collectors. +-------------------------- +Weight: 1 +# +25300# +A rare gemstone that named as Ktullanux's Eye. Can be sold to Item Collectors. +-------------------------- +Weight: 1 +# +25302# +A stone that allows you to use a double attack. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Enables the use of Double Attack Lv.3 +If you have learned a higher Level, use that instead. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25303# +A stone that increases critical damage. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases Critical Damage by 20%. +-------------------------- +When equipped with Critical Stone(Upper), Critical Stone(Mid) and Critical Stone(Lower): +Critical +10 +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25304# +A stone that increases critical damage. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +Increases Critical Damage by 3% +When equipped with Critical Stone(Mid)0 and Critical Stone(Lower): +Increase critical damage by additionally 6%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25305# +A stone that increases critical damage. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +Increases Critical Damage by 3% +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25306# +A stone that Decreases Variable Casting Time. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Variable Casting Stone(Upper), Variable Casting Stone(Mid) and Variable Casting Stone(Lower): +Decreases Variable Casting Time by additional 5%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25307# +This is a proof ticket from Late Lang's company, and it contains the number he or she walked in the Monster Race. +It is only available through the company. +-------------------------- +Weight: 0 +# +25308# +Canned foods cooked with legendary tuna that are rarely caught. +-------------------------- +Take it to the NPC \ + in Izlude for a special service. +-------------------------- +This item can only be moved to storage. +-------------------------- +Weight: 1 +# +25309# +A twig that was buried in the soil. +-------------------------- +Weight: 1 +# +25311# +A mysterious piece that emanates sinister aura. It's sharp part can cut and pierce people who touches it. +Can be sold to Item Collectors. +-------------------------- +Weight: 1 +# +25312# +A pretty old doll that tightly sewn. It was cherished by its previous owner, but not anymore. It gives a feeling that this doll resemble someone. +Can be sold to Item Collectors. +-------------------------- +Weight: 1 +# +25313# +A shell of turtle that lives on Turtle Island. It's smaller and scally than other turtle that currently live. +Can be sold to Item Collectors. +-------------------------- +Weight: 1 +# +25314# +It looks like the other jurnal that I read before. Its content quite different from what I remember. There are parts that barely readable. +-------------------------- +Weight: 1 +# +25315# +A shell piece of turtle that lives on Turtle Island. +-------------------------- +Weight: 0 +# +25316# +An old piece of metal that's not corroded, it shines in strange color. It's unknown, from what thing this piece came from nor its valuable or not. +-------------------------- +Weight: 0 +# +25318# +I think I can make something with a sturdy shell. Let it dry well. +-------------------------- +Weight: 1 +# +25319# +Cold box asked for delivery. It keeps what's inside cold. +-------------------------- +Weight: 0 +# +25320# +Round, net-shaped melon... ? It seems to be different from the melon you have seen so far. +-------------------------- +Weight: 1 +# +25340# +Sweet, juicy corn that grows under the starlight. It is a perfect variety for making popcorn. +-------------------------- +Weight: 0 +# +25341# +A hot ball filled with the energy of fire. It can be obtained from the volcanic monsters that can be found outside the village and from the Corodo monsters. +-------------------------- +Weight: 0 +# +25342# +A herb that blooms all over the town in June. You can put on fire and smoke good for your body. +-------------------------- +Weight: 1 +# +25344# +Flat and round stones. It shines like a jewel. Could it be real jewelry? +-------------------------- +Weight: 0 +# +25345# +A fragment of the Arcana card that governs justice. +-------------------------- +Weight: 0.1 +# +25346# +A fragment of the Arcana card that controls the stars. +-------------------------- +Weight: 0.1 +# +25347# +A fragment of the Arcana card that controls the temperance. +-------------------------- +Weight: 0.1 +# +25348# +A fragment of the Arcana card that controls the tank. +-------------------------- +Weight: 0.1 +# +25349# +A fragment of the Arcana card that controls the god of death. +-------------------------- +Weight: 0.1 +# +25350# +A fragment of the Arcana card that controls the hermit. +-------------------------- +Weight: 0.1 +# +25351# +A fragment of the Arcana card that controls the emperor. +-------------------------- +Weight: 0.1 +# +25352# +A fragment of the Arcana card that controls the moon. +-------------------------- +Weight: 0.1 +# +25353# +A fragment of the Arcana card that controls a lover. +-------------------------- +Weight: 0.1 +# +25354# +A fragment of the Arcana card that controls the pope. +-------------------------- +Weight: 0.1 +# +25355# +A fragment of the Arcana card that controls the devil. +-------------------------- +Weight: 0.1 +# +25356# +A fragment of the Arcana card that controls power. +-------------------------- +Weight: 0.1 +# +25357# +The power of the curse that fills the abyss is solidified with the blood of the demon as the core. +The power of a high-purity curse seems to gradually erode the soul of the possessor. +-------------------------- +Weight: 0.1 +# +25358# +If you do something specific somewhere, it seems that the data is on the card. +Return after investigation. +-------------------------- +Weight: 20 +# +25359# +A sturdy box with three traces of tearing and pasting the voucher. It seems to be recycled. +Make sure to deliver it where you are directed. +-------------------------- +Weight: 20 +# +25360# +A receipt written in clean letters. +If you bring it to Masha of Alberta Merchant Guild, you will receive the promised item. +-------------------------- +Weight: 20 +# +25361# +A coin used in a kingdom that once flourished but died overnight. +Even after the existence of the kingdom was buried in the darkness of history, only this coin remains, barely proving that the kingdom once existed. +-------------------------- +This item will not be available on future events. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 0 +# +25362# +A very large bell part hung from the royal castle. +-------------------------- +This item can only be sold to NPCs. +-------------------------- +Weight: 1000 +# +25363# +A flower that lives only in the royal castle. +It has a slightly sweet scent. +-------------------------- +This item can only be sold to NPCs. +-------------------------- +Weight: 0 +# +25364# +A royal flower seed that is cultivated only in the royal castle. +-------------------------- +This item can only be sold to NPCs. +-------------------------- +Weight: 0 +# +25365# +Elongated noodles. If it is properly cooked, throw it against the wall and it will stick. +-------------------------- +Weight: 0 +# +25366# +Coin used at the Noodle Festival. +-------------------------- +Weight: 0 +# +25367# +It contains contents promoting the noodles festival. It is surprisingly strong and creates a cool scent of wind. +-------------------------- +Weight: 0 +# +25374# +A very light and mysterious piece of stone. +It looks like a precious stone for a stone collector. +-------------------------- +- Take it to the NPC \ + at Izlude coordinates (132 42). +-------------------------- +Weight: 0 +# +25375# +A essence that is said to have been made by refining the soul of a powerful monster. +It is not known who can do it and how. +-------------------------- +Weight: 0 +# +25376# +Coin that seems to be able to purchase products related to Cuppet. +-------------------------- +Weight: 0 +# +25377# +A luxury food that is so expensive it'll give you a heart attack. Only eaten by noble class. +There is chef's signature sign on the plate marking this as special dish. +-------------------------- +Type: Pet Food +Pet: Phreeoni, Moonlight Flower +Weight: 1 +# +25378# +A tightly sealed letter. The letter D is stamped on the seal that sealed the envelope. +[To: Priest Bamp]prt_church,185,106,0,100,0,0 +-------------------------- +Weight: 0 +# +25379# +A tightly sealed letter. The letter D is stamped on the seal that sealed the envelope. +[To: D]prt_cas,76,310,0,100,0,0 +-------------------------- +Weight: 0 +# +25380# +Noodles made from thin noodles like a dragon's beard, beautifully twisted and served with soup. It is a representative dish of Comodo, characterized by elastic noodles in a mysteriously clear broth. +-------------------------- +Weight: 0 +# +25381# +Dumplings baked with a strong flame like breath. It is a representative food of Comodo that is crispy and light by blowing away excess moisture and oil with great heat. +-------------------------- +Weight: 0 +# +25382# +A cookie that resembles the head of a sea dragon from the legend of Comodo. The icing on the beard is very delicious. Let's bring it to the children playing in Comodo [Beach]comodo,194,145,0,100,0,0. +-------------------------- +Weight: 0 +# +25383# +It is made by kneading honey well and stretching it like a thin thread. Legend has it that it was made from the strands of the beard of a Comodo sea dragon. This candy is said to bring you special luck in Comodo [Casinocomodo,157,97,0,100,0,0. +-------------------------- +Weight: 0 +# +25389# +The power of the constellations shining in the sky spills and materializes. +It is said that the protection of crabs can be obtained by collecting the small power. +-------------------------- +Weight: 0 +# +25390# +Box where the captured boar is asleep. +-------------------------- +Weight: 0 +# +25391# +A quality twig that can be obtained in very small quantities from a single tree. It is among the best in firewood. +-------------------------- +Weight: 0 +# +25392# +A passenger ship ticket that seems to go anywhere. You can go to one of the local areas for free by visiting Alberta'sFerry Boat Captainalberta,140,170,0,100,0,0 during the event. +-------------------------- +Weight: 0 +# +25393# +Everyone likes yellow delicious corn. +-------------------------- +Weight: 0 +# +25394# +A basket with all kinds of fruits. +-------------------------- +Weight: 0 +# +25395# +Very small embers. It is essential when you are making a fire for cooking or heating. +-------------------------- +Weight: 0 +# +25396# +A thankful scroll in which the secrets of training are written by the master master. +If you read this and practice, even a weak boy with cowardice can defeat the bad guys in the city and get a lover. +-------------------------- +This item will not be used in future events. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 0 +# +25397# +The power of the constellations shining in the sky spills and materializes. +It is said that the blessing of the bull can be obtained by collecting the small power. +-------------------------- +Weight: 0 +# +25401# +Rotting, discolored black hair. Ominous energy can be felt. +-------------------------- +Weight: 0 +# +25404# +A coin used in a kingdom that once flourished but died overnight. +Even after the existence of the kingdom was buried in the darkness of history, only this coin remains, barely proving that the kingdom once existed. +-------------------------- +This item will not be used in future events. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 0 +# +25408# +Some of the memories left in the Valley of Zheng. It is difficult to see properly because of various complicated spirits, but it contains important information for gaining enlightenment. +- Items for exclusive use of the Scatleton Evolution +-------------------------- +Weight: 0 +# +25409# +A stone that awakens the potential of Champions. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Iron Hand: +ATK +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25410# +A stone that awakens the potential of Champions. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For each Level of Dodge: +HIT +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25411# +A stone that awakens the potential of Champions. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +Increases damage of Chain Combo by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25412# +A stone that awakens the potential of Suras. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Rampage Blaster by 15%. +-------------------------- +When equipped with Champion Stone(Upper): +Increases damage of Rampage Blaster by additional 10%. +-------------------------- +When equipped with Champion Stone(Mid): +Decreases Fixed Casting Time of Dangerous Soul Collect by 40%. +-------------------------- +When equipped with Champion Stone(Lower): +Using Rampage Blaster has a high chance (30%) to auto cast Danger Soul Collect. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25413# +A stone that awakens the potential of Snipers. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Steel Crow: +ATK +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25414# +A stone that awakens the potential of Snipers. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +Decreases Fixed Casting Time of Sharp Shooting by 0.5 seconds. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25415# +A stone that awakens the potential of the Sniper. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +Increases damage of Arrow Shower by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25416# +A stone that awakens the potential of the Ranger. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Arrow Storm by 10%. +-------------------------- +When equipped with Sniper Stone(Upper): +Increases damage of Arrow Storm by additional 15%. +-------------------------- +When equipped with Sniper Stone(Mid): +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Sniper Stone(Lower): +Using Wind Walk increases Ranged Physical Damage by 5% for 60 seconds. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25417# +A stone that awakens the potential of Professors. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Advanced Book: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25418# +A stone that awakens the potential of Professors. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +Decreases Fixed Casting Time of Double Casting by 0.4 seconds. +(Does not overlap with other Fixed Casting Time reductions.) +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25419# +A stone that awakens the potential of Professors. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25420# +A stone that awakens the potential of Sorcerers. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Psychic Wave by 10%. +-------------------------- +When equipped with Professor Stone(Upper): +Increases damage of Psychic Wave by additional 15%. +-------------------------- +When equipped with Professor Stone(Mid): +Decreases Warmer skill cooldown by 15 seconds. +-------------------------- +When equipped with Professor Stone(Lower): +Decreases Psychic Wave skill cooldown by 2 seconds. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25421# +A representative ornament that is indispensable for Halloween! +You can make the atmosphere more Halloween by lighting a candle in the dug. +-------------------------- +Weight: 0 +# +25422# +Stems clean and dry. +Perfect for Halloween decorations! +-------------------------- +Weight: 0 +# +25425# +An ice crystal that is found among monsters with cold energy. It is very useful for making snowman due to its white, cold and binding properties. +(This item will have no effect once that event has ended.) +-------------------------- +Weight: 0 +# +25426# +White warm cotton that can be used to make clothes and decorations. +(This item will have no effect once that event has ended.) +-------------------------- +Weight: 0 +# +25427# +A voucher to exchange weapons supported by Rune Midgartz Kingdom for beginner adventurers who will begin another adventure. +[Beginner's Weapon Manager]prontera,157,191,0,100,0,0 +exchanges it for equipment appropriate to your class. +-------------------------- +Weight: 0 +# +25428# +Access ticket for the Refinement service for your Beginner's Weapon. +[Beginner's Weapon Manager]prontera,157,191,0,100,0,0 +Refines your Beginner's Weapon safely to +7 for it. +-------------------------- +Weight: 0 +# +25434# +Z-Knockback blueprint. +If you bring it to MARS_01 in the Verus excavation site, it will enchant the Excelion equipment. +-------------------------- +Only one Z-Type blueprint can be used for the same equipment. +-------------------------- +Weight: 1 +# +25435# +Z-Immortal blueprint. +If you bring it to MARS_01 in the Verus excavation site, it will enchant the Excelion equipment. +-------------------------- +Only one Z-Type blueprint can be used for the same equipment. +-------------------------- +Weight: 1 +# +25436# +Z-Killgain blueprint. +If you bring it to MARS_01 in the Verus excavation site, it will enchant the Excelion equipment. +-------------------------- +Only one Z-Type blueprint can be used for the same equipment. +-------------------------- +Weight: 1 +# +25437# +Z-Reincarnation blueprint. +If you bring it to MARS_01 in the Verus excavation site, it will enchant the Excelion equipment. +-------------------------- +Only one Z-Type blueprint can be used for the same equipment. +-------------------------- +Weight: 1 +# +25438# +Z-NoDispell blueprint. +If you bring it to MARS_01 in the Verus excavation site, it will enchant the Excelion equipment. +-------------------------- +Only one Z-Type blueprint can be used for the same equipment. +-------------------------- +Weight: 1 +# +25439# +Z-Clairvoyance blueprint. +If you bring it to MARS_01 in the Verus excavation site, it will enchant the Excelion equipment. +-------------------------- +Only one Z-Type blueprint can be used for the same equipment. +-------------------------- +Weight: 1 +# +25440# +Z-CastFixed blueprint. +If you bring it to MARS_01 in the Verus excavation site, it will enchant the Excelion equipment. +-------------------------- +Only one Z-Type blueprint can be used for the same equipment. +-------------------------- +Weight: 1 +# +25441# +A sticker that you can give to \ + to exchange for special costume equipment. +-------------------------- +- Take it to the NPC \ + at Izlude coordinates (128 111) +-------------------------- +Please check the latest information on the official website for the appearance period of NPC \ + and exchange items. +-------------------------- +This item can only be moved to storage. +-------------------------- +Weight: 1 +# +25442# +The power of the constellations shining in the sky spills and materializes. +It is said that the protection of twins can be obtained by collecting the small power. +-------------------------- +Weight: 0 +# +25443# +The power of the constellations shining in the sky spills and materializes. +It is said that the protection of the shooter can be obtained by collecting the small power. +-------------------------- +Weight: 0 +# +25444# +A rare stone that can store happiness. +The more you stack, the more happiness you get. +-------------------------- +This item will disappear automatically 840 hours after it is recieved. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 0 +# +25445# +A stone that awakens the potential of Lord Knights. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Spear Mastery: +ATK +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25446# +A stone that awakens the potential of Lord Knights. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +Increases damage of Spiral Pierce by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25447# +A stone that awakens the potential of Lord Knights. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +For each Level of Cavalry: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25448# +A stone that awakens the potential of Rune Knights. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Dragon Breath and Dragon Breath - Water by 10%. +-------------------------- +When equipped with Lord Knight Stone(Upper): +Increases damage of Dragon Breath and Dragon Breath - Water by additional 10%. +-------------------------- +When equipped with Lord Knight Stone(Mid): +Decreases SP Consumption of Dragon Breath and Dragon Breath - Water by 10%. +-------------------------- +When equipped with Lord Knight Stone(Lower): +Decreases After Skill Delay by 5%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25449# +A stone that awakens the potential of Genetics. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Cart Cannon by 10%. +-------------------------- +When equipped with Creator Stone(Upper): +Increases damage of Cart Cannon by additional 15%. +-------------------------- +When equipped with Creator Stone(Mid): +Decreases Howling of Mandragora skill cooldown by 3 seconds. +-------------------------- +When equipped with Creator Stone(Lower): +Increases Ranged Physical Damage by 5%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25450# +A stone that awakens the potential of Creators. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Learning Potion: +ATK +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25451# +A stone that awakens the potential of Creators. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For each Level of Potion Pitcher: +Increases Healing and Potion Recovery by 2%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25452# +A stone that awakens the potential of Creators. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +Increases damage of Acid Terror by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25453# +A stone that awakens the potential of High Wizards. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Mystical Amplification: +MATK +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25454# +A stone that awakens the potential of High Wizards. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +Increases damage of Meteor Storm by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25455# +A stone that awakens the potential of High Wizards. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +Increases damage of Fire Pillar by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25456# +A stone that awakens the potential of Warlocks. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Crimson Rock by 10%. +-------------------------- +When equipped with High Wizard Stone(Upper: +Increases damage of Crimson Rock by additional 15%. +-------------------------- +When equipped with High Wizard Stone(Mid): +Decreases Fixed Casting Time by 0.1 seconds for evey 2 Levels of Soul Drain. +-------------------------- +When equipped with High Wizard Stone(Lower): +Increases damage of Fire elemental magic by 5%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25464# +You can navigate to the place you want in Navigation. +-------------------------- +\ +-------------------------- +Weight: 0 +# +25479# +A bottle containing a scent which is irresistible to doggo. It contains something so delicious, it can be dangerous! +(This item will have no effect once that event has ended.) +-------------------------- +Weight: 0 +# +25480# +A traditional Amatsu greeting letter given to those who have taken care of us and close friends with words to celebrate the New Year. +A splendid illustration suitable for the New Year is drawn. +-------------------------- +You can see the New Year's card illustration by clicking the \ + button on the upper left of the item details window. +-------------------------- +Weight: 1 +# +25481# +A voucher required to receive a pet Nibble Cat. +-------------------------- +If you give it to \ + in Izlude, you can receive a Nibble Cat. +-------------------------- +This item can only be moved to storage. +-------------------------- +Weight: 0 +# +25490# +A stone that awakens the potential of Stalkers. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Plagiarism: +ATK +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25491# +A stone that awakens the potential of Stalkers. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For each Level of Vulture's Eye: +HIT+ 2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25492# +A stone that awakens the potential of Stalkers. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +Increases damage of Raid by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25493# +A stone that awakens the potential of Shadow Chasers. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Triangle Shot by 15%. +-------------------------- +When equipped with Stalker Stone(Upper): +Increases damage of Triangle Shot by additional 15%. +-------------------------- +When equipped with Stalker Stone(Mid): +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Stalker Stone(Lower): +Decreases SP Consumption of Triangle Shot by 10%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25494# +A stone that awakens the potential of Whitesmiths. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Weaponry Research: +ATK +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25495# +A stone that awakens the potential of Whitesmiths. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For each Level of Skin Tempering: +HIT +3 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25496# +A stone that awakens the potential of Whitesmiths. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +Increases damage of Cart Termination by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25497# +A stone that awakens the potential of Mechanics. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Axe Tornado by 15%. +-------------------------- +When equipped with Whitesmith Stone(Upper): +Physical attacks have a 2% chance to absorb 1% of the damage dealt as SP. +-------------------------- +When equipped with Whitesmith Stone(Mid: +Decreases Axe Tornado skill cooldown by 1 second. +-------------------------- +When equipped with Whitesmith Stone(Lower): +Increases damage of Axe Tornado by additional 15%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25498# +A stone that awakens the potential of Clowns and Gypsies. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Musical Lesson/Dancing Lesson: +ATK +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25499# +A stone that awakens the potential of Clowns and Gypsies. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +Increases damage of Musical Strike and Throw Arrow by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25500# +A stone that awakens the potential of Clowns and Gypsies. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +Increases damage of Arrow Vulcan by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25501# +A stone that awakens the potential of Minstrels and Wanderers. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Severe Rainstorm by 15%. +-------------------------- +When equipped with Clown Gypsy Stone(Upper): +Increases damage of Severe Rainstorm by additional 15%. +-------------------------- +When equipped with Clown Gypsy Stone(Mid): +Decreases Severe Rainstorm skill cooldown by 1 second. +-------------------------- +When equipped with Clown Gypsy Stone(Lower): +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25502# +Rice cake used to boil rice cake soup. It's surprisingly delicious to just eat. +The chewy texture is excellent! +-------------------------- +Weight: 5 +# +25503# +A flower left in a place where the powerful illusion that appeared in the corridor of illusion disappeared. +You will be happy to collect these flowers and send them to the Ghost of Illusion. +-------------------------- +Weight: 1 +# +25504# +A seal engraved by the Ghost of Illusion. +It is said to indicate the qualification to enter the hall of welcome. +-------------------------- +Weight: 0 +# +25505# +A wildcard used as a trump card in the game. +Can be sold to Item Collectors. +-------------------------- +Weight: 1 +# +25506# +A girly broom with cute decorations. +Can be sold to Item Collectors. +-------------------------- +Weight: 1 +# +25507# +Grass from the sea. The strikingly colorful colors are wonderful. +Can be sold to Item Collectors. +-------------------------- +Weight: 1 +# +25508# +A token of a blue colored oak. It seems to symbolize a higher status within the Orc. +Can be sold to Item Collectors. +-------------------------- +Weight: 1 +# +25509# +Glittering shell. Continue drying in a round shape. +Can be sold to Item Collectors. +-------------------------- +Weight: 1 +# +25511# +Plate chocolate used to make chocolate eggs. +It's delicious to eat, but you shouldn't be tempted. +-------------------------- +Weight: 0 +# +25512# +Almonds used to make marzipan, a delicious cookie egg ingredient. +It's delicious to eat, but it's a big deal if you get over temptation. +-------------------------- +Weight: 0 +# +25615# +A white stone sculpture containing the spirit of the Nasarian. +It looks like an ordinary screw, but if you look closely... +-------------------------- +Weight: 1 +# +25616# +Nassarian's skin fragments. +It is said to be very delicious, but green is poisonous, so it is a big deal to eat! +-------------------------- +Weight: 1 +# +25617# +The village doll is made using very luxurious silk that shines in a soft golden color when it is illuminated by a beautiful green fabric. +Although it is solid and excellent in quality, it seems that the stitch is sweating, but it seems to have been left untouched for some reason. +-------------------------- +Weight: 1 +# +25618# +Crafted by craftsmen one by one, they are baked in a traditional kiln, and all handmade ultra-made Gothic porcelain dolls. +Although she is wearing a delicate brush touch with a lifelike expression and a luxurious dress made with special orders, she seems to have been left unselected for some reason. +-------------------------- +Weight: 1 +# +25619# +It seems to have been a doll made of clay, but it is crushed so it is not known what it originally looked like. +-------------------------- +Weight: 1 +# +25622# +White snake shed tears of worry and longing. +-------------------------- +Weight: 1 +# +25623# +A mysterious soul summoned by a soul-handling summoner. +With this soul, there seems to be a surgeon who will reset the drum stats and skills. +-------------------------- +Weight: 1 +# +25624# +A box containing one Doram Soul. +-------------------------- +Doram Soul is only available for Doram characters who have opened the box. +All transactions and movements will be prohibited, so open the box with the character you want to use. +-------------------------- +Doram Soul will disappear automatically 720 hours after opening it. +-------------------------- +This item can only be moved to storage. +-------------------------- +Weight: 1 +# +25625# +A letter of introduction written by someone for a certain Doram. +If you show this letter of introduction to Shiva, it seems that you will receive various additional rewards for specific quests. +-------------------------- +Weight: 1 +# +25626# +A box containing one Special Referral Letter. +-------------------------- +Special Referral Letter is only available for Doram characters who have opened the box. +All transactions and movements will be prohibited, so open the box with the character you want to use. +-------------------------- +This item can only be moved to storage. +# +25627# +Card of standard not used now. +It flashes golden, but is useless anywhere. +Someone may need it. +-------------------------- +Weight: 1 +# +25629# +Letter folded in a knot shape. There is a fine flower inserted like a mother-in-law, but now it has withered. +-------------------------- +Weight: 1 +# +25631# +A fire of conflict that grows in response to the human heart. +It burns more violently depending on what you have. +-------------------------- +Weight: 1 +# +25633# +Proof that you are a member of the Wootan. +Small bones are tightly tied with strings. +-------------------------- +Weight: 1 +# +25634# +A fragment of the giant shield carried by the Wootan Defender. +Be careful when handling the sharp edges. +-------------------------- +Weight: 1 +# +25635# +Wootan Warrior's hair. +At first glance, it is like human hair, but it is the hair of a warrior. +-------------------------- +Weight: 1 +# +25636# +A small stone that looks good to shoot. +It seems to hurt if the solid one is right. +-------------------------- +Weight: 1 +# +25637# +At first glance, it looks like a human hair, but it is a leaf. Is it good to use it as dry firewood? +-------------------------- +Weight: 1 +# +25638# +Proof that you are a member of the megalithic family. +It is a rock shaped like a human face. +-------------------------- +Weight: 1 +# +25639# +A stone that is said to have been broken after being hit by a thunderbolt. +If you touch this stone on a rainy day, you might be thrilled? +-------------------------- +Weight: 1 +# +25640# +A potted rock. +At first glance, it looks like one of Tao's faces. +-------------------------- +Weight: 1 +# +25641# +The mud was agglomerated and turned into beads. +It is hard to be broken even if thrown. +-------------------------- +Weight: 1 +# +25642# +Insect in a hard shell. +When the armor that protected it disappears, it seems to be fragile. +-------------------------- +Weight: 1 +# +25643# +On the first page of the cover, the signature of Arles Orleans and the name of the recipient are written together. +-------------------------- +Weight: 0 +# +25655# +It is a coin with a sweet tooth. +It smells very delicious. +-------------------------- +Weight: 0.1 +# +25656# +A notebook prepared for the Comodo stamp rally. You can get a souvenir by stamping it all. +-------------------------- +Weight: 0 +# +25657# +The reality of bad noodles is this. The amount is large, but the taste and aroma are poor and it is very tough. +-------------------------- +Weight: 0 +# +25658# +A small amount of sap from some noodles. +It is characterized by a soft and sweet taste. +-------------------------- +Weight: 0 +# +25659# +Specially ordered organic flour. +I just don't know if you look at it, but if you make bread with this, it will be very delicious. +-------------------------- +Weight: 20 +# +25660# +The power of the constellations shining in the sky spills and materializes. +It is said that the protection of the water bottle can be obtained by collecting the small power. +-------------------------- +Weight: 0 +# +25661# +The power of the constellations shining in the sky spills and materializes. +It is said that the protection of the snake can be obtained by collecting the small power. +-------------------------- +Weight: 0 +# +25662# +A large, stable crystal that feels the magical power of the labyrinth. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 0 +# +25664# +A pretty noodle shaped like a ribbon. +-------------------------- +Weight: 0 +# +25665# +Dien's Precious Envelope. +-------------------------- +Weight: 0 +# +25666# +A bracelet worn on the wrist for easy identification of subjects. It was damaged all over the place, but you can barely recognize the name on the bracelet. +-------------------------- +Weight: 0 +# +25668# +Weapon that is damaged enough to recognize its form. +You can't fix it unless you have a lot of technical skills. +-------------------------- +Weight: 1 +# +25669# +Machinery parts with unknown usage. +-------------------------- +Weight: 1 +# +25670# +Modification module for Illusion Armor. +Grants Modification Orb (Defense) to equipment. +-------------------------- +[Enchantment Effect] +DEF +25 +-------------------------- +Refine Level +7: +DEF +10 +-------------------------- +Refine Level +9: +DEF +10 +-------------------------- +[Enchantable Equipment] +Illusion Armor Type A +Illusion Armor Type B +Illusion Engine Wing Type A +Illusion Engine Wing Type B +Illusion Leg Type A +Illusion Leg Type B +-------------------------- +Weight: 1 +# +25671# +Modification module for Illusion Armor. +Grants Modification Orb (Magic Defense) to equipment. +-------------------------- +[Enchantment Effect] +MDEF +2 +-------------------------- +Refine Level +7: +MDEF +3 +-------------------------- +Refine Level +9: +MDEF +3. +-------------------------- +[Enchantable Equipment] +Illusion Armor Type A +Illusion Armor Type B +Illusion Engine Wing Type A +Illusion Engine Wing Type B +Illusion Leg Type A +Illusion Leg Type B +-------------------------- +Weight: 1 +# +25672# +Modification module for Illusion Armor. +Grants VIT +3 to equipment. +-------------------------- +[Enchantable Equipment] +Illusion Booster R +Illusion Booster L +Illusion Battle Chip R +Illusion Battle Chip L +-------------------------- +Weight: 1 +# +25673# +Modification module for Illusion Armor. +Grants LUK +3 to equipment. +-------------------------- +[Enchantable Equipment] +Illusion Booster R +Illusion Booster L +Illusion Battle Chip R +Illusion Battle Chip L +-------------------------- +Weight: 1 +# +25674# +Modification module for Illusion Armor. +Grants STR +3 to equipment. +-------------------------- +[Enchantable Equipment] +Illusion Booster R +Illusion Battle Chip R +-------------------------- +Weight: 1 +# +25675# +Modification module for Illusion Armor. +Grants AGI +3 to equipment. +-------------------------- +[Enchantable Equipment] +Illusion Booster R +Illusion Battle Chip R +-------------------------- +Weight: 1 +# +25676# +Modification module for Illusion Armor. +Grants INT +3 to equipment. +-------------------------- +[Enchantable Equipment] +Illusion Booster L +Illusion Battle Chip L +-------------------------- +Weight: 1 +# +25677# +Modification module for Illusion Armor. +Grants DEX +3 to equipment. +-------------------------- +[Enchantable Equipment] +Illusion Booster L +Illusion Battle Chip L +-------------------------- +Weight: 1 +# +25678# +Modification module for Illusion Armor. +Grants Modification Orb (HP Recovery) to equipment. +-------------------------- +[Enchantment Effect] +HP Recovery +20%. +-------------------------- +[Enchantable Equipment] +Illusion Booster R +Illusion Battle Chip R +-------------------------- +Weight: 1 +# +25679# +Modification module for Illusion Armor. +Grants Modification Orb (SP Recovery) to equipment. +-------------------------- +[Enchantment Effect] +SP Recovery +20%. +-------------------------- +[Enchantable Equipment] +Illusion Booster L +Illusion Battle Chip L +-------------------------- +Weight: 1 +# +25680# +Modification module for Illusion Armor. +Grants Spell5 to equipment. +-------------------------- +[Enchantment Effect] +MATK +18, +Decreases Variable Casting Time by 10%. +-------------------------- +[Enchantable Equipment] +Illusion Booster R +Illusion Booster L +Illusion Battle Chip R +Illusion Battle Chip L +-------------------------- +Weight: 1 +# +25681# +Modification module for Illusion Armor. +Grants AttackDelay4 to equipment. +-------------------------- +[Enchantment Effect] +Increases Attack Speed ( Decreases After Attack Delay by 10%). +-------------------------- +[Enchantable Equipment] +Illusion Booster R +Illusion Booster L +Illusion Battle Chip R +Illusion Battle Chip L +-------------------------- +Weight: 1 +# +25682# +Modification module for Illusion Armor. +Grants Fatal4 to equipment. +-------------------------- +[Enchantment Effect] +Increases Critical Damage by 10%. +Critical +4 +-------------------------- +[Enchantable Equipment] +Illusion Booster R +Illusion Booster L +Illusion Battle Chip R +Illusion Battle Chip L +-------------------------- +Weight: 1 +# +25683# +Modification module for Illusion Armor. +Grants Expert Archer5 to equipment. +-------------------------- +[Enchantment Effect] +Increases Ranged Physical Damage by 10%. +-------------------------- +[Enchantable Equipment] +Illusion Booster R +Illusion Booster L +Illusion Battle Chip R +Illusion Battle Chip L +-------------------------- +Weight: 1 +# +25684# +Modification module for Illusion Armor. +Grants Modification Orb (Stamina) to equipment. +-------------------------- +[Enchantment Effect] +MaxHP +5% +-------------------------- +Refine Level +7: +MaxHP +500 +-------------------------- +Refine Level +9: +MaxHP +750 +-------------------------- +[Enchantable Equipment] +Illusion Leg Type A +Illusion Leg Type B +-------------------------- +Weight: 1 +# +25685# +Modification module for Illusion Armor. +Grants Modification Orb (Spirit) to equipment. +-------------------------- +[Enchantment Effect] +MaxSP +5% +-------------------------- +Refine Level +7: +MaxSP +100 +-------------------------- +Refine Level +9: +MaxSP +150 +-------------------------- +[Enchantable Equipment] +Illusion Leg Type A +Illusion Leg Type B +-------------------------- +Weight: 1 +# +25686# +Modification module for Illusion Armor. +Grants Modification Orb (Heal) to equipment. +-------------------------- +[Enchantment Effect] +Increases Healing effectiveness by 5% . +-------------------------- +Refine Level +7: +Increases Healing effectiveness by additional 5%. +-------------------------- +Refine Level +9: +Increases Healing effectiveness by additional 5%. +-------------------------- +[Enchantable Equipment] +Illusion Leg Type A +Illusion Leg Type B +-------------------------- +Weight: 1 +# +25687# +Modification module for Illusion Armor. +Grants Modification Orb (Attack Power) to equipment. +-------------------------- +[Enchantment Effect] +ATK +5% +-------------------------- +Refine Level +7: +ATK +25 +-------------------------- +Refine Level +9: +ATK +25 +-------------------------- +[Enchantable Equipment] +Illusion Armor Type A +Illusion Armor Type B +-------------------------- +Weight: 1 +# +25688# +Modification module for Illusion Armor. +Grants Modification Orb (Magic Power) to equipment. +-------------------------- +[Enchantment Effect] +MATK +5% +-------------------------- +Refine Level +7: +MATK +25 +-------------------------- +Refine Level +9: +MATK +25 +-------------------------- +[Enchantable Equipment] +Illusion Armor Type A +Illusion Armor Type B +-------------------------- +Weight: 1 +# +25689# +Modification module for Illusion Armor. +Grants Modification Orb (Sharpshooter) to equipment. +-------------------------- +[Enchantment Effect] +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 2%. +-------------------------- +[Enchantable Equipment] +Illusion Armor Type A +Illusion Armor Type B +-------------------------- +Weight: 1 +# +25690# +Modification module for Illusion Armor. +Grants Modification Orb (Swift) to equipment. +-------------------------- +[Enchantment Effect] +ASPD +1 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by additional 3%). +-------------------------- +[Enchantable Equipment] +Illusion Engine Wing Type A +Illusion Engine Wing Type B +-------------------------- +Weight: 1 +# +25691# +Modification module for Illusion Armor. +Grants Modification Orb (Caster) to equipment. +-------------------------- +[Enchantment Effect] +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by additional 3%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 3%. +-------------------------- +[Enchantable Equipment] +Illusion Engine Wing Type A +Illusion Engine Wing Type B +-------------------------- +Weight: 1 +# +25692# +Modification module for Illusion Armor. +Grants Modification Orb (Critical) to equipment. +-------------------------- +[Enchantment Effect] +Critical +10 +-------------------------- +Refine Level +7: +Increases Critical Damage by 5%. +-------------------------- +Refine Level +9: +Increases Critical Damage by additional 5%. +-------------------------- +[Enchantable Equipment] +Illusion Engine Wing Type A +Illusion Engine Wing Type B +-------------------------- +Weight: 1 +# +25693# +Modification module for Illusion Armor. +Grants Modification Orb (After Skill Delay) to equipment. +-------------------------- +[Enchantment Effect] +Decreases After Skill Delay by 5%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by additional 5%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by additional 5%. +-------------------------- +[Enchantable Equipment] +Illusion Armor Type A +Illusion Armor Type B +-------------------------- +Weight: 1 +# +25694# +Modification module for Illusion Armor. +Grants Modification Orb (Fixed Casting Time) to equipment. +-------------------------- +[Enchantment Effect] +Decreases Fixed Casting Time by 0.3 seconds. +-------------------------- +Refine Level +7: +Decreases Fixed Casting Time by additional 0.2 seconds. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by additional 0.2 seconds. +-------------------------- +[Enchantable Equipment] +Illusion Leg Type A +Illusion Leg Type B +-------------------------- +Weight: 1 +# +25695# +Modification module for Illusion Armor. +Grants Modification Orb (Above All) to equipment. +-------------------------- +[Enchantment Effect] +Decreases Physical and Magical Damage from against enemies of all elements by 5%. +Refine Level +7: +Decreases Physical and Magical Damage from all size enemies by 5%. +Refine Level +9: +Decreases Physical and Magical Damage from all race by 5% (Except Players). +-------------------------- +[Enchantable Equipment] +Illusion Engine Wing Type A +Illusion Engine Wing Type B +-------------------------- +Weight: 1 +# +25696# +Modification module for Illusion Armor. +Grants Modification Orb (Life Drain) to equipment. +-------------------------- +[Enchantment Effect] +Physical attacks have a 2 % chance to restore 2% of the inflicted damage as HP. +-------------------------- +[Enchantable Equipment] +Illusion Booster R +Illusion Battle Chip R +-------------------------- +Weight: 1 +# +25697# +Modification module for Illusion Armor. +Grants Modification Orb (Soul Drain) to equipment. +-------------------------- +[Enchantment Effect] +Physical attacks have a 1 % chance to restore 1% of the inflicted damage as SP. +-------------------------- +[Enchantable Equipment] +Illusion Booster L +Illusion Battle Chip L +-------------------------- +Weight: 1 +# +25698# +Modification module for Illusion Armor. +Grants Modification Orb (Magic Healing) to equipment. +-------------------------- +[Enchantment Effect] +Magical attacks have a 2% chance to recover 400HP per 0.5 second for 10 seconds. +-------------------------- +[Enchantable Equipment] +Illusion Booster R +Illusion Battle Chip R +-------------------------- +Weight: 1 +# +25699# +Modification module for Illusion Armor. +Grants Modification Orb (Magic Soul) to equipment. +-------------------------- +[Enchantment Effect] +Magical attacks have a 1% chance to recover 80SP per 0.5 second for 10 seconds. +-------------------------- +[Enchantable Equipment] +Illusion Booster L +Illusion Battle Chip L +-------------------------- +Weight: 1 +# +25700# +Modification module for Illusion Armor. +Grants Modification Orb (Unlimited Vital) to equipment. +-------------------------- +[Enchantment Effect] +Recieving physical or magical damage have a chance to activate Everlasting Life for 10 seconds. +-------------------------- +[Everlasting Life] +VIT +50 +Recover 400HP per 0.5 second. +Recover 20SP per second. +-------------------------- +[Enchantable Equipment] +Illusion Leg Type A +Illusion Leg Type B +-------------------------- +Weight: 1 +# +25701# +Modification module for Illusion Armor. +Grants Modification Orb (Spell Buster) to equipment. +-------------------------- +[Enchantment Effect] +Magical attacks have a chance to activate Magic Storm for 10 seconds. +-------------------------- +[Magic Storm] +INT +50 +MATK +15% +ATK -15% +-------------------------- +[Enchantable Equipment] +Illusion Leg Type A +Illusion Leg Type B +-------------------------- +Weight: 1 +# +25702# +Modification module for Illusion Armor. +Grants Modification Orb (Firing Shot) to equipment. +-------------------------- +[Enchantment Effect] +Physical attacks have a chance to activate Plunging Shooter for 10 seconds. +-------------------------- +[Plunging Shooter] +DEX +50 +Increases Ranged Physical Damage by 10%. +Drains 20SP per second. +-------------------------- +[Enchantable Equipment] +Illusion Leg Type A +Illusion Leg Type B +-------------------------- +Weight: 1 +# +25703# +Modification module for Illusion Armor. +Grants Modification Orb (Over Power) to equipment. +-------------------------- +[Enchantment Effect] +Physical attacks have a chance to activate Raging Fight for 10 seconds. +-------------------------- +[Raging Fight] +STR +50 +ATK +15% +MATK -15% +-------------------------- +[Enchantable Equipment] +Illusion Leg Type A +Illusion Leg Type B +-------------------------- +Weight: 1 +# +25704# +Modification module for Illusion Armor. +Grants Modification Orb (Fatal Flash) to equipment. +-------------------------- +[Enchantment Effect] +Physical attacks have a chance to activate Fatal Flash for 10 seconds. +-------------------------- +[Fatal Flash] +AGI +50 +Increases Critical Damage by 10%. +Drains 300HP per second. +-------------------------- +[Enchantable Equipment] +Illusion Leg Type A +Illusion Leg Type B +-------------------------- +Weight: 1 +# +25705# +Modification module for Illusion Armor. +Grants Modification Orb (Lucky Strike) to equipment. +-------------------------- +[Enchantment Effect] +Magical attacks have a chance to activate Good Fortune for 10 seconds. +-------------------------- +[Good Fortune] +LUK +50 +Increases all elemental magical damage by 10%. +Drains 300HP per second. +-------------------------- +[Enchantable Equipment] +Illusion Leg Type A +Illusion Leg Type B +-------------------------- +Weight: 1 +# +25706# +A stone that awakens the potential of High Priests. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Meditatio: +Healing +1% +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25707# +A stone that awakens the potential of High Priests. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For each Level of Mace Mastery: +Increases Critical Damage by 2%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25708# +A stone that awakens the potential of High Priests. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +Increases damage of Magnus Exorcismus by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25709# +A stone that awakens the potential of Arch Bishops. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Adoramus by 15%. +-------------------------- +When equipped with High Priest Stone(Upper): +Increases damage of Adoramus by additional 15%. +-------------------------- +When equipped with High Priest Stone(Mid): +Decreases Adoramus skill cooldown by 1 second. +-------------------------- +When equipped with High Priest Stone(Lower): +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25710# +A stone that awakens the potential of Paladins. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For every 2 Levels of Faith: +MaxHP +1% +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25711# +A stone that awakens the potential of Paladins. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For every 2 Levels of Spear Mastery: +Increases Ranged Physical Damage by 1%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25712# +A stone that awakens the potential of Paladins. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +Increases damage of Holy Cross by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25713# +A stone that awakens the potential of Royal Guards. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Banishing Point by 15%. +-------------------------- +When equipped with Paladin Stone(Upper): +Physical attacks have a 2% chance to absorb 1% of the damage dealt as SP. +-------------------------- +When equipped with Paladin Stone(Mid): +Decreases Cannon Spear skill cooldown by 0.5 seconds. +-------------------------- +When equipped with Paladin Stone(Lower): +Increases damage of Banishing Point by additional 15%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25714# +A stone that awakens the potential of Assassin Crosses. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Katar Mastery: +ATK +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25715# +A stone that awakens the potential of Assassin Crosses. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For each Level of Lefthand Mastery: +HIT +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25716# +A stone that awakens the potential of Assassin Crosses. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +Increases damage of Sonic Blow by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25717# +A stone that awakens the potential of Guillotine Crosses. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Rolling Cutter by 15%. +-------------------------- +When equipped with Assassin Cross Stone(Upper): +Physical attacks have a 2% chance to absorb 1% of the damage dealt as SP. +-------------------------- +When equipped with Assassin Cross Stone(Mid): +Increases damage of Cross Ripper Slasher by 15%. +-------------------------- +When equipped with Assassin Cross Stone(Lower): +Increases damage of Rolling Cutter by additional 15%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25719# +Materialized power of shining constellation that fallen from the sky. It said small force of Libra can be obtained from it. +-------------------------- +Weight: 0 +# +25720# +Materialized power of shining constellation that fallen from the sky. It said small force of Scorpio can be obtained from it. +-------------------------- +Weight: 0 +# +25721# +A thankful scroll in which the secrets of training are written by the master. +If you read this and practice, even a weak boy with cowardice can defeat the bad guys in the city and get a lover. +-------------------------- +This item will be available until August 14, 2018 (Tuesday), when regular maintenance starts. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 0 +# +25723# +It was made with advanced technology and used as core part for any device. +-------------------------- +Weight: 1 +# +25728# +Raw ore that can be Refined into Shadowdecon. You can use Shadowdecon to create special equipment. +-------------------------- +Weight: 1 +# +25729# +A metal with mysterious light. It is harder than anything, but it is necessary to make special equipment. +-------------------------- +Weight: 2 +# +25730# +Raw ore that can be Refined into Zelunium. Zelunium can be purified to make various armors. +-------------------------- +Weight: 1 +# +25731# +A metal with a golden glow. Zelunium can be purified to make various armors. +-------------------------- +Weight: 2 +# +25733# +A coupon received upon clearing episode 17.1 quests. +It is said 1 coupon is worth 8 accessories. +-------------------------- +Weight: 0 +# +25734# +Ticket to exchange for a Sealed Anicent Hero's Weapon. +Take it to [Equipment Support Manager]prontera,157,279,0,100,0,0. +-------------------------- +Weight: 0 +# +25735# +Seal that can awaken a Sealed Ancient Hero's Weapon. +Take it to [Equipment Support Manager]prontera,157,279,0,100,0,0. +-------------------------- +Weight: 0 +# +25736# +Senior hair stylist Jeremyitemmall,19,71,0,100,0,0 Beauty Coupon. Two new hairstyles are available. +-------------------------- +Weight: 1 +# +25738# +A ticket to receive booster service to level up your character. +The details of the service will be provided by the \ +. +-------------------------- +- Take it to the NPC \ + at prontera coordinates (116 87). +-------------------------- +This item will be available until December 25, 2018 (Tuesday), when regular maintenance starts. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Weight: 0 +# +25739# +Crystal of Bondi's beautiful gemstone that will bring terrible curse when entering water. +Those who interested with black magic curse tends to possess this crystal. +-------------------------- +Weight: 0 +# +25740# +A gemstone that has been completely eroded by a powerful curse. +Just by looking at it, will make your mind become confused. +Those who interested with black magic curse tends to possess this crystal. +-------------------------- +Weight: 0 +# +25759# +Mystical crystal with the power of the green dragon +-------------------------- +Weight: 1 +# +25760# +Mystical crystal with the power of the blue dragon. +-------------------------- +Weight: 1 +# +25761# +Mystical crystal with the power of the red dragon. +-------------------------- +Weight: 1 +# +25762# +Mystical crystal with the power of the gold dragon. +-------------------------- +Weight: 1 +# +25763# +Mystical crystal with the power of the purple dragon. +-------------------------- +Weight: 1 +# +25764# +Mystical crystal with the power of the silver dragon. +-------------------------- +Weight: 1 +# +25765# +Intact bones of a giant dragon. +Despite being old, the power of the dragon feels strong. +-------------------------- +Weight: 20 +# +25766# +Intact bones of a little dragon. +Despite the old age, the power of the dragon is felt. +-------------------------- +Weight: 10 +# +25767# +A small round object. +Beautiful and warm energy can be felt from it. +-------------------------- +Weight: 1 +# +25768# +A fragment of armor worn by Valkyrie Ingrid. +-------------------------- +Weight: 3 +# +25769# +A fragment of armor worn by Valkyrie Reginleif. +-------------------------- +Weight: 3 +# +25770# +Armor worn by Reginleif, the maiden of the fight that served Odin. +It was severely damaged by the effects of the battle. +-------------------------- +Weight: 10 +# +25771# +Armor worn by Ingrid, the maiden of the fight that served Odin. +It was severely damaged by the effects of the battle. +-------------------------- +Weight: 10 +# +25772# +A barrel full of delicious juice. +-------------------------- +Weight: 1 +# +25773# +A bottle of snake's venom. +It is very dangerous, need to be very careful when handling it. +-------------------------- +Weight: 1 +# +25774# +Mantis's favorite flower. +Insects are attracted by its fragrance. +-------------------------- +Weight: 1 +# +25775# +Cloth piece made from fluffy material. +-------------------------- +Weight: 1 +# +25776# +Insect shell with purple color. +Quite hard. +-------------------------- +Weight: 1 +# +25777# +A bottle filled with mysterious liquid. +It's thick and sticky. +-------------------------- +Weight: 1 +# +25778# +Jelly piece with mysterious light. +-------------------------- +Weight: 1 +# +25779# +A rope used to capture demon. +Because it's too short, this rope is kinda useless. +-------------------------- +Weight: 1 +# +25780# +An essence containing the frauds of demon. +The red color indicate the frauds are massive. +-------------------------- +Weight: 1 +# +25781# +A pretty little candle. +You can smelt fragrant when you lit it on fire. +-------------------------- +Weight: 1 +# +25782# +A bag contains unknown medicine. +No one knows how to use it. +-------------------------- +Weight: 1 +# +25783# +Cold holy water in silver bowl. +-------------------------- +Weight: 1 +# +25784# +Small Flashlight that can illuminate the darkness. +-------------------------- +Weight: 1 +# +25786# +A collection of papers that do not seem to have been recovered upon withdrawal from the Laboratory. +This alone does not provide information, but if you collect more, you may be able to figure it out. +-------------------------- +Weight: 0 +# +25787# +Fragment of something that may not have been recovered upon withdrawal from the Laboratory. +This alone does not provide information, but if you collect more, you may be able to figure it out. +-------------------------- +Weight: 0 +# +25791# +A voucher that can be used to expand maximum item possession limit. +[How to use guide]65 +-------------------------- +Weight: 0 +# +25792# +A voucher that can be used to expand maximum item possession limit. +[How to use guide]65 +-------------------------- +Weight: 0 +# +25793# +A voucher that can be used to expand maximum item possession limit. +[How to use guide]65 +-------------------------- +Weight: 0 +# +25797# +A stone that awakens the potential of Suras. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Knuckle Arrow by 15%. +-------------------------- +When equipped with Champion Stone II(Upper): +Increases damage of Tiger Cannon by 15%. +-------------------------- +When equipped with Champion Stone II(Mid): +MaxHP +10% +-------------------------- +When equipped with Champion Stone II(Lower): +Increases damage of Tiger Cannon by additional 15%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25798# +A stone that awakens the potential of Champions. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +For each Level of Divine Protection: +ATK +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25799# +A stone that awakens the potential of Champions. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +Increases damage of Combo Finish by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25800# +A stone that awakens the potential of Champions. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +Increases damage of Chain Crush Combo by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25801# +A stone that awakens the potential of Sorcerers. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Diamond Dust by 15%. +-------------------------- +When equipped with Professor Stone II(Upper): +Increases damage of Diamond Dust by additional 10%. +-------------------------- +When equipped with Professor Stone II(Mid): +Increases damage of Earth Grave by 20%. +-------------------------- +When equipped with Professor Stone II(Lower): +Decreases Varetyr Spear skill cooldown by 1 second. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25802# +A stone that awakens the potential of Professors. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +For each Level of Auto Spell: +MATK +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25803# +A stone that awakens the potential of Professors. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25804# +A stone that awakens the potential of Professors. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +Increases damage of Earth Spike and Heaven's Drive by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25805# +A stone that awakens the potential of Shadow Chasers. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Fatal Menace by 15%. +-------------------------- +When equipped with Stalker Stone II(Upper): +Increases damage of Fatal Menace by additional 10%. +-------------------------- +When equipped with Stalker Stone II(Mid): +Decreases SP Consumption of Fatal Menace by 10%. +-------------------------- +When equipped with Stalker Stone II(Lower): +Physical attacks have a 1% chance to absorb 1% of the damage dealt as SP. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25806# +A stone that awakens the potential of Stalkers. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +For each Level of Improve Dodge: +HIT +1 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25807# +A stone that awakens the potential of Stalkers. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +Increases damage of Back Stab by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25808# +A stone that awakens the potential of Stalkers. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Snatcher: +ATK +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25809# +A red ore with an unknown power found deep underground. +-------------------------- +Weight: 0.5 +# +25810# +A green ore with an unknown power found deep underground. +-------------------------- +Weight: 0.5 +# +25811# +A orange ore with an unknown power found deep underground. +-------------------------- +Weight: 0.5 +# +25812# +A purple ore with an unknown power found deep underground. +-------------------------- +Weight: 0.5 +# +25813# +A white ore with an unknown power found deep underground. +-------------------------- +Weight: 0.5 +# +25814# +Refined 5 ores are fused and five kinds of lights shine brilliantly. +-------------------------- +Weight: 1 +# +25815# +All sorts of dust got together and hardened. +Sell it to a Collectible Merchant. +-------------------------- +Weight: 0.1 +# +25816# +An trap that the Pitmen carried around. +For some reason, it doesn't seem to be used anymore. +Sell it to a Collectible Merchant. +-------------------------- +Weight: 1 +# +25817# +A piece of stone that came out of the mineral. +It's shape is popular with seniors. +Sell it to a Collectible Merchant. +-------------------------- +Weight: 5 +# +25820# +Ticket to exchange for Metal Weapons. +Take it to [Centro]prontera,148,282,0,100,0,0 and exchange it for one of the items below: +-------------------------- +Metal Two-Handed Sword[1] +Metal Lance[1] +Metal Mace[1] +Metal Two-Handed Axe[1] +Metal Dagger[1] +Metal Book[1] +Metal Staff[1] +Metal Katar[1] +Metal Bow[1] +-------------------------- +Weight: 0 +# +25840# +Coupons that can be exchanged for special costumes in January +Take it to [Spring's Head Poet]malangdo,114,160,0,100,0,0 and you'll get a random costume of the following: +When you collect 4 Coupons, you can choose one of your favorite Costumes. +-------------------------- +Costume Fairy Long (Blonde) +Costume Fairy Long (Silver) +Costume Men's Medal (Gold) +Costume Alice Wig +Costume Lolita Two Side Up +Costume Volume Low Twin +Costume Red Afro Wig +-------------------------- +Weight: 0 +# +25841# +White and smooth noodles. It can be eaten in a variety of recipes. +-------------------------- +Weight: 0 +# +25842# +A stone that awakens the potential of Soul Reapers. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Eswhoo by 20%. +-------------------------- +When equipped with Soul Linker Stone(Upper): +Increases damage of Eshwoo by additional 20%. +-------------------------- +When equipped with Soul Linker Stone(Mid): +Increases damage of Espa by 20%. +-------------------------- +When equipped with Soul Linker Stone(Lower): +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25843# +A stone that awakens the potential of Soul Linkers. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Happy Break: +MATK +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25844# +A stone that awakens the potential of Soul Linkers. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +Increases damage of Esma by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25845# +A stone that awakens the potential of Soul Linkers. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +For each Level of Kaahi: +Decreases Variable Casting Time by 2%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25846# +A stone that awakens the potential of Star Gladiators. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Peaceful Break: +ATK +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25847# +A stone that awakens the potential of Star Gladiators. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +Decreases Fixed Casting Time of Feeling of the Sun, Moon and Stars and Hatred of the Sun, Moon and Stars by 50%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25848# +A stone that awakens the potential of Star Gladiators. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +For each Level of Knowledge of the Sun, Moon and Stars: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25849# +A stone that awakens the potential of Star Emperors. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Falling Star, Solar Burst and Full Moon Kick by 20%. +-------------------------- +When equipped with Star Gladiator Stone(Upper): +Increases damage of Solar Burst by additional 15%. +-------------------------- +When equipped with Star Gladiator Stone(Mid): +Increases damage of Falling Star by additional 15%. +-------------------------- +When equipped with Star Gladiator Stone(Lower): +Physical attacks have a 2% chance to absorb 1% of the damage dealt as SP. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25850# +A stone that awakens the potential of Ninjas. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Ninja Mastery: +ATK +2 +MATK +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25851# +A stone that awakens the potential of Ninjas. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +Increases damage of Throw Huuma Shuriken by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25852# +A stone that awakens the potential of Ninjas. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25853# +A stone that awakens the potential of Kagerous. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Swirling Petal by 25%. +-------------------------- +When equipped with Ninja Stone(Upper): +Increases damage of Cross Slash by 25%. +-------------------------- +When equipped with Ninja Stone(Mid): +Increases damage of Kunai Explosion by 25%. +-------------------------- +When equipped with Ninja Stone(Lower): +Physical attacks have a 1% chance to absorb 1% of the damage dealt as SP. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25854# +A stone that awakens the potential of Oboros. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Flaming Petals by 20%. +-------------------------- +When equipped with Ninja Stone(Upper): +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by 30%. +-------------------------- +When equipped with Ninja Stone(Mid): +Increases damage of Freezing Spear and Wind Blade by 20%. +-------------------------- +When equipped with Ninja Stone(Lower): +Decreases Variable Casting Time by 15%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25855# +A stone that awakens the potential of Gunslingers. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Snake Eyes: +ATK +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25856# +A stone that awakens the potential of Gunslingers. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +Increases damage of Desperado by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25857# +A stone that awakens the potential of Gunslingers. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +For every Level of Chain Action: +Increases Ranged Physical Damage by 1%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25858# +A stone that awakens the potential of Rebellions. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Hammer of God and Round Trip by 20%. +-------------------------- +When equipped with Gunslinger Stone(Upper): +Increases damage of Round Trip by additional 15%. +-------------------------- +When equipped with Gunslinger Stone(Mid: +Increases damage of Hammer of God by additional 20%. +-------------------------- +When equipped with Gunslinger Stone(Lower): +Increases damage of Banishing Buster by 25%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25859# +A stone that awakens the potential of Dorams. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Scratch: +MATK +7 +ATK +7 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25860# +A stone that awakens the potential of Dorams. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +Increases damage of Lunatic Carrot Beat by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25861# +A stone that awakens the potential of Dorams. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +Increases damage of Silvervine Stem Spear by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +25862# +A stone that awakens the potential of Dorams. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Picky Peck and Catnip Meteor by 20%. +-------------------------- +When equipped with Doram Stone(Upper): +Increases damage of Lunatic Carrot Beat and Silvervine Stem Spear by 20%. +-------------------------- +When equipped with Doram Stone(Mid): +Decreases Spirit of Savage skill cooldown by 1 second. +-------------------------- +When equipped with Doram Stone(Lower): +Decreases Catnip Meteor skill cooldown by 1 second. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +25863# +Tickets that can be obtained during the 2019 Superstar R event. +You can collect multiple pieces and exchange them for special products. +-------------------------- +Weight: 0 +# +25864# +Ore and jeweled circlelets from a gap in time. +It doesn't have much effect, but if you take it to someone who knows it's value, it can be useful. +-------------------------- +Weight: 10 +# +25865# +A gemstone that is distorted in time and has a mysterious magical power. It's hard to work with ordinary things. +-------------------------- +Weight: 1 +# +25866# +A substance that is distorted in time and releases mysterious magical power. +-------------------------- +Weight: 1 +# +25867# +Shards of matter that are distorted in time and release mysterious magic power. +Destroyed magic fade. +-------------------------- +Weight: 1 +# +25876# +Tickets given to those who participate in the Thanksgiving. +It can be exchanged for various gifts. +-------------------------- +Weight: 0 +# +25892# +A shellfish that lives in the deep sea. The shell is hard. +-------------------------- +Weight: 1 +# +25893# +The tail of a deep-sea fish left behind by deep-sea predators. +The lean meat seems to be short. +-------------------------- +Weight: 1 +# +25894# +Deep sea that has been decaying for a long time. +I don't think I can eat because of the bad smell. +-------------------------- +Weight: 1 +# +25895# +A starfish that lives in the deep sea. +It has a brilliant blue light. +-------------------------- +Weight: 1 +# +25896# +A crab that lives in the deep sea. +Looks rich in nutritional value. +-------------------------- +Weight: 1 +# +25897# +The coffin used by the deep sea witch. +Somehow it looks expensive. +-------------------------- +Weight: 1 +# +25898# +The fishing rod used by Searud. +It remains intact and seems to have a subtle luster. +-------------------------- +Weight: 0 +# +25899# +A lump formed by condensing large and small substances in the deep sea. +It seems that a mysterious power is inherent. +-------------------------- +Weight: 1 +# +25920# +A high-grade gemstone used to upgrade armor equipment. +-------------------------- +Weight: 0 +# +25921# +Cacao beans are aged to give a richer scent. +Used in high-end cooking. +-------------------------- +Weight: 0 +# +26000# +Two-Handed Spear made of the Ivory of a Mammoth. It is very hard to be processed due to its strength, but its sharp end makes it perfect for stabbing. +-------------------------- +AGI +2 +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Enables the use of Level 5 Spear Stab. +-------------------------- +Random chance to auto-cast Level 1 Critical Wound when dealing physical damage. +-------------------------- +Type: Two-Handed Spear +Attack: 160 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Transcendent Swordman classes +# +26001# +A metallic lance made of oridecon created for experienced adventurers. +-------------------------- +Increases damage of Hundred Spear and Over Brand by 10%. +-------------------------- +For each Refine Level: +ATK +9 +-------------------------- +For each 10 Base Level: +ATK +8 (Applies up to Base Level 150) +-------------------------- +Type: Two-Handed Spear +Attack: 125 +Weight: 0 +Weapon Level: 3 +Enchantable: Yes +Enchanter: [Jumping Enchant Specialist]prontera,151,187,0,100,0,0 +-------------------------- +Requirement: +Base Level 100 +Rune Knight and Royal Guard +# +26002# +A legendary spear owned by the tragic soldier, Longinus. +-------------------------- +Increases Physical Damage against enemies of Demi-Human and Angel race by 10%. +-------------------------- +Type: Two-Handed Spear +Attack: 180 +Weight: 250 +Element: Shadow +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 48 +Swordman classes +# +26003# +A weapon dyed in the dark made by those who have left the world in the battlefield. +Although it is a two-handed weapon, it has a high defense against human races. +-------------------------- +Increases Physical Damage against enemies in Demi-Human race by 40%. +-------------------------- +Decreases physical damage taken form Demi-Human race by 10%. +-------------------------- +Refine Level +5: +Increases Physical Damage against enemies in Demi-Human race by additional 30%. +Decreases damage taken from Demi-Human race by additional 10%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies in Demi-Human race by additional 30% +Decreases damage taken from Demi-Human race by additional 10%. +Slaughter Lv2 +-------------------------- +Refine Level +9: +Increases damage of Banishing Point and Hundred Spear by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's. +-------------------------- +Type: Two-Handed Spear +Attack: 220 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +3rd Swordsman classes +# +26004# +A weapon of unknown origin with the magical power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +MATK +230 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Baphomet Card: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Type: Two-Handed Spear +Attack: 200 +Weight: 350 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +3rd Swordsman classes +# +26005# +A Diva Lance that has mutated under the influence of the power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +Attack Range: 5 cells +-------------------------- +MATK +230 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: Two-Handed Spear +Attack: 200 +Weight: 350 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +3rd Swordsman classes +# +26006# +Lance imbued with vicious mind. +-------------------------- +For each Refine Level: +ATK +1 +-------------------------- +Type: Two-Handed Spear +Attack: 150 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +3rd Swordsman classes +# +26007# +The creator of this formidable Two-Handed Spear sacrificed his own life to forge it, resulting in a curse that will try to dominate the wearer's soul. +-------------------------- +Increases Physical Damage against enemies of Shadow element, Demon and Undead race by 20%. +-------------------------- +Decreases damage taken from Shadow element, Demon and Undead race by 10%. +-------------------------- +For each 2 Refine Levels: +Increases Physical Damage against enemies of Shadow element, Demon and Undead race by additional 3%. +Decreases damage taken from Shadow element, Demon and Undead race by additional 3%. +Restores 1 SP when defeating target with melee physical attacks. +-------------------------- +Gains 50 HP when defeating target with melee physical attacks. +-------------------------- +Random chance to inflict Confuse status on wielder when dealing physical damage. +-------------------------- +When equipped with Illusion Shoes: +Increases Attack Speed (Decreases After Attack Delay by 8%). + +Refine Level of Illusion Spectral Spear and Illusion Shoes each is +7 or higher: +Increases damage of Banishing Point by 20%. + +Total Refine Level of entire set at least +18: +Increases Ranged Physical Damage by 10%. + +Total Refine Level of entire set at least +22: +Increases damage of Banishing Point by 30%. +-------------------------- +Type: Two-Handed Spear +Attack: 240 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 99 +Swordman classes +# +26008# +Glaive with the strength to hold the power of Neve. +-------------------------- +MATK +110 +-------------------------- +Base Level at least 175: +ATK +5%, MATK +5% +-------------------------- +When equipped with Neev Barrette: +For each 10 base STR: +ATK +1% + +For each 10 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 1%). + +For each 10 base VIT: +MaxHP +1% + +For each 10 base INT: +MATK +20 + +For each 10 base DEX: +Decreases Variable Casting Time by 1%. + +For each 10 base LUK: +Critical +1 + +For each Refine Level of Neev Glaive: +ATK +20, MATK +20 +-------------------------- +Type: Two-Handed Spear +Attack: 150 +Weight: 350 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Royal Guard +# +26015# +Lance specially made for beginner royal guards. +It will show it's true ability when equipped together with Beginner Armor set. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +7: +Increases damage of Overbrand by 15%. +-------------------------- +When equipped with Beginner's Hat, Beginner's Suit, Beginner's Manteau, Beginner's Boots and Beginner's Ring: +For each 10 Base Level: +ATK +3 (up to Base Level 150) +ASPD +1 +ATK +5% +-------------------------- +Type: Two-Handed Spear +Attack: 170 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Royal Guard +# +26016# +A white lance used by honorable knight. +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +ATK +5% +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all monsters by 15%. +-------------------------- +Type: Two-Handed Spear +Attack: 205 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 175 +Rune Knight and Royal Guard +# +26021# +A weapon that has been mutated by receiving the magical power of a stranger. +Even if they look the same, their performance is different. +-------------------------- +MATK +230 +-------------------------- +Decreases damage taken from Players by 30%. +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by 2%. +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by 5%. +-------------------------- +Refine Level +9: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Spear +Attack: 200 +Weight: 350 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +3rd Swordsman classes +# +26100# +A Foxtail made by the Eden Group. +-------------------------- +DEX +4, INT +4 +MATK +165 +-------------------------- +Increases Ranged Physical Damage by 6%. +-------------------------- +Type: One-Handed Staff +Attack: 135 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Summoner (Doram) +# +26101# +A Foxtail made by the Eden Group for an experienced wielder. +-------------------------- +DEX +5, INT +5 +MATK +195 +-------------------------- +Increases Ranged Physical Damage by 7%. +-------------------------- +Type: One-Handed Staff +Attack: 150 +Weight: 0 +Weapon Level: 3 +Refineable: No +Can be enchanted by: +Weapons Expert BKmoc_para01,112,79,0,100,0,0 +-------------------------- +Requirement: +Base Level 60 +Summoner (Doram) +# +26102# +A cane with the power of the earth. +It is said that the original performance can be demonstrated by regaining the power of Earth. +-------------------------- +MATK +145 +-------------------------- +Refine Level +7: +Increases Magical Damage against monsters of Brute and Plant race by 10%. +Increases Magical Damage against monsters of Wind and Earth elemental by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage against monsters of Brute and Plant race by additional 15%. +Increases Magical Damage against monsters of Wind and Earth elemental by additional 15%. +-------------------------- +When equipped with Warrior Ring: +Increases Magical Damage against monsters of Brute and Plant race by additional 20%. +Increases Magical Damage against monsters of Wind and Earth elemental by additional 20%. +-------------------------- +Type: One-Handed Staff +Attack: 160 +Weight: 100 +Element: Earth +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Novice, Acolyte, Magician and Soul Linker +# +26103# +Weapons rented from rental machines. +It disappears after a certain period of time. +-------------------------- +MATK +140 +-------------------------- +Decreases Variable Casting Time of Holy Light, Turn Undead, Magnus Exorcismus by 25%. +-------------------------- +When equipped with Shoes of Tribunal: +For each Level of Oratio: +Decreases Variable Casting Time of Adoramus and Judex by 5%. + +For the highest Level of either Clearance, Lauda Agnus or Lauda Ramus: +Increases damage dealt with Adoramus by 10% per skill Level. + +Refine Level of Rental Holy Stick is +7: +Increases Magical Damage against monsters of Undead and Demon race by 30%. +Increases Magical Damage against monsters of Undead and Shadow elemental by 30%. + +Refine Level of Rental Holy Stick is +9: +Increases damage dealt with Adoramus by 20%. +Increases Magical Damage against monsters of Undead and Demon race by additional 20%. +Increases Magical Damage against monsters of Undead and Shadow elemental by additional 20%. +-------------------------- +Can only be sold to NPC's. +-------------------------- +Type: One-Handed Staff +Attack: 50 +Weight: 50 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 70 +Priest and Monk classes +# +26104# +A cane with the power of water. +It is said that the original performance can be demonstrated by regaining the power of Water. +-------------------------- +MATK +145 +-------------------------- +Refine Level +7: +Increases Magical Damage against monsters of every monster race except Demon by 10%. +Increases Magical Damage against monsters of Fire elemental by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage against monsters of every monster race except Demon by additional 15%. +Increases Magical Damage against monsters of Fire elemental by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 160 +Weight: 100 +Element: Water +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Novice, Acolyte, Magician and Soul Linker +# +26105# +A weapon of unknown origin with the magical power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +MATK +180 +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by 2%. +-------------------------- +Refine Level +7: +MATK +4% +-------------------------- +Refine Level +9: +MATK +4% +-------------------------- +When compounded with Labyrinth Baphomet Card: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 30 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +3rd Magician and 3rd Acolyte classes +# +26106# +A Diva Wand that has mutated under the influence of the power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +Attack Range: 5 cells +-------------------------- +MATK +180 +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by 2%. +-------------------------- +Refine Level +7: +MATK +4% +-------------------------- +Refine Level +7: +MATK +4% +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of inflicted damage as SP. +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 30 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +3rd Magician and 3rd Acolyte classes +# +26107# +A staff used by elders, It contains the power of miracle. +-------------------------- +MATK +150 +-------------------------- +Increases Healing skills effectiveness by 10%. +-------------------------- +Refine Level +7: +Increases Healing skills effectiveness by 5%. +-------------------------- +Refine Level +9: +Increases Healing skills effectiveness by 10%. +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Archbishop and Sura +# +26108# +A one-handed cane that contains evil thoughts. +-------------------------- +MATK +100 +-------------------------- +For each Refine Level: +MATK +1 +-------------------------- +Type: One-Handed Staff +Attack: 40 +Weight: 30 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Super Novice, 3rd Magician classes and 3rd Acolyte classes +# +26109# +A short, simply designed staff; like a baton. A jewel, with the power of justice, is set on it. +-------------------------- +INT +3, DEX +2 +MATK +180 +-------------------------- +When Dragonology is mastered: +MATK +5% +Decreases SP Consumption by 15%. + +For each 3 Refine Levels: +MATK +1% +Decreases SP Consumption by 5%. +-------------------------- +When equipped with Illusion Muffler: +Increases damage of Psychic Wave by 10%. + +Refine Level of Illusion Staff of Bordeaux and Illusion Muffler each is +7 or higher: +Increases damage of Earth Grave by 40%. + +Total Refine Level of entire set at least +18: +Increases damage of Neutral and Earth elemental magic attack by 10%. + +Total Refine Level of entire set at least +22: +Increases damage of Water elemental magic attack by 10%. +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 99 +Transcendent Magician +# +26110# +A rod made based of candy cane that used to decorate christmas tree. There is lick mark on top of it. +-------------------------- +INT +2 +MATK +140 +-------------------------- +For each Refine Level: +FLEE +2 +-------------------------- +Refine Level +10: +Perfect Dodge +10 +-------------------------- +Type: One-Handed Staff +Attack: 10 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 99 +Novice, Magician, Acolyte and Soul Linker +# +26111# +Foxtail made of metal with reinforced ability by adding Phracon and Emvertracon to Steel. +-------------------------- +MATK +120 +-------------------------- +For each Refine Level: +ATK +3 +MATK +3 +-------------------------- +Base Level at least 20: +For each 10 Base Level: +ATK +3, MATK +3 (Up to Base Level 120) +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 120 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Summoner (Doram) +# +26112# +When equipped with Enhanced Time Keeper Armor, will makes wearer's body more agile. +-------------------------- +Indestructible in battle +-------------------------- +MATK +220 +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +For every 10 Base Level: +ATK +3, MATK +3 (Up to Base Level 160). +-------------------------- +Refine Level +7: +For each Level of Picky Peck: +Decreases After Skill Delay by 2%. + +For each Level of Silvervine Stem Spear: +Decreases Variable Casting Time by 2%. +-------------------------- +When equipped with Enhanced Time Keeper Hat, Enhanced Time Keeper Robe, nhanced Time Keeper Manteau, Enhanced Time Keeper Boots: +ASPD +2, +MaxHP and MaxSP +10% + +For every 10 Base VIT: +Decreases damage taken from Neutral elemental attacks by 3%. +(up to Base VIT 100) + +For every 10 Base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +(up to Base AGI 100) + +For every 10 Base DEX: +HIT +3 +(up to Base DEX 100) + +For every 10 Base LUK: +Critical +3 +(up to Base LUK 100) +-------------------------- +Type: One-Handed Staff +Attack: 220 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +26113# +A cane with the power of fire. +It is said that the original performance can be exhibited by regaining the power of \ +. +-------------------------- +MATK +145 +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Insect and Demi-Human race, except Players, by 10%. +Increases Physical Damage against enemies of Water and Earth elemental by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Insect and Demi-Human race, except Players, by additional 15%. +Increases Physical Damage against enemies of Water and Earth elemental by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 160 +Weight: 100 +Element: Fire +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Novice, Magician, Acolyte and Soul Linker classes +# +26118# +An old cane used by Ancient Heroes. +It looks old but has hidden magic, it resonates with Ancient Hero's Boots. +-------------------------- +MATK +155 +-------------------------- +Indestructible in battle +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Earth Grave by 12%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Decreases Psychic Wave skill cooldown by 1 second. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase INT by 20 and MATK by 15% for 7 sec when dealing magical damage. +-------------------------- +Type: One-Handed Staff +Attack: 40 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +26119# +Staff specially made for beginner sorcerer. +It will show it's true ability when equipped together with Beginner Armor set. +-------------------------- +Indestructible in battle +-------------------------- +MATK +130 +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +7: +Increases damage of Psychic Wave by 15%. +-------------------------- +When equipped with Beginner's Hat, Beginner's Suit, Beginner's Manteau, Beginner's Boots and Beginner's Ring: + +For each 10 Base Level: +MATK +3 (up to Base Level 150) +Decreases Variable Casting Time by additional 10%. +Increases Magical Damage with Neutral element by 5%. +-------------------------- +Type: One-Handed Staff +Attack: 0 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +26120# +Foxtail for beginner summoners who have reached level 100. +It will show its true ability when equipped together with Beginner armor set. +-------------------------- +Indestructible in battle +-------------------------- +MATK +130 +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +7: +Increases damage of Catnip Meteor by 15%. +-------------------------- +When equipped with Beginner's Hat, Beginner's Suit, Beginner's Manteau, Beginner's Boots and Beginner's Ring: +For each 10 Base Level: +MATK +3 (up to Base Level 150) +Decreases Variable Casting Time by additional 10%. +MATK +5% +-------------------------- +Type: One-Handed Staff +Attack: 150 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +26124# +A cat jar cane that makes you happy just by looking at a wealth of cat jars. +-------------------------- +MATK +175 +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by 5%. +-------------------------- +Refine Level +7: +Increases Healing skills effectiveness by additional 20%. +-------------------------- +Refine Level +8: +Decreases Variable Casting Time by 10%. +Decreases After Skill Delay by 10%. +Increases Healing skills effectiveness by additional 30%. +-------------------------- +Type: One-Handed Staff +Attack: 130 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +26125# +It's a cool foxtail that is so long that it can catch everyone's attention. +-------------------------- +MATK +110 +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by 2%. +-------------------------- +Refine Level +7: +Increases Healing skills effectiveness by additional 10%. +-------------------------- +Refine Level +8: +Decreases Variable Casting Time by 10%. +Increases Healing skills effectiveness by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 80 +Weight: 40 +Weapon Level: 2 +-------------------------- +Requirement: +Summoner (Doram) +# +26126# +It's a foxtail with a sitting dragonfly. +Even if I shake it for some reason, it doesn't try to fly. +-------------------------- +MATK +120 +-------------------------- +For each Refine Level: +MATK +2 +-------------------------- +Refine Level +7: +MATK +15 +-------------------------- +Refine Level +8: +MATK +30 +Decreases Variable Casting Time by 5%. +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 30 +Weapon Level: 2 +-------------------------- +Requirement: +Summoner (Doram) +# +26127# +It's a very big foxtail that you can hold with one hand. +The weight is not odd either. +-------------------------- +For each Refine Level: +ATK +2 +-------------------------- +Refine Level +7: +ATK +30 +-------------------------- +Refine Level +8: +ATK +40 +Decreases Variable Casting Time by 5%. +-------------------------- +Type: One-Handed Staff +Attack: 130 +Weight: 40 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +26129# +It's a foxtail that has become hard because of the magical power of the dragonfly which is sitting on it. +-------------------------- +MATK +140 +-------------------------- +For each Refine Level: +MATK +4 +-------------------------- +Refine Level +7: +MATK +30 +-------------------------- +Refine Level +8: +MATK +40 +Decreases Variable Casting Time by 5%. +-------------------------- +Type: One-Handed Staff +Attack: 80 +Weight: 40 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +26130# +It's a foxtail that has been completely integrated with the dragonfly. +-------------------------- +MATK +165 +-------------------------- +For each Refine Level: +MATK +5 +-------------------------- +Refine Level +7: +MATK +5% +-------------------------- +Refine Level +8: +MATK +10% +Decreases Variable Casting Time by 10%. +-------------------------- +Type: One-Handed Staff +Attack: 110 +Weight: 40 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +26131# +It's a foxtail that you can feel the strange magical synergy with the dragonfly. +-------------------------- +MATK +180 +-------------------------- +For each Refine Level: +MATK +6 +INT +1 +-------------------------- +Refine Level +7: +MATK +10% +-------------------------- +Refine Level +8: +MATK +20% +Decreases Variable Casting Time by 10%. +Decreases After Skill Delay by 10%. +-------------------------- +Type: One-Handed Staff +Attack: 120 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +26132# +A yellow foxtail with a sitting dragonfly. +-------------------------- +MATK +180 +-------------------------- +Increases Magical Damage against Players by 25%. +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by 10%. +-------------------------- +Refine Level +7: +Increases Magical Damage against Players by additional 15%. +-------------------------- +Refine Level +8: +Increases Magical Damage against Players by additional 15%. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: One-Handed Staff +Attack: 120 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +26133# +A model of a foxtail made of plastic. +-------------------------- +For each Refine Level: +ATK +2 +-------------------------- +Refine Level +7: +ATK +15 +-------------------------- +Refine Level +8: +ATK +30 +Decreases Variable Casting Time by 5%. +-------------------------- +Type: One-Handed Staff +Attack: 120 +Weight: 30 +Weapon Level: 2 +-------------------------- +Requirement: +Summoner (Doram) +# +26134# +A delicately made model of a foxtail. +-------------------------- +For each Refine Level: +ATK +5 +-------------------------- +Refine Level +7: +ATK +5% +-------------------------- +Refine Level +8: +ATK +10% +Decreases Variable Casting Time by 10%. +-------------------------- +Type: One-Handed Staff +Attack: 160 +Weight: 40 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +26135# +It's a cute foxtail. +Just right for beginners. +-------------------------- +MATK +100 +-------------------------- +HIT +10 +-------------------------- +MaxSP +50 +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: One-Handed Staff +Attack: 80 +Weight: 30 +Weapon Level: 1 +-------------------------- +Requirement: +Summoner (Doram) +# +26136# +A very elaborate model of a foxtail. +-------------------------- +For each Refine Level: +ATK +6 +HIT +1 +-------------------------- +Refine Level +7: +ATK +20% +-------------------------- +Refine Level +8: +ATK +40% +Decreases Variable Casting Time by 10%. +Decreases After Skill Delay by 10%. +-------------------------- +Type: One-Handed Staff +Attack: 180 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +26137# +A very elaborate model of a yellow foxtail. +-------------------------- +Increases Physical Damage against Players by 40%. +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Physical Damage against Players by additional 20%. +-------------------------- +Refine Level +8: +Increases Physical Damage against Players by additional 30%. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: One-Handed Staff +Attack: 180 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +26138# +A Staff which was used by a Flame Ghost. +Contains fire magic. Be careful not to burn yourself while using it. +-------------------------- +Indestructible in battle +-------------------------- +INT +5 +MATK +180 +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +Refine Level +7: +Increases Magical Damage with Fire and Earth element by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Fire and Earth element by additional 10%. +-------------------------- +Type: One-Handed Staff +Attack: 110 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 175 +Magician, Acolyte and Soul Linker classes +# +26139# +A Staff which was used by a Ice Ghost. +Contains water magic. Beware of frostbite while using it. +-------------------------- +Indestructible in battle +-------------------------- +INT +5 +MATK +180 +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +Refine Level +7: +Increases Magical Damage with Water and Holy element by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Water and Holy element by additional 10%. +-------------------------- +Type: One-Handed Staff +Attack: 110 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 175 +Magician, Acolyte and Soul Linker classes +# +26140# +The broom that the witch used looks like a regular broom, but you can feel the magic in a subtle way. +However, it seems that ordinary people cannot ride and fly it. +-------------------------- +Indestructible in battle +-------------------------- +MATK +180 +-------------------------- +Increases Magical Damage against monsters of Formless race by 10%. +Random chance to auto-cast Level 1 Quagmire when recieving damage. +-------------------------- +Refine Level +7: +MATK +35 +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage against monsters of Formless race by additional 10%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 10%. +-------------------------- +[Bonus by Grade] +[Grade D]: S.MATK +2 +[Grade C]: SPL +3, S.MATK +1 +[Grade B]: Variable Casting Time of all skills -5%. +-------------------------- +Type: One-Handed Staff +Attack: 117 +Weight: 30 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Magician and Soul Linker classes +# +26141# +A Wand received from suspicious weapon dealer Brute. +-------------------------- +MATK +180 +-------------------------- +Increases Magical Damage against Players by 25%. +-------------------------- +For each Refine Level: +Ignores magical defense of every race by 5%. +-------------------------- +Refine Level +8: +Increases Magical Damage against Players by additional 20%. +-------------------------- +Refine Level +9: +Increases Magical Damage against Players by additional 10%. +-------------------------- +Refine Level +10: +MaxHP +15% +MaxSP +15% +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's and moved to the storage. +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +3rd Magician classes and 3rd Acolyte classes +# +26143# +A weapon of unknown origin with the magical power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +MATK +180 +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by 2%. +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +MATK +4% +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +MATK +4% +-------------------------- +When compounded with Labyrinth Baphomet Card: +Increases Physical Damage by 10%. +Normal attacks inflicts splash damage. +-------------------------- +Type: One-Handed Staff +Attack: 150 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Summoner (Doram) +# +26144# +A Diva Doxtail that has been mutated under the influence of the power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +Attack Range: 5 cells +-------------------------- +MATK +180 +-------------------------- +When Level 1 Soul Attack is learned: +ATK +20 +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by 2%. +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +MATK +4% +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +MATK +4% +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: One-Handed Staff +Attack: 150 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Summoner (Doram) +# +26149# +A weapon that has been mutated by receiving the magical power of a stranger. +Even if they look the same, their performance is different. +-------------------------- +MATK +180 +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by 2%. +-------------------------- +Refine Level +7: +MATK +5% +Decreases damage taken from Players by 5%. +-------------------------- +Refine Level +9: +MATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 30 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +3rd Magician and 3rd Acolyte classes +# +26150# +A weapon that has been mutated by receiving the magical power of a stranger. +Even if they look the same, their performance is different. +-------------------------- +MATK +180 +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by 2%. +-------------------------- +Refine Level +7: +ATK +5%, MATK +5% +Decreases damage taken from Players by 5%. +-------------------------- +Refine Level +9: +ATK +5%, MATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 150 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +Summoner (Doram) +# +26151# +Staff equipped with a red glowing orb. +-------------------------- +Indestructible in battle +-------------------------- +MATK +175 +-------------------------- +Increases Magical Damage against Neutral and Earth elemental by 5%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 7%. +-------------------------- +Refine Level +9: +Random chance to increase Magical Damage with Fire element by 30% for 10 seconds when dealing magical damage. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 10%. +-------------------------- +Type: One-Handed Staff +Attack: 80 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Novice, Magician, Acolyte and Soul Linker classes +# +26152# +A cane that contains the power of cats that use hypnosis, which is rare in the world. +-------------------------- +Attack Range: 5 cells +-------------------------- +MATK +150 +-------------------------- +When Level 5 Spell Fist is learned: +For each Refine Level: +Increases damage of Fire Bolt, Cold Bolt, Lightning Bolt and Earth Spike by 3%. +-------------------------- +Refine Level +10: +Enables the use of Level 3 Double Attack. +-------------------------- +When equipped with Imp Card: +Increases Fixed Casting Time of Fire Bolt by 10 seconds. +-------------------------- +When equipped with Siroma Card: +Increases Fixed Casting Time of Cold Bolt by 10 seconds. +-------------------------- +When equipped with Elvira Card: +Increases Fixed Casting Time of Lightning Bolt by 10 seconds. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Staff +Attack: 70 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Archbishop and Sorcerer +# +26154# +It was used by a Soul Reaper with considerable spiritual power. +It is said that the sounds of the spirits are heard in the hands. +It resonates with Ancient Hero's Boots. +-------------------------- +MATK +160 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +MaxSP +2% +-------------------------- +Refine Level +7: +Increases damage of Espa by 15%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Increases damage of Eswhoo by 20%. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase INT by 20 and MATK by 15% for 7 sec when dealing magical damage. +-------------------------- +Type: One-Handed Staff +Attack: 70 +Weight: 110 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Soul Reaper +# +26155# +Mysterious puppy grass where you hear a nipple every time you shake. +It resonates with Ancient Hero's Boots. +-------------------------- +MATK +300 +-------------------------- +For each 2 Refine Levels: +ATK +10 +MATK +10 +-------------------------- +For each 3 Refine Levels: +ATK +2% +MATK +2% +-------------------------- +Refine Level +7: +Increases damage of Lunatic Carrot Beat and Silvervine Stem Spear by 15%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10% +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Increases damage of Picky Peck and Catnip Meteor by 20%. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase LUK by 20, ATK and MATK by 15% for 7 sec when dealing physical or magical damage. +-------------------------- +Type: One-Handed Staff +Attack: 300 +Weight: 110 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +26156# +An old cane used by ancient heroes. +-------------------------- +MATK +155 +-------------------------- +Indestructible in battle +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Earth Grave by 12%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Decreases Psychic Wave skill cooldown by 1 second. +-------------------------- +Type: One-Handed Staff +Attack: 40 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 99 +Sorcerer +# +26158# +This staff is great for doing great magic damage. +-------------------------- +MATK +180 +-------------------------- +Indestructible in battle +-------------------------- +Increases Magical Damage with Fire and Shadow element by 5%. +-------------------------- +For each Refine Level: +MATK +4 +-------------------------- +Refine Level +9: +Increases damage of Hell Inferno by 30%. +-------------------------- +Refine Level +11: +Decreases Crimson Rock skill cooldown by 1 second. +-------------------------- +Type: One-Handed Staff +Attack: 100 +Weight: 70 +Weapon Level: 4 +Refineable: +-------------------------- +Requirement: +Base Level 170 +Warlock +# +26159# +Wand that allows you to handle the supernatural magical powers more proficiently. +-------------------------- +MATK +180 +-------------------------- +Indestructible in battle +-------------------------- +Increases Magical Damage with Neutral and Wind element by 5%. +-------------------------- +For each Refine Level: +MATK +4 +-------------------------- +Refine Level +9: +Increases damage of Psychic Wave by 30%. +-------------------------- +Refine Level +11: +Decreases Varetyr Spear skill cooldown by 2 seconds. +-------------------------- +Type: One-Handed Staff +Attack: 120 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Sorcerer +# +26160# +Wand that allows you to handle the supernatural magical powers more proficiently. +-------------------------- +MATK +180 +-------------------------- +Indestructible in battle +-------------------------- +Increases Magical Damage with Water and Earth element by 5%. +-------------------------- +For each Refine Level: +MATK +4 +-------------------------- +Refine Level +9: +Increases damage of Diamond Dust and Earth Grave by 30%. +-------------------------- +Refine Level +11: +Increases damage of Diamond Dust and Earth Grave by additional 20%. +-------------------------- +Type: One-Handed Staff +Attack: 120 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Sorcerer +# +26161# +A staff with the power to judge and penitrate those who have sinned. +-------------------------- +MATK +175 +-------------------------- +Indestructible in battle +-------------------------- +Increases Magical Damage with Holy element by 5%. +-------------------------- +For each Refine Level: +MATK +4 +-------------------------- +Refine Level +9: +Increases damage of Magnus Exorcismus and Judex by 30%. +-------------------------- +Refine Level +11: +Increases damage of Magnus Exorcismus by additional 20%. +-------------------------- +Type: One-Handed Staff +Attack: 100 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Archbishop +# +26162# +Welding tool using magic power. +The ability to amplify the magic is excellent, it is also used for combat. +-------------------------- +Indestructible in battle +-------------------------- +MATK +200 +-------------------------- +Increases Magical Damage with Neutral, Water and Fire element by 7%. +-------------------------- +Refine Level +7: +MATK +40 +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Neutral, Water and Fire element by additional 8%. +Magical attacks have a chance to increase magical damage against all size enemies by 15% for 10 seconds. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 20%. +-------------------------- +Type: One-Handed Staff +Attack: 160 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Magician and Soul Linker classes +# +26163# +A mysterious cat with rainbow-colored ears. +With a single swing, seven colors of magic will pop out according to the user's ability. +-------------------------- +MATK +160 +-------------------------- +Physical attacks have a chance to auto-cast either Level 4 Fire Bolt, Cold Bolt, Lightning Bolt or Earth Spike. +-------------------------- +For each Refine Level: +ATK +10 +MATK +10 +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +When equipped with Lunar Rainbow: +For each Refine Level of Lunar Rainbow: +ATK +15, +MATK +15, +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +When compounded with Bloody Knight Card: +Physical attacks have a chance to auto-cast Level 3 Hell Inferno. + +For each Refine Level of Rainbow-colored Cat Toy: +Increases damage of Hell Inferno by 10%. +-------------------------- +When compounded with Stormy Knight Card and Level 1 Spirit Marble is learned: +Physical attacks have a chance to auto-cast Level 5 Diamond Dust. + +For each Refine Level of Rainbow-colored Cat Toy: +Increases damage of Diamond Dust by 10%. +Increases Magical Damage with Water element by 5. +-------------------------- +Type: One-Handed Staff +Attack: 110 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +26164# +A foxtail-shaped machine made of numerous wires. +It seems that the use of micro-fine wires hits each other and dissipates static electricity. +-------------------------- +Indestructible in battle +-------------------------- +MATK +350 +MATK +5% +-------------------------- +Refine Level +7: +Increases damage of Silvervine Stem Spear by 20%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +Increases Magical Damage with Earth, Fire, Water, Ghost and Neutral element by 15%. +-------------------------- +Refine Level +11: +Increases damage of Catnip Meteor by 30%. +-------------------------- +Type: One-Handed Staff +Attack: 250 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Summoner (Doram) +# +26165# +A ceremonial staff used by the Glastheim Clerics. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +Indestructible in battle +-------------------------- +MATK +170 +MATK +5% +-------------------------- +For each Refine Level: +MATK +4 +-------------------------- +Refine Level +9: +Increases damage of Adoramus by 20%. +-------------------------- +Refine Level +11: +Increases Magical Damage against monsters of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +MATK +30 +Magical attacks have a chance to increase Magical Damage with Holy element by 20% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Magical Damage against Holy and Undead elemental by 20%. +-------------------------- +Type: One-Handed Staff +Attack: 100 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Archbishop +# +26166# +A ceremonial staff used by the Glastheim Mages. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +Indestructible in battle +-------------------------- +MATK +180 +-------------------------- +Increases Magical Damage with Fire element by 5%. +-------------------------- +For each Refine Level: +MATK +4 +-------------------------- +Refine Level +9: +Increases damage of Hell Inferno and Crimson Rock by 20%. +-------------------------- +Refine Level +11: +Increases Magical Damage against monsters of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +MATK +30 +Magical attacks have a chance to increase Magical Damage with Fire and Shadow element by 10% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Magical Damage against Holy and Undead elemental by 20%. +-------------------------- +Type: Two-Handed Staff +Attack: 100 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Warlock +# +26172# +A mysterious foxtail found in the Glastheim Castle. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +Indestructible in battle +-------------------------- +MATK +350 +MATK +5% +-------------------------- +For each Refine Level: +ATK +4 +MATK +4 +-------------------------- +Refine Level +9: +Increases damage of Catnip Meteor and Picky Peck by 20%. +Decreases After Skill Delay by 12%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +ATK +30, MATK +30 +Physical attacks have a chance to increase Ranged Physical Damage by additional 10% for 10 seconds. +Magical attacks have a chance to increase MATK by additional 10% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Damage against Holy and Undead elemental by 20%. +-------------------------- +Type: Staff +Attack: 275 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Summoner (Doram) +# +26200# +A rope with a sense of free will. Looks old and worn, but still can be used. +-------------------------- +For each Level of Dancing Lesson: +Increases Attack Speed (Decreases After Attack Delay). +-------------------------- +Refine Level +7: +For each Level of Dancing Lesson: +ATK +5 +-------------------------- +Refine Level +9: +ASPD +1 +-------------------------- +Type: Whip +Attack: 140 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Wanderer +# +26201# +A weapon of unknown origin with the magical power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +MATK +120 +-------------------------- +Refine Level +7: +Increases damage of Arrow Vulcan by 150%. +-------------------------- +Refine Level +9: +Increases damage of Arrow Vulcan by additional 50%. +-------------------------- +When compounded with Labyrinth Baphomet Card: +Increases Physical Damage by 10%. +Normal attacks inflicts splash damage. +-------------------------- +Type: Whip +Attack: 150 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Wanderer +# +26202# +A Diva Blade Whip that has mutated under the influence of the power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +Attack Range: 5 cells +-------------------------- +MATK +120 +-------------------------- +Refine Level +7: +Increases damage of Arrow Vulcan by 150%. +-------------------------- +Refine Level +9: +Increases damage of Arrow Vulcan by additional 50%. +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: Whip +Attack: 150 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Wanderer +# +26203# +Whip filled with vicious mind +-------------------------- +MATK +100 +-------------------------- +For each Refine Level: +MATK +1 +-------------------------- +Type: Whip +Attack: 100 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Wanderer +# +26204# +A rope where you can feel the power of nature. +-------------------------- +MATK +120 +-------------------------- +For each Refine Level: +VIT +1, MaxHP +1% +-------------------------- +Refine Level +7: +Increases damage of Arrow Vulcan by 150%. +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Refine Level +9: +Increases damage of Arrow Vulcan by additional 50%. +Decreases damage taken from Demi-Human race by additional 5%. +-------------------------- +When equipped with Frontier Boots: +Decreases damage taken from Demi-Human race by 10%. +Decreases damage taken from Doram Players by 20%. + +Refine Level of Frontier Boots is +7 or higher: + +Refine Level of Rope of Nature is +7 or higher: +MaxHP +10%, MaxSP +10% + +Refine Level of Rope of Nature is +9 or higher: +Decreases damage taken from Normal class by 10%. +-------------------------- +Type: Whip +Attack: 140 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Wanderer +# +26206# +A whip received from suspicious weapon dealer Brute. +-------------------------- +Increases Physical Damage against Players by 80%. +-------------------------- +For each Refine Level: +Ignores physical defense of every race by 5%. +-------------------------- +Refine Level +8: +Increases Magical Damage against Players by additional 35%. +-------------------------- +Refine Level +9: +Increases Magical Damage against Players by additional 20%. +-------------------------- +Refine Level +10: +MaxHP +15% +MaxSP +15% +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's and moved to the storage. +-------------------------- +Type: Whip +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Wanderer +# +26212# +Whip with a small heart at the end. +-------------------------- +MATK +190 +-------------------------- +Increases Magical Damage with Neutral element by 10%. +-------------------------- +For each Refine Level: +MATK +4 +-------------------------- +Refine Level +9: +Increases damage of Metallic Sound by 30%. +-------------------------- +Refine Level +11: +Decreases Metallic Sound skill cooldown by 2 seconds. +-------------------------- +Type: Whip +Attack: 100 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Wanderer +# +26213# +Whip decorated with a red ribbon. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +9: +Decreases Severe Rainstorm skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Decreases Severe Rainstorm SP Consumption by 20%. +-------------------------- +Type: Whip +Attack: 180 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Wanderer +# +26215# +It is said that the string is used for lifesaving in the Einbech mine +but also used for other purposes as well. +-------------------------- +Increases Ranged Physical Damage by 10%. +-------------------------- +Increases damage of Severe Rainstorm by 10%. +-------------------------- +Refine Level +7: +Atk +40 +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Severe Rainstorm by additional 15%. +Physical attacks have a chance to increase physical damage against all size enemies by 15% for 10 seconds. +-------------------------- +Refine Level +11: +Decreases Severe Rainstorm skill cooldown by 2 seconds. +Decreases After Skill Delay by 20%. +-------------------------- +Type: Whip +Attack: 200 +Weight: 140 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Wanderer +# +26216# +A ceremonial whip used by the Glastheim Dancers. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +Indestructible in battle +-------------------------- +MATK +180 +-------------------------- +Increases Magical Damage with Neutral element by 5%. +-------------------------- +For each Refine Level: +MATK +4 +-------------------------- +Refine Level +9: +Increases damage of Reverberation and Metallic Sound by 20%. +Decreases Metallic Sound skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases Magical Damage against monsters of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +MATK +30 +Magical attacks have a chance to increase Magical Damage with Neutral element by additional 10% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Magical Damage against Holy and Undead elemental by 20%. +-------------------------- +Type: Whip +Attack: 100 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Wanderer +# +27000# +Increases Magical Damage against monsters of Undead race by 10%. +-------------------------- +When equipped with Teddy Bear Card: +Increases Magical Damage against monsters of Undead race by additional 5%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27001# +Increases Healing skills effectiveness by 10% +-------------------------- +Refine Level +9: +MaxHP +10% , MaxSP +10% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27002# +Random chance to drop any Gift Box when defeating monsters. +-------------------------- +When equipped with either Orc Archer Card, Gargoyle Card, Stem Worm Card, Sleeper Card, Cloud Hermit Card, Jing Guai Card, Mimic Card, Wraith Card or Raydric Archer Card: +Increases the drop chance of the items gained from these cards. +-------------------------- +When equipped with Happy Balloon: +Base LUK at least 77: +Random chance a defeated monster will drop Happy Box. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27003# +Random chance to inflict Stone Curse status on your enemy when recieving magical damage. +-------------------------- +When equipped with Red Lantern: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Recover 1 SP when recieving damage. +-------------------------- +When equipped with Ghost without Present Card: +Increases the chance to inflict Stone Curse and Confusion status on your enemy when recieving magical damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27004# +Random chance to inflict Confusion status on your enemy when recieving magical damage. +-------------------------- +When equipped with Factory Guard Soul Card: +Increases the chance to inflict Stone Curse and Confusion status on your enemy when recieving magical damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27005# +Decreases damage taken from Ghost and Neutral elemental attacks by 10%. +-------------------------- +Refine Level +9: +Decreases damage taken from Ghost and Neutral elemental attacks by additional 10%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27006# +Increases Physical Damage against enemies of Undead race by 20%. +-------------------------- +When equipped with Teddy Bear Card: +Increases Physical Damage against enemies of Undead race by additional 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27007# +MATK +10% +-------------------------- +Random chance to inflict Fatal Wound status on enemies in 5x5 cells around an enemy when recieving magical damage. +-------------------------- +When equipped with Evil Thread Glove: +MaxHP +500, MaxSP +250 +Random chance to auto-cast Level 5 Dark Strike on the enemy when recieving physical damage. +-------------------------- +When equipped with Celine Ribbon: +For each Refine Level of Celine Ribbon: +MATK +7 +-------------------------- +When equipped with Noble Cross: +For each Refine Level of Noble Cross: +LUK +3 +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27008# +ATK +6% +-------------------------- +MATK +6% +-------------------------- +Each 6 seconds lost 666 HP and 66 SP. +-------------------------- +Drain 6666 HP and 666 SP as the Armor is unequipped. +-------------------------- +For each Refine Level of equipped Armor: +ATK +1% +MATK +1% +-------------------------- +Refine Level of equipped Armor is +9 or higher: +Prevents Frozen status. +-------------------------- +When equipped with Slaughter Evil Eye Card: +ATK +15% +MATK +15% +Decreases damage taken from Shadow elemental attacks by 50%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27009# +HIT +50 +-------------------------- +ATK +10% +-------------------------- +Random chance to inflict Sleep, Stone Curse or Curse status on enemies in 5x5 cells around yourself when recieving physical damage. +-------------------------- +When equipped with Slaughter Evil Eye Card: +ATK +15% +MATK +15% +Decreases damage taken from Shadow elemental attacks by 50%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27010# +ATK +10% +-------------------------- +When compounded on either Two-Handed Sword, Two-Handed Spear or Two-Handed Axe class weapons: +ATK +5% +-------------------------- +Refine Level of equipped Two-Handed Sword, Two-Handed Spear or Two-Handed Axe is +10 or higher: +ATK +10% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27011# +For each Refine Level: +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +9: +ATK +4% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27012# +MaxHP +8% +-------------------------- +When equipped by Mechanic: +Decreases damage taken from Ranged Physical Damage by 30%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27013# +Increases damage of Vulcan Arm by 10%. +-------------------------- +Refine Level +10: +Increases damage of Vulcan Arm by 20%. +-------------------------- +When equipped with Kick Step Card: +Nullifies Mado Gear's Fuel Consumption. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27014# +MaxHP +2% +Adds a chance of restoring HP by 1000 every second for 5 second when wearer attacked by physical or magical attack. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27015# +Increases HP and SP Recovery Rate by 25%. +Gains HP by 30 and SP by 3each time a monster is killed. +-------------------------- +Refine Level +7: +Increases restoration gained of HP by 10 and SP by 1. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27016# +Critical +30 when attacking Formless monster. +-------------------------- +When equipped with Repair Robot Turbo Card: +Increases Critical Damage by 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27017# +Decreases Physical and Magical Damage taken from Formless race by 10%. +-------------------------- +Refine Level +7: +Decreases damage taken by 5%. +Random chance a defeated monster will drop various Accessories. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27018# +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Base Level at least 90: +Increases Attack Speed (Decreases After Attack Delay by additional 1%). +-------------------------- +Base Level at least 120: +Increases Attack Speed (Decreases After Attack Delay by additional 1%). +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27019# +HIT +1 +-------------------------- +Base Level at least 90: +HIT +1 +-------------------------- +Base Level at least 120: +HIT +1 +-------------------------- +When equipped with GC109 Card: +Random chance to increase ASPD by 5 for 5 seconds when dealing physical attacks. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27020# +ATK +10% +Random chance to Reduces enemy's SP by 40% in 15x15 cells around wearer when dealing melee physical attacks. +-------------------------- +For each 3 Refine Levels: +Increases the trigger rate. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27021# +Increases damage of Boost Knuckle by 25%. +-------------------------- +Refine Level +7: +Increases damage of Boost Knuckle by 5%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27022# +Decreases damage taken from Fire and Shadow elemental attacks by 20%. +-------------------------- +Refine Level +7: +Decreases damage taken from Ranged Physical Damage by 10%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27023# +Increases recovery amount gained from Milk by 900%. +-------------------------- +For each Refine Level: +VIT +1 +INT +1 +-------------------------- +Refine Level +9: +VIT +5 +INT +5 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27024# +Perfect Dodge +1 +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27025# +DEF +30 +MDEF +10 +-------------------------- +Random chance to inflict Silence status on attacker when attacked by physical or magical attack. +-------------------------- +When equipped with Guardian Ring of King: +ATK +5% +MATK +5% +Adds a low chance for 7 seconds wearer will be pocessed by Death Lord when dealing Physical or Magical Damages. +When pocessed all physical and magical defense of target will be pierced by 100%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27026# +Decreases Variable Casting Time of Fire Ball by 50%. +Increases damage of Fire Ball by 100%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27027# +DEF +50 +Decreases Physical and Magical Damage taken from Fire elemental by 10%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27028# +Increases Magical Damage against Earth elemental by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage against Earth elemental by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage against Earth elemental by 7%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27029# +Decreases Physical and Magical Damage taken from Fire elemental by 20%. +Increases Physical Damage against enemies of Fire elemental by 5%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27030# +Random chance to inflict Burning status on the target when dealing physical or magical attack. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27031# +ATK +10% +-------------------------- +When compounded on any kind of Diva weapon: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27032# +ATK +10% +-------------------------- +When compounded on any kind of Mirage weapon: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27033# +Random chance to inflict Confuse status on all targets in 11x11 cells when wearer attacked by physical or magical attack. +-------------------------- +When equipped with Immortal Wind Ghost Card: +Decreases damage taken from Neutral elemental attacks by 5%. +Increases the rate of inflicting Confuse status. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27034# +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +For each Refine Level: +Increases Magical Damage with Wind element by 3%. +-------------------------- +When equipped with Immortal Cursed Knight Card: +Decreases damage taken from Neutral elemental attacks by 5%. +Increases the rate of inflicting Confuse status. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27035# +HIT +50 +Ignores physical defense of Boss class by 100%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27036# +ATK +5 +Random chance to inflict Stun status when dealing physical damage. +-------------------------- +For each 20 Base Level: +ATK +3 +Increases trigger rate of inflicting Stun status. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27037# +Increases Ranged Physical Damage by 5%. +-------------------------- +For each 20 Base Level: +Increases Ranged Physical Damage by additional 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27038# +Critical +5 +-------------------------- +For each 20 Base Level: +ATK +5 +Critical +1 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27039# +ATK +12%. +MATK +12%. +-------------------------- +For each 20 Base Level: +ATK +1%. +MATK +1%. +-------------------------- +Each 2 seconds lost 666 HP and 66 SP. +Drain 6666 HP and 666 SP as the armor is unequipped. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27040# +Decreases damage taken from Water elemental attacks by 100%. +Random chance to inflict Frozen status on attacker when receiving physical damage. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27041# +DEX +2 +-------------------------- +Refine Level +9: +MaxHP +10%, MaxSP +10%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27042# +Enables the use of Level 1 Spell Breaker. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27043# +ATK +3% +Decreases damage taken from Fire elemental attacks by 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27044# +MATK +3% +Decreases damage taken from Water elemental attacks by 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27045# +Random chance to absorb 1% of physical damage against target as SP. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27046# +A polycrystalline body that gathers the little blinks of a maiden around the ecliptic. +-------------------------- +MaxHP and MaxSP +4% +-------------------------- +When equipped by Archbishop: +For each Refine Level: +Increases SP Recovery Rateeration by 2% and Healing skills by 2%. +-------------------------- +When compounded on a Virgo Crown: +MaxHP and MaxSP +4% +Increases SP Recovery Rateeration by 50%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27047# +A piece of Virgo stone that fallen from the sky. +-------------------------- +MaxHP +2%, MaxSP +2% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27048# +A large piece of Leo stone that fallen from the sky. +-------------------------- +AGI +2 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +When equipped by Sura: +For each Refine Level: +ATK +4, HIT +2 +-------------------------- +When compounded on a Leo Diadem: +AGI +8 +Increases Attack Speed (Decreases After Attack Delay by additional 5%). +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27049# +A piece of Leo stone that fallen from the sky. +-------------------------- +AGI +1 +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27050# +Decreases damage taken from Dragon and Formless race by 25%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27051# +Decreases damage taken from Angel race and Undead elemental by 25%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27052# +Decreases damage taken from Brute and Fish race monsters by 25%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27053# +Decreases damage taken from Plant and Insect race by 25%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27054# +Decreases damage taken from Demon and Demi-Human race by 25%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27055# +When equipped by Sorcerer: +MaxHP +10% +MATK +10% +-------------------------- +Base Level at least 165: +All Stats +10 +-------------------------- +Refine Level of equipped Garment is +10 or higher: +All Stats +10 +-------------------------- +When equipped with Sorcerer Celia Card: +Random chance to increase INT by 100 and transform into Sorcerer Celia for 5 seconds when recieving magical damage. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27056# +When equipped by Sura: +MaxHP +10% +ATK +10% +-------------------------- +Base Level at least 165: +All Stats +10 +-------------------------- +Refine Level of equipped Garment is +10 or higher: +All Stats +10 +-------------------------- +When equipped with Sura Chen Card: +Random chance to increase STR by 100 and transform into Sura Chen for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27057# +When equipped by Minstrel: +MaxHP +15% +MaxSP +10% +-------------------------- +Base Level at least 165: +All Stats +10 +-------------------------- +Refine Level of equipped Garment is +10 or higher: +All Stats +10 +-------------------------- +When equipped with Minstrel Alphoccio Card: +Random chance to increase DEX by 100 and transform into Minstrel Alphoccio for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27058# +When equipped by Guillotine Cross: +Perfect Dodge +10 +ATK +15% +-------------------------- +Base Level at least 165: +All Stats +10 +-------------------------- +Refine Level of equipped Garment is +10 or higher: +All Stats +10 +-------------------------- +When equipped with Guillotine Cross Eremes Card: +Random chance to increase AGI by 100 and transform into Guillotine Cross Eremes for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27059# +When equipped by Archbishop: +MaxHP +10% +Increases Healing skills effectiveness by 15%. +-------------------------- +Base Level at least 165: +All Stats +10 +-------------------------- +Refine Level of equipped Garment is +10 or higher: +All Stats +10 +-------------------------- +When equipped with Archbishop Margaretha Card: +Random chance to increase Healing skills by 100% and transform into Archbishop Margaretha for 5 seconds when using Heal, Highness Heal or Coluceo Heal. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27060# +When equipped by Ranger: +Critical +10 +Increases Ranged Physical Damage by 15%. +-------------------------- +Base Level at least 165: +All Stats +10 +-------------------------- +Refine Level of equipped Garment is +10 or higher: +All Stats +10 +-------------------------- +When equipped with Ranger Shecil Card: +Random chance to increase DEX by 100 and transform into Ranger Shecil for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27061# +When equipped by Mechanic: +HIT +10 +Increases Ranged Physical Damage by 15%. +-------------------------- +Base Level at least 165: +All Stats +10 +-------------------------- +Refine Level of equipped Garment is +10 or higher: +All Stats +10 +-------------------------- +When equipped with Mechanic Harword Card: +Random chance to increase LUK by 100 and transform into Mechanic Harword for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27062# +When equipped by Warlock: +MDEF +80 +MATK +15% +-------------------------- +Base Level at least 165: +All Stats +10 +-------------------------- +Refine Level of equipped Garment is +10 or higher: +All Stats +10 +-------------------------- +When equipped with Warlock Kathryne Card: +Random chance to increase INT by 100 and transform into Warlock Katrinn for 5 seconds when recieving magical damage. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27063# +When equipped by Rune Knight: +ASPD +2 +ATK +15% +-------------------------- +Base Level at least 165: +All Stats +10 +-------------------------- +Refine Level of equipped Garment is +10 or higher: +All Stats +10 +-------------------------- +When equipped with Rune Knight Seyren Card: +Random chance to increase VIT by 100 and transform into Rune Knight Seyren for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27064# +When equipped by Royal Guard: +DEF +350 +ATK +15% +-------------------------- +Base Level at least 165: +All Stats +10 +-------------------------- +Refine Level of equipped Garment is +10 or higher: +All Stats +10 +-------------------------- +When equipped with Royal Guard Randel Card: +Random chance to increase VIT by 100 and transform into Royal Guard Randel for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27065# +When equipped by Genetic: +FLEE +20 +ATK +15% +-------------------------- +Base Level at least 165: +All Stats +10 +-------------------------- +Refine Level of equipped Garment is +10 or higher: +All Stats +10 +-------------------------- +When equipped with Genetic Flamel Card: +Random chance to increase LUK by 100 and transform into Genetic Flamel for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27066# +When equipped by Shadow Chaser: +ATK +5% +MATK +15 +-------------------------- +Base Level at least 165: +All Stats +10 +-------------------------- +Refine Level of equipped Garment is +10 or higher: +All Stats +10 +-------------------------- +When equipped with Shadow Chaser Gertie Card: +Random chance to increase AGI by 100 and transform into Shadow Chaser Gertie for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27067# +When equipped by Wanderer: +MaxHP +10% +MaxSP +15 +-------------------------- +Base Level at least 165: +All Stats +10 +-------------------------- +Refine Level of equipped Garment is +10 or higher: +All Stats +10 +-------------------------- +When equipped with Wanderer Trentini Card: +Random chance to increase DEX by 100 and transform into Wanderer Trentini for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27068# +Increases damage of Venom Pressure by 90%. +-------------------------- +When equipped with Guillotine Cross Eremes(MVP) Card: +Random chance to increase AGI by 100 and transform into Guillotine Cross Eremes for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27069# +Increases damage of Judex by 50%. +-------------------------- +When equipped with Archbishop Margaretha(MVP) Card: +Random chance to increase Healing skills by 100% and transform into Archbishop Margaretha for 5 seconds when using Heal, Highness Heal or Coluceo Heal. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27070# +Increases damage of Comet by 50%. +-------------------------- +When equipped with Warlock Kathryne(MVP) Card: +Random chance to increase INT by 100 and transform into Warlock Katrinn for 5 seconds when recieving magical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27071# +Increases damage of Cluster Bomb by 100%. +-------------------------- +When equipped with Ranger Shecil(MVP) Card: +Random chance to increase DEX by 100 and transform into Ranger Shecil for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27072# +Increases damage of Magma Eruption by 100%. +-------------------------- +When equipped with Mechanic Harword(MVP) Card: +Random chance to increase LUK by 100 and transform into Mechanic Harword for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27073# +Increases damage of Ignition Break by 50%. +-------------------------- +When equipped with Rune Knight Seyren(MVP) Card: +Random chance to increase VIT by 100 and transform into Rune Knight Seyren for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27074# +Increases damage of Earth Drive by 50%. +-------------------------- +When equipped with Royal Guard Randel(MVP) Card: +Random chance to increase VIT by 100 and transform into Royal Guard Randel for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27075# +Increases damage of Crazy Weed by 50%. +-------------------------- +When equipped with Genetic Flamel(MVP) Card: +Random chance to increase LUK by 100 and transform into Genetic Flamel for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27076# +Increases damage of Cloud Kill by 100%. +-------------------------- +When equipped with Sorcerer Celia(MVP) Card: +Random chance to increase INT by 100 and transform into Sorcerer Celia for 5 seconds when recieving magical damage. +-------------------------- +When equipped with Magical Claus: +MATK +5% +Ignores magic defense of all race by 50%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27077# +Increases damage of Howling of Lion by 50%. +-------------------------- +When equipped with Sura Chen(MVP) Card: +Random chance to increase STR by 100 and transform into Sura Chen for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27078# +Increases damage of Triangle Shot by 70%. +-------------------------- +When equipped with Shadow Chaser Gertie(MVP) Card: +Random chance to increase AGI by 100 and transform into Shadow Chaser Gertie for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27079# +Increases damage of Reverberation by 50%. +-------------------------- +When equipped with Minstrel Alphoccio Card: +ATK +10%, MATK +10% +-------------------------- +When equipped with Wanderer Trentini(MVP) Card: +Random chance to increase DEX by 100 and transform into Wanderer Trentini for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27080# +Increases damage of Reverberation by 50%. +-------------------------- +When equipped with Wanderer Trentini Card: +ATK +10%, MATK +10% +-------------------------- +When equipped with Minstrel Alphoccio(MVP) Card: +Random chance to increase DEX by 100 and transform into Minstrel Alphoccio for 5 seconds when recieving physical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27081# +Enables the use of Level 4 Pressure. +-------------------------- +When equipped with Moonlight Flower Card: +Adds 7% chance of getting possessed by Moonlight Flower for 5 seconds when dealing melee physical attacks. +During possession, Perfect dodge +10. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27082# +Critical +5 +Increases Critical Damage by 10%. +-------------------------- +Refine Level +10: +Critical +10 +-------------------------- +When equipped with Nine Tails Card: +Adds 2% chance of getting possessed by Nine Tails for 5 seconds when dealing melee physical attacks. +During possession, FLEE +10. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27083# +ATK +20 +MATK +20 +-------------------------- +When equipped with Bongun Card: +Adds 2% chance of getting possessed by Bongun for 5 seconds when dealing melee physical attacks. +During possession, receive 100% more physical damage from Munak. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27084# +MATK +10 +-------------------------- +Refine Level +10: +MATK +2% +-------------------------- +When equipped with Sohee Card: +Adds 2% chance of getting possessed by Sohee for 5 seconds when dealing magical damage. +During possession, SP Recovery Rate +100%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27085# +ATK +15 +MATK +15 +-------------------------- +When equipped with Girl's Diary: +ATK +100 +MATK +100 +-------------------------- +When equipped with Munak Card: +Adds 2% chance of getting possessed by Munak for 5 seconds when dealing melee physical attacks. +During possession, physical attack has 50% chance of inflicting Stun status. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27086# +Random chance to auto-cast Level 5 Double Strafing when dealing physical attack with Bow weapon. +-------------------------- +Refine Level +10: +Increases Bow class weapon damage by 20%. +-------------------------- +When equipped with Archer Skeleton Card: +Adds 2% chance of getting possessed by Archer Skeleton for 5 seconds when dealing physical damage. +During possession, ASPD increased by 1. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27087# +MATK +25 +Adds 0.5% chance of enabling protection from skill cast interruption for 5 seconds when dealing magical attack (Upon activation, you will shout \ +). +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27088# +ATK +2% +Adds 0.5% chance of gaining Endure effect for 5 seconds when dealing melee physical attacks. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27089# +Decreases Fixed Casting Time by 50%. +-------------------------- +Ignores physical and magical defense of all race by 50%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27090# +MATK +2% +-------------------------- +Decreases Variable Casting Time by 3%. +-------------------------- +When equipped with GC109 Card: +ATK +3%, MATK +3% +Decreases Variable Casting Time by additional 2%. +Decreases After Skill Delay by 2%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27091# +ATK +2% +-------------------------- +Decreases After Skill Delay by 3%. +-------------------------- +When equipped with DR815 Card: +ATK +3%, MATK +3% +Decreases Variable Casting Time by 2%. +Decreases After Skill Delay by additional 2%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27092# +Increases damage of Arms Cannon, Cold Slower and Flame Launcher by 70%. +-------------------------- +Decreases Variable Casting Time of Vulcan Arm and Boost Knuckle by 100%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27093# +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 2%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27094# +For each 20 base VIT: +MaxHP +3% +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27095# +Increases Critical Damage by 3%. +-------------------------- +Decreases damage taken from Earth elemental attacks by 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27096# +Increases Critical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Critical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Critical Damage by additional 2%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27097# +Decreases damage taken from Angel and Demi-Human race by 20%. +-------------------------- +When equipped with Repair Robot Turbo Card: +Decreases damage taken from Angel and Demi-Human race by additional 5%. +Ignore magical defense of Angel and Demi-Human race by 50%. +-------------------------- +When equipped with Exploration Rover Robot Card: +Decreases damage taken from Angel and Demi-Human race by additional 5%. +Ignore physical defense of Angel and Demi-Human race by 50%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27098# +Increases Magical Damage against monsters of Angel and Demi-Human race by 5%. +-------------------------- +When equipped with Green Cenere Card: +Decreases damage taken from Angel and Demi-Human race by 5%. +Ignore magical defense of Angel and Demi-Human race by 50%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27099# +Increases Physical Damage against enemies of Angel and Demi-Human race by 5%. +-------------------------- +When equipped with Green Cenere Card: +Decreases damage taken from Angel and Demi-Human race by 5%. +Ignore physical defense of Angel and Demi-Human race by 50%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27100# +ATK +5% +-------------------------- +Refine Level +7: +ATK +3% +-------------------------- +Refine Level +7: +ATK +2% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27101# +MATK +20 +-------------------------- +Protects from skill cast interruption. +-------------------------- +When equipped with Vampire's Minion: +For each 2 Refine Levels: +MATK +1% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27102# +Prevents Burn status. +-------------------------- +When equipped with Vampire's Minion: +Perfect Dodge +5 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27103# +ATK +20 +-------------------------- +Weapon and Armor becomes indestructible. +-------------------------- +When equipped with Vampire's Minion: +For each 3 Refine Levels: +ATK +1% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27104# +Enables the use of Level 1 Life Drain. +-------------------------- +When equipped with Vampire's Minion: +Restores 30 HP and 1 SP every 3 seconds. +-------------------------- +When equipped with Bomi Card: +MaxHP +1000 +MaxSP +50 + +Refine Level +9: +MaxHP +1000 +MaxSP +50 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27105# +Enables the use of Level 4 Napalm Vulkan. +-------------------------- +When equipped with Vampire's Minion: +MATK +30 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27106# +When equipped by Bard or Dancer classes: +For each Refine Level: +MATK +15 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27107# +Increases Physical Damage against enemies of Neutral elemental by 20%. +-------------------------- +When equipped with Singing Pere Card: +Increases damage of Metallic Sound by 50%. +-------------------------- +Type: Card +Compound on: Accessory(Right) +Weight: 1 +# +27108# +Increases Magical Damage against Neutral elemental by 20%. +-------------------------- +When equipped with Playing Pere Card: +Increases damage of Reverberation by 50%. +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +27109# +Decreases Physical and Magical Damage taken from Neutral elemental by 10%. +MaxHP +500. +-------------------------- +When equipped with Playing Pere Card and Singing Pere Card: +Random chance to transform user into Awaken Pere for 6 seconds when dealing physical or magical attack. +-------------------------- +During transformation: +Recovers 2000 HP. +Increases Damage against Neutral elemental by 200%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27110# +Decreases damage taken from Ranged Physical Damages by 20%. +-------------------------- +When equipped with Furious Snowier Card: +Decreases damage taken from Small size by 20%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27111# +Increases recovery amount gained from Red Raffle Sap, Yellow Raffle Sap and White Raffle Sap by 50%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27112# +DEF +5 +-------------------------- +For each Refine Level: +DEF +5 +-------------------------- +When equipped with Furious Snowier Card: +Decreases damage taken from Medium size by 20% . +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27113# +Increases Magical Damage with Water element by 20%. +-------------------------- +For each Refine Level: +Increases Magical Damage with Water element by 3%. +-------------------------- +When equipped with Sapien's Wail of Ocean: +Random chance to auto-cast Level 5 Water Ball on attacker when receiving physical damage. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27114# +MaxHP +10% +DEF +50 +-------------------------- +For each 3 Refine Levels: +MaxHP +1% +-------------------------- +Base Level at least 160: +VIT +3 +DEF +50 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27115# +INT +1 +MaxSP +80 +-------------------------- +For each 2 Refine Levels: +MaxSP +10 +-------------------------- +Refine Level +7: +Increases SP Recovery Rate by 30%. +-------------------------- +When equipped with Ominous Solider Card: +For each 3 Refine Levels of equipped Armor: +MaxHP +1% + +For each 2 Refine Levels of equipped Headgear: +MaxSP +5 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27116# +Critical +3 +Increases Critical Damage by 5%. +-------------------------- +When equipped with Ominous Assaulter Card: +Critical +2 +Increases Critical Damage by 2%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27117# +Increases Critical Damage by 10%. +-------------------------- +When equipped with Whip, Musical Instrument, Book, Two-Handed Sword or Two-Handed Spear class weapon: +Critical +5 + +For each Refine Level: +ATK +3 +Increases Critical Damage by 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27118# +MaxHP +10% +STR +2 +-------------------------- +If Base Level at least 160: +Increases damage of Hundred Spear by 10%. +Increases damage of Over Brand by 10%. + +Refine Level +9: +Increases damage of Hundred Spear by 10%. +Increases damage of Over Brand by 10%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27119# +DEF +30 +MDEF +5 +Decreases damage taken from all size monsters by 25%. +-------------------------- +When equipped with Turtle General Card: +Decreases damage taken from all size monsters by 5%. +HIT +25 +Increases Physical Damage against enemies of all size monsters by 20%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27120# +Enables the use of Level 1 Status Recovery. +-------------------------- +When equipped with Obeaune Card: +MaxSP +50 +-------------------------- +Collection Effect +Weight Limit +30 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27121# +Increases Damage against monsters of Fish race by 10%. +-------------------------- +Refine Level +9: +Increases Damage against monsters of Fish race by additional 5%. +-------------------------- +Collection Effect +Increase physical and magical damage against fish race monster by 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27122# +Increases Magical Damage against Water elemental by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage against Water elemental by additional 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage against Water elemental by additional 7%. +-------------------------- +Collection Effect +Increase magic attack against Water property monsters by 1% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27123# +Increases Magical Damage against monsters of Insect race by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage against monsters of Insect race by additional 5%. +-------------------------- +Collection Effect +Increase magical damage against insect race monster by 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27124# +Increases Magical Damage against monsters of Brute race by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage against monsters of Brute race by additional 5%. +-------------------------- +Collection Effect +Increase magical damage against brute race monster by 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27125# +Increases Magical Damage with Water and Holy element by 20%. +-------------------------- +Collection Effect +Increase Water and Holy property magical damage by 2%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27126# +Increases Physical Damage against enemies of Brute and Insect race by 40%. +Increases Physical Damage against enemies of Wind and Earth elemental by 40%. +-------------------------- +Collection Effect +Increase physical damage against brute race, insect race, wind property and earth property monster by 10%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27127# +MaxSP -50% +ATK +10% +Increases Physical Damage against enemies of Demi-Human and Dragon race by 50%. +-------------------------- +When equipped with Hawk Eye: +Disables Ancient King Groza Card effects. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27128# +ATK +100 +-------------------------- +For each Refine Level: +ATK +10 +Prevents Frozen and Stone Curse status. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27129# +Increases damage of Hundred Spear by 5%. +-------------------------- +For each Refine Level: +Increases damage of Hundred Spear by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Hundred Spear by additional 5%. +-------------------------- +When equipped with Arcana: +VIT +3, DEF +300 +Increases damage of Hundred Spear by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +27130# +Increases damage of Soul Expansion by 5%. +-------------------------- +For each Refine Level: +Increases damage of Soul Expansion by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Soul Expansion by additional 5%. +-------------------------- +When equipped with Arcana: +INT +3, MATK +50 +Increases damage of Soul Expansion by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +27131# +Increases damage of Arrow Storm by 5%. +-------------------------- +For each Refine Level: +Increases damage of Arrow Storm by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Arrow Storm by additional 5%. +-------------------------- +When equipped with Arcana: +DEX +3, ASPD +1 +Increases damage of Arrow Storm by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +27132# +Increases damage of Arms Cannon by 5%. +-------------------------- +For each Refine Level: +Increases damage of Arms Cannon by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Arms Cannon by additional 5%. +-------------------------- +When equipped with Arcana: +LUK +3 +Increases Ranged Physical Damage by 5%. +Increases damage of Arms Cannon by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +27133# +Increases damage of Rolling Cutter by 5%. +-------------------------- +For each Refine Level: +Increases damage of Rolling Cutter by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Rolling Cutter by additional 5%. +-------------------------- +When equipped with Arcana: +AGI +3, FLEE +50 +Increases damage of Rolling Cutter by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +27134# +Increases damage of Adoramus by 5%. +-------------------------- +For each Refine Level: +Increases damage of Adoramus by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Adoramus by additional 5%. +-------------------------- +When equipped with Arcana: +Increases Healing skills effectiveness by 5%. +Increases SP Recovery Rate by 50%. +Increases damage of Adoramus by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +27135# +Increases damage of Overbrand by 5%. +-------------------------- +For each Refine Level: +Increases damage of Overbrand by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Overbrand by additional 5%. +-------------------------- +When equipped with Arcana: +VIT +3, MaxHP +10% +Increases damage of Overbrand by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +27136# +Increases damage of Diamond Dust by 5%. +-------------------------- +For each Refine Level: +Increases damage of Diamond Dust by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Diamond Dust by additional 5%. +-------------------------- +When equipped with Arcana: +INT +3 +Protects from skill cast interruption. +Increases damage of Diamond Dust by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +27137# +Increases damage of Severe Rainstorm by 5%. +-------------------------- +For each Refine Level: +Increases damage of Severe Rainstorm by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Severe Rainstorm by additional 5%. +-------------------------- +When equipped with Arcana: +DEX +3, MDEF +20 +Increases damage of Severe Rainstorm by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +27138# +Increases damage of Cart Tornado by 5%. +-------------------------- +For each Refine Level: +Increases damage of Cart Tornado by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Cart Tornado by additional 5%. +-------------------------- +When equipped with Arcana: +LUK +3 +Increases Healing skills effectiveness by 10%. +Increases HP Recovery Amount of Recovery Items by 10%. +Increases damage of Cart Tornado by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +27139# +Increases damage of Feint Bomb by 5%. +-------------------------- +For each Refine Level: +Increases damage of Feint Bomb by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Feint Bomb by additional 5%. +-------------------------- +When equipped with Arcana: +AGI +3, HIT +50 +Increases damage of Feint Bomb by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +27140# +Increases damage of Sky Net Blow by 5%. +-------------------------- +For each Refine Level: +Increases damage of Sky Net Blow by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Sky Net Blow by additional 5%. +-------------------------- +When equipped with Arcana: +STR +3, ATK +50 +Increases damage of Sky Net Blow by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +27141# +Decreases damage taken from Fire elemental attacks by 100%. +-------------------------- +Random chance to inflict Curse status on your enemy when recieving physical damage. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27142# +INT +2 +-------------------------- +Refine Level +9: +MaxHP +10%, MaxSP +10% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27143# +Increases Damage against Earth and Poison elemental by 50%. +-------------------------- +Increases Damage against monsters of Brute and Insect race by 50%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27144# +MATK +10% +-------------------------- +For each Refine Level: +Increases damage of Fire Bolt, Lightning Bolt, Cold Bolt and Earth Spike by 7%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27145# +MATK +40 +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +For each 3 Refine Levels: +Decreases Comet skill cooldown by 10 seconds. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27146# +MATK +10% +-------------------------- +Random chance to decreases After Attack Delay by 100% for 30 seconds when recieving magical damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27147# +HIT +5 +-------------------------- +Base Level at least 90: +HIT +10 +-------------------------- +When equipped with Material Chimera Card: +Decreases After Skill Delay by by 3%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27148# +FLEE +10 +-------------------------- +Base Level at least 90: +FLEE +10 +-------------------------- +When equipped with Humanoid Chimera Card: +Decreases After Skill Delay by by 3%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27149# +When compounded with Revolver, Rifle or Grenade Launcher class weapon: +Increases Ranged Physical Damage by 5%. + +For each Refine Level: +Increases Ranged Physical Damage by additional 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27150# +MaxHP +1000, MaxSP +200. +-------------------------- +Refine Level +12: +MaxHP +15%, MaxSP +15% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27151# +MDEF +5 +Random chance to inflict Freezing status on attacker when receiving physical attacks. +-------------------------- +Base INT at least 110: +Further increases the chance. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27152# +MaxHP +10% +-------------------------- +For each 2 Refine Levels: +AGI +1 +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27155# +A polycrystal of small crab blinks around the ecliptic. +-------------------------- +Recover 50 HP and 3 SP when defeating monsters with physical attacks. +-------------------------- +When equipped by Mechanic: +Refine Level +1: +Random chance to ignore physical defense of enemies by 100% for 7 seconds when dealing physical damage. + +For each Refine Level: +Increases trigger chance. +-------------------------- +When equipped with Cancer Diadem: +MaxHP +10%, MaxSP +10% +Recovers 50 HP and 3 SP when defeating monsters with physical attacks. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27156# +A polycrystal of small blinks of a bull that travels around the ecliptic. +-------------------------- +VIT +1, INT +1 +-------------------------- +Increases HP Recovery Amount of Milk by 300%. +-------------------------- +When equipped by Genetic: +VIT +1, INT +1 +-------------------------- +When equipped with Taurus Crown: +VIT +1, INT +1 +Increases HP Recovery Amount of Milk by additional 300%. +Recovers 2 SP when recieving damage. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27157# +Increases Physical Damage against enemies of Water and Earth elemental by 5%. +Increases Physical Damage taken from Water and Earth elemental by 5%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Water and Earth elemental by 5%. +-------------------------- +Collection Effect +Increase physical damage against water and earth properties monsters by 1%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27158# +Decreases Physical and Magical Damage taken from Wind elemental by 30%. +-------------------------- +Collection Effect +Reduce physical and magical damage taken from wind property monsters by 3%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27159# +Increases Magical Damage against monsters of Demon race by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage against monsters of Demon race by 5%. +-------------------------- +Collection Effect +Increase magical damage against demon race monsters by 1%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27160# +For each Refine Level of Shoes: +FLEE +2 +-------------------------- +Collection Effect +FLEE +1 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27161# +Increases Magical Damage with Fire and Earth element by 20%. +-------------------------- +Collection Effect +Increase fire and earth properties magical damage by 2%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27162# +Restores 5 SP when attacking a target. +Increases SP Consumption by 50%. +-------------------------- +Collection Effect +Recovers 1 SP per each enemy hit by user damage. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27163# +AGI -1 +DEX -1 +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +When equipped with Dark Faceworm Card: +Decreases After Skill Delay by 3%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27164# +MaxHP -10% +Critical +15 +-------------------------- +For each Refine Level: +Critical +1 +Increases Critical Damage by 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27165# +VIT -1 +INT -1 +Decreases After Skill Delay by 3%. +-------------------------- +When equipped with Faceworm Card: +VIT +2 +INT +2 +AGI +2 +DEX +2 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27166# +Decreases damage taken from Fire elemental by 2%. +-------------------------- +Refine Level +7: +Decreases damage taken from Fire elemental by additional 1%. +-------------------------- +Refine Level +9: +Decreases damage taken from Fire elemental by additional 2%. +-------------------------- +When equipped with Faceworm Larva Card: +Increases Magical Damage against monsters of Fire elemental by 10%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27167# +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +For each Refine Level: +Increases Magical Damage with Water element by 3%. +-------------------------- +When equipped with Faceworm Egg Card: +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27168# +HIT +10 +-------------------------- +For each 3 Refine Levels: +HIT +5 +-------------------------- +When equipped with Sarah Card: +ATK +100 +Random chance to transform user into Sarah for 60 sec when dealing physical attacks. +-------------------------- +Collection Effect +HIT +5 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27169# +ATK +5 +MATK +5 +-------------------------- +When compounded with Spear class weapon: +Refine Level +10: +ATK +20 +MATK +20 + +Refine Level +14: +ATK +20 +MATK +20 +-------------------------- +Collection Effect +ATK +3 +MATK +3 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27170# +AGI +7 +HIT +7 +-------------------------- +When equipped with Revolver Buffalo Bandit Card: +STR +3 +ATK +3% +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +27171# +STR +4 +ATK +4% +-------------------------- +Type: Card +Compound on: Accessory(Right) +Weight: 1 +# +27172# +ATK +5 +MATK +5 +-------------------------- +When compounded on a Dagger class weapon: +Refine Level +10: +ATK +20 +MATK +20 + +Refine Level +14: +ATK +20 +MATK +20 +-------------------------- +When equipped with Shotgun Buffalo Bandit Card: +Increases Damage against Small size by 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27173# +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +10: +Increases damage of Spread Attack by 20%. +-------------------------- +Refine Level +14: +Increases damage of Spread Attack by 20%. +-------------------------- +When equipped with Shotgun Buffalo Bandit Card: +Increases damage of Spread Attack by 50%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27174# +Increases damage of Rapid Shower by 10%. +-------------------------- +Refine Level +10: +Increases damage of Rapid Shower by 20%. +-------------------------- +Refine Level +14: +Increases damage of Rapid Shower by 20%. +-------------------------- +When equipped with Revolver Buffalo Bandit Card: +Increases damage of Rapid Shower by 50%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27175# +Increases Damage against Small size by 10%. +-------------------------- +When equipped with Scimitar Buffalo Bandit Card: +Increases Damage against Small size by 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27176# +For each 10 base STR: +ATK +3 +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Base STR at least 120: +ATK +40 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27177# +For each 10 base INT: +MATK +3 +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Base INT at least 120: +MATK +40 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27178# +Decreases damage taken from Normal class by 25%. +Increases damage taken from Boss class by 50%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27179# +MaxHP -12% +MaxSP -6% +-------------------------- +Protects from skill cast interruption. +-------------------------- +Refine Level +10: +MaxHP +6% +MaxSP +3% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27180# +Random chance to break target's equipped Armor or Weapon when dealing physical attacks. +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +27181# +Increases Ranged Physical Damage by 1%. +-------------------------- +For each 2 Refine Levels: +Critical +1 +Increases Ranged Physical Damage by additional 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27182# +ATK +30 +Increases damage of Anti Material Blast by 30%. +Increases damage of Hammer of God by 30%. +-------------------------- +Refine Level +10: +Increases damage of Anti Material Blast by 30%. +Increases damage of Hammer of God by 30%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27183# +ATK +20 +-------------------------- +Base STR at least 120: +ATK +20 +Increases After Attack Delay by 3%. +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +27184# +ATK +20 +-------------------------- +Increases Physical Damage against enemies of Demon race and Undead element by 30%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27185# +MaxHP +10% +-------------------------- +Base AGI at least 120: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Base INT at least 120: +MATK +30 +-------------------------- +Base DEX at least 120: +ATK +5% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27186# +MaxHP +10% +-------------------------- +Base STR at least 120: +ATK +30 +-------------------------- +Base VIT at least 120: +MaxHP +5% +-------------------------- +Base LUK at least 120: +Increases Critical Damage by 5%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27187# +Decreases damage taken from Fire elemental by 20%. +-------------------------- +Increases Physical Damage against enemies of Fire elemental by 5%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27188# +ATK +10% +-------------------------- +Increases Physical Damage with Revolver, Rifle, Gatling Gun, Shotgun and Grenade Launcher class weapons by 5%. +-------------------------- +Refine Level +10: +Increases Physical Damage with Revolver, Rifle, Gatling Gun, Shotgun and Grenade Launcher class weapons by additional 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27189# +When compounded on a One-Handed Staff and Two-Handed Staff class weapon: +For each Refine Level: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Refine Level +10: +MATK +5% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27190# +Decreases damage taken from Water and Ghost elemental attacks by 20%. +-------------------------- +Refine Level +7: +Decreases damage taken from ranged physical attacks by 10%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27191# +Decreases damage taken from Normal class by 25%. +Increases damage taken from Boss class by 50%. +-------------------------- +When equipped with Demon Hunting Shield: +The effect of Demon Hunting Shield will not be activated. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27192# +Protects from skill cast interruption. +-------------------------- +Increases Variable Casting Time of all skills by 15%. +-------------------------- +Refine Level +7: +ATK +40, MATK +40 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27194# +For each 10 base INT: +MATK +3 +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Base INT at least 130: +MATK +50 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27195# +For each 10 base STR: +ATK +3 +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Base STR at least 130: +ATK +50 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27196# +Increases Magical Damage against monsters of Small size by 15%. +-------------------------- +When equipped with Spica Nerious Card: +Increases Magical Damage against monsters of Small size enemies and Brute race by by additional 5%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27197# +Increases Physical Damage against enemies of Small size by 15%. +-------------------------- +When equipped with Juergen Wigner Card: +Increases Physical Damage against enemies of Small size enemies and Brute race by additional 5%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27198# +Increases Physical Damage against enemies of Brute race by 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27199# +Increases Magical Damage against monsters of Brute race by 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27200# +\ + - Nihil M. Heine +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27201# +\ + - Agnes Roegenburgs +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27202# +\ + - Juergen Wigner +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27203# +\ + - Spica Nerious +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27204# +A polycrystalline body of twinkling twinkles around the ecliptic. +-------------------------- +Increases Damage by 3%. +-------------------------- +When equipped by Minstrel: +For each Refine Level: +ATK +5 +-------------------------- +When equipped by Wanderer: +For each Refine Level: +MATK +5 +-------------------------- +When compounded on a Gemini Crown: +All Stats +10 +Increases Damage by additional 3%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27205# +A polycrystalline body of small blinks of an archer who goes around the ecliptic. +-------------------------- +Physical attacks recover 5 SP when defeating monsters. +-------------------------- +When equipped by Ranger: +For each Refine Level: +HIT +5 +-------------------------- +When compounded on a Sagittarius Diadem: +Physical attacks recover additional 5 SP when defeating monsters. +Decreases After Skill Delay by 20%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27209# +Increases Damage against Scaraba monsters by 15%. +Defeating Scaraba monsters has a chance to drop a Scaraba Summon Scroll. +-------------------------- +Refine Level +15: +Increases Damage against Scaraba race monsters by additional 25%. +-------------------------- +Warning - Silit Pong does not work on removing this card! +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27211# +Endows compounded weapon with damage that will splash 9x9 cells around the character with each attack. +HIT -30 +-------------------------- +Refine Level +15: +HIT -20 instead +-------------------------- +Warning - Silit Pong does not work on removing this card! +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27212# +Adds 15% chance of reflecting Magical attacks, aside from skills which target the ground, cast on the character. +-------------------------- +Refine Level +15: +The chance is increased to 30%. +-------------------------- +Warning - Silit Pong does not work on removing this card! +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27213# +Enables the use of Level 5 Poem of Bragi. (When equipped with Musical Instrument/Whip) +FLEE +10 +-------------------------- +Base VIT at least 110: +FLEE +10 +-------------------------- +Refine Level +15: +Enables the use of Level 7 Poem of Bragi instead. (When equipped with Musical Instrument/Whip) +FLEE +15 instead. + +Base VIT at least 110: +FLEE +15 instead +-------------------------- +Warning - Silit Pong does not work on removing this card! +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27214# +Recieving magical damage has a chance to auto-cast Level 1 Land Protector. +MATK +3% +-------------------------- +Base DEX at least 110: +MATK +3% +-------------------------- +Refine Level +15: +Recieving magical damage has a chance to auto-cast Level 3 Land Protector instead. +MATK +5% instead + +Base DEX at least 110: +MATK +5% instead +-------------------------- +Warning - Silit Pong does not work on removing this card! +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27215# +Dealing physical damage has a chance to auto-cast Level 1 Investigate. +Increases Physical Damage against enemies of all enemies by 3%. +-------------------------- +Base AGI at least 110: +Increases Physical Damage against enemies of all enemies by additional 3%. +-------------------------- +Refine Level +15: +Dealing physical damage has a chance to auto-cast Level 3 Investigate instead. +Increases Physical Damage against enemies of all enemies by 5% instead. + +Base AGI at least 110: +Increases Physical Damage against enemies of all enemies by additional 5% instead. +-------------------------- +Warning - Silit Pong does not work on removing this card! +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27216# +Physical attacks have a chance to auto-cast Level 1 Acid Terror. (Consumes Acid Bottle) +Critical +10 +-------------------------- +Base STR at least 110: +Critical +10 +-------------------------- +Refine Level +15: +Physical attacks have a chance to auto-cast Level 3 Acid Terror instead. (Consumes Acid Bottle) +Critical +15 instead. + +Base STR at least 110: +Critical +15 instead. +-------------------------- +Warning - Silit Pong does not work on removing this card! +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27217# +Physical attacks have a chance to auto-cast Level 1 Full Strip. +HIT +10 +-------------------------- +Base LUK at least 110: +HIT +10 +-------------------------- +Refine Level +15: +Physical attacks have a chance to auto-cast Level 3 Full Strip instead. +HIT +15 instead. + +Base LUK at least 110: +HIT +15 instead. +-------------------------- +Warning - Silit Pong does not work on removing this card! +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27218# +Random chance to auto-cast Level 5 Grand Cross when recieving physical damage. +MaxHP +5% +-------------------------- +Base INT at least 110: +MaxHP +5% +-------------------------- +Refine Level +15: +Random chance to auto-cast Level 7 Grand Cross instead when recieving physical damage. +MaxHP +7% instead. + +Base INT at least 110: +MaxHP +7% instead. +-------------------------- +Warning - Silit Pong does not work on removing this card! +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27219# +Enables the use of Level 5 Fortune's Kiss. (When equipped with Musical Instrument/Whip) +FLEE +10 +-------------------------- +Base VIT at least 110: +FLEE +10 +-------------------------- +Refine Level +15: +Enables the use of Level 7 Fortune's Kiss instead. (When equipped with Musical Instrument/Whip) +FLEE +15 instead. + +Base VIT at least 110: +FLEE +15 instead +-------------------------- +Warning - Silit Pong does not work on removing this card! +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27220# +When compounded on a One-Handed Sword and Two-Handed Sword class weapon: +ATK +50 + +Refine Level +15: +ATK +75 instead. +-------------------------- +Warning - Silit Pong does not work on removing this card! +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27221# +Increases Magical Damage with Wind and Ghost element by 50%. +Increases damage taken from all elementals by 60%. +-------------------------- +Refine Level +15: +Increases Magical Damage with Wind and Ghost element by 75% instead. +Increases damage taken from all elementals by 40% instead. +-------------------------- +Warning - Silit Pong does not work on removing this card! +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27222# +Increases Critical Damage by 20%. +Increases damage taken from all race by 20%. +-------------------------- +Refine Level +15: +Increases Critical Damage by 25% instead. +Increases damage taken from all race by 10% instead. +-------------------------- +Warning - Silit Pong does not work on removing this card! +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27223# +MaxHP +300 +MaxSP +30 +-------------------------- +Defeating monsters recovers 50 HP and 3 SP. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27224# +Decreases damage taken from Fire, Water, Earth, Wind, Shadow, Undead elemental attacks by 20%. +Increases damage taken from Ghost and Holy elemental attacks by 100%. +-------------------------- +Refine Level +15: +Decreases damage taken from Fire, Water, Earth, Wind, Shadow, Undead elemental attacks by 30% instead. +-------------------------- +Warning - Silit Pong does not work on removing this card! +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27225# +MATK +10% +Increases SP Consumption by 20%. +-------------------------- +Refine Level +15: +MATK +15 instead.% +Increases SP Consumption by 15% instead. +-------------------------- +Warning - Silit Pong does not work on removing this card! +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27226# +Decreases damage taken from Brute race by 15%. +-------------------------- +Prevents Sleep status. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27227# +Decreases damage taken from Players by 30%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27228# +For each Refine Level: +All Stats +1 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27229# +MaxSP +200 +-------------------------- +Increases SP Recovery Rate by 10%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27230# +MaxHP +1000 +-------------------------- +Increases HP Recovery Rate by 10%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27231# +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +Decreases damage taken from Wind elemental attacks by 15%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27232# +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +Decreases damage taken from Water elemental attacks by 15%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27233# +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +Decreases damage taken from Fire elemental attacks by 15%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27234# +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +Decreases damage taken from Earth elemental attacks by 15%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27235# +Decreases damage taken from Wind elemental attacks by 15%. +-------------------------- +Decreases damage taken from Small, Medium and Large size by 15%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27236# +Decreases damage taken from Fire elemental attacks by 15%. +-------------------------- +Decreases damage taken from Small, Medium and Large size by 15%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27237# +ATK +10% +-------------------------- +Enables the use of Level 10 Enchant Poison. +-------------------------- +Enables the use of Level 1 Seismic Weapon. +-------------------------- +Enables the use of Level 1 Flame Launcher. +-------------------------- +Enables the use of Level 1 Frost Weapon. +-------------------------- +Enables the use of Level 1 Lightning Loader. +-------------------------- +Random chance to increase AGI by 100 for 5 seconds when recieving physical damage. +Increase movement speed. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27238# +Decreases damage taken from Earth elemental attacks by 5%. +-------------------------- +Prevents Stone Curse status. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27239# +Decreases damage taken from Wind and Holy elemental attacks by 20%. +-------------------------- +Refine Level +7: +Decreases damage taken from ranged physical attacks by 10%. +-------------------------- +When Faith is learned: +Increases damage taken from Holy elemental attacks by 20%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27240# +Increases Damage against monsters of Insect race by 5%. +-------------------------- +When equipped with Face Worm Larva Card: +Increases Damage against monsters of Insect race by additional 5%. +Decreases damage taken from Insect race by 10%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27241# +Increases Damage against monsters of Insect race by 5%. +-------------------------- +Decreases damage taken from Insect race by 20%. +-------------------------- +When equipped with Face Worm Egg Card: +Increases Damage against monsters of Insect race by additional 5%. +Decreases damage taken from Insect race by 10%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27242# +Decreases damage taken from Small, Medium and Large size by 20%. +-------------------------- +Refine Level +7: +Decreases damage taken from Small, Medium and Large size by additional 10%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27243# +AGI +1, MATK +25 +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Increases Variable Casting Time of Cold Bolt, Fire Bolt and Lightning Bolt by 5 seconds. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27244# +MaxHP +3% +-------------------------- +Decreases damage taken from ranged physical attacks by 3%. +-------------------------- +When equipped with Sing Pere & Swing Pere Card: +MaxHP +3%, MaxSP +2% +Decreases damage taken from ranged physical attacks by additional 2%. +Decreases damage taken from magical attacks by 2%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27245# +MaxSP +3% +-------------------------- +Decreases damage taken from magical attacks by 3%. +-------------------------- +When equipped with Pere & Kiss Me Pere Card: +MaxHP +3%, MaxSP +2% +Decreases damage taken from ranged physical attacks by 2%. +Decreases damage taken from magical attacks by additional 2%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27246# +INT +3 +-------------------------- +Prevents knock-back effect. +-------------------------- +When equipped by Minstrel or Wanderer: +Enables the use of Level 1 True Sight. +Prevents Frozen status. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27247# +Increases resistance against Frozen status by 50%. +-------------------------- +Increases damage of Metallic Sound by 50%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27248# +Decreases damage taken from Fire and Shadow elemental attacks by 10%. +-------------------------- +Enables the use of Level 1 Energy Coat. +-------------------------- +For each Refine Level: +Increases damage of Hell Inferno by 10%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27249# +ATK +15 +MATK +15 +MaxHP +500 +HIT +15 +FLEE +15 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27250# +MATK +3% +Increases Magical Damage with Earth and Neutral element by 5%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27251# +Increases Critical Damage by 3%. +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27252# +Increases Attack Speed (Decreases After Attack Delay by 3%). +Increases Critical Damage by 5%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27253# +MATK +3% +Increases Magical Damage with Fire and Holy element by 5%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27254# +Increases SP Recovery Rate by 10%. +Random chance to auto-cast Level 1 Dangerous Soul Collect when receiving physical damage. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27255# +MATK +3% +Increases Magical Damage with Wind and Water element by 5%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27256# +ATK +3% +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27257# +Decreases Variable Casting Time by 3%. +Increases damage of Wind Blade, Freezing Spear and Flaming Petals by 5%. +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27258# +ATK +3% +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27259# +MATK +3% +Increases Magical Damage with Holy element by 5%. +Increases Healing skills effectiveness by 5%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27260# +Increases Attack Speed (Decreases After Attack Delay by 3%). +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27261# +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by 10%. +-------------------------- +When compounded on a Book: +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by 20%. + +Refine Level +14: +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27262# +Increases Magical Damage with Neutral and Shadow element by 20%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27263# +Random chance to transform user into Golem for 10 seconds when dealing physical damage. +During possession: +DEF +300 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27264# +Decreases damage taken from Shadow and Undead elemental by 30%. +Increases damage taken from Holy and Fire elemental by 30%. +-------------------------- +When equipped with Evil Fanatic Card: +Increases Damage against Shadow and Undead elemental by 15%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27265# +Increases Damage against Shadow and Undead elemental by 30%. +Decreases Physical and Magical Damage against Holy and Fire elemental by 30%. +-------------------------- +When equipped with Evil Shadow Card: +Decreases damage taken from Shadow and Undead elemental by 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27286# +MATK +5 +Increases Magical Damage against monsters of Large size by 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27287# +Increases SP Consumption by 10% . +-------------------------- +For each Refine Level: +Increases Magical Damage with Holy element by 3%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27288# +ATK +5% +HIT +10 +-------------------------- +Refine Level +10: +HIT +5 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27289# +MATK +5 +Increases Magical Damage against monsters of Medium size by 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27290# +For each 10 base AGI: +FLEE +3 +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Base AGI at least 120: +ASPD +1 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27291# +ATK +30 +MaxHP -1% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27292# +For each 10 base VIT: +MaxHP +150 +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Base VIT at least 120: +Decreases After Skill Delay by additional 3%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27293# +MATK +30 +MaxSP -1% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27294# +Ignores physical defense of Boss class by 30%. +-------------------------- +Refine Level +10: +Ignores physical defense of Boss class by 20%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27295# +For each 10 base LUK: +Increases Critical Damage by 1%. +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Base LUK at least 120: +Increases Critical Damage by 5%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27296# +For each 10 base DEX: +Increases damage inflicted with Bow class weapon by 1%. +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Base DEX at least 120: +ATK +40 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27297# +Critical +5 +Increases Critical Damage by 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27298# +Decreases damage taken from Boss class by 30%. +-------------------------- +Refine Level +10: +Decreases damage taken from Boss class by 20%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27299# +A polycrystal of small blinks of snakes around the ecliptic. +-------------------------- +Random chance to drop Catnip Fruit, Shrimp or Carrot when defeating monsters. +-------------------------- +When equipped by Summoner: +For each Refine Level: +MaxHP +2%, MaxSP +2% +Decreases Variable Casting Time by 1%. +-------------------------- +When enchanted on Surpentarius Crown: +All Stats +10 +Decreases Variable Casting Time by additional 10%. +Decreases After Skill Delay by 20%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27300# +A polycrystal of small blinks of a water bottle that goes around the ecliptic. +-------------------------- +INT +2 +-------------------------- +Increases SP Recovery Rate by 15%. +-------------------------- +When equipped by Warlock: +For each Refine Level: +MATK +4, MaxSP +1% +-------------------------- +When enchanted on Aquarius Diadem: +Decreases Fixed Casting Time by 50%. +Increases Magical Damage against monsters of Boss class by 20%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27301# +ATK +10% +-------------------------- +When compounded on any kind of Abyss weapon: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27302# +A polycrystal of small blinks of a balance that goes around the ecliptic. +-------------------------- +Increases Ranged Physical Damage by 2%. +-------------------------- +When equipped by Rune Knight: +For each Refine Level: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +When enchanted on Libra Crown: +MaxHP +10% +Increases Physical Damage against enemies of Boss class by 20%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27303# +A polycrystal of small scorpion blinks around the ecliptic. +-------------------------- +STR +2 +-------------------------- +ATK +3% +-------------------------- +When equipped by Guillotine Cross: +For each Refine Level: +Decreases After Skill Delay by 1%. +-------------------------- +When enchanted on Scorpio Diadem: +STR +7 +Decreases After Skill Delay by additional 20%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27304# +Increases HP Recovery Rate by 50%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27305# +Random chance to auto-cast Level 3 Hell Inferno when dealing melee physical attacks. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27306# +When compounded on a Revolver class weapon: +HIT +20 +-------------------------- +Increases Ranged Physical Damage by 5%. +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Fire Dance by 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27307# +When compounded on a Gatling Gun class weapon: +HIT +20 +-------------------------- +Increases Ranged Physical Damage by 5%. +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Round Trip by 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27308# +Increases Healing skills effectiveness by 2% +-------------------------- +Refine Level +9: +Increases Healing skills effectiveness by additional 3%. +-------------------------- +Refine Level +11: +Increases Healing skills effectiveness by additional 5%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27309# +MATK +10 +-------------------------- +Increases Magical Damage with Holy element by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Holy element by additional 5% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27310# +MATK +10 +-------------------------- +Increases Magical Damage with Neutral element by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Neutral element by additional 5% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27311# +When compounded on a Knuckle class weapon: +HIT +20 +ATK +15 +-------------------------- +For each Refine Level: +Increases Physical Damage against enemies of Large by 1%. +-------------------------- +Refine Level +10: +Increases Physical Damage against enemies of Large by additional 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27312# +Increases Physical Damage against monsters of Demon race by 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27313# +When compounded on a Katar class weapon: +Critical +7 +ATK +15 +-------------------------- +For each 2 Refine Levels: +Increases Critical Damage by 2%. +-------------------------- +Refine Level +10: +Increases Physical Damage against enemies of Large size by 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27314# +Increases Physical Damage against enemies of Brute race by 15%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27315# +Increases Magical Damage against monsters of Brute race by 5%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27316# +DEF +50 +-------------------------- +Decreases damage taken from Poison elemental attacks by 15%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27317# +Increases Physical Damage against enemies of Formless race by 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27318# +Increases Critical Damage by 30%. +-------------------------- +Increases damage taken from all races by 10%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27319# +Increases damage against Poison elemental by 40%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27320# +Increases Magical Damage with Fire element by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Fire element by additional 2%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Fire element by additional 5%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27321# +Transforms into Despair God Morocc for 5 seconds, when using the First Aid skill. +ATK +10% +MaxHP -50% + +Increases Physical Damage against enemies of Demi-Human and Angel race by 30%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27322# +MaxSP +5% +-------------------------- +When equipped with Demon God's Apostle Shinaim Card: +MaxSP +5% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27323# +MaxHP +5% +-------------------------- +When equipped with Demon God's Apostle Ahat Card: +MaxHP +5% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27324# +Increases Magical Damage with Water element by 15%. +-------------------------- +When equipped with Muspellskoll Card: +Increases Magical Damage with Water element by aditional 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27325# +Decreases Physical and Magical Damage taken from Fire elemental by 30%. +-------------------------- +When equipped with Brinaranea Card: +Increases Damage against monsters of Fire elemental by 10%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27326# +ATK +100 +Increases Attack Speed greatly (Decreases After Attack Delay by 25%). +MaxHP -20% +-------------------------- +When equipped with Despair God Morocc Card: +MaxHP +50% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27327# +Receiving physical or magical damage has a chance to curse all enemies in 17x17 cells around the caster +and increase ATK by 25% and MATK by 25% for 10 seconds. +The chance increases with the Refine Level. +Transforms into Grim Reaper Ankou for 5 seconds, when using the First Aid skill. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27328# +MaxHP +500 +MaxSP +50 +Increases damage taken from monsters of Angel race by 50%. +-------------------------- +When equipped with Orb Baby Card: +FLEE +5 +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +When equipped with Baby Desert Wolf Card: +INT +3 +MaxSP +100 +MATK +5% +-------------------------- +When equipped with Familiar Card: +ATK +15 +Increases Physical Damage against enemies of Shadow elemental by 20%. +-------------------------- +When equipped with Orc Warrior Card: +Increases damage taken from monsters of Demi-Human race by 15%. +-------------------------- +When equipped with Baby Desert Wolf Card: +Increases damage taken from monsters of Medium and Large size by 15%. +-------------------------- +When equipped with Phen Card: +Decreases Variable Casting Time by 25%. +-------------------------- +When equipped with Orc Zombie Card: +HIT +15 +FLEE +15 +Increases Critical Damage by 15%. +-------------------------- +When equipped with Verit Card: +MaxHP +4% +MaxSP +4% +-------------------------- +When equipped with Megalodon Card: +DEF +100 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27329# +Increases Physical Damage against enemies of Fire elemental by 40%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27330# +\ + -Kronecker G. Heine +-------------------------- +Type: Card +Compound on: Accessory(Right) +Weight: 1 +# +27331# +Decreases Variable Casting Time by 5%. +-------------------------- +When equipped with Nihil M. Heine Card: +Decreases After Skill Delay by 3%. +-------------------------- +Type: Card +Compound on: Accessory(Right) +Weight: 1 +# +27332# +\ + -Skiia Nerious +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +27333# +Increases Attack Speed(Decreases After Attack Delay by 5%). +-------------------------- +When equipped with Agnes Roegenburgs Card: +ATK +5% +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +27334# +ATK +25% +Increases Damage taken from Demon race by 5%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27335# +For each 15 base AGI: +Critical +1 +-------------------------- +When equipped with Baphomet Jr. Card: +Increases Critical Damage by 15%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27336# +Decreases Physical and Magical Damage taken from Poison elemental by 15%. +Decreases damage taken from Brute race by 15%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27337# +Decreases Physical and Magical Damage taken from Wind elemental by 15%. +Decreases damage taken from Insect race by 15%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27338# +STR +3 +-------------------------- +When equipped with Mantis Card: +ATK +7% +HIT +12 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27339# +ATK +20 +Increases Physical Damage against enemies of Small and Large size by 25%. +-------------------------- +When equipped with Ghostring Card: +ATK +10% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27340# +Increases Critical Damage by 3%. +-------------------------- +When equipped with Angra Mantis Card: +Increases Critical Damage by 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27341# +Decreases Physical and Magical Damage taken from Water elemental by 15%. +Decreases damage taken from Fish race by 15%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27342# +HIT +10 +Decreases damage taken from Earth elemental attacks by 2%. +Decreases damage taken from Neutral elemental attacks by 10%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27343# +Decreases After Skill Delay by 4%. +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +27346# +Decreases Physical and Magical Damage taken from Dragon, Demon and Brute race by 30%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27347# +Increases Magical Damage against Earth elemental by 10%. +-------------------------- +When equipped with Fire Frilldora Card: +Increases Magical Damage against Earth elemental by additional 8%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27348# +Increases Magical Damage against Neutral elemental by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage against Neutral elemental by additional 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage against Neutral elemental by additional 7%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27349# +Decreases Physical and Magical Damage taken from Fire elemental by 15%. +Decreases Physical and Magical Damage taken from Dragon race by 15%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27350# +MaxSP +2% +-------------------------- +For each 2 Refine Levels: +MaxSP +1% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27351# +MaxHP +5% +-------------------------- +When equipped with Bungisngis Card: +MaxHP +5% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27352# +MaxSP +5% +-------------------------- +When equipped with Nightmare Terror Card: +ATK +10% +-------------------------- +When equipped with Nightmare Card: +MaxSP +10% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27353# +Decreases Physical and Magical Damage taken from Neutral elemental by 15%. +Decreases Physical and Magical Damage taken from Demon race by 15%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27354# +ATK +5% +-------------------------- +When equipped with Raydric Card: +Decreases damage taken from Neutral elemental attacks by 10%. +ATK +5% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27355# +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Powerful Archer Skeleton Card: +Increases Ranged Physical Damage by additional 5%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27356# +DEF +20. +Decreases Physical and Magical Damage taken from Medium and Large size by 25%. +Increases Damage taken from Small size by 5%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27357# +DEF +100 +-------------------------- +For each 3 Refine Levels: +DEF +25 +-------------------------- +When equipped with Sting Card: +DEF +150 +MDEF +20 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +27358# +Decreases damage taken from Poison, Earth, Wind, Shadow and Undead elemental by 30%. +Increases damage taken from Holy, Ghost and Fire elemental by 100%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27359# +Increases Magical Damage against Water elemental by 15%. +-------------------------- +When equipped with Curupira Card: +Increases Magical Damage against Water elemental by additional 8%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27360# +Increases Magical Damage against monsters of Fire elemental by 15%. +-------------------------- +When equipped with Fruit Pom Spider Card: +Increases Magical Damage against monsters of Fire elemental by additional 8% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27361# +Increases Physical Damage against enemies of Medium and Large size by 30%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27362# +Increases Water and Earth elemental magical damage by 100%. +Increases damage taken from all elemental attacks by 30%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27363# +ASPD +1 +-------------------------- +When equipped with Dark Lord Card: +Increases Fire elemental magical damage by 15% +Increases damage of Meteor Storm by 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27364# +MaxHP +500, MaxSP +50 +-------------------------- +For each Refine Level: +MaxHP +100, MaxSP +10 +-------------------------- +Refine Level +10: +MaxHP +500, MaxSP +50 +-------------------------- +When equipped with Arcana: +All Stats +1 +MaxHP +5000 +MaxSP +500 +Enables the use of Level 1 Cart Revolution. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +27365# +Increases damage of Soul Cutter by 5%. +-------------------------- +For each Refine Level: +Increases damage of Soul Cutter by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Soul Cutter by additional 5%. +-------------------------- +When equipped with Arcana: +STR +2, LUK +2 +Increases HP Recovery Rate by 350%. +Increases damage of Soul Cutter by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +27366# +Increases damage of Fire Dance by 5%. +-------------------------- +For each Refine Level: +Increases damage of Fire Dance by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Fire Dance by additional 5%. +-------------------------- +When equipped with Arcana: +INT +2, DEX +2 +MaxSP +10% +Increases damage of Fire Dance by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +27367# +Increases damage of Catnip Meteor by 5%. +-------------------------- +For each Refine Level: +Increases damage of Catnip Meteor by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Catnip Meteor by additional 5%. +-------------------------- +When equipped with Arcana: +AGI +2, VIT +2 +Increases damage of Catnip Meteor by additional 50%. + +Enables its user to detect hidden enemies. +This effect does not activate during WoE:TE. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +27381# +Increases Magical Damage with Holy and Neutral element by 100%. +Increases damage taken from all elemental attacks by 30%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27382# +ATK +30 +MATK +30 +-------------------------- +When equipped with Realized Corruption Root Card: +Increases Magical Damage with Fire and Neutral element by 30%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +27383# +MaxHP +10% +MaxSP +5% +-------------------------- +When equipped with Amdarais Card: +Increases Physical Damage against enemies of all enemies by 5%. +-------------------------- +When equipped with Realized Amdarais Card: +Increases Physical Damage against enemies of all enemies by 10%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +27384# +MATK +15 +Increases Magical Damage against monsters of Medium and Large size by 20%. +-------------------------- +When equipped with Mutated Khalitzburg Card: +Decreases Physical and Magical Damage from Large size by additional 5%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +27385# +MDEF +10 +Decreases Physical and Magical Damage from Medium and Large size by 25%. +-------------------------- +When equipped with Mutated White Knight Card: +Decreases Physical and Magical Damage from Large size by 5%. +Increases Magical Damage against monsters of Large size by additional 5%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +27386# +Increases Physical Damage against enemies of Undead race by 5%. +-------------------------- +When equipped with Cursed Raydric Archer Card: +Increases Physical Damage against enemies of Undead race by 15%. +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +27387# +Increases Physical Damage against monsters of Demon race by 5%. +-------------------------- +When equipped with Cursed Raydric Archer Card: +Increases Physical Damage against monsters of Demon race by 15%. +-------------------------- +Type: Card +Compound on: Accessory(Right) +Weight: 1 +# +27388# +Increases HP Recovery Rate by 30%. +-------------------------- +When equipped with Zombie Card: +MaxHP +15% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +27393# +\ + -Kathryn Wigner +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27394# +Decreases Variable Casting Time by 5%. +-------------------------- +When equipped with Spica Nerious Card and Nihil M. Heine Card: +Increases Magical Damage against monsters of Small size and Brute race by 7%. +-------------------------- +When equipped with Wolf Roegenburgs Card and Poe Richard Card: +Increases Magical Damage against monsters of Medium size by 7%. +Decreases After Skill Delay by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27395# +\ + -Isaac Wigner +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +27396# +Decreases After Skill Delay by 5%. +-------------------------- +When equipped with Juergen Wagner Card and Agnes Roegenburgs Card: +Increases Physical Damage against enemies of Small size and Brute race by 7%. +-------------------------- +When equipped with Wolf Roegenburgs Card and Poe Richard Card: +Increases Physical Damage against enemies of Medium size by 7%. +Decreases After Skill Delay by additional 3%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +28000# +A katar sculpted from Gray Shard to counter Magic Sword Tartanos. +It offers incredible power and magic at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +80 +-------------------------- +Adds a chance of draining 5% of physical damage into HP and SP. +-------------------------- +Drains 100 HP every 10 seconds. +Drains 1000 HP when unequipped. +-------------------------- +Type: Katar +Attack: 220 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Guillotine Cross +# +28001# +This katar was once used for vanquishing an evil slayer and his followers. +-------------------------- +Increases Physical Damage against enemies of Demon and Undead race by 10%. +-------------------------- +Refine Level +9: +ATK +5% +-------------------------- +Refine Level +12: +ATK +7% +-------------------------- +Type: Katar +Attack: 120 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +28003# +A katar said to be purely forged out of the resentment of the dead. +-------------------------- +Critical -1 +-------------------------- +Random chance to inflict Curse status on the target when dealing physical attacks. +-------------------------- +Indestructible in battle +-------------------------- +Type: Katar +Attack: 151 +Weight: 125 +Element: Shadow +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 70 +Assassin classes +# +28004# +A katar crafted from a ghoul's femur that still radiates a dark, deathly aura. +-------------------------- +Type: Katar +Attack: 150 +Weight: 170 +Element: Undead +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 65 +Assassin classes +# +28005# +Blue Katar which has destructive power. +-------------------------- +AGI +5 +STR +5 +-------------------------- +When VIP status active: +ATK +20% +ASPD +3 +-------------------------- +Type: Katar +Attack: 200 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +28006# +Golden katar which has destructive power. +-------------------------- +AGI +8 +STR +8 +-------------------------- +Type: Katar +Attack: 190 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 120 +Guillotine Cross +# +28007# +Katar that emitting red aura. +-------------------------- +ATK increased by (RefineLv*RefineLv), up to +15 Refine Level. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Katar +Attack: 130 +Weight: 130 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Assassin classes +# +28008# +Katar imbued with Vicious Mind. +-------------------------- +Increases ATK by (Refinelv*Refinelv). +(up to +15 Refine Level) +-------------------------- +Type: Katar +Attack: 180 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 160 +Guillotine Cross +# +28009# +A katar that was acquired from defeating the demon god and it's followers. +-------------------------- +Refine Level +5: +Increases Damage against Demon Morocc monsters by 40%. +Decreases damage taken from Demon Morocc monsters by 10%. +-------------------------- +Refine Level +7: +Increases Damage against Demon Morocc monsters by additional 60%. +Decreases damage taken from Demon Morocc monsters by additional 20%. +-------------------------- +Refine Level +9: +Increases Damage against Demon Morocc monsters by additional 80%. +Decreases damage taken from Demon Morocc monsters by additional 40%. +-------------------------- +Type: Katar +Attack: 120 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Assassin classes +# +28010# +Katar used by assassin agent. There's name of his lover on this katar. +-------------------------- +For each Refine Level: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +For each 2 Refine Levels: +ATK +1%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Katar +Attack: 300 +Weight: 250 +Weapon Level: 4 +Can be enchanted by: +Mayomayomalangdo,213,167,0,100,0,0 +-------------------------- +Requirement: +Base Level 170 +Guillotine Cross +# +28011# +A certified kingdom equipment for adventurer. +-------------------------- +Increases ATK by (Refine*Refine*1.25) +-------------------------- +Type: Katar +Attack: 123 +Weight: 65 +Weapon Level: 3 +-------------------------- +Requirement: +Assassin classes +# +28012# +Equipment designed to survive on Malangdo Island. +An excellent product that can perform Maran enchantments and sell at unexpectedly high prices. +-------------------------- +Increases Damage against monsters in Malangdo Culvert and Octopus Cave by 50.% +Decreases damage taken from Malangdo Culvert and Octopus Cave monsters by 30%. +-------------------------- +Type: Katar +Attack: 120 +Weight: 120 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Assassin classes +# +28013# +Katar given by the king. +It seems to have the effect of calming the souls of the dead. +-------------------------- +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by 40%. +-------------------------- +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by 5%. +-------------------------- +Refine Level +5: +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by additional 20%. +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by additional 5%. +-------------------------- +For each Refine Level equal or above +6: +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by additional 15%. +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by additional 1% +-------------------------- +Indestructible in battle +-------------------------- +Type: Katar +Attack: 140 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +28014# +A twin swords that made from combination of two powerful blades, Ruin Bringer Sword and Glory to the King Sword. +-------------------------- +For each Refine Level: +Increases damage of Cross Impact by 3%. +Increases damage of Cross Ripper Slasher by 2%. +Increases damage of Rolling Cutter by 1%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +10: +Increases Attack Speed (Decreases After Attack Delay by 5%). +Inflicts more damage on the enemy with high DEF. +-------------------------- +Type: Katar +Attack: 150 +Weight: 280 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Guillotine Cross +# +28015# +A metallic katar made of oridecon created for experienced adventurers. +-------------------------- +Increases damage of Rolling Cutter by 10%. +-------------------------- +For each Refine Level: +ATK +7 +Increases Critical Damage by 2%. +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +For each 10 Base Level: +ATK +7 (Applies up to Base Level 150) +-------------------------- +Type: Katar +Attack: 100 +Weight: 0 +Weapon Level: 3 +Enchantable: Yes +Enchanter: [Jumping Enchant Specialist]prontera,151,187,0,100,0,0 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +28016# +A dark-stained weapon made by those who died on the battlefield. +Although it is a two-handed weapon, it has high defense against human races. +-------------------------- +Increases Physical Damage against enemies in Demi-Human race by 45%. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Refine Level +5: +Increases Attack Speed (Decreases After Attack Delay by 5%). +Increases Physical Damage against enemies in Demi-Human race by additional 20%. +Decreases damage taken from Demi-Human race by additional 10%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by additional 5%). +Increases Physical Damage against enemies in Demi-Human race by additional 15% +Decreases damage taken from Demi-Human race by additional 10%. +Slaughter Lv1 +-------------------------- +Refine Level +9: +Random chance to increase ATK by 100 for 5 seconds when recieving physical damage.. +-------------------------- +Indestructible in battle +-------------------------- +Can be sold to NPC. +-------------------------- +Type: Katar +Attack: 140 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +28017# +A dark-stained weapon made by those who died on the battlefield. +Although it is a two-handed weapon, it has high defense against human races. +-------------------------- +Perfect Dodge +10 +-------------------------- +Increases Physical Damage against enemies in Demi-Human race by 30%. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Refine Level +5: +Perfect Dodge +5 +Increases Critical Damage by 20%. +Increases Physical Damage against enemies in Demi-Human race by additional 15%. +Decreases damage taken from Demi-Human race by additional 10%. +-------------------------- +Refine Level +7: +Perfect Dodge +5 +Increases Critical Damage by additional 20%. +Increases Physical Damage against enemies in Demi-Human race by additional 10% +Decreases damage taken from Demi-Human race by additional 10%. +Slaughter Lv1 +-------------------------- +Refine Level +9: +Random chance to increase critical damage by 20% for 5 seconds when recieving physical damage. +-------------------------- +Indestructible in battle +-------------------------- +Can be sold to NPC. +-------------------------- +Type: Katar +Attack: 140 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +28018# +A weapon of unknown origin with the magical power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +MATK +250 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When equipped with Labyrinth Baphomet Card: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Type: Katar +Attack: 150 +Weight: 280 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Guillotine Cross +# +28019# +A Diva Katar that has mutated under the influence of the power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +Attack Range: 5 cells +-------------------------- +MATK +250 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: Katar +Attack: 150 +Weight: 280 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Guillotine Cross +# +28020# +Katar is filled with evil spirits. +-------------------------- +For each Refine Level: +ATK +1 +-------------------------- +Type: Katar +Attack: 110 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +28021# +Katar is known to have been used by the assassin Jung Eun. +He named his weapon a lover who could never meet again. +-------------------------- +Increases Physical Damage against enemies of Undead race by 10%. +-------------------------- +Increases Physical Damage against enemies of Undead elemental by 10%. +-------------------------- +Random chance to increase ATK by 50 for 10 seconds when recieving physical damage. + +For each Refine Level: +Increases trigger rate. +-------------------------- +When equipped with Immortal Corps Dog Tag: +For each Refine Level of Juliet de Rachel: +ATK +5% + +Refine Level of Juliet de Rachel is +9 or higher: +Random chance to auto-cast Level 10 Oratio when using Rolling Cutter. +-------------------------- +Type: Katar +Attack: 130 +Weight: 120 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Guillotine Cross +# +28022# +A lethal Katar that has been perfectly designed to carry out quick assasinations. +-------------------------- +Increases Physical Damage on Demi-Human race by 60%. +-------------------------- +DEF +3 +FLEE +5 +Perfect Dodge +2. +-------------------------- +Refine Level +9: +FLEE +5 +Pefect Dodge +2 +-------------------------- +Refine Level +10: +ATK +5% +-------------------------- +When equipped with Illusion Ring: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level of Illusion Infiltrator is +9 or higher: +Increases Critical Damage by 10%. +-------------------------- +Refine Level of Illusion Infiltrator is +11 or higher: +Increases Physical Damage against enemies of Brute race by 25%. +-------------------------- +Type: Katar +Attack: 200 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +28023# +A katar crafted from a ghoul's femur that still radiates a dark, death aura. +-------------------------- +Adds a 4% chance of transforming the user into Ghoul for 6 seconds when performing melee physical attack. +During transformation: +Wielder's element changed to Undead. +Enables Endure effect. +-------------------------- +Type: Katar +Attack: 220 +Weight: 170 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +28024# +Katar for Guillotine crosses who are somewhat used to dealing with Katar. +When equipped with Enhanced Time Keeper Armor, will makes wearer's body more agile. +-------------------------- +Increases damage of Rolling Cutter by 20%. +-------------------------- +For every 10 Base Level: +ATK +6 (Up to Base Level 160). +-------------------------- +Refine Level +7: +For each Level of Katar Mastery: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +When equipped with Enhanced Time Keeper Hat, Enhanced Time Keeper Robe, nhanced Time Keeper Manteau, Enhanced Time Keeper Boots: +ASPD +2, +MaxHP and MaxSP +10% + +For every 10 Base VIT: +Decreases damage taken from Neutral elemental attacks by 3%. +(up to Base VIT 100) + +For every 10 Base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +(up to Base AGI 100) + +For every 10 Base DEX: +HIT +3 +(up to Base DEX 100) + +For every 10 Base LUK: +Critical +3 +(up to Base LUK 100) +-------------------------- +Type: Katar +Attack: 180 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +28026# +Jamadhar that has the strength to hold the power of Neve. +-------------------------- +MATK +250 +-------------------------- +Base Level at least 175: +ATK +5%, MATK +5% +-------------------------- +When equipped with Neev Barrette: +For each 10 base STR: +ATK +1% + +For each 10 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 1%). + +For each 10 base VIT: +MaxHP +1% + +For each 10 base INT: +MATK +20 + +For each 10 base DEX: +Decreases Variable Casting Time by 1%. + +For each 10 base LUK: +Critical +1 + +For each Refine Level of Neev Jamadhar: +ATK +20, MATK +20 +-------------------------- +Type: Katar +Attack: 150 +Weight: 280 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Guillotine Cross +# +28027# +Katar specially made for beginner Guillotine Cross. +It will show it's true ability when equipped together with Beginner armor set. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +7: +Increases Critical Damage by 7%. +-------------------------- +When equipped with Beginner's Hat, Beginner's Suit, Beginner's Manteau, Beginner's Boots and Beginner's Ring: +ASPD +1 +ATK +5% +-------------------------- +For each 10 Base Level: +ATK +3 (up to Base Level 150) +-------------------------- +Type: Katar +Attack: 170 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +28033# +A katar received from suspicious weapon dealer Brute. +-------------------------- +Increases Physical Damage against Players by 60%. +-------------------------- +Decreases damage taken from Players by 30%. +-------------------------- +For each Refine Level: +Ignores physical defense of every race by 5%. +-------------------------- +Refine Level +8: +Increases Magical Damage against Players by additional 35%. +-------------------------- +Refine Level +9: +Increases Magical Damage against Players by additional 20%. +-------------------------- +Refine Level +10: +MaxHP +15% +MaxSP +15% +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's and moved to the storage. +-------------------------- +Type: Katar +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +28037# +A weapon that has been transformed by the magical power of a stranger. +Even if they look the same, their performance is different. +-------------------------- +MATK +250 +-------------------------- +Decreases damage taken from Players by 30%. +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by 5%. +-------------------------- +Refine Level +9: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Katar +Attack: 150 +Weight: 280 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +Guillotine Cross +# +28038# +Katar with black blades that engraved with turquoise colored motif. +-------------------------- +ATK +3% +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases damage of Cross Ripper Slasher by 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Small and Medium size by 20%. +-------------------------- +Type: Katar +Attack: 190 +Weight: 130 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Guillotine Cross +# +28039# +Katar specially made to inflict lethal damage, it was once used by famous assassin in the past. +It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Critical Damage by 4%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Demi-Human and Brute race by 15%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Demi-Human and Brute race by 20%. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase LUK +20 and critical damage +10% for 7 sec when dealing physical damage. +-------------------------- +Type: Katar +Attack: 185 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +28040# +Katar specially made to inflict lethal damage, it was once used by famous assassin in the past. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Critical Damage by 4%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Demi-Human and Brute race by 15%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Demi-Human and Brute race by 20%. +-------------------------- +Type: Katar +Attack: 185 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 99 +Guillotine Cross +# +28042# +A Katar with an unusual form. +-------------------------- +ATK +5% +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +9: +Increases damage of Rolling Cutter by 30%. +-------------------------- +Refine Level +11: +Increases damage of Cross Ripper Slasher by 20%. +-------------------------- +Type: Katar +Attack: 250 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Guillotine Cross +# +28044# +Katar with a sharp blade. +-------------------------- +Increases Critical Damage by 5%. +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by 15%. +-------------------------- +Refine Level +11: +ATK +7% +Indestructible in battle +-------------------------- +Type: Katar +Attack: 270 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Guillotine Cross +# +28045# +This tool, which used to cut all kinds of metals in the Einbech mine +thanks to it's excellent cutting power, has been improved for combat. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Rolling Cutter by 10%. +-------------------------- +Refine Level +7: +ATK +60 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases damage of Rolling Cutter by additional 15%. +Physical attacks have a chance to increase physical damage against all size enemies by 20% for 10 seconds. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 20%. +-------------------------- +Type: Katar +Attack: 300 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Guillotine Cross +# +28046# +A beautiful Katar used in the Glastheim as decoration. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +ATK +5% +-------------------------- +For each Refine Level: +ATK +5 +-------------------------- +Refine Level +9: +Increases damage of Rolling Cutter and Cross Ripper Slasher by 20%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +ATK +30 +Physical attacks have a chance to increase Ranged Physical Damage by 20% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Physical Damage against enemies of Holy and Undead elemental by 20%. +-------------------------- +Type: Katar +Attack: 200 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Guillotine Cross +# +28100# +An axe sculpted from Gray Shard to counter Magic Sword Tartanos. +It offers incredible power and magic at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +80 +-------------------------- +Adds a low chance of regaining HP and SP from 5% of your damage inflicted when dealing physical damage. +-------------------------- +Drains 100 HP every 10 seconds. +Drains 1,000 HP when unequipped. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Axe +Attack: 300 +Weight: 400 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Swordsman and Merchant +# +28101# +Axe with attached blossom shaped like tornado. +-------------------------- +Decreases Axe Tornado skill cooldown by 1 second. +-------------------------- +Type: Two-Handed Axe +Attack: 320 +Weight: 400 +Element: Wind +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rune Knight, Royal Guard, Mechanic and Genetic +# +28103# +Blue Axe which has destructive power. +-------------------------- +STR +5 +VIT +5 +-------------------------- +When VIP status active: +ATK +20%. +ASPD +3 +-------------------------- +Type: Two-Handed Axe +Attack: 370 +Weight: 300 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +28104# +Gold Axe which has destructive power. +-------------------------- +STR +8 +VIT +8 +-------------------------- +Type: Two-Handed Axe +Attack: 330 +Weight: 300 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 120 +Mechanic +# +28105# +This weapon contains a strange energy. +I feel that one of its benefits were sealed with a high cost. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Axe +Attack: 265 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Swordsman and Merchant +# +28106# +Two-Handed axe that emitting red aura. +-------------------------- +ATK increased by (RefineLv*RefineLv), up to +15 Refine Level. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Axe +Attack: 200 +Weight: 200 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Swordsman and Merchant +# +28107# +Two Handed Axe imbued with Vicious Mind. +-------------------------- +Increases ATK by (Refinelv*Refinelv). +(up to +15 Refine Level) +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Axe +Attack: 250 +Weight: 250 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 160 +Swordsman and Merchant +# +28108# +A hammer that was acquired from defeating the demon god and it's followers. +-------------------------- +Refine Level +5: +Increases Damage against Demon Morocc monsters by 40%. +Decreases damage taken from Demon Morocc monsters by 10%. +-------------------------- +Refine Level +7: +Increases Damage against Demon Morocc monsters by additional 60%. +Decreases damage taken from Demon Morocc monsters by additional 20%. +-------------------------- +Refine Level +9: +Increases Damage against Demon Morocc monsters by additional 80%. +Decreases damage taken from Demon Morocc monsters by additional 40%. +-------------------------- +Type: Two-Handed Axe +Attack: 125 +Weight: 135 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Swordsman and Merchant classes +# +28109# +A mysterious axe body rotates violently and causes a storm. +It is said that the stronger the force of the wind that winds, the stronger the force of the axe. +-------------------------- +Decreases damage taken from Medium size by 10%. +-------------------------- +Decreases Axe Tornado skill cooldown by 1 second. +-------------------------- +For each Refine Level: +Decreases damage taken from Medium size by additional 1%. +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Type: Two-Handed Axe +Attack: 320 +Weight: 400 +Element: Wind +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +3rd Swordsman and 3rd Merchant classes +# +28110# +A certified kingdom equipment for adventurer. +-------------------------- +Increases ATK by (Refine*Refine*1.25) +-------------------------- +Type: Two-Handed Axe +Attack: 190 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Swordsman and Merchant +# +28111# +Equipment made to survive Malangdo Island. +An excellent product that can hold Malangdo enchantments and sells at unexpectedly high price. +-------------------------- +Increases Damage against monsters in Malangdo Culvert and Octopus Cave by 50%. +Decreases damage taken from Malangdo Culvert and Octopus Cave monsters by 30%. +-------------------------- +Type: Two-Handed Axe +Attack: 125 +Weight: 135 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Swordsman and Merchant classes +# +28112# +A two-handed axe given by the king. +It seems to have the effect of calming the souls of the dead. +-------------------------- +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by 40%. +-------------------------- +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by 5%. +-------------------------- +Refine Level +5: +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by additional 30%. +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by additional 5%. +-------------------------- +For each Refine Level equal or above +6: +Increases Physical Damage against enemies in Bio Lab and Tomb of the Fallen by additional 15%. +Decreases damage taken from Bio Lab and Tomb of the Fallen monsters by additional 1% +-------------------------- +Type: Two-Handed Axe +Attack: 200 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Swordman classes and Merchant classes +# +28113# +A metallic Two-Handed Axe made of Oridecon created for experienced adventurers. +-------------------------- +Increases damage of Axe Tornado by 10%. +-------------------------- +Indestructible in battle +-------------------------- +For each Refine Level: +ATK +9 +-------------------------- +For each 10 Base Level: +ATK +8 (Applies up to Base Level 150) +-------------------------- +Type: Two-Handed Axe +Attack: 130 +Weight: 0 +Weapon Level: 3 +Enchantable: Yes +Enchanter: [Jumping Enchant Specialist]prontera,151,187,0,100,0,0 +-------------------------- +Requirement: +Base Level 100 +Swordsman and Merchant +# +28114# +An axe made out of the metal which the Ancient God of Blacksmiths gave to humans. +-------------------------- +VIT +2 +-------------------------- +Random chance to auto-cast Level 3 Magnum Break when using Hammer Fall. +-------------------------- +ATK +10 for each mastered Forging skill. +(Smith Dagger, Smith Sword, Smith Two-Handed Sword, Smith Axe, Smith Mace, Smith Brass Knuckle and Smith Spear) +-------------------------- +When equipped with Heroic Boots: +ATK +10 for each mastered Forging skill. +(Smith Dagger, Smith Sword, Smith Two-Handed Sword, Smith Axe, Smith Mace, Smith Brass Knuckle and Smith Spear) + +For each Level of Fire Earth Research: +Decreases Axe Tornado skill cooldown by 0.2 seconds. +-------------------------- +When equipped with Ring of Brave and Heroic Boots: +Decreases Axe Tornado skill cooldown by additional 0.5 seconds. +Random chance to drop Mastela Fruit when defeating monsters. + +Refine Level of Veteran Axe is +7 or higher: +Increases damage of Axe Tornado by 20%. + +Refine Level of Veteran Axe is +9 or higher: +Increases damage of Axe Tornado by additional 40%. +-------------------------- +Type: Two-Handed Axe +Attack: 250 +Weight: 300 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 80 +Merchant +# +28115# +A dark-stained weapon made by those who died on the battlefield. +Although it is a two-handed weapon, it has high defense against human races. +-------------------------- +Increases Physical Damage against enemies in Demi-Human race by 40%. +-------------------------- +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +Refine Level +5: +Increases Physical Damage against enemies in Demi-Human race by additional 20%. +Decreases damage taken from Demi-Human race by additional 10%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies in Demi-Human race by additional 15% +Decreases damage taken from Demi-Human race by additional 10%. +Slaughter Lv2 +-------------------------- +Refine Level +9: +Increases damage of Axe Tornado and Power Swing by 20%. +-------------------------- +Indestructible in battle +-------------------------- +Can be sold to NPC. +-------------------------- +Type: Two-Handed Axe +Attack: 220 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +3rd Swordsman and 3rd Merchant classes +# +28116# +A pickaxe used by gold mine miner. Quite heavy, but has great attack power. +-------------------------- +Random chance to increase Critical by 20 for 7 seconds when dealing melee physical attacks. +-------------------------- +Refine Level +7: +Increases Critical Damage by 5%. +-------------------------- +Refine Level +9: +Increases Critical Damage by 10%. +-------------------------- +Type: Two-Handed Axe +Attack: 300 +Weight: 400 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +28117# +A weapon of unknown origin that contains the magic of the labyrinth. +It is unclear what kind of material it is made of, and the same weapons have different performances. +-------------------------- +MATK +200 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Baphomet Card: +Increases Physical Damage by 10%. +Normal attacks inflicts splash damage. +-------------------------- +Type: Two-Handed Axe +Attack: 320 +Weight: 400 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +3rd Swordsman and 3rd Merchant classes +# +28118# +A Diva Two-Handed Axe that has mutated under the influence of the power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +Attack Range: 5 cells +-------------------------- +MATK +200 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: Two-Handed Axe +Attack: 320 +Weight: 400 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +3rd Swordsman and 3rd Merchant classes +# +28119# +A two-handed ax with an evil spirit. +-------------------------- +For each Refine Level: +ATK +1 +-------------------------- +Type: Two-Handed Axe +Attack: 250 +Weight: 110 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +3rd Swordsman and 3rd Merchant classes +# +28120# +A Two-Handed Axe for mechanics who are used to handling axes. +When equipped with Enhanced Time Keeper Armor, will makes wearer's body more agile. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Axe Tornado by 20%. +-------------------------- +For every 10 Base Level: +ATK +6 (Up to Base Level 160). +-------------------------- +Refine Level +7: +For each Level of Weaponry Research: +Decreases Axe Tornado skill cooldown by 0.1 second. +-------------------------- +When equipped with Enhanced Time Keeper Hat, Enhanced Time Keeper Robe, nhanced Time Keeper Manteau, Enhanced Time Keeper Boots: +ASPD +2, +MaxHP and MaxSP +10% + +For every 10 Base VIT: +Decreases damage taken from Neutral elemental attacks by 3%. +(up to Base VIT 100) + +For every 10 Base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +(up to Base AGI 100) + +For every 10 Base DEX: +HIT +3 +(up to Base DEX 100) + +For every 10 Base LUK: +Critical +3 +(up to Base LUK 100) +-------------------------- +Type: Two-Handed Axe +Attack: 200 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +28121# +A guillotine with the strength to hold the power of Neve. +-------------------------- +MATK +110 +-------------------------- +Base Level at least 175: +ATK +5%, MATK +5% +-------------------------- +When equipped with Neev Barrette: +For each 10 base STR: +ATK +1% + +For each 10 base AGI: +Increases Attack Speed by 1%. + +For each 10 base VIT: +MaxHP +1% + +For each 10 base INT: +MATK +20 + +For each 10 base DEX: +Decreases Variable Casting Time by 1%. + +For each 10 base LUK: +Critical +1 + +For each Refine Level of Neev Guillotine: +ATK +20, MATK +20 +-------------------------- +Type: Two-Handed Axe +Attack: 180 +Weight: 400 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Mechanic +# +28122# +A buster with the strength to hold the power of Neve. +-------------------------- +MATK +110 +-------------------------- +Base Level at least 175: +ATK +5%, MATK +5% +-------------------------- +When equipped with Neev Barrette: +For each 10 base STR: +ATK +1% + +For each 10 base AGI: +Increases Attack Speed by 1%. + +For each 10 base VIT: +MaxHP +1% + +For each 10 base INT: +MATK +20 + +For each 10 base DEX: +Decreases Variable Casting Time by 1%. + +For each 10 base LUK: +Critical +1 + +For each Refine Level of Neev Guillotine: +ATK +20, MATK +20 +-------------------------- +Type: Two-Handed Axe +Attack: 180 +Weight: 350 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Genetic +# +28127# +The pickaxe of a worker who worked in the mine. +It's heavy, but its destructive power is amazing. +-------------------------- +Decreases Magma Eruption skill cooldown by 3 seconds. +-------------------------- +For each Refine Level: +VIT +1, ATK +10 +-------------------------- +Refine Level +9: +Decreases Axe Tornado skill cooldown by 1 seconds. +-------------------------- +When equipped with Frontier Boots: +Decreases Axe Tornado skill cooldown by 0.5 seconds. + +Refine Level of Frontier Boots is +7 or higher: + +Refine Level of Miner's Pickaxe is +7 or higher: +Decreases damage taken from Boss class by 30%. + +Refine Level of Miner's Pickaxe is +9 or higher: +Decreases damage taken from Boss class by additional 20%. +-------------------------- +Type: Two-Handed Axe +Attack: 300 +Weight: 400 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +3rd Swordsman and 3rd Merchant classes +# +28130# +A Two-Handed axe created by top class blacksmith whose had revenge desire. +It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Axe Tornado by 10%. +-------------------------- +Refine Level +9: +Increases damage of Axe Boomerang by 40%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of all size monsters by 15%. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase STR by 20 and ATK by 15% for 7 sec when dealing physical or magical attacks. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Axe +Attack: 270 +Weight: 600 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +28135# +A weapon mutated by the magical power of a stranger. +Even if they look the same, the performance is different. +-------------------------- +MATK +200 +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by 5%. +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Two-Handed Axe +Attack: 320 +Weight: 400 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +3rd Swordsman and 3rd Merchant classes +# +28136# +Axe with a invisible blade. +Normally you don't see the blade, but when you swing, you can see it faintly reddish. +-------------------------- +Indestructible in battle +-------------------------- +Decreases damage taken from Medium and Large size by 10%. +-------------------------- +Refine Level +7: +Decreases damage taken from Medium and Large size by additional 15%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 15%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 10%. +-------------------------- +Type: Two-Handed Axe +Attack: 400 +Weight: 450 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Mechanic +# +28137# +A Two-Handed Axe that is said to have been ground for a vengeance by a master blacksmith. +It is said that even the ability has changed due to excessive sealing. +-------------------------- +Indestructible in battle +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Power Swing by 10%. +-------------------------- +Refine Level +7: +Decreases Axe Tornado skill cooldown by 1 second. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by 15%. +-------------------------- +Type: Two-Handed Axe +Attack: 270 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 99 +Mechanic +# +28138# +A large, large spanner, which looks more like an axe with daunting size. +-------------------------- +Indestructible in battle +-------------------------- +Decreases Physical and Magical Damage taken from Small and Medium size by 10%. +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Decreases Axe Tornado and Magma Eruption skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Axe Tornado by 15%. +-------------------------- +Type: Two-Handed Axe +Attack: 340 +Weight: 450 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Mechanic +# +28140# +This saw, originally used for cutting metal, improved as a weapon for combat purposes. +Every time you swing, the sound of the engine will crush your enemies. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Arms Cannon by 10%. +-------------------------- +Indestructible in battle +-------------------------- +Refine Level +7: +ATK +60 +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 10%. +Physical attacks have a chance to increase Physical Damage against enemies of all size enemies by 15% for 5 seconds. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 20%. +-------------------------- +Type: Two-Handed Axe +Attack: 350 +Weight: 500 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Mechanic +# +28141# +A huge two-handed axe used by Glastheim Guards. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +Indestructible in battle +-------------------------- +ATK +5% +-------------------------- +Decreases damage taken from Medium and Large size by 10%. +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +9: +Increases damage of Axe Tornado and Magma Eruption by 20%. +Decreases Axe Tornado skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +ATK +30 +Physical attacks have a chance to increase Ranged Physical Damage by additional 10% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Physical Damage against enemies of Holy and Undead elemental by 20%. +-------------------------- +Type: Two-Handed Axe +Attack: 270 +Weight: 500 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Mechanic +# +28200# +This grenade launcher is praised for its great firepower. +-------------------------- +Type: Grenade Launcher +Attack: 410 +Weight: 240 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 110 +Rebellion +# +28201# +This grenade launcher is named after the Southern Cross, which symbolizes death. +-------------------------- +Random chance to auto-cast Level 1 Cross Impact on the target when dealing physical damage. +-------------------------- +Random chance to inflict Curse on the target when dealing physical damage. +-------------------------- +Type: Grenade Launcher +Attack: 480 +Weight: 200 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 141 +Rebellion +# +28202# +This grenade launcher is named after the Southern Cross, which symbolizes death. +-------------------------- +Random chance to auto-cast Level 1 Cross Impact on the target when dealing physical damage. +-------------------------- +Random chance to inflict Curse on the target when dealing physical damage. +-------------------------- +Type: Grenade Launcher +Attack: 480 +Weight: 200 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 141 +Rebellion +# +28205# +A rifle that is classified as a medium-sized assault rifle. +There is little recoil when firing, and the penetration is high. +-------------------------- +Ignores physical defense of all enemies by 70%. +-------------------------- +For each 10 base INT: +Increases damage of Hammer of God by 7%. +-------------------------- +Base INT at least 110: +Increases damage of Hammer of God by additional 30%. +-------------------------- +Type: Rifle +Attack: 170 +Weight: 85 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28206# +A tall rifle with a special treatment on the barrel. +Although it is semi-automatic, it boasts a high hit rate. +-------------------------- +HIT +10, Critical +10 +-------------------------- +For each 10 base INT: +Increases damage of Hammer of God by 7%. +-------------------------- +Base INT at least 110: +Increases damage of Hammer of God by additional 30%. +-------------------------- +Type: Rifle +Attack: 160 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28207# +A gatling gun named after the mechanism that shoots bullets like a storm. +-------------------------- +Decreases damage taken from Wind elemental attacks by 10%. +-------------------------- +For each 10 base AGI: +Increases damage of Round Trip by 7%. +-------------------------- +Base AGI at least 110: +Increases damage of Round Trip by additional 30%. +-------------------------- +Type: Gatling Gun +Attack: 120 +Weight: 250 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28208# +A modified version of a mass-produced gatling gun. +It is popular for its ease of use for mass production. +-------------------------- +Recover 3 SP when defeating monsters with physical attacks. +-------------------------- +For each 10 base AGI: +Increases damage of Round Trip by 7%. +-------------------------- +Base AGI at least 110: +Increases damage of Round Trip by additional 30%. +-------------------------- +Type: Gatling Gun +Attack: 110 +Weight: 260 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28209# +A power-oriented shotgun with a skull and crossbones engraved on it. +-------------------------- +Deals Splash Damage. +-------------------------- +Random chance to auto-cast Level 3 00Hell Judgement on the enemy when recieving physical damage. +-------------------------- +For each 10 base STR: +Increases damage of Slug Shot by 7%. +-------------------------- +Base STR at least 110: +Increases damage of Slug Shot by additional 30%. +-------------------------- +Type: Shotgun +Attack: 180 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28210# +A shotgun that enables semi-automatic continuous shooting. +Destroy the target armor with a large number of fired bullets. +-------------------------- +Deals Splash Damage. +-------------------------- +Random chance to destroy the enemy's armor when recieving physical damage. +-------------------------- +For each 10 base STR: +Increases damage of Slug Shot by 7%. +-------------------------- +Base STR at least 110: +Increases damage of Slug Shot by additional 30%. +-------------------------- +Type: Shotgun +Attack: 150 +Weight: 240 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28211# +A shotgun derived from Rolling Stone. +An electric shock effect is generated by adding a special device. +-------------------------- +MATK +130 +-------------------------- +Deals Splash Damage. +-------------------------- +Random chance to auto-cast Thunderstorm on the enemy when recieving physical damage. +Skill level is based on the refine level of Rolling Thunder. +-------------------------- +For each 10 base STR: +Increases damage of Slug Shot by 7%. +-------------------------- +Base STR at least 110: +Increases damage of Slug Shot by additional 30%. +-------------------------- +Type: Shotgun +Attack: 140 +Weight: 245 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28212# +A cross-shaped constellation that had the role of guiding sailors in the southern sky. +A grenade launcher that bears its name. +-------------------------- +Ignores physical defense of Undead and Demon race by 100%. +-------------------------- +For each 10 base LUK: +Increases damage of Dragon Tail by 7%. +-------------------------- +Base LUK at least 110: +Increases damage of Dragon Tail by additional 30%. +-------------------------- +Type: Grenade Launcher +Attack: 210 +Weight: 140 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28213# +A powerful grenade gun that is said to have the firepower to send it to the other side of death with a single blow. +-------------------------- +HIT +30 +-------------------------- +For each 10 base LUK: +Increases damage of Dragon Tail by 7%. +-------------------------- +Base LUK at least 110: +Increases damage of Dragon Tail by additional 30%. +-------------------------- +Type: Grenade Launcher +Attack: 220 +Weight: 125 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28214# +A gun used by Captain Ferlock. +-------------------------- +Refine Level +2: +Random chance to auto-cast Level 1 Soul Destroyer on the enemy when recieving physical damage. +-------------------------- +For each 2 Refine Levels: +Increases the trigger chance and casted skill level of Soul Destroyer. +-------------------------- +For each 10 base INT: +Increases damage of Hammer of God by 7%. +-------------------------- +Base INT at least 110: +Increases damage of Hammer of God by additional 30%. +-------------------------- +Type: Rifle +Attack: 200 +Weight: 60 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28215# +A special rifle modified for novice rebel. +When equipped with Enhanced Time Keeper Armor, will makes wearer's body more agile. +-------------------------- +HIT +10 +Critical +20 +-------------------------- +Increases damage of Hammer of God by 20%. +-------------------------- +For each Base Level: +ATK +6 (Upto BaseLv 160). +-------------------------- +Refine Level +7: +For each Level of Tracking: +Increases Ranged Physical Damage by 1%. +-------------------------- +When equipped with Enhanced Time Keeper Hat, Enhanced Time Keeper Robe, nhanced Time Keeper Manteau, Enhanced Time Keeper Boots: +ASPD +2, +MaxHP and MaxSP +10% + +For every 10 Base VIT: +Decreases damage taken from Neutral elemental attacks by 3%. +(up to Base VIT 100) + +For every 10 Base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +(up to Base AGI 100) + +For every 10 Base DEX: +HIT +3 +(up to Base DEX 100) + +For every 10 Base LUK: +Critical +3 +(up to Base LUK 100) +-------------------------- +Type: Rifle +Attack: 200 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28216# +A special Gatling Gun modified for novice rebel. +When equipped with Enhanced Time Keeper Armor, will makes wearer's body more agile. +-------------------------- +HIT -20 +Critical +10 +ASPD +1 +-------------------------- +Increases damage of Fire Rain by 20%. +-------------------------- +For each Base Level: +ATK +6 (Upto BaseLv 160). +-------------------------- +Refine Level +7: +For each Level of Gatling Fever: +Increases Ranged Physical Damage by 1%. +-------------------------- +When equipped with Enhanced Time Keeper Hat, Enhanced Time Keeper Robe, nhanced Time Keeper Manteau, Enhanced Time Keeper Boots: +ASPD +2, +MaxHP and MaxSP +10% + +For every 10 Base VIT: +Decreases damage taken from Neutral elemental attacks by 3%. +(up to Base VIT 100) + +For every 10 Base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +(up to Base AGI 100) + +For every 10 Base DEX: +HIT +3 +(up to Base DEX 100) + +For every 10 Base LUK: +Critical +3 +(up to Base LUK 100) +-------------------------- +Type: Gatling Gun +Attack: 180 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28217# +A special Granade Launcher modified for novice rebel. +When equipped with Enhanced Time Keeper Armor, will makes wearer's body more agile. +-------------------------- +Increases damage of Dragon Tail by 20%. +-------------------------- +For each Base Level: +ATK +6 (Upto BaseLv 160). +-------------------------- +Refine Level +7: +For each Level of Ground Drift: +Increases Ranged Physical Damage by 1%. +-------------------------- +When equipped with Enhanced Time Keeper Hat, Enhanced Time Keeper Robe, nhanced Time Keeper Manteau, Enhanced Time Keeper Boots: +ASPD +2, +MaxHP and MaxSP +10% + +For every 10 Base VIT: +Decreases damage taken from Neutral elemental attacks by 3%. +(up to Base VIT 100) + +For every 10 Base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +(up to Base AGI 100) + +For every 10 Base DEX: +HIT +3 +(up to Base DEX 100) + +For every 10 Base LUK: +Critical +3 +(up to Base LUK 100) +-------------------------- +Type: Grenade Launcher +Attack: 350 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28218# +A special shotgun modified for novice rebel. +When equipped with Enhanced Time Keeper Armor, will makes wearer's body more agile. +-------------------------- +HIT -15 +-------------------------- +Deals Splash Damage. +-------------------------- +Increases damage of Shattering Storm by 20%. +-------------------------- +For each Base Level: +ATK +6 (Upto BaseLv 160). +-------------------------- +Refine Level +7: +For each Level of Dust: +Increases Ranged Physical Damage by 1%. +-------------------------- +When equipped with Enhanced Time Keeper Hat, Enhanced Time Keeper Robe, nhanced Time Keeper Manteau, Enhanced Time Keeper Boots: +ASPD +2, +MaxHP and MaxSP +10% + +For every 10 Base VIT: +Decreases damage taken from Neutral elemental attacks by 3%. +(up to Base VIT 100) + +For every 10 Base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +(up to Base AGI 100) + +For every 10 Base DEX: +HIT +3 +(up to Base DEX 100) + +For every 10 Base LUK: +Critical +3 +(up to Base LUK 100) +-------------------------- +Type: Shotgun +Attack: 180 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28219# +A dark-stained weapon made by those who died on the battlefield. +Although it is a two-handed weapon, it has high defense against human races. +-------------------------- +Increases Physical Damage against enemies in Demi-Human race by 35%. +-------------------------- +Decreases physical damage taken form Demi-Human race by 10%. +-------------------------- +For each 10 base INT: +Increases damage of Hammer of God by 7%. +-------------------------- +Base INT at least 110: +Increases damage of Hammer of God by additional 30%. +-------------------------- +Refine Level +5: +Increases Physical Damage against enemies in Demi-Human race by additional 35%. +Decreases damage taken from Demi-Human race by additional 10%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies in Demi-Human race by additional 35% +Decreases damage taken from Demi-Human race by additional 10%. +-------------------------- +Refine Level +9: +Using Piercing Shot auto-casts Level 1 Crimson Marker. +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's. +-------------------------- +Type: Rifle +Attack: 120 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28220# +A dark-stained weapon made by those who died on the battlefield. +Although it is a two-handed weapon, it has high defense against human races. +-------------------------- +Increases Physical Damage against enemies in Demi-Human race by 25%. +-------------------------- +Decreases physical damage taken form Demi-Human race by 10%. +-------------------------- +For each 10 base AGI: +Increases damage of Round Trip by 7%. +-------------------------- +Base AGI at least 110: +Increases damage of Round Trip by additional 30%. +-------------------------- +Refine Level +5: +Increases Physical Damage against enemies in Demi-Human race by additional 25%. +Decreases damage taken from Demi-Human race by additional 10%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies in Demi-Human race by additional 25% +Decreases damage taken from Demi-Human race by additional 10%. +-------------------------- +Refine Level +9: +Decreases Heat Barrel skill cooldown by 20 seconds. +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's. +-------------------------- +Type: Gatling Gun +Attack: 120 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28221# +A dark-stained weapon made by those who died on the battlefield. +Although it is a two-handed weapon, it has high defense against human races. +-------------------------- +Deals Splash Damage. +-------------------------- +Increases Physical Damage against enemies in Demi-Human race by 45%. +-------------------------- +Decreases physical damage taken form Demi-Human race by 10%. +-------------------------- +For each 10 base STR: +Increases damage of Slug Shot by 7%. +-------------------------- +Base STR at least 110: +Increases damage of Slug Shot by additional 30%. +-------------------------- +Refine Level +5: +Increases Physical Damage against enemies in Demi-Human race by additional 45%. +Decreases damage taken from Demi-Human race by additional 10%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies in Demi-Human race by additional 45% +Decreases damage taken from Demi-Human race by additional 10%. +-------------------------- +Refine Level +9: +HIT +100 +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's. +-------------------------- +Type: Shotgun +Attack: 200 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28222# +A dark-stained weapon made by those who died on the battlefield. +Although it is a two-handed weapon, it has high defense against human races. +-------------------------- +Increases Physical Damage against enemies in Demi-Human race by 30%. +-------------------------- +Decreases physical damage taken form Demi-Human race by 10%. +-------------------------- +For each 10 base LUK: +Increases damage of Dragon Tail by 7%. +-------------------------- +Base LUK at least 110: +Increases damage of Dragon Tail by additional 30%. +-------------------------- +Refine Level +5: +Increases Physical Damage against enemies in Demi-Human race by additional 30%. +Decreases damage taken from Demi-Human race by additional 10%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies in Demi-Human race by additional 30% +Decreases damage taken from Demi-Human race by additional 10%. +-------------------------- +Refine Level +9: +Random chance to decrease After Attack Delay by 20% for 5 seconds when recieving physical damage. +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's. +-------------------------- +Type: Grenade Launcher +Attack: 250 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28223# +A large sniper rifle used in war. +-------------------------- +Increases Ranged Physical Damage by 15%. +-------------------------- +Refine Level +7: +Increases damage of Mass Spiral and Anti Material Blast by 30%. +-------------------------- +Refine Level +9: +Decreases Anti Material Blast skill cooldown by 1 second. +-------------------------- +Type: Rifle +Attack: 200 +Weight: 200 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 120 +Rebellion +# +28224# +A heavy shotgun that has flaming muzzle. +-------------------------- +Deals Splash Damage. +-------------------------- +Random chance to inflict Blind status on the target when dealing physical damage. +-------------------------- +When equipped with Armor Piercing Bullet: +Increases Ranged Physical Damage by 30%. +-------------------------- +Refine Level +7: +Increases damage of Shattering Storm by 15%. +-------------------------- +Refine Level +9: +Increases damage of Banishing Buster by 15%. +-------------------------- +Type: Shotgun +Attack: 300 +Weight: 130 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 120 +Rebellion +# +28225# +When over heated, this gatling gun will turn as red as rose. +-------------------------- +Increases Ranged Physical Damage by 15%. +-------------------------- +Refine Level +7: +Increases damage of Fire Rain by 30%. +-------------------------- +Refine Level +9: +Decreases Fire Rain skill cooldown by 1 second. +-------------------------- +Type: Gatling Gun +Attack: 200 +Weight: 250 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 120 +Rebellion +# +28226# +A grenade launcher used by avengers. +-------------------------- +Increases Ranged Physical Damage by 20%. +-------------------------- +Refine Level +7: +Increases damage of Dragon Tail by 15%. +-------------------------- +Refine Level +9: +Decreases Howling Mine skill cooldown by 1 second. +-------------------------- +Type: Grenade Launcher +Attack: 350 +Weight: 180 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 120 +Rebellion +# +28227# +A weapon of unknown origin that contains the magic of the labyrinth. +It is unclear what kind of material it is made from, and even similar weapons have different performance. +-------------------------- +For each 10 base INT: +Increases damage of Hammer of God by 7%. +-------------------------- +Base INT at least 110: +Increases damage of Hammer of God by additional 30%. +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When equipped with Labyrinth Baphomet Card: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Type: Rifle +Attack: 170 +Weight: 85 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +28228# +A Diva Rifle that has mutated under the influence of the power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +For each Level of Snake Eyes: +ATK +2 +-------------------------- +For each 10 base INT: +Increases damage of Hammer of God by 7%. +-------------------------- +Base INT at least 110: +Increases damage of Hammer of God by additional 30%. +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: Rifle +Attack: 170 +Weight: 85 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +28229# +A weapon of unknown origin that contains the magic of the labyrinth. +It is unclear what kind of material it is made from, and even similar weapons have different performance. +-------------------------- +For each 10 base AGI: +Increases damage of Round Trip by 7%. +-------------------------- +Base AGI at least 110: +Increases damage of Round Trip by additional 30%. +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When equipped with Labyrinth Baphomet Card: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Type: Gatling Gun +Attack: 120 +Weight: 250 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +28230# +A Diva Gatling Gun that has mutated under the influence of the power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +For each 10 base AGI: +Increases damage of Round Trip by 7%. +-------------------------- +Base AGI at least 110: +Increases damage of Round Trip by additional 30%. +-------------------------- +For each Level of Snake Eyes: +ATK +2 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: Gatling Gun +Attack: 120 +Weight: 250 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +28231# +A weapon of unknown origin that contains the magic of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +For each 10 base LUK: +Increases damage of Dragon Tail by 7%. +-------------------------- +Base LUK at least 110: +Increases damage of Dragon Tail by additional 30%. +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When equipped with Labyrinth Baphomet Card: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Type: Grenade Launcher +Attack: 210 +Weight: 140 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +28232# +A Diva Grenade Gun that has mutated under the influence of the power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +For each 10 base LUK: +Increases damage of Dragon Tail by 7%. +-------------------------- +Base LUK at least 110: +Increases damage of Dragon Tail by additional 30%. +-------------------------- +For each Level of Snake Eyes: +ATK +2 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: Grenade Launcher +Attack: 210 +Weight: 140 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +28233# +A weapon of unknown origin with the magical power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +Deals Splash Damage. +-------------------------- +For each 10 base STR: +Increases damage of Slug Shot by 7%. +-------------------------- +Base STR at least 110: +Increases damage of Slug Shot by additional 30%. +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: Shotgun +Attack: 180 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +28234# +A Diva Shotgun that has mutated under the influence of the power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +Deals Splash Damage. +-------------------------- +For each 10 base STR: +Increases damage of Slug Shot by 7%. +-------------------------- +Base STR at least 110: +Increases damage of Slug Shot by additional 30%. +-------------------------- +For each Level of Snake Eyes: +ATK +2 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: Shotgun +Attack: 180 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +28235# +A rifle with the strength to hold the power of Neve. +-------------------------- +Base Level at least 175: +ATK +5%, MATK +5% +-------------------------- +For each 10 base INT: +Increases damage of Hammer of God by 7%. +-------------------------- +Base INT at least 110: +Increases damage of Hammer of God by additional 30%. +-------------------------- +When equipped with Neev Barrette: +For each 10 base STR: +Increases Physical Damage by 1%. + +For each 10 base AGI: +Increases Attack Speed by 1%. + +For each 10 base VIT: +MaxHP +1% + +For each 10 base INT: +MATK +20 + +For each 10 base DEX: +Decreases Variable Casting Time by 1%. + +For each 10 base LUK: +Critical +1 + +For each Refine Level of Neev Rifle: +ATK +20, MATK +20 +-------------------------- +Type: Rifle +Attack: 170 +Weight: 85 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Rebellion +# +28240# +This rifle is mainly used by small groups. +Compared to other rifle firearms, it is said to be lighter than other rifle weapons. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +Increases Critical Damage by 15%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by additional 5%. +-------------------------- +Type: Rifle +Attack: 230 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +28241# +This gatling gun is mainly used by small groups. +It is said that it is rather heavy for the general public. +-------------------------- +DEX +2 +ATK +2% +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +7: +Increases damage of Round Trip by 20%. +-------------------------- +Refine Level +9: +Decreases SP Consumption of Round Trip by 5%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by additional 5%. +-------------------------- +Type: Gatling Gun +Attack: 220 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +28242# +This shotgun is mainly used by small groups. +The design is quite sophisticated and has a good feeling. +-------------------------- +Deals Splash Damage. +-------------------------- +MaxSP +2% +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +7: +Increases damage of Banishing Buster by 20%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 5%. +-------------------------- +Refine Level +12: +Decreases SP Consumption of Banishing Buster by 15%. +-------------------------- +Type: Shotgun +Attack: 305 +Weight: 140 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +28243# +This grenade launcher is mainly used for small groups. +It is said that it has a strong firepower among grenade launchers. +-------------------------- +DEX +2 +ATK +2% +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +Increases damage of Dragon Tail by 15%. +-------------------------- +Refine Level +12: +Increases damage of Dragon Tail by additional 15%. +-------------------------- +Type: Grenade Launcher +Attack: 360 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +28244# +The original Gatekeeper's barrel is made of Oridecon. +Considerable durability and reliability is enough to bounce the flying bullets. +-------------------------- +Deals Splash Damage. +-------------------------- +DEX +1 +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 15%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 5%. +-------------------------- +Refine Level +11: +When dealing long Ranged Physical Damage, has a chance to auto-cast Spread Attack Level 6. +(If user has higher Level, that Level will be auto-cast instead). +-------------------------- +When equipped with Illusion Hot-blooed Headband: +ATK +10% +-------------------------- +Refine Level of Illusion Hot-blooed Headband and Illusion Gate Keeper-DD each is +7 or higher: +ASPD +2 +-------------------------- +Total Refine Level of entire set at least +18: +Increases Ranged Physical Damage by additional 10%. +-------------------------- +Total Refine Level of entire set at least +22: +Increases damage of Spread Attack damage by 30%. +-------------------------- +Type: Shotgun +Attack: 240 +Weight: 130 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Rebellion +# +28245# +A Rifle received from suspicious weapon dealer Brute. +-------------------------- +Increases Physical Damage against Players by 60%. +-------------------------- +Decreases damage taken from Players by 30%. +-------------------------- +For each 10 base INT: +Increases damage of Hammer of God by 7%. +-------------------------- +Base INT at least 110: +Increases damage of Hammer of God by additional 30%. +-------------------------- +For each Refine Level: +Ignores physical defense of every race by 5%. +-------------------------- +Refine Level +8: +Increases Magical Damage against Players by additional 35%. +-------------------------- +Refine Level +9: +Increases Magical Damage against Players by additional 20%. +-------------------------- +Refine Level +10: +MaxHP +15% +MaxSP +15% +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's and moved to the storage. +-------------------------- +Type: Rifle +Attack: 170 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28246# +A Gatling Gun received from suspicious weapon dealer Brute. +-------------------------- +Increases Physical Damage against Players by 50%. +-------------------------- +Decreases damage taken from Players by 30%. +-------------------------- +For each 10 base AGI: +Increases damage of Round Trip by 7%. +-------------------------- +Base AGI at least 110: +Increases damage of Round Trip by additional 30%. +-------------------------- +For each Refine Level: +Ignores physical defense of every race by 5%. +-------------------------- +Refine Level +8: +Increases Magical Damage against Players by additional 35%. +-------------------------- +Refine Level +9: +Increases Magical Damage against Players by additional 20%. +-------------------------- +Refine Level +10: +MaxHP +15% +MaxSP +15% +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's and moved to the storage. +-------------------------- +Type: Gatling Gun +Attack: 120 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28247# +A Shotgun received from suspicious weapon dealer Brute. +-------------------------- +Deals splash damage. +-------------------------- +Increases Physical Damage against Players by 80%. +-------------------------- +Decreases damage taken from Players by 30%. +-------------------------- +For each 10 base STR: +Increases damage of Slug Shot by 7%. +-------------------------- +Base STR at least 110: +Increases damage of Slug Shot by additional 30%. +-------------------------- +For each Refine Level: +Ignores physical defense of every race by 5%. +-------------------------- +Refine Level +8: +Increases Magical Damage against Players by additional 35%. +-------------------------- +Refine Level +9: +Increases Magical Damage against Players by additional 20%. +-------------------------- +Refine Level +10: +MaxHP +15% +MaxSP +15% +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's and moved to the storage. +-------------------------- +Type: Shotgun +Attack: 180 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28248# +A grenade launcher received from suspicious weapon dealer Brute. +-------------------------- +Increases Physical Damage against Players by 50%. +-------------------------- +Decreases damage taken from Players by 30%. +-------------------------- +For each 10 base LUK: +Increases damage of Dragon Tail by 7%. +-------------------------- +Base LUK at least 110: +Increases damage of Dragon Tail by additional 30%. +-------------------------- +For each Refine Level: +Ignores physical defense of every race by 5%. +-------------------------- +Refine Level +8: +Increases Magical Damage against Players by additional 35%. +-------------------------- +Refine Level +9: +Increases Magical Damage against Players by additional 20%. +-------------------------- +Refine Level +10: +MaxHP +15% +MaxSP +15% +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's and moved to the storage. +-------------------------- +Type: Grenade Launcher +Attack: 210 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28249# +A weapon that has been mutated by receiving the magical power of a stranger. +Even if they look the same, their performance is different. +-------------------------- +Decreases damage taken from Players by 30%. +-------------------------- +For each 10 base INT: +Increases damage of Hammer of God by 7%. +-------------------------- +Base INT at least 110: +Increases damage of Hammer of God by additional 30%. +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +Refine Level +9: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Rifle +Attack: 170 +Weight: 85 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +Rebellion +# +28250# +A weapon that has been mutated by receiving the magical power of a stranger. +Even if they look the same, their performance is different. +-------------------------- +Decreases damage taken from Players by 30%. +-------------------------- +For each 10 base AGI: +Increases damage of Round Trip by 7%. +-------------------------- +Base AGI at least 110: +Increases damage of Round Trip by additional 30%. +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +Refine Level +9: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Gatling Gun +Attack: 120 +Weight: 250 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +Rebellion +# +28251# +A weapon that has been mutated by receiving the magical power of a stranger. +Even if they look the same, their performance is different. +-------------------------- +Deals Splash Damage. +-------------------------- +Decreases damage taken from Players by 30%. +-------------------------- +For each 10 base STR: +Increases damage of Slug Shot by 7%. +-------------------------- +Base STR at least 110: +Increases damage of Slug Shot by additional 30%. +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +Refine Level +9: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Shotgun +Attack: 180 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +Rebellion +# +28252# +A weapon that has been mutated by receiving the magical power of a stranger. +Even if they look the same, their performance is different. +-------------------------- +Decreases damage taken from Players by 30%. +-------------------------- +For each 10 base LUK: +Increases damage of Dragon Tail by 7%. +-------------------------- +Base LUK at least 110: +Increases damage of Dragon Tail by additional 30%. +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +Refine Level +9: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Grenade Launcher +Attack: 210 +Weight: 140 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +Rebellion +# +28253# +Sniper rifle with the ability to induce satellite attacks. +-------------------------- +ATK +3% +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +9: +Increases damage of Hammer of God by 20%. +-------------------------- +Refine Level +11: +Decreases Hammer of God skill cooldown by 5 seconds. +-------------------------- +Type: Rifle +Attack: 250 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Rebellion +# +28254# +Rotating motorized firearm. +Its power was so great that it was named \ +. +-------------------------- +For each 15 base STR: +Increases Ranged Physical Damage by 2%. +-------------------------- +For each Refine Level: +ATK +10 +-------------------------- +Refine Level +7: +Increases damage of Fire Rain by 20%. +-------------------------- +Refine Level +9: +Increases damage of Round Trip by 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Animal and Angel by 30%. +-------------------------- +When equipped with Illusion Boots: +ATK +10% +-------------------------- +Refine Level of Illusion Boots and Illusion Butcher is +7 or higher: +Increases Ranged Physical Damage by additional 5%. +-------------------------- +Total Refine Level of entire set at least +18: +Increases damage of Fire Rain by 20%, +Decreases Fire Rain skill cooldown by 2 seconds. +-------------------------- +Total Refine Level of entire set at least +22: +Using Round Trip has a chance to increase ATK by 50 and Increases Physical Damage against enemies of Brute and Demon race by 50% for 10 seconds. +-------------------------- +Type: Gatling Gun +Attack: 210 +Weight: 250 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Gunslinger classes +# +28255# +A rifle with the power of the soul used by those who have reached the Level of Gunmaster, which can handle all firearms skillfully. +It resonates with Ancient Hero's Boots. +-------------------------- +MATK +210 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +7: +ASPD +1 +MATK +5% +-------------------------- +Refine Level +9: +Random chance to auto cast Soul Strike Lv.10 when dealing Ranged Physical Damage. +-------------------------- +Refine Level +11: +Increases the chance to auto cast Soul Strike and also auto casts Soul Expansion Lv.3 when dealing Ranged Physical Damage. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase INT by 20 and Magical Damage with Ghost element by 10% for 7 seconds when dealing magical damage. +-------------------------- +Type: Rifle +Attack: 150 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28256# +A shotgun with the power of the soul used by those who have reached the Level of Gunmaster, which can handle all firearms skillfully. +It resonates with Ancient Hero's Boots. +-------------------------- +Deals Splash Damage. +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 3%. +-------------------------- +For each 3 Refine Levels: +MaxSP +2% +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Boss class by 10%. +-------------------------- +Refine Level +9: +ATK +50 +After using Platinum Altar, Increases Ranged Physical Damage by 10% for 90 seconds. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Undead and Demon race by 15%. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase DEX by 20 and long Ranged Physical Damage by 10% for 7 sec when dealing physical damage. +-------------------------- +Type: Shotgun +Attack: 275 +Weight: 140 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28257# +A golden grenade launcher with the power of the soul used by those who have reached the Level of Gunmaster, which can handle all firearms skillfully. +It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 3%. +-------------------------- +For each 3 Refine Levels: +ATK +15 +-------------------------- +Refine Level +7: +Increases damage of Dragon Tail by 15%. +-------------------------- +Refine Level +9: +Decreases Dragon Tail skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Dragon Tail by additional 15%. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase DEX by 20 and long Ranged Physical Damage by 10% for 7 sec when dealing physical damage. +-------------------------- +Type: Grenade Launcher +Attack: 320 +Weight: 210 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28258# +A black gatling gun with the power of the soul used by those who have reached the Level of Gunmaster, which can handle all firearms skillfully. +It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +7: +Increases damage of Round Trip by 15%, +Increases SP Consumption of Round Trip by 10%. +-------------------------- +Refine Level +9: +ATK +50 +After using Platinum Altar, Increases Ranged Physical Damage by 10% for 90 seconds. +-------------------------- +Refine Level +11: +Increases damage of Round Trip by additional 15%. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase DEX by 20 and long Ranged Physical Damage by 10% for 7 sec when dealing physical damage. +-------------------------- +Type: Gatling Gun +Attack: 205 +Weight: 270 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +28300# +Pocket Knife is said to have been equipped by a famous ninja. +It seems that it was also used as a sword in case of emergency. +-------------------------- +VIT +1, LUK +1 +MDEF +1 +-------------------------- +When equipped with Shinobi Sash: +MaxSP +100 +Increases damage of Shadow Slash by 50%. +Decreases SP Consumption of Shadow Slash by3 +-------------------------- +When equipped with Ninja Suit: +MaxHP +100 +Decreases SP Consumption of Shadow Slash by3 +-------------------------- +Type: Accessory +Defense: 3 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 75 +Ninja +# +28301# +A treasure of the Fuma clan. +The power of Fuma is put into it. +-------------------------- +When equipped with Shinobi Sash: +MaxSP +100 +Increases damage of Throw Huuma Shuriken by 50%. +Decreases SP Consumption of Throw Huuma Shuriken by 5. +-------------------------- +When equipped with Ninja Suit: +MaxHP +100 +Decreases SP Consumption of Throw Huuma Shuriken by3 +-------------------------- +Type: Accessory +Defense: 3 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 75 +Ninja +# +28302# +An object which seems to be part of the Vesper. Possesses a mysterious power that enables its owner to clear his mind. +-------------------------- +INT +2 +MaxSP +5% +DEF +1 +MDEF +3 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +28303# +An object which seems to be part of the Vesper. Possesses a mysterious power that grants great strength to its owner. +-------------------------- +STR +3 +ATK +10 +DEF +1 +MDEF +3 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +28304# +An object which seems to be part of the Vesper. Possesses a mysterious power that grants agility to he who wears it. +-------------------------- +AGI +3 +FLEE +5 +DEF +1 +MDEF +3 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +28305# +An object which seems to be part of the Vesper. Possesses a mysterious power that endows the owner with greater accuracy and dexterity. +-------------------------- +DEX +3 +HIT +10 +DEF +1 +MDEF +3 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +28306# +An Earring blessed by luna. +-------------------------- +All Stats +1 +DEF +5 +MDEF +2 +-------------------------- +Random chance to auto-cast Level 5 Tarot Card of Fate when dealing physical or magical attack. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +28307# +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +28308# +A ring that honors those who have obtained all the treasures of the ancient ruins. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +28309# +A necklace made by condensing the magic of the stars and moon. +-------------------------- +All Stats +2 +-------------------------- +MaxHP +10% +-------------------------- +Increases damage against all enemies by 7%. +-------------------------- +Type: Accessory +Defense: 1 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +28310# +Sarah's Left Earring. Enables wearer to use Sarah's power. +-------------------------- +Enables the use of Level 1 Heal. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 145 +# +28311# +Sarah's Right Earring. Enables wearer to use Sarah's power. +-------------------------- +Enables the use of Level 1 Teleport. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 145 +# +28312# +A beautiful ring made of platinum. +It looks good with the dress. +-------------------------- +LUK +2 +MDEF +3 +-------------------------- +When equipped with Wedding Veil, Crystal Pumps and Wedding Dress: +MDEF +3 + +For each Refine Level of Wedding Veil: +MDEF +1 + +For each Refine Level of Crystal Pumps: +MDEF +1 + +For each Refine Level of Wedding Dress: +MDEF +1 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 36 +# +28313# +Surgical gloves allegedly used by surgeons who are said to have God's arms. +He is proud of his skill, but he is not allowed to move on the spot no matter what happens until the surgery is completed. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 1%). +ATK +10 +FLEE -10 +-------------------------- +When equipped with Scalpel: +Increases Attack Speed (Decreases After Attack Delay by additional 4%). +ATK +20 +-------------------------- +When equipped with Scalpel and Green Operation Court: +Increases the chance a defeated Demi-Human or Brute race will drop Immortal Heart or Alcohol. +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +28314# +An adipocere hand that is said to bring glory to what you have. +-------------------------- +HIT +10 +-------------------------- +When equipped with Cursed Hand: +HIT +10 +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +All Jobs except Novice +# +28319# +A cute tail that makes you look like a demon. Be careful of demons who lost their tails... they might haunt you in order to get yours! +-------------------------- +When equipped with Horn of Ancient: +Decreases damage taken from Boss class by 10%. +-------------------------- +When equipped with Horn of Succubus: +LUK +2 +Physical attacks have a random chance to transform into \ + for 5 seconds. +While transforming: Recover SP by 5 for each physical attack. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +28320# +Representation of Assassin's Despair was made into this necklace. +-------------------------- +ASPD +1 +-------------------------- +When equipped with Assassin Skull Mask: +Increases Physical Damage against enemies of Demi-Human race by 10%. +-------------------------- +When equipped with Assassin Shoes: +For each Refine Level of Assassin Shoes: +Increases Physical Damage against enemies of Demi-Human race by 1%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +28321# +Accessory for Falcon that can Increases Blizz Beat damage. +-------------------------- +DEX +1 +DEF +5 +-------------------------- +For each Level of Steel Crow: +Increases damage of Blitz Beat by 10%. +-------------------------- +When equipped with Falconer Flute: +Increases damage of Blitz Beat by 100%. +-------------------------- +When equipped with Falconer Glove: +For each Level of Beast Bane: +Decreases SP Consumption by 2%. +-------------------------- +When equipped with Falconer Flute and Falconer Glove: +Increases damage of Blizz Beat by 200%. +-------------------------- +When equipped with Flying Galapago: +Decreases damage inflicted with Blitz Beat by 200%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +Hunter +# +28322# +A protective glove that can protect wearer's hand from Falcon's sharp claw. +-------------------------- +DEX +1 +DEF +5 +-------------------------- +Decreases SP Consumption by 5%. +-------------------------- +When equipped with Falconer Flute: +Increases damage of Falcon Assault by 50%. +-------------------------- +When equipped with Falconer Claw: +For each Level of Beast Bane: +Decreases SP Consumption by 2%. +-------------------------- +When equipped with Falconer Flute and Falconer Claw: +Increases damage of Blizz Beat by 200%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +Hunter +# +28323# +Gloves used to purify and lead unclean people to repentance. +-------------------------- +Random chance to auto-cast Level 1 Turn Undead when recieving physical damage. +-------------------------- +When equipped with Divine Cross: +If you learned a higher Level of Turn Undead, it will auto cast that Level instead. + +For each Refine Level equal or above +5 of Divine Corss: +Increases trigger chance of Turn Undead. +-------------------------- +Type: Accessory +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +28324# +A ring for new users who start Ragnarok. +-------------------------- +Enables the use of Level 1 Heal. +-------------------------- +The lower Level your character has, the better aquired exp when you hunt monsters. +Mazimum 100%. +The effect will disappear when Base Level 101 is reached. +-------------------------- +Type: Accessory +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +28325# +Designed with the appearance of a four-leaf clover, yellow means the autumn harvest is good, and the scenery is about to enter winter. It seems that there are other uses... +-------------------------- +MDEF +5, MaxSP +5% +-------------------------- +Decreases damage taken from Wind elemental attacks by 20%. +-------------------------- +Random chance to auto-cast Level 1 Lord of Vermillion when recieving physical damage. +-------------------------- +Type: Accessory +Defense: 5 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28326# +It seems it was broke in half during an uproar. +-------------------------- +STR +4 +-------------------------- +When equipped with Broken Chips 02: +STR +8 +INT +8 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28327# +It seems it was broke in half during an uproar. +-------------------------- +INT +4 +-------------------------- +When equipped with Broken Chips 01: +STR +8 +INT +8 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28328# +A pegasus shaped necklace. +-------------------------- +AGI +3, +DEX +1 +DEF +5 +MDEF +5 +-------------------------- +When equipped with Pegasus Badge: +ASPD +1 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +28329# +A pegasus shaped badge. +-------------------------- +DEX +2, +LUK +3 +DEF +5 +MDEF +5 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +28332# +-------------------------- +Red heart-shaped jewel-studded ring. This ring is full of love, but a little tight. +-------------------------- +LUK +20 +-------------------------- +Physical and magical attacks have a 5% chance of buffing the user for 5 seconds: +ASPD +2 +Decreases Variable Casting Time by 30%. +(When the event ends, the item bonus will be removed.) +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +28333# +MaxHP +3% +MaxSP +3% +-------------------------- +When VIP status active: +MaxHP +3% +MaxSP +3% +MATK +3% +ATK +3% +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +28334# +A badge that was made to celebrate RJC2014. +-------------------------- +Increases recovery amount gained from Slim Potion by 10%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +28335# +A drop containing the aura of fire. +-------------------------- +Increases Physical Damage against enemies of on Fire elemental by 2%. +-------------------------- +Increases Magical Damage with Fire element by 2%. +-------------------------- +Decreases damage taken from Fire elemental attacks by 1%. +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: None +# +28336# +A drop containing the aura of water. +-------------------------- +Increases Physical Damage against enemies of on Water elemental by 2%. +-------------------------- +Increases Magical Damage with Water element by 2%. +-------------------------- +Decreases damage taken from Water elemental attacks by 1%. +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: None +# +28337# +A drop containing the aura of a tree. +-------------------------- +Increases Physical Damage against enemies of on Earth elemental by 2%. +-------------------------- +Increases Magical Damage with Earth element by 2%. +-------------------------- +Decreases damage taken from Earth elemental attacks by 1%. +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: None +# +28338# +A drop containing the aura of light. +-------------------------- +Increases Physical Damage against enemies of on Holy elemental by 2%. +-------------------------- +Increases Magical Damage with Holy element by 2%. +-------------------------- +Decreases damage taken from Holy elemental attacks by 1%. +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: None +# +28339# +A drop containing the aura of darkness. +-------------------------- +Increases Physical Damage against enemies of on Shadow elemental by 2%. +-------------------------- +Increases Magical Damage with Shadow element by 2%. +-------------------------- +Decreases damage taken from Shadow elemental attacks by 1%. +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: None +# +28340# +A drop containing a healing aura. +-------------------------- +Increases Healing skills effectiveness by 2% +-------------------------- +Increases recovery amount gained from Healing skills and Restorative items by 2%. +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: None +# +28341# +Dragon Boat Festival Sachet +-------------------------- +DEF +5 +Enables the use of Level 3 Increase Agility. +ASPD +1 (Only available during event) +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +28342# +An anklet that only expert at game can wear. +-------------------------- +Critical +5 +DEF +3 +MDEF +3 +-------------------------- +When equipped with Bloody Muffler: +Critical +10 +Increases Critical Damage by 5%. + +Refine Level of Bloody Muffler is +5 or higher: +Increases Critical Damage by additional 3%. + +Refine Level of Bloody Muffler is + or higher: +Increases Critical Damage by additional 4%. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +28346# +A badge made with the motif of a star egg. +-------------------------- +MaxHP +200, MaxSP +50 +-------------------------- +When equipped with Academy Badge: +Base Level is 79 or less: +MaxHP +200, MaxSP +150 + +Base Level at least 80: +MaxHP +600, MaxSP +50 +-------------------------- +When equipped with either Academy Freshman Hat or Academy Completion Hat: +MaxHP +200, MaxSP +150 +-------------------------- +When equipped with either Academy Badge, Academy Freshman Hat or Academy Completion Hat: +MaxHP -200, MaxSP -150 +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +28347# +A brooch shaped like beautiful white wings for the Icarus members. +-------------------------- +DEX +3 +MaxSP +50 +-------------------------- +When equipped with Sniper Scarf: +Decreases SP Consumption by 25%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Sniper +# +28348# +A nice red scarf that usually wrapping around the arm. +-------------------------- +DEX +3 +MaxSP +50 +-------------------------- +When equipped with Wing of Icarus: +Decreases SP Consumption by 25%. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Sniper +# +28349# +A mechanic who was born under the cursed star made this necklace to protect himself. It is enchanted with magic to harness the power of curses. +-------------------------- +DEX +2, LUK -1 +MDEF +3 +-------------------------- +Drains 50 HP every 10 seconds. +Drains 300 HP when unequipped. +-------------------------- +Ranged physical attacks have a random chance to inflict Curse status. +-------------------------- +When equipped with Cursed Lyre: +ATK +25 +Additional 2% chance of inflicting Curse status. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 84 +Transcendent Archer +# +28350# +Belt once worn by a famous ninja. The pattern has a mysterious glow and it seems to have certain magical power. +-------------------------- +STR +1, AGI +1 +DEF +1 +MDEF +1 +-------------------------- +When equipped with Ninja Suit: +MaxHP +300 +Decreases SP Consumption by 20%. +-------------------------- +When equipped with Shinobi's Pocket Knife: +MaxSP +100 +Increases damage of Shadow Slash by 50%. +Decreases SP Consumption of Shadow Slash by3 +-------------------------- +When equipped with Wind Magic Gem: +MaxSP +100 +Increases damage of Throw Huuma Shuriken by 30%. +Decreases SP Consumption of Throw Huuma Shuriken by 5. +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +Thief and Ninja +# +28351# +It imitates the black tail worn by Wikebine in Morocc. +Unfortunately, it doesn't seem to work ... +-------------------------- +Critical +7 +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +When equipped with Wickebine's Black Cat Ears: +Increases Critical Damage by 10%. + +Refine Level of Wickebine's Black Cat Ears is +7 or higher: +Critical +5 +-------------------------- +When equipped with Black Cat Ears Beret +Random chance to transform wearer into Wild Rose for 5 seconds when dealing physical damage. +During transformation: +All Stats +8 + +For each Refine Level of Black Cat Ears Beret: +Increases the trigger chance. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 45 +# +28352# +One of Vesper's components. +-------------------------- +DEF +1 +MDEF +3 +MATK +5% +-------------------------- +When equipped with Memory of Lover: +MaxSP +5% + +Every 20 Base Level: +INT +1 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28353# +One of Vesper's components. +-------------------------- +DEF +1 +MDEF +3 +ATK +5% +-------------------------- +When equipped with Memory of Lover: +MaxHP +5% + +Every 20 Base Level: +STR +1 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28354# +A guide map to center of city. +-------------------------- +Enables the use of Level 3 Increase Agility. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +28355# +A flask of holy water which shines ever so bright. +-------------------------- +Decreases damage taken from Ritual Room and Prontera Invasion Dungeon monsters by 20%. +Affected monsters: +Powerful Soldier Skeleton +Powerful Skeleton +Powerful Amdarais +Powerful Amdarais +Powerful Archer Skeleton +Bijou +Immortal Corpse +Zombie Guard +-------------------------- +Restores 100 HP and 5 SP every 10 seconds. +-------------------------- +Type: Accessory +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28356# +Enables the use of Level 1 Return to Prontera. +-------------------------- +Type: Accessory +Cooldown: 15 minutes +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +28357# +One of Vesper's components. +-------------------------- +FLEE +10 +DEF +1 +MDEF +3 +-------------------------- +When equipped with Memory of Lover: +Increases Attack Speed (Decreases After Attack Delay by 5%). + +Every 20 Base Level: +AGI +1 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28358# +A lucky clover that has been cursed, wether for a good or bad reason. +-------------------------- +LUK +2 +Perfect Dodge +3 +-------------------------- +Random chance to inflict Curse status on wearer when dealing physical damage. +-------------------------- +When equipped with Lucky Clover: +Enables the use of Level 1 Cloaking. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28359# +One of Vesper's components. +-------------------------- +HIT +10 +DEF +1 +MDEF +3 +-------------------------- +When equipped with Memory of Lover: +Decreases Variable Casting Time by 5%. + +Every 20 Base Level: +DEX +1 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28360# +A badge made with the appearance of cherry blossoms. +Regardless of whether it is worn by men or women, it seems to add a charming atmosphere. +-------------------------- +MDEF +5, AGI +1 +Increases Movement Speed. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28361# +Designed with the appearance of a four-leaf clover, the green color represents the beautiful spring and the scenery in full bloom. It seems that there are other uses... +-------------------------- +MDEF +5, MaxHP +5% +-------------------------- +Decreases damage taken from Earth elemental attacks by 20%. +-------------------------- +Random chance to auto-cast Level 1 Quagmire when recieving physical damage. +-------------------------- +Type: Accessory +Defense: 5 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28362# +A glove that increases the wearer's potential. +-------------------------- +STR +2 +ATK +5% +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +# +28363# +A glove that increases the wearer's potential. +-------------------------- +AGI +2 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +# +28364# +A glove that increases the wearer's potential. +-------------------------- +INT +2 +MATK +5% +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +# +28365# +A glove that increases the wearer's potential. +-------------------------- +VIT +2 +MaxHP +5% +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +# +28366# +A glove that increases the wearer's potential. +-------------------------- +DEX +2 +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +# +28367# +A glove that increases the wearer's potential. +-------------------------- +LUK +2 +Perfect Dodge +5 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +# +28368# +An arm that can amplify the amount of muscle strength that can be operated and raise the operating technology of the robot to the limit. +-------------------------- +Decreases SP Consumption of Cold Slower and Flame Launcher by 5. +-------------------------- +When equipped with Powered Tank, Powered Boots and Powered Mail: +Increases damage of Arms Cannon, Cold Slower and Flame Launcher by 50%. +Random chance to decrease After Skill Delay by 30% for 7 seconds when receiving physical damage. + +Refine Level of Powered Mail, Powered Tank and Powered Boots is +7 or higher: +Increases damage of Arms Cannon, Cold Slower and Flame Launcher by additional 50%. +Nullifies Mado Gear Fuel Consumption when using skills. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +28369# +An arms part with the capability of strengthen unit's defense. +-------------------------- +AGI +2 +DEX +5 +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +28370# +An almost broken green chip. Made through the lost technology. +-------------------------- +ATK +5% +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +When equipped with Riot Chip: +Decreases After Skill Delay by 15% +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28371# +An almost broken red chip. Made through the lost technology. +-------------------------- +MATK +5% +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Riot Chip: +Decreases Variable Casting Time by 20% +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28372# +A ring with Rune Midgard emblem carved on it. Given to people who gives contribution to nation. +-------------------------- +STR +1, INT +1 +MaxHP +3% +MaxSP +3% +DEF +3 +-------------------------- +When equipped with Imperial Guard: +For each Refine Level above +6 of ^99009Imperial Guard: +Increases damage of Shield Press by 8%. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +28373# +A mysterious part made with mysterious ancient technology. +It seems to have the power to unleash the hidden power from certain artifacts. +-------------------------- +MaxSP +20 +-------------------------- +When equipped with either Peuz, Black Wing, Nab's, Crimson, Crimson II, Aqua, Aqua II, Golden, Golden II, Forest or Forest II equipment: +Activates the hidden effect. +-------------------------- +This effect will not be activated in WoE, Battlegrounds, PvP and Turbo Track. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28374# +A cute little foxtail ring, but You can feel great power from the ring. +-------------------------- +Increases experience gained from defeating monsters by 5%. +-------------------------- +For each 5 Base Level: +ATK +2 +MATK +2 +MaxHP +10 +MaxSP +5 +(Up to Base Level 50) +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +28375# +An Earring that only a champion of battlefield can wear. +-------------------------- +MATK +20 +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Decreases damage taken from Demi-Human race by 1%. +-------------------------- +When equipped with Glorious Brooch: +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +Effect is disabled inside WoE TE Edition. +-------------------------- +Cannot be sold to NPC. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 81 +# +28376# +A brooch that only a champion of battlefield can wear. +-------------------------- +ATK +20 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Decreases damage taken from Demi-Human race by 1%. +-------------------------- +When equipped with Glorious Earring: +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +Effects are disabled inside WoE TE Edition. +-------------------------- +Cannot be sold to NPC. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 81 +# +28377# +A magic ring that used to amplify the magical power. +-------------------------- +Increases Fire, Water, Magical Damage with Wind and Earth element by 5%. +-------------------------- +For each 5 Base Level: +Increases damage of Fire Bolt, Cold Bolt, Lightning Bolt and Earth Spike by 1%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +28378# +A rare red colored clover that only growth in summer. +-------------------------- +ATK +5% +DEF +5 +MDEF +5 +-------------------------- +Decreases damage taken from Fire elemental attacks by 20%. +-------------------------- +Random chance to auto-cast Level 1 Meteor Storm when dealing physical attacks. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28379# +A ring that only high class thief can worn. +-------------------------- +Random chance to auto-cast Level 1 Steal Coin when dealing physical attacks. +Cast higher skill Level when wearer has learned higher skill Level of Steal Coin. +-------------------------- +Random chance to inflict Stun status on the target when using Raid skill. +For each Level of Raid: +Increases the chance of inflicting Stun status. +-------------------------- +For each Base Level: +Increases damage of Back Stab by 2%. +-------------------------- +When using Escape, increases damage of Triangle Shot by (BaseLevel/3)% for 20 seconds. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +28380# +A necklace made of wild flower clovers. +-------------------------- +Perfect Dodge +5 +-------------------------- +Decreases Scar of Tarou skill cooldown by 5 seconds. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +28381# +A necklace made of wild flower clovers. +-------------------------- +Increases Healing skills effectiveness by 5%. +-------------------------- +Decreases Tuna Party skill cooldown by 7 seconds. +-------------------------- +Type: Accessory +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +28382# +A necklace made of wild flower clovers. +-------------------------- +MDEF +5 +-------------------------- +Decreases Variable Casting Time of Catnip Meteor by 1 second. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +28383# +A badge of Malangdo island. You may get a reward every day from Malangdo island. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +28384# +Sarah's left Earring. +It seems that you can use Sarah's power when equipped. +-------------------------- +Enables the use of Level 1 Heal. +-------------------------- +When equipped with Sarah's Battle Robe +and Teleport Earring: +MDEF +10 +Decreases After Skill Delay by 10% + +Refine Level of Sarah's Robe is +5 or higher: +Protects from skill cast interruption. + +Refine Level of Sarah's Robe is +7 or higher: +Decreases Variable Casting Time by 10%. +Decreases Fixed Casting Time by 50%. +-------------------------- +When equipped with Awakening Robe and Teleport Earring: +Decreases Variable Casting Time by 10%. +Decreases Fixed Casting Time by 50%. +-------------------------- +Can be sold to NPC and moved to storage +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +All Jobs except Novice +# +28385# +Sarah's right Earring. +It seems that you can use Sarah's power when equipped. +-------------------------- +Enables the use of Level 1 Teleport. +-------------------------- +When equipped with Sarah's Battle Robe +and Heal Earring: +MDEF +10 +Decreases After Skill Delay by 10% + +Refine Level of Sarah's Robe is +5 or higher: +Protects from skill cast interruption. + +Refine Level of Sarah's Robe is +7 or higher: +Decreases Variable Casting Time by 10%. +Decreases Fixed Casting Time by 50%. +-------------------------- +When equipped with Awakening Robe and Heal Earring: +Decreases Variable Casting Time by 10%. +Decreases Fixed Casting Time by 50%. +-------------------------- +Can be sold to NPC and moved to storage +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +All Jobs except Novice +# +28386# +A dark beads wore by Priest whose changed to a Sura. +-------------------------- +ATK +5 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Decreases SP Consumption of Dangerous Soul Collect by 5. +-------------------------- +Every 15 base Levels: +Increases damage of Dragon Combo by 2%. +-------------------------- +For each 20 Base Level: +Increases damage of Knuckle Arrow by 2%. +-------------------------- +Every 30 base Levels: +Increases damage of Sky Net Blow by 2%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +28387# +A necklace modeled after goddess Freya's sacred necklace. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +28388# +A heavy steel ball attached to a shackle that was supposed to keep prisoners from escaping in an earlier era. +However, prisoners outfitted with this ball managed to use it as a weapon. +-------------------------- +When equipped with Shackle: +ATK +50 +Decreases damage taken from Zombie Prisoner and Skel Prisoner by 20%. +-------------------------- +When equipped with Thief Handcuffs: +ATK +10 +-------------------------- +Type: Accessory +Weight: 400 +All Jobs except Novice +# +28389# +A special silver ring given to Royal Guard. +-------------------------- +MaxHP +5% +DEF +3 +MDEF +3 +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Enables the use of Level 1 Return to Glastheim. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28390# +One of Seven powerful marks that has made contact with Dux's tear. +It gives relaxing illusion to wearer. +-------------------------- +Can be sold to NPC and moved to storage +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: None +# +28391# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +Adds 20% chance when using Throw Stone, increases ATK and FLEE by 30 for 5 seconds. +-------------------------- +For every upgrade level: +ATK +10 +FLEE +10 +-------------------------- +When equipped with Thief Shadow Pendant: +ATK +1% +MaxHP +1% +-------------------------- +If the sum of refine rate of set is 10 or higher: +ATK +2% +MaxHP +2% +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +28392# +A sacred earring that is said to protect the wearer. eliciting the potential ability of the wearer. +-------------------------- +Adds a 100% chance to increases ATK +10 for 240 seconds when casting Improve Concentration. +Additional ATK +1 per upgrade level. +-------------------------- +When equipped with Archer Shadow Pendant: +ATK +1%, +MaxHP +1%. +-------------------------- +If total refine levels of entire set at least +10: +ATK +2%, +MaxHP +2%. +-------------------------- +Class: Shadow Earring +Weight: 0 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +28393# +A badge made to celebrate RJC 2015. +-------------------------- +Increases recovery amount gained from Red Slim Potion, Yellow Slim Potion and White Slim Potion by 10%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +28394# +A ring where king of spirit dwelling inside. +-------------------------- +VIT +5 +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Decreases Earth Grave and Diamond Dust skill cooldown by 2 seconds. +-------------------------- +Decreases Variable Casting Time of Varetyr Spear by 1.5 seconds. +Decreases Varetyr Spear skill cooldown by 0.5 seconds. +-------------------------- +Decreases Variable Casting Time of Warmer by 50%. +Decreases Warmer skill cooldown by 15 seconds. +-------------------------- +For each 8 Base Level: +Increases damage of Earth Grave and Diamond Dust by 1%. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +28395# +A well made badge that created to celebrate the 13th anniversary of RO. +-------------------------- +LUK +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +28396# +A well made badge that created to celebrate the 13th anniversary of RO. +-------------------------- +LUK +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +28397# +A well made badge that created to celebrate the 13th anniversary of RO. +-------------------------- +LUK +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +28398# +A well made badge that created to celebrate the 13th anniversary of RO. +-------------------------- +LUK +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +28399# +A well made badge that created to celebrate the 13th anniversary of RO. +-------------------------- +LUK +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +28400# +A well made badge that created to celebrate the 13th anniversary of RO. +-------------------------- +LUK +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +28401# +A well made badge that created to celebrate the 13th anniversary of RO. +-------------------------- +LUK +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +28402# +A well made badge that created to celebrate the 13th anniversary of RO. +-------------------------- +LUK +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +28403# +A well made badge that created to celebrate the 13th anniversary of RO. +-------------------------- +LUK +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +28404# +A well made badge that created to celebrate the 13th anniversary of RO. +-------------------------- +LUK +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +28405# +A well made badge that created to celebrate the 13th anniversary of RO. +-------------------------- +LUK +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +28406# +A well made badge that created to celebrate the 13th anniversary of RO. +-------------------------- +LUK +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +28407# +A well made badge that created to celebrate the 13th anniversary of RO. +-------------------------- +LUK +5 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +28410# +A blue bracelet made of Sapphire stone. +-------------------------- +INT +5, DEX +5 +LUK +5 +DEF +3 +-------------------------- +For each 4 Base Level: +Decreases Variable Casting Time of Acid Demonstration by 1%. +-------------------------- +For each 20 Base Level: +Increases damage of Spore Explosion by 5%. +-------------------------- +For each 2 Level of Potion Pitcher: +INT +1, DEX +1 +LUK +1, MATK +20 +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +28411# +A beautiful Earring made of a large emerald stone. +Its beautiful shine will be more accentuated on the stage. +-------------------------- +AGI +5, INT +5 +DEX +5 +DEF +3 +-------------------------- +For each Base Level: +Increases damage of Arrow Vulcan, Musical Strike and Throw Arrow by 1%. +-------------------------- +For each 5 Base Level: +Increases damage of Metallic Sound by 2%. +Decreases Variable Casting Time of Metallic Sound by 1%. +-------------------------- +For each 2 Level of Lesson: +AGI +1, INT +1 DEX +1 +MATK +20 +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +28412# +A novice's training accessory. +Can only be equipped by character with Level below 99. +-------------------------- +Increases experience gained from defeating monsters by 20%. +-------------------------- +Increases movement speed. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Minimum Level: 1 +Maximum Level: 99 +# +28413# +A talisman made from a real tuna. +-------------------------- +VIT +1 +DEF +1 +-------------------------- +When equipped with Exclusive Doram Manteau, Exclusive Doram Suit, Exclusive Doram Shoes and Cute Grass Necklace: +MaxHP +15% +MaxSP +5% +Increases Healing skills effectiveness by 10%. +Enables the use of Level 5 Heal. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +28414# +A talisman made from a real tuna. +-------------------------- +VIT +2 +DEF +1 +-------------------------- +When equipped with Luxury Doram Manteau, Luxury Doram Suit, Luxury Doram Shoes and Cute Grass Necklace: +MaxHP +20% +MaxSP +10% +Increases Healing skills effectiveness by 20%. +Enables the use of Level 7 Heal. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 140 +Summoner (Doram) +# +28415# +A talisman made from a real tuna. +-------------------------- +VIT +3 +DEF +1 +-------------------------- +When equipped with Elegant Doram Manteau, Elegant Doram Suit, Elegant Doram Shoes and Cute Grass Necklace: +MaxHP +25% +MaxSP +15% +Increases Healing skills effectiveness by 30%. +Enables the use of Level 9 Heal. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 175 +Summoner (Doram) +# +28416# +An Silvervine leaf shaped talisman. +-------------------------- +INT +1 +DEF +1 +-------------------------- +When equipped with Exclusive Doram Manteau, Exclusive Doram Suit, Exclusive Doram Shoes and Charm Grass Necklace: +MaxHP +10% +MaxSP +10% +Increases damage of Catnip Meteor by 100%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +28417# +An Silvervine leaf shaped talisman. +-------------------------- +INT +2 +DEF +1 +-------------------------- +When equipped with Luxury Doram Manteau, Luxury Doram Suit, Luxury Doram Shoes and Charm Grass Necklace: +MaxHP +15% +MaxSP +15% +Increases damage of Catnip Meteor by 150%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 140 +Summoner (Doram) +# +28418# +An Silvervine leaf shaped talisman. +-------------------------- +INT +3 +DEF +1 +-------------------------- +When equipped with Elegant Doram Manteau, Elegant Doram Suit, Elegant Doram Shoes and Charm Grass Necklace: +MaxHP +20% +MaxSP +20% +Increases damage of Catnip Meteor by 200%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 175 +Summoner (Doram) +# +28419# +A cute bunny shaped talisman. +-------------------------- +DEX +1 +DEF +1 +-------------------------- +When equipped with Exclusive Doram Manteau, Exclusive Doram Suit, Exclusive Doram Shoes and Fresh Grass Necklace: +MaxHP +20% +MaxSP +3% +Increases damage of Lunatic Carrot Beat by 100%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +28420# +A cute bunny shaped talisman. +-------------------------- +DEX +2 +DEF +1 +-------------------------- +When equipped with Luxury Doram Manteau, Luxury Doram Suit, Luxury Doram Shoes and Fresh Grass Necklace: +MaxHP +25% +MaxSP +6% +Increases damage of Lunatic Carrot Beat by 150%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 140 +Summoner (Doram) +# +28421# +A cute bunny shaped talisman. +-------------------------- +DEX +3 +DEF +1 +-------------------------- +When equipped with Elegant Doram Manteau, Elegant Doram Suit, Elegant Doram Shoes and Fresh Grass Necklace: +MaxHP +30% +MaxSP +9% +Increases damage of Lunatic Carrot Beat by 200%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 175 +Summoner (Doram) +# +28422# +A charm made from a branch taken from a shiny tree. +-------------------------- +DEF +1 +-------------------------- +Decreases Variable Casting Time of Silvervine Stem Spear by 50%. +-------------------------- +Increases damage of Silvervine Stem Spear based on INT and skill Level. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +28423# +A charm that resembles a tuna. It looks fresh! +-------------------------- +DEF +1 +-------------------------- +Decreases Tuna Party skill cooldown by 5 seconds. +-------------------------- +Random chance to auto-cast Level 1 Tuna Party (or learned Level) when wearer receiving melee physical attacks. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +28424# +A charm that resembles a fat Earthworm. +-------------------------- +DEF +1 +-------------------------- +Decreases Variable Casting Time of Picky Peck by 50%. +-------------------------- +Increases damage of Picky Peck according DEX and skill Level. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +28425# +VIT +3 +-------------------------- +When equipped by Novice, Taekwon, Ninja and Gunslinger classes: +MaxHP +1000 +MaxSP +200 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +28426# +INT +3 +-------------------------- +When equipped by Novice, Taekwon, Ninja and Gunslinger classes: +Decreases Variable Casting Time by 30%. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +28427# +Type: Accessory +Defense: 5 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28428# +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28429# +A necklace belonging to Arquien, the head of Eden Group. +It features a large purple jewel. +-------------------------- +Decreases SP Consumption of Power Swing by 2. +-------------------------- +For every Base Level: +Increases damage of Cart Revolution by 1%. +-------------------------- +For every 3 Base Level: +Increases damage of Axe Tornado by 1%. +-------------------------- +For every 5 Base Level: +Increases damage of Power Swing by 1%. +-------------------------- +Adds a chance to gain Candy, Candy Cane or Chocolate Drink when a monster is killed. +-------------------------- +Increases the HP Recovery rate of Candy and Candy Cane by 100%. +-------------------------- +When equipped with Sweetheart Gum of Mouth: +Disables all of Sweetheart Gum of Mouth. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +28430# +A beautiful ring engraved with a cross. It belonged to a leader with a special role. +-------------------------- +LUK +2 +Perfect Dodge +5 +-------------------------- +Increases Healing skills effectiveness by 15%. +-------------------------- +Decreases SP Consumption by 5%. +-------------------------- +Increases recovery amount gained from Healing skills and Restorative items by 15%. +-------------------------- +When equipped with Archbishop Lv1: +LUK +2 +Perfect Dodge +5 +Decreases Variable Casting Time of Highness Heal by 100%. +Increases Healing skills effectiveness by 3%. +Decreases SP Consumption by 5%. +-------------------------- +When equipped with Archbishop Lv2: +LUK +2 +Perfect Dodge +5 +Decreases Highness Heal skill cooldown by 1%. +Increases Healing skills effectiveness by 3%. +Decreases SP Consumption by 5%. +-------------------------- +When equipped with Basilica Lv1: +LUK +2 +Perfect Dodge +5 +Decreases Variable Casting Time of Coluseo Heal by 100%. +Increases Healing skills effectiveness by 3%. +Decreases SP Consumption by 5%. +Decreases SP Consumption of Coluseo Heal by 20. +-------------------------- +When equipped with Cure Lv1: +Luk +2 +Perfect Dodge +5 +Decreases Epiclesis skill cooldown by 10 seconds. +Increases Healing skills effectiveness by 3%. +Decreases SP Consumption by 5%. +Decreases SP Consumption of Epiclesis by 100. +-------------------------- +Type: Accessory +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28431# +A ring that gives you a feeling of flying like a rocket through the wind. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Increases after cast delay by 5%. +-------------------------- +When equipped with Sprint Mail and Sprint Shoes: +MaxHP +7% +MaxSP +7% +Decreases Variable Casting Time by 3%. +Decreases After Skill Delay by 15%. +-------------------------- +When equipped with Sprint Glove: +Decreases Variable Casting Time by 4%. +Decreases After Skill Delay by 4%. +-------------------------- +When equipped with Sprint Mail, Sprint Shoes and Sprint Glove: +Decreases Variable Casting Time by 5%. +Decreases After Skill Delay by 5%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Transcendent 2nd classes +# +28432# +A beautiful ring which contains the spirits of the deceased. +It is said to be able to amplify magic if it comes in contact with spiritual power. +-------------------------- +DEX +1, INT +2 +-------------------------- +When equipped with Wizardry Staff or Soul Staff: +DEX +2 +MATK +6% +Decreases Variable Casting Time based on Wizardry Staff or Soul Staff Refine Level. +-------------------------- +When equipped with Clip or Rosary: +Inflict 50% more damage against Undead monster with Heal. +Inflict 30% more damage with Magnus Exorcismus. +Increases SP Recovery Rate by 9% +-------------------------- +When equipped with Divine Cross: +DEX +2 +MATK +10% +Decreases damage taken from Undead elemental and Demon race monsters by 10%. +-------------------------- +When equipped with Book of Exorcism: +Decreases Variable Casting Time of Magnus Exorcismus by 25%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +28433# +A luminous blue stone which was owned by Engel Howard. This stone contains the soul of a craftsman with a destructive impulse. +-------------------------- +AGI +5 +Critical +5 +Increases Attack Speed (Decreases After Attack Delay by 5%). +Increases Critical Damage by 2%. +-------------------------- +Enables the use of Level 1 Sight. +-------------------------- +Base LUK at least 100: +Critical +10 +Increases Critical Damage by 10%. +-------------------------- +When equipped with Sharp Lv1: +Increases Critical Damage by 10%. +-------------------------- +When equipped with Sharp Lv2: +Increases Critical Damage by 10%. +-------------------------- +Type: Accessory +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28434# +A glove worn by prominent fighter. +-------------------------- +STR +2 +MaxSP +100 +ATK +2% +-------------------------- +Enables the use of Level 1 Absorb Spirit. +-------------------------- +Base STR at least 110: +ATK +5% +-------------------------- +When enchanted with Fighting Spirit Lv1: +MaxSP +100 +Increases Physical Damage against enemies of enemies of every race by 5%. +-------------------------- +When enchanted with Fighting Spirit Lv2: +MaxSP +100 +Increases Physical Damage against enemies of enemies of every race by 5%. +-------------------------- +Type: Accessory +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28435# +A secret scroll held by Ninja. +-------------------------- +AGI +5 +MaxHP +5% +ATK +5% +MATK +5% +-------------------------- +When equipped by Kagerou: +Enables the use of Cloacking and Tunnel Drive, skill level is based on the Level of Shadow Warrior. +-------------------------- +When equipped by Oboro: +Random chance to inflict Poison status on your enemy when using Makibishi. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +28436# +A pendant that looks like Elvira and you don't know who made it. +It looks soft, but it is very hard because it is made by carving a mysterious crystal. +-------------------------- +ATK +5%, MATK +5% +-------------------------- +Decreases damage taken from Wind elemental attacks by 5%. +-------------------------- +When equipped with Elvira Boots: +ATK +10%, MATK +10% +Decreases damage taken from Wind elemental attacks by additional 20%. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +28437# +A glove worn by an Archbishop who couldn't resist the devil's temptations. It contains high evil magic. +-------------------------- +INT +2 +-------------------------- +MATK +2% +-------------------------- +Decreases SP Consumption by 5%. +-------------------------- +Enables the use of Level 3 Heal. +-------------------------- +Base INT at least 100: +MATK +5% +-------------------------- +When equipped with Spell Lv1: +Decreases Variable Casting Time by 5%. +MATK +5% +-------------------------- +When equipped with Spell Lv2: +Decreases Variable Casting Time by 5%. +MATK +5% +-------------------------- +Type: Accessory +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28438# +Powder made from a fairy leaf tree. The quality of the powder is fantastic. +-------------------------- +DEX +2 +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Increases Ranged Physical Damage by 2%. +-------------------------- +Enables the use of Level 3 Magnum Break. +-------------------------- +Base DEX at least 100: +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Expert Archer Lv1: +Decreases After Skill Delay by 5%. +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Expert Archer Lv2: +Decreases After Skill Delay by 5%. +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Accessory +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28439# +A mini fan from Comodo beach that have a picture of Sea-Otter on it. It's perfect for hot weather. +-------------------------- +All Stats +1 +-------------------------- +Increases experience gained from defeating monsters by 5%. +-------------------------- +Enables 'Fan Renovation Kit. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +28440# +A mini fan from Comodo beach that has a picture of Seal on it. It's perfect for hot weather. +It's quite expensive for mere fan. +-------------------------- +All Stats +1 +-------------------------- +Increases experience gained from defeating monsters by 5%. +-------------------------- +Disables 'Fan Renovation Kit. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +28441# +A Badge wore by Vigilante to prevent criminal in the past. +-------------------------- +FLEE +10 +-------------------------- +Increases Bow class weapons damage by 5%. +-------------------------- +Type: Accessory +Defense: 2 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +28442# +Feathered bracelet a commitment symbol of free life. +-------------------------- +Critical +5 +FLEE +5 +-------------------------- +Type: Accessory +Defense: 2 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Minstrel and Wanderer +# +28443# +A ring given to loyal member of Eden Group. +-------------------------- +ATK +2% +-------------------------- +When equipped with Eden Group Necklace of Power I and Awakening Eden Group Boots I: +Increases Attack Speed (Decreases After Attack Delay by 4%). +HIT +4 +-------------------------- +When equipped with Eden Group Necklace of Power I and Awakening Eden Group Uniform I: +ATK +20 +Decreases damage taken from all elemental attacks except Neutral by 2%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28444# +A necklace granted to loyal members of the Genesis Group. +-------------------------- +VIT +2 +-------------------------- +Type: Accessory +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Required Level: 1 +Jobs: All jobs +# +28445# +A strength ring given to skilled member of Eden Group. +-------------------------- +ATK +3% +-------------------------- +When equipped with Eden Group Necklace of Strength II and Awakening Eden Group Boots II: +Increases Attack Speed (Decreases After Attack Delay by 8%). +HIT +8 +-------------------------- +When equipped with Eden Group Necklace of Strength II and Awakening Eden Group Uniform II: +ATK +40 +Decreases damage taken from all elemental attacks except Neutral by 4%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 115 +# +28446# +A strength necklace given to skilled member of Eden Group. +-------------------------- +STR +2 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 115 +# +28447# +A strength ring given to trained member of Eden Group. +-------------------------- +ATK +4% +-------------------------- +When equipped with Eden Group Necklace of Strength III and Awakening Eden Group Boots III: +Increases Attack Speed (Decreases After Attack Delay by 8%). +HIT +8 +Increases experience gained from defeating monsters by 2%. +-------------------------- +When equipped with Eden Group Necklace of Strength III and Awakening Eden Group Uniform III: +ATK +40 +Decreases damage taken from all elemental attacks except Neutral by 4%. +Increases experience gained from defeating monsters by 2%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +28448# +A strength necklace given to trained member of Eden Group. +-------------------------- +STR +3 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +28449# +A strength ring given to veteran member of Eden Group. +-------------------------- +ATK +5% +-------------------------- +When equipped with Eden Group Necklace of Strength IV and Awakening Eden Group Boots IV: +Increases Attack Speed (Decreases After Attack Delay by 10%). +HIT +10 +Increases experience gained from defeating monsters by 2%. +-------------------------- +When equipped with Eden Group Necklace of Strength IV and Awakening Eden Group Uniform IV: +ATK +50 +Decreases damage taken from all elemental attacks except Neutral by 5%. +Increases experience gained from defeating monsters by 2%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 145 +# +28450# +A strength necklace given to veteran member of Eden Group. +-------------------------- +STR +4 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 145 +# +28451# +A strength ring given to full-fledged member of Eden Group. +-------------------------- +ATK +5% +-------------------------- +Enables the use of Level 1 Heal. +-------------------------- +When equipped with Eden Group Necklace of Strength V and Awakening Eden Group Boots V: +Increases Attack Speed (Decreases After Attack Delay by 10%). +HIT +10 +Increases experience gained from defeating monsters by 2% +Increases movement speed. +-------------------------- +When equipped with Eden Group Necklace of Strength V and Awakening Eden Group Uniform V: +ATK +50 +Decreases damage taken from all elemental attacks except Neutral by 5%. +Increases experience gained from defeating monsters by 2%. +Protects from skill cast interruption. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +28452# +A strength necklace given to full-fledged member of Eden Group. +-------------------------- +STR +4 +-------------------------- +Enables the use of Level 1 Teleport. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +28453# +A magic ring given to loyal member of Eden Group. +-------------------------- +MATK +2% +-------------------------- +When equipped with Eden Group Necklace of Magic I and Awakening Eden Group Boots I: +Decreases Variable Casting Time by 3%. +Decreases After Skill Delay by 3%. +-------------------------- +When equipped with Eden Group Necklace of Magic I and Awakening Eden Group Uniform I: +MATK +20 +Decreases damage taken from all elemental attacks except Neutral by 2%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28454# +A magic necklace given to loyal member of Eden Group. +-------------------------- +INT +1 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28455# +A recovery ring given to skilled member of Eden Group. +-------------------------- +MATK +3% +-------------------------- +When equipped with Eden Group Necklace of Magic II and Awakening Eden Group Boots II: +Decreases Variable Casting Time by 6%. +Decreases After Skill Delay by 6%. +-------------------------- +When equipped with Eden Group Necklace of Magic II and Awakening Eden Group Uniform II: +MATK +40 +Decreases damage taken from all elemental attacks except Neutral by 4%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 115 +# +28456# +A magic necklace given to skilled member of Eden Group. +-------------------------- +INT +2 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 115 +# +28457# +A magic ring given to trained member of Eden Group. +-------------------------- +MATK +4% +-------------------------- +When equipped with Eden Group Necklace of Magic III and Awakening Eden Group Boots III: +Decreases Variable Casting Time by 6%. +Decreases After Skill Delay by 6%. +Increases experience gained from defeating monsters by 2%. +-------------------------- +When equipped with Eden Group Necklace of Magic III and Awakening Eden Group Uniform III: +MATK +40 +Decreases damage taken from all elemental attacks except Neutral by 4%. +Increases experience gained from defeating monsters by 2%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +28458# +A magic necklace given to trained member of Eden Group. +-------------------------- +INT +3 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +28459# +A magic ring given to veteran member of Eden Group. +-------------------------- +MATK +5% +-------------------------- +When equipped with Eden Group Necklace of Magic IV and Awakening Eden Group Boots IV: +Decreases Variable Casting Time by 8%. +Decreases After Skill Delay by 8%. +Increases experience gained from defeating monsters by 2%. +-------------------------- +When equipped with Eden Group Necklace of Magic IV and Awakening Eden Group Uniform IV: +MATK +50 +Decreases damage taken from all elemental attacks except Neutral by 5%. +Increases experience gained from defeating monsters by 2%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 145 +# +28460# +A magic necklace given to veteran member of Eden Group. +-------------------------- +INT +4 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 145 +# +28461# +A magic ring given to full-fledged member of Eden Group. +-------------------------- +MATK +5% +-------------------------- +Enables the use of Level 1 Heal. +-------------------------- +When equipped with Eden Group Necklace of Magic V and Awakening Eden Group Boots V: +Decreases Variable Casting Time by 8%. +Decreases After Skill Delay by 8%. +Increases experience gained from defeating monsters by 2%. +Increases movement speed. +-------------------------- +When equipped with Eden Group Necklace of Magic V and Awakening Eden Group Uniform V: +MATK +50 +Decreases damage taken from all elemental attacks except Neutral by 5%. +Increases experience gained from defeating monsters by 2%. +Protects from skill cast interruption. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +28462# +A magic necklace given to full-fledged member of Eden Group. +-------------------------- +INT +4 +-------------------------- +Enables the use of Level 1 Teleport. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +28463# +A dexterity ring granted to loyal members of the Genesis Group. +-------------------------- +DEX +2 +-------------------------- +When equipped with: +[Event] Genesis Hat I +[Event] Genesis Armor I +[Event] Genesis Manteau I +[Event] Genesis Shoes I +[Event] Genesis Necklace I +Enables use of Level 1 Teleport. +-------------------------- +Type: Accessory +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Required Level: 1 +Jobs: All jobs +# +28464# +A dexterity necklace given to loyal member of Eden Group. +-------------------------- +DEX +1 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28465# +A dexterity ring given to skilled member of Eden Group. +-------------------------- +Increases Ranged Physical Damage by 2%. +-------------------------- +When equipped with Eden Group Necklace of Dexterity II and Awakening Eden Group Boots II: +HIT +8 +Increases Attack Speed (Decreases After Attack Delay by 8%). +-------------------------- +When equipped with Eden Group Necklace of Dexterity II and Awakening Eden Group Uniform II: +ATK +40 +Decreases damage taken from all elemental attacks except Neutral by 4%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 115 +# +28466# +A dexterity necklace given to skilled member of Eden Group. +-------------------------- +DEX +2 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 115 +# +28467# +A dexterity ring given to trained member of Eden Group. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +When equipped with Eden Group Necklace of Dexterity III and Awakening Eden Group Boots III: +HIT +8 +Increases Attack Speed (Decreases After Attack Delay by 8%). +Increases experience gained from defeating monsters by 2%. +-------------------------- +When equipped with Eden Group Necklace of Dexterity III and Awakening Eden Group Uniform III: +ATK +40 +Decreases damage taken from all elemental attacks except Neutral by 4%. +Increases experience gained from defeating monsters by 2%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +28468# +A dexterity necklace given to trained member of Eden Group. +-------------------------- +DEX +3 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +28469# +A dexterity ring given to veteran member of Eden Group. +-------------------------- +Increases Ranged Physical Damage by 4%. +-------------------------- +When equipped with Eden Group Necklace of Dexterity IV and Awakening Eden Group Boots IV: +HIT +10 +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases experience gained from defeating monsters by 2%. +-------------------------- +When equipped with Eden Group Necklace of Dexterity IV and Awakening Eden Group Uniform IV: +ATK +50 +Decreases damage taken from all elemental attacks except Neutral by 5%. +Increases experience gained from defeating monsters by 2%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 145 +# +28470# +A dexterity necklace given to veteran member of Eden Group. +-------------------------- +DEX +4 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 145 +# +28471# +A dexterity ring given to full-fledged member of Eden Group. +-------------------------- +Increases Ranged Physical Damage by 4%. +-------------------------- +Enables the use of Level 1 Heal. +-------------------------- +When equipped with Eden Group Necklace of Dexterity V and Awakening Eden Group Boots V: +HIT +10 +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases experience gained from defeating monsters by 2%. +Increases movement speed. +-------------------------- +When equipped with Eden Group Necklace of Dexterity V and Awakening Eden Group Uniform V: +ATK +50 +Decreases damage taken from all elemental attacks except Neutral by 5%. +Increases experience gained from defeating monsters by 2%. +Protects from skill cast interruption. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +28472# +A dexterity necklace given to full-fledged member of Eden Group. +-------------------------- +DEX +4 +-------------------------- +Enables the use of Level 1 Teleport. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +28473# +A recovery ring given to loyal member of Eden Group. +-------------------------- +Increases Healing skills effectiveness by 2%. +-------------------------- +When equipped with Eden Group Necklace of Recovery I and Awakening Eden Group Boots I: +Decreases Variable Casting Time by 3%. +Decreases After Skill Delay by 3%. +-------------------------- +When equipped with Eden Group Necklace of Recovery I and Awakening Eden Group Uniform I: +MATK +20 +Decreases damage taken from all elemental attacks except Neutral by 2%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28474# +A recovery necklace given to loyal member of Eden Group. +-------------------------- +VIT +1 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28475# +A recovery ring given to skilled member of Eden Group. +-------------------------- +Increases Healing skills effectiveness by 3%. +-------------------------- +When equipped with Eden Group Necklace of Recovery II and Awakening Eden Group Boots II: +Decreases Variable Casting Time by 6%. +Decreases After Skill Delay by 6%. +-------------------------- +When equipped with Eden Group Necklace of Recovery II and Awakening Eden Group Uniform II: +MATK +40 +Decreases damage taken from all elemental attacks except Neutral by 4%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 115 +# +28476# +A recovery necklace given to skilled member of Eden Group. +-------------------------- +VIT +2 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 115 +# +28477# +A recovery ring given to trained member of Eden Group. +-------------------------- +Increases Healing skills effectiveness by 4%. +-------------------------- +When equipped with Eden Group Necklace of Recovery III and Awakening Eden Group Boots III: +Decreases Variable Casting Time by 6%. +Decreases After Skill Delay by 6%. +Increases experience gained from defeating monsters by 2%. +-------------------------- +When equipped with Eden Group Necklace of Recovery III and Awakening Eden Group Uniform III: +MATK +40 +Decreases damage taken from all elemental attacks except Neutral by 4%. +Increases experience gained from defeating monsters by 2%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +28478# +A recovery necklace given to trained member of Eden Group. +-------------------------- +VIT +3 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +28479# +A recovery ring given to veteran member of Eden Group. +-------------------------- +Increases Healing skills effectiveness by 5%. +-------------------------- +When equipped with Eden Group Necklace of Recovery IV and Awakening Eden Group Boots IV: +Decreases Variable Casting Time by 8%. +Decreases After Skill Delay by 8%. +Increases experience gained from defeating monsters by 2%. +-------------------------- +When equipped with Eden Group Necklace of Recovery IV and Awakening Eden Group Uniform IV: +MATK +50 +Decreases damage taken from all elemental attacks except Neutral by 5%. +Increases experience gained from defeating monsters by 2%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 145 +# +28480# +A recovery necklace given to veteran member of Eden Group. +-------------------------- +VIT +4 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 145 +# +28481# +A recovery ring given to full-fledged member of Eden Group. +-------------------------- +Increases Healing skills effectiveness by 5%. +-------------------------- +Enables the use of Level 1 Heal. +-------------------------- +When equipped with Eden Group Necklace of Recovery V and Awakening Eden Group Boots V: +Decreases Variable Casting Time by 8%. +Decreases After Skill Delay by 8%. +Increases experience gained from defeating monsters by 2%. +Increases movement speed. +-------------------------- +When equipped with Eden Group Necklace of Recovery V and Awakening Eden Group Uniform V: +MATK +50 +Decreases damage taken from all elemental attacks except Neutral by 5%. +Increases experience gained from defeating monsters by 2%. +Protects from skill cast interruption. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +28482# +A recovery necklace given to full-fledged member of Eden Group. +-------------------------- +VIT +4 +-------------------------- +Enables the use of Level 1 Teleport. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +28483# +A protection ring that once worn by ancient king. +-------------------------- +For each 25 Base Level: +MaxHP and MaxSP +1%.(Up to Base Level 175) +-------------------------- +Type: Accessory +Weight: 1 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 99 +# +28484# +The scarf of a gunman who killed the four great gun masters. It is said he felt great remorse after he finished killing, so much so that he destroyed his gun and vanished. +-------------------------- +ATK +5% +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +For each Level of Mass Spiral: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Decreases the SP Consumption of Fire Dance by 5. +-------------------------- +For each Level of Fire Rain : +Decreases After Skill Delay by 1%. +-------------------------- +For each Level of Shattering Storm: +Decreases Hit Barrel skill cooldown by 4 seconds. +-------------------------- +For each Level of Shattering Storm: +Decreases Shattering Storm skill cooldown by 0.1 second. +-------------------------- +For each Level of Dragon Tail: +Increases Critical Damage by 3%. +-------------------------- +For each Level of Fire Rain: +Increases damage of Fire Rain by 5%. +-------------------------- +For each Level of Mass Spiral: +Increases damage of Mass Spiral by 5%. +-------------------------- +For each Level of Eternal Chain: +Increases damage of Quick Draw Shot by 5% +-------------------------- +For each Level of Shattering Storm: +Increases damage of Shattering Storm by 10%. +-------------------------- +For each Level of Fire Rain: +Decreases SP Consumption of Fire Rain by 4. +-------------------------- +For each Level of Mass Spiral: +Decreases SP Consumption of Mass Spiral by 2. +-------------------------- +1% chance of auto-casting Level 1 Dragon Tail on the target when performing a physical attack per Level of Dragon Tail known for 50 seconds when using Crimson Marker; +-------------------------- +Type: Accessory +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28485# +An exclusive belt wore by high rank ninja that master the art of invisibility. +-------------------------- +MATK +5% +-------------------------- +Decreases After Skill Delay by 5%. +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +For each Level of Flaming Petals: +Increases damage of Exploding Dragon by 10%. +-------------------------- +For each Level of Freezing Spear: +Increases damage of Snow Flake Draft by 10%. +-------------------------- +For each Level of Wind Blade: +Increases damage of First Wind by 10%. +-------------------------- +For each Level of Illusion - Shadow, Illusion - Shock and Illusion - Death: +Increases Magical Damage against Shadow elemental by 4%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28486# +Armor rented from a rental machine. +It disappears after a certain period of time. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Increases SP Recovery Rate by 50%. +-------------------------- +Decreases Variable Casting Time of Oratio by 50%. +Decreases Fixed Casting Time of Oratio by 100%. +-------------------------- +For each 2 Base Level: +Increases damage of Magnus Exorcismus by 3%. +-------------------------- +For each Level of Impositio Manus: +Increases Damage against monsters of Small, Medium and Large size by 3%. +-------------------------- +When Level 5 Impositio Manus is learned: +Enables the use of Level 2 Odin's Power. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28487# +A chinese knot specially made by Chang'e for girls. +-------------------------- +INT +3, DEX +3 +-------------------------- +Type: Accessory +Defense: 2 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +28488# +A chinese knot specially made by Chang'e for boys. +STR +3, DEX +3 +-------------------------- +Type: Accessory +Defense: 2 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +28489# +A beloved chinese knot specially made by Chang'e for girls. +-------------------------- +All Stats +2, HIT +5, MDEF +5 +-------------------------- +Enables the use of Level 2 Heal. +-------------------------- +Type: Accessory +Defense: 5 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +28490# +A beloved chinese knot specially made by Chang'e for girls. +-------------------------- +All Stats +2, Critical +5, MDEF +5 +-------------------------- +Enables the use of Level 2 Heal. +-------------------------- +Type: Accessory +Defense: 5 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +28491# +A dagger that is indispensable when hunting in the mountains. +It has a wide range of uses, from dismantling of prey to weeding. +-------------------------- +LUK +2 +HIT +10 +-------------------------- +Increases Critical by 5 when dealing Ranged Physical Damage. +-------------------------- +Enables the use of Level 1 Hiding. +-------------------------- +Base LUK at least 100: +HIT +10 +Increases Critical by 10 when dealing Ranged Physical Damage. +-------------------------- +When equipped with Sharp Lv1 or Sharp Lv2: +HIT +15 +Increases Critical by 10 when dealing Ranged Physical Damage. +-------------------------- +Type: Accessory +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28492# +Various techniques for thief are written on it. +-------------------------- +STR +5, AGI +5, INT +5 +-------------------------- +When Graffiti is mastered: +STR +5, AGI +5, INT +5. +-------------------------- +When Masquerade Unlucky is mastered: +Enables the use of Level 1 Berserk. +-------------------------- +When Masquerade Ignorance is mastered: +Enables the use of Level 5 Maximum Over Trust. +-------------------------- +When Masquerade Weakness is mastered: +Enables the use of Level 5 Magical Power amplification. +-------------------------- +When Masquerade Enervation is mastered: +Enables the use of Level 5 Wind Walk. +-------------------------- +When Masquerade Gloomy is mastered: +Enables the use of Level 5 Assumptio. +-------------------------- +When Masquerade Laziness is mastered: +Enables the use of Level 5 Meteor Assault. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28494# +Armor rented from a rental machine. +It disappears after a certain period of time. +-------------------------- +MaxHP +500, MaxSP +250 +-------------------------- +Random chance to auto-cast Level 10 Frost Nova around you and Level 1 Psychic Wave on the enemy when recieving physical damage. +-------------------------- +Random chance to auto-cast Level 1 Mystical Amplification when recieving magical damage. +-------------------------- +Random chance to auto-cast Level 1 Scream when recieving Physical and Magical Damage. +-------------------------- +When equipped with Celine's Brooch: +ATK +50, MATK +50 +ASPD +2 +Random chance to auto-cast Level 1 Varetyr Spear on the enemy and Level 1 Earth Grave around the enemy when recieving physical damage. +Random chance to auto-cast Level 1 Recognized Spell when recieving magical damage. +Random chance to auto-cast Level 3 Quagmire when recieving Physical and Magical Damage. +-------------------------- +This item can only be sold to NPCs. +-------------------------- +Type: Accessory +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 110 +# +28495# +Badge to indicate vigilante. +-------------------------- +Base STR at least 90: +ATK +3% +-------------------------- +Base DEX at least 90: +Increases Ranged Physical Damage by 3%. +-------------------------- +Base VIT at least 90: +MaxHP +1000 +-------------------------- +Type: Accessory +Position: Left +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28496# +Badge to indicate vigilante. +-------------------------- +Base INT at least 90: +MATK +3% +-------------------------- +Base DEX at least 90: +Decreases Variable Casting Time by 5%. +-------------------------- +Base VIT at least 90: +MaxHP +1000 +-------------------------- +Type: Accessory +Position: Right +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28497# +A map showing the inside of the city. +-------------------------- +ATK +2% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28498# +A shining holy water. +-------------------------- +MATK +2% +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28499# +Prontera's badge. +-------------------------- +All Stats +1 +ATK +2% +MATK +2% +-------------------------- +Base Level at least 150: +All Stats +1 +ATK +2% +MATK +2% +-------------------------- +When equipped with Diamond Shield: +Perfect Dodge +10 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28500# +A necklace wore by pope's follower. +-------------------------- +When equipped with Sitting Pope(Casual): +Decreases After Skill Delay by 15%. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28501# +The horn of the legendary beast. +-------------------------- +AGI +2 +DEF +3 +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Decreases damage taken from Demi-Human, Brute and Fish race monsters by 1%. +-------------------------- +Decreases damage taken from Demon and Undead race by 2%. +-------------------------- +Enables the use of Level 6 Increase Agility. +-------------------------- +Base AGI at least 100: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When equipped with DelayafterAttack Lv1: +ASPD +1 +Decreases damage taken from Demi-Human, Brute, Fish, Demon and Undead race by 1%. +-------------------------- +When equipped with DelayAfterAttack Lv2: +ASPD +1 +Decreases damage taken from Demi-Human, Brute, Fish, Demon and Undead race by 1%. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +28502# +A scarf worn during a revolt. It gives the user the courage they need to never yield to anyone! +-------------------------- +Enables the use of Level 2 Spell Breaker. +-------------------------- +When equipped with Glasses or Sunglasses: +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +For each 80 combined sum of base AGI and VIT: +MaxHP +5% +Increases Attack Speed (Decreases After Attack Delay by 5%). +Decreases damage taken from Demi-Human race by 2%. +-------------------------- +For each 80 combined sum of base STR and LUK: +Critical +5 +ATK +6% +Increases Critical Damage by 10%. +-------------------------- +For each 80 combined sum of base INT and DEX: +MATK +120 +Decreases Variable Casting Time by 3%. +Increases Healing skills effectiveness by 10%. +-------------------------- +Type: Headgear +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28503# +A replica of a device used by an individual who could call down god's thunder. +-------------------------- +MaxHP +5% +ATK +5% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Decreases Variable Casting Time of Hell Gate by 3% for every 20 base Levels. +-------------------------- +Decreases Variable Casting Time of Lightning Ride by 5% for every 15 base Levels. +-------------------------- +Decreases Power Absorb skill cooldown by 3 seconds. +-------------------------- +Increases damage of Lightning Ride by 5%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28504# +A bracelet once wore by prisoner of Lighthalzen. Allows wearer transform into bio lab victims. +-------------------------- +Enables the use of Level 1 Return of Lighthalzen. +Can only be used inside of city. +-------------------------- +Random chance to transform wearer into Eremes Guile, Seyren Windsor, Howard Alt-Eisen, Margaretha Sorin, Kathryne Keyron or Cecil Damon. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +28505# +A ring that can amplify the power of the demon. +-------------------------- +ATK +5% +-------------------------- +MATK +5% +-------------------------- +When equipped with Demon's Essence STR 1: +ATK +5% +-------------------------- +When equipped with Demon's Essence STR 2: +ATK +5% +-------------------------- +When equipped with Demon's Essence STR 3: +ATK +5% +-------------------------- +When equipped with Demon's Essence INT 1: +MATK +5% +-------------------------- +When equipped with Demon's Essence INT 2: +MATK +5% +-------------------------- +When equipped with Demon's Essence INT 3: +MATK +5% +-------------------------- +When equipped with Demon's Essence AGI 1: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When equipped with Demon's Essence AGI 2: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When equipped with Demon's Essence AGI 3: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When equipped with Demon's Essence VIT 1: +MaxHP +5% +-------------------------- +When equipped with Demon's Essence VIT 2: +MaxHP +5% +-------------------------- +When equipped with Demon's Essence VIT 3: +MaxHP +5% +-------------------------- +When equipped with Demon's Essence DEX 1: +Decreases Variable Casting Time by 5%. +-------------------------- +When equipped with Demon's Essence DEX 2: +Decreases Variable Casting Time by 5%. +-------------------------- +When equipped with Demon's Essence DEX 3: +Decreases Variable Casting Time by 5%. +-------------------------- +When equipped with Demon's Essence LUK 1: +Increases Critical Damage by 5%. +-------------------------- +When equipped with Demon's Essence LUK 2: +Increases Critical Damage by 5%. +-------------------------- +When equipped with Demon's Essence LUK 3: +Increases Critical Damage by 5%. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28506# +A stone that contained the storm of another world with magical power. +-------------------------- +ATK +5% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +MaxSP +5% +-------------------------- +When equipped with Gelerdria: +Refine Level of Gelerdria is +7 or higher: +Increases Physical Damage against enemies of Boss class by 30%. +Increases Physical Damage against enemies of Water and Wind elemental by 30%. +Increases Physical Damage against enemies of Insect and Fish race by 30%. +Increases damage of Wind Cutter by 30%. + +Refine Level of Gelerdria is +9 or higher: +Increases Physical Damage against enemies of Boss class by additional 20%. +Increases Physical Damage against enemies of Water and Wind elemental by additional 20%. +Increases Physical Damage against enemies of Insect and Fish race by additional 20%. +Increases damage of Wind Cutter by 20%. + +Refine Level of Gelerdria is +10 or higher: +Decreases Variable Casting Time of Wind Cutter by 50%. +-------------------------- +When equipped with Peuz Plate: +Prevents Frozen status. +Decreases damage taken from Demi-Human race by 3%. + +Refine Level of Peuz Plate is +7 or higher: +MaxHP +15% +Decreases damage taken from Demi-Human race by additional 2%. + +Refine Level of Peuz Plate is +9 or higher: +MaxHP +15% +Decreases damage taken from Demi-Human race by additional 2%. +-------------------------- +When equipped with Peuz Manteau: +Decreases damage taken from Demi-Human race by 3%. +Decreases SP Consumption of Wind Cutter by 18. + +Refine Level of Peuz Manteau is +7 or higher: +Decreases damage taken from Ranged Physical Damage by 10%. +Decreases damage taken from Demi-Human race by additional 1%. + +Refine Level of Peuz Manteau is +9 or higher: +Decreases damage taken from Ranged Physical Damage by additional 10%. +Decreases damage taken from Demi-Human race by additional 1%. +-------------------------- +When equipped with Peuz Greaves: +Decreases damage taken from Demi-Human race by 3%. + +Refine Level of Peuz Greaves is +7 or higher: +Increases Attack Speed (Decreases After Attack Delay by additional 10%). +Decreases damage taken from Demi-Human race by additional 1%. + +Refine Level of Peuz Greaves is +9 or higher: +Increases Attack Speed (Decreases After Attack Delay by additional 10%). +Decreases damage taken from Demi-Human race by additional 1%. +-------------------------- +When equipped with Peuz Seal: +MaxSP +5% +ATK +5% +Increases Attack Speed (Decreases After Attack Delay by 5%). +Decreases damage taken from Demi-Human race by 4%. +-------------------------- +When equipped with Peuz Greaves, Peuz Manteau, Peuz Plate and Peuz Seal: +Decreases After Skill Delay by 70% for 10 seconds when using Aura Blade skill. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28507# +A glove once owned by a genius magician. They allow the wearer to use their magic more efficiently. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Increases Magical Damage with Water, Earth, Fire, Wind and Neutral element by 5%. +-------------------------- +Ignores 50% magical defense of enemies. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +28508# +A weird ring adorned with a skull in which the words, \ + are engraved. Giving this as a gift might send a mixed message. +-------------------------- +Random chance to inflict Curse status on wearer or attacker when receiving melee physical attacks. +-------------------------- +Type: Accessory +Position: Right +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28509# +An ancient ring. +-------------------------- +STR +3 +-------------------------- +Base STR at least 100: +ATK +30 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28510# +A caged servant of vampire. +-------------------------- +DEF +1 +-------------------------- +Random chance to absorb 1% physical damage inflicted into SP. +-------------------------- +Type: Accessory +Position: Right +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28511# +A ring created for Time Keeper. +It seems able to restore the stability of mind. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +28513# +An exquisite brooch made by top class craftsman. It was belong to Celine for a long time. +-------------------------- +ASPD +1 +MaxHP +500 +MaxSP +250 +MATK +5% +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Celine's Ribbon: +For each Refine Level of Celine's Ribbon: +All Stats +1. +Decreases Fixed Casting Time by 50%. +Increases Magical Damage against monsters of Boss class by 10%. + +Refine Level +7: +Increases Magical Damage against monsters of Boss class by additional 20%. +Decreases damage taken from Demi-Human race by 10%. + +Refine Level +9: +Increases Magical Damage against monsters of Boss class by additional 20%. +Decreases damage taken from Demi-Human race by additional 2%. +-------------------------- +When equipped with Lush Rose: +For each Refine Level of Lush Rose: +All Stats +1. +Decreases Fixed Casting Time by 50%. + +Refine Level +7: +Increases Magical Damage against monsters of Boss class by 20%. +-------------------------- +When equipped with Evil Thread Glove: +ATK +50 +MATK +50 +ASPD +2 +Random chance to auto-cast Level 1 Earth Grave on the target when dealing physical attacks. +Random chance to auto-cast Level 1 Varetyr Spear on the target when dealing physical attacks. +Random chance to auto-cast Level 1 Recognized Spell on wearer when dealing magical attacks. +Random chance to auto-cast Level 3 Quaqmire on attacker when attacked by physical or magical attacks. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28514# +A flower ring with hidden power. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +28517# +A ring worn by King Groza. There is dragon emblem engraved on it, those who wears this ring can draw the power of the dragon. +-------------------------- +STR +1 +INT +1 +-------------------------- +ATK +6% +-------------------------- +Restores 300 HP when defeating monster with melee physical attacks. +-------------------------- +For each 3 Base Level: +Increases damage of Cross Ripper Slasher by 1%. +-------------------------- +For each 10 Base Level: +Increases damage of Rolling Cutter by 1%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +28518# +One of ancient king Groza's rings. +Embedded with a magic stone that amplifies power by drawing hatred toward wearer. +-------------------------- +All Stats +1 +DEF +150 +MDEF +15 +-------------------------- +ATK +6% +MATK +6%. +-------------------------- +When equipped with Cursed Magic Mail: +ATK +10% +MATK +10% +-------------------------- +When equipped with Cursed Magic Manteau: +Decreases damage taken from Water and Wind elemental attacks by 30%. +-------------------------- +When equipped with Cursed Magic Boots: +Decreases Variable Casting Time by 10%. +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases After Skill Delay by 10%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +28519# +A short sword used by Seo Hyun to drive away enemies. +You can feel the magical power that is similar to the melancholy put in the sword when you hold the handle. +-------------------------- +MATK +50 +-------------------------- +Increases Healing skills effectiveness by 10%. +-------------------------- +When equipped with Seo Hyun's Hagoromo: +For each Refine Level of Seo Hyun's Hagoromo: +MATK +5 +Increases Healing skills effectiveness by additional 2%. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +28520# +Ring of Egir, the God of Sea. It has the power to see all things. +-------------------------- +ATK +5% +MATK +5% +-------------------------- +Decreases damage taken from Water elemental attacks by 10%. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28521# +A ring worn by the giant who was the protector of ancient temples. +-------------------------- +ATK +5% +-------------------------- +Base STR at least 120: +MaxHP +5% +MaxSP +5% +ATK +50 +-------------------------- +When equipped with Giant Axe: +Decreases damage taken from Demi-Human race by 3%. + +Refine Level +7: +Increases Physical Damage against enemies of Boss class by 5%. +Increases damage of Cart Termination by 5%. + +Refine Level +9: +Increases Physical Damage against enemies of Boss class by additional 10%. +Increases damage of Cart Termination by 10%. +-------------------------- +When equipped with Gigantic Bow: +For each 10 base STR: +Increases Ranged Physical Damage by 2%. + +Refine Level +7: +Increases Physical Damage against enemies of Boss class by 5%. +Increases damage of Arrow Storm and Aimed Bolt by 5%. + +Refine Level +9: +Increases Physical Damage against enemies of Boss class by additional 10%. +Increases damage of Arrow Storm and Aimed Bolt by additional 10%. +-------------------------- +When equipped with Giant Lance: +Decreases damage taken from Demi-Human race by 3%. + +Refine Level +7: +Increases Physical Damage against enemies of Boss class by 5%. +Increases damage of Spiral Pierce and Sonic Wave by 5%. + +Refine Level +9: +Increases Physical Damage against enemies of Boss class by additional 10%. +Increases damage of Spiral Pierce and Sonic Wave by additional 10%. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28522# +It seems you can hear a low mumbling voice from it. +Rumors circulate among adventurers that when you listen to whisper of the ring, the darkness will fill your heart. +-------------------------- +MaxHP +200 +-------------------------- +Type: Accessory +Position: Right +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +28523# +A ring with broken gem. +Rumors circulate among adventurers that when you listen to whisper of the ring, you will suffer bad luck. +-------------------------- +MaxSP +150 +-------------------------- +Type: Accessory +Position: Left +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +28524# +A belt with a blade. +-------------------------- +Critical +5 +-------------------------- +Increases Critical Damage by 2%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28525# +Gloves worn by the sniper for stable sniper. +-------------------------- +Increases Ranged Physical Damage by 2%. +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28526# +Prontera Badge. +-------------------------- +All Stats +2 +-------------------------- +ATK +4%, MATK +4% +-------------------------- +When equipped with Diamond Shield: +Perfect Dodge +10 +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +28527# +A map that guides you inside the city. +-------------------------- +ATK +2% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +28528# +Shining Holy Water. +-------------------------- +MATK +2% +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +28529# +A belt with a blade. +-------------------------- +Critical +5 +-------------------------- +Increases Critical Damage by 2%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +28530# +Gloves worn by the sniper for stable sniper. +-------------------------- +Increases Ranged Physical Damage by 2%. +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28531# +A glove once owned by a legendary blacksmith. They allow the wearer to use their physical prowess more efficiently. +-------------------------- +Decreases After Skill Delay by 10%. +-------------------------- +Increases Physical Damage against enemies of Boss class by 5%. +-------------------------- +Ignores 50% physical defense of all monsters. +-------------------------- +Type: Accessory +Position: Right +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +28533# +Gloves to wear to handle chemicals. +Can handle various chemicals. +-------------------------- +HIT +20 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Increases HP Recovery Amount of Red Potion, Orange Potion, Yellow Potion and White Potion by 100%. +-------------------------- +For each Level of Cart Remodeling: +ATK +15 +Increases Attack Speed (Decreases After Attack Delay by additional 1%). +MaxHP +2% +Decreases SP Consumption of Cart Tornado by 1. +-------------------------- +For each Base Level: +Increases damage of Cart Revolution by 1%. +-------------------------- +For each 20 Base Level: +Increases damage of Cart Cannon by 2%. +-------------------------- +For each 20 Base Level: +Increases damage of Cart Tornado by 2%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +28534# +Pendant made of platinum with mysterious powers created to commemorate the 2017 RKC. +-------------------------- +Decreases SP Consumption by 3%. +Increases Attack Speed (Decreases After Attack Delay by 5%). +Decreases Variable Casting Time by 5%. +-------------------------- +ATK +3% +MATK +3% +-------------------------- +Physical attacks have a certain chance (1%) to absorb 3% of the inflicted damage as HP. +Magical attacks have a cenrtain chance (1%) to recover 300HP per second for 5 seconds. +-------------------------- +Type: Accessory +Position: Left +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28535# +Pendant made of platinum with mysterious powers created to commemorate the 2017 RKC. +-------------------------- +Decreases SP Consumption by 7%. +Increases Ranged Physical Damage by 3%. +Increases Critical Damage by 3%. +Increases Magical Damage with every element by 3%. +-------------------------- +Physical attacks have a certain chance (1%) to absorb 1% of the inflicted damage as SP. +Magical attacks have a cenrtain chance (1%) to recover 100SP per second for 5 seconds. +-------------------------- +When equipped with RKC Participant Memorial Ring: +Decreases After Skill Delay by 3%. +Decreases Fixed Casting Time by 0.1 second. +-------------------------- +Type: Accessory +Position: Left +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28550# +Legendary gauntlet said to have been infused with life by the hands of the god. +Its magic power able to burn all evil into ashes. +-------------------------- +DEF +2 +MDEF +5 +-------------------------- +ATK +5% +-------------------------- +MATK +5% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Enables the use of Level 1 Lord of Vermilion. +-------------------------- +Type: Accessory +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28551# +A strengthened glove engraved with the patterns of the Rune Midgard Kingdom. +It was given to those who were allowed to contribute to the nation. +-------------------------- +ATK +5% +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Protects from skill cast interruption. +-------------------------- +When equipped with Imperial Feather: +Decreases After Skill Delay by of Overbrand by 2 seconds. +Increases damage of Cannon Spear by 20%. +Increases damage of Overbrand by 20%. + +For each Level of Cannon Spear and Overbrand: +Increases Ranged Physical Damage by 2%. +-------------------------- +Type: Accessory +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28552# +One of the seven magical tools possessed by Zilant. +A dish that transcends the truth that a fool who wanted conflicting powers lost his sanity and gained with madness. +The force obtained depends on the mounting site. +-------------------------- +When equipped as Accessory Right: +MaxSP +15% +Decreases After Skill Delay by 15%. +Decreases Dragon Breath - Water skill cooldown by 0.5 seconds. +-------------------------- +When equipped as Accessory Left: +MaxHP +15% +Decreases Variable Casting Time by 15%. +Decreases Dragon Breath skill cooldown by 0.5 seconds. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +28554# +A vigilante badge that was working to protect the security of the town. +-------------------------- +MATK +30 +-------------------------- +Reflects 5% of recieved Melee Physical Damage. +-------------------------- +Type: Accessory +Defense: 2 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +28555# +A necklace decorated with feathers that allows you to feel the power of nature. +-------------------------- +Recovers 50 HP and 5 SP when defeating monsters. +-------------------------- +Type: Accessory +Defense: 2 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +28556# +An honorable badge sent to Rockridge meritors. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Recovers 50 HP and 5 SP every 5 seconds. +-------------------------- +When equipped with Rock Ridge Badge of Glory: +ATK +6%, MATK +6% +Decreases Variable Casting Time by additional 10%. +Decreases After Skill Delay by additional 5%. +Recovers additional 100 HP and 10 SP every 5 seconds. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Position: Left +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28557# +A prestigious badge sent to Rockridge meritors. +-------------------------- +ATK +6%, MATK +6% +-------------------------- +Recovers 50 HP and 5 SP every 5 seconds. +-------------------------- +When equipped with Rock Ridge Badge of Glory: +ATK +6%, MATK +6% +Decreases Variable Casting Time by 10%. +Decreases After Skill Delay by 5%. +Recovers additional 100 HP and 10 SP every 5 seconds. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Position: Right +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28560# +An amulet that can release a greater amount of magical power by converting the power of yin and yang into magical power and accumulating it. +-------------------------- +MATK +5% +HIT +20 +ASPD +5% +-------------------------- +When equipped with Burning Sword: +Increases damage of Crimson Rock by 10%. +-------------------------- +When equipped with Purification Sword: +Increases damage of Judex by 50%. +-------------------------- +When equipped with Abyss Sword +Increases damage of Hell Inferno by 100%. +-------------------------- +When equipped with David Shield and Burning Sword: +For each Refine Level of Burning Sword: +HIT +5, ASPD +4% +Increases damage of Crimson Rock by 1%. +-------------------------- +When equipped with David Shield and Purification Sword: +For each Refine Level of Purification Sword: +HIT +5, ASPD +4% +Increases damage of Judex by 5%. +-------------------------- +When equipped with David Shield and Abyss Sword: +For each Refine Level of Abyss Sword: +HIT +5, ASPD +4% +Increases damage of Hell Inferno by 10%. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +28561# +A ring created by the brave men who fought to defeat Morocc. +It is also said that some Morocc skins are used. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Base Level at least 120: +ATK +50 +MaxHP +5%, MaxSP +5% +-------------------------- +When equipped with Veteran Hammer and Heroic Boots: +Increases critical chance against Undead, Demon and Demi-Human race by additional 50. +Random chance to auto-cast Holy Cross, skill level based on the level of Duple Light, on the enemy when recieving physical or magical damage. +Random chance to auto-cast Level 3 Hell Judgement around yourself and transform the user in Fallen Bishop Hibram for 5 seconds when recieving physical damage. + +Refine Level of Veteran Hammer is +7 or higher: +ATK +5%, MATK +5% +Increases damage of Holy Cross by 50%. + +Refine Level of Veteran Hammer is +9 or higher: +ATK +15%, MATK +15% +Increases damage of Holy Cross by additional 100%. +-------------------------- +When equipped with Veteran Sword and Heroic Boots: +Decreases SP Consumption of Bash by 5. +Decreases SP Consumption of Bowling Bash by 10. + +Refine Level of Veteran Sword is +7 or higher: +Increases damage of Bash and Bowling Bash by additional 100%. + +Refine Level of Veteran Sword is +9 or higher: +Increases damage of Bash and Bowling Bash by additional 200%. +-------------------------- +When equipped with Veteran Axe and Heroic Boots: +Decreases Axe Tornado skill cooldown by additional 0.5 seconds. +Random chance to drop Mastela Fruit when defeating monsters. + +Refine Level of Veteran Axe is +7 or higher: +Increases damage of Axe Tornado by 20%. + +Refine Level of Veteran Axe is +9 or higher: +Increases damage of Axe Tornado by additional 40%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28562# +A ring designed with excellent craftsmanship to help with hunting. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Type: Accessory +Position: Left +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +28563# +A ring designed with excellent craftsmanship to help with hunting. +-------------------------- +Decreases Variable Casting Time by 7%. +-------------------------- +Type: Accessory +Position: Left +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +28564# +The thing that the tears shed when the battle maiden chose the dead person crystallized. +It is said some of God's powers were sealed in it. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Increases SP Recovery Rate by 50%. +-------------------------- +Decreases Variable Casting Time of Oratio by 50%. +Decreases Fixed Casting Time of Oratio by 100%. +-------------------------- +For each 2 Base Level: +Increases damage of Magnus Exorcismus by 3%. +-------------------------- +For each Level of Impositio Manus: +Increases Magical Damage against monsters of Small, Medium and Large size by 3%. +-------------------------- +If Level 5 Impositio Manus is learned: +Enables the use of Level 2 Odin's Power. +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28565# +A mask that was excavated from buddha temple in Payon. +It seems like it was used for some kind of rituals. +-------------------------- +For each 18 base STR: +INT +3 +Ignores 15% magical defense of targets. +-------------------------- +For each 18 base AGI: +LUK +3 +Perfect Dodge +1 +-------------------------- +For each 18 base VIT: +DEX +3 +Decreases Variable Casting Time by 1%. +-------------------------- +For each 18 base INT: +STR +3 +Decreases After Skill Delay by 1%. +-------------------------- +For each 18 base DEX: +VIT +3 +MaxHP +1% +-------------------------- +For each 18 base LUK: +AGI +3 +Ignores 15% physical defense of targets. +-------------------------- +Type: Accessory +Position: Left +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +28566# +A ring given to beginner adventurers which are starting another adventure. +-------------------------- +Increases Attack Speed(Decreases After Attack Delay by 10%). +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28573# +A beautiful ring with a big shiny emerald inserted into it. +-------------------------- +AGI +5 +DEX +5 +VIT +5 +-------------------------- +Decreases SP Consumption of Improvised Song by 18. +-------------------------- +For each Base Level: +Increases damage of Double Strafe by 1%. +Increases damage of Arrow Shower by 1%. +-------------------------- +For each 10 Base Level: +Increases damage of Severe Rainstorm by 2%. +-------------------------- +For each 2 Level of Double Strafe: +AGI +1, VIT +1, DEX +1 +ATK +20 +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28575# +A component of a robot. It has the power to increase concentration. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Increases Physical Damage against enemies of all elements by 5%. +-------------------------- +Perfect HIT +20% +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +# +28576# +A small and cute ring in the shape of a cat. +From that, you can feel the movement of tremendous force. +-------------------------- +ATK +5%, MATK +5% +-------------------------- +Increases HP Recovery Amount of Novice Potion by 100%. +-------------------------- +Increases Healing skills effectiveness by 5%. +-------------------------- +Protects from skill cast interruption. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Summoner (Doram) +# +28577# +A fresh necklace made by connecting clover flowers. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +ATK +5% +-------------------------- +For each 5 Levels of Animal skills: +Increases Attack Speed (Decreases After Attack Delay by additional 1%). +MaxHP +1%, MaxSP +1% +ATK +2% +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +28578# +A cute necklace made by connecting clover flowers. +-------------------------- +Perfect Dodge +5 +-------------------------- +Decreases SP Consumption by 5%. +-------------------------- +Increases SP Recovery Rate by 10%. +-------------------------- +For each 5 Levels of Seafood skills: +MaxHP +2%, MaxSP +2% +Increases SP Recovery Rate by additional 10%. +Increases Healing skills effectiveness by 4%. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +28579# +A necklace with magical power by connecting clover flowers. +-------------------------- +MATK +5% +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +For each 5 Levels of Plant skills: +MaxHP +1%, MaxSP +1% +Decreases Variable Casting Time by additional 1%. +MATK +2% +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +28580# +A amulet made like a real mackerel. +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Enables the use of Level 3 Heal. +-------------------------- +Enables the use of Level 3 Blessing. +-------------------------- +Increases Healing skills effectiveness by 10%. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Summoner (Doram) +# +28581# +A high class amulet made like a real mackerel. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Decreases After Skill Delay by 10%. +-------------------------- +Enables the use of Level 5 Heal. +-------------------------- +Enables the use of Level 5 Blessing. +-------------------------- +Increases Healing skills effectiveness by 20%. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Summoner (Doram) +# +28582# +An elegant amulet made like a real mackerel. +-------------------------- +Decreases Variable Casting Time by 15%. +-------------------------- +Decreases After Skill Delay by 15%. +-------------------------- +Enables the use of Level 10 Heal. +-------------------------- +Enables the use of Level 10 Blessing. +-------------------------- +For each 10 Base Level: +Increases Healing skills effectiveness by 2%. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +28583# +A amulet in the shape of a leaf of the Actinidia polygama. +-------------------------- +MATK +5% +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Increases damage of 0Catnip Meteor by 5%. +-------------------------- +Decreases Variable Casting Time of Catnip Meteor by 10%. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Summoner (Doram) +# +28584# +A high class amulet in the shape of a leaf of the Actinidia polygama. +-------------------------- +MATK +5% +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Decreases After Skill Delay by 10%. +-------------------------- +For each 10 Base Level: +Increases damage of 0Catnip Meteor by 1%. +Decreases Variable Casting Time of Catnip Meteor by 3%. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +28585# +A elegant amulet in the shape of a leaf of the Actinidia polygama. +-------------------------- +MATK +10% +-------------------------- +Decreases Variable Casting Time by 15%. +-------------------------- +Decreases After Skill Delay by 15%. +-------------------------- +Increases damage of 0Catnip Meteor by 10%. +-------------------------- +Decreases Variable Casting Time of Catnip Meteor by 20%. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Summoner (Doram) +# +28586# +A cute rabbit doll amulet. +-------------------------- +ATK +5% +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Increases damage of 0Lunatic Carrot Beat by 5%. +-------------------------- +Decreases Variable Casting Time of 0Lunatic Carrot Beat by 10%. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Summoner (Doram) +# +28587# +A high class and cute rabbit doll amulet. +-------------------------- +ATK +5% +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Decreases After Skill Delay by 10%. +-------------------------- +Increases damage of 0Lunatic Carrot Beat by 10%. +-------------------------- +Decreases Variable Casting Time of 0Lunatic Carrot Beat by 20%. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Summoner (Doram) +# +28588# +A elegant and cute rabbit doll amulet. +-------------------------- +ATK +10% +-------------------------- +Decreases Variable Casting Time by 15%. +-------------------------- +Decreases After Skill Delay by 15%. +-------------------------- +For each 10 Base Level: +Increases damage of 0Lunatic Carrot Beat by 1%. +Decreases Variable Casting Time of 0Lunatic Carrot Beat by 3%. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Summoner (Doram) +# +28589# +Amulet made from mysterious glowing branches. +-------------------------- +MATK +5% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Decreases Variable Casting Time of 0Silvervine Stem Spear by 50%. +-------------------------- +Decreases SP Consumption of 0Silvervine Stem Spear by 10. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +28590# +A high-class amulet made like a real tuna. +-------------------------- +Perfect Dodge +5 +-------------------------- +Enables the use of Level 10 Heal. +-------------------------- +Increases Healing skills effectiveness by 20%. +-------------------------- +Decreases SP Consumption of 0Tuna Belly and Tuna Party by 20. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +28591# +Amulet with the motif of a fat earthworm. +-------------------------- +ATK +10% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Decreases Variable Casting Time of 0Picky Peck by 50%. +-------------------------- +Decreases SP Consumption of 0Picky Peck by 10. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +28592# +Listening to the rumors while conveying the blessings of the Angeling Poring, just looking at it makes you want to wear it immediately. +-------------------------- +MaxHP +3% +MaxSP +3% +-------------------------- +Set Bonus +Angeling Poring Ring +Angel Forging Earrings +ATK +20 +MATK +20 +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +None +# +28593# +A ring that is rumored to have been blessed by Angeling Poring. Just looking at it makes you want to wear it immediately. +-------------------------- +All Stats +1 +-------------------------- +Set Bonus +Angeling Poring Ring +Angel Forging Earrings +ATK +20 +MATK +20 +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +None +# +28594# +A ring that the magician had on his body for a long time. It resonates with the power of time's decision. +-------------------------- +MaxHP +10% +MaxSP +10% +ATK +50 +MATK +50 +-------------------------- +When equipped with Bear's Power: +STR +40 +MaxHP +10% +-------------------------- +When equipped with Hawkeye: +DEX +40 +HIT +50 +-------------------------- +When equipped with Lucky Day: +LUK +40 +Increases Critical Damage by 30%. +-------------------------- +When equipped with Muscle Fool: +MDEF +40 +Decreases Variable Casting Time by 20%. +-------------------------- +When equipped with Runaway Magic: +INT +40 +MaxSP +10% +-------------------------- +When equipped with Speed of Light: +FLEE +40 +Decreases After Skill Delay by 30%. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28596# +A ring that makes a striking sound when shaken. +I feel that the attack has become stronger. +-------------------------- +STR +5, AGI +5 +VIT +5 +-------------------------- +Enables the use of Level 5 Hammerfall. +-------------------------- +For each Base Level: +Increases damage of Bash by 1%. +-------------------------- +For each 5 Base Level: +Increases damage of Bowling Bash by 3%. +-------------------------- +For each 2 Levels of Sword Mastery: +STR +1, AGI +1, +VIT +1, ATK +10 +-------------------------- +When equipped with Meteor Strike: +ATK +100 +Increases damage of Bowling Bash by additional 50%. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28597# +A badge made in the shape of a cherry blossom. +-------------------------- +ATK +5 +Increases SP recovery rate by 5% +Reduce SP consumption of Chain Combo by 10% +-------------------------- +Type: Accessory +Defense: 5 +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +# +28598# +A chip that amplifies the amount of muscle power that can be used and maximizes robot operation technology. +-------------------------- +STR +5,VIT +5 +DEX +5 +-------------------------- +ATK +5% +-------------------------- +If Level 3 Arms Cannon is learned: +Decreases After Skill Delay by of all skills by 30%. +-------------------------- +If Level 3 Neutral Barrier is learned: +Decreases Variable Casting Time of Arms Cannon, Ice Launcher and Flame Launcher by 50%. +-------------------------- +If Level 3 Pile Bunker is learned: +STR +5, VIT +5 +DEX +5, ATK +100 +-------------------------- +If Level 5 Fire Earth Research is learned: +Nullifies Mado Gear Fuel requirement of certain skills. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28600# +Blue Book which has destructive power. +-------------------------- +VIT +5 +INT +5 +-------------------------- +When VIP status active: +MATK +20% +Decreases After Skill Delay by 10%. +-------------------------- +Type: Book +Attack: 200 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +28601# +Gold Book which has destructive power. +-------------------------- +VIT +8 +INT +8 +-------------------------- +Type: Book +Attack: 160 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 120 +Archbishop +# +28602# +A Bible that only skilled clergy are allowed to have. +The content about the demon extermination passed down from generation to generation is recorded. +-------------------------- +MATK +170 +-------------------------- +INT +2 +DEX +2 +-------------------------- +Increases damage of Magnus Exorcismus by 30%. +-------------------------- +Increases recovery amount gained from Healing skills and Restorative items by 10%. +-------------------------- +For each base INT: +Increases damage of Magnus Exorcismus by 1%. +Applies up to 120 base INT. +-------------------------- +Refine Level +1: +Adds a chance of ignoring 100% of the attacker's magical defense for 1 second when attacked physical attacks. + +For each Refine Level: +Extends the activation time by 1 second. +-------------------------- +When equipped with Spiritual Ring: +Decreases Variable Casting Time of Magnus Exorcismus by -25%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Book +Attack: 30 +Weight: 50 +Element: Holy +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 110 +Archbishop +# +28603# +A book that details prophesies concerning the end of the world. +-------------------------- +Increases Physical Damage against enemies of Earth, Water, Fire and Wind elemental by 7% and Holy elemental by 5%. +-------------------------- +Type: Book +Attack: 120 +Weight: 80 +Element: Shadow +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 40 +Priest, Sage and Star Gladiator +# +28604# +Book that emitting red aura. +-------------------------- +ATK increased by (RefineLv*RefineLv), up to +15 Refine Level. +-------------------------- +MATK increased by (RefineLv*RefineLv)/2, up to +15 Refine Level. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Book +Attack: 45 +Weight: 45 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Priest, Sage and Star Gladiator +# +28605# +Book imbued with Vicious Mind. +-------------------------- +Increases ATK by (Refinelv*Refinelv). +(up to +15 Refine Level) +-------------------------- +Increases MATK by (Refinelv*Refinelv). +(up to +15 Refine Level) +-------------------------- +Indestructible in battle +-------------------------- +Type: Book +Attack: 95 +Weight: 95 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 160 +Archbishop and Sorcerer +# +28606# +A certified kingdom equipment for adventurer. +-------------------------- +Increases ATK by (Refine*Refine*1.25) +-------------------------- +Type: Book +Attack: 42 +Weight: 22 +Weapon Level: 3 +-------------------------- +Requirement: +Priest, Sage and Star Gladiator +# +28607# +A metallic book made of Oridecon created for experienced adventurers. +-------------------------- +MATK +40 +-------------------------- +Increases Healing skills effectiveness by 10%. +-------------------------- +Increases damage of Psychic Wave by 10%. +-------------------------- +For each Refine Level: +ATK +7, MATK +5 +-------------------------- +For each 10 Base Levels: +ATK +7, MATK +3 (Up to Base Level 150). +-------------------------- +When equipped by Sorcerer: +MATK +10 +-------------------------- +Type: Book +Attack: 70 +Weight: 0 +Weapon Level: 3 +Enchantable: Yes +Enchanter: [Jumping Enchant Specialist]prontera,151,187,0,100,0,0 +-------------------------- +Requirement: +Base Level 100 +Archbishop and Sorcerer +# +28608# +A book in which the origin of elemental magics are written. +-------------------------- +INT +4 +MATK +150 +-------------------------- +Increases Bolt magic damage by 10%. +-------------------------- +Refine Level +7: +Increases Bolt magic damage by additional 10%. +-------------------------- +Refine Level +9: +Increases Bolt magic damage by additional 10%. +-------------------------- +Type: Book +Attack: 120 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +28609# +A weapon of unknown origin with the magical power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +MATK +140 +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by 2%. +-------------------------- +Refine Level +7: +MATK +4% +-------------------------- +Refine Level +9: +MATK +4% +-------------------------- +When compounded with Labyrinth Baphomet Card: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Indestructible in battle +-------------------------- +Type: Book +Attack: 120 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Archbishop, Sorcerer and Star Emperor +# +28610# +A Diva Doxtail that has been mutated under the influence of the power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +Attack Range: 5 cells +-------------------------- +MATK +140 +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by 2%. +-------------------------- +Refine Level +7: +MATK +4% +-------------------------- +Refine Level +9: +MATK +4% +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Indestructible in battle +-------------------------- +Type: Book +Attack: 120 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Archbishop, Sorcerer and Star Emperor +# +28611# +A book where an evil spirit dweliing inside. +-------------------------- +MATK +100 +-------------------------- +For each Refine Level: +MATK +1 +-------------------------- +Indestructible in battle +-------------------------- +Type: Book +Attack: 90 +Weight: 60 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Archbishop and Sorcerer +# +28612# +An end-of-the-life report about the fearful and terrible story of the end of the world. +-------------------------- +Increases Physical Damage on Water, Earth, Fire and Wind elemental by 10%. +-------------------------- +For each 3 Refine Levels: +Increases Physical Damage on Water, Earth, Fire and Wind elemental by additional 10% (Up to Refine Level +10). +-------------------------- +Increases damage taken from Holy elemental attacks by 30%. +-------------------------- +When equipped with Illusion Skull Ring: +Increases Attack Speed (Decreases After Attack Delay by 8%). +-------------------------- +For each 3 Refine Levels of Illusion Apocalypse: +Increases Critical Damage by 5%. +-------------------------- +Refine Level of Illusion Apocalypse is +9 or higher: +Critical +15, +Prevents Curse status. +-------------------------- +Refine Level of Illusion Apocalypse is +11 or higher: +ATK +100 +-------------------------- +Type: Book +Attack: 170 +Weight: 80 +Element: Shadow +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Sorcerer, Arc Bishop and Taekwon +# +28613# +A spellbook for sorcerers who are somewhat used to dealing with magic. +When equipped with Enhanced Time Keeper Armor, will makes wearer's body more agile. +-------------------------- +MATK +160 +-------------------------- +Increases damage of Earth Grave by 20%. +-------------------------- +For every 10 Base Level: +MATK +6 (Up to Base Level 160). +-------------------------- +Refine Level +7: +For each Level of Advanced Book: +MATK +1% +-------------------------- +When equipped with Enhanced Time Keeper Hat, Enhanced Time Keeper Robe, nhanced Time Keeper Manteau, Enhanced Time Keeper Boots: +ASPD +2, +MaxHP and MaxSP +10% + +For every 10 Base VIT: +Decreases damage taken from Neutral elemental attacks by 3%. +(up to Base VIT 100) + +For every 10 Base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +(up to Base AGI 100) + +For every 10 Base DEX: +HIT +3 +(up to Base DEX 100) + +For every 10 Base LUK: +Critical +3 +(up to Base LUK 100) +-------------------------- +Type: Book +Attack: 60 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +28614# +When equipped with Enhanced Time Keeper Armor, will makes wearer's body more agile. +-------------------------- +MATK +140 +-------------------------- +Increases damage of Duple Light by 20%. +-------------------------- +For every 10 Base Level: +MATK +6 (Up to Base Level 160). +-------------------------- +Refine Level +7: +For each Level of Kyrie Eleison: +MATK +1% +-------------------------- +When equipped with Enhanced Time Keeper Hat, Enhanced Time Keeper Robe, nhanced Time Keeper Manteau, Enhanced Time Keeper Boots: +ASPD +2, +MaxHP and MaxSP +10% + +For every 10 Base VIT: +Decreases damage taken from Neutral elemental attacks by 3%. +(up to Base VIT 100) + +For every 10 Base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +(up to Base AGI 100) + +For every 10 Base DEX: +HIT +3 +(up to Base DEX 100) + +For every 10 Base LUK: +Critical +3 +(up to Base LUK 100) +-------------------------- +Type: Book +Attack: 120 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +28615# +A book that records the origin of all elements. +-------------------------- +MATK +150 +-------------------------- +Increases Magical Damage with Fire, Water, Wind, Earth and Neutral element by 10%. +-------------------------- +Decreases Variable Casting Time of Psychic Wave by 3 seconds. +-------------------------- +Refine Level +7: +Increases Magical Damage with Fire, Water, Wind, Earth and Neutral element by additional 15%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Fire, Water, Wind, Earth and Neutral element by additional 20%. +-------------------------- +When equipped with Frontier Boots: +Decreases After Skill Delay by 20%. + +Refine Level of Frontier Boots is +7 or higher: +For each Refine Level of Book of Origin: +Increases Magical Damage against monsters of Fire, Water, Wind and Earth elemental by 3%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Book +Attack: 180 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Archbishop, Sorcerer and Star Emperor +# +28616# +Bible specially made for beginner arch bishops. +It will show it's true ability when equipped together with Beginner Armor set. +-------------------------- +MATK +130 +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +7: +Increases damage of Adoramus by 15%. +-------------------------- +When equipped with Beginner's Hat, Beginner's Suit, Beginner's Manteau, Beginner's Boots, Beginner's Ring: +For each 10 Base Level: +MATK +3 (up to Base Level 150) + +Decreases Variable Casting Time by 10% +Increases Magical Damage with Holy element by 5%. +-------------------------- +Type: Book +Attack: 100 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +28618# +A book that contains the writings of the Sun God, it has the power to attract materials from space. +It has the power to attract various substances. +-------------------------- +MATK +170 +-------------------------- +Physical attacks have a random chance to auto-cast Level 3 Meteor Storm. +-------------------------- +For each refine level: +MaxHP +200 +MaxSP +50 +ASPD +1% +-------------------------- +Refine Level +8: +Increases the random chance of physical attacks to auto-cast Level 4 Meteor Storm instead Level3 +-------------------------- +Refine Level +10: +Increases the random chance of physical attacks to auto-cast Level 5 Meteor Storm instead Level 4. +-------------------------- +Type: Book +Attack: 180 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Archbishop and Sorcerer +# +28619# +There are traces of prisoners who were imprisoned in small numbers and secretly avoided the guard's eyes on this Dairy. +-------------------------- +MaxHP +5% +MaxSP +5% +-------------------------- +For each 2 Refine Levels: +ATK +20 +-------------------------- +Refine Level +7: +Increases Damage against monsters of Undead elemental and Demon race monsters by 10%. +-------------------------- +Refine Level +9: +Increases Damage against monsters of Undead elemental and Demon race monsters by additional 15%. +-------------------------- +Refine Level +11: +Increases Damage against monsters of Undead and Shadow elemental by 15.% +-------------------------- +Type: Book +Attack: 210 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 175 +Sage, Priest and Star Gladiator classes +# +28626# +Since it is a stone that is said to contain wise words, the weight is naturally heavy, and if it is correct, it is hard to keep up. +-------------------------- +Increases Physical Damage against enemies of Shadow, Undead, Poison and Ghost elemental by 10%. +-------------------------- +For each 3 Refine Levels: +Increases Physical Damage against enemies of Shadow, Undead, Poison and Ghost elemental by additional 10% (up to Refine Level 10). +-------------------------- +Increases Physical Damage taken from Shadow elemental by 30%. +-------------------------- +When equipped with Illusion Ring: +Increases Attack Speed (Decreases After Attack Delay by 8%). +-------------------------- +For each 2 Refine Levels of Illusion Tablet: +Increases Critical Damage by 5% +-------------------------- +Refine Level +9: +Critical +15 +-------------------------- +Refine Level +11: +ATK +100 +-------------------------- +Type: Book +Attack: 170 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Sage, Priest and Star Gladiator classes +# +28627# +A weapon that has been mutated by receiving the magical power of a stranger. +Even if they look the same, their performance is different. +-------------------------- +MATK +140 +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by 2%. +-------------------------- +Refine Level +7: +MATK +5% +Decreases damage taken from Players by 5%. +-------------------------- +Refine Level +9: +MATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Book +Attack: 120 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +Archbishop, Sorcerer and Star Emperor +# +28629# +Circuit board made in unknown format. +It's pretty hard and suitable to swing. +-------------------------- +ATK +3% +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases Damage against monsters of Small and Medium size by 20%. +-------------------------- +Refine Level +11: +Increases Critical Damage by 20%. +-------------------------- +Type: Book +Attack: 180 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Sage, Priest and Star Gladiator +# +28630# +The Bible on Demon Era, reportedly used by ancient high priests. +It resonates with Ancient Hero's Boots. +-------------------------- +MATK +160 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Duple Light by 25%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Increases damage of Duple Light by additional 25%. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase INT by 20 and MATK by 15% for 7 seconds when dealing magical damage. +-------------------------- +Type: Book +Attack: 165 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +28631# +An ancient book titled The Only Sun on the Sky. +It is not known when anyone wrote down, but it contains knowledge of the heavenly bodies. +It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +MaxSP +2% +-------------------------- +Refine Level +7: +Increases damage of Prominence Kick by 15%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Increases damage of Solar Burst by 20%. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase STR by 20 and ATK by 15% for 7 seconds when dealing physical damage. +-------------------------- +Type: Book +Attack: 160 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Star Emperor +# +28632# +A Bible about the eradication of demons that is said to have been used by ancient high priests. +-------------------------- +MATK +160 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Duple Light by 25%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases damage of Duple Light by additional 30%. +-------------------------- +Type: Book +Attack: 165 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 99 +Archbishop +# +28633# +A book of magical interpretations of the four attributes. +-------------------------- +MATK +175 +-------------------------- +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by 20%. +-------------------------- +For each Refine Level: +MATK +4 +-------------------------- +Refine Level +9: +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by additional 30%. +-------------------------- +Refine Level +11: +Increases damage of Heaven's Drive and Earth Spike by 50%. +-------------------------- +Type: Book +Attack: 120 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Sorcerer +# +28635# +I feel safe just by holding abook full of know-how to +prevent for various industrial and natural disasters. +-------------------------- +ATK +10% +Critical +3 +-------------------------- +Refine Level +7: +ATK +40 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases Critical Damage by 15%. +Physical attacks have a chance to increase physical damage against all size enemies by 15% for 10 seconds. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 20%. +-------------------------- +Type: Book +Attack: 200 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Star Emperor +# +28636# +A magical book used by Glastheim Scholars. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +Indestructible in battle +-------------------------- +MATK +170 +-------------------------- +Increases Wind and Water elemental magical damage by 5%. +-------------------------- +For each Refine Level: +MATK +4 +-------------------------- +Refine Level +9: +Increases damage of Varetyr Spear and Diamond Dust by 20%. +-------------------------- +Refine Level +11: +Increases Magical Damage against monsters of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +MATK +30 +Physical attacks have a chance to increase Ranged Physical Damage by additional 10% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Magical Damage against Holy and Undead elemental by 20%. +-------------------------- +Type: Book +Attack: 90 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Sorcerer +# +28700# +A golden knife with brual power. +-------------------------- +STR +8 +INT +8 +-------------------------- +Type: Dagger +Attack: 160 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Shadow Chaser +# +28701# +A golden knife with brual power. +-------------------------- +STR +8 +INT +8 +-------------------------- +Type: Dagger +Attack: 160 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Sorcerer +# +28702# +A golden knife with brual power. +-------------------------- +MATK +150 +-------------------------- +Type: Dagger +Attack: 150 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +28703# +This weapon contains a strange energy. +I feel that one of its benefits were sealed with a high cost. +-------------------------- +MATK +100 +-------------------------- +Type: Dagger +Attack: 125 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Swordsman, Archer, Novice, Ninja, Thief, Magician, Merchant and Soul Linker +# +28704# +One of a pair of daggers made for the Assassin's Guild. +-------------------------- +When equipped with Sandstorm: +MaxHP +5% +MaxSP +20 +HIT +10 +Increases Physical Damage against enemies of Large size by 30%. +Random chance to Reduces After Attack Delay by 100% for 7 seconds when dealing physical damage. +-------------------------- +Type: Dagger +Attack: 130 +Weight: 60 +Weapon Level: 2 +-------------------------- +Requirement: +Base Level 70 +Assassin Cross +# +28705# +Dagger that emitting red aura. +-------------------------- +Increases ATK by (Refine*Refine) +up to +15 Refine Level. +-------------------------- +Increases MATK by (Refine*Refine)/2 +up to +15 Refine Level. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Dagger +Attack: 55 +Weight: 55 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Ninja and Soul Linker +# +28706# +Dagger imbued with Vicious Mind. +-------------------------- +MATK +50 +-------------------------- +Increases ATK by (Refinelv*Refinelv). +(up to +15 Refine Level) +-------------------------- +Increases MATK by (Refinelv*Refinelv)/2. +(up to +15 Refine Level) +-------------------------- +Type: Dagger +Attack: 105 +Weight: 105 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 160 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Ninja and Soul Linker +# +28707# +A dagger that was acquired from defeating the demon god and it's followers. +-------------------------- +Refine Level +5: +Increases Damage against Demon Morocc monsters by 20%. +Decreases damage taken from Demon Morocc monsters by 5%. +-------------------------- +Refine Level +7: +Increases Damage against Demon Morocc monsters by additional 30%. +Decreases damage taken from Demon Morocc monsters by additional 10%. +-------------------------- +Refine Level +9: +Increases Damage against Demon Morocc monsters by additional 40%. +Decreases damage taken from Demon Morocc monsters by additional 20%. +-------------------------- +Type: Dagger +Attack: 120 +Weight: 90 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 70 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +28708# +A dagger with the power of lightning. +It is said that the original performance can be exhibited by regaining the power of the gale. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Fish race by additional 10%. +Increases Physical Damage against enemies of Water elemental by additional 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Fish race by additional 15%. +Increases Physical Damage against enemies of Water elemental by additional 15%. +-------------------------- +When equipped with Thunder Ring: +Increases Damage against monsters of Fish race by additional 20%. +Increases Damage against Water elemental by additional 20%. +-------------------------- +Type: Dagger +Attack: 150 +Weight: 100 +Element: Wind +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +28709# +A replica made based on a hunting sword. +Because it is an incomplete replica, its shape as a weapon collapses after a certain period of time. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Insect and Demi-Human race, except ^FF000Players, by 10%. +Increases Physical Damage against enemies of Water and Earth elemental by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Insect and Demi-Human race, except ^FF000Players, by additional 15%. +Increases Physical Damage against enemies of Water and Earth elemental by additional 15%. +-------------------------- +Can only be sold to NPCs. +-------------------------- +Type: Dagger +Attack: 150 +Weight: 0 +Element: Fire +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +28710# +Equipment made to survive Malangdo Island. +An excellent product that can be used for Maran enchantment and sells at unexpectedly high prices. +-------------------------- +Increases Damage against monsters in Malangdo Culvert and Octopus Cave by 25%. +Decreases damage taken from Malangdo Culvert and Octopus Cave monsters by 15%. +-------------------------- +Type: Dagger +Attack: 120 +Weight: 90 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 40 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +28711# +A dagger awarded by the king. +It seems to have the effect of calming the souls of the dead. +-------------------------- +MATK +100 +-------------------------- +Increases Damage against monsters in Bio Lab and Tomb of The Fallen by 20%. +-------------------------- +Refine Level +5: +Increases Damage against monsters in Bio Lab and Tomb of The Fallen by additional 20%. +-------------------------- +For each Refine Level above +6: +Increases Damage against monsters in Bio Lab and Tomb of The Fallen by additional 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Dagger +Attack: 100 +Weight: 40 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Super Novice, 3rd classes of Swordsman, Magician, Archer, Thief, Merchant and Ninja +# +28712# +One of Ancient King's twin blade. +It tooks ten thousand people and hundred of Ancient Swords to craft this sword. +-------------------------- +Increases damage of Cross Impact by 10%. +-------------------------- +When equipped with Glory to the King Sword: +Increases Attack Speed (Decreases After Attack Delay by 5%). +Increases damage of Cross Impact by 10%. +-------------------------- +Type: Dagger +Attack: 120 +Weight: 60 +Element: Shadow +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +3rd class of Swordman, Magician, Archer, Merchant, Thief and Ninja +# +28713# +One of Ancient King's twin blade. +It tooks hundred of craftsmen and thousand days to craft this sword. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When equipped with Ruin Bringer Sword: +Increases Attack Speed (Decreases After Attack Delay by 5%). +Increases damage of Cross Impact by 10%. +-------------------------- +Type: Dagger +Attack: 120 +Weight: 60 +Element: Holy +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +3rd class of Swordman, Magician, Archer, Merchant, Thief and Ninja +# +28714# +A metallic dager made of oridecon created for experienced adventurers. +-------------------------- +ASPD +1 +MATK +40 +-------------------------- +For each Refine Level: +ATK +7 +MATK +4 +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +For each 10 Base Level: +ATK +7, MATK +3 +(Applies up to Base Level 150) +-------------------------- +Type: Dagger +Attack: 90 +Weight: 0 +Weapon Level: 3 +Enchantable: Yes +Enchanter: [Jumping Enchant Specialist]prontera,151,187,0,100,0,0 +-------------------------- +Requirement: +Base Level 100 +Super Novice, Soul Linker, Ninja; 3rd classes of Swordsman, Magician, Archer, Merchant and Thief +# +28715# +A dagger imbued with the power of Earth. +It will show its true power by regaining the power of Tenshi. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Brute and Plant race by 10%. +Increases damage against Wind and Earth elemental by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Brute and Plant race by additional 15%. +Increases damage against Wind and Earth elemental by additional 15%. +-------------------------- +Type: Dagger +Attack: 150 +Weight: 100 +Element: Earth +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +28716# +A dentist's scalpel that is intended to treat patient's teeth, but it can also be used offensively to impend the victim's ability to speak. +-------------------------- +Random chance to auto-cast Level 1 Slow Cast on enemies when dealing physical attacks. +-------------------------- +Refine Level +9: +auto-cast Level 2 Slow Cast instead. +-------------------------- +Type: Dagger +Attack: 130 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 55 +Transcendent Swordman, Magician, Archer, Merchant and Thief +# +28717# +A noble knife of Valkyrie. +It seems that even weak people can be treated. +-------------------------- +MATK +50 +-------------------------- +When equipped by Novice: +ATK +100 +MATK +150 +MaxHP +300 +MaxSP +300 +Decreases SP Consumption by 5%. +Indestructible in battle + +For each Refine Level: +INT +2 +DEX +2 +MaxHP +200 +MaxSP +20 +MATK +15 +Critical +7 +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases Critical Damage by 1%. + +For each Refine Level: +For each 10 base DEX: +Dex -1 + +Refine Level +7: +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +When equipped by Mage: +For each Refine Level: +MaxHP +200 +MaxSP +20 + +Refine Level +7: +Decreases damage taken from Demi-Human race by 10%. +-------------------------- +When equipped by Hunter: +MaxHP +200 +Decreases SP Consumption by 5%. + +For each Refine Level: +INT +2 +DEX +2 +-------------------------- +When equipped by Bard and Dancer: +ATK +100 +Indestructible in battle + +For each Refine Level: +Increases Attack Speed (Decreases After Attack Delay by 10%). + +For each Refine Level: +For each 10 base DEX: +DEX -1 +-------------------------- +When equipped by Thief: +MATK +150 +MaxSP +100 + +For each Refine Level: +Increases Critical Damage by 1%. +-------------------------- +Type: Dagger +Attack: 50 +Weight: 10 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 70 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +28718# +An ancient sword held by god of eastern country. +-------------------------- +MATK +160 +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 50%. +-------------------------- +Decreases Soul Cutter skill cooldown by 1 second. +-------------------------- +For each Refine Level: +Increases damage of Soul Cutter by 2%. +-------------------------- +Type: Dagger +Attack: 120 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Super Novice, 3rd classes of Swordsman, Magician, Archer, Merchant, Thief and Ninja +# +28719# +A short blade with beautiful decoration of gemstone. +-------------------------- +Refine Level +3: +ATK +40, MATK +40. +-------------------------- +Refine Level +6: +Increases Physical Damage against enemies of Medium size by 8%. +Random chance to nullifie weapon damage penalty resulting from monster's size for 5 second when dealing physical attacks. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Medium size by 20%. +-------------------------- +Refine Level +12: +Nullifies weapon damage penalty resulting from monster's size. +-------------------------- +When VIP status active: +Recovers 1 SP when dealing physical attacks. +Increases Physical Damage against enemies of Medium size by 5% + +Refine Level +8: +Nullifies weapon damage penalty resulting from monster's size. + +Refine Level +9: +Physical attacks have a low chance to recover 2 SP every second for 5 seconds. +-------------------------- +Type: Dagger +Attack: 45 +Weight: 65 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 99 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +28720# +A dagger imbued with the power of water. +It will show its true power by regaining the power of Suiten. +-------------------------- +Refine Level +7: +Increases Physical Damage against monsters of Demon race by 10%. +Increases Damage against monsters of Fire elemental by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against monsters of Demon race by additional 15%. +Increases Damage against monsters of Fire elemental by additional 15%. +-------------------------- +Type: Dagger +Attack: 150 +Weight: 100 +Element: Water +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +28721# +A sharp edged sword used by ninja that hired by gold mine owner. +-------------------------- +For each Level of Throwing Mastery: +Increases damage of Kunai Splash by 1%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Type: Dagger +Attack: 100 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +28722# +A weapon of unknown origin with the magical power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +MATK +120 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When equipped with Labyrinth Baphomet Card: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Type: Dagger +Attack: 120 +Weight: 60 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Super Novice, 3rd Swordsman classes, 3rd Magician classes, 3rd Archer classes, 3rd Thief classes, 3rd Merchant classes, Soul Reaper, Kagerou and Oboro +# +28723# +A Diva Dagger that has mutated under the influence of the power of the labyrinth. +It is unknown what kind of material is refined, and even similar weapons have different performance. +-------------------------- +Attack Range: 5 cells +-------------------------- +MATK +120 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: Dagger +Attack: 120 +Weight: 60 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Super Novice, 3rd Swordsman classes, 3rd Magician classes, 3rd Archer classes, 3rd Thief classes, 3rd Merchant classes, Soul Reaper, Kagerou and Oboro +# +28724# +A dagger with evil spirit dwelling inside. +-------------------------- +For each Refine Level: +ATK +1 +-------------------------- +Type: Dagger +Attack: 100 +Weight: 20 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Super Novice, 3rd classes of Swordsman, Magician, Archer, Merchant, Thief and Ninja +# +28725# +A dagger imbued with lunar spirit and the power to drain enemy's soul. +-------------------------- +MaxSP +10% +-------------------------- +Recovers 3 SP when dealing physical attacks. +-------------------------- +Refine Level +10: +Recovers additional 4 SP when dealing physical attacks. +-------------------------- +Type: Dagger +Attack: 150 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 99 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +28726# +Daggers for Shadow Chasers who are somewhat used to dealing with daggers. +When equipped with Enhanced Time Keeper Armor, will makes wearer's body more agile. +-------------------------- +MATK +140 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +For every 10 Base Level: +ATK and MATK +3 (Up to Base Level 160). +-------------------------- +Refine Level +7: +For each Level of Snatcher: +MATK +1% +-------------------------- +When equipped with Enhanced Time Keeper Hat, Enhanced Time Keeper Robe, nhanced Time Keeper Manteau, Enhanced Time Keeper Boots: +ASPD +2, +MaxHP and MaxSP +10% + +For every 10 Base VIT: +Decreases damage taken from Neutral elemental attacks by 3%. +(up to Base VIT 100) + +For every 10 Base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +(up to Base AGI 100) + +For every 10 Base DEX: +HIT +3 +(up to Base DEX 100) + +For every 10 Base LUK: +Critical +3 +(up to Base LUK 100) +-------------------------- +Type: Dagger +Attack: 120 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +28727# +A dagger with the power of fire. +It is said that the original performance can be exhibited by regaining the power of \ +. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Insect and Demi-Human race, except ^FF000Players, by 10%. +Increases Physical Damage against enemies of Water and Earth elemental by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Insect and Demi-Human race, except ^FF000Players, by additional 15%. +Increases Physical Damage against enemies of Water and Earth elemental by additional 15%. +-------------------------- +Type: Dagger +Attack: 150 +Weight: 100 +Element: Fire +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +28737# +Shikina's sword that lives as the shadow of Groza. +The blade released from the scabbard obscures the surrounding light like a fog that covers the moon and quietly robs the adversary's cognitive ability and life. +-------------------------- +FLEE +10 +-------------------------- +Decreases Kunai Explosion skill cooldown by 1 second. +-------------------------- +Decreases Soul Cutter skill cooldown by 1 second. +-------------------------- +Refine Level +7: +FLEE +20 +-------------------------- +Refine Level +9: +FLEE +20 +-------------------------- +Type: Dagger +Attack: 120 +Weight: 60 +Element: Ghost +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Super Novice, 3rd Swordsman classes, 3rd Magician classes, 3rd Archer classes, 3rd Thief classes, 3rd Merchant classes, Soul Reaper, Kagerou and Oboro +# +28738# +A sharp edged sword used by ninja that hired by gold mine owner. +-------------------------- +For each Level of Throwing Mastery: +Increases damage of Kunai Splash by 1%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Type: Dagger +Attack: 100 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +28740# +Dagger specially made for beginner shadow chasers. +It will show its true ability when equipped together with Beginner armor set. +-------------------------- +MATK +100 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +7: +Increases Magical Damage with every element by 7%. +-------------------------- +When equipped with Beginner's Hat, Beginner's Suit, Beginner's Manteau, Beginner's Boots, Beginner's Ring: +For each 10 Base Level: +MATK +3 (up to Base Level 150) +ASPD +1 +Increases Attack Speed (Decreases After Attack Delay by additional 5%). +-------------------------- +Type: Dagger +Attack: 120 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +28744# +A dagger once used by ancient wizard. +It resonates with Ancient Hero's Boots. +-------------------------- +MATK +150 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +9: +Increases all elemental magical damage by 10%. +-------------------------- +Refine Level +11: +Random chance to auto-cast Level 3 Psychic Wave when dealing melee physical attacks. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase INT by 20 and MATK by 15% for 7 sec when dealing physical damage. +-------------------------- +Type: Dagger +Attack: 150 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +28745# +A dagger that has a high chance to do critical damage to a target. +-------------------------- +Critical +90 +-------------------------- +For each 2 Refine Levels: +Increases Critical Damage by 3%. +-------------------------- +Refine Level +7: +ATK +5% +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size monsters by 20%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of all elements by 20%. +-------------------------- +When equipped with Survivor's Manteau: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level of Illusion Dagger of Counter and Survivor's Manteau each is +7 or higher: +Increases Critical Damage by 15%. +-------------------------- +Total Refine Level of entire set at least +18: +Increases Attack Speed (Decreases After Attack Delay by 15%). +-------------------------- +Total Refine Level of entire set at least +22: +Enables Level 4 Double Attack. +-------------------------- +Type: Dagger +Attack: 170 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Magician and Soul Linker classes +# +28746# +A dagger received from suspicious weapon dealer Brute. +-------------------------- +Increases Physical Damage against Players by 60%. +-------------------------- +For each Refine Level: +Ignores physical defense of every race by 5%. +-------------------------- +Refine Level +8: +Increases Magical Damage against Players by additional 35%. +-------------------------- +Refine Level +9: +Increases Magical Damage against Players by additional 20%. +-------------------------- +Refine Level +10: +MaxHP +15% +MaxSP +15% +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's and moved to the storage. +-------------------------- +Type: Dagger +Attack: 120 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Super Novice, 3rd Swordsman classes, 3rd Magician classes, 3rd Archer classes, 3rd Thief classes, 3rd Merchant classes and Ninja classes +# +28753# +A weapon that has been transformed by the magical power of a stranger. +Even if they look the same, their performance is different. +-------------------------- +MATK +120 +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by 5%. +-------------------------- +Refine Level +9: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Dagger +Attack: 120 +Weight: 60 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +Super Novice, 3rd Swordsman classes, 3rd Magician classes, 3rd Archer classes, 3rd Thief classes, 3rd Merchant classes and Ninja classes +# +28755# +Dagger with black blade encrusted to transparent white beads. +-------------------------- +MATK +150 +-------------------------- +Increases Damage against Shadow and Undead elemental by 5%. +-------------------------- +Refine Level +7: +Increases Damage against Shadow and Undead elemental by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Kunai Splash by 20%. +-------------------------- +Refine Level +11: +Increases Damage against monsters of Demon and Undead race by 10%. +-------------------------- +Type: Dagger +Attack: 150 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Kagerou and Oboro +# +28759# +A dagger once used by ancient wizard. +-------------------------- +MATK +150 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +9: +Increases all elemental magical damage by 10%. +-------------------------- +Refine Level +11: +Random chance to auto-cast Level 3 Psychic Wave when dealing melee physical attacks. +-------------------------- +Type: Dagger +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 99 +Shadow Chaser +# +28762# +A formal dress dagger, engraved with luxurious emblems, that's usually worn on special occasions. +-------------------------- +INT +5 +MATK +170 +-------------------------- +For each 2 Refine Levels: +MATK +1% +-------------------------- +Refine Level +7: +Increases Magical Damage with Fire element by 10%. +-------------------------- +Refine Level +9: +Increases damage of Fire Bolt by 40%. +Increases damage of Fire Ball by 40%. +-------------------------- +Refine Level +11: +Increases damage of Meteor Storm by 30%. +Increases damage of Crimson Rock by 30%. +-------------------------- +When equipped with Fancy Flower: +MATK +50 +-------------------------- +Refine Level of Illusion Bazerald and Fancy Flower each is +7 or higher: +Decreases Variable Casting Time by 10%. +-------------------------- +Total Refine Level of entire set at least +18: +Increases Magical Damage against monsters of Small and Medium size by 15%. +-------------------------- +Total Refine Level of entire set at least +22: +Random chance to increase MATK +50 and Magical Damage with Fire element by 20% for 10 sec when dealing magical attacks. +-------------------------- +Type: Dagger +Attack: 120 +Weight: 50 +Element: Fire +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja classes +# +28763# +A ninja dagger once used by ninja in the past whose can withstand alcohol. +-------------------------- +When equipped with Kiri no Tsuyu and Ancient Hero's Boots: +Random chance to increase STR +20 and ATK by 10% for 7 sec when dealing physical attacks. +-------------------------- +Type: Dagger +Attack: 150 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Ninja +# +28764# +A ninja dagger once used by ninja in the past whose can withstand alcohol. +It must be equipped with another Ninja sword, Surudoi Kaze, to show its true power. +-------------------------- +When equipped with Surudoi Kaze: +For each 3 Refine Levels: +ATK +10 + +For each 5 Refine Levels: +ATK +2% + +Total Refine Level of entire set at least +14: +Increases damage of Cross Slash by 25%. + +Total Refine Level of entire set at least +16: +Decreases Cross Slash skill cooldown by 2 seconds. + +Total Refine Level of entire set at least +18: +Enables the use of Distorted Cresent, skill Level based on learned Level of Shadow Trampling. +Enables the use of Shadow Trampling, skill Level based on learned Level of Distorted Cresent. + +Total Refine Level of entire set at least +20: +Increases damage of Cross Slash by additional 25%. +-------------------------- +Type: Dagger +Attack: 150 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Ninja +# +28765# +One of the lost and forgotten Judgement Daggers. +It is said this dagger will shows its true ability when used together with Repent Slasher. +-------------------------- +When equipped with Repent Slasher: +Increases damage of Meteor Assault by 40%. +Increases damage of Soul Destroyer by 40%. + +For each 2 Refine Levels of Repent Slasher and Judgement Slasher: +ATK +8 + +Total Refine Level of entire set at least +16: +Increases damage of Cross Impact by 20%. +Increases damage of Counter Slash by 20%. + +Total Refine Level of entire set at least +18: +ATK +12% + +Total Refine Level of entire set at least +20: +Increases damage of Meteor Assault by additional 20%. +Increases damage of Soul Destroyer by additional 20%. +-------------------------- +Type: Dagger +Attack: 195 +Weight: 110 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Guillotine Cross +# +28766# +One of the lost and forgotten Judgement Daggers. +This dagger has no special abilities, will shows its true ability when used together with Judgement Slasher. +-------------------------- +Type: Dagger +Attack: 100 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Guillotine Cross +# +28767# +A dagger with a sharp blade. +It is specialized for both stabbing and cutting. +-------------------------- +Increases damage of Backstab by 40%. +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Increases damage of Fatal Manace by 30%. +-------------------------- +Refine Level +11: +Decreases SP Consumption of Fatal Manace by 10%. +-------------------------- +Type: Dagger +Attack: 185 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Shadow Chaser +# +28768# +Knife made of platinum. +-------------------------- +MATK +170 +MATK +5% +-------------------------- +For each Refine Level: +MATK +4 +-------------------------- +Refine Level +9: +Increases Fire, Water, Magical Damage with Wind and Earth element by 15%. +-------------------------- +Refine Level +11: +Random chance to increase MATK +100 and Magical damage against all size monsters by 30% for 10 sec when dealing physical attacks. +-------------------------- +Type: Dagger +Attack: 150 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Shadow Chaser +# +28771# +Hand held detector for metal detection in mines. +Lightweight and durable, it is also popular for self-defense. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Cross Impact by 10%. +-------------------------- +Refine Level +7: +ATK +40 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases damage of Cross Impact by additional 15%. +Physical attacks have a chance to increase physical damage against all size enemies by 15% for 10 seconds. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 20%. +-------------------------- +Type: Dagger +Attack: 200 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Guillotine Cross +# +28772# +Handheld detector made for jewelry detection in mines. +It has the effect of amplifying the wearer's power and is used for various purposes. +-------------------------- +MATK +180 +MATK +10% +-------------------------- +Increases Magical Damage with Fire and Neutral element by 7%. +-------------------------- +Refine Level +7: +MATK +40 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases Magical Damage with Fire and Neutral element by additional 8%. +Physical attacks have a chance to increase magical damage against all size enemies by 15% for 10 seconds. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 20%. +-------------------------- +Type: Dagger +Attack: 190 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Shadow Chaser +# +28774# +A personal dagger used by Glastheim Nobles. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +ATK +5% +-------------------------- +When equipped with Royal Gladius (L): +For each 2 Refine Levels of the total Refine Level of Royal Gladius (R) and Royal Gladius (L): +ATK +7 + +Total Refine Level of Royal Gladius (R) and Royal Gladius (L) is +18 or higher: +Increases damage of Cross Impact and Counter Slash by 20%. + +Total Refine Level of Royal Gladius (R) and Royal Gladius (L) is +22 or higher: +Increases Physical Damage against enemies of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +ATK +30 +Physical attacks have a chance to increase ATK by additional 10% for 10 seconds. + +Total Refine Level of entire set at least +40: +Increases Physical Damage against enemies of Holy and Undead elemental by 20%. +-------------------------- +Type: Dagger +Attack: 200 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Guillotine Cross +# +28775# +A personal dagger used by Glastheim Nobles. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +It doesn't seem to have the basic abilities, but when worn with Royal Gradius (R), it reveals it's original strength. +-------------------------- +Type: Dagger +Attack: 100 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Guillotine Cross +# +28776# +A personal dagger used by Glastheim Mages. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +MATK +170 +MATK +5% +-------------------------- +For each Refine Level: +MATK +4 +-------------------------- +Refine Level +9: +Increases Magical Damage with Fire and Neutral element by 15%. +-------------------------- +Refine Level +11: +Increases Magical Damage against monsters of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +MATK +30 +Magical attacks have a chance to increase Fire and Neutral elemenetal magic damage by additional 10% for 10 seconds. + +Total Refine Level of entire set at least +30: +Increases Magical Damage against Holy and Undead elemental by 20%. +-------------------------- +Type: Dagger +Attack: 200 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Shadow Chaser +# +28900# +Prontera kingdom's royal guard shield. +-------------------------- +Enables the use of Level 1 Shield Spell. +-------------------------- +Random chance to auto-cast Level 3 Asumptio on wearer when receiving physical damage. +Increasing Refine Level will Increases the chance of activating this effect. +-------------------------- +For each Refine Level: +DEF +10 +MDEF +1 +-------------------------- +Type: Shield +Defense: 30 +Weight: 300 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28901# +A rag doll that Piamette uses for both attack and defense? +It looks so real and alive! +-------------------------- +ASPD +3 +ATK +5% +MATK +5% +-------------------------- +Reflects 10% of Melee Physical Damage. +-------------------------- +When hit by a magic attack, there is a 10% chance for 2 seconds to reflect the magic attack with a 60% chance. +-------------------------- +Refine Level +7: +ATK +5 +MATK +5 +-------------------------- +Refine Level +9: +ATK +15 +MATK +15 +-------------------------- +Refine Level +12: +Critical +10 +Protects from skill cast interruption. +-------------------------- +Type: Shield +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +28902# +A rag doll that Piamette uses for both offense and defense. It looks so real and alive! +-------------------------- +ATK +5% +MATK +5% +-------------------------- +Adds a chance by 1% from every level of refinement to gain effect Nullify all magic spells, +including supportive skills for 2 seconds +when receiving a magical attack +-------------------------- +If upgrade level is +7 or higher: +ATK +5 +MATK +5 +-------------------------- +Refine Level +9: +Additional Atk + 10 +Additional Matk + 10 +Reflects 10% of the received short-ranged damage back to the attacker. +-------------------------- +Refine Level +12: +Critical +10 +-------------------------- +Type: Shield +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +28903# +A large rectangle curved shield made from three sheets of wood glued together and covered with canvas and leather. +-------------------------- +FLEE +5 +Perfect Dodge +1 +-------------------------- +For each 3 Refine Levels: +Perfect Dodge +2 +-------------------------- +Refine Level +10: +MaxHP +10% +MaxSP +10% +-------------------------- +Type: Shield +Defense: 1 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +28904# +A certified kingdom equipment for adventurer. +-------------------------- +Base Level is below 100: +For each Refine Level: +DEF +12 +-------------------------- +Type: Shield +Defense: 60 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +28905# +A certified kingdom equipment for adventurer. +-------------------------- +Base Level is below 100: +For each Refine Level: +MaxSP +2% +-------------------------- +Type: Shield +Defense: 60 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +28906# +A shield that seal the force of Fire god. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Fire elemental attacks by 25%. +-------------------------- +Refine Level +5: +ASPD +1 +-------------------------- +Refine Level +7: +ASPD +1 +-------------------------- +When equipped with Shining Trapezohedron: +Increases Ranged Physical Damage by 10%. +-------------------------- +Type: Shield +Defense: 80 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28907# +A shield that seal the force of Wind god. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Wind elemental attacks by 25%. +-------------------------- +Refine Level +5: +ASPD +1 +-------------------------- +Refine Level +7: +ASPD +1 +-------------------------- +When equipped with Shining Trapezohedron: +Increases movement speed. +-------------------------- +Type: Shield +Defense: 80 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28908# +A shield that seal the force of Water god. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Water elemental attacks by 25%. +-------------------------- +Refine Level +5: +ASPD +1 +-------------------------- +Refine Level +7: +ASPD +1 +-------------------------- +When equipped with Shining Trapezohedron: +Decreases After Skill Delay by 10%. +-------------------------- +Type: Shield +Defense: 80 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28909# +A shield that seal the force of Earth god. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Earth elemental attacks by 25%. +-------------------------- +Refine Level +5: +ASPD +1 +-------------------------- +Refine Level +7: +ASPD +1 +-------------------------- +When equipped with Shining Trapezohedron: +MaxSP +10% +Decreases SP Consumption by 10%. +-------------------------- +Type: Shield +Defense: 80 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28910# +A special sleeve made to prevent Ranged Physical Damages. +It is sewn with a strong thread that contains magical power. +-------------------------- +Decreases damage taken from ranged physical attacks by 5%. +-------------------------- +Refine Level +5: +Decreases damage taken from ranged physical attacks by additional 5%. +-------------------------- +Refine Level +7: +Decreases damage taken from ranged physical attacks by additional 10%. +-------------------------- +Refine Level +9: +Decreases damage taken from ranged physical attacks by additional 15%. +-------------------------- +When equipped with Horn Card: +Increases damage taken from ranged physical attacks by 35%. +-------------------------- +When equipped by Guillotine Cross and equipped with Enforcer Manteau: +Increases damage taken from ranged physical attacks by additional 35%. +-------------------------- +When equipped by Ranger and equipped with Shawl of Yoichi: +Increases damage taken from ranged physical attacks by additional 35%. +-------------------------- +Type: Shield +Defense: 80 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28911# +A shield that was bestowed by the king. Has an effect of calming the soul of the dead. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Fire, Water, Shadow and Undead elemental attacks by 20%. +-------------------------- +Decreases damage taken from Bio Lab and Tomb of The Fallen monsters by 10%. +-------------------------- +Refine Level +6: +Decreases damage taken from Bio Lab and Tomb of The Fallen monsters by additional 7%. +-------------------------- +Refine Level +8: +Decreases damage taken from Bio Lab and Tomb of The Fallen monsters by additional 7%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Shield +Defense: 80 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28912# +A magical paper that Rudo carries all the time. +-------------------------- +Decreases damage taken from Holy elemental attacks by 20%. +-------------------------- +For each Refine Level: +Decreases damage taken from Holy elemental attacks by additional 2%. +-------------------------- +Random chance to increase Magical Damage with Holy element by 10% for 3 seconds when dealing magical attacks. +-------------------------- +For each Refine Level equal or above +5: +Extends the duration by 1 second. +-------------------------- +Type: Shield +Defense: 0 +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +Warlock, Sorcerer, Archbishop and Sura +# +28913# +An ultralight shield that posseses powerful magic. It raises all abilities of wielder. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Ignores 10% physical defense of Normal class monsters. +-------------------------- +Decreases damage taken from Neutral elemental attacks by additional 5%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 2%). +Decreases damage taken from Neutral elemental attacks by additional 2%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 3%). +Decreases damage taken from Neutral elemental attacks by additional 3%. +-------------------------- +Type: Shield +Defense: 50 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28914# +A shield made from a mixed elunium and emperium. +-------------------------- +MaxHP +500 +MDEF +5 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +Type: Shield +Defense: 25 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28915# +A shield equipped with a huge iron skewer which can be triggered by using gunpowder. +You will become sluggish because it's so heavy. +It seems to have belonged to a knight called \ +. +-------------------------- +ATK +4% +-------------------------- +For each Refine Level equal or above +5: +ATK +1%. +-------------------------- +Increases After Attack Delay by 5%. +-------------------------- +Type: Shield +Defense: 90 +Weight: 350 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +28916# +A shield created from the power of Earth. +There are various effects depending on the user. +-------------------------- +MDEF +10 +-------------------------- +Increases damage taken from Earth elemental attacks by 10%. +-------------------------- +Increases Damage on Earth elemental by 5%. +-------------------------- +Refine Level +6: +Increases damage taken from Earth elemental attacks by additional 15%. +Increases Damage on Earth elemental by additional 10%. +-------------------------- +Refine Level +8: +Base STR at least 90: +ATK +50 + +Base AGI at least 90: +Increases Attack Speed (Decreases After Attack Delay by 5%). + +Base VIT at least 90: +Increases recovery amount gained from Healing skills and items by 10%. + +Base INT at least 90: +MATK +30 + +Base DEX at least 90: +Decreases Variable Casting Time by 5%. + +Base LUK at least 90: +Increases Critical Damage by 5% +-------------------------- +Indestructible in battle +-------------------------- +Type: Shield +Defense: 150 +Weight: 200 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28917# +A shield created from the power of Earth. +There are various effects depending on the user. +-------------------------- +MDEF +10 +-------------------------- +Increases damage taken from Earth elemental attacks by 10%. +-------------------------- +Increases Damage on Earth elemental by 5%. +-------------------------- +Refine Level +6: +Increases damage taken from Earth elemental attacks by additional 15%. +Increases Damage on Earth elemental by additional 10%. +-------------------------- +Refine Level +8: +Base STR at least 90: +ATK +50 + +Base AGI at least 90: +Increases Attack Speed (Decreases After Attack Delay by 5%). + +Base VIT at least 90: +Increases recovery amount gained from Healing skills and items by 10%. + +Base INT at least 90: +MATK +30 + +Base DEX at least 90: +Decreases Variable Casting Time by 5%. + +Base LUK at least 90: +Increases Critical Damage by 5% +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's. +-------------------------- +Type: Shield +Defense: 150 +Weight: 200 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28918# +A shield that seal the power of Darkness god. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Shadow elemental attacks by 25%. +-------------------------- +Refine Level +5: +ASPD +1 +-------------------------- +Refine Level +7: +ASPD +1 +-------------------------- +When equipped with Shining Trapezohedron: +Decreases damage taken from Undead elemental and Demon race monsters by 4%. +Decreases damage taken from Demi-Human race by 3%. +-------------------------- +Type: Shield +Defense: 80 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28919# +A shield that seal the power of Darkness god. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Shadow elemental attacks by 25%. +-------------------------- +Refine Level +5: +ASPD +1 +-------------------------- +Refine Level +7: +ASPD +1 +-------------------------- +When equipped with Shining Trapezohedron: +Decreases damage taken from Undead and Demon race by 4%. +Decreases damage taken from Demi-Human race by 3%. +-------------------------- +Can only be sold to NPC's. +-------------------------- +Type: Shield +Defense: 80 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28920# +Konoe kingdom's knight shield. +-------------------------- +Base Level at least 150: +DEF +100 +-------------------------- +For each 3 Refine Levels: +DEF +20 +-------------------------- +When equipped with Token of Glory: +Perfect Dodge +10 +-------------------------- +Type: Shield +Defense: 50 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28921# +A shield that contains the power of the wind. +There are various effects depending on the user. +-------------------------- +MDEF +15 +-------------------------- +Increases Damage against Wind elemental by 5%. +Decreases damage taken from Wind elemental attacks by 10%. +-------------------------- +Indestructible in battle +-------------------------- +Refine Level +6: +Increases Damage against Wind elemental by 10%. +Decreases damage taken from Wind elemental attacks by 15%. +-------------------------- +Refine Level +8: +Base STR at least 90: +ATK +50 + +Base AGI at least 90: +Increases Attack Speed (Decreases After Attack Delay by 5%). + +Base VIT at least 90: +Increases recovery amount gained from Restorative items by 10%. + +Base INT at least 90: +MATK +30 + +Base DEX at least 90: +Decreases Variable Casting Time by 5%. + +Base LUK at least 90: +Increases Critical Damage by 5%. +-------------------------- +Type: Shield +Defense: 150 +Weight: 350 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28922# +A symbolic shield, rumored to have been given from God to his messenger. +-------------------------- +INT +2 +VIT +3 +MDEF +3 +-------------------------- +For each Refine Level: +Increases damage of Earth Drive by 7%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Shield +Defense: 190 +Weight: 160 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +Royal Guard +# +28927# +Only guardians of the king are allowed to equip this shield. +It is said, this shield will reject its wielder if he has no strong will and power. +-------------------------- +MDEF +10 +-------------------------- +Refine Level +7: +Increases Damage against monsters of Undead race by 15%. +Increases Damage against Shadow elemental by 15%. +-------------------------- +Refine Level +9: +Increases Damage against monsters of Undead race by additional 15%. +Increases Damage against Shadow elemental by additional 15%. +-------------------------- +When equipped with Save the King: +For each Refine Level of King's Guard: +Increases damage of Grand Cross, Bash and Holy Cross by 20%. +-------------------------- +Type: Shield +Defense: 150 +Weight: 250 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +Royal Guard +# +28928# +A shield with a hexagonal star engraved. You can feel a mystical power from it. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Wind, Earth, Holy and Poison elemental attacks by 20%. +-------------------------- +For each Level of Faith skill: +Increases damage taken from Holy elemental attacks by 2%. +-------------------------- +When equipped with Assaulter Robe: +Decreases Variable Casting Time by 15%. +MATK +10% +-------------------------- +When equipped with Dead Man's Robe: +Decreases Variable Casting Time by 15%. +MATK +10% +-------------------------- +When equipped with Yin Yang Talisman and Burning Sword: +For each Refine Level of Burning Sword: +HIT +5 +Increases Attack Speed (Decreases After Attack Delay by 4%). +Increases damage of Crimson Rock by 1%. +-------------------------- +When equipped with Yin Yang Talisman and Purification Sword: +For each Refine Level of Purification Sword: +HIT +5 +Increases Attack Speed (Decreases After Attack Delay by 4%). +Increases damage of Judex by 5%. +-------------------------- +When equipped with Yin Yang Talisman and Abyss Sword: +For each Refine Level of Abyss Sword: +HIT +5 +Increases Attack Speed (Decreases After Attack Delay by 4%). +Increases damage of Hell Inferno by 10%. +-------------------------- +Type: Shield +Defense: 80 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +28929# +A shield that has been prayed to God and purified. +Equipping this shield will bring happiness. +-------------------------- +MDEF +10 +-------------------------- +When equipped with Rafflesia Alnoldi Card: +Increases experience gained from defeating Plant race monsters by 5%. + +Refine Level +6: +Increases experience gained from defeating Plant race monsters by additional 5%. + +Refine Level +8: +Increases experience gained from defeating Plant race monsters by additional 5%. +-------------------------- +When equipped with Anubis Card: +Increases experience gained from defeating Angel race monsters by 5%. + +Refine Level +6: +Increases experience gained from defeating Angel race monsters by additional 5%. + +Refine Level +8: +Increases experience gained from defeating Angel race monsters by additional 5%. +-------------------------- +When equipped with Bigfoot Card: +Increases experience gained from defeating Insect race monsters by 5%. + +Refine Level +6: +Increases experience gained from defeating Insect race monsters by additional 5%. + +Refine Level +8: +Increases experience gained from defeating Insect race monsters by additional 5%. +-------------------------- +When equipped with Khalitzburg Card: +Increases experience gained from defeating Demon race monsters by 5%. + +Refine Level +6: +Increases experience gained from defeating Demon race monsters by additional 5%. + +Refine Level +8: +Increases experience gained from defeating Demon race monsters by additional 5%. +-------------------------- +When equipped with Orc Warrior Card: +Increases experience gained from defeating Brute race monsters by 5%. + +Refine Level +6: +Increases experience gained from defeating Brute race monsters by additional 5%. + +Refine Level +8: +Increases experience gained from defeating Brute race monsters by additional 5%. +-------------------------- +When equipped with Penomena Card: +Increases experience gained from defeating Formless race monsters by 5%. + +Refine Level +6: +Increases experience gained from defeating Formless race monsters by additional 5%. + +Refine Level +8: +Increases experience gained from defeating Formless race monsters by additional 5%. +-------------------------- +When equipped with Rafflesia Card: +Increases experience gained from defeating Fish race monsters by 5%. + +Refine Level +6: +Increases experience gained from defeating Fish race monsters by additional 5%. + +Refine Level +8: +Increases experience gained from defeating Fish race monsters by additional 5%. +-------------------------- +When equipped with Sky Petite Card: +Increases experience gained from defeating Dragon race monsters by 5%. + +Refine Level +6: +Increases experience gained from defeating Dragon race monsters by additional 5%. + +Refine Level +8: +Increases experience gained from defeating Dragon race monsters by additional 5%. +-------------------------- +When equipped with Teddy Bear Card: +Increases experience gained from defeating Undead race monsters by 5%. + +Refine Level +6: +Increases experience gained from defeating Undead race monsters by additional 5%. + +Refine Level +8: +Increases experience gained from defeating Undead race monsters by additional 5%. +-------------------------- +When equipped with Thara Frog Card: +Increases experience gained from defeating Demi-Human race monsters by 5%. + +Refine Level +6: +Increases experience gained from defeating Demi-Human race monsters by additional 5%. + +Refine Level +8: +Increases experience gained from defeating Demi-Human race monsters by additional 5%. +-------------------------- +Type: Shield +Defense: 150 +Weight: 350 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28930# +A square shield that is small, yet effective in combat. +-------------------------- +Type: Shield +Defense: 40 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +28931# +A rounded shield that readily absorbs impact from attacks. +-------------------------- +Type: Shield +Defense: 40 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Swordsman, Acolyte, Merchant and Thief Classes; Bard and Dancer +# +28932# +A well crafted shield which most kinds of attack cannot penetrate. +-------------------------- +Type: Shield +Defense: 60 +Weight: 130 +Armor Level: 1 +-------------------------- +Requirement: +Swordman classes +# +28940# +A legendary shield that is said to have been brought to life by the hands of the gods. +It is said that its power heals wounds and keeps malicious intent away. +-------------------------- +Increases Healing skills effectiveness by 10%. +-------------------------- +For each Refine Level: +Increases Healing skills effectiveness by additional 1%. +-------------------------- +Refine Level +8: +Enables the use of Level 5 Heal. +-------------------------- +Refine Level +10: +Prevents Bleeding and Stone Curse status. +-------------------------- +Type: Shield +Defense: 150 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +28941# +A shield made from lost technology found in the research building ruins. +-------------------------- +MaxHP +5% +MaxSP +5% +MDEF +5 +-------------------------- +Base Level at least 130: +MaxHP +5% +MaxSP +5% +-------------------------- +For each 3 Refine Levels: +ATK +30 +MATK +30 +-------------------------- +Type: Shield +Defense: 150 +Weight: 95 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +28942# +A knight's shield that was carried by Cursed Knight. +If you clean the curse, you can obtain more power from it. +-------------------------- +ATK +3% +MATK +3% +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Decreases damage taken from all elemental monsters by 7%. +-------------------------- +Random chance to restore 25 SP per second for 5 seconds when receiving physical damage. +Random chance to restore 150 HP per second for 5 seconds when dealing physical or magical damage. +-------------------------- +Refine Level +7: +ATK +10 +MATK +10 +-------------------------- +Refine Level +9: +ASPD +1 +-------------------------- +Refine Level +12: +Decreases After Skill Delay by 3%. +-------------------------- +Type: Shield +Defense: 0 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +# +28943# +A spellbook possessed by Zilant, who was called a rare witch. +High-dimensional theories about spirits and barriers are described, and those who understand them can protect themselves from various forces. +-------------------------- +MDEF +5 +-------------------------- +For each Level of Summon Agni: +INT +3 +Decreases damage taken from Fire elemental attacks by 10%. +-------------------------- +For each Level of Summon Aqua: +DEX +3 +Decreases damage taken from Water elemental attacks by 10%. +-------------------------- +For each Level of Summon Ventus: +AGI +3 +Decreases damage taken from Wind elemental attacks by 10%. +-------------------------- +For each Level of Summon Tera: +VIT +3 +Decreases damage taken from Earth elemental attacks by 10%. +-------------------------- +For each Level of Elemental Sympathy: +MaxHP +2%, MaxSP +2% +-------------------------- +Refine Level +7: +DEF +100, MDEF +5 +Increases resistance against White Imprison status by 50%. +-------------------------- +Refine Level +9: +DEF +200, MDEF +10 +Prevents White Imprison status, except when used on yourself. +-------------------------- +Type: Shield +Defense: 20 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +Sorcerer +# +28945# +A knight's shield stained with dark blood, results of failed curse cleansing. +There's seems to be no way to purify this shield anymore. +-------------------------- +ATK +3% +MATK +3% +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Decreases damage taken from all elemental monsters by 7%. +-------------------------- +Random chance to restore 25 SP per second for 5 seconds when receiving physical damage. +Random chance to restore 150 HP per second for 5 seconds when dealing physical or magical damage. +-------------------------- +Refine Level +7: +ATK +10 +MATK +10 +-------------------------- +Refine Level +9: +ASPD +1 +-------------------------- +Refine Level +12: +Decreases After Skill Delay by 3%. +-------------------------- +Type: Shield +Defense: 0 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +# +28946# +A purified knight's shield. It seems regain its full power after cleansing. +-------------------------- +Increases Attack Speed (reduces delay after attack by 10%). +ATK +5% +MATK +5% +-------------------------- +Reduces damage taken from all properties by 10%. +-------------------------- +When receiving damage, has a low chance to recovery 25 SP per second for 5 seconds. +When dealing physical or magical damage, has a low chance to recovery 150 HP per second for 5 seconds. +-------------------------- +If refine rate is 7 or higher: +ATK +20 +MATK +20 +-------------------------- +If refine rate is 9 or higher: +ASPD +1 +Decreases After Skill Delay by 3%. +-------------------------- +Type: Shield +Defense: 0 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: None +# +28948# +A shield dedicated for Doram race. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Small, Medium and Large size by 15%. +-------------------------- +Refine Level +8: +Decreases damage taken from Small, Medium and Large size by additional 10%. +-------------------------- +Can only be sold to NPC's and placed in storage. +-------------------------- +Type: Shield +Defense: 120 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Summoner (Doram) +# +28950# +A mutated shield enhanced by the magical power. +Even with the same appearance, its performance is said to be different. +-------------------------- +Refine Level +6: +Increases resistance against Fear status by 50%. +Decreases damage taken from Players race by 20%. +-------------------------- +Refine Level +8: +Increases resistance against Fear status by additional 50%. +Decreases damage taken from Players race by additional 10%. +-------------------------- +Type: Shield +Defense: 150 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 165 +# +28951# +A shield containing the power of water. +There are various effects depending on the user. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Water elemental attacks by 10%. +-------------------------- +Increases Damage on Water elemental by 5%. +-------------------------- +Refine Level +6: +Decreases damage taken from Water elemental attacks by additional 15%. +Increases Damage on Water elemental by additional 10%. +-------------------------- +Refine Level +8: +Base STR at least 90: +ATK +50 + +Base AGI at least 90: +ASPD +5% + +Base INT at least 90: +MATK +30 + +Base VIT at least 90: +Increases Healing skills effectiveness by 10%. + +Base DEX at least 90: +Decreases Variable Casting Time of skills by 5%. + +Base LUK at least 90: +Increases Critical Damage by 5%. +-------------------------- +Type: Shield +Defense: 80 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +28953# +A battle shield painted with Poring image. +There are rumors that the Poring drawn on the center of two golden wings on a red background will break the enemy's will, but no one knows the authenticity. +-------------------------- +For each 3 Refine Levels: +Decreases damage taken from all size enemies by 2%. +-------------------------- +Refine Level +7: +MaxHP +5% +MaxSP +5% +-------------------------- +Refine Level +9: +ASPD +1 +-------------------------- +Refine Level +9: +Reflects 1% Melee Physical Damage and when magical attacks have a 5% chance to recover 100HP per second for 4 seconds. +-------------------------- +Type: Shield +Defense: 80 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +28956# +A mirror book used by Gilant, a rare witch, when performing false rituals. +The content of the ritual is only the pure truth that is reflected in the mirror surface. +-------------------------- +MDEF +5 +-------------------------- +Decreases damage taken from Fire, Wind, Holy and Ghost elemental attacks by 20%. +-------------------------- +For each Level of Faith: +Increases damage taken from Holy elemental attacks by 2%. +-------------------------- +When equipped with Necromancer's Dress: +Increases Magical Damage against monsters of Boss class by 5%. +Ignores magic defense of Boss class by 25%. + +Refine Level of Necromancer's Hand Mirror is +8 or higher: +Increases Magical Damage against monsters of Boss class by additional 5%. +Ignores magic defense of Boss class by additional 25%. +-------------------------- +When equipped with Necromancer's Manteau: +MATK +5% +Decreases Variable Casting Time by 5%. + +Refine Level of Necromancer's Hand Mirror is +8 or higher: +Perfect Dodge +20 +MATK +5% +Decreases Variable Casting Time by additional 5%. +-------------------------- +Type: Shield +Defense: 80 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 65 +# +29000# +Refine Level +7: +INT +5 +-------------------------- +Refine Level +10: +MATK +5% +# +29001# +Refine Level +7: +INT +6 +-------------------------- +Refine Level +11: +INT +1 +MATK +7% +# +29002# +Refine Level +7: +INT +7 +-------------------------- +Refine Level +12: +INT +1 +MATK +8% +-------------------------- +Refine Level +13: +INT +1 +MATK +2% +# +29003# +Refine Level +7: +DEX +5 +-------------------------- +Refine Level +10: +Increases Ranged Physical Damage by 5%. +# +29004# +Refine Level +7: +DEX +6 +-------------------------- +Refine Level +11: +DEX +1 +Increases Ranged Physical Damage by 7%. +# +29005# +Refine Level +7: +DEX +7 +-------------------------- +Refine Level +12: +DEX +1 +Increases Ranged Physical Damage by 8%. +-------------------------- +Refine Level +13: +DEX +1 +Increases Ranged Physical Damage by 2%. +# +29006# +Refine Level +7: +LUK +5 +-------------------------- +Refine Level +10: +Increases Critical Damage by 5%. +# +29007# +Refine Level +7: +LUK +6 +-------------------------- +Refine Level +11: +LUK +1 +Increases Critical Damage by 7%. +# +29008# +Refine Level +7: +LUK +7 +-------------------------- +Refine Level +12: +LUK +1 +Increases Critical Damage by 8%. +-------------------------- +Refine Level +13: +LUK +1 +Increases Critical Damage by 6%. +# +29009# +Refine Level +7: +VIT +5 +-------------------------- +Refine Level +10: +MaxHP +5% +# +29010# +Refine Level +7: +VIT +6 +-------------------------- +Refine Level +11: +VIT +1 +MaxHP +7% +# +29011# +Refine Level +7: +VIT +7 +-------------------------- +Refine Level +12: +VIT +1 +MaxHP +8% +-------------------------- +Refine Level +13: +VIT +1 +MaxHP +2% +# +29012# +When equipped with Firelock Soldier Card and Refine Level of Shoes is +9 or higher: +STR +8 +MaxHP +5% +MaxSP +5% +-------------------------- +When equipped with Nine Tails Card and Refine Level of Garment is +9 or higher: +AGI +8 +Damage taken from Neutral elemental attacks -20% +-------------------------- +When equipped with Orc Baby Card and Refine Level of Garment is +9 or higher: +DEX +10 +FLEE +5 +Damage taken from Neutral elemental attacks -5% +-------------------------- +When equipped with Sting Card and Refine Level of Shield is +9 or higher: +LUK +10 +Damage taken from Small, Medium and Large size monsters -20% +-------------------------- +When equipped with Apocalypse Card and Refine Level of Armor is +9 or higher: +VIT +8 +Prevents Frozen status. +# +29013# +Adds 1% chance to absorb 3% of physical damage inflicted into HP. +# +29014# +STR +3 +INT -3 +# +29015# +STR +3 +DEX -3 +-------------------------- +When equipped with STR+3 INT-3: +DEX +3 +INT +3 +# +29016# +INT +3 +DEX -3 +# +29017# +INT +3 +VIT -3 +-------------------------- +When equipped with INT+3 DEX-3: +DEX +3 +VIT +3 +# +29018# +DEX +3 +VIT -3 +# +29019# +DEX +3 +AGI -3 +-------------------------- +When equipped with DEX+3 VIT-3: +VIT +3 +AGI +3 +# +29020# +VIT +3 +AGI -3 +# +29021# +VIT +3 +LUK -3 +-------------------------- +When equipped with VIT+3 AGI-3: +AGI +3 +LUK +3 +# +29022# +AGI +3 +LUK -3 +# +29023# +AGI +3 +STR -3 +-------------------------- +When equipped with AGI+3 LUK-3: +LUK +3 +STR +3 +# +29024# +LUK +3 +STR -3 +# +29025# +LUK +3 +INT -3 +-------------------------- +When equipped with LUK+3 STR-3: +STR +3 +INT +3 +# +29026# +DEF +20 +# +29027# +Increases experience gained from defeating monsters by 2%. +# +29028# +ATK +1% +When equipped with ATK +1% Middle or Lower of costume enchantment slot: +ATK +2% +# +29029# +ATK +1% +# +29030# +MATK +1% +-------------------------- +When equipped with MATK +1% on Costume Middle Headgear and Costume Lower Headgear slot: +MATK +2% +# +29031# +MATK +1% +# +29032# +1% chance to absorb 1% of physical damage inflicted into SP. +# +29033# +MDEF +4 +-------------------------- +When equipped with DEF+20: +HIT +5 +FLEE +5 +# +29040# +Ghost Effect. +# +29041# +Twinkle effect. +# +29042# +Decreases damage taken from all elemental attacks by 7%. +-------------------------- +For each 3 Base Level: +MaxSP +1 +-------------------------- +For each Refine Level of Garment: +MaxSP +10 +-------------------------- +Adds a chance of absorbing 1% physical damage inflicted into SP. +-------------------------- +When equipped with Evil Dragon Armor: +The SP drains effect of Energy will not activated. +# +29043# +When equipped by Mage, Archer and Acolyte: +Perfect Dodge +5 + +For each Refine Level of Garment: +Perfect Dodge +2 +-------------------------- +When equipped by Swordman, Thief and Merchant: +Reflects 5% Melee Physical Damage. + +For each Refine Level of Garment: +Reflects 2% Melee Physical Damage. +# +29044# +FLEE +10 +MaxHP +200 +# +29045# +Increases Physical Damage against enemies of Fish race by 15%. +-------------------------- +Increases Damage against Water elemental by 15%. +-------------------------- +Adds a chance of invoking user with Hayate for 10 seconds when user attacked by physical or magical attacks. +During Hayate: +Increases Attack Speed (Decreases After Attack Delay by 70%). +Decreases Variable Casting Time by 70%. +Decreases After Skill Delay by 70%. +-------------------------- +When enchanted on Thunder Ring: +Increases Damage against monsters of Fish race by 15%. +Increases damage against Water elemental by 15%. +# +29046# +Enables the use of Level 1 Greed. +# +29047# +Increases Critical Damage by 3%. +# +29048# +Increases Ranged Physical Damage by 3%. +# +29049# +MaxHP +100 +-------------------------- +Base Level at least 120: +MaxHP +2% +# +29050# +MaxSP +50 +-------------------------- +Base Level at least 120: +MaxSP +2% +# +29051# +Enables the use of Level 1 Detoxify. +# +29052# +Enables the use of Level 1 Recovery. +# +29053# +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with After Skill Delay1 Middle and After Skill Delay1 Lower: +Decreases After Skill Delay by 2%. +# +29054# +Decreases After Skill Delay by 1%. +# +29055# +Decreases After Skill Delay by 1%. +# +29056# +Decreases Fixed Casting Time by 0.5 seconds. +# +29057# +Enables the use of Level 1 Kyrie Eleison. +# +29058# +Increases Physical Damage against: +Irene Elder +Faceworm Queen +Fenrir +Demon Follower +Illusion of Sarah +Captain Ferlock +Runaway Captain Ferlock +Root of Corruption +by 20% +# +29059# +Increases Magical Damage against: +Irene Elder +Faceworm Queen +Fenrir +Demon Follower +Illusion of Sarah +Captain Ferlock +Runaway Captain Ferlock +Root of Corruption +by 20% +# +29060# +Decreases damage taken from: +Irene Elder +Faceworm Queen +Fenrir +Demon Follower +Illusion of Sarah +Captain Ferlock +Runaway Captain Ferlock +Root of Corruption +by 20% +# +29061# +ATK +4% +HIT +10 +# +29062# +ATK +8% +HIT +20 +# +29063# +ATK +12% +HIT +30 +# +29064# +ATK +16% +HIT +40 +# +29065# +ATK +20% +HIT +50 +# +29066# +ATK +24% +HIT +60 +# +29067# +ATK +28% +HIT +70 +# +29068# +ATK +32% +HIT +80 +# +29069# +ATK +36% +HIT +90 +# +29070# +ATK +44% +HIT +100 +# +29071# +MATK +4% +Decreases Fixed Casting Time by 0.1 second. +# +29072# +MATK +8% +Decreases Fixed Casting Time by 0.2 seconds. +# +29073# +MATK +12% +Decreases Fixed Casting Time by 0.3 seconds. +# +29074# +MATK +16% +Decreases Fixed Casting Time by 0.4 seconds. +# +29075# +MATK +20% +Decreases Fixed Casting Time by 0.5 seconds. +# +29076# +MATK +24% +Decreases Fixed Casting Time by 0.6 seconds. +# +29077# +MATK +28% +Decreases Fixed Casting Time by 0.7 seconds. +# +29078# +MATK +32% +Decreases Fixed Casting Time by 0.8 seconds. +# +29079# +MATK +36% +Decreases Fixed Casting Time by 0.9 seconds. +# +29080# +MATK +44% +Decreases Fixed Casting Time by 1 second. +# +29081# +Critical +3 +Increases Critical Damage by 20%. +# +29082# +Critical +6 +Increases Critical Damage by 35%. +# +29083# +Critical +9 +Increases Critical Damage by 50%. +# +29084# +Critical +12 +Increases Critical Damage by 65%. +# +29085# +Critical +15 +Increases Critical Damage by 80%. +# +29086# +Critical +18% +Increases Critical Damage by 95%. +# +29087# +Critical +21% +Increases Critical Damage by 110%. +# +29088# +Critical +24% +Increases Critical Damage by 125%. +# +29089# +Critical +27% +Increases Critical Damage by 140%. +# +29090# +Critical +30 +Increases Critical Damage by 170%. +# +29091# +Increases Ranged Physical Damage by 4%. +Increases Attack Speed (Decreases After Attack Delay by 1%). +# +29092# +Increases Ranged Physical Damage by 8%. +Increases Attack Speed (Decreases After Attack Delay by 2%). +# +29093# +Increases Ranged Physical Damage by 12%. +Increases Attack Speed (Decreases After Attack Delay by 3%). +# +29094# +Increases Ranged Physical Damage by 16%. +Increases Attack Speed (Decreases After Attack Delay by 4%). +# +29095# +Bow class weapon damage +20% +Increases Attack Speed (Decreases After Attack Delay by 5%). +# +29096# +Increases Ranged Physical Damage by 24%. +Increases Attack Speed (Decreases After Attack Delay by 6%). +# +29097# +Increases Ranged Physical Damage by 28%. +Increases Attack Speed (Decreases After Attack Delay by 7%). +# +29098# +Increases Ranged Physical Damage by 32%. +Increases Attack Speed (Decreases After Attack Delay by 8%). +# +29099# +Increases Ranged Physical Damage by 36%. +Increases Attack Speed (Decreases After Attack Delay by 9%). +# +29100# +Increases Ranged Physical Damage by 44%. +Increases Attack Speed (Decreases After Attack Delay by 10%). +# +29101# +MaxHP +5% +DEF +140 +MDEF +20 +# +29102# +MaxHP +10% +DEF +180 +MDEF +40 +# +29103# +MaxHP +15% +DEF +220 +MDEF +60 +# +29104# +MaxHP +20% +DEF +260 +MDEF +80 +# +29105# +MaxHP +25% +DEF +300 +MDEF +100 +# +29106# +MaxHP +30% +DEF +340 +MDEF +120 +# +29107# +MaxHP +35% +DEF +380 +MDEF +140 +# +29108# +MaxHP +40% +DEF +420 +MDEF +160 +# +29109# +MaxHP +45% +DEF +460 +MDEF +180 +# +29110# +MaxHP +55% +DEF +500 +MDEF +200 +# +29111# +Increases Healing skills effectiveness by 5%. +MaxSP +3% +# +29112# +Increases Healing skills effectiveness by 10%. +MaxSP +6% +# +29113# +Increases Healing skills effectiveness by 15%. +MaxSP +9% +# +29114# +Increases Healing skills effectiveness by 20% +MaxSP +12% +# +29115# +Increases Healing skills effectiveness by 25%. +MaxSP +15% +# +29116# +Increases Healing skills effectiveness by 30%. +MaxSP +18% +# +29117# +Increases Healing skills effectiveness by 35%. +MaxSP +21% +# +29118# +Increases Healing skills effectiveness by 40%. +MaxSP +24% +# +29119# +Increases Healing skills effectiveness by 45%. +MaxSP +27% +# +29120# +Increases Healing skills effectiveness by 55%. +MaxSP +30% +# +29121# +ATK +20 +HIT +2 +MaxHP +300 +# +29122# +ATK +40 +HIT +4 +MaxHP +600 +# +29123# +MATK +20 +Increases Healing skills effectiveness by 4%. +MaxSP +20 +# +29124# +MATK +40 +Increases Healing skills effectiveness by 8%. +MaxSP +40 +# +29125# +Bow weapon damage +5% +Critical +5. +# +29126# +Increases damage of Bow class weapons by 10%. +Critical +10. +# +29127# +Increases Physical Damage against enemies of Fire elemental by 10%. +-------------------------- +Increases Magical Damage with Fire element by 10%. +-------------------------- +Decreases damage taken from Fire elemental attacks by 5%. +# +29128# +Increases Physical Damage against enemies of Water elemental by 10%. +-------------------------- +Increases Magical Damage with Water element by 10%. +-------------------------- +Decreases damage taken from Water elemental attacks by 5%. +# +29129# +Increases Physical Damage against enemies of Wind elemental by 10%. +-------------------------- +Increases Magical Damage with Wind element by 10%. +-------------------------- +Decreases damage taken from Wind elemental attacks by 5%. +# +29130# +Increases Physical Damage against enemies of Earth elemental by 10%. +-------------------------- +Increases Magical Damage with Earth element by 10%. +-------------------------- +Decreases damage taken from Earth elemental attacks by 5%. +# +29131# +Increases Physical Damage against enemies of Shadow elemental by 10%. +-------------------------- +Increases Magical Damage with Shadow element by 10%. +-------------------------- +Decreases damage taken from Shadow elemental attacks by 5%. +# +29132# +Increases Physical Damage against enemies of Holy elemental by 10%. +-------------------------- +Increases Magical Damage with Holy element by 10%. +-------------------------- +Decreases damage taken from Holy elemental attacks by 5%. +# +29133# +Increases Healing skills effectiveness by 10% +-------------------------- +Increases Healing gained from skills and items by 10%. +# +29134# +Vicious Mind of strong man who excels in martial arts. +Exert a force in the fight against people. +-------------------------- +Increases Physical Damage against enemies of Demi-Human race by 5%. +-------------------------- +Can be compounded on any slot +-------------------------- +Type: Card +Compound on: Any slot +Weight: 1 +# +29135# +Critical +3 +Increases Critical Damage by 1%. +# +29136# +Critical +6 +Increases Critical Damage by 2%. +# +29137# +Critical +9 +Increases Critical Damage by 3%. +# +29138# +Critical +12 +Increases Critical Damage by 4%. +# +29139# +Critical +15 +Increases Critical Damage by 5%. +# +29140# +Random chance to transform into Fallen Orc Hero for 5 seconds when recieving physical damage. +-------------------------- +During transformation: +Random chance to auto-cast Level 3 Earth Quake around yourself when recieving physical damage. +-------------------------- +When equipped with Orcish Axe and Orcish Sword: +Random chance to auto-cast Soul Destroyer, skill level is based on your learned level, on your enemy when recieving physical damage. + +For each 2 Refine Levels of Orcish Axe and Orcish Sword: +ATK +15 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Total Refine Level of Orcish Axe and Orcish Sword is +20 or higher: +Prevents Stun status. +# +29141# +Random chance to transform user to Demon Baphomet for 5 seconds when dealing physical attacks. +During transformation: +Random chance to auto-cast Level 6 Hell's Judgement when dealing physical attacks. +-------------------------- +When equipped with Crescent Scythe: +Random chance to auto-cast learned Level of 9Holy Cross when dealing physical attacks. + +For each Refine Level: +ATK +15 +Increases Attack Speed (Decreases After Attack Delay by 5%). + +Refine Level +10: +Endow equipped weapon with 3x3 splash damage. +-------------------------- +When equipped with Illusion Tae Goo Lyeon: +Random chance to auto-cast learned Level of Spiral Pierce when dealing physical attacks. + +For each Refine Level: +ATK +15 +Increases Attack Speed (Decreases After Attack Delay by 5%). + +Refine Level +10: +Endow equipped weapon with 3x3 splash damage. +# +29142# +Electric Effect +# +29143# +Green Flare Effect +# +29144# +Enables Shrink effect, does not apply on PVP and WOE area. +# +29145# +Increases experience gained from defeating monsters by 2%. +# +29146# +Enables the use of Level 1 Item Appraisal. +# +29147# +Enables the use of Level 1 Ressurection. +# +29148# +A stone that contains the power of Leo which can be compounded on Shoes's slot. +-------------------------- +STR +1 +-------------------------- +When compounded with Angel Poring Boots: +MaxHP +5% +MaxSP +5% + +Refine Level +7: +ATK +2% + +Refine Level +9: +ATK +3% + +Refine Level +12: +Decreases After Skill Delay by 5%. +-------------------------- +WARNING: It will completly vanish, if compounded shoes is destroyed. +Compound on: Shoes +Weight: 0 +# +29149# +A stone that contains the power of Pisces which can be compounded on Shoes's slot. +-------------------------- +INT +1 +-------------------------- +When compounded with Angel Poring Boots: +MaxHP +5% +MaxSP +5% + +Refine Level +7: +MATK +2% + +Refine Level +9: +MATK +3% + +Refine Level +12: +Decreases After Skill Delay by 5%. +-------------------------- +WARNING: It will completly vanish, if compounded shoes is destroyed. +Compound on: Shoes +Weight: 0 +# +29150# +A stone that contains the power of Capricorn which can be compounded on Shoes's slot. +-------------------------- +AGI +1 +-------------------------- +When compounded with Angel Poring Boots: +MaxHP +5% +MaxSP +5% + +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). + +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 5%). + +Refine Level +12: +Decreases After Skill Delay by 5%. +-------------------------- +WARNING: It will completly vanish, if compounded shoes is destroyed. +Compound on: Shoes +Weight: 0 +# +29151# +A stone that contains the power of Aquarius which can be compounded on Shoes's slot. +-------------------------- +VIT +1 +-------------------------- +When compounded with Angel Poring Boots: +MaxHP +5% +MaxSP +5% + +Refine Level +7: +Neutral resistance +2%. + +Refine Level +9: +Neutral resistance +3%. + +Refine Level +12: +Decreases After Skill Delay by 5%. +-------------------------- +WARNING: It will completly vanish, if compounded shoes is destroyed. +Compound on: Shoes +Weight: 0 +# +29152# +A stone that contains the power of Scorpio which can be compounded on Shoes's slot. +-------------------------- +DEX +1 +-------------------------- +When compounded with Angel Poring Boots: +MaxHP +5% +MaxSP +5% + +Refine Level +7: +Increases Ranged Physical Damage by 2%. + +Refine Level +9: +Increases Ranged Physical Damage by 3%. + +Refine Level +12: +Decreases After Skill Delay by 5%. +-------------------------- +WARNING: It will completly vanish, if compounded shoes is destroyed. +Compound on: Shoes +Weight: 0 +# +29153# +A stone that contains the power of Taurus which can be compounded on Shoes's slot. +-------------------------- +LUK +1 +-------------------------- +When compounded with Angel Poring Boots: +MaxHP +5% +MaxSP +5% + +Refine Level +7: +Increases Critical Damage by 2%. + +Refine Level +9: +Increases Critical Damage by 3%. + +Refine Level +12: +Decreases After Skill Delay by 5%. +-------------------------- +WARNING: It will completly vanish, if compounded shoes is destroyed. +Compound on: Shoes +Weight: 0 +# +29154# +Decreases Fixed Casting Time by 0.3 seconds. +# +29155# +Random chance to auto-cast Level 1 Lex Aeterna on attacker when receiving physical attacks. +# +29156# +Decreases Variable Casting Time by 3%. +-------------------------- +When equipped with Decreases Variable Cast in Costume Middle Headgear and Costume Lower Headgear slot: +Decreases Variable Casting Time by 6%. +# +29157# +Decreases Variable Casting Time by 3%. +# +29158# +Decreases Variable Casting Time by 2%. +# +29159# +Increases experience gained from defeating monsters by 2%. +-------------------------- +When equipped with Experience+2% in Costume Middle Headgear and Costume Lower Headgear slot: +Increases experience gained from defeating monsters by 3%. +# +29160# +Blue Aura Effect +# +29161# +Pink Glow Effect +# +29162# +Shadow Effect +# +29166# +Decreases damage taken from Demi-Human and Formless race by 1%. +-------------------------- +For each 3 Refine Levels: +Decreases damage taken from Demi-Human and Formless race by 1%. +-------------------------- +When enchanted on Riot Chip: +For each Refine Level: +Decreases damage taken from Demi-Human and Formless race by 1%. +# +29167# +HIT +20 +-------------------------- +Refine Level +7: +HIT +10 +-------------------------- +Refine Level +8: +HIT +10 +-------------------------- +Refine Level +9: +HIT +10 +-------------------------- +When enchanted on Riot Chip: +For each 3 Refine Levels: +HIT +5 +# +29168# +FLEE +20 +-------------------------- +Refine Level +7: +FLEE +10 +-------------------------- +Refine Level +8: +FLEE +10 +-------------------------- +Refine Level +9: +FLEE +10 +-------------------------- +When enchanted on Riot Chip: +For each 3 Refine Levels: +FLEE +5 +# +29169# +MDEF +2 +-------------------------- +Refine Level +6: +MDEF +4 +-------------------------- +Refine Level +8: +MDEF +8 +-------------------------- +When enchanted on Riot Chip: +MDEF +20 +# +29170# +ATK +50 +-------------------------- +Refine Level +7: +Random chance to increase ATK by 150 for 3 seconds when dealing physical attacks. +-------------------------- +Refine Level +8: +Activation rate increased. +Extends duration by 1 second. +-------------------------- +Refine Level +9: +Activation rate increased. +Extends duration by 1 second. +-------------------------- +When enchanted on Riot Chip: +For each 2 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 1%). +# +29171# +MATK +100 +-------------------------- +Refine Level +7: +Random chance to increase MATK by 150 for 3 seconds when dealing physical attacks. +-------------------------- +Refine Level +8: +Activation rate increased. +Extends duration by 1 second. +-------------------------- +Refine Level +9: +Activation rate increased. +Extends duration by 1 second. +-------------------------- +When enchanted on Riot Chip: +For each 2 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 1%). +# +29172# +Perfect dodge +5 +-------------------------- +Refine Level +7: +Random chance to increase Perfect dodge by 100 for 3 seconds when dealing physical attacks. +-------------------------- +Refine Level +8: +Activation rate increased. +Extends duration by 1 second. +-------------------------- +Refine Level +9: +Activation rate increased. +Extends duration by 1 second. +-------------------------- +When enchanted on Riot Chip: +For each 2 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 1%). +# +29173# +MaxHP +2500 +-------------------------- +Refine Level +7: +Adds a chance of restoring HP by 7500 for 3 seconds when dealing physical attacks. +MaxHP +7500 +-------------------------- +Refine Level +8: +Activation rate increased. +Extends duration by 1 second. +-------------------------- +Refine Level +9: +Activation rate increased. +Extends duration by 1 second. +-------------------------- +When enchanted on Riot Chip: +For each 2 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 1%). +# +29174# +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +7: +Random chance to Decreases Variable Casting Time and skill delay by 100% for 3 seconds when dealing physical attacks. +-------------------------- +Refine Level +8: +Activation rate increased. +Extends duration by 1 second. +-------------------------- +Refine Level +9: +Activation rate increased. +Extends duration by 1 second. +-------------------------- +When enchanted on Riot Chip: +For each 2 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 1%). +# +29175# +Critical +10 +-------------------------- +Refine Level +7: +Random chance to increase Critical by 100 for 3 seconds when dealing physical attacks. +-------------------------- +Refine Level +8: +Activation rate increased. +Extends duration by 1 second. +-------------------------- +Refine Level +9: +Activation rate increased. +Extends duration by 1 second. +-------------------------- +When enchanted on Riot Chip: +For each 2 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 1%). +# +29176# +Increases Damage against monsters of Brute and Plant race by 15%. +-------------------------- +Increases Damage against Wind and Earth elemental by 15%. +-------------------------- +Adds a chance of invoking Tenchi for 10 seconds when dealing physical or magical attacks. +-------------------------- +During Tenchi: +Decreases Variable Casting Time by 70% +Decreases After Skill Delay by 70% +Ignores DEF and MDEF of target by 100% +-------------------------- +When enchanted on Warrior Ring: +Increases Damage against monsters of Brute and Plant race by 15%. +Increases damage against Wind and Earth elemental by 15%. +# +29177# +Increases Damage against monsters in Half Moon in the Daylight by 5%. +Decreases damage taken from Half Moon in the Daylight monsters by 5%. +# +29178# +Increases Damage against monsters in Half Moon in the Daylight by 10%. +Decreases damage taken from Half Moon in the Daylight monsters by 10%. +# +29179# +Increases Damage against monsters in Half Moon in the Daylight by 20%. +Decreases damage taken from Half Moon in the Daylight monsters by 20%. +# +29180# +Increases Damage against monsters in Half Moon in the Daylight by 30%. +Decreases damage taken from Half Moon in the Daylight monsters by 30%. +# +29181# +Increases Damage against monsters in Half Moon in the Daylight by 40%. +Decreases damage taken from Half Moon in the Daylight monsters by 40%. +# +29182# +Increases Physical Damage against enemies of Formless race by 20%. +# +29183# +Increases Physical Damage against enemies of Undead race by 20%. +# +29184# +Increases Physical Damage against enemies of Brute race by 20%. +# +29185# +Increases Physical Damage against enemies of Plant race by 20%. +# +29186# +Increases Physical Damage against enemies of Insect race by 20%. +# +29187# +Increases Physical Damage against enemies of Fish race by 20%. +# +29188# +Increases Physical Damage against monsters of Demon race by 20%. +# +29189# +Increases Physical Damage against enemies of Demi-Human race by 20%. +# +29190# +Increases Physical Damage against enemies of Angel race by 20%. +# +29191# +Increases Physical Damage against enemies of Dragon race by 20%. +# +29192# +Increases Physical Damage against enemies of Neutral elemental by 20%. +# +29193# +Increases Physical Damage against enemies of Water elemental by 20%. +# +29194# +Increases Physical Damage against enemies of Earth elemental by 20%. +# +29195# +Increases Physical Damage against enemies of Fire elemental by 20%. +# +29196# +Increases Physical Damage against enemies of Wind elemental by 20%. +# +29197# +Increases Physical Damage against enemies of Poison elemental by 20%. +# +29198# +Increases Physical Damage against enemies of Holy elemental by 20%. +# +29199# +Increases Physical Damage against enemies of Shadow elemental by 20%. +# +29200# +Increases Physical Damage against enemies of Ghost elemental by 20%. +# +29201# +Increases Physical Damage against enemies of Undead elemental by 20%. +# +29202# +ATK +5 +-------------------------- +Increases Physical Damage against enemies of Small size by 15%. +# +29203# +ATK +5 +-------------------------- +Increases Physical Damage against enemies of Medium size by 15%. +# +29204# +ATK +5 +-------------------------- +Increases Physical Damage against enemies of Large size by 15%. +# +29205# +Increases Physical Damage against enemies of Boss class by 25%. +# +29206# +Increases Ranged Physical Damage by 10%. +# +29207# +Adds 3% chance of absorb 15% damage inflicted into HP. +# +29208# +Adds 2% chance to absorp 1% physical damage against target as SP. +# +29209# +Adds 2% chance to absorp 1% physical damage against target as SP. +# +29210# +Adds 2% chance to absorp 3% physical damage against target as HP. +# +29211# +Adds 2% chance to absorp 3% physical damage against target as HP. +# +29212# +HIT +3 +# +29213# +HIT +6 +# +29214# +Decreases damage taken from Fire elemental attacks by 15%. +# +29215# +Decreases damage taken from Wind elemental attacks by 15%. +# +29216# +Decreases damage taken from Water elemental attacks by 15%. +# +29217# +Decreases damage taken from Earth elemental attacks by 15%. +# +29218# +Decreases damage taken from Ghost elemental attacks by 15%. +# +29219# +Decreases damage taken from Undead elemental attacks by 15%. +# +29220# +Decreases damage taken from Poison elemental attacks by 15%. +# +29221# +Decreases damage taken from Shadow elemental attacks by 15%. +# +29222# +Decreases damage taken from Holy elemental attacks by 15%. +-------------------------- +When Faith is mastered: +Decreases damage taken from Holy elemental attacks by additional 15%. +# +29223# +Increases Damage on Demon race by 15%. +-------------------------- +Increases Damage on Fire elemental by 15%. +-------------------------- +Random chance to invoke Suiten for 10 seconds when dealing physical or magical damage. +-------------------------- +During Suiten: +Decreases Variable Casting Time by 70% +Decreases After Skill Delay by 70% +Decreases SP Consumption by 70% +# +29224# +White Body Effect +# +29225# +Water Field Effect +# +29226# +Crimson Wave Effect +# +29227# +Enables the use of Level 1 Heal. +# +29228# +Enables the use of Level 1 Steal. +# +29229# +Enables the use of Level 1 Teleport. +# +29230# +All Stats +2. +-------------------------- +Type: Card +Compound on: Any slots +Weight: 1 +# +29231# +Decreases damage taken from Dragon race by 15%. +# +29232# +MDEF +5 +VIT +10 +# +29233# +Protects from skill cast interruption. +-------------------------- +Increases Variable Casting Time by 15%. +-------------------------- +For each Refine Level of Garment above +5 or higher: +MDEF +1 +MaxSP +1% +# +29234# +ATK +3 +Critical +5 +Perfect Dodge +4 +-------------------------- +For each Refine Level of Garment: +LUK +3 +ATK +5 +-------------------------- +For each Refine Level of Garment above +5 or higher: +Critical +1 +Perfect Dodge +1 +# +29235# +Perfect Dodge +1 +# +29236# +Perfect Dodge +2 +# +29237# +FLEE +5 +# +29238# +FLEE +10 +# +29239# +HIT +5 +# +29240# +HIT +10 +# +29241# +Critical +10 +# +29242# +Indestructible(Armor). +# +29243# +Protects from skill cast interruption. +# +29244# +Decreases damage taken from Players race by 1%. +# +29245# +Decreases damage taken from Players race by 2%. +# +29246# +Decreases damage taken from Players race by 3%. +# +29247# +Decreases damage taken from Players race by 4%. +# +29248# +Decreases damage taken from Players race by 5%. +# +29249# +MaxHP +200 +-------------------------- +Refine Level +6: +MaxHP +300 +-------------------------- +Refine Level +8: +MaxHP +500 +-------------------------- +When enchanted on Dark Hand: +MaxHP +5000 +# +29250# +MaxSP +10 +-------------------------- +Refine Level +6: +MaxSP +20 +-------------------------- +Refine Level +8: +MaxSP +50 +-------------------------- +When enchanted on Dark Hand: +MaxSP +100 +# +29251# +Recovers 50 HP every 5 seconds. +-------------------------- +Refine Level +6: +Recovers additional 50 HP every 5 seconds. +-------------------------- +Refine Level +8: +Recovers additional 150 HP every 5 seconds. +-------------------------- +When enchanted on Dark Hand: +Recovers additional 1000 HP every 5 seconds. +# +29252# +Recovers 1 SP every 5 seconds. +-------------------------- +Refine Level +6: +Recovers additional 1 SP every 5 seconds. +-------------------------- +Refine Level +8: +Recovers additional 3 SP every 5 seconds. +-------------------------- +When enchanted on Dark Hand: +Recovers additional 25 SP every 5 seconds. +# +29253# +Decreases damage taken from Fire elemental attacks by 20%. +-------------------------- +When enchanted on Dark Hand: +Decreases damage taken from Fire elemental attacks by additional 15%. +# +29254# +Decreases damage taken from Water elemental attacks by 20%. +-------------------------- +When enchanted on Dark Hand: +Decreases damage taken from Water elemental attacks by additional 15%. +# +29255# +Decreases damage taken from Wind elemental attacks by 20%. +-------------------------- +When enchanted on Dark Hand: +Decreases damage taken from Wind elemental attacks by additional 15%. +# +29256# +Decreases damage taken from Earth elemental attacks by 20%. +-------------------------- +When enchanted on Dark Hand: +Decreases damage taken from Earth elemental attacks by additional 15%. +# +29257# +Decreases damage taken from Shadow elemental attacks by 20%. +-------------------------- +When enchanted on Dark Hand: +Decreases damage taken from Shadow elemental attacks by additional 15%. +# +29258# +Decreases damage taken from Ghost elemental attacks by 20%. +-------------------------- +When enchanted on Dark Hand: +Decreases damage taken from Ghost elemental attacks by additional 15%. +# +29259# +Decreases damage taken from Poison elemental attacks by 20%. +-------------------------- +When enchanted on Dark Hand: +Decreases damage taken from Poison elemental attacks by additional 15%. +# +29260# +Decreases damage taken from Formless race by 30%. +-------------------------- +When enchanted on Dark Hand: +Decreases damage taken from Formless race by additional 5%. +# +29261# +Decreases damage taken from Undead race by 30%. +-------------------------- +When enchanted on Dark Hand: +Decreases damage taken from Undead race by additional 5%. +# +29262# +Decreases damage taken from Brute race by 30%. +-------------------------- +When enchanted on Dark Hand: +Decreases damage taken from Brute race by additional 5%. +# +29263# +Decreases damage taken from Plant race by 30%. +-------------------------- +When enchanted on Dark Hand: +Decreases damage taken from Plant race by additional 5%. +# +29264# +Decreases damage taken from Insect race by 30%. +-------------------------- +When enchanted on Dark Hand: +Decreases damage taken from Insect race by additional 5%. +# +29265# +Decreases damage taken from Fish race by 30%. +-------------------------- +When enchanted on Dark Hand: +Decreases damage taken from Fish race by additional 5%. +# +29266# +Decreases damage taken from Demon race by 30%. +-------------------------- +When enchanted on Dark Hand: +Decreases damage taken from Demon race by additional 5%. +# +29267# +Decreases damage taken from Demi-Human race by 30%. +-------------------------- +When enchanted on Dark Hand: +Decreases damage taken from Demi-Human race by additional 5%. +# +29268# +Decreases damage taken from Angel race by 30%. +-------------------------- +When enchanted on Dark Hand: +Decreases damage taken from Angel race by additional 5%. +# +29269# +Decreases damage taken from Dragon race by 30%. +-------------------------- +When enchanted on Dark Hand: +Decreases damage taken from Dragon race by additional 5%. +# +29270# +STR +3 +-------------------------- +Refine Level +7: +STR +2 +-------------------------- +Refine Level +9: +STR +2 +-------------------------- +When enchanted on Dark Hand: +STR +5 +# +29271# +AGI +3 +-------------------------- +Refine Level +7: +AGI +2 +-------------------------- +Refine Level +9: +AGI +2 +-------------------------- +When enchanted on Dark Hand: +AGI +5 +# +29272# +VIT +3 +-------------------------- +Refine Level +7: +VIT +2 +-------------------------- +Refine Level +9: +VIT +2 +-------------------------- +When enchanted on Dark Hand: +VIT +5 +# +29273# +INT +3 +-------------------------- +Refine Level +7: +INT +2 +-------------------------- +Refine Level +9: +INT +2 +-------------------------- +When enchanted on Dark Hand: +INT +5 +# +29274# +DEX +3 +-------------------------- +Refine Level +7: +DEX +2 +-------------------------- +Refine Level +9: +DEX +2 +-------------------------- +When enchanted on Dark Hand: +DEX +5 +# +29275# +LUK +3 +-------------------------- +Refine Level +7: +LUK +2 +-------------------------- +Refine Level +9: +LUK +2 +-------------------------- +When enchanted on Dark Hand: +LUK +5 +# +29276# +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 2%) +-------------------------- +When enchanted on Dark Hand: +ASPD +1 +# +29277# +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by additional 5%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 5%. +-------------------------- +When enchanted on Dark Hand: +Decreases Variable Casting Time by additional 10%. +# +29278# +Decreases After Skill Delay by 5%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by additional 5%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by additional 5%. +-------------------------- +When enchanted on Dark Hand: +Decreases After Skill Delay by additional 10%. +# +29279# +ATK +3% +-------------------------- +Refine Level +7: +ATK +1%. +-------------------------- +Refine Level +9: +ATK +1%. +-------------------------- +When enchanted on Dark Hand: +ATK +5%. +# +29280# +MATK +3% +-------------------------- +Refine Level +7: +MATK +1% +-------------------------- +Refine Level +9: +MATK +1% +-------------------------- +When enchanted on Dark Hand: +MATK +5% +# +29281# +DEF +10 +-------------------------- +Refine Level +7: +DEF +15 +-------------------------- +Refine Level +9: +DEF +25 +-------------------------- +When enchanted on Dark Hand: +DEF +500 +# +29282# +MDEF +4 +-------------------------- +Refine Level +7: +MDEF +6 +-------------------------- +Refine Level +9: +MDEF +10 +-------------------------- +When enchanted on Dark Hand: +MDEF +20 +# +29283# +Decreases damage taken from Normal, Boss and WoE-Guardian class by 80%. +# +29285# +Decreases damage taken from Ranged Physical Damage by 80%. +# +29300# +Restores HP and SP by 100% when resurrected. +-------------------------- +When equipped by Rune Knight: +Increases damage of Storm Blast by 100%. +-------------------------- +When equipped by Royal Guard: +Decreases Cannon Spear skill cooldown by 1 second. +-------------------------- +When equipped by Warlock: +Decreases Crimson Rock skill cooldown by 1.5 seconds. +-------------------------- +When equipped by Sorcerer: +Decreases Variable Casting Time by 15%. +-------------------------- +When equipped by Ranger: +Increases damage of Warg Strike by 30%. +-------------------------- +When equipped by Minstrel/Wanderer: +All Stats +10 +-------------------------- +When equipped by Archbishop: +Enables the use of Level 5 Providence. +-------------------------- +When equipped by Sura: +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped by Guillotine Cross: +Decreases After Skill Delay by 90%. +When using Hallucination Walk and in Weapon Blocking state: +The Weapon Blocking state will be replaced with a Weapon Blocking state with high chance of parrying attacks for 50 seconds. +-------------------------- +When equipped by Shadow Chaser: +Decreases Fixed Casting Time by 50%. +-------------------------- +When equipped by Mechanic: +Increases Attack Speed (Decreases After Attack Delay by 20%). +-------------------------- +When equipped by Genetic: +MaxHP +15% +ATK +50, MATK +50 +# +29302# +Enchant armor with Water element. +# +29303# +Enchant armor with Wind element. +# +29304# +Enchant armor with Earth element. +# +29305# +Enchant armor with Fire element. +# +29306# +Enchant armor with Shadow element. +# +29307# +Enchant armor with Holy element. +# +29308# +Enchant armor with Undead element. +# +29309# +Enchant armor with Poison element. +# +29310# +It's effects only applies when enchanted on Racing Cap(Rune Knight). +When using Two-Hand Quicken, Increases Physical Damage against enemies of all size monsters by 5% for 60 seconds. +# +29311# +It's effects only applies when enchanted on Racing Cap(Rune Knight). +Physical attacks have a low chance to negate the size penalty for 3 seconds. +When using Two-Hand Quicken, Increases Physical Damage against enemies of all size monsters by 7% for 60 seconds. +# +29312# +It's effects only applies when enchanted on Racing Cap(Rune Knight). +Physical attacks have a low chance to negate the size penalty for 5 seconds. +When using Two-Hand Quicken, ATK +40 and Increases Physical Damage against enemies of all size monsters by 15% for 60 seconds. +# +29313# +It's effects only applies when enchanted on Racing Cap(Royal Guard). +Decreases Shield Press skill cooldown by 0.5 seconds. +# +29314# +It's effects only applies when enchanted on Racing Cap(Royal Guard). +Decreases Shield Press skill cooldown by 1.0 second. +When using Earth Drive, increases damage of Shield Press by 20% for 60 seconds. +# +29315# +It's effects only applies when enchanted on Racing Cap(Royal Guard). +Decreases Shield Press skill cooldown by 1.5 seconds. +When using Earth Drive, increases damage of Shield Press by 60% for 60 seconds. +# +29316# +It's effects only applies when enchanted on Racing Cap(Mechanic). +When using Adrenaline Rush, Critical +5 for 60 seconds. +# +29317# +It's effects only applies when enchanted on Racing Cap(Mechanic). +Physical attacks have a low chance to increase physical damage against all size monsters by 10% for 5 seconds. +When using Adrenaline Rush, Critical +10 for 60 seconds. +# +29318# +It's effects only applies when enchanted on Racing Cap(Mechanic). +Physical attacks have a low chance to increase physical damage against all size monsters by 20% for 10 seconds. +When using Adrenaline Rush, Critical +20 and Increases Critical Damage by 10% for 60 seconds. +# +29319# +It's effects only applies when enchanted on Racing Cap(Genetic). +When using Genetic's Cart Boost, increase physical damage against all size monsters by 5% for 60 seconds. +# +29320# +It's effects only applies when enchanted on Racing Cap(Genetic). +Decreases Mandragora Howling skill cooldown by 1 second. +When using Genetic's Cart Boost, increase physical damage against all size monsters by 7% for 60 seconds. +# +29321# +It's effects only applies when enchanted on Racing Cap(Genetic). +Decreases Mandragora Howling skill cooldown by 5 seconds. +When using Genetic's Cart Boost, ATK +40 and increase physical damage against all size monsters by 15% for 60 seconds. +# +29322# +It's effects only applies when enchanted on Racing Cap(Guillotine Cross). +When using Enchant Deadly Poison, ATK +20 for 60 seconds. +# +29323# +It's effects only applies when enchanted on Racing Cap(Guillotine Cross). +Increases Physical Damage against enemies of all size monsters by 5%. +When using Enchant Deadly Poison, ATK +30 for 60 seconds. +# +29324# +It's effects only applies when enchanted on Racing Cap(Guillotine Cross). +Increases Physical Damage against enemies of all size monsters by 10%. +When using Enchant Deadly Poison, ATK +50 and Critical +10 for 60 seconds. +# +29325# +It's effects only applies when enchanted on Racing Cap(Shadow Chaser). +When using Auto Shadow Spell, Critical +5 for 60 seconds. +# +29326# +It's effects only applies when enchanted on Racing Cap(Shadow Chaser). +Increases Water, Wind, Earth and Fire elemental magical damage by 5%. +When using Auto Shadow Spell, Critical +10 for 60 seconds. +# +29327# +It's effects only applies when enchanted on Racing Cap(Shadow Chaser). +Increases Water, Wind, Earth and Fire elemental magical damage by 15%. +When using Auto Shadow Spell, Critical +20 and MATK +30 for 60 seconds. +# +29328# +It's effects only applies when enchanted on Racing Cap(Warlock). +Decreases Frost Misty skill cooldown by 1 second. +# +29329# +It's effects only applies when enchanted on Racing Cap(Warlock). +Decreases Frost Misty skill cooldown by 3 seconds. +Increases damage of Jack Frost by 30%. +# +29330# +It's effects only applies when enchanted on Racing Cap(Warlock). +Decreases Frost Misty skill cooldown by 5 seconds. +Increases damage of Jack Frost by 60%. +# +29331# +It's effects only applies when enchanted on Racing Cap(Sorcerer). +Physical attacks have a chance to auto-cast Level 1 Frost Nova. +# +29332# +It's effects only applies when enchanted on Racing Cap(Sorcerer). +Physical attacks have a chance to auto-cast Level 4 Frost Nova. +When using Striking, increases damage of Bolt skills by 30% for 60 seconds. +# +29333# +It's effects only applies when enchanted on Racing Cap(Sorcerer). +Physical attacks have a chance to auto-cast Level 7 Frost Nova. +When using Striking, increases damage of Bolt skills by 60% for 60 seconds. +# +29334# +It's effects only applies when enchanted on Racing Cap(Archbishop). +Increases damage of Adoramus by 20%. +# +29335# +It's effects only applies when enchanted on Racing Cap(Archbishop). +Physical attacks have a low chance to negate Gemstone Consumption for 3 seconds. +Increases damage of Adoramus by 30%. +# +29336# +It's effects only applies when enchanted on Racing Cap(Archbishop). +Physical attacks have a low chance to negate Gemstone Consumption for 5 seconds. +Increases damage of Adoramus by 60%. +# +29337# +It's effects only applies when enchanted on Racing Cap(Sura). +Increases damage of Knuckle Arrow by 20%. +# +29338# +It's effects only applies when enchanted on Racing Cap(Sura). +Casting Knuckle Arrow has a low chance to auto-cast Dangerous Soul Collect. +Increases damage of Knuckle Arrow by 30%. +# +29339# +It's effects only applies when enchanted on Racing Cap(Sura). +Casting Knuckle Arrow has a chance to auto-cast Dangerous Soul Collect. +Increases damage of Knuckle Arrow by 60%. +# +29340# +It's effects only applies when enchanted on Racing Cap(Ranger). +When using Fear Breeze, increases Ranged Physical Damage by 2% for 60 seconds. +# +29341# +It's effects only applies when enchanted on Racing Cap(Ranger). +Decreases Arrow Storm skill cooldown by 0.5 seconds. +When using Fear Breeze, increases Ranged Physical Damage by 4% for 60 seconds. +# +29342# +It's effects only applies when enchanted on Racing Cap(Ranger). +Decreases Arrow Storm skill cooldown by 1.5 seconds. +When using Fear Breeze, increases Ranged Physical Damage by 7% for 60 seconds. +# +29343# +It's effects only applies when enchanted on Racing Cap(Wanderers)/Racing Cap(Minstrel). +ATK +20 +# +29344# +It's effects only applies when enchanted on Racing Cap(Wanderer)/Racing Cap(Minstrel). +ATK +30 +When using Windmill Rush or Moonlight Serenade, ignores physical defense of Normal class by 25% for 60 seconds. +# +29345# +It's effects only applies when enchanted on Racing Cap(Wanderer)/Racing Cap(Minstrel). +ATK +40 +When using Windmill Rush or Moonlight Serenade, ignores physical defense of Normal class by 50% for 60 seconds. +# +29346# +It's effects only applies when enchanted on Racing Cap(Gunslinger). +When using Shattering Storm, increases damage of Banishing Buster by 20% for 5 seconds. +# +29347# +It's effects only applies when enchanted on Racing Cap(Gunslinger). +Decreases Banishing Buster skill cooldown by 1 second. +When using Shattering Storm, increases damage of Banishing Buster by 40% for 7 seconds. +# +29348# +It's effects only applies when enchanted on Racing Cap(Gunslinger). +Decreases Banishing Buster skill cooldown by 1.5 seconds. +When using Shattering Storm, increases damage of Banishing Buster by 60% for 10 seconds. +# +29349# +It's effects only applies when enchanted on Racing Cap(Ninja). +ATK +10, MATK +10. +When using Shadow Warrior, Increases Critical Damage by 5% for 60 seconds. +When Moonlight Fantasy is Level 5, decreases Variable Casting Time by 3%. +# +29350# +It's effects only applies when enchanted on Racing Cap(Ninja). +ATK +15, MATK +15. +Physical attacks have a low chance to negate the size penalty for 3 seconds. +When using Shadow Warrior, Increases Critical Damage by 10% for 60 seconds. +When Moonlight Fantasy is Level 5, decreases Variable Casting Time by 7%. +# +29351# +It's effects only applies when enchanted on Racing Cap(Ninja). +ATK +20, MATK +20. +Physical attacks have a low chance to negate the size penalty for 5 seconds. +When using Shadow Warrior, Increases Critical Damage by 30% for 60 seconds. +When Moonlight Fantasy is Level 5, decreases Variable Casting Time by 15%. +# +29352# +It's effects only applies when enchanted on Racing Cap(Super Novice). +MaxHP +500, ATK +10. +# +29353# +It's effects only applies when enchanted on Racing Cap(Super Novice). +MaxHP +1000, ATK +20. +Enables the use of Level 1 Cart Boost. +When using Cart Boost, ATK +30 for 60 seconds. +# +29354# +It's effects only applies when enchanted on Racing Cap(Super Novice). +MaxHP +1500, ATK +40. +Enables the use of Level 3 Cart Boost. +When using Cart Boost, ATK +50 for 120 seconds. +# +29355# +It's effects only applies when enchanted on Racing Cap(Summoner). +Increases damage of Catnip Meteor and Lunatic Carrot Beat by 10%. +# +29356# +It's effects only applies when enchanted on Racing Cap(Summoner). +Decreases Fixed Casting Time by 0.2 seconds. +Increases damage of Catnip Meteor and Lunatic Carrot Beat by 20%. +# +29357# +It's effects only applies when enchanted on Racing Cap(Summoner). +Decreases Fixed Casting Time by 0.5 seconds. +Increases damage of Catnip Meteor and Lunatic Carrot Beat by 60%. +# +29358# +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Variable Cast Stone(Upper), Variable Cast Stone(Mid) and Variable Cast Stone(Lower): +Decreases Variable Casting Time by additional 5%. +# +29359# +Increases Critical Damage by 3% +-------------------------- +When equipped with Fatal and Fatal(Lower): +Increases Critical Damage by additional 6%. +# +29360# +Increases Critical Damage by 3%. +# +29361# +Increases Critical Damage by 20%. +-------------------------- +When equipped with Fatal(Upper), Fatal and Fatal(Lower): +Critical +10 +# +29362# +Enables the use of Level 3 Double Attack. +If you learned it at a higher level, it will activate at that level. +# +29363# +Increases Damage against monsters of Insect and Demi-Human race (except players) by 15%. +Increases Damage against Water and Earth elemental by 15%. +-------------------------- +Physical and magical attacks have a chance to activate Hundred Fire for 10 seconds. +-------------------------- +Hundred Fire: +Decreases Variable Casting Time by 70%. +Decreases After Skill Delay by 70%. +Increases Damage against monsters of all elements by 70%. +# +29366# +For each Refine Level: +ATK +2%. +# +29367# +For each Refine Level: +ATK +4% +# +29368# +For each Refine Level: +ATK +6% +# +29369# +For each Refine Level: +ATK +8% +# +29370# +For each Refine Level: +ATK +10% +# +29371# +Random chance to recieve the following effect for 10 seconds when recieving magical damage: +Perfect Dodge +100 +Increase magical damage against Boss class by 100%. +Transform into High Wizard Kathryne Keyron. +-------------------------- +When equipped by Warlock: + +When equipped with Geffenia Ice Magic Tool: +Nullifies Gemstone requirement of certain skills. + +When equipped with Mental Expansion Ring: +Ignore magical defense of all enemies by 100%. +-------------------------- +When equipped by Sorcerer: +When equipped with Mental Expansion Ring: +Ignore magical defense of all enemies by 100%. +-------------------------- +When equipped with Everything Ring: +Increases Wind, Magical Damage with Holy and Neutral element by 50%. +Decreases Fixed Casting Time by 70%. +-------------------------- +When equipped by Royal Guard and equipped with Judge's Balance: +Random chance to recieve the following effect for 3 seconds when dealing magical damage: +auto-cast Level 3 Highness Heal on yourself when using Genesis Ray. +-------------------------- +When equipped by Warlock and equipped with Ring of Pazuzu: +Decreases SP Consumption of Crimson Rock by 50. +Decreases Crimson Rock skill cooldown by 2 seconds. +# +29372# +Decreases Fixed Casting Time by 50%. +# +29373# +Decreases After Skill Delay by 15%. +# +29374# +Decreases SP Consumption by 15%. +# +29375# +Decreases damage taken from Players by 6%. +# +29376# +Decreases damage taken from Players by 7%. +# +29377# +Decreases damage taken from Players by 8%. +# +29378# +Decreases damage taken from Players by 9%. +# +29379# +Decreases damage taken from Players by 10%. +# +29380# +ATK +5 +# +29381# +MATK +5 +# +29382# +HIT +20 +-------------------------- +Refine Level +7: +HIT +10 +-------------------------- +Refine Level +9: +HIT +10 +-------------------------- +When enchanted on Dark Hand: +HIT +20 +# +29383# +FLEE +20 +-------------------------- +Refine Level +7: +FLEE +10 +-------------------------- +Refine Level +9: +FLEE +10 +-------------------------- +When enchanted on Dark Hand: +FLEE +20 +# +29384# +Perfect Dodge +3 +-------------------------- +Refine Level +7: +Perfect Dodge +2 +-------------------------- +Refine Level +9: +Perfect Dodge +2 +-------------------------- +When enchanted on Dark Hand: +Perfect Dodge +5 +# +29385# +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 1%. +-------------------------- +When enchanted on Dark Hand: +Increases Ranged Physical Damage by 5%. +# +29386# +Increases Critical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Critical Damage by 1%. +-------------------------- +Refine Level +9: +Increases Critical Damage by 1%. +-------------------------- +When enchanted on Dark Hand: +Increases Critical Damage by 5%. +# +29423# +For each Level of Iron Hand: +ATK +2 +# +29424# +For each Level of Dodge: +HIT +2 +# +29425# +Increases damage of Chain Combo by 20% +# +29426# +Increases damage of Rampage Blaster by 15%. +-------------------------- +When equipped with Champion Stone(Upper): +Increases damage of Rampage Blaster by 10%. +-------------------------- +When equipped with Champion Stone(Mid): +Decreases Fixed Casting Time of Dangerous Soul Collect by 40%. +-------------------------- +When equipped with Champion Stone(Lower): +Using Rampage Blaster has a high chance (30%) to auto cast Dangerous Soul Collect. +# +29427# +Increases damage of Knuckle Arrow by 15%. +-------------------------- +When equipped with Champion Stone II(Upper): +Increases damage of Tiger Cannon by 15%. +-------------------------- +When equipped with Champion Stone II(Mid): +MaxHP +10% +-------------------------- +When equipped with Champion Stone II(Lower): +Increases damage of Tiger Cannon by additional 15%. +# +29428# +For each Level of Steel Crow: +ATK +2 +# +29429# +Decreases Fixed Casting Time of Sharp Shooting by 0.5 seconds. +# +29430# +Increases damage of Arrow Shower by 20%. +# +29431# +Increases damage of Arrow Storm by 10%. +-------------------------- +When equipped with Sniper Stone(Upper): +Increases damage of Arrow Storm by additional 15%. +-------------------------- +When equipped with Sniper Stone(Mid): +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Sniper Stone(Lower): +Using Wind Walk increases Ranged Physical Damage by 5% for 60 seconds. +# +29432# +For each Level of Advanced Book: +Increases Attack Speed (Decreases After Attack Delay by 1%). +# +29433# +Decreases Fixed Casting Time of Double Casting by 0.4 seconds. +(Does not overlap with other Fixed Casting Time reductions.) +# +29434# +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by 20%. +# +29435# +Increases damage of Psychic Wave by 10%. +-------------------------- +When equipped with Professor Stone(Upper): +Increases damage of Psychic Wave by additional 15%. +-------------------------- +When equipped with Professor Stone(Mid): +Decreases Warmer skill cooldown by 15 seconds. +-------------------------- +When equipped with Professor Stone(Lower): +Decreases Psychic Wave skill cooldown by 2 seconds. +# +29436# +Random chance to recieve the following effects for 5 seconds when recieving physical damage: +STR +200 +Transform into Paladin Randel Lawrence. +-------------------------- +When equipped with Everything Ring: +Increases Attack Speed (Decreases After Attack Delay by 15%). +ATK +35% +# +29437# +Decreases After Skill Delay by 8%. +# +29438# +Prevents knock-back effect. +-------------------------- +When enchanted on Riot Chip: +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +When enchanted with : +MaxHP +5% +# +29439# +Indestructible in battle +-------------------------- +When enchanted on Riot Chip: +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +When enchanted with : +MaxHP +5% +# +29440# +Recovers 2 SP when defeating monsters with physical attacks. +-------------------------- +Refine Level +7: +Recovers additional 3 SP when defeating monsters with physical attacks. +-------------------------- +Refine Level +8: +Recovers additional 5 SP when defeating monsters with physical attacks. +-------------------------- +Refine Level +9: +Recovers additional 10 SP when defeating monsters with physical attacks. +-------------------------- +When enchanted on Riot Chip: +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +When enchanted with : +MaxHP +5% +# +29441# +Restores HP and SP by 100% when resurrected. +-------------------------- +When enchanted on Riot Chip: +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +When enchanted with : +MaxHP +5% +# +29442# +Protects from skill cast interruption. +-------------------------- +When enchanted on Riot Chip: +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +When enchanted with : +MaxHP +5% +# +29443# +Enables its user to detect hidden enemies. +-------------------------- +When enchanted on Riot Chip: +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +When enchanted with : +MaxHP +5% +# +29444# +Decreases Fixed Casting Time by 50%. +-------------------------- +When enchanted on Riot Chip: +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +When enchanted with : +MaxHP +5% +# +29445# +For each Refine Level: +MATK +1% +-------------------------- +When equipped by Novice, Magician, Acolyte or Summoner classes: +When equipped with Solomon's Pendant: +Increases Magical Damage against enemies of every race by 10%. +Ignores magical defense of all enemies by 70%. +# +29446# +For each Refine Level: +MATK +2 +-------------------------- +When equipped by Novice, Magician, Acolyte or Summoner classes: +When equipped with Solomon's Pendant: +Increases Magical Damage against enemies of every race by 10%. +Ignores magical defense of all enemies by 70%. +# +29447# +For each Refine Level: +MATK +3% +-------------------------- +When equipped by Novice, Magician, Acolyte or Summoner classes: +When equipped with Solomon's Pendant: +Increases Magical Damage against enemies of every race by 10%. +Ignores magical defense of all enemies by 70%. +# +29448# +For each Refine Level: +MATK +4% +-------------------------- +When equipped by Novice, Magician, Acolyte or Summoner classes: +When equipped with Solomon's Pendant: +Increases Magical Damage against enemies of every race by 10%. +Ignores magical defense of all enemies by 70%. +# +29449# +For each Refine Level: +MATK +5% +-------------------------- +When equipped by Novice, Magician, Acolyte or Summoner classes: +When equipped with Solomon's Pendant: +Increases Magical Damage against enemies of every race by 10%. +Ignores magical defense of all enemies by 70%. +# +29450# + Lv1 +# +29451# +Lv2 +# +29452# +Lv3 +# +29453# +Lv4 +# +29454# +Lv5 +# +29455# +Lv6 +# +29456# +Lv7 +# +29457# +Lv8 +# +29458# +Lv9 +# +29459# + Lv10 +# +29460# +For each Level of Spear Mastery: +ATK +2 +# +29461# +Increases damage of Spiral Pierce by 15%. +# +29462# +For each Level of Cavalry Mastery: +Increases Attack Speed (Decreases After Attack Delay by 1%). +# +29463# +Increases damage of Dragon Breath and Dragon Breath - Water by 10%. +-------------------------- +When equipped with Lord Knight Stone(Upper): +Increases damage of Dragon Breath and Dragon Breath - Water by 10%. +-------------------------- +When equipped with Lord Knight Stone(Mid): +Decreases SP Consumption of Dragon Breath and Dragon Breath - Water by 10%. +-------------------------- +When equipped with Lord Knight Stone(Lower): +Decreases After Skill Delay by 5%. +# +29464# +For each Level of Learning Potion: +ATK +2 +# +29465# +For each Level of Potion Pitcher: +Increases Healing and Potion Recovery by 2%. +# +29466# +Increases damage of Acid Terror by 20%. +# +29467# +Increases damage of Cart Cannon by 10%. +-------------------------- +When equipped with Creator Stone(Upper): +Increases damage of Cart Cannon by additional 15%. +-------------------------- +When equipped with Creator Stone(Mid): +Decreases Howling of Mandragora skill cooldown by 3 seconds. +-------------------------- +When equipped with Creator Stone(Lower): +Increases Ranged Physical Damage by 5%. +# +29468# +For each Level of Mystical Amplification: +MATK +2 +# +29469# +Increases damage of Meteor Storm by 20%. +# +29470# +Increases damage of Fire Pillar by 20%. +# +29471# +Increases damage of Crimson Rock by 10%. +-------------------------- +When equipped with High Wizard Stone(Upper: +Increases damage of Crimson Rock by additional 15%. +-------------------------- +When equipped with High Wizard Stone(Mid): +For evey 2 Levels of Soul Drain: +Decreases Fixed Casting Time by 0.1 seconds. +-------------------------- +When equipped with High Wizard Stone(Lower): +Increases damage of Fire elemental magic by 5%. +# +29472# +ATK +5% +MATK +5% +-------------------------- +Decreases damage taken from Fire, Water, Wind and Earth elemental attacks by 15%. +-------------------------- +Decreases damage taken from Boss class by 10%. +-------------------------- +Enables the use of Level 1 Teleport. +# +29473# +MaxHP +20% +MaxSP +20% +-------------------------- +Increases Damage against monsters of Demi-Human race by 5%. +-------------------------- +Enables the use of Level 1 Spell Breaker. +# +29474# +ATK +5% +-------------------------- +Random chance to increase ATK by 100 for 5 seconds when dealing physical damage. +# +29475# +INT +10 +-------------------------- +Decreases Variable Casting Time by 10%. +# +29476# +Increases Damage against monsters of Brute and Insect race by 15%. +-------------------------- +Reflects 10% Melee Physical Damage. +-------------------------- +Protects from skill cast interruption. +-------------------------- +Prevents knock-back effect. +# +29477# +For each Level of Plagiarism: +ATK +2 +# +29478# +For each Level of Vulture's Eye: +HIT +2 +# +29479# +Increases damage of Raid by 20%. +# +29480# +Increases damage of Triangle Shot by 15%. +-------------------------- +When equipped with Stalker Stone(Upper): +Increases damage of Triangle Shot by additional 15%. +-------------------------- +When equipped with Stalker Stone(Mid): +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Stalker Stone(Lower): +Decreases SP Consumption of Triangle Shot by 10%. +# +29481# +For each Level of Weaponry Research: +ATK +2 +# +29482# +For each Level of Skin Tempering: +HIT +3 +# +29483# +Increases damage of Cart Termination by 20%. +# +29484# +Increases damage of Axe Tornado by 15%. +-------------------------- +When equipped with Whitesmith Stone(Upper): +Physical attacks have a 2% chance to absorb 1% of the damage dealt as SP. +-------------------------- +When equipped with Whitesmith Stone(Mid: +Decreases Axe Tornado skill cooldown by 1 second. +-------------------------- +When equipped with Whitesmith Stone(Lower): +Increases damage of Axe Tornado by additional 15%. +# +29485# +For each Level of Musical Lesson/Dancing Lesson: +ATK +2 +# +29486# +Increases damage of Musical Strike and Throw Arrow by 20%. +# +29487# +Increases damage of Arrow Vulcan by 20%. +# +29488# +Increases damage of Severe Rainstorm by 15%. +-------------------------- +When equipped with Clown Gypsy Stone(Upper): +Increases damage of Severe Rainstorm by additional 15%. +-------------------------- +When equipped with Clown Gypsy Stone(Mid): +Decreases Severe Rainstorm skill cooldown by 1 second. +-------------------------- +When equipped with Clown Gypsy Stone(Lower): +Decreases Fixed Casting Time by 0.5 seconds. +# +29509# +Random chance to recieve the following effect for 10 seconds when revieving physical damage: +Perfect Dodge +100 +Increases Physical Damage against enemies of Boss class by 100%. +-------------------------- +When equipped with Everything Ring: +Decreases After Skill Delay by 15%. +Increases Ranged Physical Damage by 25%. +# +29510# +Decreases damage taken from Players by 30%. +-------------------------- +When enchanted on Dark Hand: +Decreases damage taken from Players by 5%. +Decreases damage taken from Doram Players by 5%. +# +29511# +Decreases damage taken from Players by 1%. +-------------------------- +For each 3 Refine Levels: +Decreases damage taken from Players by additional 1%. +-------------------------- +When enchanted on Runaway Accelerator: +Decreases damage taken from Players by additional 3%. + +For each Refine Level of Runaway Accelerator: +Decreases damage taken from Players by additional 1%. +# +29512# +MaxHP +5%, MaxSP +5% +-------------------------- +Decreases damage taken from Doram Players by 5%. +-------------------------- +Refine Level +7: +DEF +50, MDEF +5 +Decreases damage taken from Doram Players by additional 5%. +-------------------------- +Refine Level +9: +DEF +50, MDEF +5 +Decreases damage taken from Doram Players by additional 2%. +# +29513# +For each Level of Meditatio: +Healing +1% +# +29514# +For each Level of Mace Mastery: +Increases Critical Damage by 2%. +# +29515# +Increases damage of Magnus Exorcismus by 20%. +# +29516# +Increases damage of Adoramus by 15%. +-------------------------- +When equipped with High Priest Stone(Upper): +Increases damage of Adoramus by additional 15%. +-------------------------- +When equipped with High Priest Stone(Mid): +Decreases Adoramus skill cooldown by 1 second. +-------------------------- +When equipped with High Priest Stone(Lower): +Decreases Fixed Casting Time by 0.5 seconds. +# +29517# +For every 2 Levels of Faith: +MaxHP +1% +# +29518# +For every 2 Levels of Spear Mastery: +Increases Ranged Physical Damage by 1%. +# +29519# +Increases damage of Holy Cross by 20%. +# +29520# +Increases damage of Banishing Point by 15%. +-------------------------- +When equipped with Paladin Stone(Upper): +Physical attacks have a 2% chance to absorb 1% of the damage dealt as SP. +-------------------------- +When equipped with Paladin Stone(Mid): +Decreases Cannon Spear skill cooldown by 0.5 seconds. +-------------------------- +When equipped with Paladin Stone(Lower): +Increases damage of Banishing Point by additional 15%. +# +29521# +For each Level of Katar Mastery: +ATK +2 +# +29522# +For each Level of Lefthand Mastery: +HIT +2 +# +29523# +Increases damage of Sonic Blow by 20%. +# +29524# +Increases damage of Rolling Cutter by 15%. +-------------------------- +When equipped with Assassin Cross Stone(Upper): +Physical attacks have a 2% chance to absorb 1% of the damage dealt as SP. +-------------------------- +When equipped with Assassin Cross Stone(Mid): +Increases damage of Cross Ripper Slasher by 15%. +-------------------------- +When equipped with Assassin Cross Stone(Lower): +Increases damage of Rolling Cutter by additional 15%. +# +29527# +DEF +25 +-------------------------- +Refine Level +7: +DEF +10 +-------------------------- +Refine Level +9: +DEF +10 +# +29528# +MDEF +2 +-------------------------- +Refine Level +7: +MDEF +3 +-------------------------- +Refine Level +9: +MDEF +3 +# +29529# +HP Recovery +20%. +# +29530# +MaxSP +5% +-------------------------- +Refine Level +7: +MaxSP +100 +-------------------------- +Refine Level +9: +MaxSP +150 +# +29531# +MaxHP +5% +-------------------------- +Refine Level +7: +MaxHP +500 +-------------------------- +Refine Level +9: +MaxHP +750 +# +29532# +SP Recovery +20%. +# +29533# +Increases Healing skills effectiveness by 5%. +-------------------------- +Refine Level +7: +Increases Healing skills effectiveness by additional 5%. +-------------------------- +Refine Level +9: +Increases Healing skills effectiveness by additional 5%. +# +29534# +ATK +5% +-------------------------- +Refine Level +7: +ATK +25 +-------------------------- +Refine Level +9: +ATK +25 +# +29535# +MATK +5% +-------------------------- +Refine Level +7: +MATK +25 +-------------------------- +Refine Level +9: +MATK +25 +# +29536# +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 2%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 2%. +# +29537# +ASPD +1 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by additional 3%). +# +29538# +Decreases Variable Casting Time by 3%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by additional 3%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 3%. +# +29539# +Critical +10 +-------------------------- +Refine Level +7: +Increases Critical Damage by 5%. +-------------------------- +Refine Level +9: +Increases Critical Damage by additional 5%. +# +29540# +Decreases After Skill Delay by 5%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by additional 5%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by additional 5%. +# +29541# +Decreases Fixed Casting Time by 0.3 seconds. +-------------------------- +Refine Level +7: +Decreases Fixed Casting Time by 0.2 additional seconds. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 additional seconds. +# +29542# +Decreases Physical and Magical Damage from against enemies of all elements by 5%. +-------------------------- +Refine Level +7: +Decreases Physical and Magical Damage from all size enemies by 5%. +-------------------------- +Refine Level +9: +Decreases Physical and Magical Damage from all race by 5% (Except Players). +# +29543# +Physical attacks have a 2 % chance to restore 2% of the inflicted damage as HP. +# +29544# +Physical attacks have a 1 % chance to restore 1% of the inflicted damage as SP. +# +29545# +Magical attacks have a 2% chance to recover 400HP per 0.5 second for 10 seconds. +# +29546# +Magical attacks have a 1% chance to recover 80SP per 0.5 second for 10 seconds. +# +29547# +Recieving physical or magical damage have a chance to activate Everlasting Life for 10 seconds. +-------------------------- +[Everlasting Life] +VIT +50 +Recover 400HP per 0.5 second. +Recover 20SP per second. +# +29548# +Magical attacks have a chance to activate Magic Storm for 10 seconds. +-------------------------- +[Magic Storm] +INT +50 +MATK +15% +ATK -15% +# +29549# +Physical attacks have a chance to activate Plunging Shooter for 10 seconds. +-------------------------- +[Plunging Shooter] +DEX +50 +Increases Ranged Physical Damage by 10%. +Drains 20SP per second. +# +29550# +Physical attacks have a chance to activate Raging Fight for 10 seconds. +-------------------------- +[Raging Fight] +STR +50 +ATK +15% +MATK -15% +# +29551# +Physical attacks have a chance to activate Fatal Flash for 10 seconds. +-------------------------- +[Fatal Flash] +AGI +50 +Increases Critical Damage by 10%. +Drains 300HP per second. +# +29552# +Magical attacks have a chance to activate Good Fortune for 10 seconds. +-------------------------- +[Good Fortune] +LUK +50 +Increases all elemental magical damage by 10%. +Drains 300HP per second. +# +29579# +The following option can only used when enchanted to Racing Cap(Star Gladiator) +Increases damage of Solar Burst, Full Moon Kick and Falling Star by 10%. +# +29580# +The following option can only used when enchanted to Racing Cap(Star Gladiator) +Decreases Document of Sun Moon Star skill cooldown by 10 seconds. +Increases damage of Solar Burst, Full Moon Kick and Falling Stars by 20%. +# +29581# +The following option can only used when enchanted to Racing Cap(Star Gladiator) +Decreases Document of Sun Moon Star skill cooldown by 30 seconds. +Increases damage of Solar Burst, Full Moon Kick and Falling Stars by 40%. +# +29582# +The following option can only used when enchanted to Racing Cap(Soul Linker) +Increases damage of Esma, Espa and Eswhoo by 10%. +# +29583# +The following option can only used when enchanted to Racing Cap(Soul Linker) +Decreases Soul Reaper skill cooldown by 10 seconds. +Increases damage of Esma, Espa and Eswhoo by 20%. +# +29584# +The following option can only used when enchanted to Racing Cap(Soul Linker) +Decreases Soul Reaper skill cooldown by 30 seconds. +Increases damage of Esma, Espa and Eswhoo by 40%. +# +29585# +When equipped with The Emperor Card: +VIT+3, MaxHP +10% +Increases damage of Overbrand by 50%. +-------------------------- +When equipped with The Hierophant Card: +LUK +3 +Increases Healing skills effectiveness by 10%. +Increases HP Recovery Amount of Recovery Items by 10%. +Increases damage of Cart Tornado by 50%. +-------------------------- +When equipped with The Lovers Card: +DEX +3, MDEF +20 +Increases damage of Severe Rainstorm by 50%. +-------------------------- +When equipped with The Chariot Card: +LUK +3 +Increases Ranged Physical Damage by 5%. +Increases damage of Arms Cannon by 50%. +-------------------------- +When equipped with Strength Card: +STR +3, ATK +50 +Increases damage of Sky Net Blow by 50%. +-------------------------- +When equipped with The Hermit Card: +Increases Healing skills effectiveness by 5%. +Increases SP Recovery Rate by 50%. +Increases damage of Adoramus by 50%. +-------------------------- +When equipped with Justice Card: +VIT +3, DEF +300 +Increases damage of Hundred Spear by 50%. +-------------------------- +When equipped with Death Card: +AGI +3, FLEE +50 +Increases damage of Rolling Cutter by 50%. +-------------------------- +When equipped with Temperance Card: +DEX +3, ASPD +1 +Increases damage of Arrow Storm by additional 50%. +-------------------------- +When equipped with The Devil Card: +AGI +3, HIT +50 +Increases damage of Feint Bomb by additional 50%. +-------------------------- +When equipped with The Star Card: +INT +3, MATK +50 +Increases damage of Soul Expansion by additional 50%. +-------------------------- +When equipped with The Moon Card: +INT +3 +Protects from skill cast interruption. +Increases damage of Diamond Dust by additional 50%. +-------------------------- +When equipped with The Fool Card: +All Stats +1 +MaxHP +5000 +MaxSP +500 +Enables the use of Level 1 Cart Revolution. +-------------------------- +When equipped with Wheel of Fortune Card: +STR +2, LUK +2 +Increases HP Recovery Rate by 350%. +Increases damage of Soul Cutter by 50%. +-------------------------- +When equipped with The Hanged Man Card: +INT +2, DEX +2 +MaxSP +10% +Increases damage of Fire Dance by 50%. +-------------------------- +When equipped with World Card: +AGI +2, VIT +2 +Increases damage of Catnip Meteor by 50%. + +Enables its user to detect hidden enemies. +This effect does not activate during WoE:TE. +-------------------------- +When equipped with Reversed Justice Card: +LUK +3 +Ignores physical defense of all enemies by 25%. +Increases damage of Sonic Wave by 50%. +-------------------------- +When equipped with Reversed Star Card: +DEX +3 +Recovers 200 HP when defeating monsters with magical attacks. +Increases damage of Hell Inferno by 50%. +-------------------------- +When equipped with Reversed Temperance Card: +INT +3 +Decreases After Skill Delay by 5%. +Increases damage of Aimed Bolt by 50%. +-------------------------- +When equipped with Reversed The Chariot Card: +VIT +3 +Increases Physical Damage against enemies of Boss class by 5%. +Increases damage of Power Swing by 50%. +-------------------------- +When equipped with Reversed Death Card: +VIT +3 +Recovers 5 SP when recieving physical damage. +Increases damage of Counter Slash by 50%. +-------------------------- +When equipped with Reversed The Lovers Card: +INT +3 +Ignores magical defense of all race by 25%. +Increases damage of Great Echo by 50%. +-------------------------- +When equipped with Reversed The Emperor Card: +LUK +3 +Reflects 5% of Melee Physical Damage. +Increases damage of Genesis Ray by 50%. +-------------------------- +When equipped with Reversed Strength Card: +AGI +3 +Recovers 200 HP when defeating monsters with physical attacks. +Increases damage of Ride in Lightning by 50%. +-------------------------- +When equipped with Reversed The Devil Card: +STR +3 +Recovers 2 SP when recieving damage. +Increases damage of Fatal Menace by 50%. +-------------------------- +When equipped with Reversed The Moon Card: +DEX +3 +Decreases Fixed Casting Time by 50%. +Increases damage of Varetyr Spear by 50%. +-------------------------- +When equipped with Reversed Wheel of Fortune Card: +AGI +2, VIT +2 +Recovers 1500 HP every 5 seconds. +Increases damage of Kunai Explosion by 50%. +-------------------------- +When equipped with Reversed World Card: +STR +2, LUK +2 +ATK +10% +Increases damage of Spirit of Savage by 50%. +# +29587# +When equipped with Speed of Light: +Increases Critical Damage by 30%. +# +29588# +When equipped with Bear's Power: +Increases Physical Damage against enemies of all size monsters by 25%. +# +29589# +When equipped with Hawk Eye: +ATK +10% +# +29590# +When equipped with Runaway Magic: +Increases damage of all elemental magic attacks by 15%. +# +29591# +When equipped with Muscle Fool: +Decreases After Skill Delay by 10%. +# +29592# +When equipped with Lucky Day: +ASPD +2 +# +29594# +For each 3 Refine Levels of Volar: +Increases damage of Bowling Bash by 10%. +Increases damage of Ignition Break by 5%. +-------------------------- +For each 3 Refine Levels of Vernan: +Increases damage of Spiral Pierce by 10%. +Increases damage of Sonic Wave by 5%. +-------------------------- +For each 3 Refine Levels of Argen Blanco: +Increases damage of Brandish Spear by 10%. +Increases damage of Hundred Spear by 5%. +# +29595# +For each 3 Refine Levels of Golden Wrench: +Increases damage of Power Swing by 7%. +Increases damage of Axe Boomerang by 5%. +-------------------------- +For each 3 Refine Levels of Engine Pilebunker: +Increases damage of Boost Knuckle by 7%. +Increases damage of Arms Cannon by 5%. +-------------------------- +For each 3 Refine Levels of Maxi Spanner: +Increases damage of Axe Tornado by 7%. +Decreases Physical and Magical Damage taken from all size monsters by 5%. +# +29596# +For each 5 Refine Levels of the total Refine Level of Judgement Slasher +Repent Slasher: +Increases damage of Meteor Assault and Soul Destroyer by 10% +Increases damage of Cross Impact and Counter Slash by 5%. +-------------------------- +For each 3 Refine Levels of Agudo Filo: +Decreases Dark Claw skill cooldown by 3 seconds. +Increases Attack Speed (Decreases After Attack Delay b 2%). +-------------------------- +For each 3 Refine Levels of Reaper Cross: +Increases damage of Rolling Cutter by 7%. +Increases damage of Cross Ripper Slasher by 5%. +# +29598# +For each 3 Refine Levels of Crimson Rose Stick: +Increases damage of Hell Inferno by 7%. +Increases damage of Crimson Rock by 5%. +-------------------------- +For each 3 Refine Levels of Staff of Miracle: +Increases damage of Soul Strike by 10%. +Increases damage of Napalm Vulcan 5%. +-------------------------- +For each 3 Refine Levels of Gravitation Staff: +Increases damage of Gravitational Field by 10%. +Increases damage of Drain Life by 5%. +# +29599# +For each 3 Refine Levels of Poenitentia: +Increases damage of Magnus Exorcismus by 10%. +Increases damage of Judex by 5%. +-------------------------- +For each 3 Refine Levels of Adorare Staff: +Increases Magical Damage with Holy element by 5%. +Increases damage of Adoramus by 5%. +-------------------------- +For each 3 Refine Levels of Lucis Flail: +Increases damage of Judex by 10%. +Increases damage of Duple Light by 5%. +# +29600# +For each 3 Refine Levels of Sharp Star: +Increases Critical Damage by 5%. +Increases damage of Sharp Shooting by 7%. +-------------------------- +For each 3 Refine Levels of Falken Shooter: +Decreases Arrow Storm SP Consumption by 2%. +Decreases Unlimit skill cooldown by 15 seconds. +-------------------------- +For each 3 Refine Levels of Aiming Bow: +Increases damage of Aimed Bolt 7%. +Decreases Aimed Bolt SP Consumption by 2%. +# +29601# +For each 3 Refine Levels of Farthezan: +Increases damage of Pressure by 10%. +Increases damage of Genesis Ray by 5%. +-------------------------- +For each 3 Refine Levels of Harve: +Increases damage of Shield Chain by 10%. +Increases damage of Shield Press by 5%. +-------------------------- +For each 3 Refine Levels of Fortridge: +Increases damage of Overbrand b 7%. +Increases damage of Cannon Spear by 5%. +# +29602# +For each 3 Refine Levels of Estal: +Increases damage of Spore Explosion by 7%. +Decreases Spore Explosion skill cooldown by 0.2 seconds. +-------------------------- +For each 3 Refine Levels of Coolant Injection: +Increases damage of Cart Cannon by 7%. +Increases Ranged Physical Damage by 2%. +-------------------------- +For each 3 Refine Levels of Gene Rod: +Increases damage of Crazy Weed 7%. +Decreases Crazy Weed skill cooldown by 0.2 seconds. +# +29603# +For each 3 Refine Levels of Jack the Knife: +Increases damage of Back Stab by 10%. +Increases damage of Fatal Menace by 5%. +-------------------------- +For each 3 Refine Levels of Platinum Dagger: +Increases Fire, Water, Magical Damage with Wind and Earth element by 5%. +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +For each 3 Refine Levels of Rapid Fire: +Increases damage of Triangle Shot by 7%. +Increases Ranged Physical Damage by 2%. +# +29604# +For each 3 Refine Levels of Boltijin: +Increases damage of Earth Spike by 10%. +Increases damage of Heaven's Drive by 7%. +-------------------------- +For each 3 Refine Levels of Psychic Spear Rod: +Increases damage of Psychic Wave by 7%. +Decreases Varetyr Spear skill cooldown by 0.2 seconds. +-------------------------- +For each 3 Refine Levels of Dust Grave: +Increases damage of Earth Grave by 7%. +Increases damage of Diamond Dust by 5%. +# +29605# +For each 3 Refine Levels of Raging Dragon Fist: +Increases damage of Chain Combo and Combo Finish by 10%. +Increases damage of Chain Crush Combo by 7%. +-------------------------- +For each 3 Refine Levels of Fighting God's Bandage: +Increases damage of Knuckle Arrow by 7%. +Increases Ranged Physical Damage by 2%. +-------------------------- +For each 3 Refine Levels of Bright Pendulum: +Increases damage of Finger Offensive and Investigate by 10%. +Increases damage of Lightning Ride and Sky Net Blow by 5%. +# +29606# +For each 3 Refine Levels of Wind Gale: +Decreases Severe Rainstorm SP Consumption by 3%. +Increases Ranged Physical Damage 2%. +-------------------------- +For each 3 Refine Levels of Heart Whip: +Increases Magical Damage with Neutral element by 5%. +Increases damage of Metallic Sound by 5%. +-------------------------- +For each 3 Refine Levels of Scarlet Ribbon: +Increases damage of Severe Rainstorm by 5%. +Increases Ranged Physical Damage by 2%. +# +29607# +For each 3 Refine Levels of Wind Gale: +Decreases Severe Rainstorm SP Consumption by 3%. +Increases Ranged Physical Damage 2%. +-------------------------- +For each 3 Refine Levels of Black Circle: +Increases Magical Damage with Neutral element by 5%. +Increases damage of Metallic Sound by 5%. +-------------------------- +For each 3 Refine Levels of Antique Cello: +Increases damage of Severe Rainstorm by 5%. +Increases Ranged Physical Damage by 2%. +# +29611# +For each Level of Divine Protection: +ATK +2 +# +29612# +Increases damage of Combo Finish by 15%. +# +29613# +Increases damage of Chain Crush Combo by 15%. +# +29614# +Increases damage of Diamond Dust by 15%. +-------------------------- +When equipped with Professor Stone II(Upper): +Increases damage of Diamond Dust by additional 10%. +-------------------------- +When equipped with Professor Stone II(Mid): +Increases damage of Earth Grave by 20%. +-------------------------- +When equipped with Professor Stone II(Lower): +Decreases Varetyr Spear skill cooldown by 1 second. +# +29615# +For each Level of Auto Spell: +MATK +2 +# +29616# +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by 20%. +# +29617# +Increases damage of Earth Spike and Heaven's Drive by 20%. +# +29618# +Increases damage of Fatal Menace by 15%. +-------------------------- +When equipped with Stalker Stone II(Upper): +Increases damage of Fatal Menace by additional 10%. +-------------------------- +When equipped with Stalker Stone II(Mid): +Decreases SP Consumption of Fatal Menace by 10%. +-------------------------- +When equipped with Stalker Stone II(Lower): +Physical attacks have a 1% chance to absorb 1% of the damage dealt as SP. +# +29619# +For each Level of Improve Dodge: +HIT +1 +# +29620# +Increases damage of Backstab by 15%. +# +29621# +For each Level of Snatcher: +ATK +2 +# +29651# +For each Level of Happy Break: +MATK +2 +# +29652# +Increases damage of Esma by 20%. +# +29653# +For each Level of Kaahi: +Decreases Variable Casting Time by 2%. +# +29654# +Increases damage of Eswhoo by 20%. +-------------------------- +When equipped with Soul Linker Stone(Upper): +Increases damage of Eshwoo by additional 20%. +-------------------------- +When equipped with Soul Linker Stone(Mid): +Increases damage of Espa by 20%. +-------------------------- +When equipped with Soul Linker Stone(Lower): +Decreases Fixed Casting Time by 0.5 seconds. +# +29655# +For each Level of Peaceful Break: +ATK +2 +# +29656# +Decreases Fixed Casting Time of Feeling of the Sun, Moon and Stars and Hatred of the Sun, Moon and Stars by 50%. +# +29657# +For each Level of Knowledge of the Sun, Moon and Stars: +Increases Attack Speed (Decreases After Attack Delay by 1%). +# +29658# +Increases damage of Falling Star, Solar Burst and Full Moon Kick by 20%. +-------------------------- +When equipped with Star Gladiator Stone(Upper): +Increases damage of Solar Burst by additional 15%. +-------------------------- +When equipped with Star Gladiator Stone(Mid): +Increases damage of Falling Star by additional 15%. +-------------------------- +When equipped with Star Gladiator Stone(Lower): +Physical attacks have a 2% chance to absorb 1% of the damage dealt as SP. +# +29659# +For each Level of Ninja Mastery: +ATK +2 +MATK +2 +# +29660# +Increases damage of Throw Huuma Shuriken by 20%. +# +29661# +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by 20%. +# +29662# +Increases damage of Swirling Petal by 25%. +-------------------------- +When equipped with Ninja Stone(Upper): +Increases damage of Cross Slash by 25%. +-------------------------- +When equipped with Ninja Stone(Mid): +Increases damage of Kunai Explosion by 25%. +-------------------------- +When equipped with Ninja Stone(Lower): +Physical attacks have a 1% chance to absorb 1% of the damage dealt as SP. +# +29663# +Increases damage of Flaming Petals by 20%. +-------------------------- +When equipped with Ninja Stone(Upper): +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by 30%. +-------------------------- +When equipped with Ninja Stone(Mid): +Increases damage of Freezing Spear and Wind Blade by 20%. +-------------------------- +When equipped with Ninja Stone(Lower): +Decreases Variable Casting Time by 15%. +# +29664# +For each Level of Snake Eyes: +ATK +2 +# +29665# +Increases damage of Desperado by 20%. +# +29666# +For every 2 Levels of Chain Action: +Increases Ranged Physical Damage by 1%. +# +29667# +Increases damage of Hammer of God and Round Trip by 20%. +-------------------------- +When equipped with Gunslinger Stone(Upper): +Increases damage of Round Trip by additional 15%. +-------------------------- +When equipped with Gunslinger Stone(Mid: +Increases damage of Hammer of God by additional 20%. +-------------------------- +When equipped with Gunslinger Stone(Lower): +Increases damage of Banishing Buster by 25%. +# +29668# +For each Level of Scratch: +MATK +7 +ATK +7 +# +29669# +Increases damage of Lunatic Carrot Beat by 20%. +# +29670# +Increases damage of Silvervine Stem Spear by 20%. +# +29671# +Increases damage of Picky Peck and Catnip Meteor by 20%. +-------------------------- +When equipped with Doram Stone(Upper): +Increases damage of Lunatic Carrot Beat and Silvervine Stem Spear by 20%. +-------------------------- +When equipped with Doram Stone(Mid): +Decreases Spirit of Savage skill cooldown by 1 second. +-------------------------- +When equipped with Doram Stone(Lower): +Decreases Catnip Meteor skill cooldown by 1 second. +# +29672# +For each 2 Refine Levels of the Temporal Circlet: +ATK +2 +HIT +3 +-------------------------- +For each 5 Refine Levels of the Temporal Circlet: +ATK +1% +# +29673# +For each 2 Refine Levels of the Temporal Circlet: +ATK +4 +HIT +5 +-------------------------- +For each 5 Refine Levels of the Temporal Circlet: +ATK +2% +# +29674# +For each 2 Refine Levels of the Temporal Circlet: +ATK +7 +HIT +7 +-------------------------- +For each 5 Refine Levels of the Temporal Circlet: +ATK +3% +# +29675# +For each 2 Refine Levels of the Temporal Circlet: +Increases Attack Speed (Decreases After Attack Delay by 1%). +FLEE +4 +-------------------------- +For each 5 Refine Levels of the Temporal Circlet: +ASPD +1 +# +29676# +For each 2 Refine Levels of the Temporal Circlet: +Increases Attack Speed (Decreases After Attack Delay by 3%). +FLEE +5 +-------------------------- +For each 5 Refine Levels of the Temporal Circlet: +ASPD +1 +# +29677# +For each 2 Refine Levels of the Temporal Circlet: +Increases Attack Speed (Decreases After Attack Delay by 5%). +FLEE +7 +-------------------------- +For each 5 Refine Levels of the Temporal Circlet: +ASPD +1 +# +29678# +For each 2 Refine Levels of the Temporal Circlet: +DEF +5 +MaxHP +200 +-------------------------- +For each 5 Refine Levels of the Temporal Circlet: +MaxHP +1% +# +29679# +For each 2 Refine Levels of the Temporal Circlet: +DEF +7 +MaxHP +300 +-------------------------- +For each 5 Refine Levels of the Temporal Circlet: +MaxHP +2% +# +29680# +For each 2 Refine Levels of the Temporal Circlet: +DEF +10 +MaxHP +500 +-------------------------- +For each 5 Refine Levels of the Temporal Circlet: +MaxHP +3% +# +29681# +For each 2 Refine Levels of the Temporal Circlet: +Increases Healing skills effectiveness by 1% +MATK +2 +-------------------------- +For each 5 Refine Levels of the Temporal Circlet: +MATK +1% +# +29682# +For each 2 Refine Levels of the Temporal Circlet: +Increases Healing skills effectiveness by 3% +MATK +4 +-------------------------- +For each 5 Refine Levels of the Temporal Circlet: +MATK +2% +# +29683# +For each 2 Refine Levels of the Temporal Circlet: +Increases Healing skills effectiveness by 5% +MATK +7 +-------------------------- +For each 5 Refine Levels of the Temporal Circlet: +MATK +3% +# +29684# +For each 2 Refine Levels of the Temporal Circlet: +Increases Bow class weapon damage by 1% +HIT +2 +-------------------------- +For each 5 Refine Levels of the Temporal Circlet: +ATK +1% +# +29685# +For each 2 Refine Levels of the Temporal Circlet: +Increases Bow class weapon damage by 2% +HIT +5 +-------------------------- +For each 5 Refine Levels of the Temporal Circlet: +ATK +2% +# +29686# +For each 2 Refine Levels of the Temporal Circlet: +Increases Bow class weapon damage by 3% +HIT +7 +-------------------------- +For each 5 Refine Levels of the Temporal Circlet: +ATK +3% +# +29687# +For each 2 Refine Levels of the Temporal Circlet: +Increases Critical Damage by 3% +Critical +1 +-------------------------- +For each 5 Refine Levels of the Temporal Circlet: +ATK +1% +# +29688# +For each 2 Refine Levels of the Temporal Circlet: +Increases Critical Damage by 6% +Critical +2 +-------------------------- +For each 5 Refine Levels of the Temporal Circlet: +ATK +2% +# +29689# +For each 2 Refine Levels of the Temporal Circlet: +Increases Critical Damage by 9% +Critical +3 +-------------------------- +For each 5 Refine Levels of the Temporal Circlet: +ATK +3% +# +29706# +Increases Melee Physical Damage by 4%. +Perfect HIT +1 +# +29707# +Increases Melee Physical Damage by 8%. +Perfect HIT +2 +# +29708# +Increases Melee Physical Damage by 12%. +Perfect HIT +3 +# +29709# +Increases Melee Physical Damage by 16%. +Perfect HIT +4 +# +29710# +Increases Melee Physical Damage by 20%. +Perfect HIT +5 +# +29711# +Increases Melee Physical Damage by 24%. +Perfect HIT +6 +# +29712# +Increases Melee Physical Damage by 28%. +Perfect HIT +7 +# +29713# +Increases Melee Physical Damage by 32%. +Perfect HIT +8 +# +29714# +Increases Melee Physical Damage by 36%. +Perfect HIT +9 +# +29715# +Increases Melee Physical Damage by 44%. +Perfect HIT +10 +# +31000# +Random chance to increase AGI by 44 when receiving physical damage. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +31001# +When compounded with Mace class weapon: +HIT -10 +Critical +10 +Increases Critical Damage by 10%. + +For each Refine Level: +HIT -1 +Critical +1 +Increases Critical Damage by 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +31002# +Increases damage of Lightning Bolt by 25%. +Decreases Variable Casting Time of Lightning Bolt by 25%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +31003# +Increases damage of Wind elemental magic attacks by 100%. +-------------------------- +Decreases damage taken from Wind elemental attacks by 50%. +-------------------------- +Prevents Fear status. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +31004# +MATK +30 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +31005# +When compounded with One-handed Sword or Two-Handed Sword class weapon: +ATK +100 +MATK +100 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +31006# +Decreases damage taken from Undead elemental by 10%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +31007# +Enchants armor with Undead elemental. +Decreases damage taken from Undead elemental by 10%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +31008# +Restores HP every 10 seconds. +Additional HP restored based on Base Level. +-------------------------- +Refine Level +7: +For each 60 base STR: +ATK +6 +MaxHP +1% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +31009# +Restores HP every 10 seconds. +Additional HP restored based on Base Level. +-------------------------- +Refine Level +7: +For each 20 base STR: +ATK +6 +MaxHP +1% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +31010# +For each 6 Base Level: +Restores 1 SP every 10 second. +-------------------------- +Refine Level +7: +For each 30 base INT: +MATK +6 +MaxSP +1% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +31011# +For each 2 Base Level: +Restores 1 SP every 10 seconds. +-------------------------- +Refine Level +7: +For each 10 base INT: +MATK +6 +MaxSP +1% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +31012# +Increases damage of Dragon Breath and Dragon Breath - Water by 5%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +31013# +Increases damage of Dragon Breath and Dragon Breath - Water by 15%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by 3%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +31014# +MDEF +7 +MaxHP +6% +-------------------------- +Refine Level +7: +Increases damage of Gravitational Field by 9%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +31015# +MDEF +10 +MaxHP +10% +-------------------------- +Refine Level +7: +Increases damage of Gravitational Field by 769%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +31016# +MaxHP +1000 +MaxSP +150 +FLEE -25 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +31017# +ATK +1% +MATK +1% +MaxHP -2% +-------------------------- +For each 2 Refine Levels: +ATK +1% +MATK +1% +MaxHP -2% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +31018# +MaxHP -1225 +Random chance to inflict Curse on the target when dealing magical damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +31019# +MaxHP -13% +Random chance to inflict Curse on attacker when receiving magical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +31020# +MaxHP -13% +Random chance to inflict Curse on attacker when receiving physical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +31021# +ATK -3% +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +31022# +MaxSP +20% +Random chance to inflict Curse on wearer when dealing Physical and Magical Damage. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +31023# +MATK +10% +Random chance to auto-cast Level 3 Critical Wound to all enemies when dealing magical damage. +-------------------------- +For each 3 Refine Levels: +Increases the trigger rate. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +31024# +ATK +10% +Random chance to auto-cast Level 5 Ignition Break when dealing physical damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +31025# +MATK +10% +Random chance to auto-cast Level 5 Killing Cloud when dealing magical damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +31026# +Random chance to increase FLEE by 200 for 10 second when dealing physical damage. +Random chance to increase movement speed for 10 second when dealing magical damage. +Random chance to auto-cast Level 5 Fire Walk when receiving physical damage. +Random chance to auto-cast Level 5 Electric Walk when receiving magical damage. +-------------------------- +When equipped with Immortal Cursed Knight Card: +ASPD +1 +-------------------------- +When equipped with Immortal Wind Ghost Card: +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +31027# +Ear-shaped ornaments that decorate the character you wear. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 19. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31028# +A super cute black hood adorned with soft and fluffy cat ears. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31029# +A mask that modeled after the nose of Savage babe monster. It's suitable combination for various kind of hats. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 11. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31030# +A costume mask that helps to give self-implication to gain the strength of a tiger. +\ +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +31031# +A doll that resemble casual figure of pope of arunafeltz. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 13. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31032# +Costumes that imitate a puppet with a motif of Rumin, the twin brother of the Pope of Arunafeltz. +It seems that the owner of an ice cave wants so much that he can get out of his throat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31033# +A face mask that wore by believer of god Hvar. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 13. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +31034# +A hood for a costume that contains the symbols of pirates. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31035# +A cursed outfit hair band that contains the grudges of a merchant who lost everything and went bankrupt. +The person who wears it can feel the heart of the person who lost the money, and it feels like the whole body is wrapped in sadness and falls into the edge of despair, but he can recover again. A mysterious hair band in which the ability of the wearer is amplified by fighting spirit. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31036# +A hat worn by officials who were called 'Sato' in the ancient East. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31037# +It's a pale green costume hat, and it's cool that it's a little slanted. +It was a symbol of a famous unit. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31038# +Bandana for fashionable outfits designed with two types of red checks. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31039# +A red crown for costumes that imitates the crown that is a symbol of the greatness of the old King Groza. +Since it is used for ceremonies, it has no special effect, but it is said that those who wear a crown will walk the way to glorious glory. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31040# +Everyone in front of Prontera TV! +Yat Holly Wright! +I was doing a normal, good-natured acorite!..., but one day, a magical priest suddenly appeared in front of me and threw a magical feather with magical powers... +Since then, he has been a magical actor who fights against the evil Black Foringan... +Every day is difficult, but it is magical today too! +Then, let's start with Magical Accorrite +I feel like someone is talking in my head. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31041# +A hairband decorated with a cute kitten doll. The lace makes it even cuter! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31042# +Equipment for headdress costumes used by practitioners. +It seems that the power to draw out powerful magical power is hidden. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31043# +A ribbon for a costume tied in the shape of a beautiful butterfly. +Please note that this is mainly for women to decorate their hair and may be misleading for men. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31044# +A stuffed toy that you can put on your head and walk. +When I hear the cat crying somewhere, I feel like I was moving above my head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31045# +Rear ribbon for costumes based on blue. +Designed to look good on both short and long hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31046# +A cute tiara for costumes. +The pure white rose decoration makes the wedding dress more gorgeous. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31047# +A cheek for cherry blossoms that is lighter than the usual blusher. +You can produce cheeks like a first love maiden. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31048# +A hair ornament for Shirayuri's costume, which means \ +. +It has a black ribbon on it and makes you want to wear it in a dark color. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31049# +A costume hat designed by combining a corolla and Merlin. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31050# +A costume hat designed by combining a corolla and a Poring of gold. +-------------------------- +ATK+5 Matk+5 +Exp+10% Drop+5% +-------------------------- +Expiration date 31-01-2025 +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31051# +A sun visor for costumes with a Poring decoration. +An item you'll definitely want to wear as a mid-summer sun protection measure. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31052# +A protective mask worn by an alchemist to avoid inhaling toxic substances when making potions. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31053# +A hat for clothes with the motif of Edga, the King of Beasts, who wears a hat and smokes a smoke pipe. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31054# +A sting-shaped costume hat created by a first-class hat craftsman. +The soul of the craftsman has stayed in, and it is about to start moving. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31055# +A young jack's favourite pipe. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31056# +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31057# +A scarf which once belonged to an old hero. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31058# +A hat that looks like cool and chewy gelato. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31059# +A hat that is popular with people who work in the harbor. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31060# +A headband modeled after a starfish inhabited by the sea. When worn, it feels mysterious to interact with the Great Sea. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31061# +Hairpin +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31062# +A wig modeled after the hair of homunculus Eleanor. It has cute ears that will move when the wearer walk. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31063# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +Twin dang hair with rounded hair. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31064# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +Twin dang hair with rounded hair. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31065# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +Twin dang hair with rounded hair. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31066# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +Twin dang hair with rounded hair. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31067# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +Twin dang hair with rounded hair. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31068# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +Twin dang hair with rounded hair. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31069# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +Twin dang hair with rounded hair. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31070# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +Twin dang hair with rounded hair. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31071# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +Twin roll hair with curled vertically. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31072# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +Twin roll hair with curled vertically. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31073# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +Twin roll hair with curled vertically. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31074# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +Twin roll hair with curled vertically. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31075# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +Twin roll hair with curled vertically. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31076# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +Twin roll hair with curled vertically. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31077# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +Twin roll hair with curled vertically. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31078# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +Twin roll hair with curled vertically. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31079# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +A super long ponytail raised up to the waist length. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31080# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +A super long ponytail raised up to the waist length. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31081# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +A super long ponytail raised up to the waist length. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31082# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +A super long ponytail raised up to the waist length. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31083# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +A super long ponytail raised up to the waist length. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31084# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +A super long ponytail raised up to the waist length. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31085# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +A super long ponytail raised up to the waist length. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31086# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +A super long ponytail raised up to the waist length. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31087# +A replica of Dwarf's beard. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box10. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31088# +A fantastic hat created by craftman who lives somewhere in Umbala. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box10. +-------------------------- +Type: Costume +Position: Upper, Lower +Weight: 0 +-------------------------- +Requirement: None +# +31089# +It is time to demonstrate your true power! +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31090# +An angeling hat that wants to fly, but may contain the heartbreaking heart of angeling that cannot fly. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31091# +Randomly gains a certain amount of Zenyeach time a monster is killed. +Created to celebrate the launch of Ragnarok Clicker! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31092# +Gothic style bunny hat. Elegant and cute stylish hat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31093# +A lamp that shines brightly in front of you at night. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31094# +A dice for a costume worn on the head. +It seems that the power of magic can change the outcome. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31095# +A colaboration headdress of ECOxRO. It's resembles the horns of great demon Baphomet. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31096# +A colaboration headdress of ECOxRO. It's imitate the dog ears of Bau Alma. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31097# +A colaboration headdress of ECOxRO. It's imitate the bunny Ears of Minnie Doe Alma. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31098# +A colaboration headdress of ECOxRO. It's imitate the fox ears of Tamamo Loa. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31099# +A colaboration headdress of ECOxRO. It's imitate the headdress of Ontama Aria. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31100# +A colaboration headdress of ECOxRO. It's imitate the hat of Dumpty Alma. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31101# +A colaboration headdress of ECOxRO. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31102# +A colaboration headdress of ECOxRO. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31103# +A colaboration headdress of ECOxRO. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31104# +A colaboration headdress of ECOxRO. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31105# +Rental Item +A very rare limited celebration hat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31106# +An eyepatch created by legendary blacksmith. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31107# +An eyepatch created by legendary blacksmith. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31113# +A headband worn by doctor to examine his patient. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31114# +A property of theater. Used by putting this on top of dying actor's head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31117# +A Helm used in ancient western country that was famous for close formation and tight defense. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +31118# +A mask wore by assassin organization. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +31119# +Talented Wizard's magic hat. It looks weird, but works just fine. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31120# +A costume the makes you look like a vampire. Perfect for halloween event. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31121# +A costume with wings of bat attached on it. Perfect for halloween event. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31122# +Tight bandages for wounds of the eyes. It seems that they were already used. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31123# +A cute tall hat with ghostring motif. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31124# +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31125# +A big hat of legendary pirate. It's always stained in blood. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box11. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31126# +-------------------------- +Dance above the lid of the lemon tea drink bottle. It feels cool and refreshing. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31127# +A hat made to celebrate the National Day. +The soul of Taiwan! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31128# +A mask of white face used by a person who plays the role of'Gaksi' in a play. The redness of the ball is cute. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31129# +A strangely shaped costume mask. +It looks like he is suffering. +It seems to be used to surprise people with a bad taste. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +31130# +A hat that usually worn by Indian people. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31131# +A ceremonial hat worn by monks that contains a sacred force which offers protection from evil. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31132# +A wreath made from sprigs of holly. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31133# +Joker Symbols. The Legendary Gambler. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31134# +A clever bird which immitates human voice. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box12. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31135# +A small costume crown with gorgeous decoration. +The design is designed to maintain dignity while not forgetting its cuteness. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31136# +A special hat made with the theme of the Aldebaran clock tower. +The clockwork decoration is particularly attractive. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box12. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31137# +Blue rose decoration decorated with bluebird wings. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31138# +Hood made with the motif of the Piamet hood. +The color of the existing hood was changed. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31139# +White rabbit ears. +For some reason it seems very soft. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 16. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31140# +A cowboy hat. It makes men look manlier and is cute when worn by women. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31141# +A costume made of cactus flower. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31142# +When equipped it will makes wearer trapped in time. +-------------------------- +Since it is an equipped effect, it still will be displayed even when the effect (/effect) is turned off. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31143# +Costume equipment originated from the custom of a country to send bad things to the water and wish for good luck. +Instead of spilling a lotus flower back into the water, I put it on my head. Beware of fire! +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 22. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31144# +Splendid hair accessory made of feathers of birds. Worn by women of a certain tribe. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31145# +A figurine doll that resemble maid from A-larm House 69. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31146# +A hair ornament for costumes that imitates the ear of a Lapine tribe. +I feel that it contains the magical powers of the Lapines. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31147# +A doll that resemble domovoi. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31148# +So hot! A headgear with the figure of Kafra W! +There is a rumor that an assassin association wants to scout her, because there are so many guys who become frightened and faint when she calls them. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31149# +A wig that imitate the hair of yggdrasil guardian, Nydhoggur. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31150# +A headdress for the costume of the same design as the headdress of the third apostle Shalosh, made by the devil Morocc. +Gothic design with a crimson ribbon and skeleton decoration. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31151# +Cat ears for costumes that imitate the ears of Cheshire, a faithful subordinate of the Safa minister Achat. +Very soft and long fluffy texture. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31152# +A replica of Piamette's Red Bow Tie. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31153# +A mini silk hat created to celebrate thief world anniversary II. +Small and adorable compared to the original top hat. +If you wear this, you will be transformed into a cute thief! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31154# +A hat with ordinary design. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31155# +And around and around they go! +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31157# +When the dead say that they are going to heaven, there is no ability to say that they are invisible to wear with a hat made after the ring that floats on their head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31158# +An adorable squirrel ear shaped hat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31160# +This mysterious helm can Increases the power of rune stones. +-------------------------- +Increases experience gained from defeating all monsters by 3% +Increases drop rate gained from defeating all monsters by 3% +Expiration date 29-04-2024 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31161# +A mask rumored to make its wearer ferociously aggressive. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +31162# +Foam that makes the razor slippery. Because it slips too well, it is very dangerous to step on a bubble that falls on the ground. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 12. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31163# +An adorable sheep hat. It's so cute that you will feel sorry if you hit someone who's wearing it. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31164# +A nice warm brown stole that is perfect for the Winter weather. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31165# +A cute young novice who asked you to piggyback him. +-------------------------- +> Limited Effect < +Exp + 3% Drop + 3% +Fixcasttime - 0.3 sec +Expiration date 25-12-2023 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31166# +A hat made to look like a teddy bear's face. It feels so fluffy. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31167# +Droopy Lunatic Ears that have been cutely garnished with clover flower bouquets. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31168# +A blue hairband made with lamb's wool and horn. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31169# +A costume inspired by hat created by Brazilis artist. +-------------------------- +When equipped with Costume Santa's Beard: +Random chance to transform wearer into Sock Smokie. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31170# +A wing-shaped ornament that bearing the power of wind. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31171# +A cute cat-looking hat which enhances its wearer's look. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31172# +A strange looking rooster hat. +Let's all celebrate the year of Rooster by wearing this hat! +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +31173# +A doll for costume made to imitate a parakeet whose both cheeks are colored orange. +It is called a parakeet, but in reality, it seems to be a member of the parrot... +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31174# +A paper bag for clothes that was created during the process of making bread bags. +It creates an unpleasant atmosphere because you can see it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31175# +A hat for clothes that is said to have been made by a hat shop that loves strawberries. +There is a faint sweet smell. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31176# +Every move you make.. always watching. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31177# +A hat inspired by the beautiful color palette and elegant look of a simple koi. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31178# +Muffler made from the feathers of KASA. +Be cautious! It's very hot! +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31179# +A mask shaped like a noble wolf. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31180# +A headband that only the strongest sura were thought to wear. It truly leaves in impact. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 14. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31181# +A sacred rosary. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31182# +A hat for costumes worn by the northern cavalry people. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31183# +Made for costumes by modeling the wings that were said to have fallen off when the angel who once ruled part of heaven was exiled to the demon world. +When worn, it seems to have a strong hatred for angels. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31184# +An eye patch for a costume that is said to have been enchanted to enhance concentration. +The field of view is narrowed, but it may be as sharp as a hawk's eye. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31185# +An old cap worn by an engineer. You can see the master engineer's eye through the hole of the worn-out cap. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31186# +This black cat took a liking to you and now it won't leave you alone. Aren't you lucky! +-------------------------- +Collection Effect +Increase physical damage against enemies of all type by 1% +MATK +1% +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31187# +A large gothic styled ribbon. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31188# +A gothic styled bonnet. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31189# +A pretty and fluffy red colored cape. A fashionable costume winter weather. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31190# +A cute mini gothic styled hat with pretty feathers. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31191# +A super cute kitten ears! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31192# +A super cute kitten ears! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31193# +A doll that resemble the minister of El Dicastes. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31194# +Wear it on your head. The propeller for the costume is modified so that it can be rotated. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31195# +Sweet chocolate decorated cutey hat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31196# +A costume hat with the \ + motif. +It may or may not have the skill to spin a different world through music. +-------------------------- +The following effects are effective only when used in a town: +-------------------------- +Transforms you into Chunism Case. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31197# +A high class hat decorated with fragile egg shells. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31198# +Wear this octopus wearing a hat as a hat. Is it just me, or does it seem to be mocking you? +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31199# +A beard so weird, you might be feared. With this beard, you're rightly geared. To look so dandy, fine, revered. All because this beard appeared. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31200# +Make your presence a present with this giant and lovely wrapping ribbon. Watch it flow dramatically behind you as you run! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31201# +A cute little crown with big rabbit ears on either side. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31202# +Life is ruff for a pawfficer of the law, but times never get bark for those with dogged determinat. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31203# +For all those times you ever wanted to have a grill for a head. Since it's for decorative purposes only, it does not actually cook anything. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31204# +A mysterious cat hat whose facial expressions change according to your mood. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31205# +True Orc Hero Helmet. But it's so big that I'm going to hurt my neck if I do it wrong. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31206# +A headband embroidered with runes of gold thread. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31207# +A mask that resembles a fearsome monster who once had a secret group of followers. Some say he still does... +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +31208# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31209# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31210# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31211# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31212# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31213# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31214# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31215# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31216# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31217# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31218# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31219# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31220# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31221# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31222# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31223# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31224# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31225# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31226# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31227# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31228# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31229# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31230# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31231# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31232# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31233# +You will feel and look brand new once you attach this to your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31234# +A hair accessory decorated with a spray of peach blossoms. It smells very sweet and reminds you of Springtime. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31235# +A muffler for a large outfit with a bow tie. +The neck becomes so warm that I can't let it go on a cold day. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31236# +A costume that imitates the aura that floats around the mental body lurking in the Institute of Biotechnology. +It seems that the repeated movements of the thoughts endlessly gather and become an aura, and they are clinging to the thought body. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31237# +A pale yellow costume ribbon that is transparent like silk. +The length of the ribbon is very long and I feel a mysterious atmosphere. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31238# +A beautifully dressed veil worn by a bride who swore true love. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31239# +A hood for costumes made by a famous doll craftsman who loves rabbits with a heartfelt heart. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31240# +Costume mask made to imitate Whisper. +It's like packing with Whisper. +The beauty effect is unknown... +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31241# +A small sun that shines with you. +If you enclose imitation and high, it may be difficult to meet. +Costume equipment that is said to look bad to the eyes when viewed properly. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31242# +A costume hat in the shape of the head of Anubis, the god of the dead. +It seems to belong to the priests called Stum who manufacture mummies. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31243# +A mask for costumes that imitates the funny look of a child with his tongue sticking out. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31244# +A helmet for costumes that is marked with the emblem of the Republic of Black Forest. +Some enthusiasts like to be fashionable regardless of battle. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31245# +A small headdress made of flowers that represent spring. +I added the lightness by attaching drops! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31246# +A bird with the power to reflect magic spells. Sometimes the bird fails to cast the correct spells. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31247# +A creature which spend most of its day under water. If you dive in to the water wearing this hat, they might mistake you for a real hippo! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31248# +The red hat of Isabella which is really popular among small children. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31249# +A cute hat with long ears hanging off it! +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31250# +The fluffy ears of an unidentified beast that are constantly shifting. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31251# +A wonderful accessory which imitates the nose and mouth of a cat. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31252# +A hat with attached white cat ears. If you want to wear a hat and cat ears, this is the perfect design for you. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31253# +Costume helmet made as a symbol of strength. +I'm afraid I've gained unreasonable power, but it may be in the sun. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31254# +Outfitting equipment made to imitate the head of a creature called a horse. +The motif is the legendary red horse that was said to run Senri all day long. +I feel like I can play the leading role when I wear it completely, but it's because I'm a horse in the end. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +31255# +A cute helmet shaped like a melon. A sweet touch is made by the craftsmen who matched the texture of the shell. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31256# +The mask of a jaguar. Some say you will be blessed by nature once you wear it. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +31258# +Perfect skin can be yours with this glowing white blush. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31259# +Headband with an arc angeling model attached. +The water droplets floating around are making it attractive. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31260# +A device for clothes that is worn to cover one eye. +It should have been developed for observing something, but it is unknown what to observe. +It seems that it often breaks down when something unexpected happens. +However, it will not explode, so let's equip it with confidence. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31261# +Cool and refreshing soda. Good friend of popcorn. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31262# +Rental Item +Disposable 3D glasses that are rented out during the Popcorn Festival to enjoy the festival. +Rental period is 1 day. If you wear a disposable popcorn hat and a biting soda in your mouth, it makes you feel very excited. +-------------------------- +Increases experience from defeating monsters by 10%. +-------------------------- +When equipped with Costume Soda in Mouth and Costume Disposable Popcorn Hat: +Increases damage inflicted to event monsters during the event by 50%. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31263# +Rental Item +A disposable popcorn hat that can be rented during the popcorn festival to enjoy the festival. Rental period is 1 day. Wearing disposable 3D glasses and soda biting in the mouth of your outfit is very exciting. +-------------------------- +All Status +5 +200% increase in resilience of savory butter popcorn when worn with Costume Disposable 3D Glasses and Costume Soda in Mouth. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31264# +Hair ornament for costumes that imitates the wings of the protector. +If you equip it, you may wake up to angelic charity...? +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31265# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A ponytail that extends straight from a high position. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31266# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A ponytail that extends straight from a high position. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31267# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A ponytail that extends straight from a high position. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31268# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A ponytail that extends straight from a high position. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31269# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A ponytail that extends straight from a high position. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31270# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A ponytail that extends straight from a high position. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31271# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A ponytail that extends straight from a high position. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31272# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A ponytail that extends straight from a high position. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31273# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A ponytail that extends straight from a high position. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31274# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +Charming habit hair that popped out of my head. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31275# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +Charming habit hair that popped out of my head. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31276# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +Charming habit hair that popped out of my head. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31277# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +Charming habit hair that popped out of my head. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31278# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +Charming habit hair that popped out of my head. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31279# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +Charming habit hair that popped out of my head. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31280# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +Charming habit hair that popped out of my head. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31281# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +Twin tails with soft waving. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31282# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +Twin tails with soft waving. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31283# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +Twin tails with soft waving. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31284# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +Twin tails with soft waving. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31285# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +Twin tails with soft waving. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31286# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +Twin tails with soft waving. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31287# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +Twin tails with soft waving. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31288# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +Twin tails with soft waving. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31289# +Hair ornament for the black wing costume imitating the protector's wing. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31290# +You can feel the breath of a noble angel. A costume hat with angel wings. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31291# +You can feel the emptiness of the devil. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31293# +An imitation of Ancient King's Crown. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31294# +An imitation of Jirant's Circlet. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31295# +A red driver's hat decorated with white wings. +-------------------------- +EXP +3% +DROP 3% +Expiration date 31-01-2024 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31296# +The sweet and delicious strawberry in the mouth. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31297# +The three red fruits refer to me, my family, and people in my neighborhood, and the branches that are grouped together represent that everyone is one and forms a society. +A hairpin for a red fruit outfit with the true meaning of love. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31298# +A hat that is provided only for members of the Eden Group. It's designed to go well with a suit. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31299# +This white rabbit took a liking to you and now it won't leave you alone. Aren't you lucky! +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31300# +A soft and fluffy scarf that radiates warmth, making it irresistible to cuddle during the winter. +The adorable tail that wiggles with every step adds a charming touch. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31301# +The world we live in... one where you must pay to blink! +-------------------------- +effect Bonus +All stat +5, Exp/Drop rate +5% +-------------------------- +(19/12/2025 – 15/1/2026 Before MA.) +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31302# +A pair of very long, silky and dark ribbons. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31303# +A forbidden ramen found in the ruin of Juperos. Those who wish to know the receipt will be doomed. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31304# +A fan that is essential in a hot summer. It can be used in a variety of ways, such as when you need wind, when you block intense sunlight, and so on. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31306# +A doll for costume made to imitate a bird with a large beak. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31307# +A doll for costume made to imitate a parakeet whose whole body is dyed in light blue. +It is said that the body of the bird, called the parakeet, is the largest. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31308# +A headdress for costumes that depicts the protection of an iron wall protecting the back of the head firmly with a shield-like decoration. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31309# +A marching hat for clothes that is dyed in pure white. +Since it is a replica, it cannot use the mental strength of the user as a weapon. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31310# +Costume decorations imitating the devil's long ears. +I feel like I might have a strong magical power just by imitating my figure. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31311# +A mask for the costume worn by the sadness of Tanatos. +A charming design. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +31312# +A costume helmet that is said to have been made as a symbol of the leader of the underworld. +There is an atmosphere that does not seem like this world. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31313# +A costume made of the wings of an angel soaking in the inertia. +It is said that the source of the rumor that it was made from the wings of an angel has not been revealed. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31314# +Costume horns decorated with cute flowers and ribbons. +Designed to decorate the horns that yoma who want to go out are proud of. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 15. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31315# +Costume stall with big angel wings. +Just by wearing it, you can experience the feeling of becoming a divine angel. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31316# +A costume equipment, which is made by shiny butterflies. +The delivery of beautiful butterflies will surely lead to a fantastic world. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31317# +Costume decoration made in the year of the 15th anniversary of Ragnarok Online. +Tsubasa's wings have a huge impact in the image of his flapping into an adventure that never ends. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31318# +Inflate the body, intimidate the enemy! This Deviruchi balloon is so sinister, yet so cute! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31319# +Rental Item +A fan that can be rented for a certain period of time during the July Noodle Festival. +-------------------------- +Increased Attack Speed (Decreases After Attack Delay by 5%) and decreases Variable Casting Time by 5% during the event. +-------------------------- +When equipped with Costume Pinwheel Hat: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31320# +Rental Item +A headband that can be rented for a certain period of time during the July Noodle Festival. These headbands, decorated with pinwheels, make the wearer cool. +-------------------------- +ASPD+ 1 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%) and Decreases Variable Casting Time by 5%. +Increases Damage against monsters of Fish race by 10%. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31321# +It was created by accidentally applying fluorescent paint to the sunflowers for costumes. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31322# +A candy-looking hat that looks delicious. It is not known whether it is edible. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31323# +Hunting cap for costume made from yellow fabric. +The accent is red embroidery. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31324# +Cute DJ Headphones. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31325# +Fantastic helm fashioned after the head of the Queen Scaraba. +-------------------------- +Type: Costume +Position: Upper, Lower +Weight: 0 +-------------------------- +Requirement: None +# +31326# +A Baphomet style costume made for special occasions. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31327# +The nose of a wood goblin. It can smell special types of plants. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31328# +A costume hat that looks like a Faceworm egg shell. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31329# +Costume wig made based on Alice's hairstyle. +It is said that a great effort was required to create this wig. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 14. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31330# +With jet black wings and blood red coloring, this costume is sure to cut a sharp impression. +-------------------------- +Collection Effect +Allstats +1 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31331# +A replica shinyon cap worn by Chung e. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31332# +A costume based on Khalitzburg Knight's helm. +It is said that the Knights of Khalitzburg are all women and in the past they were defending the Glastheim with Heinrich. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 14. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31368# +A hat made in honor of the harvest festival. Every time I see a burning flame, I am grateful for the good growth of grains over the course of the year, and I wish for a good harvest next year. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31369# +If you attach it to your hair, you can feel the hair style that is always different from the costume hair. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31370# +If you attach it to your hair, you can feel the hair style that is always different from the costume hair. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31371# +So hot! A headgear with the figure of Kafra Sorin! Her cute appearance made the price of this hat rise at the auction place. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31372# +A hat for costumes that faithfully reproduces the appearance of Kafra Maid. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31373# +A costume crown that imitates the crown that symbolizes the greatness of the ancient King Groza. +It has a special effect because it is used for ceremonies, but it is said that those wearing a crown will walk the way to glorious glory. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31374# +An amazing gum outfit that can blow off drowsiness with the sound and vibration of an explosion. +Do not give it to children as it is dangerous. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31375# +Costume made in the image of a pretty fairy's eye. +Contrary to the creator's intention, the eyes shine a mysterious light. +Those who are stared seem to be disturbed. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31376# +A purple crown for costumes that imitates Gilant's crown that symbolizes fear and craft. +Only those who have defeated fear and craft are allowed to wear this crown. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31377# +A bat that has lived in Glast Heim for a very long time, observing all the events that have taken place. +It doesn't often reveal itself to humans. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31378# +A hat celebrating the 60th descendant of the Von Brad family. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31379# +A key designed to wind up a clock or a toy. It would seem people have seen fit to put it on their head instead. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31380# +A crow which won't stop talking all day long. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31381# +A collar wore by king of darkness. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31382# +A big cat hands hanging beside your head. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31383# +An unusual model for a wig. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31384# +Showing your ears is a new trend now. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31385# +A big ribbon with a king of pumpkin on top of it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31387# +A little body of Jakk. +Because lack of nutrients, it makes imposible for Jakk to move. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31388# +A large hat with a decoration as colorful as it's name. +The point of the tip of the hat that popped out with both ends. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31389# +A pink rose decorated with feathers of white birds. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31390# +This hat is made with spirit of people's hope for a place which doesn't snow during winter. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31391# +A stone of a wealthy sage. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31392# +A hat designed to receive electric waves through its small antennas. It sometimes even receives electric waves from outer space. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31393# +A weapon of the wind god Rudra that symbolizes indestructibility and irresistible force. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31394# +A must-have hat for all great wizards. It looks a bit weird but will make you look super fresh. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31395# +A book that embodies the magic of a four-property, hovering around the wearer. +You can feel like you're an archmage. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31396# +A hood for costumes indispensable to the mysterious Magician. +A dark atmosphere comes from the blurry crystal. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 13. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31397# +A doll made based of Arunafelt Pope in casual clothes. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 13. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31398# +Eyes flicker when worn. +'Why doesn't it blink normally?' Let's do not know the question. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31399# +A dark, mysterious veil adorned with glistening jewels. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31400# +Thin fabric for narrow outfits. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31401# +A tight-fitting cap worn under a veil, usually worn by nuns. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +31402# +A hat for costumes with the motif of that Goddess Idun had. +It is made of fresh yellow-green fruits, golden leaves and gold ribbons. +Note - It cannot be eaten. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31403# +A placemark for costumes that was developed to make it easier to see where people are going to be the walls during a battle. +It does not mean the appearance. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31404# +Traffic lights made of Drops, Poporing, and Poring +Traffic lights turn on and off according to the character's movement. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 21. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31405# +A costume wig modeled after Homunculus Elena's hairstyle. +In order to maximize the cuteness of Elenoa, an ear movement function has been added. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31406# +A wig modeled after Nydhoggur's hair. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31407# +A peach-colored wig modeled after Alice's hairstyle. +It is said that great efforts have been made to shape Alice's neat and clean hair. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31408# +Celebrating the release of Ragnarok Rush with these majestic goat horns that represents great deeds. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31409# +A bucket-shaped helmet for large costumes. +Since it is a helmet that covers the entire head, it is quite sturdy unlike a normal helmet, but it is said that due to its narrow field of view, it was difficult to handle and only skilled Holy Knights were allowed to wear it. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +31410# +A legendary helmet that was infused with life by the hand of god. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31411# +A costume helmet that bears the name of Leo as embodied in the constellation around the ecliptic. +It is said that it exerts its true power when it shines in the shine of a star. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31412# +A helmet for a costume that bears the name of Valgo as embodied in the constellation around the ecliptic. +It is said that it exerts its true power when it shines in the shine of a star. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31413# +A costume helmet that bears the name of Taurus as embodied in the constellation around the ecliptic. +It is said that it exerts its true power when it shines in the shine of a star. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31414# +A costume helmet that bears the name of a cancer like the constellation around the ecliptic. +It is said that it exerts its true power when it shines in the shine of a star. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31415# +A rustic hat made of bamboo that was worn by a heroic wandering adventurer. It shadows your eyes with its wide brim. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 14. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +31416# +A beautiful coronet decorated with seraphim feathers. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31417# +For costumes that imitate rice balls +hat. Using abundant carefully selected materials, this is a dish that each skilled rice ball craftsman carefully holds. +But unfortunately I can't eat it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31418# +A leek for clothes that can be added to your mouth. +It seems that you can prevent a cold just by holding it because the ingredients extracted from leek are kneaded. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31420# +This poring shines as bright as any star! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31426# +Costume equipment with a gentle Merlin swaying fluffy and dignified. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31427# +Equipment for costumes where the poring decorated with ribbon is fluffy and gently swaying. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31430# +A traditional costume hat that can be worn during festivals in a region. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31431# +A costume hat with the motif of Kurupira, the guardian of forests and animals, which scares hunters who neglect the forests. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31432# +Floating ice directly extracted from the Ice Cave. It has a connection to a mysterious seal inside of the cave. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31433# +The universe on top of your head. You can now even enjoy astronomical observations on cloudy days. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31434# +A small stormy rain cloud that follows you everywhere. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31435# +A knit hat that is said to have been used by a magician who worshiped the dead. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31436# +A cute kitty doll which can be worn on top of the head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31437# +A baby penguin doll which looks exactly like a real baby penguin. It's just like living with a baby penguin. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31438# +A fluffy pink cape with angel wings attached. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31439# +Adorable heart-shaped earmuffs, perfect for the winter season! +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31440# +A fluffy snow bear hood with a blue trim. Great for winter! +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31441# +A wonderfully made cap with a cool penguin design. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31442# +A mask for costumes that makes you smile. +If you wear such a mask, you will not know what kind of expression you have on the back of the mask. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31443# +Costume hat worn by the monster \ +. +It seems that a big hat has bills and pigtails. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31444# +A costume hat worn by the monster \ +. +The point is the bill that was broken half of the previous one. +It's very sturdy and doesn't seem to narrow the field of view due to the torn bills. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31446# +It is not known what exactly is contained within this syringe. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31447# +A hat which is sealed with the executors wing. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31448# +A luxurious ribbon made with soft silk. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31449# +An eye patch that uses an elegant blue rose to cover the eye. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31450# +Stylish Wig. A hair extension that looks like a lolita two side up. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31451# +A big blue frilly ribbon. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31452# +A white cat that loves to stay close to its owner. +Whether you're sitting, lying down, or standing, it will always be by your side. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31453# +A big ribbon muffler you can wear around your neck. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31454# +My heart is pounding with love. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31455# +A helm made with secret ingredients from doggo. It's made with soft and warm fur to give it a cute look. It can't get cuter than this. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +31456# +A cute outfit in the image of a wild cat holding and hugging. +Made by a designer called Bichka. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31457# +A new spiritual hat with the motif of the Zodiac God. +If you wear it and become a Zodiac God, you may have the benefit of fulfilling your wish for a disease-free disaster. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31459# +The ambitious work of the Sweets Festival Progress Committee. +Am I a Candy or not? +How would syrup flow instead of blood in the body? +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31460# +A yellow lantern with blessings moves hovering around the body. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 15. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31461# +Nice personality earplugs to show off your boy's personality. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31463# +A miniature replica of a cool aircraft, it is designed to be always here by your side. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31464# +Afro for funky and soulful outfits where fashionable power has blossomed. +It has an overwhelming presence that attracts all viewers. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31465# +Blue mini-hat like Robin's egg. +People who wear it seem very happy. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31466# +A sacred egg shell with angel wings. +If you wear it, it seems like you just come up with a good idea. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31467# +The shell of evil energy with wings of evil. +When worn, it seems that only some bad thoughts come to mind. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31468# +A fashionable outfit with a simple striped accent. +If you get lost in coordination, this will decide! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31469# +Rental Item +The topical rental costume selected by Kafra staff. +-------------------------- +This item can only be sold to NPCs. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31470# +A magically radiated scroll that is dropped by a disciplined Tengu. It is said mysterious events may occur in various places when using this scroll. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31471# +Carefully hand raised flower by celestial maidens for decorative purposes. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31472# +A hair adornment with small flowers decorating transparent insect like wings. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31473# +Why is your face like that? I-it's nothing! *hic* I'm fine!! +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31474# +Costume hair that gives you an unusual feeling when attached. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31475# +Cute costume modeled on the ears of fox. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31476# +Springlike costume hat modeled on leaves of cherry blossom. Waving of cherry blossom ornament is absolutely cute. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31477# +Rental Item +The topical rental costume selected by Kapla staff. +-------------------------- +This item can only be sold to NPCs. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31478# +A costume wig that imitates the hairstyle of homunculus Eleanor. +In order to maximize the cuteness of Eleanor, it has a function to move the ears. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31479# +Numerous stars shining in the sky. +When I look at it, I feel like I'm going to suck everything. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 20. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31480# +Little Gioia that Warlocks like. +Cards are not dropped upon death. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 23. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31481# +A coffee cup hat with cat's latte art on it. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31482# +This fluffy muffler looks so warm! No Lunatics were harmed while creating it. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31483# +Cute cat ear decorated with a lovely pink ribbon with heart aura around it. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31484# +Kumameto for costumes dressed as female priests. +An adventure companion that can be put on your head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31485# +Kumameto for costumes dressed as male priests. +An adventure companion that can be put on your head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31486# +Sturdy goggles worn by ocean divers. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31487# +Yar har fiddle dee dee. You are a pirate! +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31488# +Experience the exciting MVP feeling with this unique costume. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31489# +It's flowers on your head! In the shape of a lovely hat. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31490# +Now you can be extra stylish with this cute Costume Poring Muffler! Made of 100% organic Jellopy. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31491# +A cute, orange tabby cat that will happily join you on your adventures through Rune Midgard. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31492# +An adorable brown cape. Oh look! It also has cat ears. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31493# +A voluminous, white pigtail wig. Super trendy! +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31494# +A wig for costumes that, when worn, makes you feel like you have a different hairstyle. +Two-pronged braided hair in a low position. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31495# +A wig for costumes that, when worn, makes you feel like you have a different hairstyle. +Two-sided up curl with a two-tone color. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31496# +Costume hat made of Yggdrasil branches. +Feel the breath of great life. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31497# +Glasses with colorful flower decorations. +I don't know if I can see the front properly, but it is said that there are surprisingly many people looking for it because of its fashion. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 21. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31498# +Blue jelly that feels cool. +Cute elephant-shaped jelly points! +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 15. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31504# +Seems like the fish thinks you're pretty chummy... +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31505# +Have you ever wondered how it felt to be a bird? Well wonder no more with this Costume Falcon Mask! Bird is the word! Feathers not included. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +31506# +A uniform hat, with a cute design that is well matched with cat's ears. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31507# +Oh look! A yellow cat on your head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31508# +Isabella's blue hat, a crowd favorite! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31509# +Fancy to fawn over these fancy fawn ears? +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31510# +A short-haired cat-ear style bun wig. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31511# +A long-haired cat-ear style bun wig. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31512# +This rabbit will be the highlight of the ball wherever you go! +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 19. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31513# +A cute black cap with long rabbit ears. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31516# +A small melon model. It looks real but it is light and cute enough to be placed on your head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31517# +A stuffed toy for clothing that imitates \ +, which is characterized by it's fluffy fur coat. +You can enjoy various appearances and feel as if you were with a real bear. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31518# +A hat designed by popcorn enthusiast who wanted to pop popcorn anytime, anywhere. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31519# +A noodle hat made especially for the noodle festival. If you wear this hat anytime and anywhere, you can think of the noodles you used to have in the summer. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31520# +A traditional costume of the Cat Kingdom that accurately reproduces hot popcorn. +Somehow I feel excited when I put it on my head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31521# +Traditional costume of Cat Kingdom made by processing oversized citron as it is. +The refreshing scent calms the mind. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31522# +A traditional costume of the Cat Kingdom, made from a large orange. +The fresh scent brightens your mood. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31523# +A traditional costume of cat kingdom made from fully-ripened citron. +The elegant scent enhances concentration. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31524# +Traditional costume of cat kingdom made with the image of handmade bento. +I want to eat food outside. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31526# +A hat used to communicate with the spirits. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31527# +Be the rainbow with this pair of beautiful Radiant Rainbow Wings! +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31528# +Using a form decorative star of Stardust, the hair band was created to bring the stars to everyone. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31529# +A joyful costume that brings happiness to everyone that sees it. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31530# +The horn helmet in costume variant with a worrisome atmosphere. +It is said that it has the power to suck in vitality. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31531# +With such a gorgeous hairstyle, heads are sure to turn! +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31533# +A warm muffler you want to wear when the weather gets cold. The wiggling tail is just too adorable. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31534# +A circlet of stars for a costume that draws a beautiful rainbow. +It is said that the trajectory of the stars and the rainbow will tell you where you need to pierce. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 27. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31538# +An aura of love radiates from your entire body! +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31540# +Costume colored contacts made to mimic the eyes of Gemini-S58. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31541# +A hairpin fashioned from the leaves of the Drosera. It's cuter on you than it is on them! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31542# +A happy little Poring has decided to take a bath in this giant jug of water you were carrying. He doesn't seem to want to leave... lucky you! +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31543# +Soft as a Siorava. I wonder what it's made of...? +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31544# +A luxurious costume wig modeled after Piamette's hair style. Its soft and perfect curls frame your face perfectly! +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31545# +The classic Eremes scarf, long and tattered, dyed blue to match the rest of your blue outfits. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31546# +A wonderful red cap inspired by the design of the Aldebaran Clock Tower. It looks so fancy on you! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31547# +Have you ever dreamed of your entire head becoming a Poporing? Well, your dreams have just come true. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31548# +Joy, cheerfulness, and even a bit of shyness! +Everyone has blushed like this at least once. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31549# +A decoration for a costume that spreads out in front of you when you wear it. +You can enjoy the feeling of diving under the sea. +-------------------------- +Collection Effect +Receive 1% less damage from Large size monster +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31550# +A bell for mysterious costumes where you can hear the sound of bells. +It is said to look good when worn with animal ears. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31551# +Date glasses for costumes with a conspicuous black frame. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31552# +Blue costume ribbon, which is considered to be a proof of honor student. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31553# +Valkyrie's feather and jewelry headwear for costumes. +It says that it protects the wearer from many dangers. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31554# +A paper bag for clothes that looks like a bread bag turned upside down. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31555# +Helmet for costumes used in ancient western countries. +It seems that he was good at a dense formation that boasts robust defense power. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31556# +A costume hat made by imitating a monster moonlit flower. +Real hair is not used, but its presence is outstanding! +Wearing with a nine-tailed fox collar makes winter fashion perfect!? +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31559# +A necklace for costumes to hang around the neck. +There is a story that the Guardian Knight always wore in his arms. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 21. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31560# +Cute nurse's cap! It's just a costume though, doesn't give you any nursing credentials. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31561# +Wings made of dark flame, its shape formless and twisting, intimidating all who pass by! +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31562# +You've always wanted a tiny Zealotus doll sitting on your head? Well, today's your lucky day! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31563# +Lush blue eye shadow to make your whole look pop. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31564# +A demonic horn and a veil made of black fabric. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31565# +A costume decoration made by the father of the jewelry craftsman and the mother of the designer for their debut adventure of their lovely daughter. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 17. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31566# +A muffler made of gold thread. +Golden angel wings are decorated with ornaments. +The attractive point of poplar decoration. +-------------------------- +All status+3 +When Equip with Costume Golden Poring hat: +Atk+5 Matk+5 Exp+5% +-------------------------- +Expiration date 31-01-2025 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31567# +Large sheep's horns to decorate the sides of your head. Don't try to headbutt anyone with it, it's just a costume! +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31568# +A floating tai-chi ball that feels mysterious. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31569# +Open air headphones to increase concentration and flowing of sound. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31570# +Eye of the cyclops. Replicate eye protection. No change in vision. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31571# +A replica of a processing chip made to control the guardian unit. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31572# +Three small aircraft fire lasers to assist the attack. +Mobile aircraft for costumes that feel as if the attack power is going to rise. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 19. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31573# +Robotic cat ears designed to resemble a real cat. They may look soft, but they're tougher than you'd expect! +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31574# +A cool cyber color costume for Income. +seems to be an essential item in cyber fashion. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31575# +A wig for costumes that, when worn, makes you feel like you have a different hairstyle. +Curl's two-side up with a unique color and a cybertic feel. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31576# +A white rabbit hat for clothes that lives in the moon. +When I put it on my head, I feel like my body has become lighter. +And when he sees a toy, he wants to be asexual. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31577# +A headgear for a costume that can turn your whole head into a chicken. +It's suspicious to look, so it's going to take courage to wear it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31578# +A mask for the costume of the alchemist's purveyor. +Although it looks suspicious, it is an excellent product that filters harmful air and transforms it into fresh air. +-------------------------- +Type: Costume +Position: Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +31579# +A signboard for costumes made to appeal to the fact that \ +. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31580# +In the deeper autumn, after the harvest, delicious sweet potatoes and corn are baked on the bonfire. When it's all cooked, it tastes better. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31581# +A headgear for a costume made by hollowing out a large pumpkin that wraps your head around. +Unfortunately I can't seem to eat it. +-------------------------- +Type: Costume +Position: Uppper +Weight: 0 +-------------------------- +Requirement: None +# +31582# +A costume jewel that imitates Gilant's jewel that symbolizes fear and craft. +Only those who have defeated fear and craft are allowed to wear this crown. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31583# +It is said that the mysterious flames floating around are the pathetic souls of the dead, who cannot even enter hell. +Even if it's a costume, it doesn't seem to change. +-------------------------- +Since it is an equipped effect, it still will be displayed even when the effect (/effect) is turned off. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31585# +A scarf made after the appearance of Drops. +It will be cool when worn in hot summer. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31586# +A muffler modeled after the appearance of a popping ring. It will be cool when worn in hot summer. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 17. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31588# +Beautifully glitter snowflake on your head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31589# +At the moment of wearing a helmet that resembles a goat's horn, the wearer enjoys the effect of enormous gaze, and at the same time, a hat that makes you feel proud. +It is decorated with gold and looks particularly luxurious. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31590# +WebMoney Sponsored Items +A prestigious costume brush that was given only to those who won the prize in Design Contest 2018. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31591# +A crown of blessed by the saints. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31598# +A costume hat with a tree branch that attracts shining insects. +You can walk without hesitation even in the dark forest with the light of fluffy flashing insects. +It also has a big beast-preventing bell so you will not encounter dangerous animals. +It is said to be a hat that borrows the wisdom of a family living in the forest. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31599# +A costume wig modeled after a cut style created with a color of milk tea. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31600# +This doll is modeled after the white dog Jindo dog known for its loyalty. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 19. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31601# +Clothing glasses with frames only on the bottom of the lens. +A design that can be easily used for various coordinates. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 21. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31602# +Rune Midgarts shining insignia on your head. The patriotism of the kingdom and the royal family is inspired. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31606# +A costume made based on falling leaves of autumn. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 16. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31607# +A costume hat made by a witch who loves cute things by adding decorations that imitate the ears of her cat to her favorite witch hat. +It seems that it's magical that the cat's ears move steadily. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31608# +A gemstone decoration once used by a powerful wizard. Who knows what power lies in its core. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +31609# +A renaissance-style mask. Great for partying or concealing your identity. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31610# +The hat of a talented, young wizard. Yer a wizard fairy! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31611# +The stole of a great, dragon rider. Maybe you can be one of the three with these majestic shoulders. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31612# +An elegant sorcerer crown adorned with golden tassels. Now you too can be a fire lord. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31614# +Fox doll with greedy fur. +It's so tender that I want to stroke it. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 19. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31615# +Fancy costume eye makeup. So dashing! +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31616# +Counting two or three sheep slowly, you just want to go to sleep. +Just lying down, you fall asleep right away. +-------------------------- +Collection Effect +HP +1% +MAXHP +50 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31617# +Modeled after the real Lady Tanee, many will often mistake the two. This one will always be by your side wherever you go. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31618# +Butterflies flutter around. Decoration for costumes. +You will be guided to a mysterious place. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31619# +The magic pendant made of the rare crystalline God's Diamond, because of the high magic affinity of the God's Diamond, it is the item that magicians dream of. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +Enchanter: Malangdo +-------------------------- +Requirement: None +# +31620# +It's a white fox from a snowy field, and if you look closely, it looks like you're good at pretending to be cute. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31621# +The cat with its long tail swaying slightly and happily lying on its owner's head. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +Enchanter: Malangdo +-------------------------- +Requirement: None +# +31622# +A mysterious hat. On closer inspection, the time seems to stay at 6 o'clock in the evening. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +Enchanter: Malangdo +-------------------------- +Requirement: None +# +31623# +The scent of roses and flowers are filled all around, making you full of romantic sentiment along the way. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +Enchanter: Malangdo +-------------------------- +Requirement: None +# +31624# +Watching a cat snuggle over your head relaxes you. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 18. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31625# +A warm scarf secured to the neck and shoulders by a decorative shield. The shield seems to be of fine craftsmanship. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31626# +The wings of an angel floating in the air. +Looking at them quietly gives you a peaceful feeling. +-------------------------- +All Status +3 +Exp +10%, Drop +10% +-------------------------- +Every effect will be remove on 24th July 2025. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31628# +Costume hat with the motive of a child's skull. +Though it has a lovely appearance, the blackishness of a little devil is sometimes a flaw. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31630# +Baphomet.Jr is the equipment for the costume that floats on the balloon. +Don't worry, the balloon won't break suddenly on your head. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31631# +A doll modeled after Schmidt. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31632# +A doll modeled after Oscar. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31633# +A doll modeled after Heinrich. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31634# +Cute rudolph hairband. Sometime you will hear jingle bell song. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31635# +A wig for costumes that, when worn, makes you feel like you have a different hairstyle. +Long golden hair that reminds me of a cute and youthful fairy-like image. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31636# +A wig for costumes that, when worn, makes you feel like you have a different hairstyle. +Long silver hair that reminds me of a cute and youthful fairy-like image. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31637# +A costume wig that makes you feel like you have straight long blue hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31638# +A costume wig that makes you feel like you have straight long red hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31639# +A costume wig that makes you feel like you have straight long blonde hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31640# +A costume wig that makes you feel like you have straight long green hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31641# +A costume wig that makes you feel like you have straight long black hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31642# +A costume wig that makes you feel like you have straight long purple hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31643# +A costume wig that makes you feel like you have straight long brown hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31644# +A costume wing that make you feel like Kafra NOVA +If you wear this wig, you will be able to use the warp service for free until May 30, 2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31645# +A costume wig that makes you feel like you have a blue side ponytail in your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31646# +A costume wig that makes you feel like you have a red side ponytail in your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31647# +A costume wig that makes you feel like you have a blonde side ponytail in your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31648# +A costume wig that makes you feel like you have a green side ponytail in your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31649# +A costume wig that makes you feel like you have a black side ponytail in your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31650# +A costume wig that makes you feel like you have a white side ponytail in your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31651# +A costume wig that makes you feel like you have a brown side ponytail in your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31652# +A costume wig that makes you feel like you have a purple side ponytail in your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31653# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A bun hair on the back of the head that bundles the bundled hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31654# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A bun hair on the back of the head that bundles the bundled hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31655# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A bun hair on the back of the head that bundles the bundled hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31656# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A bun hair on the back of the head that bundles the bundled hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31657# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A bun hair on the back of the head that bundles the bundled hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31658# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A bun hair on the back of the head that bundles the bundled hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31659# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A bun hair on the back of the head that bundles the bundled hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31660# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A bun hair on the back of the head that bundles the bundled hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31661# +A metal helmet of Alphonse. Only strongest player can wear it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31662# +Once worn by a girl who wandered too deep into the woods, the Red Hood now carries the scent of midnight and mystery. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31663# +A hat of ancient Asara fairy. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31664# +A hat of ancient Asara fairy. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31667# +A beret that is modeled after the appearance of Poring. It seems that the morale will go up when worn. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31668# +Seeing red lately? Not to worry, these Majorous Horns are guaranteed to make you a fan of the color. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31669# +A more powerful Whisper mask. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31670# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +It is modeled after the doll's hair found in the Amatsu area. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31671# +A costume that can be worn like clothes, found in Verus. +It seems to have been a Rockstep weapon, but it has no value other than ornaments because it is unknown how to use it. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 20. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31672# +The wig of a mermaid, an imaginary creature. +It has a beautiful two-tone color in yellow and blue. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31673# +Picnic basket for outfits that are easy to carry around. +Let's go on a picnic with a great view! +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 20. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31674# +A hat with the Jitterbug motif. +The round shape of the piano is very cute. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31675# +Orange stem hat. Vitamin C +500% +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31676# +Put my orange on top, put my orange on top!!! +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31678# +The pig is the treasure of the house; the fat is the gold. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31679# +The pig is the treasure of the house; the fat is the gold. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31682# +These ears are softer than your regular ears. Wearing them makes you a real elf! +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31683# +The white feathers and frills on this headband are perfect for anyone with a pure and lovely heart. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31684# +Hair for costumes where you can feel a different hairstyle when you put it on your hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31685# +Hair for costumes that looks fluffy just by looking at the rich volume. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31686# +A cute baby desert wolf that follows you as you adventure. Now you have become the leader of the pack. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31687# +A costume bag approved by the Alchemist Guild. +The unique design and bright red color is popular and it is said that there are many people who regularly use it other than alchemists. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31688# +A costume doll modeled after Poring. +It is a small size that can be put on the shoulder. +It would be fun to play ball while throwing it in the room for decoration or throwing it. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 20. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31689# +Hair for costumes where you can feel a different hairstyle when you put it on your head. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31690# +A fiery red bird said to be born from ancient flames, reminiscent of a young phoenix. +It only stirs in hot weather, drawing strength from heat and sunlight. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31691# +Mysterious and eye-catching little white dove for costumes. +If you put it on your shoulder, there will be a crowd around you. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31692# +Costume accessories that are said to have used part of the ancient dragon wings. +It is said that wearing them has various effects. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31693# +A shawl shaped after the Lunatic shape. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 17. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31694# +A love letter for costumes with a confession of love. +The letter in the bright red envelope is a secret only for the recipient. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31695# +The magical power from this Eclage tree sprout is overwhelming. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31696# +Sharks are amazingly gentle creatures if you stay away from their food supply. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31697# +A mysterious bird's nest that makes the wearer feel like flying. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31698# +A costume with a set of yellow pigtails and a red hood. +It is a design reminiscent of the main character in a fairy tale. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 19. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31699# +Costume eyes that always become a single smile when worn. +Designer Heidammal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 18. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: +All Jobs except Summoners +# +31700# +It symbolizes the scarf worn by the hero who completed the summoning order. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31701# +Equipped with this item to hunt specific monsters to obtain event items. +-------------------------- +Rental Period: +Increases HP Recovery of Red Slim Potion, Yellow Slim Potion and White Slim Potion by 100%. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31703# +A costume of head equipment with a heart-shaped arrow. +It depends on your heart whether the arrow is shooting the heart or attacking the heart with the arrow. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31704# +A hat for costumes prepared by Basinio Chocolate for Valentine's Day. +You can feel sweet when you wear it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31705# +A costume hat for grouping at the sports day. +An irregular way of wearing makes you feel nostalgia. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31706# +Due to its robustness, it does not require a shield, and it is a durable helmet that is said to have been named \ +. +A dish that has been passed down for generations of samurai. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31707# +A wig with a mysterious feeling. +Designed by Baphomet Server adventurer Kim Dan-yi. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31708# +Skeleton ribbon with an atmosphere like an old castle. +Designed by Bapomet Server's adventurer Park Dong-Dong. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31709# +A luxurious and luxurious crown. +Designed by Baphomet Server adventurer Sleeping Boy. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31710# +A lace crown decorated with flowers. Wearing this brings good luck. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31711# +A classy crown with a jewel on it. Wearing it will make you feel like royalty. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31712# +If it smells outside, put on this handy Costume Oxygen Mask to filter everything out! May or may not work on farts. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31713# +Oh great mystical fruit! Place this on your head and feel the magic of fruit on your noggin. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31714# +A decorative band with a wave pattern and feather. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31715# +A rabbit doll made of orange fur that is well-made to be mistaken for a real rabbit. +Carrying it feels like living with a rabbit. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31716# +Red contact lenses for costumes that blink when worn. +'Why doesn't it blink normally?' Let's do not know the question. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 21. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31717# +Enjoy these fluffy, luscious locks in the color of gold. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31718# +A soft glow of yellow light emits from the body of the lantern. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31719# +A costume with intense flames. +It is said that it can be used as a bluff because it looks very strong just by putting it on the body. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31720# +A helmet made from a combination of parts found on the ruins of Euphorus. Looking at parts that look like faces makes me nervous. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31721# +It is said that it is the shape of a dragon orbiting the ancient times, and that it was the equipment used by the brain gods in the past. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31723# +A costume hat that mimics a chimaki. +Chimaki prays for good health by eating at the time of Dano's festival and praying for good health, but the same effect may be obtained by wearing it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31724# +A headgear for costumes that imitates chimaki. +It was a hot topic among the Chimaki enthusiasts because they could get a sense of unity with Chimaki. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31725# +A circular arc-shaped light for costumes that reveals a scene in seven colors from red to purple. +It is not a bow, but a model of a rare meteorological phenomenon. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31726# +A handkerchief for clothes that was held in the mouth with a grudge. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31727# +A ribbon for a costume tied in the shape of a beautiful butterfly. +Please note that this is mainly for women to decorate their hair, and for men it can be misleading. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31728# +A refreshing straw hat with a red ribbon. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31729# +Every step you take, the fragrant scent of flowers resonates. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31730# +A wig for costumes that, when worn, makes you feel like you have a different hairstyle. +Volume braids tied in two in a low position. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31731# +Numerous delicious sweets and cakes float around and when worn, you can have a very relaxing tea time. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31732# +A balloon shaped like a teddy bear that children love. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31733# +A black hat for costumes with a black rose. +Those who see this say they cannot control the drive of death. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31734# +A big ribbon for a nostalgic costume. +When I wear it, I feel like I've become the heroine of the story. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31735# +A costume shawl that encapsulates the power of Bagua that mimics the nature of heaven and earth. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 20. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31736# +It's perfect to wear in the blazing heat. +A wig with a heat dissipation and popcorn that can be fried. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31737# +Lucifer's wings were expelled for anger. +The meaning of the name is 'the one who brings light' +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +31738# +When sticking to the hair, you can always feel different styles of decorative hair. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31739# +When sticking to the hair, you can always feel different styles of decorative hair. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31740# +When sticking to the hair, you can always feel different styles of decorative hair. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31741# +When sticking to the hair, you can always feel different styles of decorative hair. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31742# +When sticking to the hair, you can always feel different styles of decorative hair. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31743# +When sticking to the hair, you can always feel different styles of decorative hair. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31744# +When sticking to the hair, you can always feel different styles of decorative hair. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31745# +When sticking to the hair, you can always feel different styles of decorative hair. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31746# +Costume Beauty and Long Wig (Purple) +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31747# +Costume Beauty and Long Wig (Brown) +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31748# +Costume Beauty and Long Wig (Pink) +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31749# +When sticking to the hair, you can always feel different styles of decorative hair. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31750# +Costume Beauty and Long Wig (Green) +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31751# +Costume Beauty and Long Wig (Gold) +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31752# +Costume Beauty and Long Wig (Red) +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31753# +Costume Beauty and Long Wig (Blue) +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31754# +When sticking to the hair, you can always feel different styles of decorative hair. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31755# +When sticking to the hair, you can always feel different styles of decorative hair. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31756# +When sticking to the hair, you can always feel different styles of decorative hair. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31757# +When sticking to the hair, you can always feel different styles of decorative hair. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31758# +When sticking to the hair, you can always feel different styles of decorative hair. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31759# +When sticking to the hair, you can always feel different styles of decorative hair. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31760# +When sticking to the hair, you can always feel different styles of decorative hair. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31761# +When sticking to the hair, you can always feel different styles of decorative hair. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31762# +A useful card that sometimes can be used as a weapon. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31763# +A golden mask used for the costume that is said to have been used by the Goddess of Fire. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31764# +A veil for beautiful costumes that shines like an aurora. +Even those around you will be happy. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31765# +A tiara for costumes with a large garnet shining elegantly. +The gentle curve that mimics a heart is beautiful. +Designer Heidammal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 19. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31766# +A headdress decorated with white peonies. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31767# +The headgear to celebrate the third anniversary of RO Ragnarok Online's return to the original factory. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31768# +A symbol of RTC glory in 2019. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31769# +A orange hair band for costumes for those who want to look sexy! +The moment you put it on, the eyes of those around you will change. +100% increase in sexyness. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31770# +A purple hair band for costumes for those who want to look sexy! +The moment you put it on, the eyes of those around you will change. +100% increase in sexyness. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31771# +A blue hair band for costumes for those who want to look sexy! +The moment you put it on, the eyes of those around you will change. +100% increase in sexyness. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31772# +A silver hair band for costumes for those who want to look sexy! +The moment you put it on, the eyes of those around you will change. +100% increase in sexyness. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31773# +A light blue hair band for costumes for those who want to look sexy! +The moment you put it on, the eyes of those around you will change. +100% increase in sexyness. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31774# +A red hair band for costumes for those who want to look sexy! +The moment you put it on, the eyes of those around you will change. +100% increase in sexyness. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31775# +A golden hair band for costumes for those who want to look sexy! +The moment you put it on, the eyes of those around you will change. +100% increase in sexyness. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31776# +A grey hair band for costumes for those who want to look sexy! +The moment you put it on, the eyes of those around you will change. +100% increase in sexyness. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31777# +A yellow hair band for costumes for those who want to look sexy! +The moment you put it on, the eyes of those around you will change. +100% increase in sexyness. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31778# +A pink hair band for costumes for those who want to look sexy! +The moment you put it on, the eyes of those around you will change. +100% increase in sexyness. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31779# +A pink hair band for costumes for those who want to look sexy! +The moment you put it on, the eyes of those around you will change. +100% increase in sexyness. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31780# +A hat for a cute costume that is slender like a sloth. +It seems to work but not. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31781# +A cute hairpin for a costume that imitates the shape of a popolin. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31782# +A costume box that covers an empty box and has holes in the eyes to improve visibility. +It should be made of paper, but it's mysteriously strong. +It seems I forgot to put my eyebrows on. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31783# +Costume equipment that imitates Doram children which are fluffy and swaying happily as a balloon. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31784# +A costume hat made to simulate an experimental adult goat type, which is an experimental body of Werner Institute. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31785# +Gills of a black and red monster fish. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31786# +A stuffed animal that imitates a rare dragon kid. +I feel that I can gain the power of a dragon when I wear it. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31787# +A stuffed toy for costumes modeling Savage Baby +It's small enough to fit on your shoulders. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 20. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31788# +Cute hair made to look like the Piamette Doll. Comes in silver. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31789# +A turkey-shaped costume made in honor of the Thanksgiving Day. +Sitting on your head is pretty cute. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31790# +A costume that imitates the magic book of a red bound like blood. +The decoration of the centerpiece is vicious, but it has the power to repel the invisible disaster caused by the evil eye. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31791# +A mask for costumes that imitates Mr. Buta. +If you look closely, it has fangs and it's attractive that you cannot describe it just because it is cute. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31792# +[ROx Heavy Armor Machine God] Commemorative headgear. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31793# +Feather said to have fallen from an angel's wings. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31794# +A hat with cute dog's ears. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31795# +An ornament made to resemble an elephant-like fairy. The water whirling around with the fairy is beautiful. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31796# +The Boto slumps over your head. It's strange, but cute. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31797# +A wig for costumes that expresses the appearance of Shichu dressed in ribbons. +It features a left and right ribbon and a head tied over the head. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31798# +A panda doll made well enough to be mistaken for being a real panda's baby. +You can feel as if you are living with a baby panda by sticking to your feet or doing something that looks lazy when you sit down. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 20. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31799# +A decoration for a costume with a stylish ribbon on the ear of a white bear. +Ear-shaped ornaments that decorate the character you wear. +The ribbon that shakes whenever I walk is lovely. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 20. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31800# +A cute ribbon where the sides reflect that national colors of Brazil. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31801# +This hat was awarded to adventurers that displayed exceptional examples of creativity. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31802# +This hat was awarded to adventurers that displayed exceptional examples of creativity. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31803# +A costume that wears a wind like a typhoon. +It is said that it can be used as a bluff because it looks very strong just by putting it on the body. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31804# +A fashionable hat with a flower motif. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31805# +A stylish outfit that combines a baseball cap with sunglasses. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31806# +Frog face costume hat. +When you wear it, you can hear the quivering sound of insects. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31807# +A hat that decorated by peacock feather. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31808# +A hat for clothing made to imitate the hat worn when graduating from school or academy. +Because it is red, it stands out more than black. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31809# +Any talented magician will want a costume hat. +Unlike what it looks like, it feels comfortable to wear and gives a refreshing impression. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31810# +Hair band for costumes made by modeling the wings of an angel. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31811# +Hair band for costumes made by modeling the wings of an angel. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31812# +A light bulb band that shines light for clothes. +If you have this in the dark, you'll be fine. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31813# +A stuffed animal that imitates Lunatic. +A cute little shoulder-sized healing product with the scent of good luck. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31814# +Lunatic and Eclipse get along so well their balloons seem to snuggle together. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31815# +A soft and cute Rabbit Head. Increases your cuteness greatly. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31816# +Costume wing clothes that are highly valued by those who claim to be 'Lion of the Moon' that resemble rabbits. +No one really knows if it's a lion from the moon. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31817# +A wig for costumes that, when worn, makes you feel like you have a different hairstyle. +The unique color makes you feel like a rabbit. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31818# +Proof of reaching level 185 among the top 20 in your server for your occupation. +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31819# +Masked after the face of the monster Dullahan. +It is said to be beautiful... +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31823# +A humorous costume that recreates the appearance of a legendary comedian. +You may become the protagonist of a party just by wearing this... +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31824# +Look like a Cast with the mask. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31825# +Tongue for costumes of grotesque color. +It is said to be a devil's tongue that only tells lies, but it is unknown as to whether it is true or false. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31826# +A hat for a teddy bear costume wearing sunglasses. +It creates a naughty atmosphere that is not just cute. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31827# +A hoodie that was used to cover the face by wrapping it around the head. +It is made to be able to act freely by shortening the length. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31830# +A mysterious costume eye patch that is said to be able to protect the body from the violent attacks of the Balaur. +I feel that mysterious power comes out at the same time that it protects me. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31831# +A coat for costumes that is said to have been made by imitating Disgay to infiltrate Niflheim. +Disgay's long sleeves and carefully selected muffler make you feel the creator's conviction. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31832# +A hat for costumes with a tuxedo cat motive. +Roses and ribbons, fluffy materials and a bunch of cool things hang. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 20. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31833# +Short hair for costumes that lets you feel like a different hairstyle when worn. +A gorgeous hairstyle that arranges any Doram's hairstyle in two tone colors. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31834# +Long hair for costumes where you can taste the feeling of wearing a different hairstyle. +A gorgeous hairstyle that arranges any Doram's hairstyle in two tone colors. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31835# +Can be enchanted in Malangdo. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31836# +A hat for clothes that was invented by Bratislis' inventor Dantos Schmon during flight control. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31837# +A headgear for the costume of the shark, the king of the sea, with sharp eyes. +It looks horrible, but it seems to be popular with some people. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31838# +A laurel wreath for costumes created to commemorate the opening of the new Urdr World. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31839# +Wings for clothes made in commemoration of the opening of the new Urdr World. +-------------------------- +Since it is an equipped effect, it still will be displayed even when the effect (/effect) is turned off. +-------------------------- +Can only be sold to NPC's or moved to storage. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31840# +Costume headset made for BJ. +Ragnarok proves that he was an official BJ activity. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31841# +Costume headset made for the official Ragnarok BJ. +A glowing effect has been added to let you know that you are currently in BJ. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31842# +A hat that proudly displays the family crest of the Tsuyoshi Warriors. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31843# +A costume of earrings said to harness the power of the heavens. Wearing it makes you feel as if you have the power to judge those who oppose you. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31844# +A scarf with a strong impression that looks like you'll run away at the moment you wear it. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31845# +A hat given only to selected guards. It contains a strong spirit that does not yield to enemy bullets. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31846# +A lovely costume wig modeled after a cute ribbon shape. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31847# +Wearing this costume will make you feel so fabulous that you cannot help but blink! Featuring two different color tones, you will be the center of attention at any party. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31848# +A bonnet for costumes with rich frills. +The passionate red rose and checkered pattern inside the bonnet point. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 21. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31849# +Helm for clothing with high-performance IC chip inserted inside. +It seems to have the ability to dramatically improve the performance of some hardware. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 21. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31850# +A costume hat blessed by a holy virgin. +It is said that it had the effect of dramatically increasing the healing ability. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31851# +A floating mechanism made of alien technology. +It is said to have a function to protect the wearer by installing a self-reliance defense system. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31852# +A costume cape that looks like the night sky. +It is said to be a cape used by witches. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31853# +Bandaged costume zombie mask. +Let's wear it on your head during the Halloween festival! +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31854# +Aura of chef who can achieve master bakery skill. Sometime, it make people around feel hungry because of its Fragrant +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31855# +A wig that looks like a mushroom. +Made in dark brown reminiscent of chocolate. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31856# +A gold costume wig with beautiful long hair and cute pigtails. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31857# +A wig for costumes that gives you the feeling of having a different hairstyle when worn. +A two-sided finish with a fluffy finish that contains air. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31858# +Hair extensions with twisted heads on both sides +You can feel like a princess. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31859# +Hair extensions with twisted heads on both sides +You can feel like a princess. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31860# +Hair extensions with twisted heads on both sides +You can feel like a princess. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31861# +Hair extensions with twisted heads on both sides +You can feel like a princess. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31862# +Hair extensions with twisted heads on both sides +You can feel like a princess. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31863# +Hair extensions with twisted heads on both sides +You can feel like a princess. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31864# +Hair extensions with twisted heads on both sides +You can feel like a princess. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31865# +Hair extensions with twisted heads on both sides +You can feel like a princess. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31866# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A hairstyle with braids arranged in a headband style. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31867# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A hairstyle with braids arranged in a headband style. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31868# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A hairstyle with braids arranged in a headband style. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31869# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A hairstyle with braids arranged in a headband style. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31870# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A hairstyle with braids arranged in a headband style. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31871# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A hairstyle with braids arranged in a headband style. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31872# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A hairstyle with braids arranged in a headband style. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31873# +Hair for costumes that makes you feel like you have a different hairstyle when you wear it. +A hairstyle with braids arranged in a headband style. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31874# +A costume wig that is modeled after Himelmez's hair style. +It is said that adventurers who have seen Himelmez are rare, so the creator's imagination was added. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31875# +A costume wig that is modeled after Himelmez's hair style. +It is said that adventurers who have seen Himelmez are rare, so the creator's imagination was added. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31876# +A costume wig that is modeled after Himelmez's hair style. +It is said that adventurers who have seen Himelmez are rare, so the creator's imagination was added. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31877# +A costume wig that is modeled after Himelmez's hair style. +It is said that adventurers who have seen Himelmez are rare, so the creator's imagination was added. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31878# +A costume wig that is modeled after Himelmez's hair style. +It is said that adventurers who have seen Himelmez are rare, so the creator's imagination was added. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31879# +A costume wig that is modeled after Himelmez's hair style. +It is said that adventurers who have seen Himelmez are rare, so the creator's imagination was added. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31880# +A costume wig that is modeled after Himelmez's hair style. +It is said that adventurers who have seen Himelmez are rare, so the creator's imagination was added. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31881# +A costume wig that is modeled after Himelmez's hair style. +It is said that adventurers who have seen Himelmez are rare, so the creator's imagination was added. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31883# +A costume wig with a nine-tailed fox motif. +The mysterious power is brought to you by the golden hair of a real fox, secretly woven by someone. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31884# +A costume helmet that mimics the legendary helmet of God's protection. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 20. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31885# +A costume of sand and gravel. +It is said that it can be used as a bluff because it looks incredibly strong just by wearing it on the body. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31886# +A hat made after taking inspiration from the apple of a famous shooter. +The way it shoots through with an arrow makes people feel cute. +-------------------------- +ATK +10%, MATK +10 +Increases HP Recovery of Meat by 1000%. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31887# +A muffler modeled on the one that a snowman wears. Wearing this will make you want to dash through biting winter winds. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31888# +A costume doll with a white tiger motif. +The loose and loose feeling is cute. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31889# +A costume helmet that bears the name of Gemini as if the constellation around the zodiac embodied. +It is said that it exerts its true power when it shines in the shine of a star. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31899# +Crown of goddess Freyja. When the whole crystal is embedded in the sunlight, a strange color will appear. +-------------------------- +Collection Effect +Collection Effect : Damage all size 2% +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31902# +Izoku style cold eyes. +Eyeglasses for costumes made by the hunter to keep an eye on the predator calmly. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31903# +A costume hat made to imitate a rare white snake. +It is said to be a white snake, which is highly toxic in spite of its obscure design. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31904# +A hat for clothes that makes you feel happy enough to want to parade. +Designed for winter with the image of snow. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31905# +A wig for a costume that gives you a different hairstyle when worn. +A hairstyle that gives the impression of being frozen with snow. Every time I walk, it shakes slightly. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31906# +A knit hat for a costume that goes well with Doram, a woman who is said to have been made by Doram's parents repairing old clothes. +There is a decoration in the shape of a cat's paw to pray for safety of adventure. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 21. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31907# +A knit hat for a costume that goes well with the male Doram, who is said to have been made by Doram's parents refining old clothes. +There is a decoration in the shape of a cat's paw to pray for safety of adventure. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31909# +The knit hat for Seven-Eleven costumes that is familiar with the catchphrase \ +. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31911# +A corolla for beautiful costumes with cute ears. +Elegant elegance is felt in the natural beauty. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 21. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31912# +The look of someone who has lost something very important to them. You can feel a sense of sorrow emitting from it. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31913# +A costume that was once worn by an executive of an organization. It was said that it was part of a high performance and top secret mission. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31914# +A small hair band featuring a mini beret. Simple design and easy to match. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31915# +A fancy looking wig for many outfits that features rolled up hair and wrapped low. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31916# +A neckcap for costumes that can easily change the image. +It goes well with any place, but especially with Gothic style. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 21. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31917# +A flag for costumes that can only be raised by those who have achieved success. +The enemy will lose war before its glory. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +31918# +-PTM wanted- +A costume hat for advertising, which means that we are recruiting party members. +Level up today with everyone! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31919# +-Friends wanted- +A costume hat for advertising, which means that we are looking for people to make friends with. +Let's call out together! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31920# +A cowboy-style costume hat that takes advantage of the western atmosphere. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31921# +Choa's signature hairstyle, enhanced with a shimmering white-violet hue. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31922# +A wig for a costume that gives you a different hairstyle when worn. +A cute hairstyle with fluffy curls. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31923# +A polar bear doll for costumes made so well that you can mistake it for a real baby polar bear. +It feels like you are living with a baby polar bear. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31924# +Blue contact lenses for clothes that make your eyes blink when you wear them. +Do not put a tsukkomi on why you normally do not blink. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31927# +A blue pencil for a mysterious costume, which was said to cause water splashing around when it was held strong. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31928# +Hair band for clothes developed to keep chemicals used for cart maintenance. +Because it is for costumes, you can handle it with confidence. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31929# +Costume hats worn by students when they go to school. +The decoration of the smile mark is the trend mark. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31930# +A microphone stand for costumes needed for performances. +This equipment is for adventurers who want to become idols. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 21. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31931# +Clothing glasses with a frame only on the top of the lens. +If worn, you can decorate it as an intelligent adult. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 21. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31932# +A suit collar with a tie. +You can feel the elegance of a gentleman. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31933# +When attached to your hair, you can feel a different hairstyle than usual. +It is modeled after the hair of a doll found in the Amatsu area. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31934# +Purple contact lenses for clothes that blink when worn. +'Why doesn't it usually blink?' Let's do not know the question. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 21. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31936# +The donut costume equipment looks delicious and sweet. +When I add it, the sweetness of honey and the fragrance of nuts spread in my mouth. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31937# +A costume decoration that mimics the shape of a unicorn's horns and ears. +It looks cute as if it was made for children. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 22. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31938# +A wig for costumes that makes you feel like you have a different hairstyle when worn. +Mori girl style pigtails loosely woven in the low position. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31939# +Corolla made of carnations for costumes. +Seiren, whose hobby is making flowers, was created. +It contains feelings for the late mother. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31940# +A costume golden mask that is said to have been used by the Goddess of the Earth. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31942# +A costume decoration where roses are in full bloom. +You are surrounded by an elegant atmosphere. +-------------------------- +Since it is an equipped effect, it still will be displayed even when the effect (/effect) is turned off. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31943# +A costume hood that has the cool color patterns of a tree frog. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31944# +A costume wig that makes you feel like you have a different hairstyle when worn. +Elegant semi-long with a soft wave. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31946# +A costume contact that has sharp eyes like a scary demon king. +I'm worried that my eyes are so strong that I can't easily look at them. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31947# +A spooky costume horn that feels vicious evil. +I feel that it looks a little bad when I wear it. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31948# +A blindfold for a costume with an eerie eye drawn on it. +He said that he was uneasy when he stared at his eyes. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31959# +A wig for clothes that can appeal to the cuteness with a fluffy wave. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31960# +A wig for clothes that can appeal to the cuteness with a fluffy wave. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31961# +A wig for clothes that can appeal to the cuteness with a fluffy wave. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31962# +A wig for clothes that can appeal to the cuteness with a fluffy wave. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31963# +A wig for clothes that can appeal to the cuteness with a fluffy wave. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31964# +A wig for clothes that can appeal to the cuteness with a fluffy wave. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31965# +A wig for clothes that can appeal to the cuteness with a fluffy wave. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31966# +A wig for clothes that can appeal to the cuteness with a fluffy wave. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31967# +A wig for clothes that can appeal to the cuteness with a fluffy wave. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31968# +A wig for a costume that is neatly tied to one side. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31969# +A wig for a costume that is neatly tied to one side. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31970# +A wig for a costume that is neatly tied to one side. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31971# +A wig for a costume that is neatly tied to one side. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31973# +Sunglasses decorated with cherry blossom petals. +It seems that the scent of spring is flowing. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +31974# +These are melon-shaped headphones. +State-of-the-art format without lines. +-------------------------- +Increases Melee and Ranged Physical Damage by 12%. +Increases Magical Damage with every element by 12%. +Increases Recovery Rate of Bread by 2000%. +Increases Recovery Rate of Sweet Melon by 300%. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +31975# +The sweet potato baked with the wood fire of the harvest festival is hot, so let's eat it gently. +-------------------------- +Effect during the Event: +Increases Magical Damage with every element by 10%. +Increases Melee Physical Damage by 10%. +Increases Ranged Physical Damage by 10%. +Increases experience gained from monsters by 5%. +Defeating monsters has a certain chance to drop Harvest Festival Memorial Cookies. + +When equipped with Costume Thanksgiving Memorial Hat: +ATK +10% +Decreases Fixed Casting Time by 0.2 seconds. +Increases experience gained from monsters by additional 5%. + +When equipped with Costume Autumnal Flavor: +MATK +10% +Decreases Fixed Casting Time by 0.2 seconds. +Increases experience gained from monsters by additional 5%. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +31976# +A green hat that helps you focus on making more meaningful attacks. The star on the front of the hat points. +It was created to commemorate participation in hunting competitions. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +32000# +A spear imbued with the power of god of water, Varuna. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Demon, Neutral and Fire elemental by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Demon, Neutral and Fire elemental by 15%. +-------------------------- +Type: One-Handed Spear +Attack: 140 +Weight: 200 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Swordman classes +# +32001# +A weapon of unknown origin that contains the magic of the labyrinth. +It is unclear what kind of material it is made from, and even similar weapons have different performance. +-------------------------- +MATK +110 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When equipped with Labyrinth Baphomet Card: +ATK +10% +Normal attacks inflicts splash damage. +-------------------------- +Type: One-Handed Spear +Attack: 150 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +3rd classes of Swordsman +# +32002# +A Diva Spear that has mutated under the influence of the power of the labyrinth. +It is unclear what kind of material it is made from, and even similar weapons have different performance. +-------------------------- +Attack Range: 5 cells +-------------------------- +MATK +110 +-------------------------- +Refine Level +7: +ATK +30, HIT +5 +-------------------------- +Refine Level +9: +ATK +30, HIT +5 +-------------------------- +When compounded with Labyrinth Dracula Card: +Physical attacks have a certain chance to absorb 5% of the inflicted damage as SP. +-------------------------- +Type: One-Handed Spear +Attack: 150 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +3rd classes of Swordsman +# +32003# +A spear with evil spirit dwelling inside. +-------------------------- +For each Refine Level: +ATK +1 +-------------------------- +Type: One-Handed Spear +Attack: 110 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rune Knight and Royal Guard +# +32004# +A spear created for Royal Guard who master of spear. +When equipped with Enhanced Time Keeper Armor, will makes wearer's body more agile. +-------------------------- +Increases damage of Banishing Point by 20%. +-------------------------- +Every 10 Base Levels: +ATK +6 +(Upto Base Level 160) +-------------------------- +Refine Level +7: +For each Level of Spear Mastery: +Increases Ranged Physical Damage by 1%. +-------------------------- +When equipped with Time Keeper Set(Hat, Robe, Manteau and Boots): +ASPD +2 +MaxHP +10% +MaxSP +10% +-------------------------- +For each 10 base VIT: +Resistance against Neutral attack +3%. +(Upto 100 VIT) +-------------------------- +For each 10 base AGI: +Increases Attack Speed (Decreases After Attack Delay by 2%). +(Upto 100 AGI) +-------------------------- +For each 10 base DEX: +HIT +3 +(Upto 100 DEX) +-------------------------- +For each 10 base LUK: +Critical +3 +(Upto 100 LUK) +-------------------------- +Type: One-Handed Spear +Attack: 140 +Weight: 0 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 100 +Royal Guard +# +32005# +An axe head mounted on a long pole, this weapon was especially made to break through thick armored plates. +-------------------------- +STR +3 +INT +2 +DEX +2 +-------------------------- +Refine Level +9: +Decreases Hundred Spears skill cooldown by 1 second. +-------------------------- +Refine Level +13: +Decreases Hundred Spears skill cooldown by 1 second. +-------------------------- +When equipped with Illusion Shoes: +ATK +40 +-------------------------- +Refine Level of Illusion Pole Axe and Illusion Shoes each is +7 or higher: +Increases damage of Hundred Spear by 20%. +-------------------------- +Total Refine Level of entire set at least +18: +ATK +10% +-------------------------- +Total Refine Level of entire set at least +22: +Increases damage of Hundred Spear by 20%. +-------------------------- +Type: One-Handed Spear +Attack: 190 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Rune Knight and Royal Guard +# +32006# +A spear with the power of fire. +It is said that the original performance can be exhibited by regaining the power of \ +. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Insect and Demi-Human race, except Players, by 10%. +Increases Physical Damage against enemies of Water and Earth elemental by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Insect and Demi-Human race, except Players, by additional 15%. +Increases Physical Damage against enemies of Water and Earth elemental by additional 15%. +-------------------------- +Type: One-Handed Spear +Attack: 140 +Weight: 200 +Element: Fire +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50 +Swordman classes +# +32007# +One of the seven magical tools possessed by Zilant. +As a result of the wrapped dragon eating the soul of the king, who was touted as a god, it transformed into a magic spear that would die just by touching it if it was not prepared to abandon being a human being. +-------------------------- +MATK +280 +-------------------------- +STR +3, DEX +5 +-------------------------- +Increases damage of Dragon Breath - Water and Dragon Breath by 50%. +-------------------------- +Physical attacks have a certain chance to absorb 1% of the inflicted damage as HP. +-------------------------- +For each Refine Level: +ATK +2% +Increases Attack Speed (Decreases After Attack Delay by 2%). +Decreases After Skill Delay by 1%. +-------------------------- +Refine Level +7: +Physical attacks have a certain chance to absorb additional 2% of the inflicted damage as HP. +-------------------------- +Refine Level +9: +Physical attacks have a certain chance to absorb additional 3% of the inflicted damage as HP. +-------------------------- +Refine Level +10: +Decreases Fixed Casting Time by 70%. +-------------------------- +Type: One-Handed Spear +Attack: 360 +Weight: 380 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +3rd Swordsman classes +# +32008# +A spear with a specially formulated poison. +No armor makes sense in front of this spear. +-------------------------- +MATK +100 +-------------------------- +The higher the opponent's defense is, the greater the damage will be dealt. +-------------------------- +For each Refine Level: +Increases Physical Damage against enemies of Fire, Wind and Earth elemental by 8%. +-------------------------- +Type: One-Handed Spear +Attack: 250 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +3rd Swordsman classes +# +32012# +A spear-shaped object cast by the lost technique. +The structure and materials as well as the intended use have not been clarified. +-------------------------- +VIT +3 +-------------------------- +For each Base Level: +Increases damage of Banishing Point by 2%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases SP Consumption of Banishing Point by 15. +Increases Physical Damage against enemies of Demi-Human and Doram race by 15%. +-------------------------- +Refine Level +9: +For each Base Level: +Increases damage of Banishing Point by additional 1%. +-------------------------- +Refine Level +10: +Increases Physical Damage against enemies of Demi-Human and Doram race by additional 30%. +-------------------------- +Type: One-Handed Spear +Attack: 180 +Weight: 250 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +3rd classes of Swordsman +# +32013# +A spear made out of Spider Tank parts. +Quite heavy, but gives excellent grip. +-------------------------- +Increases damage of Cannon Spear by 10%. +-------------------------- +Refine Level +7: +Increases damage of Over Brand by 10%. +-------------------------- +Refine Level +9: +Increases damage of Over Brand by additional 15%. +-------------------------- +Refine Level +12: +Decreases After Skill Delay by 15%. +-------------------------- +Type: One-Handed Spear +Attack: 180 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +3rd classes of Swordsman +# +32014# +A Spear received from suspicious weapon dealer Brute. +-------------------------- +Increases Physical Damage against Players by 80%. +-------------------------- +For each Refine Level: +Ignores physical defense of every race by 5%. +-------------------------- +Refine Level +8: +Increases Magical Damage against Players by additional 35%. +-------------------------- +Refine Level +9: +Increases Magical Damage against Players by additional 20%. +-------------------------- +Refine Level +10: +MaxHP +15% +MaxSP +15% +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's and moved to the storage. +-------------------------- +Type: One-Handed Spear +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +3rd Swordsman classes +# +32017# +A weapon mutated by the magical power of a stranger. +Even if they look the same, the performance is different. +-------------------------- +MATK +110 +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: One-Handed Spear +Attack: 150 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +3rd Swordsman classes +# +32018# +A spear once used by hero that receives the blessing of water spirit. +This beautiful spear has a shape sea wave. It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +Increases damage of Canon Spear and Banishing Point by 15%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases damage of Canon Spear and Banishing Point by 20%. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase STR by 20 and ATK by 15% for 7 seconds when dealing physical damage. +-------------------------- +Type: One-Handed Spear +Attack: 180 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Royal Guard +# +32019# +A lance with a small propulsion device. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases damage of Banishing Point by 20%. +-------------------------- +Refine Level +11: +Increases damage of Banishing Point by 15%. +-------------------------- +Type: One-Handed Spear +Attack: 190 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 130 +Royal Guard +# +32021# +A spear once used by hero that receives the blessing of water spirit. +This beautiful spear has a shape sea wave. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +Increases damage of Canon Spear and Banishing Point by 15%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases damage of Canon Spear and Banishing Point by 20%. +-------------------------- +Type: One-Handed Spear +Attack: 180 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 99 +Royal Guard +# +32023# +A Spear made of white light metal. +-------------------------- +Increases damage of Brandish Spear by 30%. +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Decreases Hundred Spear skill cooldown by 1.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Brandish Spear by additional 20%. +-------------------------- +Type: One-Handed Spear +Attack: 200 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Rune Knight +# +32024# +Battle spear made of gold. +-------------------------- +Increases damage of Shield Chain by 40%. +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +9: +Increases damage of Shield Press by 30%. +-------------------------- +Refine Level +11: +Increases damage of Shield Chain and Shield Press by additional 20%. +-------------------------- +Type: One-Handed Spear +Attack: 210 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Royal Guard +# +32025# +Specialized spear for enveloping and stabbing. +-------------------------- +ATK +5% +-------------------------- +For each Refine Level: +Decreases After Skill Delay by 1%. +-------------------------- +Refine Level +9: +Increases damage of Cannon Spear by 20%. +-------------------------- +Refine Level +11: +Increases damage of Overbrand by 20%. +-------------------------- +Type: One-Handed Spear +Attack: 205 +Weight: 170 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Royal Guard +# +32026# +Objects used to block access to dangerous areas of the Einbech mine. +Durable and destructive, it was converted into a weapon. +-------------------------- +ATK +10% +Increases damage of Banishing Point by 10%. +-------------------------- +Refine Level +7: +ATK +40 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases damage of Banishing Point by additional 15%. +Physical attacks have a chance to increase physical damage against all size enemies by 15% for 10 seconds. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 20%. +-------------------------- +Type: One-Handed Spear +Attack: 210 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Royal Guard +# +32027# +A heavy one-handed spear used by the White Knights. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +9: +Increases damage of Banishing Point by 20%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +ATK +30 +Physical attacks have a chance to increase Ranged Physical Damage by additional 10% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Physical Damage against enemies of Holy and Undead elemental by 20%. +-------------------------- +Type: One-Handed Spear +Attack: 205 +Weight: 400 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Royal Guard +# +32100# +A guitar received from suspicious weapon dealer Brute. +-------------------------- +Increases Physical Damage against Players by 80%. +-------------------------- +For each Refine Level: +Ignores physical defense of every race by 5%. +-------------------------- +Refine Level +8: +Increases Magical Damage against Players by additional 35%. +-------------------------- +Refine Level +9: +Increases Magical Damage against Players by additional 20%. +-------------------------- +Refine Level +10: +MaxHP +15% +MaxSP +15% +-------------------------- +Indestructible in battle +-------------------------- +Can only be sold to NPC's and moved to the storage. +-------------------------- +Type: Musical Instrument +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Minstrel +# +32105# +A weapon mutated by the magical power of a stranger. +Even if they look the same, the performance is different. +-------------------------- +MATK +120 +-------------------------- +Refine Level +7: +Increases damage of Arrow Vulcan by 150%. +Decreases damage taken from Players by additional 5%. +-------------------------- +Refine Level +7: +Increases damage of Arrow Vulcan by additional 50%. +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Musical Instrument +Attack: 180 +Weight: 25 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +Minstrel +# +32106# +A weapon mutated by the magical power of a stranger. +Even if they look the same, the performance is different. +-------------------------- +MATK +120 +-------------------------- +Refine Level +7: +Increases damage of Arrow Vulcan by 150%. +Decreases damage taken from Players by additional 5%. +-------------------------- +Refine Level +7: +Increases damage of Arrow Vulcan by additional 50%. +Decreases damage taken from Players by additional 5%. +-------------------------- +When compounded with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +When equipped with Heavenly Order: +Decreases damage taken from Players by additional 3%. +Increases Damage against monsters of all elements by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Type: Whip +Attack: 150 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +Wanderer +# +32107# +Black electric guitar. +It has a very sharp tone. +-------------------------- +MATK +190 +Increases Magical Damage with Neutral element by 10%. +-------------------------- +For each Refine Level: +MATK +4 +-------------------------- +Refine Level +9: +Increases damage of Metallic Sound by 30%. +-------------------------- +Refine Level +11: +Decreases Metallic Sound skill cooldown by 2 seconds. +-------------------------- +Type: Musical Instrument +Attack: 100 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Minstrel +# +32108# +Noble Cello. +It is said to be used in high-end banquets such as the royal banquet. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +9: +Decreases Severe Rainstorm skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Decreases Severe Rainstorm SP Consumption by 20%. +-------------------------- +Type: Musical Instrument +Attack: 180 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Minstrel +# +32110# +It was created to inspire the Einbech mining workers or to inform them of an emergency. +There are many disadvantages to the guitar, but the volume is the best. +-------------------------- +Increases Ranged Physical Damage by 10%. +Increases damage of Severe Rainstorm by 10%. +-------------------------- +Refine Level +7: +ATK +40 +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Severe Rainstorm by additional 15%. +Physical attacks have a chance to increase physical damage against all size enemies by 15% for 10 seconds. +-------------------------- +Refine Level +11: +Decreases Severe Rainstorm skill cooldown by 2 seconds. +Decreases After Skill Delay by 20%. +-------------------------- +Type: Musical Instrument +Attack: 200 +Weight: 140 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Minstrel +# +32111# +A musical instrument used by the Glastheim Military Band. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +Indestructible in battle +-------------------------- +MATK +180 +Increases Magical Damage with Neutral element by 5%. +-------------------------- +For each Refine Level: +MATK +4 +-------------------------- +Refine Level +9: +Increases damage of Reverberation and Metallic Sound by 20%. +Decreases Metallic Sound skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases Magical Damage against monsters of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +MATK +30 +Magical attacks have a chance to increase Magical Damage with Neutral element by additional 10% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Magical Damage against Holy and Undead elemental by 20%. +-------------------------- +Type: Musical Instrument +Attack: 90 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Minstrel +# +32202# +Rental Item +A ring containing the heart of apology. +-------------------------- +All Stats +1 +-------------------------- +Enables the use of Level 1 Teleport. +Enables the use of Level 1 Heal. +-------------------------- +Protects from skill cast interruption. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +32203# +A chip that is said to have been used on a mother computer. +-------------------------- +ATK +5% +MATK +5% +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When equipped with Riot Chip: +Increases Attack Speed (Decreases After Attack Delay by additional 10%). +ATK +10% +MATK +10% +Ignores physical and magical defense of all monsters by 30%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +32204# +An old rusty dog tag worn by Immortal Corps. +-------------------------- +ATK +50 +MATK +50 +-------------------------- +Decreases damage taken from Undead race by 4%. +-------------------------- +When equipped with Juliette de Rachel: +For each Refine Level of Juliette de Rachel: +ATK +5% +-------------------------- +When Refine Level of Juliette de Rachel is +9 or higher: +Random chance to auto-cast Level 10 Oratio when using Rolling Cutter. +-------------------------- +When equipped with Sunflower Boy: +For each Refine Level of Sunflower Boy: +INT +2 +Increases damage of Crimson Rock by 1%. +-------------------------- +When Refine Level of Sunflower Boy is +9 or higher: +Random chance to increase Magical Damage with Fire element by 50% for 10 seconds when dealing magical damage. +Restores 500 HP when defeating monster with magical attack. +-------------------------- +When equipped with Lindy Hop: +For each Refine Level of Lindy Hop: +Increases Critical Damage by 3%. +-------------------------- +When Refine Level of Lindy Hop is +9 or higher: +Critical +50 +Increases Physical Damage against enemies of Boss class by 25%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +32206# +Glove provided by Prontera army where indomitable spirit dwelling inside. +-------------------------- +VIT +5 +MDEF +5 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Decreases damage taken from Players by 3%. +-------------------------- +Decreases damage taken from Fire, Water, Wind and Earth elemental attacks by 5%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +32207# +This combat booster is enhanced with the illusion technology. +There are various modules that can be installed on this chip. +-------------------------- +ATK +5% +-------------------------- +Type: Accessory +Position: Right +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 130 +# +32208# +This combat booster is enhanced with the illusion technology. +There are various modules that can be installed on this chip. +-------------------------- +ATK +5% +-------------------------- +Type: Accessory +Position: Left +Weight: 10 +Armor Level: 1 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 130 +# +32209# +This battle chip is enhanced with the illusion technology. +There are various modules that can be installed on this chip. +-------------------------- +MATK +5% +-------------------------- +Type: Accessory +Position: Right +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +32210# +This battle chip is enhanced with the illusion technology. +There are various modules that can be installed on this chip. +-------------------------- +MATK +5% +-------------------------- +Type: Accessory +Position: Left +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +32221# +A ring ready to greet you. +-------------------------- +DEF +15 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Temporal Transcendence Robe, Temporal Transcendence Cloak and Temporal Transcendence Boots: +ASPD +2 +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +32222# +A brooch given to those who defeated Satan Morocc. +-------------------------- +ATK +5%, MATK +5% +-------------------------- +When equipped by Rune Knight or Royal Guard: +MaxHP +10% +Increases Physical Damage against enemies of all monsters by 5%. +-------------------------- +When equipped by Archbishop or Sura: +ASPD +10% +Increases Physical Damage against enemies of every race by 5%. +-------------------------- +When equipped by Mechanic or Genetic: +Decreases SP Consumption of skills by 10%. +Increases Physical Damage against enemies of every race by 5%. +-------------------------- +When equipped with Hero Judgement Shawl: +Disables the following effects of Hero Judgement Shawl: +Chance of casting Level 10 Kyrie Eleison and Level 1 Lex Aterna. + +For each Refine Level of Hero Judgement Shawl000000: +Increases damage of Judex, Adoramus, Sky Blow, Dragon Combo and Earth Shaker by 5%. +-------------------------- +When equipped with Hero Trade Mail: +For each Refine Level of Hero Trade Mail: +All Stats +2 +Adds an additional chance of inflicting Stun, Silence, Curse and Poison when performing a physical attacks. +-------------------------- +When equipped with Hero Plate: +Disables the following effects of Hero Plate: +Chance of casting Level 10 Heal and Level 10 Storm Gust. + +For each Refine Level of Hero Plate: +Increases damage of Storm Blast and Banishing Point by 5%. +-------------------------- +Type: Accessory +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +32227# +It imitates the chain that holds Fenrir together, which is said to swallow everything. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Enables the use of Level 1 Teleport. +-------------------------- +When equipped with Vanargand Helm: +Refine Level of Vanargand Helm is +6 or higher: +Increases Attack Speed (Decreases After Attack Delay by additional 5%). +Decreases After Skill Delay by additional 5%. +ATK +5% +Ignores physical defense of all enemies by 25%. + +Refine Level of Vanargand Helm is +8 or higher: +Increases Attack Speed (Decreases After Attack Delay by additional 10%). +Decreases After Skill Delay by additional 10%. +ATK +5% +Ignores physical defense of all enemies by additional 25%. +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +32228# +Insignia once used by King Schmidt. +-------------------------- +ATK +10% +DEF +10 +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +ATK +25 +HIT +10 +-------------------------- +Type: Accessory +Position: Left +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +32229# +Insignia once used by King Schmidt. +-------------------------- +MATK +10% +DEF +10 +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +MATK +25 +Decreases Variable Casting Time by 8%. +-------------------------- +Type: Accessory +Position: Left +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +32230# +Insignia once used by King Schmidt. +-------------------------- +DEF +10 +Increases Critical Damage by 7%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +ATK +5% +Increases Critical Damage by 3%. +-------------------------- +Type: Accessory +Position: Left +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +32231# +Insignia once used by King Schmidt. +-------------------------- +DEF +10 +MaxHP +10% +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +MaxHP +5% +Decreases After Skill Delay by 5%. +-------------------------- +Type: Accessory +Position: Left +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +32232# +Insignia once used by King Schmidt. +-------------------------- +DEF +10 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +Critical +7 +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Type: Accessory +Position: Left +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +32233# +Insignia once used by King Schmidt. +-------------------------- +DEF +10 +Increases Ranged Physical Damage by 7%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +ASPD +1 +Increases Ranged Physical Damage by 3%. +-------------------------- +Type: Accessory +Position: Left +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +32234# +A ring with the power of the earth. +It carries a piece of \ + power. +-------------------------- +ATK +5%, MATK +5% +-------------------------- +Increases Damage against Wind and Earth elemental by 10%. +-------------------------- +Decreases damage taken from Wind and Earth elemental attacks by 5%. +-------------------------- +When equipped with any Warrior weapon: +Increases Damage against monsters of Brute and Plant race by 20%. +Increases damage against Wind and Earth elemental by additional 20%. +-------------------------- +When enchanted with Tenchi: +Increases Damage against monsters of Brute and Plant race by additional 15%. +Increases damage against Wind and Earth elemental by additional 15%. +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +32237# +An exquisite brooch made by top class craftsman. It was belong to Celine for a long time. +-------------------------- +MATK +5% +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Evil Thread Glove: +ATK +50 +MATK +50 +ASPD +1 +-------------------------- +When equipped with Celine's Ribbon: +Decreases Fixed Casting Time by 0.3 seconds. +-------------------------- +For each Refine Level of Celine's Ribbon: +MATK +10 +-------------------------- +Refine Level of Celine's Ribbon is +7 or higher: +Increases Magical Damage against monsters of Demi-Human and Demon race by 10%. +-------------------------- +Refine Level of Celine's Ribbon is +9 or higher: +Increases Water, Wind, Earth, Fire and Neutral elemental magics damage by 10%. +-------------------------- +Refine Level of Celine's Ribbon is +11 or higher: +Increases Magical Damage against monsters of Boss class by 20%. +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +32238# +A ring, enchanted with the power of the Fate Stone, that is one of the three keys for theseal which binds Morpheus. +-------------------------- +INT +3 +MaxSP +5% +-------------------------- +When equipped with Illusion Morpheus's Bracelet: +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Accessory +Position: Right +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +All Jobs except Novice +# +32239# +A bracelet, rumored to be a memento of Morpheus's beloved, that is one of the three keys for the seal which binds Morpheus. +-------------------------- +INT +3 +MaxSP +5% +-------------------------- +When equipped with Illusion Morpheus's Ring: +MATK +10% +-------------------------- +Type: Accessory +Position: Left +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +32242# +A ring with omnious power. +It seems that the spirit of the master is resonating with the power nearby. +-------------------------- +MDEF +10 +-------------------------- +Decreases damage taken from Players by 3%. +-------------------------- +When equipped with Old Wind Whisper: +Enable to use Level 3 Trample. +-------------------------- +When equipped with Old Shadow Handicraft: +Increases damage of Triangle Shot by 70%. +-------------------------- +When equipped with Old Protect of Crown: +Increases damage of Cannon Spear by 70%. +-------------------------- +When equipped with Old Driver Band(Red) or Old Driver Band(Yellow): +Increases damage of Cold Slower and Flare Launcher by 70%. +-------------------------- +When equipped with Old Dying Swan: +Prevents Stun status. +-------------------------- +When equipped with Old Blazing Soul: +Increases damage of Lightning Ride by 70%. +-------------------------- +When equipped with Old Circlet of Bone: +Increases STR by 200 for 10 seconds after casting Counter Slash. +-------------------------- +When equipped with Old Magic Stone Hat: +MATK +100, +Decreases Crimson Rock skill cooldown by 0.5 seconds. +-------------------------- +When equipped with Old Midas Whisper: +Decreases Variable Casting Time of Mandragora Howling by 100%. +-------------------------- +When equipped with Old Mitra: +MaxHP +50% +-------------------------- +When equipped with Old Minstrel Song Hat: +Prevents Frozen status. +-------------------------- +When equipped with Old Camo Rabbit Hat: +Critical +70, +Increases Critical Damage by 70%. +-------------------------- +When equipped with Old Rune Circlet: +Decreases Fixed Casting Time of Storm Blast by 100%. +-------------------------- +Type: Accessory +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +32246# +A replica of the device used in the main memory of a machine reassembled for adventurers. +-------------------------- +INT +3, DEX +3 +-------------------------- +When equipped with Vesper Headgear: +Decreases Variable Casting Time by 20%. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +32247# +One of the constellations around the ecliptic, the ring with the power of Leo. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +MaxSP +100 +-------------------------- +ATK +5% +-------------------------- +Decreases SP Consumption of Sky Net Blow by 2. +-------------------------- +Decreases Power Absorb skill cooldown by 1.5 seconds. +-------------------------- +When equipped by Sura: +Increases Attack Speed (Decreases After Attack Delay by additional 5%). +ATK +5% +Increases damage of Sky Net Blow by 50%. +-------------------------- +This item can only be sold to NPCs and moved to storage. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +32248# +Medal awarded to those responsible for the safety of the Einbech mine. +A very rare medal that has never been awarded. +-------------------------- +All Stats +5 +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When equipped with Safety Epolet R: +MaxHP +10% +Increases Attack Speed (Decreases After Attack Delay by 15%). +-------------------------- +When equipped with Safety Epolet B: +MaxHP +10% +Decreases Variable Casting Time by 15%. +-------------------------- +When equipped with Safety Epolet R or Safety Epolet B and Einbech Weapons: +Decreases Fixed Casting Time by 0.3 seconds. +Decreases After Skill Delay by 7%. +Decreases Physical and Magical Damage taken from all size enemies by 3%. +-------------------------- +Type: Accessory +Position: Right +Defense: 10 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +32249# +Medal awarded to those responsible for the safety of the Einbech mine. +A very rare medal that has never been awarded. +-------------------------- +All Stats +5 +Decreases Variable Casting Time by 5%. +-------------------------- +When equipped with Safety Epolet B: +MaxHP +10% +Decreases Variable Casting Time by additional 15%. +-------------------------- +When equipped with Safety Epolet R: +MaxHP +10% +Increases Attack Speed (Decreases After Attack Delay by 15%). +-------------------------- +When equipped with Safety Epolet R or Safety Epolet B and Einbech Weapons: +Decreases Fixed Casting Time by 0.3 seconds. +Decreases After Skill Delay by 7%. +Decreases Physical and Magical Damage taken from all size enemies by 3%. +-------------------------- +Type: Accessory +Position: Right +Defense: 10 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +32250# +Epaulets awarded to those responsible for the safety of the Einbech mine. +A very rare strap that has never been awarded. +-------------------------- +ATK +5% +-------------------------- +Type: Accessory +Position: Left +Defense: 10 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +32251# +Epaulets awarded to those responsible for the safety of the Einbech mine. +A very rare strap that has never been awarded. +-------------------------- +MATK +5% +-------------------------- +Type: Accessory +Position: Left +Defense: 10 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +32252# +A clip for top adventurers on a new adventure. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Accessory +Defense: 2 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +32258# +A ring that carries the power of a giant star. It is said wearing this ring will grant you powers. +-------------------------- +Enables the use of Level 5 Blessing. +-------------------------- +When equipped as Accessory Right: +For each 10 base LUK: +ATK +15, MATK +15 + +Base LUK at least 125: +Increases Damage against monsters of Boss class by 15%. +-------------------------- +When equipped as Accessory Left: +For each 10 base VIT: +MaxHP +2%, MaxSP +2% + +Base VIT at least 125: +DEF +300, MDEF +50 +Decreases damage taken from Demi-Human and Doram players by 3%. +-------------------------- +Type: Accessory +Defense: 2 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +32263# +A ring worn by the Holy Knight who served the Rune Midgarts Kingdom. +-------------------------- +STR +5 +INT +5 +DEX +5 +ATK +5% +-------------------------- +When Level 5 Earth Drive is learned: +Decreases After Skill Delay by 30%. +-------------------------- +When Level 5 Inspiration is learned: +Decreases Earth Drive skill cooldown by 1.5 seconds. +-------------------------- +When Level 5 Devotion is learned: +STR +5 +INT +5 +DEX +5 +ATK +100 +-------------------------- +When Level 5 Pinpoint Attack is learned: +Decreases Variable Casting Time of Earth Drive by 0.5 seconds. +Decreases SP Consumption of Earth Drive by 25. +-------------------------- +Type: Accessory +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +32300# +A mutated weapon enhanced by the magical power. +Even with the same appearance, its performance is said to be different. +-------------------------- +Decreases damage taken from Players by 30%. +-------------------------- +Refine Level +7: +ATK +5% +Decreases damage taken from Players by 5%. +-------------------------- +Refine Level +9: +ATK +5% +Decreases damage taken from Players by 5%. +-------------------------- +When equipped with Labyrinth Doppelganger Card: +Increases Attack Speed (Decreases After Attack Delay by 10%). +ATK +10% +-------------------------- +Type: Revolver +Attack: 70 +Weight: 35 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 165 +Rebellion +# +32301# +A decorative, beautiful golden revolver that commands attention. +-------------------------- +HIT -10 +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases damage of Desperado by 40%. +-------------------------- +Refine Level +9: +Decreases Heat Barrel skill cooldown by 5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Fire Dance by 30%. +-------------------------- +When equipped with Illusion Hot Blood Headband: +ATK +30 +-------------------------- +Refine Level of Illusion Gold Lux andIllusion Hot Blood Headband each is +7 or higher: +ATK +5% +-------------------------- +Total Refine Level of entire set at least +18: +Decreases damage taken from Small and Medium size by 20%. +-------------------------- +Total Refine Level of entire set at least +22: +Random chance to increase ATK by 100 and Ranged Physical Damage by 15% for 10 sec when using Fire Dance. +-------------------------- +Type: Revolver +Attack: 160 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Rebellion +# +32302# +Revolver decorated with red roses that only master of firearms can wield. +It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +7: +ASPD +1 +ATK +5% +-------------------------- +Refine Level +9: +Increases Critical Damage by 20%. +-------------------------- +Refine Level +11: +Random chance to increase Critical +20 and Ranged Physical Damage by 15% for 60 sec when using Heat Barrel. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase DEX +20 and Ranged Physical Damage by 10% for 7 sec when dealing physical damage. +-------------------------- +Type: Revolver +Attack: 150 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +32303# +It was modified to launch other objects than +the nails used to in the Einbech mine. +-------------------------- +Increases Ranged Physical Damage by 15%. +Increases damage of Fire Dance by 15%. +-------------------------- +Refine Level +7: +ATK +60 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases damage of Fire Dance by additional 20%. +Physical attacks have a chance to increase physical damage against all size enemies by 20% for 10 seconds. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 20%. +-------------------------- +Type: Revolver +Attack: 200 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Rebellion +# +32304# +This gun was smuggled into the Glastheim Castle. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +Increases Ranged Physical Damage by 15%. +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Increases damage of Fire Dance by 20%. +-------------------------- +Refine Level +11: +Decreases Heat Barrel skill cooldown by 5 second. +Increases Physical Damage against enemies of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +ATK +30 +Physical attacks have a chance to increase Ranged Physical Damage by additional 10% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Physical Damage against enemies of Holy and Undead elemental by 20%. +-------------------------- +Type: Revolver +Attack: 150 +Weight: 170 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Rebellion +# +32350# +A sword bestowed to those who fulfill the divine will of God. +-------------------------- +MATK +180 +-------------------------- +Increases damage of Pressure by 40%. +-------------------------- +For each Refine Level: +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +9: +Increases damage of Genesis Ray by 30%. +-------------------------- +Refine Level +11: +Increases damage of Pressure by 20%. +Increases damage of Genesis Ray by 20%. +-------------------------- +Type: One-handed Sword +Attack: 130 +Weight: 110 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Royal Guard +# +32351# +A sword that can withstand powerful explosion. +-------------------------- +Decreases Spore Explosion skill cooldown by 1 second. +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Increases damage of Spore Explosion by 30%. +-------------------------- +Refine Level +11: +Increases damage of Spore Explosion by 20%. +-------------------------- +Type: One-Handed Sword +Attack: 195 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Genetic +# +32352# +A sword designed to light the way in mines and use it for self defense. +It can also shine when there is danger nearby. +-------------------------- +ATK +10% +Increases damage of Cart Cannon by 10%. +-------------------------- +Refine Level +7: +ATK +40 +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Cart Cannon by additional 15%. +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 20%. +-------------------------- +Type: One-Handed Sword +Attack: 200 +Weight: 250 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Genetic +# +32353# +A ceremonial sword used by the Glastheim Guards. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +MATK +180 +-------------------------- +For each Refine Level: +MaxHP +1% +Increases damage of Grand Cross by 2%. +-------------------------- +Refine Level +9: +Increases damage of Shield Press by 20%. +-------------------------- +Refine Level +11: +Increases Damage against monsters of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +Physical and magical attacks have a chance to increase ATK and MATK by 7% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Damage against Holy and Undead elemental by 20%. +-------------------------- +Type: One-Handed Sword +Attack: 130 +Weight: 400 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Royal Guard +# +32401# +A thick iron stick used for decorative purposes in Glastheim. +It's an ordinary weapon with nothing special, but it is influenced by the magical power of Himelmez. +-------------------------- +Indestructible in battle +-------------------------- +ATK +5% +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +9: +Increases damage of Arms Cannon and Knuckle Boost by 20%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +ATK +30 +Physical attacks have a chance to increase Ranged Physical Damage by additional 10% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Physical Damage against enemies of Holy and Undead elemental by 20%. +-------------------------- +Type: Mace +Attack: 220 +Weight: 500 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Mechanic +# +32402# +A laboratory syringes used in the Glastheim Institute. +It was made to heal people, but it is influenced by the magical power of Himelmez. +-------------------------- +Indestructible in battle +-------------------------- +ATK +5% +-------------------------- +For each Refine Level: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +9: +Increases damage of Cart Cannon and Spore Explosion by 20%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +ATK +30 +Physical attacks have a chance to increase Ranged Physical Damage by additional 10% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Physical Damage against enemies of Holy and Undead elemental by 20%. +-------------------------- +Type: Mace +Attack: 210 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Genetic +# +32403# +Crafting Staff used by Glastheim Researchers. +Although beautiful in shape, but it is influenced by the magical power of Himelmez. +-------------------------- +Indestructible in battle +-------------------------- +ATK +5% +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +9: +Increases damage of Crazy Weed by 20%. +Decreases Crazy Weed skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Undead and Angel race by 20%. +-------------------------- +When equipped with King Schmidt's Suit and King Schmidt's Manteau: +ATK +30 +Physical attacks have a chance to increase Ranged Physical Damage by additional 10% for 10 seconds. +-------------------------- +Total Refine Level of entire set at least +30: +Increases Physical Damage against enemies of Holy and Undead elemental by 20%. +-------------------------- +Type: Mace +Attack: 200 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Genetic +# +35000# +Ultimate Iced Milk Tea Bliss! Savor the rich aroma of tea, served with chewy boba and premium cream cheese! +Restores approximately 325 HP +Warning! Consume in moderation—it's so delicious, you might get addicted! +-------------------------- +The item will be removed after December 31, 2024. +-------------------------- +Cannot be traded. +Weight: 3 +# +35001# +Peach Tea with Cream Cheese! Loaded with juicy peach chunks, topped with a secret recipe of delicious cream cheese! +Restores approximately 60 SP +Warning! Consume in moderation—it's so delicious, you might get addicted! +-------------------------- +The item will be removed after December 31, 2024. +-------------------------- +Cannot be traded. +Weight: 10 +# +35002# +A weak medicinal flame which heals wounds. +Recovers a little HP. +-------------------------- +Weight: 1 +# +100000# +If you put 1 Jellopy, Fluff, and Shell, you can get 1 of 3 items: Garlet, Scell, and Zargon. +-------------------------- +Weight: 1 +# +100003# +A glow-type resonance stone that resonates with powerful weapons empowered by the power of illusion. +Physical options can be bestowed to Level 4 Illusion Weapons. +-------------------------- +Weight: 0 +# +100004# +A deep blue resonance stone that can resonate with powerful weapons with the power of illusion. +Magical options can be bestowed to Level 4 Illusion Weapons. +-------------------------- +Weight: 0 +# +100005# +A small bottle containing a sap from the petals of the Yggdrasil Tree. +It is saied to be beneficial in regenerating mana. +-------------------------- +Effect: +Recovers 5% MaxSP every 5 seconds for 60 minutes. +This effect does not activate while in Berserk status. +The movement speed also increases for 10 minutes. +-------------------------- +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +# +100006# +A scroll that helps to increase the survival rate by greatly increasing the physical and magical defense for a certain period of time. +-------------------------- +Effect: +DEF +500, MDEF +200 for 60 minutes. +The movement speed also increases for 10 minutes. +-------------------------- +Weight: 1 +# +100007# +A booster that activates energy in the body and greatly improves power. +-------------------------- +Effect: +ATK/MATK +30, ATK/MATK +1%, +HIT/FLEE +30, ASPD +1, +Decreases SP Consumption by 5%. +Decreases Fixed Casting Time of all skills 30%. +(Only the highest effect of increase/decrease percentage effect is applied to Fixed Casting Time.) +The movement speed also increases for 10 minutes. +-------------------------- +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +# +100008# +An Infinity Drink which you can feel infinite energy from. +-------------------------- +Effect: +MaxHP +5%, MaxSP +5% for 60 minutes. +Increases critical, long range physical and Magical Damage with every element by 5%. +Casting cannot be interupted. +Increased Movement Speed for 10 minutes. +-------------------------- +Item effects will also disappear when the character dies. +-------------------------- +Weight: 1 +# +100009# +Souvenir that embodies the joy of victory. +Victory Wing Ears[1] can be given an Random Option. +-------------------------- +The Joy of Victory can be obtained from +[Cat Salesman Nyarom]itemmall,41,50,0,100,0,0, +by using Silvervine Cat Fruit or Zeny. +-------------------------- +[Enchantable Item] +Victory Wing Ears[1] +-------------------------- +Weight: 1 +# +100010# +Perfect Size Shadow Thump Box. +-------------------------- +If you combine 3 of any of the following Shadow Equipments which are refined to +7 or higher, you can obtain 1 Perfect Size Shadow Weapon or Perfect Size Shadow Armor. +Large Shadow Weapon +Large Shadow Armor +Medium Shadow Weapon +Medium Shadow Armor +Small Shadow Weapon +Small Shadow Armor +-------------------------- +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +100011# +Magic Piercing Shadow Weapon Thump Box. +-------------------------- +If you combine 2 of any of the following Shadow Equipments which are refined to +7 or higher, you obtain one of these randomly. +Magic Executioner +Magic Exorcist +Magic Hunting +Magic Insect Net +Magic Fishing +Magic Dragon Killer +Magic Corrupted +Magic Vibration +Magic Holy Water +Magic Scissor Shadow Weapon +-------------------------- +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +100019# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +Soul Reaper Stone(Garment) +Star Emperor Stone(Garment) +Kagerou Stone(Garment) +Oboro Stone(Garment) +Rebellion Stone(Garment) +Doram Stone(Garment) +and 15 enchantment stones more have been added. +Stones from existing costume enchant stone boxes can also be obtained with a relatively low chance. +-------------------------- +Weight: 1 +# +100020# +Box containing the treasure of Don Cristal Chino. +You can acquire one of the following items: +-------------------------- +[Obtainable Items] +Costume Poring Beret +Costume Heart Hairpin +Costume Sunday Hat +Costume School Criatura Hat +2019 Superstar R Ticket +2019 Superstar R Ticket Box +[Event] White Slim Potion Box +Crystal Blue +Rough Oridecon +-------------------------- +Weight: 10 +# +100021# +A box containing the treasure of the Family Crystal. +You can acquire one of the following items: +-------------------------- +[Obtainable Items] +Costume Heart Hairpin +Costume Sunday Hat +Costume School Criatura Hat +2019 Superstar R Ticket +2019 Superstar R Ticket Box +[Event] White Slim Potion Box +Crystal Blue +Rough Oridecon +-------------------------- +Weight: 10 +# +100022# +A box containing the treasure of the Minion Crystal. +You can acquire one of the following items: +-------------------------- +[Obtainable Items] +Costume Heart Hairpin +Costume Sunday Hat +Costume School Criatura Hat +2019 Superstar R Ticket +2019 Superstar R Ticket Box +[Event] White Slim Potion Box +Crystal Blue +Rough Oridecon +-------------------------- +Weight: 10 +# +100023# +Valor of Ancient Heroes, eliciting the power of the Ancient Hero Weapons. +These 36 weapons of Ancient Heroes can be given physical options. +-------------------------- +Royal Bow, +Narcissus Bow +Shadow Staff +Iron Nail +Mado Sword +Red Lotus Sword +Avenger +Iron Staff +Oriental Sword +Aquatic Spear +Exorcist's Bible +Katar of Shiver +One Sky One Sun +Spirit Pendulum +Meowmeow Foxtail +Crimson Rose +Master Soul Rifle +Demon Slayer Shot +Golden Lord Launcher +The Black +Surudoi Kaze +Kiri no Tsuyu +Clarity Huuma Shuriken +Dragonic Slayer +Light Blade +Slate Sword +Trumpet Shell +Barbed Wire Whip +Meteor Striker +Blade Katar +Scarlet Dragon Leather Bow +Fatalist +Ray Knuckle +Saint Mace +Blue crystal Staff +Chilling Cane +-------------------------- +Weight: 1 +# +100024# +Available for 7 days. +Increases experience gained by 20%. +Increases bonus experience gained by 20%. +Increases item drop rate by 20%. +Increases bonus item drop rate by 20%. +Increases maximum storage capacity by 300 slots. +Decreases death penalty by 50%. +-------------------------- +Weight: 0 +# +100025# +Wisdom of Ancient Heroes, eliciting the power of the Ancient Hero Weapons. +These 36 weapons of Ancient Heroes can be given magical options. +-------------------------- +Royal Bow, +Narcissus Bow +Shadow Staff +Iron Nail +Mado Sword +Red Lotus Sword +Avenger +Iron Staff +Oriental Sword +Aquatic Spear +Exorcist's Bible +Katar of Shiver +One Sky One Sun +Spirit Pendulum +Meowmeow Foxtail +Crimson Rose +Master Soul Rifle +Demon Slayer Shot +Golden Lord Launcher +The Black +Surudoi Kaze +Kiri no Tsuyu +Clarity Huuma Shuriken +Dragonic Slayer +Light Blade +Slate Sword +Trumpet Shell +Barbed Wire Whip +Meteor Striker +Blade Katar +Scarlet Dragon Leather Bow +Fatalist +Ray Knuckle +Saint Mace +Blue crystal Staff +Chilling Cane +-------------------------- +Weight: 1 +# +100026# +Available for 7 days. +Increases item drop rate by 100%. +Increases experience gained by 25%. +-------------------------- +Weight: 0 +# +100029# +A specially prepared box for beginners. +It contains the following items: +-------------------------- +1x Booster Call +200x [Event] Novice Potion +1x [Event] Infinite Fly Wing Box(7 Days) +30x Novice Butterfly Wing +2x [Event] Blue Potion Box(10) +30x Novice Magnifier +2x [Event] Concentration Potion +5x Quiver +1x Costume Beginner Rabbit Hood +1x Costume Beginner Black Backpack +1x Starter Armor Box +1x Metal Weapon Exchange Ticket +1x Booster Pack(15) +-------------------------- +Weight: 0 +Requirement: +Base Level 1 +# +100030# +A specially prepared box for beginners. +It contains the following items: +-------------------------- +4x [Event] Orange Potion Box(20) +1x [Event] Boarding Halter Box(30 Days) +3x [Event] Blue Potion Box(10) +5x [Event] Concentration Potion +5x Quiver +4x Booster Coin +1x Booster Pack(30) +-------------------------- +Weight: 0 +Requirement: +Base Level 15 +# +100031# +A specially prepared box for beginners. +It contains the following items: +-------------------------- +8x [Event] Orange Potion Box(20) +4x [Event] Blue Potion Box(10) +5x Growth Potion(Small) +5x Job Potion +5x Quiver +1x Metal Weapon +7 Refinement Ticket +8x Booster Coin +10x World Tour Ticket +1x Booster Pack(45) +-------------------------- +Weight: 0 +Requirement: +Base Level 30 +# +100032# +A specially prepared box for beginners. +It contains the following items: +-------------------------- +4x [Event] Yellow Potion Box(20) +5x [Event] Blue Potion Box(10) +2x [Event] Awakening Potion +5x Quiver +10x Booster Coin +10x World Tour Ticket +1x Booster Pack(60) +-------------------------- +Weight: 0 +Requirement: +Base Level 45 +# +100033# +A specially prepared box for beginners. +It contains the following items: +-------------------------- +8x [Event] Yellow Potion Box(20) +6x [Event] Blue Potion Box(10) +5x [Event] Almighty +5x [Event] Power Booster +5x [Event] Infinity Drink +1x Temporal Trancendent Shadow Box +15x Booster Coin +10x World Tour Ticket +1x Booster Pack(75) +-------------------------- +Weight: 0 +Requirement: +Base Level 60 +# +100034# +A specially prepared box for beginners. +It contains the following items: +-------------------------- +4x [Event] White Potion Box(20) +7x [Event] Blue Potion Box(10) +20x [Event] Red Booster +1x [Event] Three Master Package (20) +5x Growth Potion(Medium) +5x Job Potion +20x Booster Coin +10x World Tour Ticket +1x Booster Pack(90) +-------------------------- +Weight: 0 +Requirement: +Base Level 75 +# +100035# +A specially prepared box for beginners. +It contains the following items: +-------------------------- +8x [Event] White Potion Box(20) +1x [Event] Infinite Fly Wing Box(7 Days) +8x [Event] Blue Potion Box(10) +5x [Event] Almighty +5x [Event] Power Booster +5x [Event] Infinite Drink +22x Booster Coin +10x World Tour Ticket +1x Booster Pack(100) +-------------------------- +Weight: 0 +Requirement: +Base Level 90 +# +100036# +A specially prepared box for beginners. +It contains the following items: +-------------------------- +1x [Event] Three Master Package (20) +1x [Event] Brilliant Protection Scroll Box(20) +9x [Event] Blue Potion Box(10) +1x [Event] Infinite Fly Wing Box(7 Days) +1x [Event] Boarding Halter Box(30 Days) +20x [Event] Red Booster +1x (Event) Episode 16 Clear Ticket +1x Biting Rideword +1x Booster Weapon Voucher +1x Booster Armor Voucher +1x Booster Weapon Upgrade Package +3x Booster Armor Upgrade Package +25x Booster Coin +10x World Travel Ticket +1x Booster Pack(115) +-------------------------- +Weight: 0 +Requirement: +Base Level 100 +# +100037# +A specially prepared box for beginners. +It contains the following items: +-------------------------- +10x [Event] Blue Potion Box(10) +5x [Event] Almighty +5x [Event] Power Booster +5x [Event] Infinity Drink +5x Growth Potion(Advanced) +10x Job Potion +2x [Event] Advanced Battle Manual +30x Booster Coin +1x Booster Pack(130) +-------------------------- +Weight: 0 +Requirement: +Base Level 115 +# +100038# +A specially prepared box for beginners. +It contains the following items: +-------------------------- +2x [Event] Three Master Package(20) +2x [Event] Brilliant Protection Scroll Box(20) +40x [Event] Small Mana Potion +40x [Event] Red Booster +3x [Event] Inventory Expansion Voucher +32x Booster Coin +10x World Tour Ticket +1x Booster Pack(145) +-------------------------- +Weight: 0 +Requirement: +Base Level 130 +# +100039# +A specially prepared box for beginners. +It contains the following items: +-------------------------- +10x [Event] Almighty +10x [Event] Power Booster +10x [Event] Infinity Drink +2x [Event] Advanced Battle Manual +36x Booster Coin +10x World Tour Ticket +1x Booster Pack(160) +-------------------------- +Weight: 0 +Requirement: +Base Level 145 +# +100040# +A specially prepared box for beginners. +It contains the following items: +-------------------------- +3x [Event] Three Master Package(20) +3x [Event] Brilliant Protection Scroll Box(20) +60x [Event] Small Mana Potion +60x [Event] Red Booster +3x [Event] Inventory Expansion Voucher +5x Growth Potion(Superior) +2x [Event] Advanced Battle Manual +40x Booster Coin +10x World Tour Ticket +1x Booster Pack(175) +-------------------------- +Weight: 0 +Requirement: +Base Level 160 +# +100041# +A specially prepared box for beginners. +It contains the following items: +-------------------------- +10x [Event] Almighty +10x [Event] Power Booster +10x [Event] Infinity Drink +2x [Event] Advanced Battle Manual +44x Booster Coin +10x World Tour Ticket +1x Booster Pack(185) +-------------------------- +Weight: 0 +Requirement: +Base Level 175 +# +100042# +A specially prepared box for beginners. +It contains the following items: +-------------------------- +1x Goal Achievement Gift Box +-------------------------- +Weight: 0 +# +100043# +A package that can refine Booster Armors that cannot be refined normally. +Attack/Ranged/Elemental/Default Booster Set Armor can be refined up to +10. +-------------------------- +Attack Booster Plate[1] +Attack Booster Manteau[1] +Attack Booster Graves[1] +Ranged Booster Suit[1] +Ranged Booster Manteau[1] +Ranged Booster Boots[1] +Elemental Booster Robe[1] +Elemental Booster Muffler[1] +Elemental Booster Shoes[1] +Default Booster Robe[1] +Default Booster Muffler[1] +Default Booster Shoes[1] +Weight: 0 +# +100044# +A package to easily refine Boosting Weapons. +You can refine your Boosting Weapon to +10. +-------------------------- +Boosting Two-Handed Sword[2] +Boosting Axe[2] +Boosting Katar[2] +Boosting Staff[2] +Boosting Hole[2] +Boosting Bow[2] +Boosting Sphere[2] +Boosting Sword[2] +Boosting Dagger[2] +Boosting Spellbook[2] +Boosting Knuckle[2] +Boosting Guitar[2] +Boosting Whip[2] +Boosting Nendo[2] +Boosting Gatling[2] +Boosting Text[2] +Boosting Soul Road[2] +Boosting Foxtail[2] +Weight: 0 +# +100045# +A box containing the High Adventurer set. +All of the following items are included: +-------------------------- +High Adventurer Suit[1] +High Adventurer Hood[1] +High Adventurer Sandals[1] +High Adventurer Clip[1] +-------------------------- +Weight: 0 +# +100046# +A box containing Attack Booster equipment specialized for melee physical attacks. +All of the following items are included. +-------------------------- +Attack Booster Plate[1] +Attack Booster Manteau[1] +Attack Booster Greaves[1] +Attack Booster Ring[1] +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 100 +# +100047# +A box containing Ranged Booster equipment specialized for ranged physical attacks. +All of the following items are included. +-------------------------- +Ranged Booster Suit[1] +Ranged Booster Manteau[1] +Ranged Booster Boots[1] +Ranged Booster Brooch[1] +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 100 +# +100048# +A box containing Elemental Booster equipment specialized for water, wind, earth, fire and neutral magical attacks. +All of the following items are included. +-------------------------- +Elemental Booster Robe[1] +Elemental Booster Muffler[1] +Elemental Booster Shoes[1] +Elemental Booster Earring[1] +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 100 +# +100049# +A box containing Default Booster equipment specialized for ghost, holy, shadow, undead and poison magical attacks. +All of the following items are included. +-------------------------- +Default Booster Robe[1] +Default Booster Muffler[1] +Default Booster Shoes[1] +Default Booster Earring[1] +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 100 +# +100050# +A box given to adventurers who have achieved the goal. +You can get one of the four costume items below. +-------------------------- +Costume Wind Milestone +Costume Stripe Hat +Costume Skull Cap +Costume Poring Beret +-------------------------- +Weight: 0 +Requirement: +Base Level 99 +# +100051# +A silver box with the workds +\ +-------------------------- +engraved on the floor. +It contains the following items: +-------------------------- +50x [Event] Level 10 Blessing Scroll +50x [Event] Level 10 Increase Agility Scroll +30x [Event] Small Life Potion +30x [Event] Medium Life Potion +30x [Event] Mysterious Life Potion +20x [Event] Almighty +20x [Event] Power Booster +20x [Event] Infinity Drink +20x [Event] Small Mana Potion +20x World Tour Ticket +20x Booster Coin +-------------------------- +Weight: 1 +# +100052# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +Ranger Stone II(Garment) +Mechanic Stone II(Garment) +Arch Bishop Stone II(Garment) +and 9 enchantment stones more have been added. +Stones from existing costume enchant stone boxes can also be obtained with a relatively low chance. +-------------------------- +Weight: 1 +# +100053# +Piercing Shadow Weapon Box. +-------------------------- +If you combine 2 of any of the following Shadow Equipments which are refined to +7 or higher, you can obtain one of these randomly: +Executioner +Exorcist +Hunting +Insect Net +Fishing +Dragon Killer +Corrupted +Vibration +Holy Water +Scissor Shadow Weapon +-------------------------- +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +100054# +A box containing the Temporal Transcendent Shadow equipment. +All of the following items are included: +-------------------------- +Temporal Transcendent Shadow Armor +Temporal Transcendent Shadow Shield +Temporal Transcendent Shadow Weapon +Temporal Transcendent Shadow Shoes +Temporal Transcendent Shadow Earring +Temporal Transcendent Shadow Pendant +-------------------------- +Weight: 0 +# +100058# +Hasty Shadow Weapon Box. +-------------------------- +If you combine 2 of either Hasty Shadow Armor, Hasty Shadow Shoes or Hasty Shadow Shoes II which are refined to +7 or higher, you can obtain 1 Hasty Shadow Weapon. +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +100060# +A thump box that exchanges Costumes for a random Costume Enchant Stone Boxes. +You can get 21 kinds of costumes you can buy in April. You can get one of the following Enchant Stone Boxes. +-------------------------- +Costume Enchant Stone Box 13 +Costume Enchant Stone Box 14 +Costume Enchant Stone Box 15 +Costume Enchant Stone Box 16 +Costume Enchant Stone Box 17 +Costume Enchant Stone Box 18 +Costume Enchant Stone Box 19 +-------------------------- +You can exchange the following Costumes: +-------------------------- +Costume White Rabbit Ears +Costume Autumn Headband +Costume Hopping Rabbit +Costume Orange Halloween Hat +Costume Vampire Hairband +Costume Black Witch Hat +Costume Diabolic Headphone +Costume Poporing Muffler +Costume Princess Ribbon Crown +Costume Lunatic Shawl +Costume Rabbit Knit Hat +Costume Snow Bear Hood +Costume Cat Coffee Cup +Costume Punkish Cat Ears +Costume Cat Heart +Costume Twin Margaret +Costume Black Rabbit Bonnet +Costume White Dog Doll +Costume Panda Rabbit +Costume Fox Doll +Costume Full Bloom Cherry Tree +-------------------------- +Weight: 1 +# +100061# +Red booster that activates energy in the body and assists in combat. Be careful as it is a little burdensome on your physical strength. +-------------------------- +ATK and MATK +30, +Increases Attack Speed (Decreases After Attack Delay by 5%), +Decreases Variable Casting Time by 5%, +MaxHP and MaxSP -10% for 10 minutes. +Physical or magical attacks have a certain chance to auto cast Level 3 Improve Concentration. (If you learned a higher Level, it will auto cast that Level instead.) +-------------------------- +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +100065# +An essential magic book for the Warlock Skill Reading Spell Book. +Magic Power can be drawn out by reading the words written in this book. +It's written about the Water element magic, Storm Gust. +-------------------------- +Weight: 0 +# +100066# +An essential magic book for the Warlock Skill Reading Spell Book. +Magic Power can be drawn out by reading the words written in this book. +It's written about the Wind element magic, Lord of Vermillion. +-------------------------- +Weight: 0 +# +100067# +An essential magic book for the Warlock Skill Reading Spell Book. +Magic Power can be drawn out by reading the words written in this book. +It's written about the Fire element magic, Meteor Storm. +-------------------------- +Weight: 0 +# +100068# +An essential magic book for the Warlock Skill Reading Spell Book. +Magic Power can be drawn out by reading the words written in this book. +It's written about the Neutral element magic, Drain Life. +-------------------------- +Weight: 0 +# +100069# +An essential magic book for the Warlock Skill Reading Spell Book. +Magic Power can be drawn out by reading the words written in this book. +It's written about the Water element magic, Jack Frost. +-------------------------- +Weight: 0 +# +100070# +An essential magic book for the Warlock Skill Reading Spell Book. +Magic Power can be drawn out by reading the words written in this book. +It's written about the Earth element magic, Earth Strain. +-------------------------- +Weight: 0 +# +100071# +An essential magic book for the Warlock Skill Reading Spell Book. +Magic Power can be drawn out by reading the words written in this book. +It's written about the Fire element magic, Crimson Rock. +-------------------------- +Weight: 0 +# +100072# +An essential magic book for the Warlock Skill Reading Spell Book. +Magic Power can be drawn out by reading the words written in this book. +It's written about the Wind element magic, Chain Lightning. +-------------------------- +Weight: 0 +# +100073# +An essential magic book for the Warlock Skill Reading Spell Book. +Magic Power can be drawn out by reading the words written in this book. +It's written about the Neutral element magic, Comet. +-------------------------- +Weight: 0 +# +100074# +An essential magic book for the Warlock Skill Reading Spell Book. +Magic Power can be drawn out by reading the words written in this book. +It's written about the magic with 4 elements, Tetra Vortex. +-------------------------- +Weight: 0 +# +100075# +Level 5 Assorted Cuisine +-------------------------- +Weight: 5 +# +100076# +Level 6 Assorted Cuisine +-------------------------- +Weight: 5 +# +100077# +Level 7 Assorted Cuisine +-------------------------- +Weight: 5 +# +100078# +Level 8 Assorted Cuisine +-------------------------- +Weight: 5 +# +100079# +Level 9 Assorted Cuisine +-------------------------- +Weight: 5 +# +100080# +Level 10 Assorted Cuisine +-------------------------- +Weight: 5 +# +100081# +A manual that describes more efficient combat methods. If I do what I say, I think I will grow faster for some reason. +-------------------------- +Increases experience gained by 200% for 60 minutes. +Warning: Different types of battle manuals and effects do not stack. +-------------------------- +Weight: 0 +# +100087# +A box containing 1 Boarding Halter. Can be used for 30 days. +-------------------------- +A mysterious halter that can be used to summon a creature to ride on it. +The type of creature depends on the Class. +-------------------------- +Weight: 0 +# +100100# +A box containing a special manteau that responds to the power of time. +One of the following items is contained at random: +-------------------------- +Temporal STR Manteau[1] +Temporal AGI Manteau[1] +Temporal VIT Manteau[1] +Temporal INT Manteau[1] +Temporal DEX Manteau[1] +Temporal LUK Manteau[1] +-------------------------- +Weight: 10 +# +100109# +Lapine Thump Box II. +A mysterious box made by the Lapine Alchemy Association [The Gate of Truth] to compress extra items. +-------------------------- +You can get 2 Thump Boxes for combination that can combine various items. +-------------------------- +Caution! - The contents of Lapine Thump Box are subject to change without notice. +-------------------------- +Weight: 1 +# +100125# +A ticket that can enhance weapons made of steel. +If you choose one of the following weapons, you can get a +7 refined Weapon. +-------------------------- +Metal Two-Handed Sword[1] +Metal Lance[1] +Metal Mace[1] +Metal Two-Handed Axe[1] +Metal Dagger[1] +Metal Book[1] +Metal Staff[1] +Metal Katar[1] +Metal Bow[1] +-------------------------- +Weight: 0 +# +100127# +A box containing the appreciation of all those who develop and service Ragnarok. +The outside of the box is full of thank you notes. +There are rumors that there are golden seal cards, sealed seal cards, +9 Refine Tickets and mysterious eggs. +-------------------------- +Weight: 10 +# +100128# +A ticket for refining Noblesse equipment. +If you put the following equipment, you can get a +9 Noble Equipment. +-------------------------- +Noblesses Armor +Noblesses Manteau [1] +Noblesses Boots [1] +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 100 +# +100129# +A ticket for refining Imperial equipment. +If you put the following equipment, you can get a +9 Imperial Equipment. +-------------------------- +Imperial Armor +Imperial Manteau [1] +Imperial Boots [1] +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 125 +# +100130# +A ticket for refining Grace equipment. +If you put the following equipment, you can get a +9 Grace Equipment. +-------------------------- +Grace Armor +Grace Manteau [1] +Grace Boots [1] +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 150 +# +100131# +Permit to modify Imperial equipment. +Modifications specific to physical attacks are possible. +-------------------------- +[Enchantable Items] +Imperial Attack Manteau [1] +Imperial Attack Boots [1] +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 125 +# +100132# +Permit to modify Imperial equipment. +Modifications specific to magical attacks are possible. +-------------------------- +[Enchantable Items] +Imperial Magic Manteau [1] +Imperial Magic Boots [1] +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 125 +# +100133# +Permit to modify Grace Equipment. +Modifications specific to physical attacks are possible. +-------------------------- +[Enchantable Items] +Grace Attack Manteau [1] +Grace Attack Boots [1] +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 150 +# +100134# +Permit to modify Grace Equipment. +Modifications specific to magic attacks are possible. +-------------------------- +[Enchantable Items] +Grace Magic Manteau [1] +Grace Magic Boots [1] +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 150 +# +100135# +Permit to modify Imperial equipment. +Modifications specific to physical attacks are possible. +-------------------------- +[Enchantable Items] +Imperial Armor +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 125 +# +100136# +Permit to modify Imperial equipment. +Modifications specific to magical attacks are possible. +-------------------------- +[Enchantable Items] +Imperial Armor +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 125 +# +100137# +Permit to modify Grace Equipment. +Modifications specific to physical attacks are possible. +-------------------------- +[Enchantable Items] +Grace Armor +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 150 +# +100138# +Permit to modify Grace Equipment. +Modifications specific to magical attacks are possible. +-------------------------- +[Enchantable Items] +Grace Armor +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 150 +# +100142# +Orb containing the power of a stable dragon. +You can apply random options to the following items: +-------------------------- +[Enchantable Items] +Red Dragon Plate +Green Dragon Plate +Gold Dragon Plate +Purple Dragon Plate +Blue Dragon Plate +Silver Dragon Plate +-------------------------- +Weight: 1 +# +100144# +Orb that appears to be burning with the power of a dragon. +You can apply a random option to the following item: +-------------------------- +[Enchantable Items] +Dragon Scale Hood +-------------------------- +Weight: 1 +# +100145# +Thanks to the condensed dragon's power in this Burning Orb, +you can apply a random option to the following item: +-------------------------- +[Enchantable Items] +Dragon Scale Boots +-------------------------- +Weight: 1 +# +100147# +Bath products made with a special recipe by bath managers at the Varmundt mansion. +-------------------------- +Increases damage against monsters in Large Bath Meditathio by 5% for 15 minutes. +-------------------------- +Weight: 1 +# +100148# +Bath products made with a special recipe by bath managers at the Varmundt mansion. +-------------------------- +Increases damage against monsters in Large Bath Meditathio by 10% for 15 minutes. +-------------------------- +Weight: 1 +# +100149# +Bath products made with a special recipe by bath managers at the Varmundt mansion. +-------------------------- +Increases damage against monsters in Large Bath Meditathio by 15% for 15 minutes. +-------------------------- +Weight: 1 +# +100150# +Aroma oil for massage made from various herbs. It shows special effects in improving blood circulation and recovering from fatigue. +-------------------------- +Decreases damage taken from monsters in Large Bath Meditathio by 10% for 15 minutes. +-------------------------- +Weight: 1 +# +100151# +A Combination Scroll that explains how to craft Shadow Weapon Equipment that can increase the stats of a particular skill. +When equipped with a material, you can obtain 1 Skill Shadow Weapon. +-------------------------- +[Required Materials] +50x Shadowdecon +50x Zelunium +-------------------------- +[Obtainable Items] +Ignition, Dragon Breath, Aimed, Shooting, Boomerang, Arms, Sky Blow, Tiger Cannon, Adora, Magnus, Arrow Vulcan, Reverberation, Shadowspell, Paint, Katar, Ripper Slasher, Grave, Varetyr Spear, Strain, Chain, Cannon Cart, Crazy, Chain Press, Genesis Shadow Weapons +-------------------------- +Weight: 1 +# +100152# +A box containing a special shield with mysterious power. +One of the following items can be obtained randomly. +-------------------------- +Sharel Shield[1] +Sombre Shield[1] +Froid Shield[1] +Poison Shield[1] +Lumiere Shield[1] +Lien Shield[1] +Levain Shield[1] +-------------------------- +Weight: 1 +# +100153# +A set of beautifully wrapped taming items. Contains Taming Gift items and Taming equipment. +-------------------------- +Weight: 1 +# +100158# +An emergency Mado Gear in reinforcement suit version designed to be used in case of damage to the Mado Gear. +Can only be used, when Mado Gear Licence is learned. +-------------------------- +Cooldown: 3 minutes +Weight: 30 +-------------------------- +Requirements: +Base Level 100 +# +100160# +A box containing any Automatic Module. +-------------------------- +1x Random Automatic Module will be given except Epic Modules. +-------------------------- +Weight: 0 +# +100161# +A box containing any Epic Module. +-------------------------- +1x Random Epic Module will be given. +-------------------------- +Weight: 0 +# +100162# +A box containing a device that can improve certain mechanical devices to grant additional attributes. +It is saied to contain one of the devices which grants physical attributes. +-------------------------- +Weight: 0 +# +100163# +A box containing a device that can improve certain mechanical devices to grant additional effects. +It is saied to contain one of the decides which grants magical attributes. +-------------------------- +Weight: 0 +# +100164# +A device that can give additional performance by modifying certain mechanical devices. +It is said that one kind of physical performance is granted. +-------------------------- +[Enchantable Items] +Hypocrisy Machine +Hypocrisy Edge +Greed Wand +Sloth Text +Pride Steel +Invidia Bundle +Superbia Sting +Gula Gun +Ira Fist +Gluttony Stick +Luxuria Pierce +Wrath Rack +Avaritia Metal +Pride Stone +Sloth Bible +Gula Teeth +Pigritia Spark +Pigritia Wave +Pigritia Rhythm +Wrath Wheel +Envy Blunt +Addiction Plant +Lust Pointer +Lust Shatter +Lust Crusher +Lust Boom +-------------------------- +Weight: 0 +# +100165# +A device that can give additional performance by modifying certain mechanical devices. +It is said that one or two physical performances are granted. +-------------------------- +[Enchantable Items] +Hypocrisy Machine +Hypocrisy Edge +Greed Wand +Sloth Text +Pride Steel +Invidia Bundle +Superbia Sting +Gula Gun +Ira Fist +Gluttony Stick +Luxuria Pierce +Wrath Rack +Avaritia Metal +Pride Stone +Sloth Bible +Gula Teeth +Pigritia Spark +Pigritia Wave +Pigritia Rhythm +Wrath Wheel +Envy Blunt +Addiction Plant +Lust Pointer +Lust Shatter +Lust Crusher +Lust Boom +-------------------------- +Weight: 0 +# +100166# +A device that can give additional performance by modifying certain mechanical devices. +It is said that three physical performances are granted. +-------------------------- +[Enchantable Items] +Hypocrisy Machine +Hypocrisy Edge +Greed Wand +Sloth Text +Pride Steel +Invidia Bundle +Superbia Sting +Gula Gun +Ira Fist +Gluttony Stick +Luxuria Pierce +Wrath Rack +Avaritia Metal +Pride Stone +Sloth Bible +Gula Teeth +Pigritia Spark +Pigritia Wave +Pigritia Rhythm +Wrath Wheel +Envy Blunt +Addiction Plant +Lust Pointer +Lust Shatter +Lust Crusher +Lust Boom +-------------------------- +Weight: 0 +# +100167# +A device that can give additional performance by modifying certain mechanical devices. +It is said that one kind of magical performance is granted. +-------------------------- +[Enchantable Items] +Hypocrisy Machine +Hypocrisy Edge +Greed Wand +Sloth Text +Pride Steel +Invidia Bundle +Superbia Sting +Gula Gun +Ira Fist +Gluttony Stick +Luxuria Pierce +Wrath Rack +Avaritia Metal +Pride Stone +Sloth Bible +Gula Teeth +Pigritia Spark +Pigritia Wave +Pigritia Rhythm +Wrath Wheel +Envy Blunt +Addiction Plant +Lust Pointer +Lust Shatter +Lust Crusher +Lust Boom +-------------------------- +Weight: 0 +# +100168# +A device that can give additional performance by modifying certain mechanical devices. +It is said that one or two magical performances are granted. +-------------------------- +[Enchantable Items] +Hypocrisy Machine +Hypocrisy Edge +Greed Wand +Sloth Text +Pride Steel +Invidia Bundle +Superbia Sting +Gula Gun +Ira Fist +Gluttony Stick +Luxuria Pierce +Wrath Rack +Avaritia Metal +Pride Stone +Sloth Bible +Gula Teeth +Pigritia Spark +Pigritia Wave +Pigritia Rhythm +Wrath Wheel +Envy Blunt +Addiction Plant +Lust Pointer +Lust Shatter +Lust Crusher +Lust Boom +-------------------------- +Weight: 0 +# +100169# +A device that can give additional performance by modifying certain mechanical devices. +It is said that three magical performances are granted. +-------------------------- +[Enchantable Items] +Hypocrisy Machine +Hypocrisy Edge +Greed Wand +Sloth Text +Pride Steel +Invidia Bundle +Superbia Sting +Gula Gun +Ira Fist +Gluttony Stick +Luxuria Pierce +Wrath Rack +Avaritia Metal +Pride Stone +Sloth Bible +Gula Teeth +Pigritia Spark +Pigritia Wave +Pigritia Rhythm +Wrath Wheel +Envy Blunt +Addiction Plant +Lust Pointer +Lust Shatter +Lust Crusher +Lust Boom +-------------------------- +Weight: 0 +# +100170# +A box containing a Costume item that can be obtained by enduring a long time. +One of the following items can be obtained randomly: +-------------------------- +Costume Water Spellcaster +Costume Brilliant Blue Angel Wings +Costume Black Evil Druid Hat +Costume Piamette's Red Hood +Costume Piamette's Red Bow Tie +Costume White Rabbit +Costume Flame Master +Costume Crimson Wings +Costume Primal Resonating +Costume Two Tone Beret +Costume Variant Veil +Costume Wind Master +Costume Raphael's Wings +Costume Sweets Party +Costume Over Protector +Costume Under Lamp +Costume Fake Ears +-------------------------- +Weight: 1 +# +100171# +\ + +-------------------------- +It contains 500 Cannon Balls. +-------------------------- +Weight: 25 +# +100172# +\ + +-------------------------- +It contains 500 Iron Cannon Balls. +-------------------------- +Weight: 25 +# +100173# +\ + +-------------------------- +It contains 500 Soul Cannon Balls. +-------------------------- +Weight: 25 +# +100174# +\ + +-------------------------- +A quiver containing 500 Poison Arrows. +-------------------------- +Weight: 25 +# +100176# +\ + +-------------------------- +It contains 500 Dark Cannon Balls. +-------------------------- +Weight: 25 +# +100177# +\ + +-------------------------- +It contains 500 Holy Cannon Balls. +-------------------------- +Weight: 25 +# +100178# +\ + +-------------------------- +It contains 500 Liquid Condensed Bullets. +-------------------------- +Weight: 25 +# +100179# +\ + +-------------------------- +It contains 500 Magic Gear Fuels. +-------------------------- +Weight: 25 +# +100180# +\ + +-------------------------- +It contains 500 Repair A. +-------------------------- +Weight: 25 +# +100181# +\ + +-------------------------- +It contains 500 Repair B. +-------------------------- +Weight: 25 +# +100182# +\ + +-------------------------- +It contains 500 Repair C. +-------------------------- +Weight: 25 +# +100183# +\ + +-------------------------- +It contains 500 Flame Stones. +-------------------------- +Weight: 25 +# +100184# +\ + +-------------------------- +It contains 500 Ice Stones. +-------------------------- +Weight: 25 +# +100185# +\ + +-------------------------- +It contains 500 Wind Stones. +-------------------------- +Weight: 25 +# +100186# +\ + +-------------------------- +It contains 500 Shadow Orbs. +-------------------------- +Weight: 25 +# +100187# +\ + +-------------------------- +500 Fire Amulets are bundled. +-------------------------- +Weight: 25 +# +100188# +\ + +-------------------------- +500 Ice Amulets are bundled. +-------------------------- +Weight: 25 +# +100189# +\ + +-------------------------- +500 Wind Amulets are bundled. +-------------------------- +Weight: 25 +# +100190# +\ + +-------------------------- +500 Earth Amulets are bundled. +-------------------------- +Weight: 25 +# +100191# +\ + +-------------------------- +You can summon 500 Explosive Kunais with it. +-------------------------- +Weight: 25 +# +100192# +\ + +-------------------------- +It contains 500 Blue Gemstones. +-------------------------- +Weight: 25 +# +100193# +\ + +-------------------------- +It contains 500 Yellow Gemstones. +-------------------------- +Weight: 25 +# +100194# +\ + +-------------------------- +It contains 500 Red Gemstones. +-------------------------- +Weight: 25 +# +100195# +\ + +-------------------------- +It contains 500 Full Metal Jacket Bullets. +-------------------------- +Weight: 25 +# +100196# +\ + +-------------------------- +It contains 500 Projection Landmines. +-------------------------- +Weight: 25 +# +100197# +\ + +-------------------------- +It contains 500 Dragon Tail Missiles. +-------------------------- +Weight: 25 +# +100198# +You can get one of many Shadow Equipments that increase the stats of a specific skill randomly. +-------------------------- +Weight: 1 +# +100202# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +Warlock Stone II(Garment) +Royal Guard Stone II(Garment) +Guillotine Cross Stone II(Garment) +and 9 enchantment stones more have been added. +Stones from existing costume enchant stone boxes can also be obtained with a relatively low chance. +-------------------------- +Weight: 1 +# +100205# +A spellbook that enhances Class Shadow Equipment that increases stats. +Without changing the Refine Level, one type of physical option is given. +Note that the existing random options will disappear. +-------------------------- +[Possible Items] +Swordsman, Merchant, Acolyte, Thief, Magician, Knight, Blacksmith, Priest, Assassin, Wizard, Hunter, Crusader, Alchemist, Monk, Rogue, Sage, Bard, Dancer, Rune Knight, Mechanic, Arc Bishop, Guillotine Cross, Warlock, Ranger, Royal Guard, Genetic, Sura, Shadow Chaser, Sorcerer, Minstrel, Wanderer, Ninja, Taekwon, Doram Physical, Doram Magical, Gunslinger, Super Novice, Star Emperor, Soul Reaper, Rebellion, Kagerou, Oboro Shadow Equipment +-------------------------- +Weight: 1 +# +100206# +A spellbook that enhances Class Shadow Equipment that increases stats. +Without changing the Refine Level, one type of magical option is given. +Note that the existing random options will disappear. +-------------------------- +[Possible Items] +Swordsman, Merchant, Acolyte, Thief, Magician, Knight, Blacksmith, Priest, Assassin, Wizard, Hunter, Crusader, Alchemist, Monk, Rogue, Sage, Bard, Dancer, Rune Knight, Mechanic, Arc Bishop, Guillotine Cross, Warlock, Ranger, Royal Guard, Genetic, Sura, Shadow Chaser, Sorcerer, Minstrel, Wanderer, Ninja, Taekwon, Doram Physical, Doram Magical, Gunslinger, Super Novice, Star Emperor, Soul Reaper, Rebellion, Kagerou, Oboro Shadow Equipment +-------------------------- +Weight: 1 +# +100207# +A spellbook that enhances Skill Shadow Equipment that increases stats of a particular skill. +Without changing the Refine Level, one type of physical option is given. +Note that the existing random options will disappear. +-------------------------- +[Possible Items] +Sonic, Ignition, Cold Breath, Fire Breath, Cluster, Aimed, Arrow, Shooting, Tornado, Boomerang, Vulcan, Arms, Rampage, Sky Blow, Knuckle, Tiger, Duple, Adora, Judex, Magnus, Rainstorm, Arrow Vulcan , Metallic, Reverberation, Triangle, Shadowspell, Menace, Paint, Rolling, Katar, Slash, Ripper Slasher, Dust, Grave, Psychic, Varetyr, Jack, Strain, Crimson, Chain, Tornado, Cannon Cart, Spore Bomb , Crazy, Brand, Chain Press, Banishing Cannon, Genesis Shadow Equipment +-------------------------- +Weight: 1 +# +100208# +A spellbook that enhances Skill Shadow Equipment that increases stats of a particular skill. +Without changing the Refine Level, one type of magical option is given. +Note that the existing random options will disappear. +-------------------------- +[Possible Items] +Sonic, Ignition, Cold Breath, Fire Breath, Cluster, Aimed, Arrow, Shooting, Tornado, Boomerang, Vulcan, Arms, Rampage, Sky Blow, Knuckle, Tiger, Duple, Adora, Judex, Magnus, Rainstorm, Arrow Vulcan , Metallic, Reverberation, Triangle, Shadowspell, Menace, Paint, Rolling, Katar, Slash, Ripper Slasher, Dust, Grave, Psychic, Varetyr, Jack, Strain, Crimson, Chain, Tornado, Cannon Cart, Spore Bomb , Crazy, Brand, Chain Press, Banishing Cannon, Genesis Shadow Equipment +-------------------------- +Weight: 1 +# +100209# +A Combination Scroll that explains how to craft Shield Shadow Equipment that can increase the stats of a particular skill. +When used in combination with materials, you can obtain 1 Skill Shadow Shield Equipment. +-------------------------- +[Required Materials] +50x Shadowdecon +50x Zelunium +-------------------------- +[Possible Items] +Sonic, Cold Breath, Cluster, Arrow, Tornado, Vulkan, Rampage, Knuckle, Duple, Judex, Rainstorm, Metallic, Triangle, Menace, Rolling, Slash, Dust, Psychic, Jack, Crimson, Tornado, Spore Bomb, Brand, Banishing Cannon Shadow Shield Equipment +-------------------------- +Weight: 1 +# +100210# +A Combination Scroll that explains how to craft Shadow Pendant Equipment that can increase the stats of a particular skill. +When used in combination with materials, you can obtain 1 Skill Shadow Pendant Equipment. +-------------------------- +[Required Materials] +Shadowdecon 50개 +-------------------------- +[Possible Items] +Ignition, Fire Breath, Aimed, Shooting, Boomerang, Arms, Sky Blow, Tiger, Adora, Magnus, Arrow Vulkan, Reverberation, Shadowspell, Paint, Katar, Ripper Slasher, Grave, Varetyr, Strain, Chain, Cannon Cart, Crazy, Chain Press, Genesis Shadow Pendant Equipment +-------------------------- +Weight: 1 +# +100211# +A Combination Scroll that explains how to craft Shadow Earring Equipment that can increase the stats of a particular skill. +When used in combination with materials, you can obtain 1 Skill Shadow Earring Equipment. +-------------------------- +[Required Materials] +Shadowdecon 50ea +-------------------------- +[Possible Items] +Ignition, Fire Breath, Aimed, Shooting, Boomerang, Arms, Sky Blow, Tiger, Adora, Magnus, Arrow Vulkan, Reverberation, Shadowspell, Paint, Katar, Ripper Slasher, Grave, Varetyr, Strain, Chain, Cannon Cart, Crazy, Chain Press, Genesis Shadow Earring Equipment +-------------------------- +Weight: 1 +# +100212# +A Combination Scroll that explains how to craft Shadow Shoes Equipment that can increase the stats of a particular skill. +When used in combination with materials, you can obtain 1 Skill Shadow Shoes Equipment. +-------------------------- +[Required Materials] +Zelunium 50 ea +-------------------------- +[Possible Items] +Sonic, Cold Breath, Cluster, Arrow, Tornado, Vulkan, Rampage, Knuckle, Duple, Judex, Rainstorm, Metallic, Triangle, Menace, Rolling, Slash, Dust, Psychic, Jack, Crimson, Tornado, Spore Bomb, Brand, Banishing Cannon Shadow Shield Equipment +-------------------------- +Weight: 1 +# +100213# +A Combination Scroll that explains how to craft Shadow Armor Equipment that can increase the stats of a particular skill. +When used in combination with materials, you can obtain 1 Skill Shadow Armor Equipment. +-------------------------- +[Required Materials] +Zelunium 50 ea +-------------------------- +[Possible Items] +Sonic, Cold Breath, Cluster, Arrow, Tornado, Vulkan, Rampage, Knuckle, Duple, Judex, Rainstorm, Metallic, Triangle, Menace, Rolling, Slash, Dust, Psychic, Jack, Crimson, Tornado, Spore Bomb, Brand, Banishing Cannon Shadow Shield Equipment +-------------------------- +Weight: 1 +# +100214# +A box containing Shadowdecon Gemstones. +-------------------------- +When opening the box, you can get 3~10 Shadowdecon Gemstones. +-------------------------- +Weight: 1 +# +100215# +A box containing Zelunium Gemstones. +-------------------------- +When opening the box, you can get 3~10 Zelunium Gemstones. +-------------------------- +Weight: 1 +# +100231# +Effect: Decreases damage taken from reflected melee damage by 100%. +Duration: 30 seconds +-------------------------- +Weight: 3 +# +100232# +A red solution made by mixing a solution extracted from a Red Herb with powder of a Seed of Yggdrasil. +-------------------------- +Effect: Increases physical melee and long range damage by 15%. +Duration: 500 seconds +-------------------------- +Weight: 3 +# +100233# +A blue solution made by mixing a solution extracted from a Blue Herb with powder of a Seed of Yggdrasil. +-------------------------- +Effect: Increases all elemental magical damage by 15%. +Duration: 500 seconds +-------------------------- +Weight: 3 +# +100251# +Cube developed to strengthen Illusion Armor. +Refines +4 Illusion Equipment to +7. +-------------------------- +[Required Equipment] +Illusion Armor Type A +Illusion Armor Type B +Illusion Engine Wing Type A +Illusion Engine Wing Type B +Illusion Leg Type A +Illusion Leg Type B +-------------------------- +Weight: 0 +# +100252# +Cube developed to strengthen Automatic Armor. +Refines +4 Automatic Equipment to +7. +-------------------------- +[Required Equipment] +Automatic Armor Type A +Automatic Armor Type B +Automatic Engine Wing Type A +Automatic Engine Wing Type B +Automatic Leg Type A +Automatic Leg Type B +-------------------------- +Weight: 0 +# +100253# +G-Star Event Box. +-------------------------- +30x [Event] Medium Life Potion +30x [Event] Power Booster +30x World Tour Ticket +-------------------------- +Weight: 10 +# +100268# +A mysterious cube that refines Temporal Equipment to +11. +-------------------------- +[Target Items] +Temporal STR Manteau, Temporal INT Manteau, +Temporal DEX Manteau, Temporal AGI Manteau, +Temporal VIT Manteau, Temporal LUK Manteau +Soaring Power Armor, Strong Magic Armor, +Excellent Dexterity Armor, Brilliant Rapid Armor, +Hardended Vitality Armor, Unexpected Lucky Armor, +Temporal STR Boots, Temporal STR Boots[1], +Temporal INT Boots, Temporal INT Boots[1], +Temporal DEX Boots, Temporal DEX Boots[1], +Temporal AGI Boots, Temporal AGI Boots[1], +Temporal VIT Boots, Temporal VIT Boots[1], +Temporal LUK Boots, Temporal LUK Boots[1], +Modified STR Boots, Modified STR Boots[1], +Modified INT Boots, Modified INT Boots[1], +Modified DEX Boots, Modified DEX Boots[1], +Modified AGI Boots, Modified AGI Boots[1], +Modified VIT Boots, Modified VIT Boots[1], +Modified LUK Boots, Modified LUK Boots[1]. +-------------------------- +Weight: 1 +# +100269# +A mysterious cube that refines Geffen Magic Tournament Armors to +12. +-------------------------- +[Target Items] +Geffen Magic Robe, +Geffen Magic Muffler, +Anti-Magic Suit, +Anti-Magic Manteau +-------------------------- +Weight: 1 +# +100270# +A mysterious cube that refines Old 3rd Job Headgears to +12. +-------------------------- +[Target Items] +Old Rune Circlet, +Old Crown of Guardian, +Old Bone Circlet, +Old Shadow Handicraft, +Old Magic Stone Hat, +Old Wind Whisper, +Old Mitra, +Old Blazing Soul, +Old Camouflage Rabbit Hood, +Old Minstrel Song's Hat, +Old Dying Swan, +Old Driver Band, +Old Driver Band(Yellow), +Old Midas Whisper +-------------------------- +Weight: 1 +# +100271# +A refinement ticket that refines Ancient Hero's Weapons up to +9 at once. +-------------------------- +Warning - Patent Hero's Weapons cannot be refined. +-------------------------- +Weight: 1 +# +100272# +A refinement ticket that refines Ancient Hero's Boots up to +9 at once. +-------------------------- +Warning - Great Hero's Boots cannot be refined. +-------------------------- +Weight: 1 +# +100273# +A cube that converts +9 or higher Ancient Hero's Boots into +7 Great Hero Boots. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100274# +A cube that converts the Oriental Sword into an Patent Oriental Sword. +Uses an +9 Oriental Sword as a material. +An +7 Patent Oriental Sword can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100275# +A cube that converts the Dragonic Slayer into an Patent Dragonic Slayer. +Uses an +9 Dragonic Slayer as a material. +An +7 Patent Dragonic Slayer can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100276# +A cube that converts the Katar of Shiver into an Patent Katar of Shiver. +Uses an +9 Katar of Shiver as a material. +An +7 Patent Katar of Shiver can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100277# +A cube that converts the Blade Katar into an Patent Blade Katar into. +Uses an +9 Blade Katar into as a material. +An +7 Patent Blade Katar into be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100314# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Rune Knight Stone II(Garment), Genetic Stone II(Garment), Wanderer Minstrel Stone II(Garment) and 12 new Enchant Stones have been added. +Already exisiting Costume Enchant Stones are also included. +-------------------------- +[Costume Enchant Stone Box 21]https://ro.gnjoy.com/news/probability/View.asp?category=2&seq=4019410&curpage=1,1024,768 +-------------------------- +Weight: 1 +# +100316# +A potion containing the blessing of Tyr, the god of battle. +-------------------------- +ATK and MATK +20 for 60 minutes. HIT and FLEE +30. +The Movement Speed is also increased for 10 minutes. +-------------------------- +Warning! - When using Honey Pastry, Sesame Pastry or and Rainbow Cake, the duration and stats are not applied properly and it does not stack with PC Room buff. +If you are incapacitated or hit by the Dispell skill, the item effect will disappear. +-------------------------- +Weight: 1 +# +100317# +Potion that fills the spirit. +-------------------------- +MaxSP +10% for 60 minutes. +Decreases SP Consumption by 10%. +-------------------------- +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 1 +# +100319# +A box containing a Costume Wig modeled after Himelmez's hair style. +There are a total of 8 colors of the Costume and one of them can be obtained randomly. +-------------------------- +Weight: 1 +# +100321# +A mysterious cube that refines OS weapons to +11. +-------------------------- +[Target Items] +Boost Lance-OS, Kuroiro-OS, +Circuit Board-OS, HR-S55-OS, +Blasti-OS, Meuchler-OS, +Electric Fox-OS, Rutilus Stick-OS, +Beam Claymore-OS, AC-B44-OS, +MH-P89-OS, Virtual Bow-OS, +Ultio-OS, Saphir Mace-OS, +Cannon Rapier-OS, Burning Knuckle-OS +-------------------------- +Weight: 1 +# +100322# +A mysterious cube that refines Racing Caps to +11. +-------------------------- +[Target Items] +Racing Cap(Mechanic), Racing Cap(Genetic), Racing Cap(Guillotine Cross), Racing Cap(Shadow Chaser), Racing Cap(Warlock), Racing Cap(Sorcerer), Racing Cap(Rune Knight), Racing Cap(Royal Guard), Racing Cap(Archbishop), Racing Cap(Sura), Racing Cap(Ranger), Racing Cap(Minstrel), Racing Cap(Wanderer), Racing Cap(Gunslinger), Racing Cap(Ninja), Racing Cap(Super Novice), Racing Cap(Summoner), Racing Cap(Star Gladiator), Racing Cap(Soul Linker) +-------------------------- +Weight: 1 +# +100323# +A cube containing a Shadow Equipment that enhances the skill of Rune Knights. +When you open the box, you can get 1 Shadow Equipment at random. +-------------------------- +[Obtainable Items] +Sonic Shadow Armor, Sonic Shadow Shield, Sonic Shadow Shoes, Ignition Shadow Weapon, Ignition Shadow Pendant, Ignition Shadow Earring, Cold Breath Shadow Armor, Cold Breath Shadow Shield, Cold Breath Shadow Shoes, Fire Breath Shadow Weapon, Fire Breath Shadow Pendant, Fire Breath Shadow Earring +-------------------------- +Weight: 1 +# +100324# +A cube containing a Shadow Equipment that enhances the skill of Guillotine Cross'. +When you open the box, you can get 1 Shadow Equipment at random. +-------------------------- +[Obtainable Items] +Rolling Shadow Armor, Rolling Shadow Shield, Rolling Shadow Shoes, Katar Shadow Weapon, Katar Shadow Pendant, Katar Shadow Earring, Slash Shadow Armor, Slash Shadow Shield, Slash Shadow Shoes, Ripper Slasher Shadow Weapon, Ripper Slasher Shadow Pendant, Ripper Slasher Shadow Earring +-------------------------- +Weight: 1 +# +100325# +A cube containing a Shadow Equipment that enhances the skill of Archbishops'. +When you open the box, you can get 1 Shadow Equipment at random. +-------------------------- +[Obtainable Items] +Duplex Shadow Armor, Duplex Shadow Shield, Duplex Shadow Shoes, Adora Shadow Weapon, Adora Shadow Pendant, Adora Shadow Earring, Judex Shadow Armor, Judex Shadow Shield, Judex Shadow Shoes, Magnus Shadow Weapon, Magnus Shadow Pendant, Magnus Shadow Earring +-------------------------- +Weight: 1 +# +100326# +A cube containing a Shadow Equipment that enhances the skill of Sura's. +When you open the box, you can get 1 Shadow Equipment at random. +-------------------------- +[Obtainable Items] +Rampage Shadow Armor, Rampage Shadow Shield, Rampage Shadow Shoes, Sky Blow Shadow Weapon, Sky Blow Shadow Pendant, Sky Blow Shadow Earring, Knuckle Shadow Armor, Knuckle Shadow Shield, Knuckle Shadow Shoes, Tiger Shadow Weapon, Tiger Shadow Pendant, Tiger Shadow Earring +-------------------------- +Weight: 1 +# +100327# +A cube that converts the Red Lotus Sword into an Patent Red Lotus Sword. +Uses an +9 Red Lotus Sword as a material. +An +7 Patent Red Lotus Sword can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100328# +A cube that converts the Slate Sword into an Patent Slate Sword. +Uses an +9 Slate Sword as a material. +An +7 Patent Slate Sword can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100329# +A cube that converts the Narcissus Bow into an Patent Narcissus Bow. +Uses an +9 Narcissus Bow as a material. +An +7 Patent Narcissus Bow can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100330# +A cube that converts the Trumpet Shell into an Patent Trumpet Shell. +Uses an +9 Trumpet Shell as a material. +An +7 Patent Trumpet Shell can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100331# +A cube that converts the Barbed Wire Whip into an Patent Barbed Wire Whip. +Uses an +9 Barbed Wire Whip as a material. +An +7 Patent Barbed Wire Whip can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100332# +A gift box sent to commemorate Christmas 2019. +Happy Christmas! +-------------------------- +* Content +10x [Event] Almighty +10x [Event] Power Booster +10x [Event] Infinity Drink +20x [Event] Small Mana Potion +20x [Event] Mysterious Life Potion +20x [Event] Small Life Potion +20x [Event] Medium Life Potion +20x [Event] Red Booster +5x [Event] Advanced Battle Manual +1x Costume Shine Stanta Poring (24 Hours) +-------------------------- +Weight: 1 +# +100333# +An infinity drink that temporarily evokes the feeling of feeling infinite energy. +-------------------------- +MaxHP +5%, MaxSP +5% for 30 minutes. +Increases Critical Damage, Ranged Physical Damage and magical damage by 5%. +Protects from skill cast interruption. +-------------------------- +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +# +100335# +A specially prepared box for beginners. +It contains the following items: +-------------------------- +3x [Event] Three Master Package(20) +3x [Event] Brilliant Protection Scroll Box(20) +60x [Event] Small Mana Potion +60x [Event] Red Booster +5x Growth Potion(Superior) +2x [Event] Advanced Battle Manual +48x Booster Coin +10x World Tour Ticket +1x Booster Pack(200) +-------------------------- +Weight: 0 +Requirement: +Base Level 190 +# +100336# +A specially prepared box for beginners. +It contains the following items: +-------------------------- +2020 Booster Goal Achievement Gift Box +52x Booster Coin +-------------------------- +Weight: 0 +Requirement: +Base Level 200 +# +100337# +A call bell that summons boosters which grants various services to beginners. +-------------------------- +Weight: 0 +# +100338# +A package that can refine Booster Weapons, which cannot be refined normally. +Booster Weapons can be refined to +9 or higher. +-------------------------- +Ignition Wave Booster Two-Handed Sword +Hundered Breath Booster Spear +Banishing Cannon Booster Spear +Pressure Genesis Booser Sword +Power Tornado Booster Axe +Arms Knuckle Booster Mace +Acid Cannon Booster Club +Hells Tornado Booster Sword +Rolling Cross Booster Katar +Counter Assault Booster Dagger +Triangle Spring Booster Bow +Magic Fatal Booster Dagger +Crimson Strain Booster Staff +Chain Jack Booster Staff +Spell Bolt Booster Book +Elemental Spell Booster Stick +Adonus Booster Wand +Dupledex Booster Mace +Rampage Arrow Booster Knuckle +Sky Cannon Booster Knuckle +Arrow Booster Bow +Sharp Bolt Booster Bow +Rainstorm Booster Bow +Metallic Reverberation Booster Violin +Metallic Reverberation Booster Whip +-------------------------- +Weight: 0 +# +100339# +A package that can refine Booster Weapons, which cannot be refined normally. +Booster Weapons can be refined to +11. +-------------------------- +Ignition Wave Booster Two-Handed Sword +Hundered Breath Booster Spear +Banishing Cannon Booster Spear +Pressure Genesis Booser Sword +Power Tornado Booster Axe +Arms Knuckle Booster Mace +Acid Cannon Booster Club +Hells Tornado Booster Sword +Rolling Cross Booster Katar +Counter Assault Booster Dagger +Triangle Spring Booster Bow +Magic Fatal Booster Dagger +Crimson Strain Booster Staff +Chain Jack Booster Staff +Spell Bolt Booster Book +Elemental Spell Booster Stick +Adonus Booster Wand +Dupledex Booster Mace +Rampage Arrow Booster Knuckle +Sky Cannon Booster Knuckle +Arrow Booster Bow +Sharp Bolt Booster Bow +Rainstorm Booster Bow +Metallic Reverberation Booster Violin +Metallic Reverberation Booster Whip +-------------------------- +Weight: 0 +# +100340# +A package that can refine Booster Weapons, which cannot be refined normally. +Booster Weapons can be refined to +13. +-------------------------- +Ignition Wave Booster Two-Handed Sword +Hundered Breath Booster Spear +Banishing Cannon Booster Spear +Pressure Genesis Booser Sword +Power Tornado Booster Axe +Arms Knuckle Booster Mace +Acid Cannon Booster Club +Hells Tornado Booster Sword +Rolling Cross Booster Katar +Counter Assault Booster Dagger +Triangle Spring Booster Bow +Magic Fatal Booster Dagger +Crimson Strain Booster Staff +Chain Jack Booster Staff +Spell Bolt Booster Book +Elemental Spell Booster Stick +Adonus Booster Wand +Dupledex Booster Mace +Rampage Arrow Booster Knuckle +Sky Cannon Booster Knuckle +Arrow Booster Bow +Sharp Bolt Booster Bow +Rainstorm Booster Bow +Metallic Reverberation Booster Violin +Metallic Reverberation Booster Whip +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 100 +# +100341# +A package that can refine Illusion (Bound) Armor that cannot be refined normally. +You can upgrade Illusion Armor/Engine Wing/Leg Equipment to +10. +-------------------------- +Illusion Armor Type A (Bound)[1] +Illusion Armor Type B (Bound)[1] +Illusion Engine Wing Type A (Bound)[1] +Illusion Engine Wing Type B (Bound)[1] +Illusion Leg Type A (Bound)[1] +Illusion Leg Type B (Bound)[1] +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 130 +# +100342# +When you drink this, you gain a small amount of experience. +The number of times you level up with the experience gained at this time is limited to one. +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 1 +Maximum Level 50 +# +100343# +When you drink this, you gain a certain amount of experience. +The number of times you level up with the experience gained at this time is limited to one. +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 50 +Maximum Level 100 +# +100344# +When you drink this, you gain a lot of experience. +The number of times you level up with the experience gained at this time is limited to one. +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 100 +Maximum Level 160 +# +100345# +When you drink this, you gain an extra large amount of experience. +The number of times you level up with the experience gained at this time is limited to one. +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 160 +Maximum Level 199 +# +100346# +Drinking this gives you a small amount of job experience. +The number of times you level up with job experience gained at this time is limited to one. +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 10 +Maximum Level 200 +# +100347# +A box given to adventurers who have achieved the goal. +You can get one of the items below: +-------------------------- +Costume Archangel's Wings (Gold) +Costume Long Ribbon +Costume Fairy Long (Sakura) +Costume Piamette's Brown Ears +Costume Mechanical Feather Hairband +Costume Drops Muffler +-------------------------- +Weight: 0 +# +100351# +A manual that records more efficient combat methods. If I do what I tell them, I think I will grow faster for some reason. +-------------------------- +Effect: +Increases experience gained by 100% for 15 minutes. +-------------------------- +Weight: 1 +# +100352# +A manual that records more efficient combat methods. If I do what I tell them, I think I will grow faster for some reason. +-------------------------- +Effect: +Increases experience gained by 100% for 60 minutes. +Increases movement speed for 10 minutes. +-------------------------- +Weight: 1 +# +100354# +A mysterious cube that refines Automatic Armors to +11. +-------------------------- +[Target Items] +Automatic Armor Type A, Automatic Armor Type B, +Automatic Engine Wing Type A, Automatic Engine Wing Type B, +Automatic Leg Type A, Automatic Leg Type B +-------------------------- +Weight: 1 +# +100355# +A mysterious cube that refines Bio Lab Weapons to +12. +-------------------------- +[Target Items] +Staff of Miracle, Gravitation Staff, +Adorare Staff, Volar, +Vernan, Reaper Cross, +Agudo Filo, Maxi Spanner, +Rapid Fire, Sharp Star Bow, +Aiming Bow, Falken Shooter, +Wind Gale, Golden Wrench, +Raging Dragon Fist, Fighting God's Bandage, +Engine Pilebunker, Coolant Injection, +Gene Rod, Lucis Flail, +Bright Pendulum, Crimson Rose Stick, +Psychic Spear Rod, Dust Grave, +Poenitentia, Heart Whip, +Scarlet Ribbon, Boltijin, +Judgement Slasher, Repent Slasher, +Jack The Knife, Platinum Dagger, +Argen Blanco, Harve, +Fortrage, Black Circle, +Antique Cello, Farthezan, +Estal +-------------------------- +Weight: 1 +# +100356# +A cube containing a Shadow Equipment that enhances the skill of Rangers. +When you open the box, you can get 1 Shadow Equipment at random. +-------------------------- +[Obtainable Items] +Cluster Shadow Armor, Cluster Shadow Shield, Cluster Shadow Shoes, Aimed Shadow Weapon, Aimed Shadow Pendant, Aimed Shadow Earring, Arrow Shadow Armor, Arrow Shadow Shield, Arrow Shadow Shoes, Shooting Shadow Weapon, Shooting Shadow Pendant, Shooting Shadow Earring +-------------------------- +Weight: 1 +# +100357# +A cube containing a Shadow Equipment that enhances the skill of Warlocks. +When you open the box, you can get 1 Shadow Equipment at random. +-------------------------- +[Obtainable Items] +Jack Shadow Armor, Jack Shadow Shield, Jack Shadow Shoes, Strain Shadow Weapon, Strain Shadow Pendant, Strain Shadow Earring, Crimson Shadow Armor, Crimson Shadow Shield, Crimson Shadow Shoes, Chain Shadow Weapon, Chain Shadow Pendant, Chain Shadow Earring +-------------------------- +Weight: 1 +# +100358# +A cube containing a Shadow Equipment that enhances the skill of Sorcerers. +When you open the box, you can get 1 Shadow Equipment at random. +-------------------------- +[Obtainable Items] +Dust Shadow Armor, Dust Shadow Shield, Dust Shadow Shoes, Grave Shadow Weapon, Grave Shadow Pendant, Grave Shadow Earring, Psychic Shadow Armor, Psychic Shadow Shield, Psychic Shadow Shoes, Varetyr Shadow Weapon, Varetyr Shadow Pendant, Varetyr Shadow Earring +-------------------------- +Weight: 1 +# +100359# +A cube containing a Shadow Equipment that enhances the skill of Minstrels. +When you open the box, you can get 1 Shadow Equipment at random. +-------------------------- +[Obtainable Items] +Rainstorm Shadow Armor, Rainstorm Shadow Shield, Rainstorm Shadow Shoes, Arrow Vulcan Shadow Weapon, Arrow Vulcan Shadow Pendant, Arrow Vulcan Shadow Earring, Metallic Shadow Armor, Metallic Shadow Shield, Metallic Shadow Shoes, Reverberation Shadow Weapon, Reverberation Shadow Pendant, Reverberation Shadow Earring +-------------------------- +Weight: 1 +# +100360# +A cube that converts the Avenger into an Patent Avenger. +Uses an +9 Avenger as a material. +An +7 Patent Avenger can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100361# +A cube that converts the Meteor Striker into an Patent Meteor Striker. +Uses an +9 Meteor Striker as a material. +An +7 Patent Meteor Striker can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100362# +A cube that converts the Mado Sword into an Patent Magic Sword. +Uses an +9 Mado Sword as a material. +An +7 Patent Magic Sword can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100363# +A cube that converts the Fatalist into an Patent Fatalist. +Uses an +9 Fatalist as a material. +An +7 Patent Fatalist can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100365# +A gem with a special magic treatment. +Random options can be applied to the following items. +-------------------------- +[Target Items] +Anti-Conjurer Suit +Magic Protector Robe +-------------------------- +Weight: 1 +# +100366# +A gem with a special magic treatment. +Random options can be applied to the following items. +-------------------------- +[Target Items] +Magic Barrier Manteau +Magic Barrier Muffler +Leviathan Magic Manteau +Leviathan Magic Muffler +-------------------------- +Weight: 1 +# +100367# +A gem with a special magic treatment. +Random options can be applied to the following items. +-------------------------- +[Target Items] +Force Condenser +Mental Condenser +-------------------------- +Weight: 1 +# +100368# +A gem with a special magic treatment. +Random options can be applied to the following items. +-------------------------- +[Target Items] +Magic Absolver +Complete Encyclopedia +-------------------------- +Weight: 1 +# +100371# +Homunculus' favorite nutritional supplements. +Increases the intimacy of your Homunculus. +-------------------------- +Weight: 1 +# +100372# +A cube containing a Shadow Equipment that enhances the skill of Royal Guards. +When you open the box, you can get 1 Shadow Equipment at random. +-------------------------- +[Obtainable Items] +Brand Shadow Armor, Brand Shadow Shield, Brand Shadow Shoes, Chain Press Shadow Weapon, Chain Press Shadow Pendant, Chain Press Shadow Earring, Banishing Cannon Shadow Armor, Banishing Cannon Shadow Shield, Banishing Cannon Shadow Shoes, Genesis Shadow Weapon, Genesis Shadow Pendant, Genesis Shadow Earring +-------------------------- +Weight: 1 +# +100373# +A cube containing a Shadow Equipment that enhances the skill of Shadow Chasers. +When you open the box, you can get 1 Shadow Equipment at random. +-------------------------- +[Obtainable Items] +Triangle Shadow Armor, Triangle Shadow Shield, Triangle Shadow Shoes, Shadowspell Shadow Weapon, Shadowspell Shadow Pendant, Shadowspell Shadow Earring, Menace Shadow Armor, Menace Shadow Shield, Menace Shadow Shoes, Paint Shadow Weapon, Paint Shadow Pendant, Paint Shadow Earring +-------------------------- +Weight: 1 +# +100374# +A cube containing a Shadow Equipment that enhances the skill of Mechanics. +When you open the box, you can get 1 Shadow Equipment at random. +-------------------------- +[Obtainable Items] +Tornado Shadow Armor, Tornado Shadow Shield, Tornado Shadow Shoes, Boomerang Shadow Weapon, Boomerang Shadow Pendant, Boomerang Shadow Earring, Vulkan Shadow Armor, Vulkan Shadow Shield, Vulkan Shadow Shoes, Arms Shadow Weapon, Arms Shadow Pendant, Arms Shadow Earring +-------------------------- +Weight: 1 +# +100375# +A cube containing a Shadow Equipment that enhances the skill of Genetics. +When you open the box, you can get 1 Shadow Equipment at random. +-------------------------- +[Obtainable Items] +Cart Tornado Shadow Armor, Cart Tornado Shadow Shield, Cart Tornado Shadow Shoes, Cart Cannon Shadow Weapon, Cart Cannon Shadow Pendant, Cart Cannon Shadow Earring, Spore Bomb Shadow Armor, Spore Bomb Shadow Shield, Spore Bomb Shadow Shoes, Crazy Shadow Weapon, Crazy Shadow Pendant, Crazy Shadow Earring +-------------------------- +Weight: 1 +# +100376# +A cube that converts the Royal Bow into an Patent Royal Bow. +Uses an +9 Royal Bow as a material. +An +7 Patent Royal Bow can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100377# +A cube that converts the Scarlet Dragon Leather Bow into an Patent Scarlet Dragon Leather Bow. +Uses an +9 Scarlet Dragon Leather Bow as a material. +An +7 Patent Scarlet Dragon Leather Bow can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100378# +A cube that converts the Shadow Staff into an Patent Shadow Staff. +Uses an +9 Shadow Staff as a material. +An +7 Patent Shadow Staff can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100379# +A cube that converts the Chilling Cane into an Patent Chilling Cane. +Uses an +9 Chilling Cane as a material. +An +7 Patent Chilling Cane can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +Weight: 1 +# +100381# +A hammer that exchanges refined +9 level 3 weapons for refinement tickets. +Only exactly +9 refined weapons can be exchanged. +-------------------------- +[Target Items] +Crimson Weapons + +[Obtainable Items] +Safe to 7 Weapon Certificate +-------------------------- +Weight: 1 +# +100382# +A hammer that exchanges refined +10 level 3 weapons for refinement tickets. +Only exactly +10 refined weapons can be exchanged. +-------------------------- +[Target Items] +Crimson Weapons + +[Obtainable Items] +Safe to 8 Weapon Certificate +-------------------------- +Weight: 1 +# +100383# +A hammer that exchanges refined +11 level 3 weapons for refinement tickets. +Only exactly +11 refined weapons can be exchanged. +-------------------------- +[Target Items] +Crimson Weapons + +[Obtainable Items] +Safe to 9 Weapon Certificate +-------------------------- +Weight: 1 +# +100384# +A hammer that exchanges refined +12 level 3 weapons for refinement tickets. +Only exactly +12 refined weapons can be exchanged. +-------------------------- +[Target Items] +Crimson Weapons + +[Obtainable Items] +Safe to 10 Weapon Certificate +-------------------------- +Weight: 1 +# +100385# +A hammer that exchanges refined +9 level 4 weapons for refinement tickets. +Only exactly +9 refined weapons can be exchanged. +-------------------------- +[Target Items] +Thanos Weapons, Vicious Mind Weapons + +[Obtainable Items] +Safe to 8 Weapon Certificate +-------------------------- +Weight: 1 +# +100386# +A hammer that exchanges refined +10 level 4 weapons for refinement tickets. +Only exactly +10 refined weapons can be exchanged. +-------------------------- +[Target Items] +Thanos Weapons, Vicious Mind Weapons + +[Obtainable Items] +Safe to 9 Weapon Certificate +-------------------------- +Weight: 1 +# +100387# +A hammer that exchanges refined +11 level 4 weapons for refinement tickets. +Only exactly +11 refined weapons can be exchanged. +-------------------------- +[Target Items] +Thanos Weapons, Vicious Mind Weapons + +[Obtainable Items] +Safe to 10 Weapon Certificate +-------------------------- +Weight: 1 +# +100388# +A cube that converts the Iron Nail into an Patent Iron Nail. +Uses an +9 Iron Nail as a material. +An +7 Patent Iron Nail can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100390# +A cube that converts the Ray Knuckle into an Patent Ray Knuckle. +Uses an +9 Ray Knuckle as a material. +An +7 Patent Ray Knuckle can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100391# +A mysterious box that refines a +4 Illusion of Moonlight equipment to +7~10 randomly. +-------------------------- +[Target Item] +Illusion Spectral Spear, +Illusion Moonlight Sword, +Illusion Long Mace, +Illusion Staff of Bordeaux, +Illusion Muffler, +Illusion Shoes, +Illusion Nurse Cap, +Illusion Puente Robe, +Illusion Apple of Archer. +-------------------------- +Weight: 1 +# +100392# +A mysterious box that refines a +4 Illusion of Moonlight equipment to +9~12 randomly. +-------------------------- +[Target Item] +Illusion Spectral Spear, +Illusion Moonlight Sword, +Illusion Long Mace, +Illusion Staff of Bordeaux, +Illusion Muffler, +Illusion Shoes, +Illusion Nurse Cap, +Illusion Puente Robe, +Illusion Apple of Archer. +-------------------------- +Weight: 1 +# +100393# +A cube that converts the Aquatic Spear into an Patent Aquatic Spear. +Uses an +9 Aquatic Spear as a material. +An +7 Patent Aquatic Spear can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100394# +A cube that converts the Light Blade into an Patent Light Blade. +Uses an +9 Light Blade as a material. +An +7 Patent Light Blade can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100395# +A cube that converts the Iron Staff into an Patent Iron Staff. +Uses an +9 Iron Staff as a material. +An +7 Patent Iron Staff can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100396# +A cube that converts the Blue Crystal Staff into an Patent Blue Crystal Staff. +Uses an +9 Blue Crystal Staff as a material. +An +7 Patent Blue Crystal Staff can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100397# +A cube that converts the Exorcist's Bible into an Patent Exorcist's Bible. +Uses an +9 Exorcist's Bible as a material. +An +7 Patent Exorcist's Bible can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100398# +A cube that converts the Saint Mace into an Patent Saint Mace. +Uses an +9 Saint Mace as a material. +An +7 Patent Saint Mace can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100399# +A cube that converts the Meowmeow Foxtail into an Patent Meowmeow Foxtail. +Uses an +9 Meowmeow Foxtail as a material. +An +7 Patent Meowmeow Foxtail can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100400# +A cube that converts the Kiri no Tsuyu into an Patent Kiri no Tsuyu. +Uses an +9 Kiri no Tsuyu as a material. +An +7 Patent Kiri no Tsuyu can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100401# +A cube that converts the Clarity Huuma Shuriken into an Patent Clarity Huuma Shuriken. +Uses an +9 Clarity Huuma Shuriken as a material. +An +7 Patent Clarity Huuma Shuriken can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100402# +A cube that converts the One Sky One Sun into an Patent One Sky One Sun. +Uses an +9 One Sky One Sun as a material. +An +7 Patent One Sky One Sun can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100403# +A cube that converts the Spirit Pendulum into an Patent Spirit Pendulum. +Uses an +9 Spirit Pendulum as a material. +An +7 Patent Spirit Pendulum can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100404# +A cube that converts the Crimson Rose into an Patent Crimson Rose. +Uses an +9 Crimson Rose as a material. +An +7 Patent Crimson Rose can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100405# +A cube that converts the Master Soul Rifle into an Patent Master Soul Rifle. +Uses an +9 Master Soul Rifle as a material. +An +7 Patent Master Soul Rifle can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100406# +A cube that converts the Golden Lord Launcher into an Patent Golden Lord Launcher. +Uses an +9 Golden Lord Launcher as a material. +An +7 Patent Golden Lord Launcher can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100407# +A cube that converts the The Black into an Patent The Black. +Uses an +9 The Black as a material. +An +7 Patent The Black can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100408# +A cube that converts the Demon Slayer Shot into an Patent Demon Slayer Shot. +Uses an +9 Demon Slayer Shot as a material. +An +7 Patent Demon Slayer Shot can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +100412# +The bravery of the great hero which can draw out the true power of the Patent Hero's weapons. +Physical options can be given to one of the 35 of Patent Hero Weapons. +-------------------------- +Patent Oriental Sword, +Patent Dragonic Slayer, +Patent Katar of Shiver, +Patent Blade Katar, +Patent Red Lotus Sword, +Patent Slate Sword, +Patent Narcissus Bow, +Patent Trumpet Shell, +Patent Barbed Wire Whip, +Patent Avenger, +Patent Meteor Striker, +Patent Magic Sword, +Patent Fatalist, +Patent Royal Bow, +Patent Scarlet Dragon Leather Bow, +Patent Shadow Staff, +Patent Chilling Cane, +Patent Iron Nail, +Patent Ray Knuckle, +Patent Aquatic Spear, +Patent Light Blade, +Patent Aeon Staff, +Patent Blue Crystal Staff, +Patent Exorcist's Bible, +Patent Saint Mace, +Patent Meowmeow Foxtail, +Patent Kiri no Tsuyu, +Patent Clarity Huuma Shuriken, +Patent Crimson Rose, +Patent Master Soul Rifle, +Patent Golden Lord Launcher, +Patent The Black, +Patent Demon Slayer Shot, +Patent One Sky One Sun, +Patent Spirit Pendulum. +-------------------------- +Weight: 1 +# +100413# +The wisdom of the great hero which can draw out the true power of the Patent Hero's weapons. +Magical options can be given to one of the 35 of Patent Hero Weapons. +-------------------------- +Patent Oriental Sword, +Patent Dragonic Slayer, +Patent Katar of Shiver, +Patent Blade Katar, +Patent Red Lotus Sword, +Patent Slate Sword, +Patent Narcissus Bow, +Patent Trumpet Shell, +Patent Barbed Wire Whip, +Patent Avenger, +Patent Meteor Striker, +Patent Magic Sword, +Patent Fatalist, +Patent Royal Bow, +Patent Scarlet Dragon Leather Bow, +Patent Shadow Staff, +Patent Chilling Cane, +Patent Iron Nail, +Patent Ray Knuckle, +Patent Aquatic Spear, +Patent Light Blade, +Patent Aeon Staff, +Patent Blue Crystal Staff, +Patent Exorcist's Bible, +Patent Saint Mace, +Patent Meowmeow Foxtail, +Patent Kiri no Tsuyu, +Patent Clarity Huuma Shuriken, +Patent Crimson Rose, +Patent Master Soul Rifle, +Patent Golden Lord Launcher, +Patent The Black, +Patent Demon Slayer Shot, +Patent One Sky One Sun, +Patent Spirit Pendulum. +-------------------------- +Weight: 1 +# +100414# +A mysterious box that refines a +4 Illusion of Vampire equipment to +7~10 randomly. +-------------------------- +[Target Item] +Illusion Wizardry Staff, +Illusion Infiltrator, +Illusion Ballista, +Illusion Apocalypse, +Illusion Sharpened Leg Bone of Ghoul, +Illusion Cape of Ancient Lord. +-------------------------- +Weight: 1 +# +100415# +A mysterious box that refines a +4 Illusion of Vampire equipment to +9~12 randomly. +-------------------------- +[Target Item] +Illusion Wizardry Staff, +Illusion Infiltrator, +Illusion Ballista, +Illusion Apocalypse, +Illusion Sharpened Leg Bone of Ghoul, +Illusion Cape of Ancient Lord. +-------------------------- +Weight: 1 +# +100416# +A mysterious box that refines a +4 Illusion of Frozen equipment to +9~12 randomly. +-------------------------- +[Target Item] +Illusion Huuma Fluttering Snow, +Illusion Combo Battle Gloves, +Illusion Cap, +Illusion Survivor's Manteau, +Illusion Herald of God. +-------------------------- +Weight: 1 +# +100417# +A mysterious box that refines a +4 Illusion of Turtle Island equipment to +7~10 randomly. +-------------------------- +[Target Item] +Illusion Huuma Wing Shuriken, +Illusion War Axe, +Illusion Immaterial Sword, +Illusion Iron Driver, +Illusion Pole Axe, +Illusion Fancy Flower. +-------------------------- +Weight: 1 +# +100418# +A mysterious box that refines a +4 Illusion of Turtle Island equipment to +9~12 randomly. +-------------------------- +[Target Item] +Illusion Huuma Wing Shuriken, +Illusion War Axe, +Illusion Immaterial Sword, +Illusion Iron Driver, +Illusion Pole Axe, +Illusion Fancy Flower. +-------------------------- +Weight: 1 +# +100419# +A mysterious box that refines a +4 Illusion of Teddy Bear equipment to +7~10 randomly. +-------------------------- +[Target Item] +Illusion Survivor's Staff, +Illusion Gate Keeper-DD, +Illusion Dagger of Counter, +Illusion Hot-Blooded Headband, +Illusion Boots. +-------------------------- +Weight: 1 +# +100420# +A mysterious box that refines a +4 Illusion of Teddy Bear equipment to +9~12 randomly. +-------------------------- +[Target Item] +Illusion Survivor's Staff, +Illusion Gate Keeper-DD, +Illusion Dagger of Counter, +Illusion Hot-Blooded Headband, +Illusion Boots. +-------------------------- +Weight: 1 +# +100421# +A mysterious box that refines a +4 Illusion of Luanda equipment to +7~10 randomly. +-------------------------- +[Target Item] +Illusion Hunter Bow, +Illusion Tablet, +Illusion Goibne Armor, +Illusion Goibne Helm, +Illusion Goibne Spaulders, +Illusion Goibne Greaves. +-------------------------- +Weight: 1 +# +100422# +A mysterious box that refines a +4 Illusion of Luanda equipment to +9~12 randomly. +-------------------------- +[Target Item] +Illusion Hunter Bow, +Illusion Tablet, +Illusion Goibne Armor, +Illusion Goibne Helm, +Illusion Goibne Spaulders, +Illusion Goibne Greaves. +-------------------------- +Weight: 1 +# +100423# +A mysterious box that refines a +4 Illusion of Labyrinth equipment to +7~10 randomly. +-------------------------- +[Target Item] +Illusion Tae Goo Lyeon, +Illusion Butcher, +Illusion Gold Lux, +Illusion Bazerald, +Illusion Morpheus's Hood, +Illusion Morpheus's Shawl. +-------------------------- +Weight: 1 +# +100424# +A mysterious box that refines a +4 Illusion of Labyrinth equipment to +9~12 randomly. +-------------------------- +[Target Item] +Illusion Tae Goo Lyeon, +Illusion Butcher, +Illusion Gold Lux, +Illusion Bazerald, +Illusion Morpheus's Hood, +Illusion Morpheus's Shawl. +-------------------------- +Weight: 1 +# +100425# +A mysterious box that refines a +4 Illusion of Underwater equipment to +7~10 randomly. +-------------------------- +[Target Item] +Illusion Death Guidance, +Illusion Katar of Frozen Icicle, +Illusion Brionac, +Illusion Zephyrus, +Illusion Electric Guitar, +Illusion Electric Eel, +Illusion Saint Robe, +Illusion Saphien's Armor of Ocean, +Illusion Chain Mail, +Illusion Morrigane's Helm, +Illusion Morrigane's Manteau. +-------------------------- +Weight: 1 +# +100426# +A mysterious box that refines a +4 Illusion of Underwater equipment to +9~12 randomly. +-------------------------- +[Target Item] +Illusion Death Guidance, +Illusion Katar of Frozen Icicle, +Illusion Brionac, +Illusion Zephyrus, +Illusion Electric Guitar, +Illusion Electric Eel, +Illusion Saint Robe, +Illusion Saphien's Armor of Ocean, +Illusion Chain Mail, +Illusion Morrigane's Helm, +Illusion Morrigane's Manteau. +-------------------------- +Weight: 1 +# +100428# +A box that contains 1 out of 8 Costume Signon Princess Wave. +-------------------------- +Weight: 1 +# +100433# +A thump box that exchanges Costumes for a random Costume Enchant Stone Boxes. +You can exchange 21 Costumes which can be purchased in March as a material and get 1 of the following Enchant Stone Boxes. +-------------------------- +Costume Enchant Stone Box 13 +Costume Enchant Stone Box 14 +Costume Enchant Stone Box 15 +Costume Enchant Stone Box 16 +Costume Enchant Stone Box 17 +Costume Enchant Stone Box 18 +Costume Enchant Stone Box 19 +Costume Enchant Stone Box 20 +Costume Enchant Stone Box 21 +-------------------------- +You can exchange the following Costumes: +-------------------------- +Costume Pretty White Bear Ears +Costume Yawata Seal +Costume Floating Tai-Chi Beads +Costume Black King's Stall +Costume Whitch's Cat Hat +Costume Twin Cannon +Costume Picnic Basket +Costume Magic Helm +Costume Fawn Ears +Costume Happy Cat +Costume Royal Guard Necklace +Costume Sky of Memory +Costume Under Glasses (Blue) +Costume Monochrome Cap +Costume Pocketwatch Hair Ornament +Costume Poring Traffic Light +Costume Cat Paw Knitted Hat +Costume Frill Neckcap +Costume Rose Gothic Bonnet +Costume Little Garden +Costume Blinking Red Eyes +-------------------------- +Weight: 1 +# +100436# +A mysterious cube that refines Temporal Circlet to +11. +-------------------------- +[Target Items] +Temporal Circlet(Rune Knight), +Temporal Circlet(Royal Guard), +Temporal Circlet(Mechanic), +Temporal Circlet(Genetic), +Temporal Circlet(Guillotine Cross), +Temporal Circlet(Shadow Chaser), +Temporal Circlet(Archbishop), +Temporal Circlet(Sura), +Temporal Circlet(Warlock), +Temporal Circlet(Sorcerer), +Temporal Circlet(Ranger), +Temporal Circlet(Wanderer&Minstrel), +Temporal Circlet(Star Emperor), +Temporal Circlet(Soul Reaper), +Temporal Circlet(Rebellion), +Temporal Circlet(Oboro), +Temporal Circlet(Kagerou), +Temporal Circlet(Super Novice), +Temporal Circlet(Summoner) +-------------------------- +Weight: 1 +# +100437# +A cube containing a cube that can upgrade an Ancient Hero's Weapon to an Patent Hero's Weapon. +It contains 1 of 35 types of cubes. +-------------------------- +[Obtainable Items] +Oriental Sword Remodeling Cube +Dragonic Slayer Remodeling Cube +Katar of Shiver Remodeling Cube +Blade Katar Remodeling Cube +Barbed Wire Whip Remodeling Cube +Trumpet Shell Remodeling Cube +Narcissus Bow Remodeling Cube +Slate Sword Remodeling Cube +Red Lotus Sword Remodeling Cube +Fatalist Remodeling Cube +Mado Sword Remodeling Cube +Meteor Striker Remodeling Cube +Avenger Remodeling Cube +Chilling Cane Remodeling Cube +Shadow Staff Remodeling Cube +Scarlet Dragon Leather Bow Remodeling Cube +Royal Bow Remodeling Cube +Sain Mace Remodeling Cube +Exorcist's Bible Remodeling Cube +Blue Crystal Staff Remodeling Cube +Iron Staff Remodeling Cube +Light Blade Remodeling Cube +Aquatic Spear Remodeling Cube +Ray Knuckle Remodeling Cube +Iron Nail Remodeling Cube +Meowmeow Foxtail Remodeling Cube +Kiri no Tsuyu Remodeling Cube +Clarity Huuma Shuriken Remodeling Cube +Crimson Rose Remodeling Cube +Master Soul Rifle Remodeling Cube +Golden Lord Launcher Remodeling Cube +The Black Remodeling Cube +Demon Slayer Shot Remodeling Cube +One Sky One Sun Remodeling Cube +Spirit Pendulum Remodeling Cube +-------------------------- +Weight: 1 +# +100442# +A box where you can get one of various types of Shadow Weapons. +-------------------------- +[Obtainable Items] +Force Executioner Shadow Weapon +Magic Spirit Executioner Shadow Weapon +Spiritual Shadow Weapon II +Blitz Shadow Weapon +Tension Shadow Weapon +Elegant Shadow Weapon +Mortal Blow Shadow Weapon +Sentimental Shadow Weapon +Enchanting Shadow Weapon +-------------------------- +Weight: 1 +# +100443# +A box where you can get one of various types of Shadow Shields. +-------------------------- +[Obtainable Items] +Spell Flow Shadow Shield II +Sigrun Shadow Shield +Critical Shadow Shield +Tempest Shadow Shield +Healing Shadow Shield +Penetration Shadow Shield +-------------------------- +Weight: 1 +# +100444# +A box where you can get one of various types of Shadow Armors. +-------------------------- +[Obtainable Items] +Malicious Shadow Armor II +Sigrun Shadow Armor +Caster Shadow Armor II +Reload Shadow Armor II +Blitz Shadow Armor +Magic Executioner Holy Water Shadow Armor +Magic Corrupted Exorcist Shadow Armor +Magic Vibration Dragon Killer Shadow Armor +Magic Scissor Hunting Shadow Armor +Magic Fishing Insect Net Shadow Armor +Executioner Holy Water Shadow Armor +Corrupted Exorcist Shadow Armor +Vibration Dragon Killer Shadow Armor +Scissor Hunting Shadow Armor +Fishing Insect Net Shadow Armor +-------------------------- +Weight: 1 +# +100445# +A box where you can get one of various types of Shadow Shoes. +-------------------------- +[Obtainable Items] +Hasty Shadow Shoes II +Critical Shadow Shoes +Tempest Shadow Shoes +Penetration Shadow Shoes +Healing Shadow Shoes +-------------------------- +Weight: 1 +# +100446# +A box where you can get one of various types of Shadow Earrings. +-------------------------- +[Obtainable Items] +Gemstone Shadow Earring II +Tension Shadow Earring +Elegant Shadow Earring +Restore Shadow Earring +Mortal Blow Shadow Earring +Sentimental Shadow Earring +Enchanting Shadow Earring +-------------------------- +Weight: 1 +# +100447# +A box where you can get one of various types of Shadow Pendants. +-------------------------- +[Obtainable Items] +Bearer's Shadow Pendant II +Tension Shadow Pendant +Elegant Shadow Pendant +Restore Shadow Pendant +Mortal Blow Shadow Pendant +Sentimental Shadow Pendant +Enchanting Shadow Pendant +-------------------------- +Weight: 1 +# +100452# +Decreases base POW by 1 and return trait stat point to the user. +POW can't be decreased lower than 0. +-------------------------- +Weight: 0 +# +100453# +Decreases base SPL by 1 and return trait stat point to the user. +SPL can't be decreased lower than 0. +-------------------------- +Weight: 0 +# +100454# +Decreases base STA by 1 and return trait stat point to the user. +STA can't be decreased lower than 0. +-------------------------- +Weight: 0 +# +100455# +Decreases base WIS by 1 and return trait stat point to the user. +WIS can't be decreased lower than 0. +-------------------------- +Weight: 0 +# +100456# +Decreases base CON by 1 and return trait stat point to the user. +CON can't be decreased lower than 0. +-------------------------- +Weight: 0 +# +100457# +Decreases base CRT by 1 and return trait stat point to the user. +CRT can't be decreased lower than 0. +-------------------------- +Weight: 0 +# +100460# +When you drink this, you gain a small amount of experience. +The number of times you level up with the experience gained at this time is limited to one. +If you have already grown over Level 231, the effectiveness decreases sharply. +-------------------------- +Weight: 0 +-------------------------- +Requirements: +Base Level 200 +# +100462# +A card album obtained from an unknown creature. The magical power of a creature that feels subtle seems to do hollow cries not to forget itself. +-------------------------- +Weight: 1.5 +# +100465# +A box that contains stones that can be enchanted on an Costume equipment. +Contains Class Stones (Garment). +It also contains Kagerou, Oboro, Rebellion and Doram Stone (Garment). +-------------------------- +Weight: 1 +# +100466# +A box containing Aegir's power. +It is said that the mysterious power of Aegir is instilled by shaking it with Aegir or Aegirnian equipment. +-------------------------- +[Target Items] +Aegir Helm +Aegir Armor +Aegir Shoes +Aegir Manteau +Aegirnian Helm +Aegirnian Armor +Aegirnian Shoes +Aegirnian Manteau +-------------------------- +Weight: 1 +# +100467# +A box containing Aegir's magical power. +It is said that the magical power of Aegir is instilled by shaking it with Aegir or Aegirnian equipment. +-------------------------- +[Target Items] +Aegir Helm +Aegir Armor +Aegir Shoes +Aegir Manteau +Aegirnian Helm +Aegirnian Armor +Aegirnian Shoes +Aegirnian Manteau +-------------------------- +Weight: 1 +# +100468# +You can get one of the newly crafted equipment based on Aegir's equipment. +-------------------------- +[Obtainable Items] +Aegirnian Helm[1] +Aegirnian Armor[1] +Aegirnian Shoes[1] +Aegirnian Manteau[1] +Aegirnian Ring[1] +Aegirnian Necklace[1] +-------------------------- +Weight: 1 +# +100469# +A box containing a helmet adapted for OS weapons. +Contains one of 7 helmets. +-------------------------- +[Obtainable Items] +Ignis Cap +Phantom Cap +Stripe Hat +Red Clock Casquette +Great Magician's Ceremonial Crown +Scorpio Diadem +Sagittarius Diadem +-------------------------- +Weight: 1 +# +100470# +A box of various hats. +Contains 1 of the following items. +-------------------------- +[Obtainable Items] +Gigant Snake's Breath +New Wave Sunglasses +Moon Disk in Mouth +Magical Booster +Heart Wings Hairband +Celine's Brooch +Victory Wing Ears +Thanatos' Mask of Sorrow +Thanatos' Mask of Despair +Thanatos' Mask of Hatred +Thanatos' Anguish +Dog Officer +Spell Circuit +General's Helm +Classical Feather Hat +Amistr Beret +-------------------------- +Weight: 1 +# +100475# +A special box that can permanently store Purified Growth Elixiers in a safe state. +Once opened, the ability to store is lost. +-------------------------- +Weight: 0 +# +100476# +The weak magic power that flowed out of the pieces of Ymir is united and united to form a stable magical power. When used on equipment that resonates, it can draw out the hidden power of the equipment. +-------------------------- +Weight: 1 +# +100477# +A box containing Poenitentia Gladius and Poenitentia Aegis specialized in magic attacks (Genesis Ray, Cross Rain). +-------------------------- +Weight: 0 +# +100478# +A box containing Poenitentia Asta and Poenitentia Aegis specialized in physical attacks (Over Brand, Overslash). +-------------------------- +Weight: 0 +# +100479# +A gem of Sakrai's wrath. +When used on a Poenitentia weapon, it can give you two options related to physical attacks. +-------------------------- +Weight: 1 +# +100480# +A jewel containing the condensation of Sakrai's wrath. +When used on a Poenitentia weapon, it can give you three options related to physical attacks. +-------------------------- +Weight: 1 +# +100481# +An accelerator that improves the performance of the Battle Processor. +Activates additional functions in the Battle Processor. It breaks when used once. +-------------------------- +Two random options can be given to the Battle Processor[1]. +-------------------------- +Weight: 1 +# +100485# +A gem of Sakrai's regrets. +When used on a Poenitentia weapon, it can grant 2 magic-related options. +-------------------------- +Weight: 1 +# +100486# +A jewel containing the condensation of Sakrai's regrets. +When used on a Poenitentia weapon, it can give 3 magic-related options. +-------------------------- +Weight: 1 +# +100495# +A box that contains stones that can be enchanted on an Costume equipment. +Contains Class Stones 2 (Garment). +It also contains Star Emperor and Soul Reaper Stone (Garment). +-------------------------- +Weight: 1 +# +100496# +A box that contains stones that can be enchanted on an Costume equipment. +Contains Class Stones (Upper). +It also contains Kagerou, Oboro, Rebellion and Doram Stone (Upper). +-------------------------- +Weight: 1 +# +100497# +A box that contains stones that can be enchanted on an Costume equipment. +Contains Class Stones 2 (Upper). +It also contains Star Emperor and Soul Reaper Stone (Upper). +-------------------------- +Weight: 1 +# +100498# +A box that contains stones that can be enchanted on an Costume equipment. +Contains Class Stones (Mid). +It also contains Kagerou, Oboro, Rebellion and Doram Stone (Mid). +-------------------------- +Weight: 1 +# +100499# +A box that contains stones that can be enchanted on an Costume equipment. +Contains Class Stones 2 (Mid). +It also contains Star Emperor and Soul Reaper Stone (Mid). +-------------------------- +Weight: 1 +# +100500# +A box that contains stones that can be enchanted on an Costume equipment. +Contains Class Stones (Lower). +It also contains Kagerou, Oboro, Rebellion and Doram Stone (Lower). +-------------------------- +Weight: 1 +# +100501# +A box that contains stones that can be enchanted on an Costume equipment. +Contains Class Stones 2 (Lower). +It also contains Star Emperor and Soul Reaper Stone (Lower). +-------------------------- +Weight: 1 +# +100502# +A box containing stones that can enchant Costume equipment. +-------------------------- +8x Class Stone Boxes (for each type), 2 Ranged and 3 Melee Enchant Stones have been added. +Already exisiting Costume Enchant Stones are also included. +-------------------------- +[Costume Enchant Stone Box 22]https://ro.gnjoy.com/news/probability/list.asp?category=2,1024,768 +-------------------------- +Weight: 1 +# +100508# +When you drink this, you gain a small amount of experience. +The number of times you level up with the experience gained at this time is limited to one. +-------------------------- +Weight: 0 +-------------------------- +Requirements: +Min Base Level 35 +Max Base Level 50 +# +100509# +When you drink this, you gain a certain amount of experience. +The number of times you level up with the experience gained at this time is limited to one. +-------------------------- +Weight: 0 +-------------------------- +Requirements: +Min Base Level 85 +Max Base Level 99 +# +100510# +When you drink this, you gain a lot of experience. +The number of times you level up with the experience gained at this time is limited to one. +-------------------------- +Weight: 0 +-------------------------- +Requirements: +Min Base Level 130 +Max Base Level 160 +# +100511# +When you drink this, you gain an extra amount of experience. +The number of times you level up with the experience gained at this time is limited to one. +-------------------------- +Weight: 0 +-------------------------- +Requirements: +Min Base Level 175 +Max Base Level 190 +# +100512# +You can randomly obtain one of a Shadow Equipment that increase the stats of a specific skill of an extended class character. +-------------------------- +Weight: 1 +# +100515# +A box containing the secretly collected collection by Kachua. +-------------------------- +Weight: 0 +# +100516# +Cleanser that can wash your eyes quickly. +Be careful not to close your eyes when using. +-------------------------- +Cures Deep Blind. +-------------------------- +Weight: 5 +# +100517# +Cleanser that can wash your ears quickly. +It is designed to be administered at one time. +-------------------------- +Cures Silence. +-------------------------- +Weight: 5 +# +100518# +A rejuvenating agent that gives you a quick boost. +It is designed to be administered at one time. +-------------------------- +Cures Lethargy. +-------------------------- +Weight: 5 +# +100519# +Small fire extinguishers that can cool down in small amounts. +It has been improved to be harmless to the human body. +-------------------------- +Cures Blaze. +-------------------------- +Weight: 5 +# +100520# +If you drink it, you will feel lucky for some reason. +-------------------------- +Cures Unlucky. +-------------------------- +Weight: 5 +# +100521# +An antidote that can cure venom. +-------------------------- +Cures Severe Poison. +-------------------------- +Weight: 5 +# +100522# +Chocolate that makes you feel better just by eating. +-------------------------- +Cures Gloomy. +-------------------------- +Weight: 5 +# +100523# +Holy water produced through the prayer of a high priest. +-------------------------- +Cures Holy Fire. +-------------------------- +Weight: 5 +# +100534# +A box of appreciation from all those responsible for developing and servicing Ragnarok. +On the outside of the box are filled with thank-you notes from each person in charge. +There are rumors that it contains a Golden Seal card, a Sealed Seal Card, a +9 Refinement Ticket and a Kachua Secret Key. +-------------------------- +Weight: 1 +# +100547# +A box containing a crown made for specific subjects. +One of a total of 12 helmets can be obtained at random. +-------------------------- +Goral Crown +Trial Tiadem +Jade Crown +Spinel Tiadem +Bull Crown +Taurus Tiadem +Celestial Jewel Crown +Libra Crown +Saint Crown +Lion Crown +Goat Crown +Twins Crown +-------------------------- +Weight: 1 +# +100553# +Egg containing young leaves of the world tree. It is said that the young leaves of the world tree resonate with the equipment of time to elicit power. +-------------------------- +Weight: 1 +# +100569# +A box containing one of the costumes that can be obtained by enduring a long time. +You can get one of the items below: +-------------------------- +Costume Water Spellcaster +Costume Flame Master +Costume Wind Master +Costume Earth Master +Costume Dark Master +Costume Brilliant Blue Angeling Wings +Costume Crimson Wings +Costume Primal Resonating +Costume Raphael's Wings +Costume Sweets Party +Costume Raguel's Wings +Costume Miracle Plant +Costume Lucifer's Wings +Costume Snow Ice Hair +Costume Black Evil Druid Hat +Costume Piamette's Red Hood +Costume Piamette's Red Bow Tie +Costume White Rabbit +Costume Variant Veil +Costume Two Tone Beret +Costume Seraphim Coronet +Costume Over Protector +Costume Fake Ears +Costume Under Lamp +Costume Jitterbug Cap +Costume Great Dracula Horns +Costume Orange Rabbit +Costume Guard's Hat +Costume Cat Paw Knitted Hat (Brown) +Costume War Princess Ribbon +-------------------------- +Weight: 1 +# +100570# +A box with only a carefully selected list of costume helmets in the special costume box. +You can get one of the items below: +-------------------------- +Costume Water Spellcaster +Costume Flame Master +Costume Wind Master +Costume Earth Master +Costume Dark Master +Costume Brilliant Blue Angeling Wings +Costume Crimson Wings +Costume Primal Resonating +Costume Raphael's Wings +Costume Sweets Party +Costume Raguel's Wings +Costume Miracle Plant +Costume Lucifer's Wings +Costume Snow Ice Hair +-------------------------- +Weight: 1 +# +100572# +Full Penetration Shadow Thump Box +If you combine 10 of any of the following Shadow Equipments which are refined to +7 or higher, you can obtain one of Full Penetration Shadow Earring, Full Penetration Shadow Pendant, Full Penetration Shadow Shoes or Full Penetration Shadow Armor randomly: +-------------------------- +Penetration Shadow Shoes, +Penetration Shadow Shield, +Executioner Holy Water Shadow Armor, +Corrupted Exorcist Shadow Armor, +Vibration Dragon Killer Shadow Armor, +Scissor Hunting Shadow Armor, +Fishing Insect Net Shadow Armor, +Penetration Shadow Earring, +Penetration Shadow Pendant, +Executioner Shadow Weapon, +Exorcist Shadow Weapon, +Hunting Shadow Weapon, +Insect Net Shadow Weapon, +Fishing Shadow Weapon, +Dragon Killer Shadow Weapon, +Corrupted Shadow Weapon, +Vibration Shadow Weapon, +Holy Water Shadow Weapon, +Scissor Shadow Weapon, +Force Executioner Shadow Weapon, +Penetration Shadow Weapon, +Penetration Shadow Armor, +Executioner Holy Water Shadow Weapon, +Fishing Insect Net Shadow Weapon, +Scissor Hunting Shadow Weapon, +Vibration Dragon Killer Shadow Weapon, +Corrupted Exorcist Shadow Weapon. +-------------------------- +The refine level of an item that becomes a material does not affect the result. +-------------------------- +Weight: 1 +# +100573# +A box made to support various events in Ragnarok Inven. +You can acquire various items that help you play the game. +-------------------------- +50x [Event] Level 10 Blessing Scroll +50x [Event] Level 10 Increase Agility Scroll +30x [Event] Small Life Potion +30x [Event] Medium Life Potion +30x [Event] Mysterious Life Potion +30x [Event] Small Mana Potion +10x [Event] Almighty +10x [Event] Power Booster +10x [Event] Infinity Drink +30x World Tour Ticket +-------------------------- +Weight: 1 +# +100574# +An item that increases gained experience provided from Premium status to adventurers who have suffered inconvenience due to service failure. +If used, increases your gained experience for 1 hour. +-------------------------- +Weight: 1 +# +100575# +An item that increases drop rate provided from Premium status to adventurers who have suffered inconvenience due to service failure. +If used, increases drop rate for 1 hour. +-------------------------- +Weight: 1 +# +100576# +An item that decreases the death penalty provided from Premium status to adventurers who have suffered inconvenience due to service failure. +If used, decreases death penalty for 1 hour. +-------------------------- +Weight: 1 +# +100577# +An item that provides all 3 types from Premium status to adventurers who have suffered inconvenience due to service failure. +If used, recieve all 3 types of services from Premium Status (increases gained experience, drop rate and decreases death penalty) for 1 hour. +-------------------------- +Weight: 1 +# +100579# +A gemstone that can craft Thanatos' necklace. +Two types of random options can be granted. +When crafting, you can obtain a 'Red Force Pendant' or a 'Blue Mental Pendant' additionally with a low chance. +-------------------------- +Pendant Gemstone of Force can be obtained from +[Cat Salesman Nyarom]itemmall,41,50,0,100,0,0, +by using Silvervine Cat Fruit or Zeny. +-------------------------- +Weight: 1 +# +100580# +A strange stone that gives a mysterious power. +It gives 2 kinds of random options to 'Red Force Pendant' or 'Blue Mental Pendant'. +-------------------------- +Pendant Gemstone of Force can be obtained from +[Cat Salesman Nyarom]itemmall,41,50,0,100,0,0, +by using Silvervine Cat Fruit or Zeny. +-------------------------- +Weight: 1 +# +100585# +A box containing one gemstone for Thanatos' Necklace and Pendant Gemstone of Force. +-------------------------- +Pendant Gemstone of Force can be obtained from +[Cat Salesman Nyarom]itemmall,41,50,0,100,0,0, +by using Silvervine Cat Fruit or Zeny. +-------------------------- +Weight: 1 +# +100596# +Full Tempest Shadow Thump Box. +If you combine 10 of any of the following Shadow Equipments which are refined to +7 or higher, you can obtain one of Full Tempest Shadow Earring, Full Tempest Shadow Pendant, Full Tempest Shadow Shoes or Full Tempest Shadow Armor randomly: +-------------------------- +Tempest Shadow Shoes, +Tempest Shadow Shield, +Magic Executioner Holy Water Shadow Armor, +Magic Corrupted Exorcist Shadow Armor, +Magic Vibration Dragon Killer Shadow Armor, +Magic Scissor Hunting Shadow Armor, +Magic Fishing Insect Net Shadow Armor, +Tempest Shadow Earring, +Tempest Shadow Pendant, +Magic Executioner Shadow Weapon, +Magic Exorcist Shadow Weapon, +Magic Hunting Shadow Weapon, +Magic Insect Net Shadow Weapon, +Magic Fishing Shadow Weapon, +Magic Dragon Killer Shadow Weapon, +Magic Corrupted Shadow Weapon, +Magic Vibration Shadow Weapon, +Magic Holy Water Shadow Weapon, +Magic Scissor Shadow Weapon, +Magic Spirit Executioner Shadow Weapon, +Tempest Shadow Weapon, +Tempest Shadow Armor, +Magic Executioner Holy Water Shadow Weapon, +Magic Fishing Insect Net Shadow Weapon, +Magic Scissor Hunting Shadow Weapon, +Magic Vibration Dragon Killer Shadow Weapon, +Magic Corrupted Exorcist Shadow Weapon. +-------------------------- +The refine level of an item that becomes a material does not affect the result. +-------------------------- +Weight: 1 +# +100600# +New Shadow Thump Box. +-------------------------- +Using 3 of any Shadow Equipment as a material, you can get 1 random Shadow Equipment. +Combination Shadow Equipment can be acquired with a low chance. +-------------------------- +Weight: 1 +# +100601# +Illusion Module Thump Box. +-------------------------- +Using 5 different Illusion modules as materials, you receive 1 random Illusion module. +-------------------------- +Weight: 1 +# +100602# +Automatic Module Thump Box. +-------------------------- +Using 5 different Automatic modules as materials, you receive 1 random Automatic module. +-------------------------- +Weight: 1 +# +100603# +New Lapine Thump Box. +-------------------------- +A mysterious box made by the Rafine Alchemy Association [The Gate of Truth] to compress extra items. +You can get 2 Thump Boxes for combination that can combine various items. +Includes a new Shadow Thump Box and a new Thump Box. +-------------------------- +Ccaution! - The contents of Lapines Thump Box are subject to change without notice. +-------------------------- +Weight: 1 +# +100616# +Ragnarok Online X Auction's Donation Promotion Event Box! +Your little donation brightens the candle of love. +-------------------------- +50x [Event] Level 10 Blessing Scroll +50x [Event] Level 10 Increase Agility Scroll +30x [Event] Small Life Potion +30x [Event] Medium Life Potion +30x [Event] Mysterious Life Potion +20x [Event] Almighty +20x [Event] Power Booster +20x [Event] Infinity Drink +20x [Event] Small Mana Potion +20x World Tour Ticket +-------------------------- +Weight: 1 +# +100619# +A mysterious refine hammer that increases the refine level of the Thanos weapon series modified by Tim Atnard by +1. +Only modified Thanos weapons of +9 until +11 can be used. +For each use, 14 Blacksmith's Blessings are consumed as a material. +-------------------------- +Weight: 1 +# +100620# +True Gemstone Shadow Thump Box +If you add 6 +7 of the following Shadow Equipments, you can obtain one of True Gemstone Shadow Armor, True Gemstone Shadow Shoes, True Gemstone Shadow Earring or True Gemstone Shadow Pendant randomly: +-------------------------- +Gemstone Shadow Weapon, +Gemstone Shadow Armor, +Gemstone Shadow Shoes, +Gemstone Shadow Shield, +Gemstone Shadow Pendant, +Gemstone Shadow Earring, +Gemstone Shadow Weapon II, +Gemstone Shadow Shield II, +Gemstone Shadow Earring II. +-------------------------- +The refine level of an item that becomes a material does not affect the result. +-------------------------- +Weight: 1 +# +100621# +Maximum Mammonth Shadow Thump Box. +If you add 6 +7 of the following Shadow Equipments, you can obtain one of Maximum Mammonth Shadow Armor, Maximum Mammonth Shadow Shoes, Maximum Mammonth Shadow Pendant or Maximum Mammonth Shadow Earring randomly: +-------------------------- +Mammonth Shadow Weapon, +Mammonth Shadow Armor, +Mammonth Shadow Shoes, +Mammonth Shadow Shield, +Mammonth Shadow Pendant, +Mammonth Shadow Earring. +-------------------------- +The refine level of an item that becomes a material does not affect the result. +-------------------------- +Weight: 1 +# +100626# +A magic box that can refine Gray Wolf equipment. If you put Gray Wolf armor, you can get +7 refined Gray Wolf armor. +-------------------------- +[Target Items] +Gray Wolf Suit, +Gray Wolf Robe, +Gray Wolf Manteau, +Gray Wolf Scarf, +Gray Wolf Boots, +Gray Wolf Shoes. +-------------------------- +Weight: 1 +# +100627# +A magic box that can refine Gray Wolf equipment. If you put Gray Wolf armor, you can get +9 refined Gray Wolf armor. +-------------------------- +[Target Items] +Gray Wolf Suit, +Gray Wolf Robe, +Gray Wolf Manteau, +Gray Wolf Scarf, +Gray Wolf Boots, +Gray Wolf Shoes. +-------------------------- +Weight: 1 +# +100650# +A stone that can impart strong physical power to a false belief weapon. +-------------------------- +Weight: 1 +-------------------------- +Requirements: +Base Level 180 +# +100651# +A stone that can impart strong magical power to a false belief weapon. +-------------------------- +Weight: 1 +-------------------------- +Requirements: +Base Level 180 +# +100652# +A stone that can impart strong physical abilities to a purified faith weapon. +-------------------------- +Weight: 1 +-------------------------- +Requirements: +Base Level 180 +# +100653# +A stone that can impart strong magical abilities to a purified faith weapon. +-------------------------- +Weight: 1 +-------------------------- +Requirements: +Base Level 180 +# +100655# +A bundle containing three blueprints required to purify and reassemble weapons made with false belief. +-------------------------- +Weight: 1 +# +100661# +Experience Shadow Thump Box. +If you combine five +7 or higher refined of any of the following Shadow Equipments, you can obtain one Experience Shadow Shield: +-------------------------- +Beginner +Rookie +Advanced +Expert +-------------------------- +The refine level of an item that becomes a material does not affect the result. +-------------------------- +Weight: 1 +# +100684# +Mysterious Cube, which refines Biological Helmets to +11. +-------------------------- +[Target Item] +Goral Crown, +Trial Tiadem, +Jade Crown, +Spinel Tiadem, +Bull Crown, +Taurus Tiadem, +Celestial Jewel Crown, +Libra Crown, +Saint Crown, +Lion Crown, +Goat Crown, +Twins Crown. +-------------------------- +Weight: 1 +# +100690# +A cube that collects Shadow Equipments used as materials to recieve Shadow Equipments from Shadow Thump Boxes. +-------------------------- +You can get 2 of the Shadow Equipments used in Infinity, Full Penetration, Full Tempest, True Gemstone, Maximum Mammoth, Experience and Absolve Shadow Thump Box. +-------------------------- +Weight: 1 +# +100691# +Absolve Shadow Thump Box. +-------------------------- +If you combine five +7 or higher refined of any of the following Shadow Equipment, +you can obtain either Absorb Shadow Weapon or Absorb Shadow Shield: +-------------------------- +Malicious Shadow Armor +Malicious Shadow Armor II +Malicious Shadow Shoes +Malicious Shadow Shield +Spiritual Shadow Weapon +Spiritual Shadow Weapon II +Spiritual Shadow Earring +Spiritual Shadow Pendant +-------------------------- +The refine level of an item that becomes a material does not affect the result. +-------------------------- +Weight: 1 +# +100699# +A mysterious box that refines +4 Illusion of Twins equipment to 7~10 randomly. +-------------------------- +[Target Item] +Illusion Sprint Mail, +Illusion Spring Shoes, +Illusion Dark Thorn Staff, +Illusion Dea Staff, +Illusion Gelerdria, +Illusion Excalibur, +Illusion Doom Slayer, +Illusion Ancient Dagger, +Illusion Guard, +Illusion Silver Guard. +-------------------------- +Weight: 1 +# +100700# +A mysterious box that refines +4 Illusion of Twins equipment to 9~12 randomly. +-------------------------- +[Target Item] +Illusion Sprint Mail, +Illusion Spring Shoes, +Illusion Dark Thorn Staff, +Illusion Dea Staff, +Illusion Gelerdria, +Illusion Excalibur, +Illusion Doom Slayer, +Illusion Ancient Dagger, +Illusion Guard, +Illusion Silver Guard. +-------------------------- +Weight: 1 +# +100706# +The will of an ancient hero. +When used, you can gain the Valor or Wisdom of an Ancient Hero that draws out the power of the ancient hero's weapons. +With a low chance, you can obtain the Valor or Wisdom of a Great Hero. +-------------------------- +Weight: 1 +# +100707# +A box containing Mammoth Shadow Equipment. +You can recieve either Mammoth Shadow Weapon, Mammoth Shadow Armor, Mammoth Shadow Shoes, Mammoth Shadow Shield, Mammoth Shadow Pendant or Mammoth Shadow Earring. +-------------------------- +Weight: 1 +# +100708# +A box containing a spellbook which strengthens Shadow Equipment. +You can recieve either Class Shadow Spellbook (Physical), Class Shadow Spellbook (Magical), Skill Shadow Spellbook (Physical) or Skill Shadow Spellbook (Magic). +-------------------------- +Weight: 1 +# +100709# +A box can obtain one of every type of Shadow Equipment randomly. +-------------------------- +Weight: 1 +# +100710# +Modification device that improves the performance of the EXP Advisor. +Activates additional functions in the EXP advisor. It breaks when used once. +-------------------------- +Two random options will be granted to the EXP Advisor[1]. +-------------------------- +Weight: 1 +# +100717# +A box containing 1 out of 9 kinds of fluffy semi-long costumes. +-------------------------- +Weight: 1 +Price: 20 +# +100721# +A box containing stones that can be enchanted to the costume equipment for each part. +Magic Power Stone (Dual), Melee Stone (Dual), Variable Casting Stone (Dual), ASPD Stone (Dual), etc. have been added. +Existing Costume Enchant Stones are also included. +-------------------------- +[Costume Enchant Stone Box 23]https://ro.gnjoy.com/news/probability/list.asp?category=2,1024,768 +-------------------------- +Weight: 1 +# +100722# +A mysterious item that can give physical random options to Booster Weapons. +-------------------------- +Ignition Wave Booster Two-Handed Sword +Hundred Breath Booster Spear +Banishing Cannon Booster Spear +Pressure Genesis Booster Sword +Power Tornado Booster Axe +Arms Knuckle Booster Mace +Acid Cannon Booster Club +Hells Tornado Booster Sword +Rolling Cross Booster Katar +Counter Assault Booster Katar +Triangle Bomb Booster Bow +Magic Fatal Booster Dagger +Crimson Strain Booster Staff +Chain Jack Booster Staff +Spell Bolt Booster Book +Elemental Spell Booster Stick +Adonus Booster Wand +Dupledex Booster Mace +Rampage Arrow Booster Knuckle +Sky Cannon Booster Knuckle +Arrow Booster Bow +Sharp Bolt Booster Bow +Rainstorm Booster Booster Violin +Rainstorm Booster Booster Whip +Metallic Reverberation Booster Violin +Metallic Reverberation Booster Whip +-------------------------- +Weight: 0 +# +100723# +A mysterious item that can give magical random options to Booster Weapons. +-------------------------- +Ignition Wave Booster Two-Handed Sword +Hundred Breath Booster Spear +Banishing Cannon Booster Spear +Pressure Genesis Booster Sword +Power Tornado Booster Axe +Arms Knuckle Booster Mace +Acid Cannon Booster Club +Hells Tornado Booster Sword +Rolling Cross Booster Katar +Counter Assault Booster Katar +Triangle Bomb Booster Bow +Magic Fatal Booster Dagger +Crimson Strain Booster Staff +Chain Jack Booster Staff +Spell Bolt Booster Book +Elemental Spell Booster Stick +Adonus Booster Wand +Dupledex Booster Mace +Rampage Arrow Booster Knuckle +Sky Cannon Booster Knuckle +Arrow Booster Bow +Sharp Bolt Booster Bow +Rainstorm Booster Booster Violin +Rainstorm Booster Booster Whip +Metallic Reverberation Booster Violin +Metallic Reverberation Booster Whip +-------------------------- +Weight: 0 +# +100724# +Brings spring energy to the Cherry Blossom Fan. +It is also used to reset the energy on the Cherry Blossom Fan. +-------------------------- +[Target Item] +Cherry Blossom Fan +# +100726# +A specially prepared box for beginners. +It contains the following items. +-------------------------- +10x [Event] Almighty +10x [Event] Power Booster +10x [Event] Infinity Drink +3x [Event] Three Master Package (20) +3x [Event] Brilliant Protection Box(20) +60x [Event] Small Mana Potion +60x [Event] Red Booster +56x Booster Coins +1x Booster Pack(230) +-------------------------- +Requirement: +Base Level 215 +-------------------------- +Weight: 0 +# +100727# +A specially prepared box for beginners. +It contains the following items. +-------------------------- +1x 2021 Booster Goal Achievement Gift Box +20x [Event] Almighty +20x [Event] Power Booster +20x [Event] Infinity Drink +5x [Event] Three Master Package (20) +5x [Event] Brilliant Protection Box(20) +100x [Event] Small Mana Potion +100x [Event] Red Booster +60x Booster Coins +-------------------------- +Requirement: +Base Level 230 +-------------------------- +Weight: 0 +# +100728# +A box containing stones that can provide additional abilities when equipped to Angel Poring Boots. +A total of 6 stones are included. +-------------------------- +When equipping one stone to Angel Poring Boots, it cannot be replaced with another stone, so choose carefully. +It can also be equipped on other shoes, but in that case, you can only obtain the Status +1 option depending on the type of stone. +-------------------------- +Weight: 1 +# +100742# +A box containing the weapons of an Patent Ancient Hero. +Contains 1 of 35 Patent Ancient Hero's weapons. +-------------------------- +Patent Royal Bow, +Patent Shadow Staff, +Patent Iron Nail, +Patent Narcissus Bow, +Patent Magic Sword, +Patent Aquatic Spear, +Patent Aeon Staff, +Patent Red Lotus Sword, +Patent Avenger, +Patent Golden Lord Launcher, +Patent Exorcist's Bible, +Patent Katar of Shiver, +Patent One Sky One Sun, +Patent Clarity Huuma Shuriken, +Patent Kiri no Tsuyu, +Patent Crimson Rose, +Patent Meowmeow Foxtail, +Patent The Black, +Patent Oriental Sword, +Patent Master Soul Rifle, +Patent Demon Slayer Shot, +Patent Spirit Pendulum. +Patent Dragonic Slayer, +Patent Light Blade, +Patent Meteor Striker, +Patent Slate Sword, +Patent Trumpet Shell, +Patent Barbed Wire Whip, +Patent Saint Mace, +Patent Ray Knuckle, +Patent Blade Katar, +Patent Fatalist, +Patent Scarlet Dragon Leather Bow, +Patent Blue Crystal Staff, +Patent Chilling Cane +-------------------------- +Weight: 200 +# +100744# +A modification device that can give physical options to Hero's Weapon-LT. +Two types of physical options can be given to 16 types of Hero's Weapon-LT. +-------------------------- +Saint Mace-LT, Aquatic Spear-LT, +Exorcist's Bible-LT, Light Blade-LT, +Mado Sword-LT, Fatalist-LT, +Aeon Staff-LT, Blue Crystal Staff-LT, +Shadow Staff-LT, Chilling Cane-LT, +Iron Nail-LT, Ray Knuckle-LT +Red Lotus Sword-LT, Slate Sword-LT, +Royal Bow-LT, Scarlet Dragon Leather Bow-LT +-------------------------- +Weight: 1 +# +100745# +A modification device that can give magical options to Hero's Weapon-LT. +Two types of magical options can be given to 16 types of Hero's Weapon-LT. +-------------------------- +Saint Mace-LT, Aquatic Spear-LT, +Exorcist's Bible-LT, Light Blade-LT, +Mado Sword-LT, Fatalist-LT, +Aeon Staff-LT, Blue Crystal Staff-LT, +Shadow Staff-LT, Chilling Cane-LT, +Iron Nail-LT, Ray Knuckle-LT +Red Lotus Sword-LT, Slate Sword-LT, +Royal Bow-LT, Scarlet Dragon Leather Bow-LT +-------------------------- +Weight: 1 +# +100750# +Advanced Refinement Certificate Envelope +You can acquire one of the following refine certificates. +-------------------------- +[Obtainable Items] +Safe to 11 Weapon Certificate +Safe to 11 Armor Certificate +Safe to 12 Weapon Certificate +Safe to 12 Armor Certificate +Safe to 13 Weapon Certificate +Safe to 13 Armor Certificate +-------------------------- +Caution! - Once opened, transactions with other accounts are not possible. +-------------------------- +Weight: 1 +# +100751# +Refinement Certificate Envelope +You can acquire one of the following refine certificates. +-------------------------- +[Obtainable Items] +Safe to 7 Weapon Certificate +Safe to 7 Armor Certificate +Safe to 8 Weapon Certificate +Safe to 8 Armor Certificate +Safe to 9 Weapon Certificate +Safe to 9 Armor Certificate +Safe to 10 Weapon Certificate +Safe to 10 Armor Certificate +-------------------------- +Caution! - Once opened, transactions with other accounts are not possible. +-------------------------- +Weight: 1 +# +100752# +A box containing a mysterious cube that refines certain equipment at a higher refine rate. +You can obtain one of the Refinement Cubes below. +-------------------------- +[Obtainable Items] +Temporal +11 Refinement Cube +Geffen Magic Tournament +12 Refinement Cube +Temporal Circlet +11 Refine Cube +Warrior's Helm +12 Refinement Cube +OS Weapon +11 Refinement Cube +Racing Cap +11 Refinement Cube +Automatic Armor +11 Refinement Cube +Biological Lab Weapon +12 Refinement Cube +Biological Lab Helmet +11 Refinement Cube +-------------------------- +Weight: 1 +# +100753# +A cube that upgrades the Ancient Hero's Weapons and Ancient Hero's Boots. +It unlocks a total of 35 types of Ancient Heros' Weapons or upgrades Ancient Hero's Boots to Great Heros' Boots. +Requires refinement of 7 or higher and the following equipment: +-------------------------- +[Target Items] +Royal Bow, Shadow Staff +Iron Nail, Narcissus Bow +Mado Sword, Aquatic Spear +Iron Staff, Red Lotus Sword +Avengers, Golden Lord Launcher +Exorcist's Bible, Katar of Shiver +One Sky One Sun, Clarity Huuma Shuriken +Kiri no Tsuyu, Crimson Rose +Meowmeow Foxtail, The Black +Oriental Sword, Surudoi Kaze +Master Soul Rifle +Demon Slayer Shot, Spirit Pendulum +Dragon Slayer +Light Blade +Meteor Striker +Slate Sword +Trumpet Shell +Barbed Wire Whip +Saint Mace, Ray Knuckle +Blade Katar +Fatalist +Scarlet Dragon Leather Bow +Blue Crystal Staff +Chilling Cane +Ancient Hero's Boots +-------------------------- +Weight: 1 +# +100754# +This carbonated water is made to pierce the clogged stomach in one shot and feel cool and refreshing. +-------------------------- +Recovers 50% of HP and SP. +-------------------------- +Weight: 0 +# +100783# +Major Auto Spell Shadow Thump Box. +If you combine six +7 or higher refined of any of the following Shadow Equipments, you can obtain either Major Auto Spell Shadow Armor, Major Auto Spell Shadow Shoes, Major Auto Spell Shadow Earring or Major Auto Spell Shadow Pendant: +-------------------------- +Auto Spell Shadow Weapon +Auto Spell Shadow Armor +Auto Spell Shadow Shoes +Auto Spell Shadow Shield +Auto Spell Shadow Pendant +Auto Spell Shadow Earring +-------------------------- +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +100784# +A cube that exchanges Shadow Weapon for Shadow Shield. +The Shadow Weapons listed below can be exchanged for Shadow Shields while maintaining refinement and random options. +An additional 10 Shadowdecon are required to exchange, and this item is consumed as well. +-------------------------- +[Exchangeable List] +Hasty Shadow Weapon +Infinity Shadow Weapon +-------------------------- +Weight: 1 +# +100785# +Auto Spell Shadow Box. +A box containing either one of the following Shadow Equipments: +-------------------------- +Auto Spell Shadow Weapon +Auto Spell Shadow Armor +Auto Spell Shadow Shoes +Auto Spell Shadow Shield +Auto Spell Shadow Pendant +Auto Spell Shadow Earring +-------------------------- +Weight: 1 +# +100796# +A forbidden book that was judged to be dangerous because it contains the power of the undead. +Event monsters and slave monsters are not tameable. +-------------------------- +Type: Taming Item +Monster: Dark Priest +Weight: 5 +# +100810# +A box made to commemorate the live broadcast. +The items below are included. +-------------------------- +1x [Event] Advanced Combat Manual (7 Days) +1x [Event] Three Master Package (20) +1x [Event] Brilliant Protection Scroll Box(20) +20x World Tour Ticket +-------------------------- +Weight: 1 +# +100816# +Brings summer vibes to Lime Soda in Mouth. +It is also used to initialize the energy contained in the Moth Lime Soda. +-------------------------- +[Enchantable Equipment] +Lime Soda in Mouth +-------------------------- +Weight: 0 +# +100817# +A special modification box secretly developed by Team Richiet and Team Atnard. +You can upgrade Thanos Weapons to AD equipment and Thanos Helmets to LT equipment, regardless of refinement or materials. +-------------------------- +[Target Items] +Thanos Greatsword +Thanos Katar +Thanos Axe +Thanos Two-Handed Staff +Thanos Bow +Thanos Sword +Thanos Dagger +Thanos Spear +Thanos Staff +Thanos Knuckle +Thanos Violin +Thanos Whip +Thanos Hammer +Thanos' Warrior Helmet +Thanos' Shooter Helmet +Thanos' Magic Helmet +Thanos' Fighter Helmet +-------------------------- +Weight: 1 +# +100819# +A special modification box secretly developed by Team Richiet. +You can immediately upgrade an unlocked Hero's Weapon to an LT weapon, regardless of refinement or material. +-------------------------- +[Target Items] +Patent Magic Sword +Patent Fatalist +Patent Saint Mace +Patent Exorcist's Bible +Patent Aquatic Spear +Patent Light Blade +-------------------------- +Weight: 1 +# +100820# +A special modification box secretly developed by Team Richiet. +You can immediately upgrade an unlocked Hero's Weapon to an LT weapon, regardless of refinement or material. +-------------------------- +[Target Items] +Patent Blue Crystal Staff +Patent Iron Staff +Patent Chilling Cane +Patent Shadow Staff +Patent Ray Knuckle +Patent Iron Nail +-------------------------- +Weight: 1 +# +100821# +A refine hammer that increases the refinement level of a specific Hero's Weapon by +1. +It can only be used on Hero's Weapon-LT with refine level between +9 and +11. +Each time it is used, 14 Blacksmith's Blessings are consumed as materials. +-------------------------- +[Target Items] +Magic Sword-LT +Fatalist-LT +Saint Mace-LT +Exorcist's Bible-LT +Aquatic Spear-LT +Light Blade-LT +-------------------------- +Weight: 1 +# +100822# +A refine hammer that increases the refinement level of a specific Hero's Weapon by +1. +It can only be used on Hero's Weapon-LT with refine level between +9 and +11. +Each time it is used, 14 Blacksmith's Blessings are consumed as materials. +-------------------------- +[Target Items] +Blue Crystal Staff-LT +Iron Staff-LT +Chilling Cane-LT +Shadow Staff-LT +Ray Knuckle-LT +Iron Nail-LT +-------------------------- +Weight: 1 +# +100823# +A jewel that can craft the lenses of Deep Blue Sunglasses[1]. +It gives additional functions to Deep Blue Sunglasses[1]. +It can be used once only. +-------------------------- +Two random options can be given to Deep Blue Sunglasses[1]. +-------------------------- +Weight: 1 +# +100829# +Pasta made from noodles made into ribbon shape by mixing flour and cheese powder properly. +-------------------------- +Increases Melee and Ranged Physical Damage by 15% for 15 minutes. +-------------------------- +Weight: 0 +# +100830# +Shrimp cream pasta seasoned with cream sauce, +you can feel the rich flavor of the sea from the shrimp along with the soft taste of cream. +-------------------------- +Increases Magical Damage with every element by 15% for 15 minutes. +-------------------------- +Weight: 0 +# +100831# +Noodles made by boiling white and smooth noodles topped with broth and various garnishes. Make a special day and share it. +-------------------------- +ATK +7% and MATK +7% for 15 minutes. +-------------------------- +Weight: 0 +# +100832# +Tomato noodles made from long, thin noodles, widely loved by everyone as the most basic noodle dish. +-------------------------- +Decreases Variable Casting Time by 5%, +Decreases After Skill Delay by 5%, +Increases Attack speed (Decreases After Attack Delay by 5%) for 15 minutes. +-------------------------- +Weight: 0 +# +100833# +Bibim noodles seasoned with soy sauce and a little sesame oil. +-------------------------- +P.ATK +7 and S.MATK +7 for 15 minutes. +-------------------------- +Required Level: 200 +-------------------------- +Weight: 0 +# +100834# +A special modification box secretly developed by Team Richiet. +You can immediately upgrade an unlocked Hero's Weapon to an LT weapon, regardless of refinement or material. +-------------------------- +[Target Items] +Patent Red Lotus Sword +Patent Slate Sword +Patent Royal Bow +Patent Scarlet Dragon Leather Bow +-------------------------- +Weight: 1 +# +100835# +A refine hammer that increases the refinement level of a specific Hero's Weapon by +1. +It can only be used on Hero's Weapon-LT with refine level between +9 and +11. +Each time it is used, 14 Blacksmith's Blessings are consumed as materials. +-------------------------- +[Target Items] +Red Lotus Sword-LT +Slate Sword-LT +Royal Bow-LT +Scarlet Dragon Leather Bow-LT +-------------------------- +Weight: 1 +# +100870# +A special costume enchantment stone box that provides all the components of the Costume Enchant Stone Box together. +Contains 1 of all costume enchantment stones from Costume Enchant Stone Box 13 to Costume Enchant Stone Box 23. +-------------------------- +Weight: 0 +# +100874# +A box containing one Infinite Giant Fly Wings that can be used for 1 day. +-------------------------- +Rental Item +The wings of a gigantic flying beast that survived in ancient times were cut and enchanted. You can move multiple people to any place at once. +The effect is activated when used by the party leader, and all party members on the same map move to the place where the party leader has moved. +-------------------------- +Weight: 0 +-------------------------- +(Not affected by \ +.) +-------------------------- +Weight: 1 +# +100875# +A box containing 1 Unlimited Fly Wings that can be used for 3 days. +-------------------------- +Rental Item +Cut off the wings of flying animals and casting magic spells on them. You can warp anywhere on the map. +-------------------------- +Weight: 0 +-------------------------- +Weight: 1 +# +100886# +Physical Magical Shadow Box +Contains 1 of Physical Shadow Weapon, Physical Shadow Earring, Physical Shadow Pendant, Magical Shadow Weapon, Magical Shadow Earring and Magical Shadow Pendant. +-------------------------- +Weight: 1 +# +100887# +Clever Shadow Thump Box. +-------------------------- +If you combine 6 of any of the following Shadow Equipments which are refined to +7 or higher, you can obtain either Clever Shadow Weapon or Clever Shadow Shield. +Magical Shadow Weapon +Magical Shadow Armor +Magical Shadow Shoes +Magical Shadow Shield +Magical Shadow Pendant +Magical Shadow Earring +-------------------------- +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +100888# +Durable Shadow Thump Box. +-------------------------- +If you combine 6 of any of the following Shadow Equipments which are refined to +7 or higher, you can obtain either Durable Shadow Weapon or Durable Shadow Shield. +Physical Shadow Weapon +Physical Shadow Armor +Physical Shadow Shoes +Physical Shadow Shield +Physical Shadow Pendant +Physical Shadow Earring +-------------------------- +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +100890# +A cube that exchanges Shadow Armors for Shadow Weapons. +The Shadow Equipments listed below can be exchanged for Shadow Weapons while maintaining refinement and random options. +Additional 10 Shadowdecons are required to exchange and this item is consumed as well. +-------------------------- +[Exchangeable List] +Critical Hit Shadow Armor +Kingbird Ancient Shadow Armor +-------------------------- +Weight: 1 +# +100900# +A wing with the location of the Ice Castle of Isgard recorded on it. It seems that you can use it to go directly to that area. +-------------------------- +Weight: 0 +# +100901# +A wing with the location of the Gray Wolf Village recorded on it. It seems that you can use it to go directly to that area. +-------------------------- +Weight: 0 +# +100902# +A wing with the location of the Varmundt Mansion recorded on it. It seems that you can use it to go directly to that area. +-------------------------- +Weight: 0 +# +100903# +A wing with the location of the Special Border Area Cor recorded on it. It seems that you can use it to go directly to that area. +-------------------------- +Weight: 0 +# +100904# +A wing with the location of the Heart Hunter Military Base recorded on it. It seems that you can use it to go directly to that area. +-------------------------- +Weight: 0 +# +100906# +Exclusive Buff Potion from Promotion. +A mysterious potion that can only be obtained by promotional characters. +The following effects are applied for 1 hour. +-------------------------- +Small Life Potion, Medium Life Potion, Mysterious Life Potion, Brilliant Defense Scroll, Almighty, Infinity Drink, Tyr's Blessing, Power Booster, Small Mana Potion and increased Movement Speed. +-------------------------- +Weight: 0 +# +100910# +Special Dual Costume Enchant Stone Box +You can obtain 1 of 5 Dual Costume Enchant Stones randomly. +-------------------------- +[Obtainable Items] +HP Absorbtion Stone(Dual) +Variable Casting Stone(Dual) +ASPD Stone(Dual) +Magic Power Stone(Dual) +Melee Stone(Dual) +-------------------------- +[Drop Probability]https://ro.gnjoy.com/news/probability/View.asp?category=4&seq=4113832&curpage=1,1024,768 +-------------------------- +Weight: 0 +# +100911# +A package containing 4 Outfits. +When you open it, you can get all 4 items below. +-------------------------- +[Obtainable Items] +Costume Forest Guide +Costume Robotic Watcher +Costume Lightly Braided Low Twin (White) +Costume Scepter +-------------------------- +Weight: 0 +# +100913# +Kafra buff that increases experience and item drop rate for 7 days. +-------------------------- +The character using this item will receive the following effects for 7 days. +- Increases experience gained by 50% +- Increases item drop rate by 50% +-------------------------- +Weight: 0 +# +100914# +Kafra buff that increases experience and item drop rate for 1 hour. +-------------------------- +The character using this item will receive the following effects for 1 hour. +- Increases experience gained by 50% +- Increases item drop rate by 50% +-------------------------- +Weight: 0 +# +100917# +A refine hammer that increases the refinement level of a specific Hero's Weapon modified by Team Richiet by +1. +It can only be used on Hero's Weapon-LT with refine level between +9 and +11. +Each time it is used, 14 Blacksmith's Blessings are consumed as materials. +-------------------------- +[Target Items] +Trumpet Shell-LT +Barbed Wire Whip-LT +Narcissus Bow-LT +Avenger-LT +Meteor Striker-LT +-------------------------- +Weight: 1 +# +100918# +A special modification box secretly developed by Team Richiet. +You can immediately upgrade an Patent Hero Weapon to an LT Weapon regardless of refinement or material. +-------------------------- +[Target Items] +Patent Trumpet Shell +Patent Barbed Wire Whip +Patent Narcissus Bow +Patent Avenger +Patent Meteor Striker +-------------------------- +Weight: 1 +# +100920# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +Minor Casting Stone(Dual), +Range Stone(Dual), +SP Absorbtion Stone(Dual), +Rune Knight Stone(Upper, Mid, Lower), +Warlock Stone(Upper, Mid, Lower), +Royal Guard Stone(Upper, Mid, Lower) have been added. +Existing Costume Enchant Stones are also included. +-------------------------- +[Costume Enchant Stone Box 24]https://ro.gnjoy.com/news/probability/list.asp?category=2,1024,768 +-------------------------- +Weight: 1 +# +100929# +A bag given as a gift to thank you for saving GM Bigfoot. +Rumor has it that it contains rare items. +-------------------------- +Weight: 0 +# +100933# +A box containing 100 [Event] Blue Potions and 100 [Event] White Slim Potions. +-------------------------- +Weight: 1 +# +100934# +Contains 10x [Event] Blessing Level 10 Scrolls and 10x [Event] Increase Agility Level 10 Scrolls. +-------------------------- +Weight: 1 +# +100938# +A refine hammer that increases the refinement level of a specific Hero's Weapon modified by Team Richiet by +1. +It can only be used on Hero's Weapon-LT with refine level between +9 and +11. +Each time it is used, 14 Blacksmith's Blessings are consumed as materials. +-------------------------- +[Target Items] +Oriental Sword-LT +Dragonic Slayer-LT +Katar of Shiver-LT +Blade Katar-LT +-------------------------- +Weight: 1 +# +100939# +A special modification box secretly developed by Team Richiet. +You can immediately upgrade an Patent Hero's Weapon to an LT Weapon, regardless of refinement or material. +-------------------------- +[Target Items] +Patent Oriental Sword +Patent Dragonic Slayer +Patent Katar of Shiver +Patent Blade Katar +-------------------------- +Weight: 1 +# +100943# +It contains various festival items that remind you of your hometown. +# +100949# +Kafra buff that increases experience and item drop rate for 1 day. +-------------------------- +The character using this item will receive the following effects for 1 day. +- Increases experience gained by 50% +- Increases item drop rate by 50% +-------------------------- +Weight: 0 +# +100950# +A commemorative box made to mimic the gift box that exists in Ragnarok World. It contains one of the various gifts prepared at the Ragnarok Festival. +-------------------------- +Weight: 0 +# +100951# +Shadow Cube for Rune Knights. +All 3 types of Ignition Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Ignition Shadow Weapon +Ignition Shadow Earring +Ignition Shadow Pendant +-------------------------- +Weight: 0 +# +100952# +Shadow Cube for Rune Knights. +All 3 types of Cold Breath Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Cold Breath Shadow Shield +Cold Breath Shadow Shoes +Cold Breath Shadow Armor +-------------------------- +Weight: 0 +# +100954# +Shadow Cube for Rune Knights. +All 3 types of Fire Breath Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Fire Breath Shadow Weapon +Fire Breath Shadow Earring +Fire Breath Shadow Pendant +-------------------------- +Weight: 0 +# +100955# +Shadow Cube for Rune Knights. +All 3 types of Sonic Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Sonic Shadow Shield +Sonic Shadow Shoes +Sonic Shadow Armor +-------------------------- +Weight: 0 +# +100956# +Shadow Cube for Royal Guards. +All 3 types of Banishing Cannon Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Banishing Cannon Shadow Shield +Banishing Cannon Shadow Shoes +Banishing Cannon Shadow Armor +-------------------------- +Weight: 0 +# +100957# +Shadow Cube for Royal Guards. +All 3 types of Brand Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Brand Shadow Shield +Brand Shadow Shoes +Brand Shadow Armor +-------------------------- +Weight: 0 +# +100958# +Shadow Cube for Royal Guards. +All 3 types of Genesis Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Genesis Shadow Weapon +Genesis Shadow Earring +Genesis Shadow Pendant +-------------------------- +Weight: 0 +# +100959# +Shadow Cube for Royal Guards. +All 3 types of Chain Press Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Chain Press Shadow Weapon +Chain Press Shadow Earring +Chain Press Shadow Pendant +-------------------------- +Weight: 0 +# +100960# +Shadow Cube for Warlocks. +All 3 types of Strain Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Strain Shadow Weapon +Strain Shadow Earring +Strain Shadow Pendant +-------------------------- +Weight: 0 +# +100961# +Shadow Cube for Warlocks. +All 3 types of Jack Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Jack Shadow Shield +Jack Shadow Shoes +Jack Shadow Armor +-------------------------- +Weight: 0 +# +100962# +Shadow Cube for Warlocks. +All 3 types of Chain Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Chain Shadow Weapon +Chain Shadow Earring +Chain Shadow Pendant +-------------------------- +Weight: 0 +# +100963# +Shadow Cube for Warlocks. +All 3 types of Crimson Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Crimson Shadow Shield +Crimson Shadow Shoes +Crimson Shadow Armor +-------------------------- +Weight: 0 +# +100964# +Shadow Cube for Sorcerers. +All 3 types of Grave Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Grave Shadow Weapon +Grave Shadow Earring +Grave Shadow Pendant +-------------------------- +Weight: 0 +# +100965# +Shadow Cube for Sorcerers. +All 3 types of Dust Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Dust Shadow Shield +Dust Shadow Shoes +Dust Shadow Armor +-------------------------- +Weight: 0 +# +100966# +Shadow Cube for Sorcerers. +All 3 types of Varetyr Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Varetyr Shadow Weapon +Varetyr Shadow Earring +Varetyr Shadow Pendant +-------------------------- +Weight: 0 +# +100967# +Shadow Cube for Sorcerers. +All 3 types of Psychic Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Psychic Shadow Shield +Psychic Shadow Shoes +Psychic Shadow Armor +-------------------------- +Weight: 0 +# +100968# +Shadow Cube for Mechanics. +All 3 types of Vulcan Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Vulcan Shadow Shield +Vulcan Shadow Shoes +Vulcan Shadow Armor +-------------------------- +Weight: 0 +# +100969# +Shadow Cube for Mechanics. +All 3 types of Boomerang Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Boomerang Shadow Weapon +Boomerang Shadow Earring +Boomerang Shadow Pendant +-------------------------- +Weight: 0 +# +100970# +Shadow Cube for Mechanics. +All 3 types of Arms Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Arms Shadow Weapon +Arms Shadow Earring +Arms Shadow Pendant +-------------------------- +Weight: 0 +# +100971# +Shadow Cube for Mechanics. +All 3 types of Tornado Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Tornado Shadow Shield +Tornado Shadow Shoes +Tornado Shadow Armor +-------------------------- +Weight: 0 +# +100972# +Shadow Cube for Genetics. +All 3 types of Spore Bomb Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Spore Bomb Shadow Shield +Spore Bomb Shadow Shoes +Spore Bomb Shadow Armor +-------------------------- +Weight: 0 +# +100973# +Shadow Cube for Genetics. +All 3 types of Cannon Cart Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Cannon Cart Shadow Weapon +Cannon Cart Shadow Earring +Cannon Cart Shadow Pendant +-------------------------- +Weight: 0 +# +100974# +Shadow Cube for Genetics. +All 3 types of Crazy Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Crazy Shadow Weapon +Crazy Shadow Earring +Crazy Shadow Pendant +-------------------------- +Weight: 0 +# +100975# +Shadow Cube for Genetics. +All 3 types of Cart Tornado Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Cart Tornado Shadow Shield +Cart Tornado Shadow Shoes +Cart Tornado Shadow Armor +-------------------------- +Weight: 0 +# +100976# +Shadow Cube for Archbishops. +All 3 types of Duple Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Duple Shadow Shield +Duple Shadow Shoes +Duple Shadow Armor +-------------------------- +Weight: 0 +# +100977# +Shadow Cube for Archbishops. +All 3 types of Magnus Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Magnus Shadow Weapon +Magnus Shadow Earring +Magnus Shadow Pendant +-------------------------- +Weight: 0 +# +100978# +Shadow Cube for Archbishops. +All 3 types of Adora Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Adora Shadow Weapon +Adora Shadow Earring +Adora Shadow Pendant +-------------------------- +Weight: 0 +# +100979# +Shadow Cube for Archbishops. +All 3 types of Judex Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Judex Shadow Shield +Judex Shadow Shoes +Judex Shadow Armor +-------------------------- +Weight: 0 +# +100980# +Shadow Cube for Suras. +All 3 types of Knuckle Arrow Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Knuckle Arrow Shadow Shield +Knuckle Arrow Shadow Shoes +Knuckle Arrow Shadow Armor +-------------------------- +Weight: 0 +# +100981# +Shadow Cube for Suras. +All 3 types of Sky Blow Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Sky Blow Shadow Weapon +Sky Blow Shadow Earring +Sky Blow Shadow Pendant +-------------------------- +Weight: 0 +# +100982# +Shadow Cube for Suras. +All 3 types of Rampage Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Rampage Shadow Shield +Rampage Shadow Shoes +Rampage Shadow Armor +-------------------------- +Weight: 0 +# +100983# +Shadow Cube for Suras. +All 3 types of Tiger Cannon Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Tiger Cannon Shadow Weapon +Tiger Cannon Shadow Earring +Tiger Cannon Shadow Pendant +-------------------------- +Weight: 0 +# +100984# +Shadow Cube for Guillotine Cross'. +All 3 types of Rolling Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Rolling Shadow Shield +Rolling Shadow Shoes +Rolling Shadow Armor +-------------------------- +Weight: 0 +# +100985# +Shadow Cube for Guillotine Cross'. +All 3 types of Ripper Slasher Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Ripper Slasher Shadow Weapon +Ripper Slasher Shadow Earring +Ripper Slasher Shadow Pendant +-------------------------- +Weight: 0 +# +100986# +Shadow Cube for Guillotine Cross'. +All 3 types of Slash Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Slash Shadow Shield +Slash Shadow Shoes +Slash Shadow Armor +-------------------------- +Weight: 0 +# +100987# +Shadow Cube for Guillotine Cross'. +All 3 types of Katar Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Katar Shadow Weapon +Katar Shadow Earring +Katar Shadow Pendant +-------------------------- +Weight: 0 +# +100988# +Shadow Cube for Shadow Chasers. +All 3 types of Menace Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Menace Shadow Shield +Menace Shadow Shoes +Menace Shadow Armor +-------------------------- +Weight: 0 +# +100989# +Shadow Cube for Shadow Chasers. +All 3 types of Shadowspell Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Shadowspell Shadow Weapon +Shadowspell Shadow Earring +Shadowspell Shadow Pendant +-------------------------- +Weight: 0 +# +100990# +Shadow Cube for Shadow Chasers. +All 3 types of Triangle Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Triangle Shadow Shield +Triangle Shadow Shoes +Triangle Shadow Armor +-------------------------- +Weight: 0 +# +100991# +Shadow Cube for Shadow Chasers. +All 3 types of Feint Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Feint Shadow Weapon +Feint Shadow Earring +Feint Shadow Pendant +-------------------------- +Weight: 0 +# +100992# +Shadow Cube for Rangers. +All 3 types of Shooting Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Shooting Shadow Weapon +Shooting Shadow Earring +Shooting Shadow Pendant +-------------------------- +Weight: 0 +# +100994# +Shadow Cube for Rangers. +All 3 types of Arrow Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Arrow Shadow Shield +Arrow Shadow Shoes +Arrow Shadow Armor +-------------------------- +Weight: 0 +# +100995# +Shadow Cube for Rangers. +All 3 types of Aimed Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Aimed Shadow Weapon +Aimed Shadow Earring +Aimed Shadow Pendant +-------------------------- +Weight: 0 +# +100996# +Shadow Cube for Rangers. +All 3 types of Cluster Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Cluster Shadow Shield +Cluster Shadow Shoes +Cluster Shadow Armor +-------------------------- +Weight: 0 +# +100997# +Shadow Cube for Minstrels and Wanderers. +All 3 types of Rainstorm Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Rainstorm Shadow Shield +Rainstorm Shadow Shoes +Rainstorm Shadow Armor +-------------------------- +Weight: 0 +# +100998# +Shadow Cube for Minstrels and Wanderers. +All 3 types of Metallic Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Metallic Shadow Shield +Metallic Shadow Shoes +Metallic Shadow Armor +-------------------------- +Weight: 0 +# +100999# +Shadow Cube for Minstrels and Wanderers. +All 3 types of Arrow Vulcan Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Arrow Vulcan Shadow Weapon +Arrow Vulcan Shadow Earring +Arrow Vulcan Shadow Pendant +-------------------------- +Weight: 0 +# +101000# +Shadow Cube for Minstrels and Wanderers. +All 3 types of Reverberation Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Reverberation Shadow Weapon +Reverberation Shadow Earring +Reverberation Shadow Pendant +-------------------------- +Weight: 0 +# +101001# +Shadow Cube for Star Emperors. +All 3 types of Moonlight Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Moonlight Shadow Shoes +Moonlight Shadow Earring +Moonlight Shadow Pendant +-------------------------- +Weight: 0 +# +101002# +Shadow Cube for Star Emperors. +All 3 types of Sunshine Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Sunshine Shadow Shield +Sunshine Shadow Armor +Sunshine Shadow Weapon +-------------------------- +Weight: 0 +# +101003# +Shadow Cube for Star Emperors. +All 3 types of Stardust Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Stardust Shadow Shield +Stardust Shadow Armor +Stardust Shadow Weapon +-------------------------- +Weight: 0 +# +101004# +Shadow Cube for Soul Reapers. +All 3 types of Es Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Es Shadow Shield +Es Shadow Armor +Es Shadow Weapon +-------------------------- +Weight: 0 +# +101005# +Shadow Cube for Soul Reapers. +All 3 types of Evil Curse Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Evil Curse Shadow Shoes +Evil Curse Shadow Earring +Evil Curse Shadow Pendant +-------------------------- +Weight: 0 +# +101006# +Shadow Cube for Kagerous and Oboros. +All 3 types of Cross Shuriken Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Cross Shuriken Shadow Shoes +Cross Shuriken Shadow Earring +Cross Shuriken Shadow Pendant +-------------------------- +Weight: 0 +# +101007# +Shadow Cube for Kagerous and Oboros. +All 3 types of Kunai Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Kunai Shadow Shield +Kunai Shadow Armor +Kunai Shadow Weapon +-------------------------- +Weight: 0 +# +101008# +Shadow Cube for Kagerous and Oboros. +All 3 types of Wind Spear Petal Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Wind Spear Petal Shadow Shoes +Wind Spear Petal Shadow Earring +Wind Spear Petal Shadow Pendant +-------------------------- +Weight: 0 +# +101009# +Shadow Cube for Kagerous and Oboros. +All 3 types of First Exploding Draft Shadow Equipments are included. +-------------------------- +[Obtainable Items] +First Exploding Draft Shadow Shield +First Exploding Draft Shadow Armor +First Exploding Draft Shadow Weapon +-------------------------- +Weight: 0 +# +101010# +Shadow Cube for Rebellions. +All 3 types of God Hammer Shadow Equipments are included. +-------------------------- +[Obtainable Items] +God Hammer Shadow Shield +God Hammer Shadow Armor +God Hammer Shadow Weapon +-------------------------- +Weight: 0 +# +101011# +Shadow Cube for Rebellions. +All 3 types of Shatter Buster Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Shatter Buster Shadow Shoes +Shatter Buster Shadow Earring +Shatter Buster Shadow Pendant +-------------------------- +Weight: 0 +# +101012# +Shadow Cube for Rebellions. +All 3 types of Tail Dragon Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Tail Dragon Shadow Shield +Tail Dragon Shadow Armor +Tail Dragon Shadow Weapon +-------------------------- +Weight: 0 +# +101013# +Shadow Cube for Rebellions. +All 3 types of Trip Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Trip Shadow Shield +Trip Shadow Armor +Trip Shadow Weapon +-------------------------- +Weight: 0 +# +101014# +Shadow Cube for Rebellions. +All 3 types of Flare Dance Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Flare Dance Shadow Shoes +Flare Dance Shadow Earring +Flare Dance Shadow Pendant +-------------------------- +Weight: 0 +# +101015# +Shadow Cube for Super Novices. +All 3 types of Super Magic Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Super Magic Shadow Shield +Super Magic Shadow Shoes +Super Magic Shadow Armor +-------------------------- +Weight: 0 +# +101016# +Shadow Cube for Super Novices. +All 3 types of Super Power Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Super Power Shadow Weapon +Super Power Shadow Earring +Super Power Shadow Pendant +-------------------------- +Weight: 0 +# +101017# +Shadow Cube for Dorams. +All 3 types of Silvervine Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Silvervine Shadow Shoes +Silvervine Shadow Earring +Silvervine Shadow Pendant +-------------------------- +Weight: 0 +# +101018# +Shadow Cube for Dorams. +All 3 types of Catnip Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Catnip Shadow Shield +Catnip Shadow Armor +Catnip Shadow Weapon +-------------------------- +Weight: 0 +# +101019# +Shadow Cube for Dorams. +All 3 types of Savage Rabbit Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Savage Rabbit Shadow Shoes +Savage Rabbit Shadow Earring +Savage Rabbit Shadow Pendant +-------------------------- +Weight: 0 +# +101020# +Shadow Cube for Dorams. +All 3 types of Picky Rush Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Picky Rush Shadow Shield +Picky Rush Shadow Armor +Picky Rush Shadow Weapon +-------------------------- +Weight: 0 +# +101021# +Shadow Equipments for the Swordman, Knight and Rune Knight classes. +All 6 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Swordman Shadow Earring +Swordman Shadow Pendant +Knight Shadow Shoes +Knight Shadow Armor +Rune Knight Shadow Shield +Rune Knight Shadow Weapon +-------------------------- +Weight: 0 +# +101022# +Shadow Equipments for the Swordman, Crusader and Royal Guard classes. +All 6 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Swordman Shadow Earring +Swordman Shadow Pendant +Crusader Shadow Shoes +Crusader Shadow Armor +Royal Guard Shadow Shield +Royal Guard Shadow Weapon +-------------------------- +Weight: 0 +# +101023# +Shadow Equipments for the Magician, Wizard and Warlock classes. +All 6 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Magician Shadow Earring +Magician Shadow Pendant +Wizard Shadow Shoes +Wizard Shadow Armor +Warlock Shadow Shield +Warlock Shadow Weapon +-------------------------- +Weight: 0 +# +101024# +Shadow Equipments for the Magician, Sage and Sorcerer classes. +All 6 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Magician Shadow Earring +Magician Shadow Pendant +Sage Shadow Shoes +Sage Shadow Armor +Sorcerer Shadow Shield +Sorcerer Shadow Weapon +-------------------------- +Weight: 0 +# +101025# +Shadow Equipments for the Merchant, Blacksmith and Mechanic classes. +All 6 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Merchant Shadow Earring +Merchant Shadow Pendant +Blacksmith Shadow Shoes +Blacksmith Shadow Armor +Mechanic Shadow Shield +Mechanic Shadow Weapon +-------------------------- +Weight: 0 +# +101026# +Shadow Equipments for the Merchant, Alchemist and Genetic classes. +All 6 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Merchant Shadow Earring +Merchant Shadow Pendant +Alchemist Shadow Shoes +Alchemist Shadow Armor +Genetic Shadow Shield +Genetic Shadow Weapon +-------------------------- +Weight: 0 +# +101027# +Shadow Equipments for the Acolyte, Priest and Archbishop classes. +All 6 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Acolyte Shadow Earring +Acolyte Shadow Pendant +Priest Shadow Shoes +Priest Shadow Armor +Archbishop Shadow Shield +Archbishop Shadow Weapon +-------------------------- +Weight: 0 +# +101028# +Shadow Equipments for the Acolyte, Monk and Sura classes. +All 6 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Acolyte Shadow Earring +Acolyte Shadow Pendant +Monk Shadow Shoes +Monk Shadow Armor +Sura Shadow Shield +Sura Shadow Weapon +-------------------------- +Weight: 0 +# +101029# +Shadow Equipments for the Thief, Assassin and Guillotine Cross classes. +All 6 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Thief Shadow Earring +Thief Shadow Pendant +Assassin Shadow Shoes +Assassin Shadow Armor +Guillotine Cross Shadow Shield +Guillotine Cross Shadow Weapon +-------------------------- +Weight: 0 +# +101030# +Shadow Equipments for the Thief, Rogue and Shadow Chaser classes. +All 6 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Thief Shadow Earring +Thief Shadow Pendant +Rogue Shadow Shoes +Rogue Shadow Armor +Shadow Chaser Shadow Shield +Shadow Chaser Shadow Weapon +-------------------------- +Weight: 0 +# +101031# +Shadow Equipments for the Archer, Hunter and Ranger classes. +All 6 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Archer Shadow Earring +Archer Shadow Pendant +Hunter Shadow Shoes +Hunter Shadow Armor +Ranger Shadow Shield +Ranger Shadow Weapon +-------------------------- +Weight: 0 +# +101032# +Shadow Equipments for the Archer, Dancer and Wanderer classes. +All 6 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Archer Shadow Earring +Archer Shadow Pendant +Dancer Shadow Shoes +Dancer Shadow Armor +Wanderer Shadow Shield +Wanderer Shadow Weapon +-------------------------- +Weight: 0 +# +101033# +Shadow Equipments for the Archer, Bard and Minstrel classes. +All 6 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Archer Shadow Earring +Archer Shadow Pendant +Bard Shadow Shoes +Bard Shadow Armor +Minstrel Shadow Shield +Minstrel Shadow Weapon +-------------------------- +Weight: 0 +# +101034# +Shadow Equipments for the Taekwon and Star Emperor classes. +All 4 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Taekwon Shadow Shield +Taekwon Shadow Weapon +Star Emperor Shadow Shoes +Star Emperor Shadow Armor +-------------------------- +Weight: 0 +# +101035# +Shadow Equipments for the Taekwon and Soul Reaper classes. +All 4 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Taekwon Shadow Shield +Taekwon Shadow Weapon +Soul Reaper Shadow Shoes +Soul Reaper Shadow Armor +-------------------------- +Weight: 0 +# +101036# +Shadow Equipments for the Ninja and Kagerou classes. +All 4 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Ninja Shadow Shield +Ninja Shadow Weapon +Kagerou Shadow Shoes +Kagerou Shadow Armor +-------------------------- +Weight: 0 +# +101037# +Shadow Equipments for the Ninja and Oboro classes. +All 4 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Ninja Shadow Shield +Ninja Shadow Weapon +Oboro Shadow Shoes +Oboro Shadow Armor +-------------------------- +Weight: 0 +# +101038# +Shadow Equipments for the Gunslinger and Rebellion classes. +All 4 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Gunslinger Shadow Shield +Gunslinger Shadow Weapon +Rebellion Shadow Shoes +Rebellion Shadow Armor +-------------------------- +Weight: 0 +# +101039# +Shadow Equipments for the Super Novice classes. +All 2 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Super Novice Shadow Shield +Super Novice Shadow Weapon +-------------------------- +Weight: 0 +# +101040# +Shadow Equipments for the Doram classes. +All 8 Shadow Equipments are included. +-------------------------- +[Obtainable Items] +Doram Magical Shadow Shield +Doram Magical Shadow Shoes +Doram Magical Shadow Armor +Doram Magical Shadow Weapon +Doram Physical Shadow Shield +Doram Physical Shadow Shoes +Doram Physical Shadow Armor +Doram Physical Shadow Weapon +-------------------------- +Weight: 0 +# +101041# +All 6 types of Mammoth Shadow Equipments are put into this cube. +-------------------------- +[Obtainable Items] +Mammoth Shadow Shield +Mammoth Shadow Shoes +Mammoth Shadow Armor +Mammoth Shadow Weapon +Mammoth Shadow Earring +Mammoth Shadow Pendant +-------------------------- +Weight: 0 +# +101042# +All 6 types of Gemstone Shadow Equipments are put into this cube. +-------------------------- +[Obtainable Items] +Gemstone Shadow Shoes +Gemstone Shadow Armor +Gemstone Shadow Weapon +Gemstone Shadow Shield +Gemstone Shadow Earring +Gemstone Shadow Pendant +-------------------------- +Weight: 0 +# +101043# +All 7 types of Penetration Shadow Equipments are put into this cube. +-------------------------- +[Obtainable Items] +Vibration Dragon Killer Shadow Weapon +Corrupted Exorcist Shadow Weapon +Scissor Hunting Shadow Weapon +Fishing Insect Net Shadow Weapon +Executioner Holy Water Shadow Weapon +Penetration Shadow Earring +Penetration Shadow Pendant +-------------------------- +Weight: 0 +# +101044# +All 7 types of Penetration Shadow Equipments are put into this cube. +-------------------------- +[Obtainable Items] +Vibration Dragon Killer Shadow Armor +Corrupted Exorcist Shadow Armor +Scissor Hunting Shadow Armor +Fishing Insect Net Shadow Armor +Executioner Holy Water Shadow Armor +Penetration Shadow Shoes +Penetration Shadow Shield +-------------------------- +Weight: 0 +# +101045# +All 7 types of Tempest Shadow Equipments are put into this cube. +-------------------------- +[Obtainable Items] +Magic Corrupted Exorcist Shadow Weapon +Magic Vibration Dragon Killer Shadow Weapon +Magic Scissor Hunting Shadow Weapon +Magic Fishing Insect Net Shadow Weapon +Magic Executioner Holy Water Shadow Weapon +Tempest Shadow Earring +Tempest Shadow Pendant +-------------------------- +Weight: 0 +# +101046# +All 7 types of Tempest Shadow Equipments are put into this cube. +-------------------------- +[Obtainable Items] +Magic Corrupted Exorcist Shadow Armor +Magic Vibration Dragon Killer Shadow Armor +Magic Scissor Hunting Shadow Armor +Magic Fishing Insect Net Shadow Armor +Magic Executioner Holy Water Shadow Armor +Tempest Shadow Shoes +Tempest Shadow Shield +-------------------------- +Weight: 0 +# +101047# +A box containing 3 Blacksmith's Blessings. +-------------------------- +Weight: 0 +# +101048# +A box containing 3 Hollgrehenn's Shadow Refine Hammers. +-------------------------- +Weight: 0 +# +101060# + +# +101062# + +# +101067# +A box made by Bettary by collecting data from the Biosphere. +When used, one rune fragment out of four types of rune fragments will appear. +-------------------------- +Weight: 1 +# +101070# +A gift box made for the Lunar New Year. +I wished you a happy holiday season. +-------------------------- +[Content] +1x [Event] Advanced Combat Manual +1x [Kachua] Mileage Coupon +1x Event Stone Coin +-------------------------- +(해당 아이템은 10월 20일 정기점검 시, 삭제됩니다.) +-------------------------- +Weight: 0 +# +101074# +Card decorated with silver. You can get one of following Sealed Cards. +-------------------------- +- Dark Lord, Stormy Knight, Beelzebub, Kiel-D-01, Gloom Under Night, Fallen Bishop, Ifrit, Turtle General, White Lady, Pharaoh, Moonlight Flower, Boss Egnigem, Vesper, Dracula, Sniper, Queen Scaraba, Baphoment, Maya, Clown, Professor, Champion, Creator, Stalker, Paladin, Gypsy, General Daehyon, Gioia, Fallen Pyuriel, Guardian Kades, Time Holder, Edgar, MasterSmith, High Priest, Orc Lord, Incantation Samurai, Lady Tanee, Orc Hero, Mistress, Ktullanux, Tao Gunka +-------------------------- +Weight: 1 +# +101075# +Sealed Boss Card Thump Box +You can get 1 random Sealed Boss Card by inserting any 3 Sealed Boss Cards. +Caution! - Only different types of cards are accepted as materials. +-------------------------- +Weight: 1 +# +101077# +A refine hammer that increases the refinement level of a specific Vivatus Fides Weapon by +1. +It can only be used on Vivatus Fides Weapon with refine level between +9 and +11. +Each time it is used, 14 Blacksmith's Blessings are consumed as materials. +-------------------------- +[Target Items] +Vivatus Fides Magic Book +Vivatus Fides Poison Book +Vivatus Fides Bible +Vivatus Fides Ribbon +Vivatus Fides Harp +Vivatus Fides Claw +Vivatus Fides Chain Rope +Vivatus Fides Violin +Vivatus Fides Aiming Bow +Vivatus Fides Ballista +Vivatus Fides Knuckle +Vivatus Fides Wand +Vivatus Fides Rod +Vivatus Fides Two-Handed Staff +Vivatus Fides Crossbow +Vivatus Fides Chakram +Vivatus Fides Scepter +Vivatus Fides Dagger +Vivatus Fides Katar +Vivatus Fides Rapier +Vivatus Fides Mace +Vivatus Fides Guardian Sword +Vivatus Fides Axe +Vivatus Fides Guardian Spear +Vivatus Fides Lance +Vivatus Fides Two-Handed Sword +Vivatus Fides Dark Wand +Vivatus Fides Soul Stick +Vivatus Fides Foxtail Wand +Vivatus Fides Foxtail Model +Vivatus Fides Stardust Book +Vivatus Fides Moon Book +Vivatus Fides Gatling Gun +Vivatus Fides Launcher +Vivatus Fides Rifle +Vivatus Fides Shotgun +Vivatus Fides Revolver +Vivatus Fides Cross Huuma Shuriken +Vivatus Fides Huuma Shuriken +-------------------------- +Weight: 1 +# +101078# +A box of purification that converts Adulter Fider weapons into Vivatus Fides weapons. +An Adulter weapon can be converted into a Vivatus weapon by consuming the corresponding Adulter weapon and 400 Amethyst Fragments. +For each conversion an Adulter Weapon Modification Box is consumed as well. +-------------------------- +[Target Items] +Adulter Fides Magic Book +Adulter Fides Poison Book +Adulter Fides Bible +Adulter Fides Ribbon +Adulter Fides Harp +Adulter Fides Claw +Adulter Fides Chain Rope +Adulter Fides Violin +Adulter Fides Aiming Bow +Adulter Fides Ballista +Adulter Fides Knuckle +Adulter Fides Wand +Adulter Fides Rod +Adulter Fides Two-Handed Staff +Adulter Fides Crossbow +Adulter Fides Chakram +Adulter Fides Scepter +Adulter Fides Dagger +Adulter Fides Katar +Adulter Fides Rapier +Adulter Fides Mace +Adulter Fides Guardian Sword +Adulter Fides Axe +Adulter Fides Guardian Spear +Adulter Fides Lance +Adulter Fides Two-Handed Sword +Adulter Fides Dark Wand +Adulter Fides Soul Stick +Adulter Fides Foxtail Wand +Adulter Fides Foxtail Model +Adulter Fides Stardust Book +Adulter Fides Moon Book +Adulter Fides Gatling Gun +Adulter Fides Launcher +Adulter Fides Rifle +Adulter Fides Shotgun +Adulter Fides Revolver +Adulter Fides Cross Huuma Shuriken +Adulter Fides Huuma Shuriken +-------------------------- +Weight: 1 +# +101099# +Adjustable parts that can installed on clockwork devices. +-------------------------- +Weight: 1 +# +101100# +A box containing Poenitentia Sol and Poenitentia Jana which Shinkiro and Shiranui can use. +-------------------------- +Weight: 0 +# +101101# +A box containing Poenitentia Foramen, Poenitentia Penet, Poenitentia Veloci and Poenitentia Ruina which Night Watch can use. +-------------------------- +Weight: 0 +# +101103# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Reload Stone (Dual), Creative Stone (Dual), Wanderer Minstrel Stones (Upper, Mid, Lower), Genetic Stones (Upper, Mid, Lower) and Sorcerer Stones (Upper, Mid, Lower) have been added. +Existing Costume Enchant Stones are also included. +[Costume Enchant Stone Box 25]https://ro.gnjoy.com/news/probability/list.asp?category=2,1024,768 +-------------------------- +Weight: 1 +# +101107# +\ + +-------------------------- +It contains 500 Ice Cannon Balls. +-------------------------- +Weight: 25 +# +101108# +\ + +-------------------------- +It contains 500 Lightning Cannon Balls. +-------------------------- +Weight: 25 +# +101109# +\ + +-------------------------- +It contains 500 Stone Cannon Balls. +-------------------------- +Weight: 25 +# +101110# +\ + +-------------------------- +It contains 500 Flare Cannon Balls. +-------------------------- +Weight: 25 +# +101111# +\ + +-------------------------- +It contains 500 Lightning Cannon Balls. +-------------------------- +Weight: 25 +# +101112# +\ + +-------------------------- +Summons 500 Kunais. +-------------------------- +Weight: 25 +# +101113# +\ + +-------------------------- +Summons 500 Formless Kunais. +-------------------------- +Weight: 25 +# +101114# +\ + +-------------------------- +Summons 500 Shadow Kunais. +-------------------------- +Weight: 25 +# +101115# +\ + +-------------------------- +Summons 500 Hamaya Kunais. +-------------------------- +Weight: 25 +# +101116# +\ + +-------------------------- +It contains 500 Throwing Grenades. +-------------------------- +Weight: 25 +# +101117# +\ + +-------------------------- +It contains 500 Soul Talismans. +-------------------------- +Weight: 25 +# +101118# +\ + +-------------------------- +It contains 500 Haze of Pitch Darkness. +-------------------------- +Weight: 25 +# +101119# +\ + +-------------------------- +It contains 500 Haze of Prominence. +-------------------------- +Weight: 25 +# +101120# +\ + +-------------------------- +It contains 500 Haze of Icy Snow. +-------------------------- +Weight: 25 +# +101121# +\ + +-------------------------- +It contains 500 Haze of Mother Earth. +-------------------------- +Weight: 25 +# +101122# +\ + +-------------------------- +It contains 500 Haze of North Wind. +-------------------------- +Weight: 25 +# +101123# +Bonus only for buyers of MD Shop on RO Live. +-------------------------- +[Obtainable Items] +30x [Event] Small Life Potion +30x [Event] Medium Life Potion +30x [Event] Mysterious Life Potion +30x [Event] Small Mana Potion +-------------------------- +Weight: 1 +# +101124# +Exlusive bonus only for buyers of MD Shop on RO Live. +-------------------------- +[Obtainable Items] +20x [Event] Almighty +20x [Event] Power Booster +20x [Event] Infinity Drink +30x [Event] Small Life Potion +30x [Event] Medium Life Potion +30x [Event] Mysterious Life Potion +30x [Event] Small Mana Potion +10x [Kachua] Mileage Coupon +-------------------------- +Weight: 1 +# +101128# +It contains souvenirs from the Royal Hunting Competition. +-------------------------- +Weight: 0 +# +101129# +A box with pretty clothes. +You can get one of the items below by opening the box. +-------------------------- +[Obtainable Items] +Costume Eared Black Witch Hat +Costume Blinking Blue Eyes +Costume Airy Two Side Up +Costume Rainbow Magic Circle +-------------------------- +Weight: 1 +# +101130# +A box with pretty clothes. +When you open the box, you can get all 4 items below. +-------------------------- +[Obtainable Items] +Costume Eared Black Witch Hat +Costume Blinking Blue Eyes +Costume Airy Two Side Up +Costume Rainbow Magic Circle +-------------------------- +Weight: 1 +# +101139# +A box containing 1 Boarding Halter. +-------------------------- +A mysterious halter that can be used to summon a creature to ride on it. +The type of creature depends on the Class. +-------------------------- +Weight: 1 +# +101148# +A reward item given to those who signed up for MOTP. +-------------------------- +[Obtainable Items] +30x World Tour Ticket +1x [Security Campaign] Kafra Buff(1 Day) +10x [Security Campaign] Special Energy Drink +-------------------------- +Weight: 0 +# +101159# +A box containing 1 of 8 Costume Pigtails Half Up. +-------------------------- +Weight: 1 +# +101161# +Snowflake Reward Box +-------------------------- +Weight: 0 +# +101162# +A mysterious scroll that can be used to transform into a Rgan. Let's use it usefully when infiltrating the Rgan made by Nooki. +-------------------------- +During the transformation: +Increases HP Recovery from Dried Ice Gangu by 100%. +-------------------------- +Caution! Transformation will be canceled upon death. +-------------------------- +Weight: 0 +# +101166# +A box containing 7 types of items. +-------------------------- +10x [Event] Almighty +10x [Event] Power Booster +10x [Event] Infinity Drink +15x [Event] Small Life Potion +15x [Event] Medium Life Potion +15x [Event] Mysterious Life Potion +15x [Event] Small Mana Potion +-------------------------- +Weight: 0 +# +101167# +A box given to visitors to G-Star. Two items are included. +-------------------------- +3x [Event] Special Potion +30x World Tour Ticket +-------------------------- +Weight: 0 +# +101168# +A special potion that receives the effects of Small Life Potion, Medium Life Potion, Mysterious Life Potion, Small Mana Potion, Brilliant Defense Scroll and Advanced Combat Manual for 1 hour. +If you are incapacitated, the item effect will disappear. +-------------------------- +Weight: 0 +# +101169# +It is said that by using it, you can move from the dimensional niche to the ongoing 'RAG-FES Exhibition Hall'. +-------------------------- +[Ragfest Supporter]rag_fes,261,272,0,101,0 +-------------------------- +Weight: 0 +# +101170# +A reward box given to commemorate participation in Quiz Revolution in 2021. +Rare items may appear! +-------------------------- +Weight: 0 +# +101177# +A spellbook that enhances Full Penetration Shadow and Full Tempest Shadow Equipment. +Without changing the refine level, one or two Random Options are granted. +Note that the existing Random Options disappear. +-------------------------- +[Target Items] +Full Penetration Shadow Earring +Full Penetration Shadow Pendant +Full Penetration Shadow Armor +Full Penetration Shadow Shoes +Full Tempest Shadow Earring +Full Tempest Shadow Pendant +Full Tempest Shadow Armor +Full Tempest Shadow Shoes +-------------------------- +Weight: 1 +# +101178# +A spellbook that enhances the Seperate Reload Shadow Shield. +Without changing the refine level, one or two Random Options are granted. +Note that the existing Random Options disappear. +-------------------------- +[Target Items] +Seperate Reload Shadow Shield +-------------------------- +Weight: 1 +# +101179# +A spellbook that enhances the Spell Caster Shadow Equipment. +Without changing the refine level, one or two Random Options are granted. +Note that the existing Random Options disappear. +-------------------------- +[Target Items] +Spell Caster Shadow Armor +Spell Caster Shadow Shoes +Spell Caster Shadow Earring +Spell Caster Shadow Pendant +-------------------------- +Weight: 1 +# +101180# +A spellbook that enhances Trait Status Shadow Equipments. +Without changing the refine level, one or two Random Options are granted. +Note that the existing Random Options disappear. +-------------------------- +[Target Items] +Physical Power Shadow Weapon +Physical Power Shadow Shield +Magical Spell Shadow Weapon +Magical Spell Shadow Shield +Concentration Shadow Weapon +Concentration Shadow Shield +Wisdom Shadow Weapon +Wisdom Shadow Shield +Stamina Shadow Weapon +Stamina Shadow Shield +Creative Shadow Weapon +Creative Shadow Shield +-------------------------- +Weight: 1 +# +101181# +Reload Shadow Thump Box. +-------------------------- +If you combine 3 of any of the following Shadow Equipments which are refined to +9 or higher, you can obtain Separate Reload Shadow Shield. +Reload Shadow Armor +Reload Shadow Shoes +Reload Shadow Shield +Reload Shadow Armor II +-------------------------- +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +101182# +Spell Caster Shadow Thump Box +-------------------------- +If you combine 6 of any of the following Shadow Equipments which are refined to +7 or higher, you can obtain either Spell Caster Shadow Armor, Spell Caster Shadow Shoes, Spell Caster Shadow Earring or Spell Caster Shadow Pendant. +Spellflow Shadow Shield II +Spellflow Shadow Shield +Spellflow Shadow Armor +Spellflow Shadow Shoes +Caster Shadow Armor II +Caster Shadow Armor +Caster Shadow Shield +Caster Shadow Shoes +Caster Shadow Weapon +Caster Shadow Earring +Caster Shadow Pendant +-------------------------- +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +101187# +A mysterious cube that can refine Snow Flower armors. +Refines Snow Flower armors to +9. +-------------------------- +[Target Items] +Snow Flower Armor +Snow Flower Robe +Snow Flower Manteau +Snow Flower Muffler +Snow Flower Boots +Snow Flower Shoes +-------------------------- +Weight: 1 +# +101188# +A mysterious cube that can enhance Glacier weapons. +Refines Glacier weapons to +9. +-------------------------- +[Target Items] +Glacier Two-Handed Sword +Glacier Lance +Glacier Sword +Glacier Basic Sword +Glacier Spear +Glacier Mechanic Axe +Glacier Axe +Glacier Mace +Glacier Mechanic Mace +Glacier Rogue Knife +Glacier Basic Knife +Glacier Bow +Glacier Knuckle +Glacier Book +Glacier Katar +Glacier Wand +Glacier Staff +Glacier Foxtail +Glacier Violin +Glacier Whip +Glacier Huuma Shuriken +Glacier Pistol +Glacier Rifle +Glacier Shotgun +Glacier Gatling +Glacier Launcher +-------------------------- +Weight: 1 +# +101189# +A refine hammer that increases the refinement level of a specific Hero's Weapon modified by Team Richiet by +1. +It can only be used on Hero's Weapon-LT with refine level between +9 and +11. +Each time it is used, 14 Blacksmith's Blessings are consumed as materials. +-------------------------- +[Target Items] +Clarity Huuma Shuriken-LT +Kiri no Tsuyu-LT +Crimson Rose-LT +Master Soul Rifle-LT +Demon Slayer Shot-LT +The Black-LT +Golden Lord Launcher-LT +Meowmeow Foxtail-LT +One Sky One Sun-LT +Spirit Pendulum-LT +-------------------------- +Weight: 1 +# +101190# +A special modification box secretly developed by Team Richiet. +You can immediately upgrade an unlocked Hero's Weapon to an LT weapon, regardless of refinement or material. +-------------------------- +[Target Items] +Patent Clarity Huuma Shuriken +Patent Kiri no Tsuyu +Patent Crimson Rose +Patent Master Soul Rifle +Patent Demon Slayer Shot +Patent The Black +Patent Golden Lord Launcher +Patent Meowmeow Foxtail +Patent One Sky One Sun +Patent Spirit Pendulum +-------------------------- +Weight: 1 +# +101194# +An egg containing the mark of a hero. +When used, you can get 1 Heroic Token at random. +-------------------------- +[Obtainable Items] +Heroic Token (Arch Mage) +Heroic Token (Wind Hawk) +Heroic Token (Imperial Guard) +Heroic Token (Cardinal) +Heroic Token (Shadow Cross) +Heroic Token (Abyss Chaser) +Heroic Token (Dragon Knight) +Heroic Token (Biolo) +Heroic Token (Elemental Master) +Heroic Token (Troubadour/Trouvere) +Heroic Token (Meister) +Heroic Token (Inquisitor) +Heroic Token (Shinkiro&Shiranui) +Heroic Token (Night Watch) +Heroic Token (Soul Ascetic) +Heroic Token (Sky Emperor) +Heroic Token (Spirit Handler) +-------------------------- +Weight: 1 +# +101200# +A special potion given as a gift to MOTP users. +When taken, 7% of MaxHP is restored every 4 seconds for 30 minutes and DEF +500 and MDEF +200 are applied. +-------------------------- +If you are incapacitated, the item effect will disappear. +Does not stack with the effects of Medium Life Potion and Brilliant Defense Scroll. +When used together with Medium Life Potion or Brilliant Defense Scroll, the duration of the item used later will be overwritten. +-------------------------- +Weight: 0 +# +101238# +Kafra buff that increases experience and item drop rate for 7 days. +-------------------------- +The character using this item will receive the following effects for 7 days. +- Increases experience gained by 50% +- Increases item drop rate by 50% +-------------------------- +Weight: 0 +# +101240# +Octopus Festival Reward Box +# +101241# +Maybe the most representative food you eat on New Year's Day. +Scholar Hyul made this food, seeking for a new taste. +What's even more surprising is the taste. +-------------------------- +Recovers 50% HP and SP. +-------------------------- +Weight: 0 +# +101257# +Lord Bearer's Shadow Thump Box +-------------------------- +If you combine 6 of any of the following Shadow Equipments which are refined to +7 or higher, you can obtain either Lord Bearer's Shadow Shoes, Lord Bearer's Shadow Armor, Lord Bearer's Shadow Pendant or Lord Bearer's Shadow Earring. +Bearer's Shadow Shoes II +Bearer's Shadow Armor II +Bearer's Shadow Pendant II +Bearer's Shadow Earring +Bearer's Shadow Pendant +Bearer's Shadow Armor +Bearer's Shadow Weapon +Bearer's Shadow Shoes +Bearer's Shadow Shield +-------------------------- +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +101258# +Mega Blitz Shadow Thump Box. +-------------------------- +If you combine 6 of any of the following Shadow Equipments which are refined to +7 or higher, you can obtain either Mega Blitz Shadow Shield or Mega Blitz Shadow Weapon. +Blitz Shadow Earring +Blitz Shadow Pendant +Blitz Shadow Armor +Blitz Shadow Weapon +Blitz Shadow Shoes +Blitz Shadow Shield +-------------------------- +The Refine Level of the materials does not affect the result. +-------------------------- +Weight: 1 +# +101259# +A refine hammer that increases the refinement level of a special hat modified by Team Richiet by +1. +It can only be used on special hats with refine level between +9 and +11. +Each time it is used, 14 Blacksmith's Blessings are consumed as materials. +-------------------------- +[Target Items] +Tiger King Doll Hat-LT +Bacsojin Doll Hat-LT +Smokey's Transformation Leaf-LT +Wickebine's Black Cat Ears-LT +Survivor's Circlet-LT +Gold Fish Head Hat-LT +Imp Hat-LT +-------------------------- +Weight: 1 +# +101260# +A spellbook that enhances Lord Bearer's Shadow Equipment. +Without changing the refine level, one or two Random Options are granted. +Note that the existing Random Options disappear. +-------------------------- +[Target Items] +Lord Bearer's Shadow Armor +Lord Bearer's Shadow Shoes +Lord Bearer's Shadow Earring +Lord Bearer's Shadow Pendant +-------------------------- +Weight: 1 +# +101261# +A spellbook that enhances Mega Blitz Shadow Equipment. +Without changing the refine level, one or two Random Options are granted. +Note that the existing Random Options disappear. +-------------------------- +[Target Items] +Mega Blitz Shadow Shield +Mega Blitz Shadow Weapon +-------------------------- +Weight: 1 +# +101262# +A spellbook that enhances Absorb Shadow Equipment. +Without changing the refine level, one or two Random Options are granted. +Note that the existing Random Options disappear. +-------------------------- +[Target Items] +Absorb Shadow Shield +Absorb Shadow Weapon +-------------------------- +Weight: 1 +# +101264# +A spellbook that enhances Maximum Mammoth Shadow Equipment. +Without changing the refine level, one or two Random Options are granted. +Note that the existing Random Options disappear. +-------------------------- +[Target Items] +Maximum Mammoth Shadow Shoes +Maximum Mammoth Shadow Armor +Maximum Mammoth Shadow Earring +Maximum Mammoth Shadow Pendant +-------------------------- +Weight: 1 +# +101268# +A basket containing one randomly out of three Costumes. +When used, one of the following Costumes can be obtained. +-------------------------- +[Obtainable Items] +Costume Filir Backpack +Costume Silky Long (Silver) +Costume Gorgeous Cherry Blossom Hairpin (Blue) +-------------------------- +Weight: 0 +# +101269# +A box containing 3 pieces of Costumes. +When used, you can get all 3 of the following Costumes. +-------------------------- +[Obtainable Items] +Costume Filir Backpack +Costume Silky Long (Silver) +Costume Gorgeous Cherry Blossom Hairpin (Blue) +-------------------------- +Weight: 0 +# +101271# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Critical Stone (Dual), Concentration Stone (Dual), Archbishop Stones (Upper, Mid, Lower), Ranger Stones (Upper, Mid, Lower) and Shadow Chaser Stones (Upper, Mid, Lower) have been added. +Existing Costume Enchant Stones are also included. +[Costume Enchant Stone Box 26]https://ro.gnjoy.com/news/probability/list.asp?category=2,1024,768 +-------------------------- +Weight: 1 +# +101276# +As a traditional Korean holiday food, it is the most representative food eaten on Lunar New Year's Day. +-------------------------- +Recovers 30% HP and SP. +-------------------------- +Weight: 0 +# +101306# +A refine hammer that increases the refinement level of a Poenitentia weapon by +1. +It can only be used on Poenitentia weapons with refine level between +9 and +11. +Each time it is used, 14 Blacksmith's Blessings are consumed as materials. +-------------------------- +[Target Items] +Poenitentia Gladius +Poenitentia Ligula +Poenitentia Orbis +Poenitentia Mucro +Poenitentia Sol +Poenitentia Jana +Poenitentia Hasta +Poenitentia Codex +Poenitentia Liber +Poenitentia Radius +Poenitentia Scipio +Poenitentia Crystallum +Poenitentia Planta +Poenitentia Ramus +Poenitentia Ferrum +Poenitentia Caestus +Poenitentia Ungula +Poenitentia Chorda +Poenitentia Flagellum +Poenitentia Clava +Poenitentia Pendulus +Poenitentia Ensis +Poenitentia Manus +Poenitentia Ascia +Poenitentia Catapulta +Poenitentia Termes +Poenitentia Virga +Poenitentia Tenon +Poenitentia Nervus +Poenitentia Foramen +Poenitentia Penet +Poenitentia Veloci +Poenitentia Ruina +Poenitentia Vatia +Poenitentia Attendo +Poenitentia Dilacero +-------------------------- +Weight: 1 +# +101307# +A refine hammer that increases the refinement level of a Varmundt's Rune armor by +1. +It can only be used on Varmundt's Rune armors with refine level between +9 and +11. +Each time it is used, 14 Blacksmith's Blessings are consumed as materials. +-------------------------- +[Target Items] +Varmundt Fire Rune Armor +Varmundt Glade Rune Armor +Varmundt Ice Rune Armor +Varmundt Death Rune Robe +Varmundt Fire Rune Boots +Varmundt Glade Rune Boots +Varmundt Ice Rune Boots +Varmundt Death Rune Boots +Varmundt Fire Rune Manteau +Varmundt Glade Rune Manteau +Varmundt Ice Rune Manteau +Varmundt Death Rune Manteau +-------------------------- +Weight: 1 +# +101308# +A spellbook that enhances True Gemstone Shadow Equipment. +Without changing the refine level, one or two Random Options are granted. +Note that the existing Random Options disappear. +-------------------------- +[Target Items] +True Gemstone Shadow Pendant +True Gemstone Shadow Earring +True Gemstone Shadow Shoes +True Gemstone Shadow Armor +-------------------------- +Weight: 1 +# +101309# +A spellbook that enhances Experience Shadow Equipment. +Without changing the refine level, one or two Random Options are granted. +Note that the existing Random Options disappear. +-------------------------- +[Target Items] +Experience Shadow Shield +-------------------------- +Weight: 1 +# +101310# +A spellbook that enhances Clever Shadow Equipment. +Without changing the refine level, one or two Random Options are granted. +Note that the existing Random Options disappear. +-------------------------- +[Target Items] +Clever Shadow Shield +Clever Shadow Weapon +-------------------------- +Weight: 1 +# +101311# +A spellbook that enhances Infinity Shadow Equipment. +Without changing the refine level, one or two Random Options are granted. +Note that the existing Random Options disappear. +-------------------------- +[Target Items] +Infinity Shadow Shield +Infinity Shadow Weapon +-------------------------- +Weight: 1 +# +101314# +A box containing a helm containing the power of faith. +You can recieve 1 Helm of Faith with the effect of amplifying the effects of Vivatus and Adulter weapons randomly. +-------------------------- +[Obtainable Items] +Helm of Faith(Warlock) +Helm of Faith II(Warlock) +Helm of Faith(Sura) +Helm of Faith II(Sura) +Helm of Faith(Archbishop) +Helm of Faith II(Archbishop) +Helm of Faith(Shadow Chaser) +Helm of Faith II(Shadow Chaser) +Helm of Faith(Ranger) +Helm of Faith II(Ranger) +Helm of Faith(Royal Guard) +Helm of Faith II(Royal Guard) +Helm of Faith(Guillotine Cross) +Helm of Faith II(Guillotine Cross) +Helm of Faith(Sorcerer) +Helm of Faith II(Sorcerer) +Helm of Faith(Rune Knight) +Helm of Faith II(Rune Knight) +Helm of Faith(Minstrel&Wanderer) +Helm of Faith II(Minstrel&Wanderer) +Helm of Faith(Mechanic) +Helm of Faith II(Mechanic) +Helm of Faith(Genetic) +Helm of Faith II(Genetic) +Helm of Faith(Kagerou&Oboro) +Helm of Faith II(Kagerou&Oboro) +Helm of Faith(Rebellion) +Helm of Faith II(Rebellion) +Helm of Faith(Soul Reaper) +Helm of Faith II(Soul Reaper) +Helm of Faith(Star Emperor) +Helm of Faith II(Star Emperor) +Helm of Faith(Summoner) +Helm of Faith II(Summoner) +-------------------------- +Weight: 1 +# +101321# +A box crafted with an apology for event errors. +All of the gifts below are included. +-------------------------- +[Reward Item] +3x [Event] Advanced Combat Manual +20x World Tour Ticket +10x [Kachua] Mileage Coupon +-------------------------- +Weight: 1 +# +101331# +A trap with various sweet fruits installed in it. The monster Familiar likes it very much. +Event monsters and slave monsters are not tameable. +-------------------------- +Type: Taming Item +Monster: Familiar +Weight: 1 +# +101340# +A Combination Scroll that explains how to craft Blacksmith's Blessing. +-------------------------- +[Required Materials] +150x Zelunium +-------------------------- +[Blacksmith's Blessing] +The hope from all the blacksmiths around the world is contained within this bottle. +Refine failure will not destroy equipment or reduce its refine level. Will be consumed regardless of fail or success. The quantity used depends on refine level of equipment. +-------------------------- +Weight: 1 +# +101341# +A Combination Scroll that explains how to craft 2x Hollgrehenn's Shadow Refine Hammer. +-------------------------- +[Required Materials] +150x Shadowdecon +-------------------------- +[Hollgrehenn's Shadow Refine Hammer] +A hammer that randomly refines Shadow Equipment to Level 1~10. There is a high chance that the Refine Level will be 4. +If you try already refined Shadow Equipment the Refine Level may drop! +-------------------------- +Weight: 1 +# +101342# +A Combination Scroll that explains how to summon 1x Powerful Soul Essence. +Where they are summoned is not clearly explained. +-------------------------- +[Required Materials] +200x Shadowdecon +200x Zelunium +-------------------------- +[Powerful Soul Essence] +A essence that is said to have been made by refining the soul of a powerful monster. +It is not known who can do it and how. +-------------------------- +Weight: 1 +# +101343# +A Combination Scroll that explains how to summon 1x Powerful Dimension Essence. +Where they are summoned is not clearly explained. +-------------------------- +[Required Materials] +200x Shadowdecon +200x Zelunium +-------------------------- +[Powerful Dimensional Essence] +Essence that is said to have been made by purifying substances of another dimension. +It is not known who and how such a task is possible. +-------------------------- +Weight: 1 +# +101344# +A Combination Scroll that explains how to craft 2x Enchantment Ticket. +-------------------------- +[Required Materials] +1x Powerful Soul Essence +1x Powerful Dimensional Essence +150x Shadowdecon +150x Zelunium +-------------------------- +[Enchantment Ticket] +An item that grants enchantments to various items. +-------------------------- +Weight: 1 +# +101345# +A Combination Scroll that explains how to craft Beast's Leather Shoes. +-------------------------- +[Required Materials] +50x Tiger Skin +250x Zelunium +-------------------------- +[Beast's Leather Shoes(1)] +Leather shoes made with the motif of a Moonlight. + +MaxHP +1500, MaxSP +150 +Refine Level +7: +MATK +3% +Refine Level +9: +MATK +5%, S.MATK +5 +Refine Level +11: +Decreases Fixed Casting Time by 0.8 seconds. +Decreases Variable Casting Time by 10%. + +When equipped with Moonlight Card: +Decreases Fixed Casting Time by 0.2 seconds. +S.MATK +15 +When equipped with Sealed Moonlight Card: +Decreases Fixed Casting Time by 0.2 seconds. +When equipped with Furious Moonlight Card: +For each 3 Refine Levels of equipped Shoes: +Increases Magical Damage with every element by 4%. + +[Bonus by Grade] +[Grade D]: RES +30, MRES +30 +[Grade C]: Magical Damage against enemies of every size +15% +[Grade B]: SPL +3 +[Grade A]: S.MATK +7 + +Type: Shoes +Defense: 15 +Weight: 60 +Armor Level: 2 +Requirement: +Base Level 200 +-------------------------- +Weight: 1 +# +101346# +A Combination Scroll that explains how to craft a Pirate Captain's Coat. +-------------------------- +[Required Materials] +30x Will of Red Darkness +250x Zelunium +-------------------------- +[Pirate Captain's Coat(1)] +The captain's coat worn by Drake. + +Critical +3, C.RATE +5 +For each 2 Refine Levels: +ATK +15 +Increases Critical Damage by 3%. +For each 3 Refine Levels: +Increases Physical Damage against enemies of every size by 5%. +Refine Level +7: +ATK +5%, P.ATK +7 +Refine Level +9: +Decreases After Skill Delay by 10%. +Refine Level +11: +DEF +150 +Decreases After Skill Delay by additional 5%. + +When equipped with Drake Card: +Critical +15, C.RATE +10 +Increases Melee and Ranged Physical Damage by 15%. + +[Bonus by Grade] +[Grade D]: Critical +3, CRT +3 +[Grade C]: Critical Damage +15% +[Grade B]: POW +3, CON +3 +[Grade A]: P.ATK +7 + +Type: Garment +Defense: 15 +Weight: 60 +Armor Level: 2 +Requirement: +Base Level 200 +-------------------------- +Weight: 1 +# +101347# +A Combination Scroll that explains how to craft a Phreeoni Wing Suit. +-------------------------- +[Required Materials] +30x Loki's Whispers +250x Zelunium +-------------------------- +[Phreeoni Wing Suit(1)] +A suit that embodies the figure of a Phreeoni. +It is difficult to expect defense power from this armor. + +CON +3, ATK +100 +For each 2 Refine Levels: +ATK +15 +For each 4 Refine Levels: +P.ATK +1 +Refine Level +7: +Increases Ranged Physical Damage by 10%. +Refine Level +9: +Perfect HIT +15% +Refine Level +11: +Decreases After Skill Delay by 15%. +Increases Ranged Physical Damage by additional 15%. + +When equipped with Phreeoni Card: +For each 2 Refine Levels of equipped Armor: +Increases Ranged Physical Damage by 3%. + +For each 3 Refine Levels of equipped Armor: +Increases Physical Damage against monsters of Boss class by 8%. + +When equipped with Phreeoni Card: +P.ATK +10, C.RATE +5 + +For each 3 Refine Levels of equipped Armor: +Increases Critical Damage by 4%. + +When Pet Phreeoni is active: +ATK +7%, ASPD +2 + +[Bonus by Grade] +[Grade D]: ATK +40, ATK +5% +[Grade C]: CON +5 +[Grade B]: Physical Damage against enemies of every size +15%. +[Grade A]: P.ATK +7 + +Type: Armor +Defense: 10 +Weight: 150 +Armor Level: 2 +Requirement: +Base Level 200 +-------------------------- +Weight: 1 +# +101355# + +# +101359# +A spellbook that enhances Major Auto Spell Shadow Equipment. +Without changing the refine level, one or two Random Options are granted. +Note that the existing Random Options disappear. +-------------------------- +[Target Items] +Major Auto Spell Shadow Armor +Major Auto Spell Shadow Shoes +Major Auto Spell Shadow Earring +Major Auto Spell Shadow Pendant +-------------------------- +Weight: 1 +# +101360# +A spellbook that enhances Hasty Shadow Equipment. +Without changing the refine level, one or two Random Options are granted. +Note that the existing Random Options disappear. +-------------------------- +[Target Items] +Hasty Shadow Weapon +Hasty Shadow Shield +-------------------------- +Weight: 1 +# +101361# +A spellbook that enhances Durable Shadow Equipment. +Without changing the refine level, one or two Random Options are granted. +Note that the existing Random Options disappear. +-------------------------- +[Target Items] +Durable Shadow Shield +Durable Shadow Weapon +-------------------------- +Weight: 1 +# +101362# +A spellbook that enhances Perfect Size Shadow Equipment. +Without changing the refine level, one or two Random Options are granted. +Note that the existing Random Options disappear. +-------------------------- +[Target Items] +Perfect Size Shadow Armor +Perfect Size Shadow Weapon +-------------------------- +Weight: 1 +# +101363# +A refine hammer that increases the refinement level of a Upgraded OS Helmet, which has been modified for an upgraded OS weapon, by +1. +It can only be used on an Upgraded OS Helmet with refine level less than +11. +Each time it is used, 30 Cor Core and 30 Shadowdecon are consumed as materials. +-------------------------- +[Target Items] +Sagittarius Celestial Coronet-LT +Scorpio Celestial Coronet-LT +Great Magician's Ceremonial Crown-LT +Stripe Hat-LT +Phantom Cap-LT +Ignis Cap-LT +Red Clock Casquette-LT +-------------------------- +Weight: 1 +# +101364# +A refine hammer that increases the refinement level of a Upgraded OS Weapon by +1. +It can only be used on an Upgraded OS Weapon with refine level less than +11. +Each time it is used, 30 Cor Core and 30 Zelunium are consumed as materials. +-------------------------- +[Target Items] +Beam Claymore-OSAD +Meuchler-OSAD +Blasti-OSAD +Virtual Bow-OSAD +MH-P89-OSAD +AC-B44-OSAD +HR-S55-OSAD +Burning Knuckle-OSAD +Cannon Rapier-OSAD +Saphir Mace-OSAD +Ultio-OSAD +Rutilus Stick-OSAD +Electric Fox-OSAD +Circuit Board-OSAD +Kuroiro-OSAD +Boost Lance-OSAD +-------------------------- +Weight: 1 +# +101389# +A refine hammer that increases the refinement level of a Helm of Faith helmets by +1. +It can only be used on Helm of Faith helmets with refine level between +9 and +11. +Each time it is used, 14 Blacksmith's Blessings are consumed as materials. +-------------------------- +[Target Items] +Helm of Faith(Warlock) +Helm of Faith II(Warlock) +Helm of Faith(Sura) +Helm of Faith II(Sura) +Helm of Faith(Archbishop) +Helm of Faith II(Archbishop) +Helm of Faith(Shadow Chaser) +Helm of Faith II(Shadow Chaser) +Helm of Faith(Ranger) +Helm of Faith II(Ranger) +Helm of Faith(Royal Guard) +Helm of Faith II(Royal Guard) +Helm of Faith(Guillotine Cross) +Helm of Faith II(Guillotine Cross) +Helm of Faith(Sorcerer) +Helm of Faith II(Sorcerer) +Helm of Faith(Rune Knight) +Helm of Faith II(Rune Knight) +Helm of Faith(Minstrel&Wanderer) +Helm of Faith II(Minstrel&Wanderer) +Helm of Faith(Mechanic) +Helm of Faith II(Mechanic) +Helm of Faith(Genetic) +Helm of Faith II(Genetic) +Helm of Faith(Kagerou&Oboro) +Helm of Faith II(Kagerou&Oboro) +Helm of Faith(Rebellion) +Helm of Faith II(Rebellion) +Helm of Faith(Soul Reaper) +Helm of Faith II(Soul Reaper) +Helm of Faith(Star Emperor) +Helm of Faith II(Star Emperor) +Helm of Faith(Summoner) +Helm of Faith II(Summoner) +-------------------------- +Weight: 1 +# +101390# +A refine hammer that increases the refinement level of a Helm of Faith helmets by +1. +It can only be used on Helm of Faith helmets with refine level between +9 and +11. +Each time it is used, 14 Blacksmith's Blessings are consumed as materials. +-------------------------- +[Target Items] +Precision Bow +Precision Fist +Precision Slasher +Precision Splatter +Precision Bomber +Precision Lute +Precision Pistol +Precision Piercer +Precision Shatter +Precision Whip +Solid Claymore +Solid Dagger +Solid Edge +Solid Manual +Solid Rod +Solid Spear +Solid Staff +Solid Wand +Wicked Axe +Wicked Blade +Wicked Book +Wicked Cross +Wicked Dagger +Wicked Edge +Wicked Katar +Wicked Plant +-------------------------- +Weight: 1 +# +101391# +The Fantasy Series: A Scientist's Escape Log. +As a rental fantasy series book, you can experience the contents of the book at the point where the actual incident occurred. When you open the book, the table of contents guides you through the experience. Return to Prontera East Library. +-------------------------- +Weight: 0 +# +101399# +When used, you can get 3 Enchantment Tickets that grant Enchantments to various items. +You can use them by going to [Jeeky]itemmall,31,70,0,100,0,0. +-------------------------- +[Target Items]https://ro.gnjoy.com/guide/runemidgarts/itemview.asp?itemSeq=7&ID=1000874,1024,768 +-------------------------- +Weight: 1 +# +101404# +Growth supplement provided by the editorial department of the fantasy series. +The number of times you level up with the experience gained at this time is limited to one. +If you are already Base Level 200 or higher, the efficacy will drop sharply. +-------------------------- +Weight: 1 +# +101406# +Job growth supplement provided by the editorial department of the fantasy series. +The number of times you level up with the experience gained at this time is limited to one. +If you are already Base Level 200 or higher, the efficacy will drop sharply. +-------------------------- +Weight: 1 +# +101407# +A collection of adventure convenience facilities that the editorial department of the fantasy series has chosen after careful consideration of the difficulties of adventurers. +-------------------------- +Weight: 1 +# +101408# +A collection of adventure danger areas selected after careful consideration by the editorial department of the fantasy series, containing the voices of adventurers' warnings. +-------------------------- +Weight: 1 +# +101416# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Spell Magic Attack Stone (Garment), Spell Stone (Dual), Sure Stones (Upper, Mid, Lower), Mechanic Stones (Upper, Mid, Lower) and Guillotine Cross Stones (Upper, Mid, Lower) have been added. +Existing Costume Enchant Stones are also included. +[Costume Enchant Stone Box 27]https://ro.gnjoy.com/news/probability/list.asp?category=2,1024,768 +-------------------------- +Weight: 1 +# +101461# +A box containing 1 Infinite Greed Scroll that can be used for 1 hour provided by the Fantasy Series Editorial Department. +-------------------------- +Rental Item +-------------------------- +Scroll to use the greed skill. Why is it that a person feels greedy even if he just lifts it up? +Warning! - Can not be used in the towns. +-------------------------- +Weight: 1 +# +101470# +You can receive one of the following Status Reduction Potions. +-------------------------- +STR Reduction Potion +AGI Reduction Potion +VIT Reduction Potion +INT Reduction Potion +DEX Reduction Potion +LUK Reduction Potion +-------------------------- +Weight: 0 +# +101471# +A box containing the research results of an alchemist selected as 'Alchemist of the Year' by the Alchemist Association. +It contains chemicals, so be careful when handling it. You can choose one type to receive. +-------------------------- +Bottle Grenade +Acid Bottle +Plant Bottle +Glistening Coat +Marine Sphere Bottle +-------------------------- +Weight: 1 +# +101482# +A cube that converts the Freedom Stick into an Patent Freedom Stick. +Uses an +9 Freedom Stick as a material. +An +7 Patent Freedom Stick can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +101483# +A cube that converts the Blessed Knife into an Patent Blessed Knife. +Uses an +9 Blessed Knife as a material. +An +7 Patent Blessed Knife can be obtained. +-------------------------- +Warning! - When remodeling, the inserted cards and Random Options are removed. +-------------------------- +Weight: 1 +# +101522# +When used, receive the main character buff of Fantasy Series 001 'Young-ae, the golden spoon, wants to live quietly.' for 30 minutes. +Cooldown time of 30 minutes, all buffs in the Fantasy Series share the same cooldown. +-------------------------- +[Fantasy Series 001 Hero Buff] +INT +5, FLEE +30. +Increases Movement Speed. +-------------------------- +Weight: 0 +# +101523# +When used, receive the main character buff of Fantasy Series 002 'A scientist's escape log' for 30 minutes. +Cooldown time of 30 minutes, all buffs in the Fantasy Series share the same cooldown. +-------------------------- +[Fantasy Series 002 Hero Buff] +MaxHP +10%, MaxSP +5%. +Increases HP Recovery Rate of Yellow Herb by 500%. +-------------------------- +Weight: 0 +# +101524# +When used, receive the main character buff of Fantasy Series 003 'Elena Volkova, the Great Flame' for 30 minutes. +Cooldown time of 30 minutes, all buffs in the Fantasy Series share the same cooldown. +-------------------------- +[Fantasy Series 003 Hero Buff] +Increases Ranged Physical Damage by 10%. +-------------------------- +Weight: 0 +# +101525# +When used, receive the main character buff of Fantasy Series 004 'An ornamental plant that anyone can grow easily (Practical Edition)' for 30 minutes. +Cooldown time of 30 minutes, all buffs in the Fantasy Series share the same cooldown. +-------------------------- +[Fantasy Series 004 Hero Buff] +Skill casting cannot be interrupted. +-------------------------- +Weight: 0 +# +101542# +A box that can be received by selecting an part of the Full Penetration Shadow Equipment. +If you select an Earring/Pendant/Shoes/Armor part, you will get a box containing the selected Shadow Equipment. +-------------------------- +Weight: 1 +# +101543# +A box containing the Full Penetration Shadow Earring. +When used, you can obtain Full Penetration Shadow Earring with a random refine level between +7 and +10. +-------------------------- +Weight: 1 +# +101544# +A box containing the Full Penetration Shadow Pendant. +When used, you can obtain Full Penetration Shadow Pendant with a random refine level between +7 and +10. +-------------------------- +Weight: 1 +# +101545# +A box containing the Full Penetration Shadow Armor. +When used, you can obtain Full Penetration Shadow Armor with a random refine level between +7 and +10. +-------------------------- +Weight: 1 +# +101546# +A box containing the Full Penetration Shadow Shoes. +When used, you can obtain Full Penetration Shadow Shoes with a random refine level between +7 and +10. +-------------------------- +Weight: 1 +# +101547# +A box that can be received by selecting an part of the Full Tempest Shadow Equipment. +If you select an Earring/Pendant/Shoes/Armor part, you will get a box containing the selected Shadow Equipment. +-------------------------- +Weight: 1 +# +101548# +A box containing the Full Tempest Shadow Earring. +When used, you can obtain Full Tempest Shadow Earring with a random refine level between +7 and +10. +-------------------------- +Weight: 1 +# +101549# +A box containing the Full Tempest Shadow Pendant. +When used, you can obtain Full Tempest Shadow Pendant with a random refine level between +7 and +10. +-------------------------- +Weight: 1 +# +101550# +A box containing the Full Tempest Shadow Armor. +When used, you can obtain Full Tempest Shadow Armor with a random refine level between +7 and +10. +-------------------------- +Weight: 1 +# +101551# +A box containing the Full Tempest Shadow Shoes. +When used, you can obtain Full Tempest Shadow Shoes with a random refine level between +7 and +10. +-------------------------- +Weight: 1 +# +101552# +A box that can be received by selecting an part of the Durable Shadow Equipment. +If you select an Weapon/Shield part, you will get a box containing the selected Shadow Equipment. +-------------------------- +Weight: 1 +# +101553# +A box containing the Durable Shadow Weapon. +When used, you can obtain Durable Shadow Weapon with a random refine level between +7 and +10. +-------------------------- +Weight: 1 +# +101554# +A box containing the Durable Shadow Shield. +When used, you can obtain Durable Shadow Shield with a random refine level between +7 and +10. +-------------------------- +Weight: 1 +# +101555# +A box that can be received by selecting an part of the Clever Shadow Equipment. +If you select an Weapon/Shield part, you will get a box containing the selected Shadow Equipment. +-------------------------- +Weight: 1 +# +101556# +A box containing the Clever Shadow Weapon. +When used, you can obtain Clever Shadow Weapon with a random refine level between +7 and +10. +-------------------------- +Weight: 1 +# +101557# +A box containing the Clever Shadow Shield. +When used, you can obtain Clever Shadow Shield with a random refine level between +7 and +10. +-------------------------- +Weight: 1 +# +101563# +A box containing a helmet modified to suit OS weapons. +You can choose one item out of a total of 7 helmets to receive. +-------------------------- +[Obtainable Items] +Ignis Cap +Phantom Cap +Stripe Hat +Red Clock Casquette +Great Magician's Ceremonial Crown +Scorpio Diadem +Sagittarius Diadem +-------------------------- +Weight: 1 +# +101564# +A spellbook that enhances Almighty Shadow Equipment. +Without changing the refine level, one or two Random Options are granted. +Note that the existing Random Options disappear. +-------------------------- +[Target Items] +Almighty Shadow Pendant +Almighty Shadow Earring +-------------------------- +Weight: 1 +# +101565# +A box containing an Shadow Spellbook. +When used, you can recieve one of an selected Class Shadow Spellbook (Physical), Class Shadow Spellbook (Magic), Skill Shadow Spellbook (Physical), and Skill Shadow Spellbook (Magic). +-------------------------- +Weight: 1 +# +101567# +A gift box given to those who have made Gravity Plus friends for Ragnarok Online users. +In addition to consumables that are useful in-game, Costumes for plus friends are also included. +-------------------------- +[Obtainable Items] +1x Costume Sky Hat +1x [Event] Advanced Combat Manual +1x [Event] Three Master Package (20) +1x [Event] Brilliant Protection Box(20) +1x Infinite Fly Wings Box (3 Days) +-------------------------- +Weight: 0 +# +103052# +Kafra Buff that increases EXP gain and item drop rate for 3 days +-------------------------- +The character using this item will receive the following effects for 3 days. +- Increases received EXP 50% +- Increases item drop rate 50% +-------------------------- +Weight: 0 +# +200000# +When used, gives 1 Fly Wing. +-------------------------- +Weight: 1 +# +200001# +A box containing 10 Inventory Expansion Voucher, which are used to expand your inventory. +-------------------------- +How to use65 +-------------------------- +Weight: 1 +# +200002# +A box containing 10 Inventory Expansion Voucher, which are used to expand your inventory. +-------------------------- +How to use65 +-------------------------- +Weight: 1 +# +200003# +(Limited) A box containing 30 HD Oridecon and 3 Blacksmiths Blessing. +-------------------------- +A delicate ore that guarantees the safety of valuable equipment. +- If you fail to refine a weapon with a refine level of +7 or higher, the weapon is not destroyed and the refine level is decreased by 1 instead. It can't refine past +10. - +(If the refine attempt fails, the refine level decreases by 1.) +-------------------------- +Weight: 1 +# +200004# +(Limited) A box containing 30 HD Elunium and 3 Blacksmiths Blessing. +-------------------------- +A delicate ore that guarantees the safety of valuable equipment. +- If you fail to refine a armor with a refine level of +7 or higher, the armor is not destroyed and the refine level is decreased by 1 instead. It can't refine past +10. - +(If the refine attempt fails, the refine level decreases by 1.) +-------------------------- +Weight: 1 +# +200005# +(Limited) A box containing 30 HD Bradium and 3 Blacksmiths Blessing. +-------------------------- +It has been compressed for a very long time, resulting in higher density and strength. It seems that it has become more difficult to refine weapons. +- If you fail to refine a weapon with a refine level of +10 or higher, the weapon is not destroyed. - +(If the refine attempt fails, the refine level decreases by 1.) +-------------------------- +Weight: 1 +# +200006# +(Limited) A box containing 30 HD Carnium and 3 Blacksmiths Blessing. +-------------------------- +It has been compressed for a very long time, resulting in higher density and strength. It seems that it has become more difficult to refine armors. +- If you fail to refine a armor with a refine level of +10 or higher, the armor is not destroyed. - +(If the refine attempt fails, the refine level decreases by 1.) +-------------------------- +Weight: 1 +# +200031# +A box containing 100 Silvervine Cat Fruit. +In addition, you can get 11 Kachua's Secret Keys. +-------------------------- +Weight: 1 +# +200032# +The upgraded package of the legendary three people!!! is written on the box. +-------------------------- +A box containing 50 Small Mana Potion, 100 Small Life Potion, 100 Medium Life Potion, 100 Mysterious Life Potion. +You can get 13 Kachua Secret Keys additionally +-------------------------- +Weight: 1 +# +200049# +A box containing 100 Silvervine Cat Fruit. +-------------------------- +Weight: 0 +# +200050# +A box containing 100 Silvervine Cat Fruit, 200 Small Life Potion, 200 Medium Life Potion and 200 Mysterious Life Potion. +-------------------------- +Weight: 0 +# +200051# +A box containing 100 Silvervine Cat Fruit, 100 Infinity Drink, 300 Brilliant Protection Scroll and 50 Small Mana Potion. +-------------------------- +Weight: 0 +# +200069# +A box containing 26 HD Elunium. Contains 6 Mental Potion additionally. +-------------------------- +HD Elunium - Increases the refine level of armors. +- If you fail to refine a armor with a refine level of +7 or higher, the armor is not destroyed and the refine level is decreased by 1 instead. It can't refine past +10. - +(If the refine attempt fails, the refine level decreases by 1.) +-------------------------- +Contains 11 Kachua's Secret Keys +[Kachua's Secret Box]http://ro.gnjoy.com/news/probability/list.asp?category=5,1024,768 +-------------------------- +Weight: 1 +# +200070# +A box containing 26 HD Oridecon. Contains 6 additional Mental Potions. +-------------------------- +HD Oridecon - Increases the refine level of weapons. +- When refining equipment with a refinement of +7 or higher, the equipment will not disappear even if it fails! However, cannot be refine past +10.- +(If the refinement fails, the refine level decreases by 1.) +-------------------------- +Comes with 11 Kachua's Secret Keys! +[Kachua Secret Box]http://ro.gnjoy.com/news/probability/list.asp?category=5,1024,768 +-------------------------- +Weight: 1 +# +200071# +A box containing 26 HD Carnium. Contains 6 additional Mental Potions. +-------------------------- +HD Carnium - Increases the refine level of armors. +- When refining equipment with a refinement of +10 or higher, the equipment will not disappear even if it fails! - +(If the refinement fails, the refine level decreases by 1.) +-------------------------- +Comes with 11 Kachua's Secret Keys! +[Kachua Secret Box]http://ro.gnjoy.com/news/probability/list.asp?category=5,1024,768 +-------------------------- +Weight: 1 +# +200072# +A box containing 26 HD Bradium. Contains 6 additional Mental Potions. +-------------------------- +HD Bradium - Increases the refine level of weapons. +- When refining equipment with a refinement of +10 or higher, the equipment will not disappear even if it fails! - +(If the refinement fails, the refine level decreases by 1.) +-------------------------- +Comes with 11 Kachua's Secret Keys! +[Kachua Secret Box]http://ro.gnjoy.com/news/probability/list.asp?category=5,1024,768 +-------------------------- +Weight: 1 +# +200074# +A box containing 40 Battle Manual. +Also contains 5 [Event] Advanced Combat Manual additionally. +-------------------------- +Comes with 15 Kachua's Secret Keys! +-------------------------- +Weight: 1 +# +200090# +A box containing 125 Small Mana Potion. +Additionally, you can recieve 11 Kachua's Secret Keys. +-------------------------- +Weight: 1 +# +200091# +A box containing 100 Silvervine Cat Fruit, 200 Small Life Potion, 200 Medium Life Potion and 200 Mysterious Life Potion. +Additionally, you can recieve 22 Kachua's Secret Keys. +-------------------------- +Weight: 1 +# +200092# +A box containing 200 Silvervine Cat Fruit, 100 Infinity Drink, 300 Brilliant Protection Scroll and 50 Small Mana Potion. +Additionally, you can recieve 44 Kachua's Secret Keys. +-------------------------- +Weight: 1 +# +200093# +(Limited) A box containing 30 HD Oridecon and 3 Hollgrehenn's Shadow Refine Hammer. +-------------------------- +A delicate ore that guarantees the safety of valuable equipment. +- If you fail to refine a weapon with a refine level of +7 or higher, the weapon is not destroyed and the refine level is decreased by 1 instead. It can't refine past +10. - +(If the refine attempt fails, the refine level decreases by 1.) +-------------------------- +Weight: 1 +# +200094# +(Limited) A box containing 30 HD Elunium and 3 Hollgrehenn's Shadow Refine Hammer. +-------------------------- +A delicate ore that guarantees the safety of valuable equipment. +- If you fail to refine a armor with a refine level of +7 or higher, the armor is not destroyed and the refine level is decreased by 1 instead. It can't refine past +10. - +(If the refine attempt fails, the refine level decreases by 1.) +-------------------------- +Weight: 1 +# +200108# +A box containing 200 Silvervine Cat Fruit. +You can also get 5 Costume Enchant Stone Box 23. +-------------------------- +Weight: 1 +# +200109# +A box containing 100 of Enriched Elunium and Enriched Oridecon. +-------------------------- +Enriched Elunium - Increases rate of refining an armor without breaking it. +Enriched Oridecon - Increases rate of refining an weapon without breaking it. +-------------------------- +20 Kachua's Secret Key and 10 Blacksmith Blessing are also included. +[Kachua's Secret Box]http://ro.gnjoy.com/news/probability/list.asp?category=5,1024,768 +-------------------------- +Weight: 1 +# +200110# +A box containing 52 of HD Elunium. Contains 12 Mental Potions additional. +-------------------------- +HD Elunium - Used as a material to strengthen armor currently from Refine Levels 7 through 9. +- When refining an equipment with a Refine Level of +7 or higher, even if it fails, the equipment is not destroyed! However, +10 or higher is not Refined. - +(If the refining fails, the Refine Level decreases by 1.) +-------------------------- +20 Kachua's Secret Key and 10 Blacksmith Blessing are also included. +[Kachua's Secret Box]http://ro.gnjoy.com/news/probability/list.asp?category=5,1024,768 +-------------------------- +Weight: 1 +# +200111# +A box containing 52 of HD Oridecon. Contains 12 Mental Potions additional. +-------------------------- +HD Oridecon - Used as a material to strengthen weapon currently from Refine Levels 7 through 9. +- When refining an equipment with a Refine Level of +7 or higher, even if it fails, the equipment is not destroyed! However, +10 or higher is not Refined. - +(If the refining fails, the Refine Level decreases by 1.) +-------------------------- +20 Kachua's Secret Key and 10 Blacksmith Blessing are also included. +[Kachua's Secret Box]http://ro.gnjoy.com/news/probability/list.asp?category=5,1024,768 +-------------------------- +Weight: 1 +# +200112# +A box containing 52 of HD Carnium. Contains 12 Mental Potions additional. +-------------------------- +HD Cranium - Increases rate of refining armors at +10 and higher. +- When Refine fails, equipment will not disappear or destroyed! - +(If the refining fails, the Refine Level decreases by 1.) +-------------------------- +20 Kachua's Secret Key and 10 Blacksmith Blessing are also included. +[Kachua's Secret Box]http://ro.gnjoy.com/news/probability/list.asp?category=5,1024,768 +-------------------------- +Weight: 1 +# +200113# +A box containing 52 of HD Bradium. Contains 12 Mental Potions additional. +-------------------------- +HD Bradium - Increases rate of refining weapons at +10 and higher. +- When Refine fails, equipment will not disappear or destroyed! - +(If the refining fails, the Refine Level decreases by 1.) +-------------------------- +20 Kachua's Secret Key and 10 Blacksmith Blessing are also included. +[Kachua's Secret Box]http://ro.gnjoy.com/news/probability/list.asp?category=5,1024,768 +-------------------------- +Weight: 1 +# +200123# +A package containing 200 Mysterious Life Potion, 200 Small Life Potion, and 200 Medium Life Potion. +In addition, 1 Thanos Upgrade Box is included. +-------------------------- +[Thanos Upgrade Box] +A special modification box secretly developed by Team Richiet and Team Atnard. +You can upgrade Thanos Weapons to AD equipment and Thanos Helmets to LT equipment, regardless of refinement or materials. +-------------------------- +[Target Items] +Thanos Greatsword +Thanos Katar +Thanos Axe +Thanos Two-Handed Staff +Thanos Bow +Thanos Sword +Thanos Dagger +Thanos Spear +Thanos Staff +Thanos Knuckle +Thanos Violin +Thanos Whip +Thanos Hammer +Thanos' Warrior Helmet +Thanos' Shooter Helmet +Thanos' Magic Helmet +Thanos' Fighter Helmet +-------------------------- +Weight: 1 +# +200124# +A package that includes 175 Small Mana Potion, 300 Brilliant Protection Scroll, 200 Mysterious Life Potion, 200 Small Life Potion, 200 Medium Life Potion and 100 Silvervine Cat Fruit. +In addition, 1 Hero's Weapon Modification Box I is included. +-------------------------- +[Hero's Weapon Modification Box I] +A special modification box secretly developed by Team Richiet. +You can immediately upgrade an unlocked Hero's Weapon to an LT weapon, regardless of refinement or material. +-------------------------- +[Target Items] +Patent Magic Sword +Patent Fatalist +Patent Saint Mace +Patent Exorcist's Bible +Patent Aquatic Spear +Patent Light Blade +-------------------------- +Weight: 1 +# +200125# +A package that includes 175 Small Mana Potion, 300 Brilliant Protection Scroll, 200 Mysterious Life Potion, 200 Small Life Potion, 200 Medium Life Potion and 100 Silvervine Cat Fruit. +In addition, 1 Hero's Weapon Modification Box II is included. +-------------------------- +[Hero's Weapon Modification Box II] +A special modification box secretly developed by Team Richiet. +You can immediately upgrade an unlocked Hero's Weapon to an LT weapon, regardless of refinement or material. +-------------------------- +[Target Items] +Patent Blue Crystal Staff +Patent Iron Staff +Patent Chilling Cane +Patent Shadow Staff +Patent Ray Knuckle +Patent Iron Nail +-------------------------- +Weight: 1 +# +200126# +A package that includes 50 Small Mana Potion, 300 Brilliant Protection Scroll, 200 Mysterious Life Potion, 200 Small Life Potion, 200 Medium Life Potion and 100 Silvervine Cat Fruit. +In addition, 1 Modified Hero's Weapon Refine Hammer I is included. +-------------------------- +[Modified Hero's Weapon Refine Hammer I] +A refine hammer that increases the refinement level of a specific Hero's Weapon by +1. +It can only be used on Hero's Weapon-LT with refine level between +9 and +11. +Each time it is used, 14 Blacksmith's Blessings are consumed as materials. +-------------------------- +[Target Items] +Magic Sword-LT +Fatalist-LT +Saint Mace-LT +Exorcist's Bible-LT +Aquatic Spear-LT +Light Blade-LT +-------------------------- +Weight: 1 +# +200127# +A package that includes 50 Small Mana Potion, 300 Brilliant Protection Scroll, 200 Mysterious Life Potion, 200 Small Life Potion, 200 Medium Life Potion and 100 Silvervine Cat Fruit. +In addition, 1 Modified Hero's Weapon Refine Hammer II is included. +-------------------------- +[Modified Hero's Weapon Refine Hammer II] +A refine hammer that increases the refinement level of a specific Hero's Weapon by +1. +It can only be used on Hero's Weapon-LT with refine level between +9 and +11. +Each time it is used, 14 Blacksmith's Blessings are consumed as materials. +-------------------------- +[Target Items] +Blue Crystal Staff-LT +Iron Staff-LT +Chilling Cane-LT +Shadow Staff-LT +Ray Knuckle-LT +Iron Nail-LT +-------------------------- +Weight: 1 +# +200128# +A package that includes 175 Small Mana Potion, 300 Brilliant Protection Scroll, 200 Mysterious Life Potion, 200 Small Life Potion, 200 Medium Life Potion and 100 Silvervine Cat Fruit. +In addition, 1 Hero's Weapon Modification Box III is included. +-------------------------- +[Hero's Weapon Modification Box III] +A special modification box secretly developed by Team Richiet. +You can immediately upgrade an unlocked Hero's Weapon to an LT weapon, regardless of refinement or material. +-------------------------- +[Target Items] +Patent Red Lotus Sword +Patent Slate Sword +Patent Royal Bow +Patent Scarlet Dragon Leather Bow +-------------------------- +Weight: 1 +# +200129# +A package that includes 50 Small Mana Potion, 300 Brilliant Protection Scroll, 200 Mysterious Life Potion, 200 Small Life Potion, 200 Medium Life Potion and 100 Silvervine Cat Fruit. +In addition, 1 Modified Hero's Weapon Refine Hammer III is included. +-------------------------- +[Modified Hero's Weapon Refine Hammer III] +A refine hammer that increases the refinement level of a specific Hero's Weapon by +1. +It can only be used on Hero's Weapon-LT with refine level between +9 and +11. +Each time it is used, 14 Blacksmith's Blessings are consumed as materials. +-------------------------- +[Target Items] +Red Lotus Sword-LT +Slate Sword-LT +Royal Bow-LT +Scarlet Dragon Leather Bow-LT +-------------------------- +Weight: 1 +# +200136# +A box containing a Kafra Buff that increases experience and item drop rates for 7 days. +-------------------------- +The character using this item will receive the following effects for 7 days. +- Increases experience gained by 50% +- Increases item drop rate by 50% +-------------------------- +Weight: 0 +# +200137# +A package that includes 50 Small Mana Potion, 300 Brilliant Protection Scroll, 200 Mysterious Life Potion, 200 Small Life Potion and 200 Medium Life Potion. +In addition, 1 Modified Hero's Weapon Refine Hammer IV is included. +-------------------------- +[Modified Hero's Weapon Refine Hammer IV] +A forge hammer that increases the refinement level of a specific Hero's Weapon modified by Team Richiet by +1. +It can only be used for Hero's Weapon-LT with refine level between +9 and +11. +Each time it is used, 14 Blacksmith's Blessings are consumed as materials. +-------------------------- +[Target Items] +Trumpet Shell-LT +Barbed Wire Whip-LT +Narcissus Bow-LT +Avenger-LT +Meteor Striker-LT +-------------------------- +Weight: 1 +# +200138# +A package that includes 175 Small Mana Potion, 300 Brilliant Protection Scroll, 200 Mysterious Life Potion, 200 Small Life Potion, 200 Medium Life Potion and 100 Silvervine Cat Fruit. +In addition, 1 Hero's Weapon Modification Box IV is included. +-------------------------- +[Hero's Weapon Modification Box IV] +A special modification box secretly developed by Team Richiet. +You can immediately upgrade an unlocked Hero's Weapon to an LT weapon, regardless of refinement or material. +-------------------------- +[Target Items] +Patent Trumpet Shell +Patent Barbed Wire Whip +Patent Narcissus Bow +Patent Avenger +Patent Meteor Striker +-------------------------- +Weight: 1 +# +200140# +A box containing 200 Silvervine Cat Fruit. +In addition, you can get 5 Costume Enchant Stone Box 24. +-------------------------- +Weight: 1 +# +200141# +A package that includes 175 Small Mana Potion, 300 Brilliant Protection Scroll, 200 Mysterious Life Potion, 200 Small Life Potion, 200 Medium Life Potion and 100 Silvervine Cat Fruit. +In addition, 1 Hero's Weapon Modification Box V is included. +-------------------------- +[Hero's Weapon Modification Box V] +A special modification box secretly developed by Team Richiet. +You can immediately upgrade an unlocked Hero's Weapon to an LT weapon, regardless of refinement or material. +-------------------------- +[Target Items] +Patent Oriental Sword +Patent Dragonic Slayer +Patent Katar of Shiver +Patent Blade Katar +-------------------------- +Weight: 1 +# +200144# +A box containing 100 Silvervine Cat Fruits. +In addition, 12 Event Stone Coin and 5 Costume Enchant Stone Box 24 are included. +-------------------------- +Weight: 0 +# +200145# +A box containing 200 Silvervine Cat Fruits. +In addition, 25 Event Stone Coin and 10 Costume Enchant Stone Box 24 are included. +-------------------------- +Weight: 0 +# +200146# +A box containing 400 Silvervine Cat Fruits. +In addition, 50 Event Stone Coin, 10 Costume Enchant Stone Box 23 and 10 Costume Enchant Stone Box 24 are included. +-------------------------- +Weight: 0 +# +200155# +A box containing 100 Silvervine Cat Fruit. +In addition, you can get 20 [Kachua] Mileage Coupon. +-------------------------- +Weight: 1 +# +200163# +A box containing 200 Silvervine Cat Fruit. +In addition, you can get 5 Costume Enchant Stone Box 25. +-------------------------- +Weight: 1 +# +200168# +A package item released to commemorate the promotion. +Various items necessary to enjoy the game are included. +-------------------------- +[Obtainable Items] +4x Kafra Buff(7 Days) +1x Premium Service Box +106x Silvervine Cat Fruit +30x World Tour Ticket +20x Kachua' Secret Key +-------------------------- +Weight: 0 +# +200169# +A package item released to commemorate the promotion. +Various items necessary to enjoy the game are included. +-------------------------- +[Obtainable Items] +1x Boarding Halter Box +10x Gym Pass +28x Silvervine Cat Fruit +30x World Tour Ticket +20x Kachua' Secret Key +-------------------------- +Weight: 0 +# +200170# +A box containing 100 Silvervine Cat Fruits. +In addition, 12 Event Stone Coin and 3 Costume Enchant Stone Box 25 are included. +-------------------------- +Weight: 0 +# +200171# +A box containing 200 Silvervine Cat Fruits. +In addition, 25 Event Stone Coin and 5 Costume Enchant Stone Box 25 are included. +-------------------------- +Weight: 0 +# +200172# +A box containing 400 Silvervine Cat Fruits. +In addition, 50 Event Stone Coin and 10 Costume Enchant Stone Box 25 are included. +-------------------------- +Weight: 0 +# +200174# +A package that includes 50 Small Mana Potion, 300 Brilliant Protection Scroll, 200 Mysterious Life Potion, 200 Small Life Potion and 200 Medium Life Potion. +In addition, 1 Modified Hero's Weapon Refine Hammer VI is included. +-------------------------- +[Modified Hero's Weapon Refine Hammer VI] +A refine hammer that increases the refinement level of a specific Hero's Weapon modified by Team Richiet by +1. +It can only be used on Hero's Weapon-LT with refine level between +9 and +11. +Each time it is used, 14 Blacksmith's Blessings are consumed as materials. +-------------------------- +[Target Items] +Clarity Huuma Shuriken-LT +Kiri no Tsuyu-LT +Crimson Rose-LT +Master Soul Rifle-LT +Demon Slayer Shot-LT +The Black-LT +Golden Lord Launcher-LT +Meowmeow Foxtail-LT +One Sky One Sun-LT +Spirit Pendulum-LT +-------------------------- +Weight: 1 +# +200175# +A package that includes 175 Small Mana Potion, 300 Brilliant Protection Scroll, 200 Mysterious Life Potion, 200 Small Life Potion, 200 Medium Life Potion and 100 Silvervine Cat Fruit. +In addition, 1 Hero's Weapon Modification Box VI is included. +-------------------------- +[Hero's Weapon Modification Box VI] +A special modification box secretly developed by Team Richiet. +You can immediately upgrade an unlocked Hero's Weapon to an LT weapon, regardless of refinement or material. +-------------------------- +[Target Items] +Patent Clarity Huuma Shuriken +Patent Kiri no Tsuyu +Patent Crimson Rose +Patent Master Soul Rifle +Patent Demon Slayer Shot +Patent The Black +Patent Golden Lord Launcher +Patent Meowmeow Foxtail +Patent One Sky One Sun +Patent Spirit Pendulum +-------------------------- +Weight: 1 +# +200185# +A box containing 100 Silvervine Cat Fruit. +In addition, you can get 5 Costume Enchant Stone Box 26 and 3 [Event] Bubble Gum. +-------------------------- +Weight: 1 +# +200186# +A box containing 200 Silvervine Cat Fruit. +In addition, you can get 5 Costume Enchant Stone Box 26 and 2 [Event] Advanced Combat Manual. +-------------------------- +Weight: 1 +# +200187# +A box containing 400 Silvervine Cat Fruit. +In addition, you can get 10 Costume Enchant Stone Box 26, 5 [Event] Bubble Gum and 5 [Event] Advanced Combat Manual. +-------------------------- +Weight: 1 +# +200191# +A box containing 100 Silvervine Cat Fruits. +In addition, 12 Event Stone Coin and 3 Costume Enchant Stone Box 26 are included. +-------------------------- +Weight: 0 +# +200193# +A box containing 200 Silvervine Cat Fruits. +In addition, 25 Event Stone Coin and 5 Costume Enchant Stone Box 26 are included. +-------------------------- +Weight: 0 +# +200194# +A box containing 400 Silvervine Cat Fruits. +In addition, 50 Event Stone Coin and 10 Costume Enchant Stone Box 26 are included. +-------------------------- +Weight: 0 +# +200195# +A package with consumables that is sold for a limited time in a special configuration. +-------------------------- +Contains 200 Small Life Potion, 200 Medium Life Potion and 200 Mysterious Life Potion. +2 Blacksmith's Blessing, 5 Kachua's Secret Key and 10 [Kachua] Mileage Coupon are included. +-------------------------- +[Kachua's Secret Box]http://ro.gnjoy.com/news/probability/list.asp?category=5,1024,768 +-------------------------- +Weight: 0 +# +200196# +A package with consumables that is sold for a limited time in a special configuration. +-------------------------- +Contains 200 Small Life Potion, 200 Medium Life Potion, 200 Mysterious Life Potion, 33 Infinity Drink, 33 Almighty and 34 Limited Power Booster. +4 Blacksmith's Blessing, 10 Kachua's Secret Key and 20 [Kachua] Mileage Coupon are included. +-------------------------- +[Kachua's Secret Box]http://ro.gnjoy.com/news/probability/list.asp?category=5,1024,768 +-------------------------- +Weight: 0 +# +200197# +A package with consumables that is sold for a limited time in a special configuration. +-------------------------- +Contains 200 Small Life Potion, 200 Medium Life Potion, 200 Mysterious Life Potion, 33 Infinity Drink, 33 Almighty, 34 Limited Power Booster, 50 Small Mana Potion and 300 Brilliant Defense Scroll. +6 Blacksmith's Blessing, 15 Kachua's Secret Key and 30 [Kachua] Mileage Coupon are included. +-------------------------- +[Kachua's Secret Box]http://ro.gnjoy.com/news/probability/list.asp?category=5,1024,768 +-------------------------- +Weight: 0 +# +200198# +A package with buff items that is sold for a limited time in a special configuration. +-------------------------- +Contains 1 Premium Service Box, Kafra Buff(7 Days) and 6 Silvervine Cat Fruit. +10 Kachua's Secret Key are included. +-------------------------- +[Kachua's Secret Box]http://ro.gnjoy.com/news/probability/list.asp?category=5,1024,768 +-------------------------- +Weight: 0 +# +200199# +A package with battle manual items that is sold for a limited time in a special configuration. +-------------------------- +Contains 12 Battle Manual and 8 Mental Potion. +10 Kachua's Secret Key are included. +-------------------------- +[Kachua's Secret Box]http://ro.gnjoy.com/news/probability/list.asp?category=5,1024,768 +-------------------------- +Weight: 0 +# +300000# +AGI +1 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300001# +Increases Physical Damage against enemies of Poison elemental by 25%. +-------------------------- +When equipped with Anacondaq Card: +Increases Physical Damage against enemies of Poison elemental by additional 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300002# +MaxHP +10% +Decreases damage taken from Ranged Physical Damage by 5%. +-------------------------- +When equipped with Noxious Card: +MaxHP +5% +Decreases damage taken from Ranged Physical Damage by additional 10%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300003# +ATK +20 +-------------------------- +For each Refine Level: +ATK +1 +-------------------------- +When equipped with Porcellio Card: +ATK +10 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300004# +DEF +30 +-------------------------- +For each Refine Level: +DEF +3 +-------------------------- +When equipped with Mineral Card: +DEF +20 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +300005# +MaxHP +10% +Increases damage of Earth Grave by 10%. +-------------------------- +When equipped with Pitman Card: +Increases damage of Earth Grave by additional 10%. + +For each Refine Level: +Increases damage of Earth Grave by additional 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300006# +Physical attacks have a chance to auto-cast Psychic Wave Level 1. +-------------------------- +When equipped with Ungoliant Card: +Increases Magical Damage with Neutral element by 30%. +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +300007# +Increases Physical Damage against enemies of Fire and Water elemental by 40%. +Increases Physical Damage against enemies of Formless and Plant race by 40%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300008# +Increases Magical Damage against monsters of Demon race by 10%. +-------------------------- +When equipped with Skeggiold Card: +For each 2 Refine Levels: +Increases Magical Damage against monsters of Demon race by additional 3%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300009# +When equipped with Two-Handed Staff or One-Handed Staff class weapon: +Increases Magical Damage with Ghost element by 10%. +-------------------------- +Refine Level +10: +Increases Magical Damage with Ghost element by 10%. +-------------------------- +Refine Level +14: +Increases Magical Damage with Ghost element by 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300010# +When equipped with One-Handed Staff or Two-Handed Staff class weapon: +Increases Magical Damage with Wind element by 10%. +-------------------------- +Refine Level +10: +Increases Magical Damage with Wind element by additional 10%. +-------------------------- +Refine Level +14: +Increases Magical Damage with Wind element by additional 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300011# +When equipped with One-Handed Staff or Two-Handed Staff class weapon: +Increases Magical Damage with Holy element by 10%. +-------------------------- +Refine Level +10: +Increases Magical Damage with Holy element by additional 10%. +-------------------------- +Refine Level +14: +Increases Magical Damage with Holy element by additional 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300012# +Increases Healing skills effectiveness by 5%. +-------------------------- +Refine Level +7: +Increases Healing skills effectiveness by additional 3%. +-------------------------- +Refine Level +10: +Increases Healing skills effectiveness by additional 2%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300013# +Indestructible in battle +-------------------------- +ATK +30% +MaxHP -15% +-------------------------- +When equipped with Randgris Card: +ATK +10% +MaxHP +5% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300014# +Indestructible in battle +-------------------------- +MaxHP +40% +ATK -15% +-------------------------- +Drains 1000 HP every 4 seconds. +-------------------------- +When unequipped drains 10000 HP. +-------------------------- +When equipped with Randgris Card: +MaxHP +10% +ATK +5% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300015# +ATK +3% +MaxHP -5% +MaxSP -5% +-------------------------- +For each 4 Refine Levels: +ATK +1% +-------------------------- +When equipped with Gold Acidus Card: +For each 4 Refine Levels: +MaxHP +4%, MaxSP +4% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300016# +FLEE +30 +Critical +5 +-------------------------- +When equipped with Ancient Mimic Card: +For each Refine Levels: +Increases Critical Damage by 2%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +300017# +Increases Physical Damage against enemies of Shadow elemental by 25%. +-------------------------- +When equipped with Santa Poring Card: +Increases Physical Damage against enemies of Shadow elemental by additional 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300018# +Increases Physical Damage against enemies of Holy elemental by 25%. +-------------------------- +When equipped with Orc Skeleton Card: +Increases Physical Damage against enemies of Holy elemental by additional 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300019# +Increases Physical Damage against enemies of Dragon race by 5%. +-------------------------- +When equipped with Bone Acidus Card: +Increases Physical Damage against enemies of Dragon race by 5%. +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +300020# +Increases Physical Damage against enemies of Brute race by 5%. +-------------------------- +When equipped with Bone Ferus Card: +Increases Physical Damage against enemies of Brute race by 5%. +-------------------------- +Type: Card +Compound on: Accessory(Right) +Weight: 1 +# +300021# +Increases Physical Damage against enemies of Ghost and Undead elemental by 40%. +Increases Physical Damage against enemies of Dragon and Undead race by 40%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300076# +VIT +3 +MaxHP +10% +-------------------------- +Increases damage of Banishing Point and Cannon Spear by 10%. +-------------------------- +When equipped with Verporta Card and Greater Research Assistant Bot Card: +Increases damage of Banishing Point and Cannon Spear by 20%. + +For each 2 Refine Levels of equipped Shoes: +Increases damage of Banishing Point by additional 5%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Cannon Spear by additional 5%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300077# +DEX +2 +VIT +1 +MaxHP +10% +-------------------------- +Increases damage of Axe Boomerang and Vulcan Arm by 10%. +-------------------------- +When equipped with Kick and Kick Card and Greater Papila Card: +Increases damage of Axe Boomerang and Vulcan Arm by 20%. + +For each 2 Refine Levels of equipped Shoes: +Increases damage of Axe Boomerang by additional 5%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Vulcan Arm by additional 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300078# +Increases damage of Fire Dance by 60%. +Increases SP Consumption of Fire Dance by 25%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300079# +Increases Magical Damage against monsters of Formless and Fish race by 30%. +Increases Magical Damage against Holy and Water elemental by 30%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300080# +Increases Magical Damage against monsters of Formless and Fish race by 50%. +Increases Magical Damage against Holy and Water elemental by 50%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300081# +INT +2 +MaxHP +10% +MaxSP +10% +-------------------------- +Increases damage of Fire Ball by 25%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300082# +When compounded on a Spear or Two-Handed Spear class weapon: +Increases Ranged Physical Damage by 20%. +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by additional 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300083# +AGI +2 +MaxHP +10% +MaxSP +10% +-------------------------- +Increases damage of Freezing Spear and Throw Kunai by 15%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300084# +Decreases damage taken from Holy elemental attacks by 30%. +-------------------------- +FLEE +5 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +300085# +STR +2 +MaxHP +10% +MaxSP +10% +-------------------------- +For each Level of Kihop: +ATK +7 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300086# +When compounded on a Two-Handed Sword class weapon: +Increases Melee Physical Damage by 10%. +-------------------------- +For each Refine Level: +Increases Melee Physical Damage by additional 1%. +-------------------------- +Refine Level +11: +Indestructible in battle +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300087# +LUK +2 +MaxHP +10% +MaxSP +10% +-------------------------- +Increases damage of Silvervine Stem Spear and Scar of Tarou by 10%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300088# +When compounded on a Book class weapon: +HIT +20 +ATK +5% +-------------------------- +For each Refine Level: +Increases Melee Physical Damage by 1%. +-------------------------- +Refine Level +10: +Increases damage of Full Moon Kick and Falling Star by 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300089# +STR +2 +MaxHP +10% +MaxSP +10% +-------------------------- +Increases damage of Magnum Break by 25%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300090# +Increases Magical Damage with Earth element by 10%. +Increases SP Consumption by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Earth element by additional 10%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300091# +DEX +2 +MaxHP +10% +MaxSP +10% +-------------------------- +Increases damage of Desperado, Full Blast and Spread Attack by 10%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300092# +LUK +2 +MaxHP +10% +MaxSP +10% +-------------------------- +Increases damage of Cart Revolution by 50%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300093# +INT +2 +MaxHP +10% +MaxSP +10% +-------------------------- +Increases damage of Holy Light by 50%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300094# +When compounded on a Two-Handed Sword class weapon: +Increases Critical Damage by 20%. +-------------------------- +For each 2 Refine Levels: +Increases Critical Damage by additional 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300095# +DEX +2 +MaxHP +10% +MaxSP +10% +-------------------------- +Increases damage of Arrow Shower by 25%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300096# +When compounded on a Musical Instrument or Whip class weapon: +MATK +20 +-------------------------- +Refine Level +10: +MATK +20 +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +13: +MATK +20 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300097# +AGI +2 +MaxHP +10% +MaxSP +10% +-------------------------- +Increases damage of Envenom by 25%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300098# +MATK +5 +-------------------------- +Increases damage of Wind Blade, Freezing Spear and Flaming Petals by 10%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +300099# +Decreases damage taken from Normal class by 20%. +Increases recieved Healing amount by 15%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +300100# +Decreases damage taken from Boss class by 20%. +Increases recieved Healing amount by 30%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +300101# +STR +3 +MaxHP +10% +-------------------------- +Increases damage of Dragon Breath and Dragon Breath - Water by 10%. +-------------------------- +When equipped with Verporta Card and Greater Papila Ruba Card: +Increases damage of Dragon Breath and Dragon Breath - Water by additional 20%. + +For each 2 Refine Levels of equipped Shoes: +Increases damage of Dragon Breath by additional 5%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Dragon Breath - Water by additional 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300102# +INT +3 +MaxHP +10% +-------------------------- +Increases damage of Cart Cannon and Spore Explosion by 10%. +-------------------------- +When equipped with Enhanced Archer Skeleton Card and Greater Papila Card: +Increases damage of Cart Cannon and Spore Explosion by additional 20%. + +For each 2 Refine Levels of equipped Shoes: +Increases damage of Cart Cannon by additional 5%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Spore Explosion by additional 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300103# +MATK +15 +-------------------------- +Refine Level +9: +Increases Magical Damage against monsters of Fish and Demi-Human race by 10%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 3%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300104# +INT +2 +VIT +1 +MaxHP +10% +-------------------------- +Increases damage of Psychic Wave and Diamond Dust by 10%. +-------------------------- +When equipped with Blue Pitaya Card and Research Assistant Bot Card: +Increases damage of Psychic Wave and Diamond Dust by additional 20%. + +For each 2 Refine Levels of equipped Shoes: +Increases damage of Psychic Wave by additional 5%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Diamond Dust by additional 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300105# +INT +3 +MaxHP +5% +MaxSP +5% +-------------------------- +Increases damage of Crimson Rock and Comet by 10%. +-------------------------- +When equipped with Blue Pitaya Card and Research Assistant Bot Card: +Increases damage of Crimson Rock and Comet by additional 20%. + +For each 2 Refine Levels of equipped Shoes: +Increases damage of Crimson Rock by additional 5%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Comet by additional 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300106# +When compounded on a Staff or Two-Handed Staff class weapon: +Increases Magical Damage with Fire element by 10%. +-------------------------- +Refine Level +10: +Increases Magical Damage with Fire element by additional 10%. +-------------------------- +Refine Level +14: +Increases Magical Damage with Fire element by additional 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300107# +Increases HP Recovery Amount of Apple and Banana by 500%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300108# +AGI +2 +DEX +1 +MaxHP +10% +-------------------------- +Increases damage of Fatal Menace and Triangle Shot by 10%. +-------------------------- +When equipped with Scimitar Buffalo Bandit Card and Aries Card: +Increases damage of Fatal Menace and Triangle Shot by additional 20%. + +For each 2 Refine Levels of equipped Shoes: +Increases damage of Fatal Menace by additional 5%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Triangle Shot by additional 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300109# +DEX +2 +STR +1 +MaxHP +10% +-------------------------- +Increases damage of Rolling Cutter and Counter Slash by 10%. +-------------------------- +When equipped with Mutant Dolor Card and Aries Card: +Increases damage of Rolling Cutter and Counter Slash by additional 20%. + +For each 3 Refine Levels of equipped Shoes: +Increases damage of Rolling Cutter and Counter Slash by additional 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300110# +AGI +2 +INT +1 +MaxHP +10% +-------------------------- +Increases damage of Kunai Explosion and Cross Slash by 10%. +-------------------------- +When equipped with Soheon Card and Dried Rafflesia Card: +Increases damage of Kunai Explosion and Cross Slash by additional 20%. + +For each 3 Refine Levels of equipped Shoes: +Increases damage of Kunai Explosion and Cross Slash by additional 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300111# +AGI +2 +INT +1 +MaxHP +10% +-------------------------- +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 10%. +-------------------------- +When equipped with E-EA1L Card and Dried Rafflesia Card: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 20%. + +For each 3 Refine Levels of equipped Shoes: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300112# +INT +2 +VIT +1 +MaxHP +10% +-------------------------- +Increases damage of Eswhoo and Curse Explosion by 10%. +-------------------------- +When equipped with Magic Poison Plaga Card and Special Alnoldi Card: +Increases damage of Eswhoo and Curse Explosion by additional 20%. + +For each 2 Refine Levels of equipped Shoes: +Increases damage of Curse Explosion by additional 5%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Eswhoo by additional 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300113# +INT +2 +VIT +1 +MaxHP +10% +-------------------------- +Increases damage of Reverberation and Severe Rainstorm by 10%. +-------------------------- +When equipped with Greater Papila Cae Card and Papila Cae Card: +Increases damage of Reverberation and Severe Rainstorm by additional 20%. + +For each 2 Refine Levels of equipped Shoes: +Increases damage of Reverberation by additional 5%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Severe Rainstorm by additional 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300114# +When compounded on a Staff or Two-Handed Staff class weapon: +Increases Magical Damage with Neutral element by 10%. +-------------------------- +Refine Level +10: +Increases Magical Damage with Neutral element by additional 10%. +-------------------------- +Refine Level +14: +Increases Magical Damage with Neutral element by additional 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300115# +INT +2 +DEX +1 +MaxHP +10% +-------------------------- +Increases damage of Adoramus and Judex by 10%. +-------------------------- +When equipped with Sanare Card and Papila Ruba Card: +Increases damage of Adoramus and Judex by additional 20%. + +For each 2 Refine Levels of equipped Shoes: +Increases damage of Adoramus by additional 5%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Judex by additional 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300116# +STR +2 +INT +1 +MaxHP +10% +-------------------------- +Increases damage of Rampage Blaster and Tiger Cannon by 10%. +-------------------------- +When equipped with Variant Plaga Card and Papila Ruba Card: +Increases damage of Rampage Blaster and Tiger Cannon by additional 20%. + +For each 2 Refine Levels of equipped Shoes: +Increases damage of Tiger Cannon by additional 5%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Rampage Blaster by additional 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300117# +DEX +2 +AGI +1 +MaxHP +10% +-------------------------- +Increases damage of Arrow Storm and Bomb Cluster by 10%. +-------------------------- +When equipped with Enhanced Archer Skeleton Card and Papila Cae Card: +Increases damage of Arrow Storm and Cluster Bomb by additional 20%. + +For each 2 Refine Levels of equipped Shoes: +Increases damage of Cluster Bomb by additional 5%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Arrow Storm by additional 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300118# +STR +2 +VIT +1 +MaxHP +10% +-------------------------- +Increases damage of Full Moon Kick and Falling Star by 10%. +-------------------------- +When equipped with Greater Broken Gardener Card and Special Alnoldi Card: +Increases damage of Full Moon Kick and Falling Star by additional 20%. + +For each 2 Refine Levels of equipped Shoes: +Increases damage of Falling Star by additional 5%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Full Moon Kick by additional 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300119# +DEX +2 +AGI +1 +MaxHP +10% +-------------------------- +Increases damage of Round Trip and Hammer of God by 10%. +-------------------------- +When equipped with Greater Bellare Card and Papila Card: +Increases damage of Round Trip and Hammer of God by additional 20%. + +For each 2 Refine Levels of equipped Shoes: +Increases damage of Hammer of God by additional 5%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Round Trip by additional 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300120# +MATK +2% +-------------------------- +When equipped with Piranha Card: +MATK +10 +Increases Magical Damage against Water elemental by 15%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300121# +Increases Magical Damage with Holy and Water element by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage with Holy and Water element by additional 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300122# +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +For each Refine Level: +Increases Magical Damage with Holy element by 3%. +-------------------------- +When equipped with Boiling Marc Card: +Decreases damage taken from Neutral elemental attacks by additional 5%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +300123# +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +For each Refine Level: +Increases Magical Damage with Neutral element by 3%. +-------------------------- +When equipped with Boiling Marc Card: +Decreases damage taken from Neutral elemental attacks by additional 5%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +300124# +When compounded on a Staff and Two-Handed Staff class weapon: +Increases Magical Damage with Water element by 10%. +-------------------------- +Refine Level +10: +Increases Magical Damage with Water element by additional 10%. +-------------------------- +Refine Level +14: +Increases Magical Damage with Water element by additional 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300125# +LUK +2 +INT +1 +MaxHP +10% +-------------------------- +Increases damage of Picky Peck and Catnip Meteor by 10%. +-------------------------- +When equipped with Magic Poison Plaga Card and Broken Gardener Beta Card: +Increases damage of Picky Peck and Catnip Meteor by additional 20%. + +For each 2 Refine Levels of equipped Shoes: +Increases damage of Catnip Meteor by additional 5%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Picky Peck by additional 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300127# +\ + -Wolf Roegenburg +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300128# +Increases Damage against monsters of Insect race by 15%. +-------------------------- +When equipped with Poe Richard Card: +ATK +5% +MATK +5% +Increases Damage against monsters of Medium size by 5%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300129# +\ + -Poe Richard +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300130# +Increases Damage against monsters of Plant race by 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300131# +Increases damage of Sonic Wave by 5%. +-------------------------- +For each Refine Level: +Increases damage of Sonic Wave by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Sonic Wave by additional 5%. +-------------------------- +When equipped with Arcana: +LUK +3 +Ignores physical defense of all enemies by 25%. +Increases damage of Sonic Wave by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +300132# +Increases damage of Hell Inferno by 5%. +-------------------------- +For each Refine Level: +Increases damage of Hell Inferno by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Hell Inferno by additional 5%. +-------------------------- +When equipped with Arcana: +DEX +3 +Recovers 200 HP when defeating monsters with magical attacks. +Increases damage of Hell Inferno by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +300133# +Increases damage of Aimed Bolt by 5%. +-------------------------- +For each Refine Level: +Increases damage of Aimed Bolt by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Aimed Bolt by additional 5%. +-------------------------- +When equipped with Arcana: +INT +3 +Decreases After Skill Delay by 5%. +Increases damage of Aimed Bolt by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +300134# +Increases damage of Power Swing by 5%. +-------------------------- +For each Refine Level: +Increases damage of Power Swing by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Power Swing by additional 5%. +-------------------------- +When equipped with Arcana: +VIT +3 +Increases Physical Damage against enemies of Boss class by 5%. +Increases damage of Power Swing by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +300135# +Increases damage of Counter Slash by 5%. +-------------------------- +For each Refine Level: +Increases damage of Counter Slash by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Counter Slash by additional 5%. +-------------------------- +When equipped with Arcana: +VIT +3 +Recovers 5 SP when recieving physical damage. +Increases damage of Counter Slash by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +300136# +Increases damage of Great Echo by 5%. +-------------------------- +For each Refine Level: +Increases damage of Great Echo by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Great Echo by additional 5%. +-------------------------- +When equipped with Arcana: +INT +3 +Ignores magical defense of all race by 25%. +Increases damage of Great Echo by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +300137# +MATK +10% +-------------------------- +Increases Fire, Water, Magical Damage with Wind and Earth element by 50%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +300138# +Decreases Fixed Casting Time by 1 second. +-------------------------- +For each Refine Level: +ATK +1%, MATK +1% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300140# +Increases Magical Damage with Wind element by 3%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Wind element by additional 2%. +-------------------------- +Refine Level +11: +Increases Magical Damage with Wind element by additional 5%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300141# +MATK +30 +-------------------------- +When equipped with Boiling Piranha Card: +Increases Magical Damage against Water elemental by 15%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300142# +Increases Physical Damage against enemies of Water elemental and Fish race by 5%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Water elemental and Fish race by additional 5%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Water elemental and Fish race by additional 5%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300143# +Decreases Physical and Magical Damage taken from Earth elemental by 15%. +Decreases Physical and Magical Damage taken from Insect race by 15%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +300144# +For each 15 base STR: +ATK +4 +-------------------------- +When equipped with Deep Sea King Dramoh Card, +Increases Critical Damage by 15%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300145# +Increases Magical Damage with Fire and Shadow element by 100%. +Increases damage taken from all elemental attacks by 30%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +300146# +Increases Critical against Fish race by 30%. +-------------------------- +When equipped with Sedora Card, +Increases Critical Damage by 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300147# +Decreases damage taken from Water elemental attacks by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage against Water elemental by 10%. +-------------------------- +When equipped with Swordfish Card, +MATK +3% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300148# +MaxHP +10% +MaxSP +5% +-------------------------- +Refine Level +9: +Increases Damage against Water elemental by 5%. +-------------------------- +When equipped with Deep Sea Deviace Card, +ATK +30 +-------------------------- +When equipped with Deep Sea Sropho Card, +MATK +30 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300149# +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +For each refine level: +Increases Magical Damage with Wind element by 3%. +-------------------------- +When equipped with Deep Sea Obeaune Card, +Decreases damage taken from Neutral elemental attacks by additional 5%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +300150# +MaxHP -5% +-------------------------- +For 3 each refine level: +ATK +1% +-------------------------- +When equipped with King Dramoh Card, +STR +4 +MaxHP +15% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300151# +Increases Ranged Physical Damage by 25%. +-------------------------- +Perfect HIT +5 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300163# +Increases damage of Genesis Ray by 5%. +-------------------------- +For each Refine Level: +Increases damage of Genesis Ray by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Genesis Ray by additional 5%. +-------------------------- +When equipped with Arcana: +LUK +3 +Reflects 5% of Melee Physical Damage. +Increases damage of Genesis Ray by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +300164# +Increases damage of Ride in Lightning by 5%. +-------------------------- +For each Refine Level: +Increases damage of Ride in Lightning by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Ride in Lightning by additional 5%. +-------------------------- +When equipped with Arcana: +AGI +3 +Recovers 200 HP when defeating monsters with physical attacks. +Increases damage of Ride in Lightning by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +300165# +Increases damage of Fatal Menace by 5%. +-------------------------- +For each Refine Level: +Increases damage of Fatal Menace by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Fatal Menace by additional 5%. +-------------------------- +When equipped with Arcana: +STR +3 +Recovers 2 SP when recieving damage. +Increases damage of Fatal Menace by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +300166# +Increases damage of Varetyr Spear by 5%. +-------------------------- +For each Refine Level: +Increases damage of Varetyr Spear by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Varetyr Spear by additional 5%. +-------------------------- +When equipped with Arcana: +DEX +3 +Decreases Fixed Casting Time by 50%. +Increases damage of Varetyr Spear by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +300167# +Increases damage of Kunai Explosion by 5%. +-------------------------- +For each Refine Level: +Increases damage of Kunai Explosion by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Kunai Explosion by additional 5%. +-------------------------- +When equipped with Arcana: +AGI +2, VIT +2 +Recovers 1500 HP every 5 seconds. +Increases damage of Kunai Explosion by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +300168# +Increases damage of Spirit of Savage by 5%. +-------------------------- +For each Refine Level: +Increases damage of Spirit of Savage by additional 1%. +-------------------------- +Refine Level +10: +Increases damage of Spirit of Savage by additional 5%. +-------------------------- +When equipped with Arcana: +STR +2, LUK +2 +ATK +10% +Increases damage of Spirit of Savage by additional 50%. +-------------------------- +Type: Card +Compound on: All slots +Weight: 1 +# +300170# +Increases Natural HP Recovery Rate by 100%. +Increases Damage against monsters of Insect race by 10%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300171# +When compounded on either One-Handed Staff or Two-Handed Staff: +Ignores magic defense of all race, except Players, by 10%. + +For each 4 Refine Levels: +Ignores magic defense of enemies by additional 2% and increases recieved physical damage by 2%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300172# +MaxHP -15% +-------------------------- +Drains 2 SP on each physical attack. +Physical attacks have a random chance to absorb 20% of the inflicted damage as HP. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300173# +Decreases Variable Casting Time by 7%. +Decreases Attack Speed (Increases After Attack Delay by 3%). +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300174# +MaxHP +10% +-------------------------- +Base VIT at least 100: +Decreases damage taken from Earth and Poison elemental attacks by 1%. +-------------------------- +Base VIT at least 130: +Decreases damage taken from Earth and Poison elemental attacks by 3%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300175# +Increases Magical Damage with Poison and Shadow element by 30%. +Increases damage taken from Holy elemental attacks by 10%. +-------------------------- +Type: Card +Compound on: Accessory(Right) +Weight: 1 +# +300176# +When compounded on either Two-Handed Sword or Two-Handed Axe: +Increases Melee Physical Damage by 10%. +ASPD +1 + +For each 2 Refine Levels: +Increases Melee Physical Damage by additional 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300177# +Increases Damage against enemies of every size by 5%. +-------------------------- +MaxHP +1000 +FLEE +35 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300178# +Increases Earth and Neutral elemental magical damage by 10%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300179# +Increases Fire and Holy elemental magical damage by 10%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300180# +Increases Attack Speed (Decreases After Attack Delay by 7%). +Increases Critical Damage by 10%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300181# +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases Critical Damage by 7%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300182# +MaxSP +20% +-------------------------- +Random chance to auto-cast Level 1 Dangerous Soul Collect when recieving physical damage. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300183# +Increases Magical Damage with Wind and Water element by 10%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300184# +ATK +5% +-------------------------- +Increases Ranged Physical Damage by 7%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300185# +Decreases Variable Casting Time by 10%. +Increases damage of Wind Blade, Freezing Spear and Flaming Petals by 15%. +Increases Ranged Physical Damage by 8%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300186# +Increases Attack Speed (Decreases After Attack Delay by 7%). +Increases Melee Physical Damage by 7%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300187# +Increases Attack Speed (Decreases After Attack Delay by 7%). +Increases Ranged Physical Damage by 7%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300188# +Increases Magical Damage with Holy element by 10%. +Increases Healing skills effectiveness by 20%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300189# +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by 15%. +-------------------------- +When compounded on a Book class weapon: +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by additional 20%. + +Refine Level of equipped Book is +14 or higher: +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by additional 30%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300190# +Increases Magical Damage with Neutral and Earth element by 10%. +-------------------------- +Random chance to transform into a Golem for 5 seconds when recieving Melee Physical Damage. +During transformation: +DEF +500 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300191# +Increases Magical Damage with Neutral, Shadow and Undead element by 20%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300192# +P.ATK +1 +S.MATK +1 +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +When equipped with Tiara Card: +P.ATK +3 +S.MATK +3 +Decreases After Skill Delay by additional 10%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300193# +P.ATK +1 +S.MATK +1 +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300211# +Increases Magical Damage with Earth element by 35%. +Increases SP Consumption by 10%. +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +300212# +DEF +50 +-------------------------- +Decreases damage taken from Shadow elemental by 10%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300213# +ATK +5 +-------------------------- +Increases Physical Damage against enemies of Fire elemental by 10%. +Increases Critical against Undead and Demon race by 15%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +300214# +When compounded on Katar: +Increases Melee Physical Damage by 10%. + +For each 2 Refine Levels: +Increases Melee Physical Damage by additional 1%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300215# +Increases Magical Damage with Fire and Earth element by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage with Fire and Earth element by additional 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300216# +Increases Magical Damage with Fire element by 35%. +Increases SP Consumption by 10%. +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +300217# +Increases Melee Physical Damage by 20%. +Increases damage taken from all elemental attacks by 15%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300218# +Increases Magical Damage with Neutral element by 35%. +Increases SP Consumption by 10%. +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +300219# +When compounded on either One-Handed Staff or Two-Handed Staff: +Increases Magical Damage with Shadow element by 10%. + +Refine Level +10: +Increases Magical Damage with Shadow element by additional 10%. + +Refine Level +14: +Increases Magical Damage with Shadow element by additional 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300220# +Increases Melee Physical Damage by 6%. +-------------------------- +When equipped with Ghost Wolf Card: +Increases Melee Physical Damage by additional 8%. +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +300221# +Increases Magical Damage with Neutral and Shadow element by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage with Neutral and Shadow element by 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300222# +Increases Magical Damage with Wind element by 35%. +Increases SP Consumption by 10%. +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +300223# +Increases Melee Physical Damage by 6%. +-------------------------- +Type: Card +Compound on: Accessory(Right) +Weight: 1 +# +300227# +Increases Magical Damage against monsters of Angel race by 75%. +Increases damage taken from monsters of Angel race by 25%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300228# +Increases Magical Damage against monsters of Demon race by 75%. +Increases damage taken from monsters of Demon race by 25%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300230# +For each Refine Level: +MaxHP +1% +-------------------------- +Decreases damage taken from monsters of Insect race by 20%. +-------------------------- +When equipped with Diligent Andre Larva Card: +Increases Physical Damage against enemies of Insect race by 20%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +300231# +Increases Physical Damage against enemies of Small and Medium size by 20%. +Physical attacks have a chance to destroy the target's armor. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300232# +Increases Damage against monsters of Insect race by 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300233# +For each Refine Level: +MaxHP +1% +-------------------------- +Decreases damage taken from monsters of Insect race by 20%. +-------------------------- +When equipped with Diligent Andre Larva Card: +Increases Magical Damage against enemies of Insect race by 20%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +300234# +Ignores Physical Defense of enemies of Plant race by 15%. +-------------------------- +For each 2 Refine Levels: +Increases Physical Damage against monsters of Plant race by 5%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +300235# +MaxSP +10% +-------------------------- +For each Refine Level: +MaxHP +1% +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +300236# +Increases Confusion and Blind resistance by 100%. +-------------------------- +For each 2 Refine Levels: +Increases Physical Damage against monsters of Insect race by 4%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300237# +Ignores Magical Defense of monsters of Brute race by 15%. +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage against monsters of Brute race by 5%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300238# +Increases Magical Damage with Poison element by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Poison element by additional 5%. +Enables the use of Level 5 Heal. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300239# +Increases Magical Damage against monsters of Brute and Plant race by 50%. +Increases SP Consumption by 50%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +300240# +ATK +15 +-------------------------- +Increases Physical Damage against enemies of Large size by 15%. +-------------------------- +Base Level at least 200: +Increases Physical Damage against enemies of Large size by additional 25%. +-------------------------- +When equipped with Dullahan Card: +Increases Physical Damage against enemies of Large size by additional 30%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300241# +ATK +15 +-------------------------- +Increases Physical Damage against enemies of Medium size by 15%. +-------------------------- +Base Level at least 200: +Increases Physical Damage against enemies of Medium size by additional 25%. +-------------------------- +When equipped with Bloody Murderer Card: +Increases Physical Damage against enemies of Medium size by additional 30%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300242# +When equipped by Novice or Super Novice: +ATK +10%, MaxHP +1500. + +When equipped with Lude Gal Card^00000: +Physical attacks have a certain chance to remove the weapon size penalty for 7 seconds. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300243# +When equipped by Novice or Super Novice: +MATK +10%, MaxSP +500. + +When equipped with Ghost Cube Card^00000: +Magical attacks have a certain chance to increase Magical Damage with Water and Fire element by 40% for 7 seconds. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300244# +Increases Variable Casting Time of all skills by 5%. +-------------------------- +For each Refine Level: +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by additional 2%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300245# +Increases Variable Casting Time of all skills by 5%. +-------------------------- +For each Refine Level: +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +9: +Increases Healing effectiveness by 3%. +-------------------------- +Refine Level +11: +Increases Healing effectiveness by additional 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300246# +Increases Variable Casting Time of all skills by 5%. +-------------------------- +For each Refine Level: +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +9: +MDEF +8 +Decreases Magical Damage taken from enemies of Small size by 1%. +-------------------------- +Refine Level +11: +Decreases Magical Damage taken from enemies of Small size by additional 2%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300247# +Increases Variable Casting Time of all skills by 5%. +-------------------------- +For each Refine Level: +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Ghost element by 1%. +-------------------------- +Refine Level +11: +Increases Magical Damage with Ghost element by additional 2%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300248# +MATK +10% +-------------------------- +Increases SP Consumption by 50%. +Increases Magical Damage against monsters of Demon and Formless race by 50%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300249# +Increases Physical Damage against monsters of Formless race by 5%. +-------------------------- +Base Level at least 200: +Increases Physical Damage against monsters of Formless race by additional 15%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300250# +Increases Physical Damage against monsters of Demon race by 5%. +-------------------------- +Base Level at least 200: +Increases Physical Damage against monsters of Demon race by additional 15%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300251# +MATK +15 +-------------------------- +Increases Magical Damage with Neutral element by 7%. +Increases SP Consumption by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300252# +MATK +15 +-------------------------- +Increases Magical Damage with Holy element by 7%. +Increases SP Consumption by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300253# +MATK +15 +-------------------------- +Increases Magical Damage with Poison element by 7%. +Increases SP Consumption by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300254# +MaxHP +10% +-------------------------- +Base Level at least 200: +MaxHP +10% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300255# +MATK +15 +-------------------------- +Increases Magical Damage with Wind element by 7%. +Increases SP Consumption by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300256# +MATK +15 +-------------------------- +Increases Magical Damage with Fire element by 7%. +Increases SP Consumption by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300257# +MATK +15 +-------------------------- +Increases Magical Damage with Water element by 7%. +Increases SP Consumption by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300258# +MATK +15 +-------------------------- +Increases Magical Damage with Shadow element by 7%. +Increases SP Consumption by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300259# +MATK +15 +-------------------------- +Increases Magical Damage with Earth element by 7%. +Increases SP Consumption by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300260# +For each 10 base INT: +MATK +5 +-------------------------- +Base INT at least 125: +MATK +60 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +300261# +For each 10 base LUK: +Critical +2 +-------------------------- +Base LUK at least 125: +Increases Critical Damage by 30%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +300262# +MATK +10% +-------------------------- +Increases SP Consumption by 50%. +Increases Magical Damage against monsters of Undead and Dragon race by 50%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300263# +ATK +5% +-------------------------- +When compounded on either Dagger, One-Handed Sword or Two-Handed Sword: +Increases Physical Melee Damage by 10%. + +For each 3 Refine Levels: +Increases Physical Melee Damage by additional 2%. + +Base Level at least 200: +For each 3 Refine Levels: +Increases Physical Melee Damage by additional 3%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300264# +ATK +5% +-------------------------- +When compounded on either One-Handed Spear or Two-Handed Spear: +Increases Physical Ranged Damage by 10%. + +For each 3 Refine Levels: +Increases Physical Ranged Damage by additional 2%. + +Base Level at least 200: +For each 3 Refine Levels: +Increases Physical Ranged Damage by additional 3%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300265# +MATK +5% +-------------------------- +When compounded on Two-Handed Staff: +Increases Magical Damage with every element by 10%. + +For each 3 Refine Levels: +Increases Magical Damage with every element by additional 2%. + +Base Level at least 200 and equipped by Warlock classes: +For each 3 Refine Levels: +Increases Magical Damage with every element by additional 3%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300266# +MaxHP +15% +-------------------------- +When equipped with Boss Egnigem Card and equipped by Swordman classes: +Increases Melee and Ranged Physical Damage by 10%. + +For each 4 Refine Levels of entire set: +MaxHP +2% +Increases Melee and Ranged Physical Damage by additional 2%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300267# +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Base Level at least 200: +Increases Magical Damage with Fire and Wind element by 15%. +-------------------------- +When equipped with Crow Duke Card and equipped by Sage classes: +Increases damage of Fire Bolt and Lightning Bolt by 30%. +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +300268# +MATK +5% +-------------------------- +Base Level at least 200: +Increases Magical Damage with Water and Earth element by 15%. +-------------------------- +When equipped with Crow Baron Card and equipped by Sage classes: +Increases damage of Cold Bolt and Heaven's Drive by 30%. +-------------------------- +Type: Card +Compound on: Accessory(Right) +Weight: 1 +# +300269# +MaxSP -25% +-------------------------- +Increases Magical Damage with Ghost element by 10%. +-------------------------- +When equipped with Dame of Sentinel Card: +For each 40 base INT: +Increases Magical Damage with Ghost element by additional 15%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +300270# +MaxSP -25% +-------------------------- +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Dame of Sentinel Card: +For each 40 base DEX: +Increases Ranged Physical Damage by additional 15%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +300271# +MaxSP -25% +-------------------------- +Increases Melee Physical Damage by 10%. +-------------------------- +When equipped with Mistress of Shelter Card: +For each 40 base STR: +Increases Melee Physical Damage by additional 15%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +300272# +MaxSP -25% +-------------------------- +Increases Magical Damage with Holy element by 10%. +-------------------------- +When equipped with Lady Solace Card: +For each 40 base INT: +Increases Magical Damage with Holy element by additional 15%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +300273# +MaxSP -25% +-------------------------- +Increases Magical Damage with Neutral element by 10%. +-------------------------- +When equipped with Lady Solace Card: +For each 40 base INT: +Increases Magical Damage with Neutral element by additional 15%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +300274# +ATK -10% +-------------------------- +For each 3 Refine Levels: +ATK +3% +-------------------------- +Refine Level +11: +ATK +5% +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +300275# +MATK -10% +-------------------------- +For each 3 Refine Levels: +MATK +3% +-------------------------- +Refine Level +11: +MATK +5% +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +300276# +Increases Magical Damage against monsters of Angel race by 10%. +-------------------------- +Base Level at least 200: +Increases Magical Damage against monsters of Angel race by additional 20%. +-------------------------- +When equipped with Dolor of Thanatos Card: +Increases Magical Damage against monsters of Angel race by additional 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300277# +Reflects 15% Physical Melee Damage taken back to the attackers. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +300278# +Increases Critical Damage by 15%. +-------------------------- +When equipped with Treasure Mimic Card: +Base Level at least 200: +Increases Critical Damage by additional 15%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300279# +Increases damage of Soul Expansion by 30%. +-------------------------- +When equipped with Death Word Card: +Base Level at least 200: +Increases Magical Damage with Ghost element by 30%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +300280# +Increases Physical Damage against monsters of Demi-Human and Demon race by 40%. +Increases Physical Damage taken from monsters of Demi-Human and Demon race by 30%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300281# +MATK +10% +-------------------------- +Increases SP Consumption by 50%. +Increases Magical Damage against monsters of Fish and Insect race by 50%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300292# +MATK +5% +-------------------------- +Refine Level +7: +Increases Magical Damage against monsters of Demon race by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage against monsters of Demon race by additional 7%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300293# +Decreases damage taken from Neutral element attacks by 15%. +-------------------------- +For each 3 Refine Levels: +Increases Magical Damage with Poison element by 3%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +300294# +Increases Magical Damage with Poison and Undead element by 20%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +300295# +MATK +5% +-------------------------- +Refine Level +7: +Increases Magical Damage against monsters of Brute race by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage against monsters of Brute race by additional 7%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300296# +MATK +5% +-------------------------- +Refine Level +7: +Increases Magical Damage against monsters of Insect race by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage against monsters of Insect race by additional 7%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300297# +ATK +10% +-------------------------- +Increases Physical Damage against monsters of Brute race by 35%. +Increases Damage taken from monsters of Brute race by 10%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300307# +\ + - Meyer Lugenburg. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300308# +Increases SP Consumption by 10%. +-------------------------- +For each 3 Refine Levels: +Increases Magical Damage with every element by 4%. +-------------------------- +When equipped with Kronecker G. Heine Card: +MATK +3% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300309# +\ + - Helmut Lugenburg. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300310# +Increases SP Consumption by 10%. +-------------------------- +For each 3 Refine Levels: +Increases Physical Damage by 4%. +-------------------------- +When equipped with Skia Nerious Card: +ATK +3% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300359# +MATK +10, S.MATK +1 +-------------------------- +Increases Magical Damage with Water element by 4%. +Increases SP Consumption by 7%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Water element by additional 3%. +-------------------------- +Refine Level +11: +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300360# +ATK +10, P.ATK +1 +-------------------------- +Increases Melee Physical Damage with by 3%. +Increases SP Consumption by 7%. +-------------------------- +Refine Level +9: +Increases Melee Physical Damage with by additional 2%. +-------------------------- +Refine Level +11: +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300361# +S.MATK +1 +-------------------------- +Increases SP Consumption by 7%. +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage with Water element by 4%. +-------------------------- +When equipped with Ice Gangu Card: +MATK +10% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300362# +P.ATK +1 +-------------------------- +Increases SP Consumption by 7%. +-------------------------- +For each 3 Refine Levels: +Increases Melee Physical Damage with by 4%. +-------------------------- +When equipped with Shining Seaweed Card: +ATK +10% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300363# +ATK +10, P.ATK +1 +-------------------------- +Increases Ranged Physical Damage with by 3%. +Increases SP Consumption by 7%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage with by additional 2%. +-------------------------- +Refine Level +11: +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300364# +Increases Magical Damage with Water element by 35%. +Increases SP Consumption by 10%. +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +300365# +Increases Melee Physical Damage with by 8%. +-------------------------- +Type: Card +Compound on: Accessory(Right) +Weight: 1 +# +300366# +Critical +6, C.RATE +1 +-------------------------- +Type: Card +Compound on: Accessory(Right) +Weight: 1 +# +300367# +Increases Melee Physical Damage with by 8%. +-------------------------- +When equipped with Primitive Rgan Card: +Decreases Variable Casting Time by 8%. +-------------------------- +Type: Card +Compound on: Accessory(Right) +Weight: 1 +# +300368# +CRI +6, C.RATE +1 +-------------------------- +When equipped with Lowest Rgan Card: +Increases Critical Damage by 8%. +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +300369# +Increases Magical Damage with Shadow element by 35%. +Increases SP Consumption by 10%. +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +300370# +Increases Magical Damage with Ghost element by 35%. +Increases SP Consumption by 10%. +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +300371# +Increases Magical Damage with Poison element by 35%. +Increases SP Consumption by 10%. +-------------------------- +Type: Card +Compound on: Accessory(Left) +Weight: 1 +# +300372# +Decreases damage taken from Neutral element attacks by 15%. +-------------------------- +For each Refine Level: +Increases Magical Damage with Ghost element by 3%. +-------------------------- +When equipped with Wasted Primitive Rgan Card: +Decreases damage taken from Neutral element attacks by additional 5%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +300373# +DEF -30, RES +15 +-------------------------- +Decreases damage taken from enemies of Earth element, Insect race and Small size by 15%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +300374# +MaxHP -10%, MaxSP +10% +P.ATK +1, S.MATK +1 +-------------------------- +When equipped with Hallucigenia Baby Card: +Increases Physical and Magical Damage against enemies of Earth element, Insect race and Small size by 15%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300375# +Decreases damage taken from Neutral element attacks by 20%. +-------------------------- +Up to max +11 Refine Level: +Decreases Magical Damage with Shadow, Holy, Ghost and Neutral element by 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Shadow, Holy, Ghost and Neutral element by 25%. +-------------------------- +When compounded Shoes' Armor Level is 2: +Increases Magical Damage with Shadow, Holy, Ghost and Neutral element by 8%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300376# +DEF +100, RES +50 +-------------------------- +Up to max +11 Refine Level: +MaxHP -30%, ATK -10%, MATK -10% +-------------------------- +Refine Level +12: +MaxHP +30%, ATK +10%, MATK +10% +-------------------------- +When Armor Level of compounded equipment is 2: +RES +50 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300377# +ATK +5%, MATK +5% +-------------------------- +For each 3 Refine Levels: +P.ATK +2, S.MATK +2 +-------------------------- +Refine Level +11: +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +300378# +P.ATK +20, S.MATK +20 +-------------------------- +Indestructible in battle +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300379# +Decreases damage taken from enemies of every race, except Players, by 15%. +-------------------------- +Up to max +11 Refine Level: +Increases damage taken from enemies of every size by 25%. +-------------------------- +Refine Level +12: +Decreases damage taken from enemies of every size by 25%. +-------------------------- +When Armor Level of compounded equipment is 2: +RES +50, MRES +50 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +300380# +Critical +5 +-------------------------- +Up to max +11 Refine Level: +Critical -15 +Decreases Critical Damage by 10%. +-------------------------- +Refine Level +12: +Critical +15 +Incrreases Critical Damage by 10%. +-------------------------- +When Armor Level of compounded equipment is 2: +C.RATE +5 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +300381# +P.ATK +1 +-------------------------- +Increases SP Consumption by 7%. +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +When equipped with Limacina Card: +ATK +10% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +300382# +Increases Magical Damage with Poison and Undead element by 100%. +Increases damage taken from every element by 30%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +310000# +For each 2 Levels of Wind Walk: +Increases Attack Speed (Decreases After Attack Delay by 1%). +# +310001# +For each 2 Levels of Beast Bane: +Increases Ranged Physical Damage by 1%. +# +310002# +For each Levels of True Sight: +ATK +2 +# +310003# +Increases damage of Aimed Bolt by 15%. +-------------------------- +When equipped with Sniper Stone II(Upper): +Increases damage of Aimed Bolt by additional 15%. +-------------------------- +When equipped with Sniper Stone II(Mid): +Decreases Variable Casting Time of Aimed Bolt by 1 second. +-------------------------- +When equipped with Sniper Stone II(Lower): +Decreases Unlimit skill cooldown by 45 seconds. +# +310004# +For each Level of Maximum Power Thrust: +Decreases Axe Boomerang skill cooldown by 0.1 seconds. +# +310005# +Increases damage of Cart Termination by 15%. +# +310006# +For each Level of Maximize Power: +Increases Ranged Physical Damage by 1%. +# +310007# +Increases damage of Arms Cannon by 15%. +-------------------------- +When equipped with Whitesmith Stone II(Upper): +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Whitesmith Stone II(Mid): +Increases damage of Vulcan Arm by 20%. +-------------------------- +When equipped with Whitesmith Stone II(Lower): +Increases damage of Knuckle Boost by 20%. +# +310008# +Increases damage of Magnus Exorcismus by 15%. +# +310009# +For each Level of Assumptio: +Increases Magical Damage with Holy element by 1%. +# +310010# +For each 2 Levels of Kyrie Eleison: +Decreases Variable Casting Time by 1%. +# +310011# +Increases damage of Judex by 15%. +-------------------------- +When equipped with High Priest Stone II(Upper): +Increases damage of Judex by additional 15%. +-------------------------- +When equipped with High Priest Stone II(Mid): +Decreases SP Consumption of Judex by 10%. +-------------------------- +When equipped with High Priest Stone II(Lower): +Increases Magical Damage with Holy element by 10%. +# +310012# +Random chance to revieve the following effect for 10 seconds when recieving physical damage: +FLEE +150 +Decreases After Skill Delay by 100%. +Transform into Assassin Cross Eremes Guile. +-------------------------- +When equipped with Everything Ring: +AGI +40 +Nullifies weapon damage size penalty against all monsters. +# +310076# +STR +10 +DEF +25, MDEF +3 +ATK +10% +-------------------------- +When compounded on a STR Soutane: +ATK +5% +Increases Physical Damage against enemies of every race by 12%. +# +310077# +AGI +10 +DEF +25, MDEF +3 +Increases Ranged Physical Damage by 10%. +-------------------------- +When compounded on a AGI Soutane: +ASPD +1 +Perfect Hit +5 +# +310078# +VIT +10 +DEF +25, MDEF +3 +MaxHP +10%, MaxSP +10% +-------------------------- +When compounded on a VIT Soutane: +MaxHP +5% +Decreases After Skill Delay by 5%. +# +310079# +DEX +10 +DEF +25, MDEF +3 +Decreases Variable Casting Time by 10%. +Increases Attack Speed (Decreases After Attack Delay by 10%) +-------------------------- +When compounded on a DEX Soutane: +Decreases Fixed Casting Time by 0.3 seconds. +# +310080# +INT +10 +DEF +25, MDEF +3 +MATK +10% +-------------------------- +When compounded on a INT Soutane: +Decreases Variable Casting Time by 10%. +Increases all elemental magical damage by 12%. +# +310081# +LUK +10 +DEF +25, MDEF +3 +Increases Critical Damage by 15%. +-------------------------- +When compounded on a LUK Soutane: +Critical +10. +Increases Physical Damage against enemies of all size enemies by 12%. +# +310082# +DEF +150 +-------------------------- +Refine Level +9: +DEF +75 +-------------------------- +Refine Level +11: +DEF +75 +# +310083# +MDEF +15 +-------------------------- +Refine Level +9: +MDEF +7 +-------------------------- +Refine Level +11: +MDEF +7 +# +310084# +VIT +3 +MaxHP +1% +# +310085# +LUK +3 +Increases Critical Damage by 1%. +# +310086# +STR +3 +ATK +2% +# +310087# +AGI +3 +Increases Attack Speed (Decreases After Attack Delay by 2%). +# +310088# +INT +3 +MATK +2% +# +310089# +DEX +3 +Increases Ranged Physical Damage by 2%. +# +310090# +HP Recovery Rate +30% +# +310091# +SP Recovery Rate +30% +# +310092# +MATK +20 +Decreases Variable Casting Time by 10%. +# +310093# +ATK +20 +Increases Attack Speed (Decreases After Attack Delay by 10%). +# +310094# +Critical +10 +Increases Critical Damage by 10%. +# +310095# +HIT +10 +Increases Ranged Physical Damage by 10%. +# +310096# +MaxHP +5% +MaxHP +1500 +-------------------------- +Refine Level +9: +MaxHP +2% +-------------------------- +Refine Level +11: +MaxHP +3% +# +310097# +MaxSP +5% +MaxSP +300 +-------------------------- +Refine Level +9: +MaxSP +2% +-------------------------- +Refine Level +11: +MaxSP +3% +# +310098# +-------------------------- +Refine Level +9: +Increases Healing effectiveness by additional 5%. +-------------------------- +Refine Level +11: +Increases Healing effectiveness by additional 7%. +# +310099# +ATK +5% +ATK +75 +-------------------------- +Refine Level +9: +Increases Melee Physical Damage by 2%. +-------------------------- +Refine Level +11: +Increases Melee Physical Damage by 3%. +# +310100# +MATK +5% +MATK +75 +-------------------------- +Refine Level +9: +MATK +2% +-------------------------- +Refine Level +11: +MATK +3% +# +310101# +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by additional 3%. +# +310102# +ASPD +1 +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +11: +Increases Attack Speed (Decreases After Attack Delay by additional 5%). +# +310103# +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 5%. +-------------------------- +Refine Level +11: +Decreases Variable Casting Time by additional 5%. +# +310104# +Critical +10 +-------------------------- +Refine Level +9: +Increases Critical Damage by 5%. +-------------------------- +Refine Level +11: +Increases Critical Damage by additional 7%. +# +310105# +MATK +20 +Decreases Variable Casting Time by 10%. +Increases Magical Damage with every element by 2%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by additional 1%. +-------------------------- +Refine Level +11: +Increases Magical Damage with every element by additional 2%. +# +310106# +ATK +20 +Increases Melee Physical Damage by 10%. +Increases Physical Damage against enemies of all size enemies by 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by additional 1%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of all size enemies by additional 1%. +# +310107# +ATK +20 +Increases Ranged Physical Damage by 10%. +Increases Physical Damage against enemies of all size enemies by 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by additional 1%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of all size enemies by additional 1%. +# +310108# +Critical +5 +Increases Critical Damage by 10%. +Increases Physical Damage against enemies of all size enemies by 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by additional 1%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of all size enemies by additional 1%. +# +310109# +MATK +20 +Decreases Variable Casting Time by 10%. +Increases Healing effectiveness by 5%. +-------------------------- +Refine Level +9: +Increases Healing effectiveness by additional 5%. +-------------------------- +Refine Level +11: +Increases Healing effectiveness by additional 5%. +# +310110# +Decreases After Skill Delay by 4%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by additional 6%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by additional 6%. +# +310111# +Decreases Fixed Casting Time by 0.1 second. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by additional 0.2 seconds. +-------------------------- +Refine Level +11: +Decreases Fixed Casting Time by additional 0.5 seconds. +# +310112# +Decreases Physical and Magical Damage taken from Normal and Boss class enemies by 7%. +-------------------------- +Refine Level +9: +Decreases Physical and Magical Damage taken from all size enemies by 7%. +-------------------------- +Refine Level +11: +Decreases Physical and Magical Damage taken from all race by 7% (Except Players). +# +310113# +Physical attacks have a 2% chance to restore 3% of the damage dealt as HP. +# +310114# +Physical attacks have a 1% chance to restore 2% of the damage dealt as SP. +# +310115# +Magical attacks have a 2% chance to restore 500HP per 0.4 seconds for 23 times. +# +310116# +Magical attacks have a 1% chance to restore 120SP per 0.4 seconds for 23 times. +# +310117# +ATK +3% +MATK +3% +-------------------------- +Refine Level +9: +ATK +3% +MATK +3% +-------------------------- +Refine Level +11: +ATK +4% +MATK +4% +# +310118# +MaxHP +2000, MaxSP +300 +MaxHP and MaxSP +5% +-------------------------- +Refine Level +9: +MaxHP and MaxSP +2% +-------------------------- +Refine Level +11: +MaxHP and MaxSP +3% +# +310119# +Increases Melee and Ranged Physical Damage by 5%. +Increases Magical Damage with every element by 5%. +-------------------------- +Refine Level +9: +Increases Melee and Ranged Physical Damage by additional 2%. +Increases Magical Damage with every element by additional 2%. +-------------------------- +Refine Level +11: +Increases Melee and Ranged Physical Damage by additional 3%. +Increases Magical Damage with every element by additional 3%. +# +310120# +Increases Melee Physical Damage by 5%. +Increases Ranged Physical Damage by 5%. +Increases Magical Damage with every element by 5%. +# +310121# +Recieving physical or magical damage has a 3% chance to activate Enhanced Everlasting Life for 10 seconds. +-------------------------- +[Enhanced Everlasting Life] +VIT +50 +Recover 800HP per 0.5 seconds for 23 times. +# +310122# +Magical attacks have a 3% chance to activate Enhanced Magic Storm for 10 seconds. +-------------------------- +[Enhanced Magic Storm] +INT +50 +MATK +25% +# +310123# +Physical attacks have a 3% chance to activate Enhanced Plunging Shot for 10 seconds. +-------------------------- +[Enhanced Plunging Shot] +DEX +50 +Increases Ranged Physical Damage by 15%. +# +310124# +Physical attacks have a 3% chance to activate Enhanced Raging Fight for 10 seconds. +-------------------------- +[Enhanced Raging Fight] +STR +50 +Increases Melee Physical Damage by 10%. +# +310125# +Physical attacks have a 3% chance to activate Enhanced Deadly Lightspeed for 10 seconds. +-------------------------- +[Enhanced Deadly Lightspeed] +AGI +50 +Increases Critical Damage by 15%. +# +310126# +Magical attacks have a 3% chance to activate Enhanced Good Fortune for 10 seconds. +-------------------------- +[Enhanced Good Fortune] +LUK +50 +Increases Magical Damage with every element by 15%. +# +310127# +Increases damage of Dragon Breath and Dragon Breath - Water by 15%. +-------------------------- +Refine Level +9: +Increases damage of Dragon Breath and Dragon Breath - Water by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Dragon Breath and Dragon Breath - Water by additional 7%. +# +310128# +Increases damage of Sonic Wave and Ignition Break by 15%. +-------------------------- +Refine Level +9: +Increases damage of Sonic Wave and Ignition Break by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Sonic Wave by additional 7%. +Decreases Ignition Break skill cooldown by 0.25 seconds. +# +310129# +Increases damage of Spiral Pierce and Hundred Spear by 15%. +-------------------------- +Refine Level +9: +Increases damage of Spiral Pierce and Hundred Spear by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Spiral Pierce by additional 7%. +Decreases Hundred Spear skill cooldown by 0.25 seconds. +# +310130# +Increases damage of Earth Drive and Shield Press by 15%. +-------------------------- +Refine Level +9: +Increases damage of Earth Drive and Shield Press by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Earth Drive and Shield Press by additional 7%. +# +310131# +Increases damage of Banishing Point and Cannon Spear by 15%. +-------------------------- +Refine Level +9: +Increases damage of Banishing Point and Cannon Spear by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Banishing Point and Cannon Spear by additional 7%. +# +310132# +Increases damage of Pressure and Genesis Ray by 15%. +-------------------------- +Refine Level +9: +Increases damage of Pressure and Genesis Ray by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Pressure and Genesis Ray by additional 7%. +# +310133# +Increases damage of Knuckle Boost and Arms Cannon by 15%. +-------------------------- +Refine Level +9: +Increases damage of Knuckle Boost and Arms Cannon by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Knuckle Boost and Arms Cannon by additional 7%. +# +310134# +Increases damage of Cold Slower and Flame Launcher by 15%. +-------------------------- +Refine Level +9: +Increases damage of Cold Slower and Flame Launcher by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Cold Slower and Flame Launcher by additional 7%. +# +310135# +Increases damage of Axe Tornado and Power Swing by 15%. +-------------------------- +Refine Level +9: +Increases damage of Axe Tornado and Power Swing by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Axe Tornado and Power Swing by additional 7%. +# +310136# +Increases damage of Cart Cannon and Cart Tornado by 15%. +-------------------------- +Refine Level +9: +Increases damage of Cart Cannon and Cart Tornado by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Cart Cannon and Cart Tornado by additional 7%. +# +310137# +Increases damage of Crazy Weed by 15%. +Decreases Howling of Mandragora skill cooldown by 0.3 seconds. +-------------------------- +Refine Level +9: +Increases damage of Crazy Weed by additional 3%. +Decreases Howling of Mandragora skill cooldown by additional 0.3 seconds. +-------------------------- +Refine Level +11: +Increases damage of Crazy Weed by additional 7%. +Decreases Howling of Mandragora skill cooldown by additional 0.4 seconds. +# +310138# +Increases damage of Acid Demonstration and Spore Explosion by 15%. +-------------------------- +Refine Level +9: +Increases damage of Acid Demonstration and Spore Explosion by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Acid Demonstration and Spore Explosion by additional 7%. +# +310139# +Increases damage of Sonic Blow and Cross Impact by 15%. +-------------------------- +Refine Level +9: +Increases damage of Sonic Blow and Cross Impact by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Sonic Blow and Cross Impact by additional 7%. +# +310140# +Increases damage of Rolling Cutter and Cross Ripper Slasher by 15%. +-------------------------- +Refine Level +9: +Increases damage of Rolling Cutter and Cross Ripper Slasher by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Rolling Cutter and Cross Ripper Slasher by additional 7%. +# +310141# +Increases damage of Soul Destroyer and Counter Slash by 15%. +-------------------------- +Refine Level +9: +Increases damage of Soul Destroyer and Counter Slash by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Soul Destroyer and Counter Slash by additional 7%. +# +310142# +Increases damage of Fatal Menace and Raid by 15%. +-------------------------- +Refine Level +9: +Increases damage of Fatal Menace and Raid by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Fatal Menace and Raid by additional 7%. +# +310143# +Increases Magical Damage with every element by 15%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by additional 3%. +-------------------------- +Refine Level +11: +Increases Magical Damage with every element by additional 7%. +# +310144# +Increases damage of Triangle Shot by 15%. +Increases Ranged Physical Damage by 10%. +-------------------------- +Refine Level +9: +Increases damage of Triangle Shot by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Triangle Shot by additional 7%. +Increases Ranged Physical Damage by additional 5%. +# +310145# +Increases damage of Crimson Rock and Earth Strain by 15%. +-------------------------- +Refine Level +9: +Increases damage of Crimson Rock and Earth Strain by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Crimson Rock and Earth Strain by additional 7%. +# +310146# +Increases damage of Jack Frost and Chain Lightning by 15%. +-------------------------- +Refine Level +9: +Increases damage of Jack Frost and Chain Lightning by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Jack Frost and Chain Lightning by additional 7%. +# +310147# +Increases damage of Comet and Tetra Vortex by 15%. +-------------------------- +Refine Level +9: +Increases damage of Comet and Tetra Vortex by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Comet and Tetra Vortex by additional 7%. +# +310148# +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by 15%. +-------------------------- +Refine Level +9: +Increases Fire Bolt, Cold Bolt and Lightning Bolt by additional 3%. +-------------------------- +Refine Level +11: +Increases Fire Bolt, Cold Bolt and Lightning Bolt by additional 7%. +# +310149# +Increases damage of Psychic Wave by 15%. +Decreases Warmer skill cooldown by 1 second. +-------------------------- +Refine Level +9: +Increases damage of Psychic Wave by additional 3%. +Decreases Warmer skill cooldown by additional 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Psychic Wave by additional 7%. +Decreases Warmer skill cooldown by additional 4 seconds. +# +310150# +Increases damage of Diamond Dust and Earth Grave by 15%. +-------------------------- +Refine Level +9: +Increases damage of Diamond Dust and Earth Grave by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Diamond Dust and Earth Grave by additional 7%. +# +310151# +Increases damage of Magnus Exorcismus and Adoramus by 15%. +-------------------------- +Refine Level +9: +Increases damage of Magnus Exorcismus and Adoramus by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Magnus Exorcismus and Adoramus by additional 7%. +# +310152# +Increases damage of Holy Light and Judex by 15%. +-------------------------- +Refine Level +9: +Increases damage of Holy Light and Judex by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Holy Light and Judex by additional 7%. +# +310153# +Increases damage of Duple Light by 15%. +Decreases Basilica skill cooldown by 2 second. +-------------------------- +Refine Level +9: +Increases damage of Duple Light by additional 3%. +Decreases Basilica skill cooldown by additional 3 seconds. +-------------------------- +Refine Level +11: +Increases damage of Duple Light by additional 7%. +Decreases Basilica skill cooldown by additional 5 seconds. +# +310154# +Increases damage of Tiger Cannon and Fallen Empire by 15%. +-------------------------- +Refine Level +9: +Increases damage of Tiger Cannon and Fallen Empire by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Tiger Cannon and Fallen Empire by additional 7%. +# +310155# +Increases damage of Rampage Blaster and Knuckle Arrow by 15%. +-------------------------- +Refine Level +9: +Increases damage of Rampage Blaster and Knuckle Arrow by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Rampage Blaster and Knuckle Arrow by additional 7%. +# +310156# +Increases damage of Combo Finish and Chain Crush Combo by 15%. +-------------------------- +Refine Level +9: +Increases damage of Combo Finish and Chain Crush Combo by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Combo Finish and Chain Crush Combo by additional 7%. +# +310157# +Increases damage of Cluster Bomb by 15%. +-------------------------- +Refine Level +9: +Increases damage of Cluster Bomb by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Cluster Bomb by additional 7%. +# +310158# +Increases damage of Sharp Shooting by 15%. +Increases Critical Damage by 10%. +-------------------------- +Refine Level +9: +Increases damage of Sharp Shooting by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Sharp Shooting by additional 7%. +Increases Critical Damage by additional 5%. +# +310159# +Increases damage of Aimed Bolt and Arrow Storm by 15%. +-------------------------- +Refine Level +9: +Increases damage of Aimed Bolt and Arrow Storm by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Aimed Bolt and Arrow Storm by additional 7%. +# +310160# +Increases damage of Metallic Sound and Great Echo by 15%. +-------------------------- +Refine Level +9: +Increases damage of Metallic Sound and Great Echo by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Metallic Sound and Great Echo by additional 7%. +# +310161# +Increases damage of Reverberation by 15%. +-------------------------- +Refine Level +9: +Increases damage of Reverberation by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Reverberation by additional 7%. +# +310162# +Increases damage of Arrow Vulcan and Severe Rainstorm by 15%. +-------------------------- +Refine Level +9: +Increases damage of Arrow Vulcan and Severe Rainstorm by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Arrow Vulcan and Severe Rainstorm by additional 7%. +# +310163# +Increases damage of Prominence Kick and Solar Burst by 15%. +-------------------------- +Refine Level +9: +Increases damage of Prominence Kick and Solar Burst by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Prominence Kick and Solar Burst by additional 7%. +# +310164# +Increases damage of New Moon Kick and Full Moon Kick by 15%. +-------------------------- +Refine Level +9: +Increases damage of New Moon Kick and Full Moon Kick by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of New Moon Kick and Full Moon Kick by additional 7%. +Increases Critical Damage by 5%. +# +310165# +Increases damage of Flash Kick and Falling Star by 15%. +-------------------------- +Refine Level +9: +Increases damage of Flash Kick and Falling Star by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Flash Kick and Falling Star by additional 7%. +# +310166# +Increases damage of Esma and Eswhoo by 15%. +-------------------------- +Refine Level +9: +Increases damage of Esma and Eswhoo by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Esma and Eswhoo by additional 7%. +# +310167# +Increases damage of Espa by 15%. +-------------------------- +Refine Level +9: +Increases damage of Espa by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Espa by additional 7%. +# +310168# +Increases damage of Curse Explosion by 15%. +-------------------------- +Refine Level +9: +Increases damage of Curse Explosion by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Curse Explosion by additional 7%. +# +310169# +Increases damage of Desperado, Fire Dance and Hammer of God by 15%. +-------------------------- +Refine Level +9: +Increases damage of Desperado, Fire Dance and Hammer of God by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Desperado, Fire Dance and Hammer of God by additional 7%. +# +310170# +Increases damage of Fire Rain, Howling Mine and Dragon Tail by 15%. +-------------------------- +Refine Level +9: +Increases damage of Fire Rain, Howling Mine and Dragon Tail by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Fire Rain, Howling Mine and Dragon Tail by additional 7%. +# +310171# +Increases damage of Shattering Storm, Banishing Buster and Round Trip by 15%. +-------------------------- +Refine Level +9: +Increases damage of Shattering Storm, Banishing Buster and Round Trip by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Shattering Storm, Banishing Buster and Round Trip by additional 7%. +# +310172# +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 15%. +-------------------------- +Refine Level +9: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 7%. +# +310173# +Increases damage of Cross Slash by 15%. +-------------------------- +Refine Level +9: +Increases damage of Cross Slash by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Cross Slash by additional 7%. +# +310174# +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by 15%. +-------------------------- +Refine Level +9: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 7%. +# +310175# +Decreases Tuna Party and Tasty Shrimp Party skill cooldown by 0.5 seconds. +-------------------------- +Refine Level +9: +Decreases Tuna Party and Tasty Shrimp Party skill cooldown by additional 1 second. +-------------------------- +Refine Level +11: +Decreases Tuna Party and Tasty Shrimp Party skill cooldown by additional 1.5 seconds. +# +310176# +Increases damage of Silvervine Stem Spear and Catnip Meteor by 15%. +-------------------------- +Refine Level +9: +Increases damage of Silvervine Stem Spear and Catnip Meteor by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Silvervine Stem Spear and Catnip Meteor by additional 7%. +# +310177# +Increases damage of Picky Peck and Lunatic Carrot Beat by 15%. +-------------------------- +Refine Level +9: +Increases damage of Picky Peck and Lunatic Carrot Beat by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Picky Peck and Lunatic Carrot Beat by additional 7%. +# +310178# +Decreases damage taken from reflected damage by 2%. +-------------------------- +Refine Level +9: +Decreases damage taken from reflected damage by additional 2%. +-------------------------- +Refine Level +11: +Decreases damage taken from reflected damage by additional 3%. +# +310179# +Decreases damage taken from reflected damage by 3%. +-------------------------- +Refine Level +9: +Decreases damage taken from reflected damage by additional 2%. +-------------------------- +Refine Level +11: +Decreases damage taken from reflected damage by additional 4%. +# +310180# +Increases damage of Comet by 15%. +-------------------------- +When equipped with High Wizard Stone II(Upper): +Increases damage of Comet by additional 15%. +-------------------------- +When equipped with High Wizard Stone II(Mid): +Decreases Fixed Casting Time by 0.1 seconds for every 2 Levels of Mystical Amplification. +-------------------------- +When equipped with High Wizard Stone II(Lower): +Increases Magical Damage with Neutral element by 5%. +# +310181# +Increases damage of Meteor Storm by 20%. +# +310182# +For each Level of Gravitation: +Increases Magical Damage with Neutral element by 2%. +# +310183# +For each Level of Soul Drain: +MATK +2 +# +310184# +Increases damage of Genesis Ray by 15%. +-------------------------- +When equipped with Paladin Stone II(Upper): +Decreases Fixed Casting Time by 0.1 seconds for every 2 Levels of Auto Guard. +-------------------------- +When equipped with Paladin Stone II(Mid): +Increases Magical Damage with Holy element by 5%. +-------------------------- +When equipped with Paladin Stone II(Lower): +Increases damage of Genesis Ray by additional 15%. +# +310185# +For each Level of Faith: +Decreases Variable Casting Time by 1%. +# +310186# +Increases damage of Pressure by 20%. +# +310187# +For each Level of Grand Cross: +Increase Holy elemental magical damage by 1%. +# +310188# +Increases Critical Damage by 15%. +Enables the use of Double Attack Level 3 if you have learned Katar Mastery Level 10 (if learned at a higher Level of Double Attack, use that instead). +-------------------------- +When equipped with Assassin Cross Stone II(Upper): +ATK +5% +Increases Critical Damage by additional 15%. +-------------------------- +When equipped with Assassin Cross Stone II(Mid): +Increases damage of Counter Slash by 20%. +-------------------------- +When equipped with Assassin Cross Stone II(Lower): +Decreases After Skill Delay by 5%. +# +310189# +For each Level of Advanced Katar Mastery: +Increases Physical Damage against enemies of every size by 2%. +# +310190# +Increases damage of Sonic Blow by 20%. +# +310191# +For each Level of Soul Destroyer: +Decreases After Skill Delay by 1%. +# +310192# +ATK +20% +-------------------------- +Prevents White Imprison status, except when used on yourself. +-------------------------- +Random chance to revieve the following effect for 10 seconds when recieving physical or magical damage: +DEX +100 +Transform into System Message 2. +-------------------------- +When enchanted with Supportive Reactor ASPD: +ASPD +1 +-------------------------- +When enchanted with Supportive Reactor Attack: +ATK +15 +-------------------------- +When enchanted with Supportive Reactor Perfect: +Perfect Dodge +2 +-------------------------- +When enchanted with Supportive Reactor DEF: +DEF +500 +-------------------------- +When enchanted with A-Flee: +FLEE +15 +-------------------------- +When enchanted with Supportive Reactor Frozen: +MaxHP +1000 +-------------------------- +When enchanted with A-Hit: +HIT +15 +-------------------------- +When enchanted with Supportive Reactor INT: +MATK +3% +-------------------------- +When enchanted with Supportive Reactor Magic: +MATK +15 +-------------------------- +When enchanted with Supportive Reactor MaxHP: +MaxHP +7500 +-------------------------- +When enchanted with Supportive Reactor MaxSP: +MaxSP +150 +-------------------------- +When enchanted with A-Mdef: +MDEF +20 +-------------------------- +When enchanted with Supportive Reactor STR: +ATK +3% +-------------------------- +When enchanted with A-Tolerance: +Decreases damage taken from ranged physical attacks by 10%. +-------------------------- +When enchanted with Recovery Reactor 201: +Increases HP Recovery Rate by 350%. +-------------------------- +When enchanted with Recovery Reactor 101: +Restores 1500 HP every 5 seconds. +-------------------------- +When enchanted with Recovery Reactor 102: +Restores 25 SP every 5 seconds. +-------------------------- +When enchanted with Recovery Reactor 202: +Increases SP Recovery Rate by 50%. +-------------------------- +When enchanted with Fire Property Reactor: +Increases Physical Damage against enemies of Fire elemental by 10%. +-------------------------- +When enchanted with Earth Property Reactor: +Increases Physical Damage against enemies of Earth elemental by 10%. +-------------------------- +When enchanted with Water Property Reactor: +Increases Physical Damage against enemies of Water elemental by 10%. +-------------------------- +When enchanted with Wind Property Reactor: +Increases Physical Damage against enemies of Wind elemental by 10%. +-------------------------- +When enchanted with Fire Resistance Reactor: +Decreases damage taken from Fire elemental attacks by 25%. +-------------------------- +When enchanted with Earth Resistance Reactor: +Decreases damage taken fromEarth elemental attacks by 25%. +-------------------------- +When enchanted with Water Resistance Reactor: +Decreases damage taken fromWater elemental attacks by 25%. +-------------------------- +When enchanted with Wind Resistance Reactor: +Decreases damage taken fromWind elemental attacks by 25%. +-------------------------- +When enchanted with either S-Atk, S-Avoid, S-Cri, S-Matk, S-MaxHP or S-Quick: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When enchanted with either Z-CastFixed, Z-Clairvoyance, Z-Immortal, Z-Killgain, Z-Knockback, Z-NoDispell or Z-Reincarnation: +MaxHP +5% +# +310197# +ATK +1% +# +310198# +ATK +3% +# +310199# +ATK +5% +# +310200# +ATK +7% +# +310201# +ATK +10% +# +310202# +MATK +1% +# +310203# +MATK +3% +# +310204# +MATK +5% +# +310205# +MATK +7% +# +310206# +MATK +10% +# +310207# +Increases Critical Damage by 1%. +# +310208# +Increases Critical Damage by 3%. +# +310209# +Increases Critical Damage by 5%. +# +310210# +Increases Critical Damage by 5%. +# +310211# +Increases Critical Damage by 10%. +# +310212# +MaxHP, MaxSP +1% +# +310213# +MaxHP, MaxSP +3% +# +310214# +MaxHP, MaxSP +5% +# +310215# +MaxHP, MaxSP +7% +# +310216# +MaxHP, MaxSP +10% +# +310217# +ATK +1% +# +310218# +ATK +3% +# +310219# +ATK +5% +# +310220# +ATK +7% +# +310221# +ATK +10% +# +310222# +MATK +1% +# +310223# +MATK +3% +# +310224# +MATK +5% +# +310225# +MATK +7% +# +310226# +MATK +10% +# +310227# +Increases Critical Damage by 1%. +# +310228# +Increases Critical Damage by 3%. +# +310229# +Increases Critical Damage by 5%. +# +310230# +Increases Critical Damage by 7%. +# +310231# +Increases Critical Damage by 10%. +# +310232# +MaxHP, MaxSP +1% +# +310233# +MaxHP, MaxSP +3% +# +310234# +MaxHP, MaxSP +5% +# +310235# +MaxHP, MaxSP +7% +# +310236# +MaxHP, MaxSP +10% +# +310237# +Increases Physical Damage against enemies of Angel and Dragon race by 10%. +# +310238# +Increases Physical Damage against enemies of Angel and Dragon race by 15%. +# +310239# +Increases Physical Damage against enemies of Angel and Dragon race by 20%. +# +310240# +Increases Physical Damage against enemies of Angel and Dragon race by 30%. +# +310241# +Increases Physical Damage against enemies of Angel and Dragon race by 35%. +# +310242# +Increases Magical Damage against monsters of Angel and Dragon race by 10%. +# +310243# +Increases Magical Damage against monsters of Angel and Dragon race by 15%. +# +310244# +Increases Magical Damage against monsters of Angel and Dragon race by 20%. +# +310245# +Increases Magical Damage against monsters of Angel and Dragon race by 25%. +# +310246# +Increases Magical Damage against monsters of Angel and Dragon race by 35%. +# +310247# +Increases Physical Damage against enemies of Angel and Dragon race by 10%. +# +310248# +Increases Physical Damage against enemies of Angel and Dragon race by 15%. +# +310249# +Increases Physical Damage against enemies of Angel and Dragon race by 20%. +# +310250# +Increases Physical Damage against enemies of Angel and Dragon race by 25%. +# +310251# +Increases Physical Damage against enemies of Angel and Dragon race by 35%. +# +310252# +Increases Magical Damage against monsters of Angel and Dragon race by 10%. +# +310253# +Increases Magical Damage against monsters of Angel and Dragon race by 15%. +# +310254# +Increases Magical Damage against monsters of Angel and Dragon race by 20%. +# +310255# +Increases Magical Damage against monsters of Angel and Dragon race by 25%. +# +310256# +Increases Magical Damage against monsters of Angel and Dragon race by 35%. +# +310257# +Increases damage of Ignition Break by 15%. +-------------------------- +When equipped with Lord Knight Stone II(Upper): +Increases damage of Sonic Wave by 20%. +-------------------------- +When equipped with Lord Knight Stone II(Mid): +Increases damage of Ignition Break by additional 10%. +-------------------------- +When equipped with Lord Knight Stone II(Lower): +Increases damage of Hundred Spear by 30%. +# +310258# +For each Level of Spiral Pierce: +Increases Ranged Physical Damage by 1%. +# +310259# +Increases damage of Bowling Bash by 20%. +# +310260# +Increases damage of Spiral Pierce by 20%. +# +310261# +Increases damage of Crazy Weed by 20%. +-------------------------- +When equipped with Creator Stone II(Upper): +Decreases Cart Tornado skill cooldown by 0.7 seconds. +-------------------------- +When equipped with Creator Stone II(Mid): +Increases damage of Spore Explosion by 20%. +-------------------------- +When equipped with Creator Stone II(Lower): +For each 2 Levels of Acid Demonstration: +Decreases Fixed Casting Time by 0.1 seconds. +# +310262# +For each Level of Bio Cannibalize: +Increases Physical Damage against enemies of every size by 1%. +# +310263# +Increases damage of Acid Demonstration by 25%. +# +310264# +For each 2 Levels of Acid Demonstration: +Increases Ranged Physical Damage by 1%. +# +310265# +Increases damage of Reverberation by 15%. +-------------------------- +When equipped with Clown Gypsy Stone II(Upper): +Increases damage of Reverberation by additional 10%. +-------------------------- +When equipped with Clown Gypsy Stone II(Mid): +Decreases SP Consumption of Reverberation and Metallic Sound by 20%. +-------------------------- +When equipped with Clown Gypsy Stone II(Lower): +Increases damage of Metallic Sound by 20%. +# +310266# +Increases damage of Arrow Vulcan by 15%. +# +310267# +For each Level of Musical Strike/Throw Arrow: +Increases Magical Damage with Neutral element by 1%. +# +310268# +Increases damage of Musical Strike and Throw Arrow by 15%. +# +310325# +Increases Ranged Physical Damage by 3%. +-------------------------- +When equipped with Ranged Stone(Mid) and Ranged Stone(Lower): +Increases Ranged Physical Damage by additional 6%. +# +310326# +Increases Ranged Physical Damage by 3%. +# +310327# +Increases Melee Physical Damage by 3%. +-------------------------- +When equipped with Melee Stone(Mid) and Melee Stone(Lower): +Increases Melee Physical Damage by additional 6%. +# +310328# +Increases Melee Physical Damage by 3%. +# +310329# +Increases Melee Physical Damage by 3%. +# +310330# +Increases Ranged Physical Damage by 3%. +# +310478# +STR +1 +-------------------------- +Refine Level +7: +STR +1 +-------------------------- +Refine Level +9: +STR +1 +-------------------------- +Refine Level +11: +STR +1 +# +310479# +DEX +1 +-------------------------- +Refine Level +7: +DEX +1 +-------------------------- +Refine Level +9: +DEX +1 +-------------------------- +Refine Level +11: +DEX +1 +# +310480# +AGI +1 +-------------------------- +Refine Level +7: +AGI +1 +-------------------------- +Refine Level +9: +AGI +1 +-------------------------- +Refine Level +11: +AGI +1 +# +310481# +INT +1 +-------------------------- +Refine Level +7: +INT +1 +-------------------------- +Refine Level +9: +INT +1 +-------------------------- +Refine Level +11: +INT +1 +# +310482# +VIT +1 +-------------------------- +Refine Level +7: +VIT +1 +-------------------------- +Refine Level +9: +VIT +1 +-------------------------- +Refine Level +11: +VIT +1 +# +310483# +LUK +1 +-------------------------- +Refine Level +7: +LUK +1 +-------------------------- +Refine Level +9: +LUK +1 +-------------------------- +Refine Level +11: +LUK +1 +# +310484# +STR +2 +-------------------------- +Refine Level +7: +STR +1 +-------------------------- +Refine Level +9: +STR +1 +-------------------------- +Refine Level +11: +STR +2 +Increases Melee Physical Damage by 1%. +# +310485# +DEX +2 +-------------------------- +Refine Level +7: +DEX +1 +-------------------------- +Refine Level +9: +DEX +1 +-------------------------- +Refine Level +11: +DEX +2 +Increases Ranged Physical Damage by 1%. +# +310486# +AGI +2 +-------------------------- +Refine Level +7: +AGI +1 +-------------------------- +Refine Level +9: +AGI +1 +-------------------------- +Refine Level +11: +AGI +2 +Perfect HIT +1% +# +310487# +INT +2 +-------------------------- +Refine Level +7: +INT +1 +-------------------------- +Refine Level +9: +INT +1 +-------------------------- +Refine Level +11: +INT +2 +Increases Magical Damage with every element by 1%. +# +310488# +VIT +2 +-------------------------- +Refine Level +7: +VIT +1 +-------------------------- +Refine Level +9: +VIT +1 +-------------------------- +Refine Level +11: +VIT +2 +Decreases After Skill Delay by 1%. +# +310489# +LUK +2 +-------------------------- +Refine Level +7: +LUK +1 +-------------------------- +Refine Level +9: +LUK +1 +-------------------------- +Refine Level +11: +LUK +2 +Increases Critical Damage by 1%. +# +310490# +STR +3 +-------------------------- +Refine Level +7: +STR +1 +-------------------------- +Refine Level +9: +STR +1 +-------------------------- +Refine Level +11: +STR +2 +Increases Melee Physical Damage by 3%. +# +310491# +DEX +3 +-------------------------- +Refine Level +7: +DEX +1 +-------------------------- +Refine Level +9: +DEX +1 +-------------------------- +Refine Level +11: +DEX +2 +Increases Ranged Physical Damage by 3%. +# +310492# +AGI +3 +-------------------------- +Refine Level +7: +AGI +1 +-------------------------- +Refine Level +9: +AGI +1 +-------------------------- +Refine Level +11: +AGI +2 +Perfect HIT +3% +# +310493# +INT +3 +-------------------------- +Refine Level +7: +INT +1 +-------------------------- +Refine Level +9: +INT +1 +-------------------------- +Refine Level +11: +INT +2 +Increases Magical Damage with every element by 3%. +# +310494# +VIT +3 +-------------------------- +Refine Level +7: +VIT +1 +-------------------------- +Refine Level +9: +VIT +1 +-------------------------- +Refine Level +11: +VIT +2 +Decreases After Skill Delay by 3%. +# +310495# +LUK +3 +-------------------------- +Refine Level +7: +LUK +1 +-------------------------- +Refine Level +9: +LUK +1 +-------------------------- +Refine Level +11: +LUK +2 +Increases Critical Damage by 3%. +# +310496# +DEF +150 +-------------------------- +Refine Level +7: +DEF +75 +-------------------------- +Refine Level +9: +DEF +75 +-------------------------- +Refine Level +11: +DEF +75 +# +310497# +MDEF +15 +-------------------------- +Refine Level +7: +MDEF +7 +-------------------------- +Refine Level +9: +MDEF +7 +-------------------------- +Refine Level +11: +MDEF +7 +# +310498# +DEF +200 +-------------------------- +Refine Level +7: +DEF +75 +-------------------------- +Refine Level +9: +DEF +75 +-------------------------- +Refine Level +11: +DEF +100 +# +310499# +MDEF +20 +-------------------------- +Refine Level +7: +MDEF +7 +-------------------------- +Refine Level +9: +MDEF +7 +-------------------------- +Refine Level +11: +MDEF +10 +# +310500# +DEF +250 +-------------------------- +Refine Level +7: +DEF +75 +-------------------------- +Refine Level +9: +DEF +100 +-------------------------- +Refine Level +11: +DEF +100 +# +310501# +MDEF +25 +-------------------------- +Refine Level +7: +MDEF +7 +-------------------------- +Refine Level +9: +MDEF +10 +-------------------------- +Refine Level +11: +MDEF +10 +# +310502# +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by additional 3%. +# +310503# +ATK +2%, ATK +25 +-------------------------- +Refine Level +7: +Increases Melee Physical Damage by 3%. +-------------------------- +Refine Level +9: +Increases Melee Physical Damage by additional 3%. +-------------------------- +Refine Level +11: +Increases Melee Physical Damage by additional 3%. +# +310504# +MATK +2%, MATK +25 +-------------------------- +Refine Level +7: +Increases Magical Damage with every element by 3%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by additional 3%. +-------------------------- +Refine Level +11: +Increases Magical Damage with every element by additional 3%. +# +310505# +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by additional 5%. +# +310506# +ATK +4%, ATK +50 +-------------------------- +Refine Level +7: +Increases Melee Physical Damage by 3%. +-------------------------- +Refine Level +9: +Increases Melee Physical Damage by additional 3%. +-------------------------- +Refine Level +11: +Increases Melee Physical Damage by additional 5%. +# +310507# +MATK +4%, MATK +50 +-------------------------- +Refine Level +7: +Increases Magical Damage with every element by 3%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by additional 3%. +-------------------------- +Refine Level +11: +Increases Magical Damage with every element by additional 5%. +# +310508# +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by additional 5%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 5%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by additional 5%. +# +310509# +ATK +6%, ATK +100 +-------------------------- +Refine Level +7: +Increases Melee Physical Damage by 5%. +-------------------------- +Refine Level +9: +Increases Melee Physical Damage by additional 5%. +-------------------------- +Refine Level +11: +Increases Melee Physical Damage by additional 5%. +# +310510# +MATK +6%, MATK +100 +-------------------------- +Refine Level +7: +Increases Magical Damage with every element by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by additional 5%. +-------------------------- +Refine Level +11: +Increases Magical Damage with every element by additional 5%. +# +310511# +Decreases damage taken from reflected damage by 2%. +-------------------------- +Refine Level +7: +Decreases damage taken from reflected damage by additional 2%. +-------------------------- +Refine Level +9: +Decreases damage taken from reflected damage by additional 2%. +-------------------------- +Refine Level +11: +Decreases damage taken from reflected damage by additional 2%. +# +310512# +Decreases damage taken from reflected damage by 3%. +-------------------------- +Refine Level +7: +Decreases damage taken from reflected damage by additional 3%. +-------------------------- +Refine Level +9: +Decreases damage taken from reflected damage by additional 3%. +-------------------------- +Refine Level +11: +Decreases damage taken from reflected damage by additional 3%. +# +310513# +Decreases damage taken from reflected attacks by 4%. +-------------------------- +Refine Level +7: +Decreases damage taken from reflected attacks by additional 4%. +-------------------------- +Refine Level +9: +Decreases damage taken from reflected attacks by additional 4%. +-------------------------- +Refine Level +11: +Decreases damage taken from reflected attacks by additional 4%. +# +310514# +ATK +2%, MATK +2% +-------------------------- +Refine Level +7: +ATK +2%, MATK +2% +-------------------------- +Refine Level +9: +ATK +2%, MATK +2% +-------------------------- +Refine Level +11: +ATK +4%, MATK +4% +# +310515# +Decreases After Skill Delay by 4%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by additional 4%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by additional 4%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by additional 4%. +# +310516# +Increases damage of Dragon Breath and Dragon Breath - Water by 15%. +-------------------------- +Refine Level +7: +Increases damage of Dragon Breath and Dragon Breath - Water by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Dragon Breath and Dragon Breath - Water by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Dragon Breath and Dragon Breath - Water by additional 15%. +# +310517# +Increases damage of Wind Cutter and Ignition Break by 15%. +-------------------------- +Refine Level +7: +Increases damage of Wind Cutter and Ignition Break by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Wind Cutter and Ignition Break by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Wind Cutter by additional 15%. +Decreases Ignition Break skill cooldown by 0.3 seconds. +# +310518# +Increases damage of Sonic Wave and Hundred Spear by 15%. +-------------------------- +Refine Level +7: +Increases damage of Sonic Wave and Hundred Spear by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Sonic Wave and Hundred Spear by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Sonic Wave by additional 15%. +Decreases Hundred Spear skill cooldown by 0.5 seconds. +# +310519# +Increases damage of Overbrand and Earth Drive by 15%. +-------------------------- +Refine Level +7: +Increases damage of Overbrand and Earth Drive by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Overbrand and Earth Drive by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Overbrand by additional 15%. +Decreases Earth Drive skill cooldown by 1 second. +# +310520# +Increases damage of Banishing Point and Cannon Spear by 15%. +-------------------------- +Refine Level +7: +Increases damage of Banishing Point and Cannon Spear by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Banishing Point and Cannon Spear by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Banishing Point and Cannon Spear by additional 15%. +# +310521# +Increases damage of Pressure and Genesis Ray by 15%. +-------------------------- +Refine Level +7: +Increases damage of Pressure and Genesis Ray by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Pressure and Genesis Ray by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Pressure and Genesis Ray by additional 15%. +# +310522# +Increases damage of Knuckle Boost and Arms Cannon by 15%. +-------------------------- +Refine Level +7: +Increases damage of Knuckle Boost and Arms Cannon by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Knuckle Boost and Arms Cannon by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Knuckle Boost and Arms Cannon by additional 15%. +# +310523# +Increases damage of Vulcan Arm and Axe Boomerang by 15%. +-------------------------- +Refine Level +7: +Increases damage of Vulcan Arm and Axe Boomerang by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Vulcan Arm and Axe Boomerang by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Vulcan Arm by additional 15%. +Decreases Axe Boomerang skill cooldown by 2 seconds. +# +310524# +Increases damage of Axe Tornado and Power Swing by 15%. +-------------------------- +Refine Level +7: +Increases damage of Axe Tornado and Power Swing by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Axe Tornado and Power Swing by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Axe Tornado and Power Swing by additional 15%. +# +310525# +Increases damage of Cart Tornado and Hell's Plant by 15%. +-------------------------- +Refine Level +7: +Increases damage of Cart Tornado and Hell's Plant by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Cart Tornado and Hell's Plant by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Cart Tornado and Hell's Plant by additional 15%. +# +310526# +Increases damage of Crazy Weed and Cart Cannon by 15%. +-------------------------- +Refine Level +7: +Increases damage of Crazy Weed and Cart Cannon by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Crazy Weed and Cart Cannon by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Cart Cannon by additional 15%. +Decreases Crazy Weed skill cooldown by 1 second. +# +310527# +Increases damage of Acid Demonstration and Spore Explosion by 15%. +-------------------------- +Refine Level +7: +Increases damage of Acid Demonstration and Spore Explosion by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Acid Demonstration and Spore Explosion by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Acid Demonstration and Spore Explosion by additional 15%. +# +310528# +Increases damage of Sonic Blow and Cross Impact by 15%. +-------------------------- +Refine Level +7: +Increases damage of Sonic Blow and Cross Impact by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Sonic Blow and Cross Impact by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Sonic Blow and Cross Impact by additional 15%. +# +310529# +Increases damage of Cross Ripper Slasher and Rolling Cutter by 15%. +-------------------------- +Refine Level +7: +Increases damage of Cross Ripper Slasher and Rolling Cutter by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Cross Ripper Slasher and Rolling Cutter by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Cross Ripper Slasher and Rolling Cutter by additional 15%. +# +310530# +Increases damage of Soul Destroyer and Counter Slash by 15%. +-------------------------- +Refine Level +7: +Increases damage of Soul Destroyer and Counter Slash by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Soul Destroyer and Counter Slash by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Soul Destroyer and Counter Slash by additional 15%. +# +310531# +Increases damage of Fatal Menace and Raid by 15%. +-------------------------- +Refine Level +7: +Increases damage of Fatal Menace and Raid by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Fatal Menace and Raid by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Fatal Menace and Raid by additional 15%. +# +310532# +Increases Magical Damage with every element by 15%. +-------------------------- +Refine Level +7: +Increases Magical Damage with every element by additional 15%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by additional 15%. +-------------------------- +Refine Level +11: +Increases Magical Damage with every element by additional 15%. +# +310533# +Increases damage of Triangle Shot by 15%. +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +7: +Increases damage of Triangle Shot by additional 15%. +Increases Ranged Physical Damage by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Triangle Shot by additional 15%. +Increases Ranged Physical Damage by additional 10%. +-------------------------- +Refine Level +11: +Increases damage of Triangle Shot by additional 15%. +Increases Ranged Physical Damage by additional 15%. +# +310534# +Increases damage of Crimson Rock and Earth Strain by 15%. +-------------------------- +Refine Level +7: +Increases damage of Crimson Rock and Earth Strain by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Crimson Rock and Earth Strain by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Crimson Rock and Earth Strain by additional 15%. +# +310535# +Increases damage of Jack Frost and Chain Lightning by 15%. +-------------------------- +Refine Level +7: +Increases damage of Jack Frost and Chain Lightning by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Jack Frost and Chain Lightning by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Jack Frost and Chain Lightning by additional 15%. +# +310536# +Increases damage of Comet and Tetra Vortex by 15%. +-------------------------- +Refine Level +7: +Increases damage of Comet and Tetra Vortex by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Comet and Tetra Vortex by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Comet and Tetra Vortex by additional 15%. +# +310537# +Increases damage of Killing Cloud and Poison Buster by 15%. +-------------------------- +Refine Level +7: +Increases damage of Killing Cloud and Poison Buster by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Killing Cloud and Poison Buster by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Killing Cloud and Poison Buster by additional 15%. +# +310538# +Increases damage of Psychic Wave and Varetyr Spear by 15%. +-------------------------- +Refine Level +7: +Increases damage of Psychic Wave and Varetyr Spear by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Psychic Wave and Varetyr Spear by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Psychic Wave and Varetyr Spear by additional 15%. +# +310539# +Increases damage of Diamond Dust and Earth Grave by 15%. +-------------------------- +Refine Level +7: +Increases damage of Diamond Dust and Earth Grave by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Diamond Dust and Earth Grave by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Diamond Dust and Earth Grave by additional 15%. +# +310540# +Increases damage of Magnus Exorcismus and Adoramus by 15%. +-------------------------- +Refine Level +7: +Increases damage of Magnus Exorcismus and Adoramus by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Magnus Exorcismus and Adoramus by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Magnus Exorcismus and Adoramus by additional 15%. +# +310541# +Increases damage of Judex by 15%. +Increases Magical Damage by 5%. +-------------------------- +Refine Level +7: +Increases damage of Judex by additional 15%. +Increases Magical Damage by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Judex by additional 15%. +Increases Magical Damage by additional 10%. +-------------------------- +Refine Level +11: +Increases damage of Judex by additional 15%. +Increases Magical Damage by additional 15%. +# +310542# +Increases damage of Duple Light by 15%. +Increases Melee Physical Damage by 5%. +-------------------------- +Refine Level +7: +Increases damage of Duple Light by additional 15%. +Increases Melee Physical Damage by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Duple Light by additional 15%. +Increases Melee Physical Damage by additional 10%. +-------------------------- +Refine Level +11: +Increases damage of Duple Light by additional 15%. +Increases Melee Physical Damage by additional 15%. +# +310543# +Increases damage of Tiger Cannon and Fallen Empire by 15%. +-------------------------- +Refine Level +7: +Increases damage of Tiger Cannon and Fallen Empire by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Tiger Cannon and Fallen Empire by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Tiger Cannon and Fallen Empire by additional 15%. +# +310544# +Increases damage of Rampage Blaster and Ride in Lightning by 15%. +-------------------------- +Refine Level +7: +Increases damage of Rampage Blaster and Ride in Lightning by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Rampage Blaster and Ride in Lightning by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Ride in Lightning by additional 15%. +Decreases Rampage Blaster skill cooldown by 0.5 seconds. +# +310545# +Increases damage of Gate of Hell and Knuckle Arrow by 15%. +-------------------------- +Refine Level +7: +Increases damage of Gate of Hell and Knuckle Arrow by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Gate of Hell and Knuckle Arrow by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Gate of Hell and Knuckle Arrow by additional 15%. +# +310546# +Increases damage of Cluster Bomb by 15%. +-------------------------- +Refine Level +7: +Increases damage of Cluster Bomb by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Cluster Bomb by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Cluster Bomb by additional 15%. +# +310547# +Increases damage of Sharp Shooting by 15%. +Increases Critical Damage by 10%. +-------------------------- +Refine Level +7: +Increases damage of Sharp Shooting by additional 15%. +Increases Critical Damage by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Sharp Shooting by additional 15%. +Increases Critical Damage by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Sharp Shooting by additional 15%. +Increases Critical Damage by additional 15%. +# +310548# +Increases damage of Aimed Bolt and Arrow Storm by 15%. +-------------------------- +Refine Level +7: +Increases damage of Aimed Bolt and Arrow Storm by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Aimed Bolt and Arrow Storm by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Aimed Bolt and Arrow Storm by additional 15%. +# +310549# +Increases damage of Metallic Sound and Neutral elemental magical damage by 5%. +-------------------------- +Refine Level +7: +Increases damage of Metallic Sound and Neutral elemental magical damage by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Metallic Sound and Neutral elemental magical damage by additional 10%. +-------------------------- +Refine Level +11: +Increases damage of Metallic Sound and Neutral elemental magical damage by additional 15%. +# +310550# +Increases damage of Reverberation by 15%. +Increases all elemental magical damage by 5%. +-------------------------- +Refine Level +7: +Increases damage of Reverberation by additional 15%. +Increases all elemental magical damage by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Reverberation by 15%. +Increases all elemental magical damage by additional 5%. +-------------------------- +Refine Level +11: +Increases damage of Reverberation by additional 15%. +Increases all elemental magical damage by additional 10%. +# +310551# +Increases damage of Arrow Vulcan and Severe Rainstorm by 15%. +-------------------------- +Refine Level +7: +Increases damage of Arrow Vulcan and Severe Rainstorm by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Arrow Vulcan and Severe Rainstorm by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Arrow Vulcan and Severe Rainstorm by additional 15%. +# +310552# +Increases damage of Prominence Kick and Solar Burst by 15%. +-------------------------- +Refine Level +7: +Increases damage of Prominence Kick and Solar Burst by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Prominence Kick and Solar Burst by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Prominence Kick and Solar Burst by additional 15%. +# +310553# +Increases damage of New Moon Kick and Full Moon Kick by 15%. +-------------------------- +Refine Level +7: +Increases damage of New Moon Kick and Full Moon Kick by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of New Moon Kick and Full Moon Kick by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of New Moon Kick and Full Moon Kick by additional 15%. +# +310554# +Increases damage of Flash Kick and Falling Star by 15%. +-------------------------- +Refine Level +7: +Increases damage of Flash Kick and Falling Star by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Flash Kick and Falling Star by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Flash Kick and Falling Star by additional 15%. +# +310555# +Increases damage of Esma and Eswhoo by 15%. +-------------------------- +Refine Level +7: +Increases damage of Esma and Eswhoo by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Esma and Eswhoo by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Esma and Eswhoo by additional 15%. +# +310556# +Increases damage of Espa by 15%. +-------------------------- +Refine Level +7: +Increases damage of Espa by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Espa by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Espa by additional 15%. +# +310557# +Increases damage of Curse Explosion by 15%. +Increases Shadow elemental magical damage by 5%. +-------------------------- +Refine Level +7: +Increases damage of Curse Explosion by additional 15%. +Increases Shadow elemental magical damage by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Curse Explosion by 15%. +Increases Shadow elemental magical damage by additional 10%. +-------------------------- +Refine Level +11: +Increases damage of Curse Explosion by additional 15%. +Increases Shadow elemental magical damage by additional 15%. +# +310558# +Increases damage of Desperado, Fire Dance and Hammer of God by 15%. +-------------------------- +Refine Level +7: +Increases damage of Desperado, Fire Dance and Hammer of God by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Desperado, Fire Dance and Hammer of God by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Desperado, Fire Dance and Hammer of God by additional 15%. +# +310559# +Increases damage of Fire Rain, Howling Mine and Dragon Tail by 15%. +-------------------------- +Refine Level +7: +Increases damage of Fire Rain, Howling Mine and Dragon Tail by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Fire Rain, Howling Mine and Dragon Tail by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Fire Rain, Howling Mine and Dragon Tail by additional 15%. +# +310560# +Increases damage of Shattering Storm, Banishing Buster and Round Trip by 15%. +-------------------------- +Refine Level +7: +Increases damage of Shattering Storm, Banishing Buster and Round Trip by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Shattering Storm, Banishing Buster and Round Trip by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Shattering Storm, Banishing Buster and Round Trip by additional 15%. +# +310561# +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 15%. +-------------------------- +Refine Level +7: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 15%. +# +310562# +Increases damage of Cross Slash and Swirling Petal by 15%. +-------------------------- +Refine Level +7: +Increases damage of Cross Slash and Swirling Petal by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Cross Slash and Swirling Petal by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Cross Slash and Swirling Petal by additional 15%. +# +310563# +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by 15%. +-------------------------- +Refine Level +7: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 15%. +# +310564# +Decreases Tuna Party and Tasty Shrimp Party skill cooldown by 1 second. +-------------------------- +Refine Level +7: +Decreases Tuna Party and Tasty Shrimp Party skill cooldown by additional 1 second. +-------------------------- +Refine Level +9: +Decreases Tuna Party and Tasty Shrimp Party skill cooldown by additional 2 seconds. +-------------------------- +Refine Level +11: +Decreases Tuna Party and Tasty Shrimp Party skill cooldown by additional 2 seconds. +# +310565# +Increases damage of Silvervine Stem Spear and Catnip Meteor by 15%. +-------------------------- +Refine Level +7: +Increases damage of Silvervine Stem Spear and Catnip Meteor by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Silvervine Stem Spear and Catnip Meteor by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Silvervine Stem Spear and Catnip Meteor by additional 15%. +# +310566# +Increases damage of Picky Peck and Lunatic Carrot Beat by 15%. +-------------------------- +Refine Level +7: +Increases damage of Picky Peck and Lunatic Carrot Beat by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Picky Peck and Lunatic Carrot Beat by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Picky Peck and Lunatic Carrot Beat by additional 15%. +# +310567# +FLEE +10 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 6%). +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by additional 6%). +-------------------------- +Refine Level +11: +Increases Attack Speed (Decreases After Attack Delay by additional 8%). +# +310568# +Decreases Variable Casting Time by 6%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by additional 8%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 8%. +-------------------------- +Refine Level +11: +Decreases Variable Casting Time by additional 8%. +# +310569# +Critical +10 +-------------------------- +Refine Level +7: +Increases Critical Damage by 6%. +-------------------------- +Refine Level +9: +Increases Critical Damage by additional 6%. +-------------------------- +Refine Level +11: +Increases Critical Damage by additional 8%. +# +310570# +HIT +20 +-------------------------- +Refine Level +7: +Perfect HIT +6% +-------------------------- +Refine Level +9: +Perfect HIT +6% +-------------------------- +Refine Level +11: +Perfect HIT +8% +# +310571# +FLEE +20 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 6%). +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by additional 8%). +-------------------------- +Refine Level +11: +Increases Attack Speed (Decreases After Attack Delay by additional 8%). +# +310572# +Decreases Variable Casting Time by 8%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by additional 8%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 8%. +-------------------------- +Refine Level +11: +Decreases Variable Casting Time by additional 8%. +# +310573# +Critical +10 +-------------------------- +Refine Level +7: +Increases Critical Damage by 6%. +-------------------------- +Refine Level +9: +Increases Critical Damage by additional 8%. +-------------------------- +Refine Level +11: +Increases Critical Damage by additional 8%. +# +310574# +HIT +20 +-------------------------- +Refine Level +7: +Perfect HIT +6% +-------------------------- +Refine Level +9: +Perfect HIT +8% +-------------------------- +Refine Level +11: +Perfect HIT +8% +# +310575# +FLEE +30 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 8%). +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by additional 8%). +-------------------------- +Refine Level +11: +Increases Attack Speed (Decreases After Attack Delay by additional 8%). +# +310576# +MATK +30 +Decreases Variable Casting Time by 8%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by additional 8%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 8%. +-------------------------- +Refine Level +11: +Decreases Variable Casting Time by additional 8%. +# +310577# +Critical +15 +-------------------------- +Refine Level +7: +Increases Critical Damage by 8%. +-------------------------- +Refine Level +9: +Increases Critical Damage by additional 8%. +-------------------------- +Refine Level +11: +Increases Critical Damage by additional 8%. +# +310578# +HIT +30 +-------------------------- +Refine Level +7: +Perfect HIT +8% +-------------------------- +Refine Level +9: +Perfect HIT +8% +-------------------------- +Refine Level +11: +Perfect HIT +8% +# +310579# +Decreases damage taken from Normal and Boss class by 3%. +-------------------------- +Refine Level +7: +Decreases damage taken from against enemies of all elements by 3%. +-------------------------- +Refine Level +9: +Decreases damage taken from all sized enemies by 3%. +-------------------------- +Refine Level +11: +Decreases damage taken from all race, except Players, by 3%. +# +310580# +Decreases damage taken from Normal and Boss class by 5%. +-------------------------- +Refine Level +7: +Decreases damage taken from against enemies of all elements by 5%. +-------------------------- +Refine Level +9: +Decreases damage taken from all sized enemies by 5%. +-------------------------- +Refine Level +11: +Decreases damage taken from all race, except Players, by 5%. +# +310581# +Decreases damage taken from Normal and Boss class by 7%. +-------------------------- +Refine Level +7: +Decreases damage taken from against enemies of all elements by 7%. +-------------------------- +Refine Level +9: +Decreases damage taken from all sized enemies by 7%. +-------------------------- +Refine Level +11: +Decreases damage taken from all race, except Players, by 7%. +# +310582# +Increases Physical Damage and Magical Damage with every element by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage and Magical Damage with every element by additional 2%. +-------------------------- +Refine Level +9: +Increases Physical Damage and Magical Damage with every element by additional 2%. +-------------------------- +Refine Level +11: +Increases Physical Damage and Magical Damage with every element by additional 2%. +# +310583# +Increases Physical Damage and Magical Damage with every element by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage and Magical Damage with every element by additional 2%. +-------------------------- +Refine Level +9: +Increases Physical Damage and Magical Damage with every element by additional 3%. +-------------------------- +Refine Level +11: +Increases Physical Damage and Magical Damage with every element by additional 3%. +# +310584# +Increases Physical Damage and Magical Damage with every element by 3%. +-------------------------- +Refine Level +7: +Increases Physical Damage and Magical Damage with every element by additional 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage and Magical Damage with every element by additional 3%. +-------------------------- +Refine Level +11: +Increases Physical Damage and Magical Damage with every element by additional 3%. +# +310585# +Decreases damage taken from reflected attacks by 2%. +-------------------------- +Refine Level +7: +Decreases damage taken from reflected attacks by additional 2%. +-------------------------- +Refine Level +9: +Decreases damage taken from reflected attacks by additional 3%. +-------------------------- +Refine Level +11: +Decreases damage taken from reflected attacks by additional 3%. +# +310586# +Decreases damage taken from reflected attacks by 3%. +-------------------------- +Refine Level +7: +Decreases damage taken from reflected attacks by additional 3%. +-------------------------- +Refine Level +9: +Decreases damage taken from reflected attacks by additional 4%. +-------------------------- +Refine Level +11: +Decreases damage taken from reflected attacks by additional 4%. +# +310587# +Decreases damage taken from reflected attacks by 4%. +-------------------------- +Refine Level +7: +Decreases damage taken from reflected attacks by additional 4%. +-------------------------- +Refine Level +9: +Decreases damage taken from reflected attacks by additional 5%. +-------------------------- +Refine Level +11: +Decreases damage taken from reflected attacks by additional 5%. +# +310588# +MaxHP +5%, MaxHP +1500 +-------------------------- +Refine Level +7: +MaxHP +2% +-------------------------- +Refine Level +9: +MaxHP +2% +-------------------------- +Refine Level +11: +MaxHP +3% +# +310589# +MaxSP +5%, MaxSP +300 +-------------------------- +Refine Level +7: +MaxSP +2% +-------------------------- +Refine Level +9: +MaxSP +2% +-------------------------- +Refine Level +11: +MaxSP +3% +# +310590# +Increases Healing skills effectiveness by 3%. +-------------------------- +Refine Level +7: +Increases Healing skills effectiveness by additional 4%. +-------------------------- +Refine Level +9: +Increases Healing skills effectiveness by additional 5%. +-------------------------- +Refine Level +11: +Increases Healing skills effectiveness by additional 5%. +# +310591# +MaxHP +5%, MaxHP +2000 +-------------------------- +Refine Level +7: +MaxHP +3% +-------------------------- +Refine Level +9: +MaxHP +4% +-------------------------- +Refine Level +11: +MaxHP +5% +# +310592# +MaxSP +5%, MaxSP +400 +-------------------------- +Refine Level +7: +MaxSP +3% +-------------------------- +Refine Level +9: +MaxSP +4% +-------------------------- +Refine Level +11: +MaxSP +5% +# +310593# +Increases Healing skills effectiveness by 5%. +-------------------------- +Refine Level +7: +Increases Healing skills effectiveness by additional 5%. +-------------------------- +Refine Level +9: +Increases Healing skills effectiveness by additional 5%. +-------------------------- +Refine Level +11: +Increases Healing skills effectiveness by additional 5%. +# +310594# +MaxHP +5%, MaxHP +2500 +-------------------------- +Refine Level +7: +MaxHP +5% +-------------------------- +Refine Level +9: +MaxHP +5% +-------------------------- +Refine Level +11: +MaxHP +5% +# +310595# +MaxSP +5%, MaxSP +450 +-------------------------- +Refine Level +7: +MaxSP +5% +-------------------------- +Refine Level +9: +MaxSP +5% +-------------------------- +Refine Level +11: +MaxSP +5% +# +310596# +Increases Healing skills effectiveness by 5%. +-------------------------- +Refine Level +7: +Increases Healing skills effectiveness by additional 5%. +-------------------------- +Refine Level +9: +Increases Healing skills effectiveness by additional 7%. +-------------------------- +Refine Level +11: +Increases Healing skills effectiveness by additional 7%. +# +310597# +MaxHP +5%, MaxSP +5%, MaxHP +1200, MaxSP +250 +-------------------------- +Refine Level +7: +MaxHP +1%, MaxSP +1% +-------------------------- +Refine Level +9: +MaxHP +2%, MaxSP +2% +-------------------------- +Refine Level +11: +MaxHP +2%, MaxSP +2% +# +310598# +MaxHP +5%, MaxSP +5%, MaxHP +1500, MaxSP +300 +-------------------------- +Refine Level +7: +MaxHP +2%, MaxSP +2% +-------------------------- +Refine Level +9: +MaxHP +3%, MaxSP +3% +-------------------------- +Refine Level +11: +MaxHP +4%, MaxSP +4% +# +310599# +MaxHP +5%, MaxSP +5%, MaxHP +2000, MaxSP +350 +-------------------------- +Refine Level +7: +MaxHP +3%, MaxSP +3% +-------------------------- +Refine Level +9: +MaxHP +4%, MaxSP +4% +-------------------------- +Refine Level +11: +MaxHP +5%, MaxSP +5% +# +310600# +Decreases Fixed Casting Time by 0.5 seconds. +# +310601# +Decreases Fixed Casting Time by 0.7 seconds. +# +310602# +Decreases Fixed Casting Time by 1 second. +# +310603# +Increases Magic Damage against enemies of every size by 2%. +-------------------------- +Refine Level +7: +Increases Magic Damage against enemies of every size by additional 2%. +-------------------------- +Refine Level +9: +Increases Magic Damage against enemies of every size by additional 2%. +-------------------------- +Refine Level +11: +Increases Magic Damage against enemies of every size by additional 2%. +# +310604# +Increases Physical Damage against enemies of every size by 2%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by additional 2%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by additional 2%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by additional 2%. +# +310605# +Increases Magic Damage against enemies of every size by 3%. +-------------------------- +Refine Level +7: +Increases Magic Damage against enemies of every size by additional 3%. +-------------------------- +Refine Level +9: +Increases Magic Damage against enemies of every size by additional 3%. +-------------------------- +Refine Level +11: +Increases Magic Damage against enemies of every size by additional 3%. +# +310606# +Increases Physical Damage against enemies of every size by 3%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by additional 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by additional 3%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by additional 3%. +# +310607# +Increases Magic Damage against enemies of every size by 4%. +-------------------------- +Refine Level +7: +Increases Magic Damage against enemies of every size by additional 4%. +-------------------------- +Refine Level +9: +Increases Magic Damage against enemies of every size by additional 4%. +-------------------------- +Refine Level +11: +Increases Magic Damage against enemies of every size by additional 4%. +# +310608# +Increases Physical Damage against enemies of every size by 4%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by additional 4%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by additional 4%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by additional 4%. +# +310609# +Physical attacks have a 3% chance to increase VIT by 50 and ATK by 25% for 10 seconds. +# +310610# +Magical attacks have a 3% chance to increase INT by 50 and MATK by 25% for 10 seconds. +# +310611# +Physical attacks have a 3% chance to increase DEX by 50 and Ranged Physical Damage by 15% for 10 seconds. +# +310612# +Physical attacks have a 3% chance to increase STR by 50 and Melee Physical Damage by 15% for 10 seconds. +# +310613# +Physical attacks have a 3% chance to increase AGI by 50 and Critical Damage by 25% for 10 seconds. +# +310614# +Magical attacks have a 3% chance to increase LUK by 50 and Magical Damage with every element by 15% for 10 seconds. +# +310615# +ATK +18 +Increases Attack Speed (Decreases After Attack Delay by 4%). +# +310616# +HIT +8 +Increases Ranged Physical Damage by 4%. +# +310617# +Critical +6 +Increases Critical Damage by 6%. +# +310618# +Perfect HIT +2% +Increases Melee Physical Damage by 4%. +# +310619# +MATK +18 +Decreases Variable Casting Time by 4%. +# +310620# +ATK +22 +Increases Attack Speed (Decreases After Attack Delay by 6%). +# +310621# +HIT +12 +Increases Ranged Physical Damage by 6%. +# +310622# +Critical +9 +Increases Critical Damage by 8%. +# +310623# +Perfect HIT +3% +Increases Melee Physical Damage by 6%. +# +310624# +MATK +22 +Decreases Variable Casting Time by 6%. +# +310625# +ATK +26 +Increases Attack Speed (Decreases After Attack Delay by 8%). +# +310626# +HIT +16 +Increases Ranged Physical Damage by 8%. +# +310627# +CRI +12 +Increases Critical Damage by 10%. +# +310628# +Perfect HIT +4% +Increases Melee Physical Damage by 8%. +# +310629# +MATK +26 +Decreases Variable Casting Time by 8%. +# +310630# +ATK +30 +Increases Attack Speed (Decreases After Attack Delay by 10%). +# +310631# +HIT +20 +Increases Ranged Physical Damage by 10%. +# +310632# +CRI +15 +Increases Critical Damage by 12%. +# +310633# +Perfect HIT +5% +Increases Melee Physical Damage by 10%. +# +310634# +MATK +30 +Decreases Variable Casting Time by 10%. +# +310635# +Increases HP Recovery Rate by 20%. +# +310636# +Increases SP Recovery Rate by 20%. +# +310637# +Increases HP Recovery Rate by 30%. +# +310638# +Increases SP Recovery Rate by 30%. +# +310639# +Increases HP Recovery Rate by 40%. +# +310640# +Increases SP Recovery Rate by 40%. +# +310641# +Increases HP Recovery Rate by 50%. +# +310642# +Increases SP Recovery Rate by 50%. +# +310643# +Physical attacks have a 4% chance to absorb 2% of the inflicted damage as HP. +# +310644# +Physical attacks have a 1% chance to absorb 3% of the inflicted damage as SP. +# +310645# +Magical attacks have a 4% chance to recover 700 HP every 0.5 seconds for 19 times. +# +310646# +Magical attacks have a 2% chance to recover 100 SP every 0.5 seconds for 19 times. +# +310647# +Increases Melee and Ranged Physical Damage by 7%. +Increases Magical Damage with every element by 7%. +# +310654# +ASPD +1 +# +310658# +Decreases Fixed Casting Time by 0.1 seconds. +-------------------------- +When equipped with Minor Casting Reduction(Garment): +Decreases Fixed Casting Time by additional 0.3 seconds. +# +310659# +Decreases Variable Casting Time by 5%. +-------------------------- +When equipped with Variable Casting Time Reduction(Garment): +Decreases Fixed Casting Time by 0.5 seconds. +# +310660# +Increases Ranged Physical Damage by 4%. +-------------------------- +When equipped with Ranged Stone(Upper): +Increases Ranged Physical Damage by additional 2%. +-------------------------- +When equipped with Ranged Stone(Mid): +Increases Ranged Physical Damage by additional 2%. +-------------------------- +When equipped with Ranged Stone(Lower): +Increases Ranged Physical Damage by additional 2%. +# +310661# +Increases Melee Physical Damage by 4%. +-------------------------- +When equipped with Melee Stone(Upper): +Increases Melee Physical Damage by additional 2%. +-------------------------- +When equipped with Melee Stone(Mid): +Increases Melee Physical Damage by additional 2%. +-------------------------- +When equipped with Melee Stone(Lower): +Increases Melee Physical Damage by additional 2%. +# +310662# +Physical attacks have a 1% chance to absorb 1% of the inflicted damage as HP. +# +310663# +Physical attacks have a 1% chance to absorb 1% of the inflicted damage as SP. +# +310664# +Increases Magical Damage with every element by 3%. +-------------------------- +When equipped with Magic Power Stone(Mid) and Magic Power Stone(Lower): +Increases Magical Damage with every element by additional 6%. +# +310665# +Increases Magical Damage with every element by 3%. +# +310666# +Increases Magical Damage with every element by 3%. +# +310667# +Increases Magical Damage with every element by 4%. +-------------------------- +When equipped with Magic Power Stone(Upper): +Increases Magical Damage with every element by additional 2%. +-------------------------- +When equipped with Magic Power Stone(Mid): +Increases Magical Damage with every element by additional 2%. +-------------------------- +When equipped with Magic Power Stone(Lower): +Increases Magical Damage with every element by additional 2%. +# +310668# +(Effect removed due event termination.) +# +310669# +(Effect removed due event termination.) +# +310670# +(Effect removed due event termination.) +# +310671# +(Effect removed due event termination.) +# +310672# +(Effect removed due event termination.) +# +310673# +(Effect removed due event termination.) +# +310674# +A stellar essence that strengthens the wearer. +-------------------------- +For each 15 base POW: +ATK +5 +Increases Melee Physical Damage by 1%. +-------------------------- +If enchanted Armor's Grade is D: +For each 15 base POW: +P.ATK +1 +Increases Melee Physical Damage by additional 1%. +-------------------------- +If enchanted Armor's Grade is C: +For each 15 base POW: +P.ATK +1 +Increases Melee Physical Damage by additional 1%. +-------------------------- +If enchanted Armor's Grade is B: +For each 15 base POW: +P.ATK +1 +Increases Melee Physical Damage by additional 1%. +-------------------------- +If enchanted Armor's Grade is A: +For each 15 base POW: +P.ATK +1 +Increases Melee Physical Damage by additional 1%. +# +310675# +A stellar essence that strengthens the wearer. +-------------------------- +For each 15 base POW: +ATK +7 +Increases Melee Physical Damage by 1%. +-------------------------- +If enchanted Armor's Grade is D: +For each 15 base POW: +P.ATK +1 +Increases Melee Physical Damage by additional 1%. +-------------------------- +If enchanted Armor's Grade is C: +For each 15 base POW: +P.ATK +1 +Increases Melee Physical Damage by additional 1%. +-------------------------- +If enchanted Armor's Grade is B: +For each 15 base POW: +P.ATK +2 +Increases Melee Physical Damage by additional 1%. +-------------------------- +If enchanted Armor's Grade is A: +For each 15 base POW: +P.ATK +2 +Increases Melee Physical Damage by additional 2%. +# +310676# +A stellar essence that strengthens the wearer. +-------------------------- +For each 15 base POW: +ATK +15 +Increases Melee Physical Damage by 2%. +-------------------------- +If enchanted Armor's Grade is D: +For each 15 base POW: +P.ATK +1 +Increases Melee Physical Damage by additional 1%. +-------------------------- +If enchanted Armor's Grade is C: +For each 15 base POW: +P.ATK +2 +Increases Melee Physical Damage by additional 1%. +-------------------------- +If enchanted Armor's Grade is B: +For each 15 base POW: +P.ATK +2 +Increases Melee Physical Damage by additional 2%. +-------------------------- +If enchanted Armor's Grade is A: +For each 15 base POW: +P.ATK +3 +Increases Melee Physical Damage by additional 3%. +# +310677# +A stellar essence that strengthens the wearer. +-------------------------- +For each 15 base STA: +MaxHP +1%, RES +1 +-------------------------- +If enchanted Armor's Grade is D: +For each 15 base STA: +MaxHP +1%, RES +1 +-------------------------- +If enchanted Armor's Grade is C: +For each 15 base STA: +MaxHP +1%, RES +1 +-------------------------- +If enchanted Armor's Grade is B: +For each 15 base STA: +MaxHP +1%, RES +1 +-------------------------- +If enchanted Armor's Grade is A: +For each 15 base STA: +MaxHP +1%, RES +2 +# +310678# +A stellar essence that strengthens the wearer. +-------------------------- +For each 15 base STA: +MaxHP +2%, RES +2 +-------------------------- +If enchanted Armor's Grade is D: +For each 15 base STA: +MaxHP +1%, RES +1 +-------------------------- +If enchanted Armor's Grade is C: +For each 15 base STA: +MaxHP +1%, RES +1 +-------------------------- +If enchanted Armor's Grade is B: +For each 15 base STA: +MaxHP +2%, RES +1 +-------------------------- +If enchanted Armor's Grade is A: +For each 15 base STA: +MaxHP +2%, RES +2 +# +310679# +A stellar essence that strengthens the wearer. +-------------------------- +For each 15 base STA: +MaxHP +3%, RES +4 +-------------------------- +If enchanted Armor's Grade is D: +For each 15 base STA: +MaxHP +1%, RES +1 +-------------------------- +If enchanted Armor's Grade is C: +For each 15 base STA: +MaxHP +2%, RES +2 +-------------------------- +If enchanted Armor's Grade is B: +For each 15 base STA: +MaxHP +2%, RES +2 +-------------------------- +If enchanted Armor's Grade is A: +For each 15 base STA: +MaxHP +3%, RES +3 +# +310680# +A stellar essence that strengthens the wearer. +-------------------------- +For each 15 base CON: +Increases Ranged Physical Damage by 1%. +ATK +5 +-------------------------- +If enchanted Armor's Grade is D: +For each 15 base CON: +Increases Ranged Physical Damage by additional 1%. +P.ATK +1 +-------------------------- +If enchanted Armor's Grade is C: +For each 15 base CON: +Increases Ranged Physical Damage by additional 1%. +P.ATK +1 +-------------------------- +If enchanted Armor's Grade is B: +For each 15 base CON: +Increases Ranged Physical Damage by additional 1%. +P.ATK +1 +-------------------------- +If enchanted Armor's Grade is A: +For each 15 base CON: +Increases Ranged Physical Damage by additional 1%. +P.ATK +2 +# +310681# +A stellar essence that strengthens the wearer. +-------------------------- +For each 15 base CON: +Increases Ranged Physical Damage by 2%. +ATK +7 +-------------------------- +If enchanted Armor's Grade is D: +For each 15 base CON: +Increases Ranged Physical Damage by additional 1%. +P.ATK +1 +-------------------------- +If enchanted Armor's Grade is C: +For each 15 base CON: +Increases Ranged Physical Damage by additional 1%. +P.ATK +1 +-------------------------- +If enchanted Armor's Grade is B: +For each 15 base CON: +Increases Ranged Physical Damage by additional 1%. +P.ATK +2 +-------------------------- +If enchanted Armor's Grade is A: +For each 15 base CON: +Increases Ranged Physical Damage by additional 2%. +P.ATK +2 +# +310682# +A stellar essence that strengthens the wearer. +-------------------------- +For each 15 base CON: +Increases Ranged Physical Damage by 2%. +ATK +15 +-------------------------- +If enchanted Armor's Grade is D: +For each 15 base CON: +Increases Ranged Physical Damage by additional 1%. +P.ATK +1 +-------------------------- +If enchanted Armor's Grade is C: +For each 15 base CON: +Increases Ranged Physical Damage by additional 2%. +P.ATK +2 +-------------------------- +If enchanted Armor's Grade is B: +For each 15 base CON: +Increases Ranged Physical Damage by additional 2%. +P.ATK +2 +-------------------------- +If enchanted Armor's Grade is A: +For each 15 base CON: +Increases Ranged Physical Damage by additional 3%. +P.ATK +3 +# +310683# +A stellar essence that strengthens the wearer. +-------------------------- +For each 15 base CRT: +Increases Critical Damage by 1%. +ATK +5 +-------------------------- +If enchanted Armor's Grade is D: +For each 15 base CRT: +Increases Critical Damage by additional 1%. +P.ATK +1 +-------------------------- +If enchanted Armor's Grade is C: +For each 15 base CRT: +Increases Critical Damage by additional 1%. +P.ATK +1 +-------------------------- +If enchanted Armor's Grade is B: +For each 15 base CRT: +Increases Critical Damage by additional 1%. +P.ATK +1 +-------------------------- +If enchanted Armor's Grade is A: +For each 15 base CRT: +Increases Critical Damage by additional 1%. +P.ATK +1 +# +310684# +A stellar essence that strengthens the wearer. +-------------------------- +For each 15 base CRT: +Increases Critical Damage by 2%. +ATK +7 +-------------------------- +If enchanted Armor's Grade is D: +For each 15 base CRT: +Increases Critical Damage by additional 1%. +P.ATK +1 +-------------------------- +If enchanted Armor's Grade is C: +For each 15 base CRT: +Increases Critical Damage by additional 1%. +P.ATK +1 +-------------------------- +If enchanted Armor's Grade is B: +For each 15 base CRT: +Increases Critical Damage by additional 1%. +P.ATK +2 +-------------------------- +If enchanted Armor's Grade is A: +For each 15 base CRT: +Increases Critical Damage by additional 2%. +P.ATK +2 +# +310685# +A stellar essence that strengthens the wearer. +-------------------------- +For each 15 base CRT: +Increases Critical Damage by 3%. +ATK +15 +-------------------------- +If enchanted Armor's Grade is D: +For each 15 base CRT: +Increases Critical Damage by additional 1%. +P.ATK +1 +-------------------------- +If enchanted Armor's Grade is C: +For each 15 base CRT: +Increases Critical Damage by additional 1%. +P.ATK +1 +-------------------------- +If enchanted Armor's Grade is B: +For each 15 base CRT: +Increases Critical Damage by additional 2%. +P.ATK +3 +-------------------------- +If enchanted Armor's Grade is A: +For each 15 base CRT: +Increases Critical Damage by additional 3%. +C.Rate +1 +# +310686# +A stellar essence that strengthens the wearer. +-------------------------- +For each 15 base SPL: +MATK +5 +Increases Magical Damage with every element by 1%. +-------------------------- +If enchanted Armor's Grade is D: +For each 15 base SPL: +Increases Magical Damage with every element by additional 1%. +S.MATK +1 +-------------------------- +If enchanted Armor's Grade is C: +For each 15 base SPL: +Increases Magical Damage with every element by additional 1%. +S.MATK +1 +-------------------------- +If enchanted Armor's Grade is B: +For each 15 base SPL: +Increases Magical Damage with every element by additional 1%. +S.MATK +1 +-------------------------- +If enchanted Armor's Grade is A: +For each 15 base SPL: +Increases Magical Damage with every element by additional 1%. +S.MATK +1 +# +310687# +A stellar essence that strengthens the wearer. +-------------------------- +For each 15 base SPL: +MATK +7 +Increases Magical Damage with every element by 2%. +-------------------------- +If enchanted Armor's Grade is D: +For each 15 base SPL: +Increases Magical Damage with every element by additional 1%. +S.MATK +1 +-------------------------- +If enchanted Armor's Grade is C: +For each 15 base SPL: +Increases Magical Damage with every element by additional 1%. +S.MATK +1 +-------------------------- +If enchanted Armor's Grade is B: +For each 15 base SPL: +Increases Magical Damage with every element by additional 2%. +S.MATK +1 +-------------------------- +If enchanted Armor's Grade is A: +For each 15 base SPL: +Increases Magical Damage with every element by additional 2%. +S.MATK +2 +# +310688# +A stellar essence that strengthens the wearer. +-------------------------- +For each 15 base SPL: +MATK +15 +Increases Magical Damage with every element by 3%. +-------------------------- +If enchanted Armor's Grade is D: +For each 15 base SPL: +Increases Magical Damage with every element by additional 1%. +S.MATK +1 +-------------------------- +If enchanted Armor's Grade is C: +For each 15 base SPL: +Increases Magical Damage with every element by additional 1%. +S.MATK +1 +-------------------------- +If enchanted Armor's Grade is B: +For each 15 base SPL: +Increases Magical Damage with every element by additional 2%. +S.MATK +2 +-------------------------- +If enchanted Armor's Grade is A: +For each 15 base SPL: +Increases Magical Damage with every element by additional 3%. +S.MATK +2 +# +310689# +A stellar essence that strengthens the wearer. +-------------------------- +For each 15 base WIS: +MaxSP +1% +Increases Healing skills effectiveness by 1%. +-------------------------- +If enchanted Armor's Grade is D: +For each 15 base WIS: +MaxSP +1% +Increases Healing skills effectiveness by additional 1%. +-------------------------- +If enchanted Armor's Grade is C: +For each 15 base WIS: +MaxSP +1% +Increases Healing skills effectiveness by 2%. +Increases Natural SP Recovery Rate by 1%. +-------------------------- +If enchanted Armor's Grade is B: +For each 15 base WIS: +MaxSP +1% +Increases Healing skills effectiveness by 2%. +Increases Natural SP Recovery Rate by additional 2%. +-------------------------- +If enchanted Armor's Grade is A: +For each 15 base WIS: +MaxSP +1% +H.PLUS +1 +# +310690# +A stellar essence that strengthens the wearer. +-------------------------- +For each 15 base WIS: +MaxSP +1% +Increases Healing skills effectiveness by 3%. +-------------------------- +If enchanted Armor's Grade is D: +For each 15 base WIS: +MaxSP +1% +Increases Healing skills effectiveness by additional 2%. +-------------------------- +If enchanted Armor's Grade is C: +For each 15 base WIS: +MaxSP +1% +Increases Healing skills effectiveness by 2%. +Increases Natural SP Recovery Rate by 1%. +-------------------------- +If enchanted Armor's Grade is B: +For each 15 base WIS: +MaxSP +1% +H.PLUS +1 +Increases Natural SP Recovery Rate by additional 2%. +-------------------------- +If enchanted Armor's Grade is A: +For each 15 base WIS: +MaxSP +2% +H.PLUS +2 +# +310691# +A stellar essence that strengthens the wearer. +-------------------------- +For each 15 base WIS: +MaxSP +2% +Increases Healing skills effectiveness by 5%. +-------------------------- +If enchanted Armor's Grade is D: +For each 15 base WIS: +MaxSP +1% +Increases Healing skills effectiveness by additional 2%. +-------------------------- +If enchanted Armor's Grade is C: +For each 15 base WIS: +MaxSP +1% +Increases Healing skills effectiveness by 2%. +Increases Natural SP Recovery Rate by 2%. +-------------------------- +If enchanted Armor's Grade is B: +For each 15 base WIS: +MaxSP +2% +H.PLUS +2 +Increases Natural SP Recovery Rate by additional 3%. +-------------------------- +If enchanted Armor's Grade is A: +For each 15 base WIS: +MaxSP +2% +H.PLUS +3 +# +310692# +ATK +3% +HIT +10 +# +310693# +ATK +5% +HIT +15 +# +310694# +ATK +7% +HIT +20 +P.ATK +1 +# +310695# +ATK +10% +HIT +25 +P.ATK +2 +# +310696# +ATK +15% +HIT +30 +P.ATK +4 +# +310697# +Increases Ranged Physical Damage by 2%. +ATK +2% +# +310698# +Increases Ranged Physical Damage by 3%. +ATK +3% +# +310699# +Increases Ranged Physical Damage by 5%. +ATK +5% +P.ATK +1 +# +310700# +Increases Ranged Physical Damage by 7%. +ATK +6%. +P.ATK +2. +# +310701# +Increases Ranged Physical Damage by 10%. +ATK +7% +P.ATK +4 +# +310702# +CRI +2 +Increases Critical Damage by 2%. +# +310703# +CRI +3 +Increases Critical Damage by 3%. +# +310704# +CRI +5 +Increases Critical Damage by 5%. +P.ATK +1 +# +310705# +CRI +6 +Increases Critical Damage by 10%. +P.ATK +2 +# +310706# +CRI +8 +Increases Critical Damage by 15%. +P.ATK +2, C.Rate +1. +# +310707# +MATK +5 +Decreases Variable Casting Time by 5%. +# +310708# +MATK +7 +Decreases Variable Casting Time by 5%. +# +310709# +MATK +11 +Decreases Variable Casting Time by 7%. +S.MATK +1 +# +310710# +MATK +17 +Decreases Variable Casting Time by 10%. +S.MATK +2 +# +310711# +MATK +25 +Decreases Variable Casting Time by 15%. +S.MATK +4 +# +310712# +FLEE +5 +Increases Attack Speed (Decreases After Attack Delay by 5%). +# +310713# +FLEE +10 +Increases Attack Speed (Decreases After Attack Delay by 7%). +# +310714# +FLEE +15 +Increases Attack Speed (Decreases After Attack Delay by 7%). +# +310715# +FLEE +20 +Increases Attack Speed (Decreases After Attack Delay by 10%). +ASPD +1 +# +310716# +FLEE +30 +Increases Attack Speed (Decreases After Attack Delay by 15%). +ASPD +2 +# +310717# +MaxHP +2% +RES +1, MRES +1. +# +310718# +MaxHP +3%. +RES +2, MRES +2. +# +310719# +MaxHP +5% +RES +4, MRES +4. +# +310720# +MaxHP +7% +RES +6, MRES +6. +# +310721# +MaxHP +10% +RES +10, MRES +10. +# +310722# +Increases Healing skills effectiveness by 5%. +MaxSP +3% +Increases Natural SP Recovery Rate by 10%. +# +310723# +Increases Healing skills effectiveness by 7%. +MaxSP +5% +Increases Natural SP Recovery Rate by 15%. +# +310724# +Increases Healing skills effectiveness by 10%. +MaxSP +5% +H.PLUS +1 +Increases Natural SP Recovery Rate by 15%. +# +310725# +Increases Healing skills effectiveness by 10%. +MaxSP +7% +H.PLUS +3 +Increases Natural SP Recovery Rate by 15%. +# +310726# +Increases Healing skills effectiveness by 15%. +MaxSP +10% +H.PLUS +5 +Increases Natural SP Recovery Rate by 20%. +# +310727# +ATK +10 +-------------------------- +Refine Level +9: +ATK +10 +-------------------------- +Refine Level +11: +ATK +15 +# +310728# +ATK +15 +-------------------------- +Refine Level +9: +ATK +15 +-------------------------- +Refine Level +11: +ATK +30 +# +310729# +ATK +20 +-------------------------- +Refine Level +9: +ATK +20 +-------------------------- +Refine Level +11: +ATK +40 +# +310730# +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by additional 4%. +# +310731# +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 5%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by additional 7%. +# +310732# +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 7%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by additional 15%. +# +310733# +Increases Critical Damage by 5%. +-------------------------- +Refine Level +9: +Increases Critical Damage by additional 5%. +-------------------------- +Refine Level +11: +Increases Critical Damage by additional 7%. +# +310734# +Increases Critical Damage by 7%. +-------------------------- +Refine Level +9: +Increases Critical Damage by additional 7%. +-------------------------- +Refine Level +11: +Increases Critical Damage by additional 12%. +# +310735# +Increases Critical Damage by 10%. +-------------------------- +Refine Level +9: +Increases Critical Damage by additional 10%. +-------------------------- +Refine Level +11: +Increases Critical Damage by additional 15%. +# +310736# +MATK +10 +-------------------------- +Refine Level +9: +MATK +10 +-------------------------- +Refine Level +11: +MATK +15 +# +310737# +MATK +15 +-------------------------- +Refine Level +9: +MATK +15 +-------------------------- +Refine Level +11: +MATK +30 +# +310738# +MATK +20 +-------------------------- +Refine Level +9: +MATK +20 +-------------------------- +Refine Level +11: +MATK +40 +# +310739# +Increases Healing skills effectiveness by 5%. +MaxSP +3% +-------------------------- +Refine Level +9: +Increases Healing skills effectiveness by additional 3%. +MaxSP +2% +-------------------------- +Refine Level +11: +Increases Healing skills effectiveness by additional 5%. +MaxSP +3% +# +310740# +Increases Healing skills effectiveness by 7%. +MaxSP +5% +-------------------------- +Refine Level +9: +Increases Healing skills effectiveness by additional 5%. +MaxSP +3% +-------------------------- +Refine Level +11: +Increases Healing skills effectiveness by additional 7%. +MaxSP +5% +# +310741# +Increases Healing skills effectiveness by 10%. +MaxSP +5% +-------------------------- +Refine Level +9: +Increases Healing skills effectiveness by additional 7%. +MaxSP +4% +-------------------------- +Refine Level +11: +Increases Healing skills effectiveness by additional 10%. +MaxSP +7% +# +310742# +MaxHP +3%, DEF +25. +-------------------------- +Refine Level +9: +MaxHP +3%, DEF +15. +-------------------------- +Refine Level +11: +MaxHP +5%, DEF +25. +# +310743# +MaxHP +5%, DEF +30. +-------------------------- +Refine Level +9: +MaxHP +4%, DEF +20. +-------------------------- +Refine Level +11: +MaxHP +6%, DEF +30. +# +310744# +MaxHP +7%, DEF +45. +-------------------------- +Refine Level +9: +MaxHP +5%, DEF +30. +-------------------------- +Refine Level +11: +MaxHP +8%, DEF +45. +# +310844# +(The effect has been removed due to event termination.) +-------------------------- +# +310845# +(The effect has been removed due to event termination.) +-------------------------- +# +310846# +(The effect has been removed due to event termination.) +-------------------------- +# +310847# +(The effect has been removed due to event termination.) +-------------------------- +# +310848# +(The effect has been removed due to event termination.) +-------------------------- +# +310849# +(The effect has been removed due to event termination.) +-------------------------- +# +310851# +Decreases After Skill Delay by 1%. +# +310852# +Decreases After Skill Delay by 3%. +# +310853# +Decreases After Skill Delay by 5%. +# +310854# +Increases Attack Speed (Decreases After Attack Delay by 5%). +# +310855# +Increases Attack Speed (Decreases After Attack Delay by 7%). +# +310856# +Increases Attack Speed (Decreases After Attack Delay by 10%). +ASPD +1 +# +310857# +Decreases Variable Casting Time by 5%. +ATK +3 +# +310858# +Decreases Variable Casting Time by 7%. +ATK +5 +# +310859# +Decreases Variable Casting Time by 10%. +P.ATK +1 +# +310860# +Decreases Variable Casting Time by 10%. +S.MATK +1 +# +310861# +DEF +100 +# +310862# +DEF +150 +# +310863# +DEF +200 +Decreases damage taken from all elemental attacks by 5%. +# +310864# +Increases Melee Physical Damage by 1% . +# +310865# +Increases Melee Physical Damage by 3%. +# +310866# +Increases Melee Physical Damage by 5%. +# +310867# +Increases Ranged Physical Damage by 1%. +# +310868# +Increases Ranged Physical Damage by 3%. +# +310869# +Increases Ranged Physical Damage by 5%. +# +310870# +Increases Magical Damage with every element by 1%. +# +310871# +Increases Magical Damage with every element by 3%. +# +310872# +Increases Magical Damage with every element by 5%. +# +310873# +MaxHP +3% +# +310874# +MaxHP +5%. +# +310875# +MaxHP +7% +# +310876# +MaxSP +3% +# +310877# +MaxSP +5% +# +310878# +MaxSP +7% +# +310879# +Decreases Variable Casting Time by 7%. +MATK +5 +# +310880# +Decreases Variable Casting Time by 5%. +MATK +3 +# +310881# +For each Level of Dragon Training: +Increases Critical Damage by 2%. +-------------------------- +When equipped with Rune Knight Stone(Garment): +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Rune Knight Stone II(Garment): +Increases damage of Hundred Spear by 15%. +# +310882# +For each 2 Levels of Rune Mastery: +Increases Melee and Ranged Physical Damage by 1%. +-------------------------- +When equipped with Rune Knight Stone(Garment): +Increases damage of Dragon Breath and Dragon Breath - Water by 15%. +-------------------------- +When equipped with Rune Knight Stone II(Garment): +Increases damage of Sonic Wave by 15%. +# +310883# +For each Level of Enchant Blade: +Increases damage of Wind Cutter by 5%. +-------------------------- +When equipped with Rune Knight Stone(Garment): +MaxHP/MaxSP +10% +-------------------------- +When equipped with Rune Knight Stone II(Garment): +Increases damage of Ignition Break by 15%. +# +310884# +For each Level of Soul Expansion: +Increases Magical Damage with every element by 2%. +-------------------------- +When equipped with Warlock Stone(Garment): +Increases damage of Soul Expansion by 15%. +-------------------------- +When equipped with Warlock Stone II(Garment): +Increases damage of Jack Frost by 15%. +# +310885# +For each Level of Comet: +Decreases Fixed Casting Time by 0.1 seconds. +-------------------------- +When equipped with Warlock Stone(Garment): +Increases damage of Crimson Rock by 15%. +-------------------------- +When equipped with Warlock Stone II(Garment): +Increases damage of Jack Frost by 15%. +# +310886# +For each Level of Chain Lightning: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Warlock Stone(Garment): +Increases damage of Chain Lightning by 15%. +-------------------------- +When equipped with Warlock Stone II(Garment): +Increases damage of Comet by 15%. +# +310887# +For each Level of Inspiration: +Decreases Fixed Casting Time by 0.1 seconds. +-------------------------- +When equipped with Royal Guard Stone(Garment): +Increases damage of Cannon Spear by 15%. +-------------------------- +When equipped with Royal Guard Stone II(Garment): +Increases damage of Genesis Ray by 15%. +# +310888# +For each Level of Piety: +Increases Ranged Physical Damage and Magical Damage with every element by 2%. +-------------------------- +When equipped with Royal Guard Stone(Garment): +Increases damage of Banishing Point by 15%. +-------------------------- +When equipped with Royal Guard Stone II(Garment): +Decreases SP Consumption of Genesis Ray by 15%. +# +310889# +For each Level of Moon Slasher: +Increases damage of Overbrand by 5%. +-------------------------- +When equipped with Royal Guard Stone(Garment): +Increases damage of Cannon Spear by 15%. +-------------------------- +When equipped with Royal Guard Stone II(Garment): +Increases Magical Damage against enemies of every size by 15%. +# +310908# +There is a low chance to activate Warrior's Bravery when dealing physical damage: +-------------------------- +[Warrior's Bravery] +Increases STR by 100 and Melee Physical Damage by 10% for 10 seconds. +# +310909# +There is a low chance to activate Swordsman's Sharpness when dealing physical damage: +-------------------------- +[Swordsman's Sharpness] +Increases LUK by 100 and Critical Damage by 20% for 10 seconds. +# +310910# +There is a low chance to activate Sharpshooter's Will when dealing physical damage: +-------------------------- +[Sharpshooter's Will] +Increases DEX by 100 and Ranged Physical damage by 10% for 10 seconds. +# +310911# +There is a low chance to activate Wise Man's Knowledge when dealing magical damage: +-------------------------- +[Wise Man's Knowledge] +Increases INT by 100 and Magical Damage with every element by 10% for 10 seconds. +# +310912# +There is a low chance to activate The General's Spirit when recieving physical or magical damage: +-------------------------- +[The General's Spirit] +Increases VIT by 100 and MaxSP by 10% for 10 seconds. +# +310913# +There is a low chance to activate Assassin's Spirit when dealing physical damage: +-------------------------- +[Assassin's Spirit] +Increases AGI by 100 and ATK by 10% for 10 seconds. +# +310914# +ATK +10% +-------------------------- +When equipped with Warrior's Valor: +Increases Melee Physical Damage by 15%. +# +310915# +Increases Critical Damage by 7%. +-------------------------- +When equipped with Swordsman's Sharpness: +Increases Critical Damage by additional 30%. +# +310916# +Increases Ranged Physical Damage by 7%. +-------------------------- +When equipped with Sharpshooter's Will: +Increases Ranged Physical Damage by additional 15%. +# +310917# +MATK +10% +-------------------------- +When equipped with Wise Man's Knowledge: +Increases Magical Damage with every element by 15%. +# +310918# +MaxHP +10% +-------------------------- +When equipped with The General's Spirit: +Decreases After Skill Delay by 10%. +MaxHP +10% +# +310919# +ASPD +2 +-------------------------- +When equipped with Assassin's Spirit: +ATK +15%, Critical +15. +# +310920# +Essence of Varmundt's Power. +-------------------------- +POW +1 +-------------------------- +For each 20 base POW: +ATK +3, P.ATK +1 +-------------------------- +[Enchanted Equipment's Grade] + +For each 20 base POW: +[Grade D]: P.ATK +1 +[Grade C]: P.ATK +1 +[Grade B]: P.ATK +1 +[Grade A]: P.ATK +1 +# +310921# +Essence of Varmundt's Power. +-------------------------- +POW +2 +-------------------------- +For each 20 base POW: +ATK +4, P.ATK +2 +-------------------------- +[Enchanted Equipment's Grade] + +For each 20 base POW: +[Grade D]: P.ATK +1 +[Grade C]: P.ATK +1 +[Grade B]: P.ATK +2 +[Grade A]: P.ATK +2 +# +310922# +Essence of Varmundt's Power. +-------------------------- +POW +3 +-------------------------- +For each 20 base POW: +ATK +5, P.ATK +3 +-------------------------- +[Enchanted Equipment's Grade] + +For each 20 base POW: +[Grade D]: P.ATK +1 +[Grade C]: P.ATK +2 +[Grade B]: P.ATK +2 +[Grade A]: P.ATK +2 +# +310923# +Essence of Varmundt's Wisdom. +-------------------------- +SPL +1 +-------------------------- +For each 20 base SPL: +MATK +3, S.MATK +1 +-------------------------- +[Enchanted Equipment's Grade] + +For each 20 base SPL: +[Grade D]: S.MATK +1 +[Grade C]: S.MATK +1 +[Grade B]: S.MATK +1 +[Grade A]: S.MATK +1 +# +310924# +Essence of Varmundt's Wisdom. +-------------------------- +SPL +2 +-------------------------- +For each 20 base SPL: +MATK +4, S.MATK +2 +-------------------------- +[Enchanted Equipment's Grade] + +For each 20 base SPL: +[Grade D]: S.MATK +1 +[Grade C]: S.MATK +1 +[Grade B]: S.MATK +1 +[Grade A]: S.MATK +2 +# +310925# +Essence of Varmundt's Wisdom. +-------------------------- +SPL +3 +-------------------------- +For each 20 base SPL: +MATK +5, S.MATK +3 +-------------------------- +[Enchanted Equipment's Grade] + +For each 20 base SPL: +[Grade D]: S.MATK +1 +[Grade C]: S.MATK +2 +[Grade B]: S.MATK +2 +[Grade A]: S.MATK +2 +# +310926# +Essence of Varmundt's Concentration. +-------------------------- +CON +1 +-------------------------- +For each 20 base CON: +ATK +3, P.ATK +1 +-------------------------- +[Enchanted Equipment's Grade] + +For each 20 base CON: +[Grade D]: P.ATK +1 +[Grade C]: P.ATK +1 +[Grade B]: P.ATK +1 +[Grade A]: P.ATK +1 +# +310927# +Essence of Varmundt's Concentration. +-------------------------- +CON +2 +-------------------------- +For each 20 base CON: +ATK +4, P.ATK +2 +-------------------------- +[Enchanted Equipment's Grade] + +For each 20 base CON: +[Grade D]: P.ATK +1 +[Grade C]: P.ATK +1 +[Grade B]: P.ATK +1 +[Grade A]: P.ATK +2 +# +310928# +Essence of Varmundt's Concentration. +-------------------------- +CON +3 +-------------------------- +For each 20 base CON: +ATK +5, P.ATK +3 +-------------------------- +[Enchanted Equipment's Grade] + +For each 20 base CON: +[Grade D]: P.ATK +1 +[Grade C]: P.ATK +2 +[Grade B]: P.ATK +2 +[Grade A]: P.ATK +2 +# +310929# +Essence of Varmundt's Creativity. +-------------------------- +CRT +1 +-------------------------- +For each 20 base CRT: +ATK +3, P.ATK +1 +Increases Critical Damage by 3%. +-------------------------- +[Enchanted Equipment's Grade] + +For each 20 base CRT: +[Grade D]: P.ATK +1 +[Grade C]: P.ATK +1 +[Grade B]: P.ATK +1 +[Grade A]: P.ATK +1 +# +310930# +Essence of Varmundt's Creativity. +-------------------------- +CRT +2 +-------------------------- +For each 20 base CRT: +ATK +4, P.ATK +2 +Increases Critical Damage by 4%. +-------------------------- +[Enchanted Equipment's Grade] + +For each 20 base CRT: +[Grade D]: P.ATK +1 +[Grade C]: P.ATK +1 +[Grade B]: P.ATK +1 +[Grade A]: P.ATK +2 +# +310932# +Essence of Varmundt's Creativity. +-------------------------- +CRT +3 +-------------------------- +For each 20 base CRT: +ATK +5, P.ATK +2 +Increases Critical Damage by 5%. +-------------------------- +[Enchanted Equipment's Grade] + +For each 20 base CRT: +[Grade D]: P.ATK +1 +[Grade C]: P.ATK +1 +[Grade B]: P.ATK +1 +[Grade A]: P.ATK +2 +# +310933# +Essence of Varmundt's Restoration. +-------------------------- +WIS +1 +-------------------------- +For each 20 base WIS: +MaxSP +1% +Increases Healing skills effectiveness by 1%. +-------------------------- +[Enchanted Equipment's Grade] + +For each 20 base WIS: +[Grade D]: MaxSP +1%, Healing effectiveness +1% +[Grade C]: MaxSP +1%, Healing effectiveness +1% +[Grade B]: MaxSP +1%, Healing effectiveness +2% +[Grade A]: MaxSP +1%, Healing effectiveness +2% +# +310934# +Essence of Varmundt's Restoration. +-------------------------- +WIS +2 +-------------------------- +For each 20 base WIS: +MaxSP +2% +Increases Healing skills effectiveness by 2%. +-------------------------- +[Enchanted Equipment's Grade] + +For each 20 base WIS: +[Grade D]: MaxSP +1%, Healing effectiveness +1% +[Grade C]: MaxSP +1%, Healing effectiveness +2% +[Grade B]: MaxSP +1%, Healing effectiveness +2% +[Grade A]: MaxSP +2%, H.PLUS +1 +# +310935# +Essence of Varmundt's Restoration. +-------------------------- +WIS +3 +-------------------------- +For each 20 base WIS: +MaxSP +3% +Increases Healing skills effectiveness by 3%. +-------------------------- +[Enchanted Equipment's Grade] + +For each 20 base WIS: +[Grade D]: MaxSP +1%, Healing effectiveness +1% +[Grade C]: MaxSP +1%, Healing effectiveness +2% +[Grade B]: MaxSP +1%, H.PLUS +1 +[Grade A]: MaxSP +2%, H.PLUS +2 +# +310936# +Essence of Varmundt's Stamina. +-------------------------- +STA +1 +-------------------------- +For each 20 base STA: +MaxHP +250, RES +1 +-------------------------- +[Enchanted Equipment's Grade] + +For each 20 base STA: +[Grade D]: MaxHP +1%, RES +1 +[Grade C]: MaxHP +1%, RES +1 +[Grade B]: MaxHP +1%, RES +1 +[Grade A]: MaxHP +1%, RES +1 +# +310937# +Essence of Varmundt's Stamina. +-------------------------- +STA +2 +-------------------------- +For each 20 base STA: +MaxHP +400, RES +2 +-------------------------- +[Enchanted Equipment's Grade] + +For each 20 base STA: +[Grade D]: MaxHP +1%, RES +1 +[Grade C]: MaxHP +1%, RES +1 +[Grade B]: MaxHP +1%, RES +1 +[Grade A]: MaxHP +1%, RES +2 +# +310938# +Essence of Varmundt's Stamina. +-------------------------- +STA +3 +-------------------------- +For each 20 base STA: +MaxHP +600, RES +3 +-------------------------- +[Enchanted Equipment's Grade] + +For each 20 base STA: +[Grade D]: MaxHP +1%, RES +1 +[Grade C]: MaxHP +1%, RES +1 +[Grade B]: MaxHP +1%, RES +2 +[Grade A]: MaxHP +2%, RES +2 +# +310982# +P.ATK +1 +# +310983# +P.ATK +2 +# +310984# +S.MATK +1 +# +310985# +S.MATK +2 +# +310986# +ATK +3% +# +310987# +ATK +5% +# +310988# +MATK +3% +# +310989# +MATK +5% +# +310990# +MaxHP +3% +# +310991# +MaxHP +5% +# +310992# +MaxSP +3% +# +310993# +MaxSP +5% +# +310994# +Increases experience gained from defeating Formless race monsters by 5%. +# +310995# +Increases experience gained from defeating Undead race monsters by 5%. +# +310996# +Increases experience gained from defeating Brute race monsters by 5%. +# +310997# +Increases experience gained from defeating Plant race monsters by 5%. +# +310998# +Increases experience gained from defeating Insect race monsters by 5%. +# +310999# +Increases experience gained from defeating Fish race monsters by 5%. +# +311000# +Increases experience gained from defeating Demon race monsters by 5%. +# +311001# +Increases experience gained from defeating Demi-Human race monsters by 5%. +# +311002# +Increases experience gained from defeating Angel race monsters by 5%. +# +311003# +Increases experience gained from defeating Dragon race monsters by 5%. +# +311004# +Increases experience gained from defeating monsters by 5%. +# +311005# +For each Level of Lesson: +Decreases Variable Casting Time by 1%. +-------------------------- +When equipped with Wanderer Minstrel Stone(Garment): +Physical attacks have a 2% chance to absorb 1% of the inflicted damage as SP. +-------------------------- +When equipped with Wanderer Minstrel Stone II(Garment): +Increases Damage of Metallic Sound by 15%. +# +311006# +For each Level of Circle of Nature: +Decreases Severe Rainstorm and Metallic Sound skill cooldown by 0.1 second. +-------------------------- +When equipped with Wanderer Minstrel Stone(Garment): +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +When equipped with Wanderer Minstrel Stone II(Garment): +Increases Magical Damage with every element by 15%. +# +311007# +For each Level of Frigg's Song: +Decreases Fixed Casting Time by 0.1 second. +-------------------------- +When equipped with Wanderer Minstrel Stone(Garment): +Increases damage of Severe Rainstorm by 15%. +-------------------------- +When equipped with Wanderer Minstrel Stone II(Garment): +Increases damage of Reverberation by 15%. +# +311008# +For each Level of Cart Cannon: +Increases Ranged Physical Damage by 2%. +-------------------------- +When equipped with Genetic Stone(Garment): +Increases damage of Acid Demonstration by 15%. +-------------------------- +When equipped with Genetic Stone II(Garment): +Increases damage of Spore Explosion by 15%. +# +311009# +For each Level of Cart Remodeling: +Decreases Variable Casting Time by 2%. +-------------------------- +When equipped with Genetic Stone(Garment): +Increases damage of Cart Cannon by 15%. +-------------------------- +When equipped with Genetic Stone II(Garment): +Increases damage of Cart Tornado by 15%. +# +311010# +For each Level of Sword Training: +Decreases Fixed Casting Time by 0.1 second. +-------------------------- +When equipped with Genetic Stone(Garment): +Increases damage of Acid Demonstration by 15%. +-------------------------- +When equipped with Genetic Stone II(Garment): +Increases damage of Cart Tornado by 15%. +# +311011# +For each Level of Striking: +Decreases Fixed Casting Time by 0.1 second. +-------------------------- +When equipped with Sorcerer Stone(Garment): +Decreases Killing Cloud skill cooldown by 2 seconds. +-------------------------- +When equipped with Sorcerer Stone II(Garment): +Increases damage of Earth Grave by 15%. +# +311012# +For each Level of Diamond Dust: +Decreases Variable Casting Time by 2%. +-------------------------- +When equipped with Sorcerer Stone(Garment): +Increases damage of Psychic Wave by 15%. +-------------------------- +When equipped with Sorcerer Stone II(Garment): +Increases damage of Varetyr Spear by 15%. +# +311013# +For each Level of Earth Grave: +Increases Magical Damage with every element by 2%. +-------------------------- +When equipped with Sorcerer Stone(Garment): +Increases damage of Poison Buster by 15%. +-------------------------- +When equipped with Sorcerer Stone II(Garment): +Increases damage of Diamond Dust by 15%. +# +311014# +Decreases After Skill Delay by 5%. +# +311015# +CRT +5 +# +311016# +ATK +10% +-------------------------- +ATK +2% for each Grade of the enchanted Weapon. +# +311017# +MATK +10% +-------------------------- +MATK +2% for each Grade of the enchanted Weapon. +# +311018# +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by additional 2%) for each Grade of the enchanted Weapon. +# +311019# +Decreases Variable Casting Time by 10%. +-------------------------- +Decreases Variable Casting Time by 10% for each Grade of the enchanted Weapon. +# +311020# +Decreases After Skill Delay by 10%. +-------------------------- +Decreases After Skill Delay by 10% for each Grade of the enchanted Weapon. +# +311021# +POW +3 +-------------------------- +POW +1 for each Grade of the enchanted Weapon. +# +311022# +SPL +3 +-------------------------- +SPL +1 for each Grade of the enchanted Weapon. +# +311023# +STA +3 +-------------------------- +STA +1 for each Grade of the enchanted Weapon. +# +311024# +WIS +3 +-------------------------- +WIS +1 for each Grade of the enchanted Weapon. +# +311025# +CRT +3 +-------------------------- +CRT +1 for each Grade of the enchanted Weapon. +# +311026# +CON +3 +-------------------------- +CON +1 for each Grade of the enchanted Weapon. +# +311027# +P.ATK +3 +-------------------------- +P.ATK +1 for each Grade of the enchanted Weapon. +# +311028# +S.MATK +3 +-------------------------- +S.MATK +1 for each Grade of the enchanted Weapon. +# +311029# +Increases damage of Storm Slash by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Storm Slash +3%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Storm Slash +4%. +[Grade A]: Damage of Storm Slash +6%. +# +311030# +Increases damage of Hack and Slasher by 10%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Hack and Slasher +7%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Hack and Slasher +8%. +[Grade A]: Damage of Hack and Slasher +10%. +# +311031# +Increases damage of Axe Stomp by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Axe Stomp +3%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Axe Stomp +4%. +[Grade A]: Damage of Axe Stomp +6%. +# +311032# +Increases damage of Axe Tornado by 5%. +Decreases Axe Tornado skill cooldown by 1 second. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Axe Tornado +7%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Axe Tornado +8%. +[Grade A]: Damage of Axe Tornado +10%. +# +311033# +Increases damage of Acidified Zone (Fire/Wind) by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Acidified Zone (Fire/Wind) +3%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Acidified Zone (Fire/Wind) +4%. +[Grade A]: Damage of Acidified Zone (Fire/Wind) +6%. +# +311034# +Increases damage of Cart Tornado by 10%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Cart Tornado +7%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Cart Tornado +8%. +[Grade A]: Damage of Cart Tornado +10%. +# +311035# +Increases damage of Impact Crater by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Impact Crater +3%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Impact Crater +4%. +[Grade A]: Damage of Impact Crater +6%. +# +311036# +Increases damage of Savage Impact by 10%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Savage Impact +7%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Savage Impact +8%. +[Grade A]: Damage of Savage Impact +10%. +# +311037# +Increases damage of Frozen Slash and Crimson Arrow by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Frozen Slash and Crimson Arrow +3%. +[Grade C]: Magical Damage against enemies of every size +10%. +[Grade B]: Damage of Frozen Slash and Crimson Arrow +4%. +[Grade A]: Damage of Frozen Slash and Crimson Arrow +6%. +# +311038# +Increases damage of Crystal Impact by 10%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Crystal Impact +7%. +[Grade C]: Magical Damage against enemies of every size +10%. +[Grade B]: Damage of Crystal Impact +8%. +[Grade A]: Damage of Crystal Impact +10%. +# +311039# +Increases damage of Abyss Square by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Abyss Square +3%. +[Grade C]: Magical Damage against enemies of every size +10%. +[Grade B]: Damage of Abyss Square +4%. +[Grade A]: Damage of Abyss Square +6%. +# +311040# +Increases damage of From the Abyss by 10%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of From the Abyss +7%. +[Grade C]: Magical Damage against enemies of every size +10%. +[Grade B]: Damage of From the Abyss +8%. +[Grade A]: Damage of From the Abyss +10%. +# +311041# +Increases damage of Conflagration and Lightning Land by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Conflagration and Lightning Land +3%. +[Grade C]: Magical Damage against enemies of every size +10%. +[Grade B]: Damage of Conflagration and Lightning Land +4%. +[Grade A]: Damage of Conflagration and Lightning Land +6%. +# +311042# +Increases damage of Psychic Wave by 5%. +Decreases Psychic Wave skill cooldown by 1.5 seconds. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Psychic Wave +7%. +[Grade C]: Magical Damage against enemies of every size +10%. +[Grade B]: Damage of Psychic Wave +8%. +[Grade A]: Damage of Psychic Wave +10%. +# +311043# +Increases damage of Gale Storm by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Gale Storm +3%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Gale Storm +4%. +[Grade A]: Damage of Gale Storm +6%. +# +311044# +Increases damage of Arrow Storm by 5%. +Decreases Arrow Storm skill cooldown by 1.2 seconds. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Arrow Storm +7%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Arrow Storm +8%. +[Grade A]: Damage of Arrow Storm +10%. +# +311045# +Increases damage of Second Judge and Second Faith by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Second Judge and Second Faith +3%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Second Judge and Second Faith +4%. +[Grade A]: Damage of Second Judge and Second Faith +6%. +# +311046# +Increases damage of Third Consecration and Third Punish by 10%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Third Consecration and Third Punish +7%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Third Consecration and Third Punish +8%. +[Grade A]: Damage of Third Consecration and Third Punish +10%. +# +311047# +Increases damage of Shield Shooting by 10%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Shield Shooting +4%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Shield Shooting +5%. +[Grade A]: Damage of Shield Shooting +7%. +# +311048# +Increases damage of Shield Chain by 10%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Shield Chain +7%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Shield Chain +8%. +[Grade A]: Damage of Shield Chain +10%. +# +311049# +Increases damage of Flamen by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Flamen +3%. Healing effectiveness +6%. +[Grade C]: Magical Damage against enemies of every size +10%. +[Grade B]: Damage of Flamen +4%. Healing effectiveness +6%. +[Grade A]: Damage of Flamen +6%. Healing effectiveness +6%. +# +311050# +Increases damage of Arbitrium by 10%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Arbitrium +7%. Healing effectiveness +6%. +[Grade C]: Magical Damage against enemies of every size +10%. +[Grade B]: Damage of Arbitrium +8%. Healing effectiveness +6%. +[Grade A]: Damage of Arbitrium +10%. Healing effectiveness +6%. +# +311051# +Increases damage of Noon Blast by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Noon Blast +3%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Noon Blast +4%. +[Grade A]: Damage of Noon Blast +6%. +# +311052# +Increases damage of Rising Sun by 10%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Rising Sun +7%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Rising Sun +8%. +[Grade A]: Damage of Rising Sun +10%. +# +311053# +Increases damage of Talisman of Four Bearing God by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Talisman of Four Bearing God +3%. +[Grade C]: Magical Damage against enemies of every size +10%. +[Grade B]: Damage of Talisman of Four Bearing God +4%. +[Grade A]: Damage of Talisman of Four Bearing God +6%. +# +311054# +Increases damage of Talisman of Soul Stealing by 10%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Talisman of Soul Stealing +7%. +[Grade C]: Magical Damage against enemies of every size +10%. +[Grade B]: Damage of Talisman of Soul Stealing +8%. +[Grade A]: Damage of Talisman of Soul Stealing +10%. +# +311055# +Increases damage of Only One Bullet by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Only One Bullet +3%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Only One Bullet +4%. +[Grade A]: Damage of Only One Bullet +6%. +# +311056# +Increases damage of Spiral Shooting by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Spiral Shooting +3%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Spiral Shooting +4%. +[Grade A]: Damage of Spiral Shooting +6%. +# +311057# +Increases damage of Double Bowling Bash by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Double Bowling Bash +3%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Double Bowling Bash +4%. +[Grade A]: Damage of Double Bowling Bash +6%. +# +311058# +Increases damage of Meteor Storm Buster and Jupitel Thunderstorm by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Meteor Storm Buster and Jupitel Thunderstorm +3%. +[Grade C]: Magical Damage against enemies of every size +10%. +[Grade B]: Damage of Meteor Storm Buster and Jupitel Thunderstorm +4%. +[Grade A]: Damage of Meteor Storm Buster and Jupitel Thunderstorm +6%. +# +311059# +Increases damage of Shadow Dance by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Shadow Dance +3%. +[Grade C]: Physical Damage against enemies of every size +6%. +[Grade B]: Damage of Shadow Dance +4%. +[Grade A]: Damage of Shadow Dance +5%. +# +311060# +Increases damage of Darkening Cannon by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Darkening Cannon +3%. +[Grade C]: Magical Damage against enemies of every size +6%. +[Grade B]: Damage of Darkening Cannon +4%. +[Grade A]: Damage of Darkening Cannon +5%. +# +311061# +Increases damage of Rose Blossom and Rhythm Shooting by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Rose Blossom and Rhythm Shooting +3%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Rose Blossom and Rhythm Shooting +4%. +[Grade A]: Damage of Rose Blossom and Rhythm Shooting +6%. +# +311062# +Increases damage of Severe Rainstorm by 5%. +Decreases Severe Rainstorm skillcooldown by 2 seconds. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Severe Rainstorm +7%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Severe Rainstorm +8%. +[Grade A]: Damage of Severe Rainstorm +10%. +# +311063# +Increases damage of Howling of Chulho and Hogogong Strike by 7%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Howling of Chulho and Hogogong Strike +5%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Howling of Chulho and Hogogong Strike +6%. +[Grade A]: Damage of Howling of Chulho and Hogogong Strike +7%. +# +311064# +Increases damage of Hyunrok Breeze and Hyunrok Cannon by 7%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Hyunrok Breeze and Hyunrok Cannon +5%. +[Grade C]: Magical Damage against enemies of every size +10%. +[Grade B]: Damage of Hyunrok Breeze and Hyunrok Cannon +6%. +[Grade A]: Damage of Hyunrok Breeze and Hyunrok Cannon +7%. +# +311076# +POW +1 +# +311077# +POW +2 +# +311078# +WIS +1 +# +311079# +WIS +2 +# +311080# +SPL +1 +# +311081# +SPL +2 +# +311082# +STA +1 +# +311083# +STA +2 +# +311084# +CRT +1 +# +311085# +CRT +2 +# +311086# +CON +1 +# +311087# +CON +2 +# +311088# +C.RATE +1 +# +311089# +C.RATE +2 +# +311090# +H.PLUS +1 +# +311091# +H.PLUS +2 +# +311092# +STR +3 +-------------------------- +Refine Level +7: +STR +1 +-------------------------- +Refine Level +9: +STR +1 +-------------------------- +Refine Level +11: +POW +1 +Increases Melee Physical Damage by 3%. +# +311093# +DEX +3 +-------------------------- +Refine Level +7: +DEX +1 +-------------------------- +Refine Level +9: +DEX +1 +-------------------------- +Refine Level +11: +CON +1 +Increases Ranged Physical Damage by 3%. +# +311094# +AGI +3 +-------------------------- +Refine Level +7: +AGI +1 +-------------------------- +Refine Level +9: +AGI +1 +-------------------------- +Refine Level +11: +WIS +1 +Perfect HIT +3% +# +311095# +INT +3 +-------------------------- +Refine Level +7: +INT +1 +-------------------------- +Refine Level +9: +INT +1 +-------------------------- +Refine Level +11: +SPL +1 +Increases Magical Damage with every element by 3%. +# +311096# +VIT +3 +-------------------------- +Refine Level +7: +VIT +1 +-------------------------- +Refine Level +9: +VIT +1 +-------------------------- +Refine Level +11: +STA +1 +Decreases After Skill Delay by 3%. +# +311097# +LUK +3 +-------------------------- +Refine Level +7: +LUK +1 +-------------------------- +Refine Level +9: +LUK +1 +-------------------------- +Refine Level +11: +CRT +1 +Increases Critical Damage by 3%. +# +311098# +DEF +250, RES +50 +-------------------------- +Refine Level +7: +DEF +75, RES +10 +-------------------------- +Refine Level +9: +DEF +100, RES +10 +-------------------------- +Refine Level +11: +DEF +100, RES +10 +# +311099# +MDEF +25, RES +25 +-------------------------- +Refine Level +7: +MDEF +7, RES +5 +-------------------------- +Refine Level +9: +MDEF +10, RES +5 +-------------------------- +Refine Level +11: +MDEF +10, RES +5 +# +311100# +ATK +6%, ATK +100 +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 5%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by additional 5%. +# +311101# +ATK +6%, ATK +100 +-------------------------- +Refine Level +7: +Increases Melee Physical Damage by 5%. +-------------------------- +Refine Level +9: +Increases Melee Physical Damage by additional 5%. +-------------------------- +Refine Level +11: +Increases Melee Physical Damage by additional 5%. +# +311102# +MATK +6%, MATK +100 +-------------------------- +Refine Level +7: +Increases Magical Damage with every element by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by additional 5%. +-------------------------- +Refine Level +11: +Increases Magical Damage with every element by additional 5%. +# +311103# +Decreases damage taken from reflected damage by 4%. +-------------------------- +Refine Level +7: +Decreases damage taken from reflected damage by additional 4%. +-------------------------- +Refine Level +9: +Decreases damage taken from reflected damage by additional 4%. +-------------------------- +Refine Level +11: +Decreases damage taken from reflected damage by additional 4%. +# +311104# +ATK +2%, MATK +2% +-------------------------- +Refine Level +7: +ATK +2%, MATK +2% +-------------------------- +Refine Level +9: +ATK +2%, MATK +2% +-------------------------- +Refine Level +11: +ATK +4%, MATK +4% +# +311105# +Decreases After Skill Delay by 4%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by additional 4%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by additional 4%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by additional 4%. +# +311106# +FLEE +30 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 8%). +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by additional 8%). +-------------------------- +Refine Level +11: +Increases Attack Speed (Decreases After Attack Delay by additional 8%). +# +311107# +MATK +30 +Decreases Variable Casting Time by 8%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by additional 8%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 8%. +-------------------------- +Refine Level +11: +Decreases Variable Casting Time by additional 8%. +# +311108# +Critical +15 +-------------------------- +Refine Level +7: +Increases Critical Damage by 8%. +-------------------------- +Refine Level +9: +Increases Critical Damage by additional 8%. +-------------------------- +Refine Level +11: +Increases Critical Damage by additional 8%. +# +311109# +HIT +30 +-------------------------- +Refine Level +7: +Perfect HIT +8% +-------------------------- +Refine Level +9: +Perfect HIT +8% +-------------------------- +Refine Level +11: +Perfect HIT +8% +# +311110# +Decreases damage taken from Normal and Boss class monsters by 7%. +-------------------------- +Refine Level +7: +Decreases damage taken from monsters of every element by 7%. +-------------------------- +Refine Level +9: +Decreases damage taken from monsters of every size by 7%. +-------------------------- +Refine Level +11: +Decreases damage taken from monsters of every race, except Players, by 7%. +# +311111# +Increases Melee and Ranged Physical Damage by 3%. +Increases Magical Damage with every element by 3%. +-------------------------- +Refine Level +7: +Increases Melee and Ranged Physical Damage by additional 3%. +Increases Magical Damage with every element by additional 3%. +-------------------------- +Refine Level +9: +Increases Melee and Ranged Physical Damage by additional 3%. +Increases Magical Damage with every element by additional 3%. +-------------------------- +Refine Level +11: +Increases Melee and Ranged Physical Damage by additional 3%. +Increases Magical Damage with every element by additional 3%. +# +311112# +Decreases damage taken from reflected damage by 4%. +-------------------------- +Refine Level +7: +Decreases damage taken from reflected damage by additional 4%. +-------------------------- +Refine Level +9: +Decreases damage taken from reflected damage by additional 5%. +-------------------------- +Refine Level +11: +Decreases damage taken from reflected damage by additional 5%. +# +311113# +MaxHP +5%, MaxHP +2500 +-------------------------- +Refine Level +7: +MaxHP +5% +-------------------------- +Refine Level +9: +MaxHP +5% +-------------------------- +Refine Level +11: +MaxHP +5% +# +311114# +MaxSP +5%, MaxSP +450 +-------------------------- +Refine Level +7: +MaxSP +5% +-------------------------- +Refine Level +9: +MaxSP +5% +-------------------------- +Refine Level +11: +MaxSP +5% +# +311115# +Increases Healing skills effectiveness by 5%. +-------------------------- +Refine Level +7: +Increases Healing skills effectiveness by additional 5%. +-------------------------- +Refine Level +9: +Increases Healing skills effectiveness by additional 7%. +-------------------------- +Refine Level +11: +Increases Healing skills effectiveness by additional 7%. +# +311116# +MaxHP +5%, MaxSP +5%, MaxHP +2000, MaxSP +350 +-------------------------- +Refine Level +7: +MaxHP +3%, MaxSP +3% +-------------------------- +Refine Level +9: +MaxHP +4%, MaxSP +4% +-------------------------- +Refine Level +11: +MaxHP +5%, MaxSP +5% +# +311117# +Decreases Fixed Casting Time by 1 second. +# +311118# +Increases Magical Damage against enemies of every size by 4%. +-------------------------- +Refine Level +7: +Increases Magical Damage against enemies of every size by additional 4%. +-------------------------- +Refine Level +9: +Increases Magical Damage against enemies of every size by additional 4%. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every size by additional 4%. +# +311119# +Increases Physical Damage against enemies of every size by 4%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by additional 4%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by additional 4%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by additional 4%. +# +311120# +Physical attacks have a 3% chance to increase VIT by 50 and ATK by 25% for 10 seconds. +# +311121# +Magical attacks have a 3% chance to increase INT by 50 and MATK by 25% for 10 seconds. +# +311122# +Physical attacks have a 3% chance to increase DEX by 50 and Ranged Physical Damage by 15% for 10 seconds. +# +311123# +Physical attacks have a 3% chance to increase STR by 50 and Melee Physical Damage by 15% for 10 seconds. +# +311124# +Physical attacks have a 3% chance to increase AGI by 50 and Critical Damage by 25% for 10 seconds. +# +311125# +Magical attacks have a 3% chance to increase LUK by 50 and Magical Damage with every element by 15% for 10 seconds. +# +311126# +ATK +30 +Increases Attack Speed (Decreases After Attack Delay by 10%). +# +311127# +HIT +20 +Increases Ranged Physical Damage by 10%. +# +311128# +Critical +15 +Increases Critical Damage by 12%. +# +311129# +Perfect HIT +5% +Increases Melee Physical Damage by 10%. +# +311130# +MATK +30 +Decreases Variable Casting Time by 10%. +# +311131# +Increases HP Recovery Rate by 50%. +# +311132# +Increases SP Recovery Rate by 50%. +# +311133# +Physical attacks have a 2% chance to absorb 4% of the inflicted damage as HP. +# +311134# +Physical attacks have a 1% chance to absorb 3% of the inflicted damage as SP. +# +311135# +Magical attacks have a 4% chance to recover 700 HP every 0.5 seconds for 19 times. +# +311136# +Magical attacks have a 2% chance to recover 100 SP every 0.5 seconds for 19 times. +# +311137# +Increases Melee and Ranged Physical Damage by 7%. +Increases Magical Damage with every element by 7%. +# +311138# +Increases damage of Dragon Breath and Dragon Breath - Water by 15%. +-------------------------- +Refine Level +7: +Increases damage of Dragon Breath and Dragon Breath - Water by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Dragon Breath and Dragon Breath - Water by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Dragon Breath, Dragon Breath - Water by additional 15%. +Increases damage of Hack and Slasher by 15%. +# +311139# +Increases damage of Wind Cutter and Ignition Break by 15%. +-------------------------- +Refine Level +7: +Increases damage of Wind Cutter and Ignition Break by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Wind Cutter and Ignition Break by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Wind Cutter by additional 15%. +Decreases Ignition Break skill cooldown by 0.5 seconds. +Increases damage of Storm Slash by 15%. +# +311140# +Increases damage of Sonic Wave and Hundred Spear by 15%. +-------------------------- +Refine Level +7: +Increases damage of Sonic Wave and Hundred Spear by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Sonic Wave and Hundred Spear by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Sonic Wave by additional 15%. +Decreases Hundred Spear skill cooldown by 0.5 seconds. +Increases damage of Madness Crusher by 15%. +# +311141# +Increases damage of Overbrand and Hesperus Lit by 15%. +-------------------------- +Refine Level +7: +Increases damage of Overbrand and Hesperus Lit by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Overbrand and Hesperus Lit by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Overbrand and Hesperus Lit by additional 15%. +Increases damage of Overslash by 15%. +# +311142# +Increases damage of Banishing Point and Cannon Spear by 15%. +-------------------------- +Refine Level +7: +Increases damage of Banishing Point and Cannon Spear by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Banishing Point and Cannon Spear by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Banishing Point and Cannon Spear by additional 15%. +Increases damage of Shield Shooting by 15%. +# +311143# +Increases damage of Pressure and Genesis Ray by 15%. +-------------------------- +Refine Level +7: +Increases damage of Pressure and Genesis Ray by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Pressure and Genesis Ray by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Pressure and Genesis Ray by additional 15%. +Increases damage of Cross Rain by 15%. +# +311144# +Increases damage of Knuckle Boost and Arms Cannon by 15%. +-------------------------- +Refine Level +7: +Increases damage of Knuckle Boost and Arms Cannon by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Knuckle Boost and Arms Cannon by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Knuckle Boost and Arms Cannon by additional 15%. +Decreases ABR - Dual Cannon skill cooldown by 5 seconds. +# +311145# +Increases damage of Vulcan Arm and Axe Boomerang by 15%. +-------------------------- +Refine Level +7: +Increases damage of Vulcan Arm and Axe Boomerang by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Vulcan Arm and Axe Boomerang by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Vulcan Arm and Axe Boomerang by additional 15%. +Decreases Axe Boomerang skill cooldown by 2 seconds. +# +311146# +Increases damage of Axe Tornado and Power Swing by 15%. +-------------------------- +Refine Level +7: +Increases damage of Axe Tornado and Power Swing by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Axe Tornado and Power Swing by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Axe Tornado and Power Swing by additional 15%. +Increases damage of Axe Stomp by 15%. +# +311147# +Increases damage of Cart Tornado and Hell's Plant by 15%. +-------------------------- +Refine Level +7: +Increases damage of Cart Tornado and Hell's Plant by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Cart Tornado and Hell's Plant by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Cart Tornado and Hell's Plant by additional 15%. +Increases damage of Acidified Zone (Water/Wind) by 15%. +# +311148# +Increases damage of Crazy Weed and Cart Cannon by 15%. +-------------------------- +Refine Level +7: +Increases damage of Crazy Weed and Cart Cannon by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Crazy Weed and Cart Cannon by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Crazy Weed and Cart Cannon by additional 15%. +Decreases Crazy Weed skill cooldown by 1.5 seconds. +# +311149# +Increases damage of Acid Demonstration and Spore Explosion by 15%. +-------------------------- +Refine Level +7: +Increases damage of Acid Demonstration and Spore Explosion by additional 25%. +-------------------------- +Refine Level +9: +Decreases Spore Explosion skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Acid Demonstration and Spore Explosion by additional 20%. +Increases damage of Acidified Zone (Fire/Ground) by 15%. +# +311150# +Increases damage of Sonic Blow and Cross Impact by 15%. +-------------------------- +Refine Level +7: +Increases damage of Sonic Blow and Cross Impact by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Sonic Blow and Cross Impact by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Sonic Blow and Cross Impact by additional 15%. +Increases damage of Savage Impact by 15%. +# +311151# +Increases damage of Cross Ripper Slasher and Rolling Cutter by 15%. +-------------------------- +Refine Level +7: +Increases damage of Cross Ripper Slasher and Rolling Cutter by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Cross Ripper Slasher and Rolling Cutter by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Cross Ripper Slasher and Rolling Cutter by additional 15%. +Increases damage of Impact Crater by 15%. +# +311152# +Increases damage of Soul Destroyer and Counter Slash by 15%. +-------------------------- +Refine Level +7: +Increases damage of Soul Destroyer and Counter Slash by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Soul Destroyer and Counter Slash by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Soul Destroyer and Counter Slash by additional 15%. +Increases damage of Eternal Slash by 15%. +# +311153# +Increases damage of Fatal Menace and Raid by 15%. +-------------------------- +Refine Level +7: +Increases damage of Fatal Menace and Raid by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Fatal Menace and Raid by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Fatal Menace and Raid by additional 15%. +Increases damage of Abyss Dagger by 15%. +# +311154# +Increases Magical Damage of every element by 15%. +-------------------------- +Refine Level +7: +Increases Magical Damage of every element by additional 15%. +-------------------------- +Refine Level +9: +Increases Magical Damage of every element by additional 15%. +-------------------------- +Refine Level +11: +Increases Magical Damage of every element by additional 15%. +Increases damage of Abyss Square by 15%. +# +311155# +Increases damage of Triangle Shot by 15%. +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +7: +Increases damage of Triangle Shot by additional 15%. +Increases Ranged Physical Damage by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Triangle Shot by additional 15%. +Increases Ranged Physical Damage by additional 10%. +-------------------------- +Refine Level +11: +Increases damage of Triangle Shot by additional 15%. +Increases Ranged Physical Damage by additional 15%. +Increases damage of Frenzy Shot by 15%. +# +311156# +Increases damage of Crimson Rock and Earth Strain by 15%. +-------------------------- +Refine Level +7: +Increases damage of Crimson Rock and Earth Strain by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Crimson Rock and Earth Strain by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Crimson Rock and Earth Strain by additional 15%. +Increases damage of Crimson Arrow and Rock Down by 15%. +# +311157# +Increases damage of Jack Frost and Chain Lightning by 15%. +-------------------------- +Refine Level +7: +Increases damage of Jack Frost and Chain Lightning by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Jack Frost and Chain Lightning by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Jack Frost and Chain Lightning by additional 15%. +Increases damage of Frozen Slash and Storm Cannon by 15%. +# +311158# +Increases damage of Comet and Soul Expansion by 15%. +-------------------------- +Refine Level +7: +Increases damage of Comet and Soul Expansion by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Comet and Soul Expansion by additional 15%. +Decreases Telekinesis Intense skill cooldown by 30 seconds. +-------------------------- +Refine Level +11: +Increases damage of Comet and Soul Expansion by additional 15%. +Increases damage of Soul Vulcan Strike and Mystery Illusion by 15%. +# +311159# +Increases damage of Killing Cloud and Poison Buster by 15%. +-------------------------- +Refine Level +7: +Increases damage of Killing Cloud and Poison Buster by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Killing Cloud and Poison Buster by additional 15%. +Decreases Poison Buster skill cooldown by 0.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Killing Cloud and Poison Buster by additional 15%. +Increases damage of Venom Swamp by 15%. +# +311160# +Increases damage of Varetyr Spear and Psychic Wave by 15%. +-------------------------- +Refine Level +7: +Increases damage of Varetyr Spear and Psychic Wave by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Varetyr Spear and Psychic Wave by additional 15%. +Decreases Poison Buster skill cooldown by 0.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Varetyr Spear and Psychic Wave by additional 15%. +Increases damage of Conflagration and Lightning Land by 15%. +# +311161# +Increases damage of Diamond Dust and Earth Grave by 15%. +-------------------------- +Refine Level +7: +Increases damage of Diamond Dust and Earth Grave by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Diamond Dust and Earth Grave by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Diamond Dust and Earth Grave by additional 15%. +Increases damage of Diamond Storm and Terra Drive by 15%. +# +311162# +Increases damage of Magnus Exorcismus and Adoramus by 15%. +-------------------------- +Refine Level +7: +Increases damage of Magnus Exorcismus and Adoramus by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Magnus Exorcismus and Adoramus by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Magnus Exorcismus and Adoramus by additional 15%. +Increases damage of Arbitrium by 15%. +# +311163# +Increases damage of Judex by 15%. +Increases Magical Damage with Holy element by 5%. +-------------------------- +Refine Level +7: +Increases damage of Judex by additional 15%. +Increases Magical Damage with Holy element by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Judex by additional 15%. +Increases Magical Damage with Holy element by additional 10%. +-------------------------- +Refine Level +11: +Increases damage of Judex by additional 15%. +Increases Magical Damage with Holy element by additional 15%. +Increases damage of Framen by 15%. +# +311164# +Increases damage of Duple Light by 15%. +Increases Melee and Ranged Physical Damage by 5%. +-------------------------- +Refine Level +7: +Increases damage of Duple Light by additional 15%. +Increases Melee and Ranged Physical Damage by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Duple Light by additional 15%. +Increases Melee and Ranged Physical Damage by additional 10%. +-------------------------- +Refine Level +11: +Increases damage of Duple Light by additional 15%. +Increases Melee and Ranged Physical Damage by additional 15%. +Increases damage of Petitio by 15%. +# +311165# +Increases damage of Tiger Cannon and Fallen Empire by 15%. +-------------------------- +Refine Level +7: +Increases damage of Tiger Cannon and Fallen Empire by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Tiger Cannon and Fallen Empire by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Tiger Cannon and Fallen Empire by additional 15%. +Increases damage of Third Flame Bomb by 15%. +# +311166# +Increases damage of Rampage Blaster and Ride in Lightning by 15%. +-------------------------- +Refine Level +7: +Increases damage of Rampage Blaster and Ride in Lightning by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Rampage Blaster and Ride in Lightning by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Ride in Lightning by additional 15%. +Decreases Rampage Blaster skill cooldown by 0.5 seconds. +Increases damage of Explosion Blaster by 15%. +# +311167# +Increases damage of Gate of Hell and Knuckle Arrow by 15%. +-------------------------- +Refine Level +7: +Increases damage of Gate of Hell and Knuckle Arrow by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Gate of Hell and Knuckle Arrow by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Gate of Hell and Knuckle Arrow by additional 15%. +Increases damage of Third Punish by 15%. +# +311168# +Increases damage of Aimed Bolt by 15%. +-------------------------- +Refine Level +7: +Increases damage of Aimed Bolt by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Aimed Bolt by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Aimed Bolt by additional 15%. +Increases damage of Hawk Rush by 15%. +# +311169# +Increases damage of Sharp Shooting by 15%. +Increases Critical Damage by 10%. +-------------------------- +Refine Level +7: +Increases damage of Sharp Shooting by additional 15%. +Increases Critical Damage by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Sharp Shooting by additional 15%. +Increases Critical Damage by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Sharp Shooting by additional 15%. +Increases Critical Damage by additional 15%. +Increases damage of Crescive Bolt by 15%. +# +311170# +Increases damage of Arrow Storm by 15%. +-------------------------- +Refine Level +7: +Increases damage of Arrow Storm by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Arrow Storm by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Arrow Storm by additional 15%. +Increases damage of Gale Storm by 15%. +# +311171# +Increases damage of Metallic Sound and Reverberation by 15%. +-------------------------- +Refine Level +7: +Increases damage of Metallic Sound and Reverberation by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Metallic Sound and Reverberation by additional 10%. +-------------------------- +Refine Level +11: +Increases damage of Metallic Sound and Reverberation by additional 15%. +Increases damage of Metallic Fury by 15%. +# +311172# +Increases damage of Severe Rainstorm by 15%. +-------------------------- +Refine Level +7: +Increases damage of Severe Rainstorm by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Severe Rainstorm by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Severe Rainstorm by additional 15%. +Increases damage of Rose Bloosom by 15%. +# +311173# +Increases damage of Arrow Vulcan by 20%. +-------------------------- +Refine Level +7: +Increases damage of Arrow Vulcan by additional 20%. +-------------------------- +Refine Level +9: +Increases damage of Arrow Vulcan by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Arrow Vulcan by additional 20%. +Increases damage of Rhythm Shooting by 15%. +# +311174# +Increases damage of Prominence Kick and Solar Burst by 15%. +-------------------------- +Refine Level +7: +Increases damage of Prominence Kick and Solar Burst by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Prominence Kick and Solar Burst by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Prominence Kick and Solar Burst by additional 15%. +Increases damage of Sunset Blast by 15%. +# +311175# +Increases damage of New Moon Kick and Full Moon Kick by 15%. +-------------------------- +Refine Level +7: +Increases damage of New Moon Kick and Full Moon Kick by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of New Moon Kick and Full Moon Kick by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of New Moon Kick and Full Moon Kick by additional 15%. +Increases damage of Dawn Break by 15%. +# +311176# +Increases damage of Flash Kick and Falling Star by 15%. +-------------------------- +Refine Level +7: +Increases damage of Flash Kick and Falling Star by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Flash Kick and Falling Star by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Flash Kick and Falling Star by additional 15%. +Increases damage of Star Cannon by 15%. +# +311177# +Increases damage of Esma and Eswhoo by 15%. +-------------------------- +Refine Level +7: +Increases damage of Esma and Eswhoo by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Esma and Eswhoo by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Esma and Eswhoo by additional 15%. +Increases damage of Talisman of Red Phoenix and Talisman of Black Tortoise by 15%. +# +311178# +Increases damage of Espa by 15%. +-------------------------- +Refine Level +7: +Increases damage of Espa by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Espa by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Espa by additional 15%. +Increases damage of Talisman of Blue Dragon and Talisman of White Tiger by 15%. +# +311179# +Increases damage of Curse Explosion by 15%. +Increases Magical Damage with Shadow element by 5%. +-------------------------- +Refine Level +7: +Increases damage of Curse Explosion by additional 15%. +Increases Magical Damage with Shadow element by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Curse Explosion by additional 15%. +Increases Magical Damage with Shadow element by additional 10%. +-------------------------- +Refine Level +11: +Increases damage of Curse Explosion by additional 15%. +Increases Magical Damage with Shadow element by additional 15%. +Increases damage of Exorcism of Malicious Soul by 15%. +# +311180# +Increases damage of Desperado, Fire Dance and Hammer of God by 15%. +-------------------------- +Refine Level +7: +Increases damage of Desperado, Fire Dance and Hammer of God by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Desperado, Fire Dance and Hammer of God by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Desperado, Fire Dance and Hammer of God by additional 15%. +Increases damage of Only One Bullet by 15%. +# +311181# +Increases damage of Fire Rain, Howling Mine and Dragon Tail by 15%. +-------------------------- +Refine Level +7: +Increases damage of Fire Rain, Howling Mine and Dragon Tail by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Fire Rain, Howling Mine and Dragon Tail by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Fire Rain, Howling Mine and Dragon Tail by additional 15%. +Increases damage of Wild Fire by 15%. +# +311182# +Increases damage of Shattering Storm, Banishing Buster and Round Trip by 15%. +-------------------------- +Refine Level +7: +Increases damage of Shattering Storm, Banishing Buster and Round Trip by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Shattering Storm, Banishing Buster and Round Trip by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Shattering Storm, Banishing Buster and Round Trip by additional 15%. +Increases damage of The Vigilante at Night by 15%. +# +311183# +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 15%. +-------------------------- +Refine Level +7: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 15%. +Increases damage of Red Flame Cannon, Cold Blooded Cannon and Thundering Cannon by 15%. +# +311184# +Increases damage of Cross Slash and Swirling Petal by 15%. +-------------------------- +Refine Level +7: +Increases damage of Cross Slash and Swirling Petal by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Cross Slash and Swirling Petal by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Cross Slash and Swirling Petal by additional 15%. +Increases damage of Shadow Flash and Huuma Shuriken - Construct by 15%. +# +311185# +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by 15%. +-------------------------- +Refine Level +7: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 15%. +Increases damage of Golden Dragon Cannon and Darkening Cannon by 15%. +# +311186# +Increases damage of Picky Peck and Lunatic Carrot Beat by 15%. +-------------------------- +Refine Level +7: +Increases damage of Picky Peck and Lunatic Carrot Beat by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Picky Peck and Lunatic Carrot Beat by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Picky Peck and Lunatic Carrot Beat by additional 15%. +Increases damage of Chulho Sonic Claw by 15%. +# +311187# +Increases damage of Silvervine Stem Spear and Catnip Meteor by 15%. +-------------------------- +Refine Level +7: +Increases damage of Silvervine Stem Spear and Catnip Meteor by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Silvervine Stem Spear and Catnip Meteor by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Silvervine Stem Spear and Catnip Meteor by additional 15%. +Increases damage of Hyunrok Cannon by 15%. +# +311188# +Increases damage of Spirit of Savage by 15%. +-------------------------- +Refine Level +7: +Increases damage of Spirit of Savage by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Spirit of Savage by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Spirit of Savage by additional 15%. +Increases damage of Hogogong Strike by 15%. +# +311189# +Increases damage of Holy Cross and Back Stab by 15%. +-------------------------- +Refine Level +7: +Increases damage of Holy Cross and Back Stab by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Holy Cross and Back Stab by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Holy Cross and Back Stab by additional 15%. +Increases damage of Double Bowling Bash and Mega Sonic Blow by 15%. +# +311190# +Increases damage of Shield Boomerang by 15%. +-------------------------- +Refine Level +7: +Increases damage of Shield Boomerang by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Shield Boomerang by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Shield Boomerang by additional 15%. +Increases damage of Shield Chain Rush and Spiral Pierce Max by 15%. +# +311191# +Increases damage of Meteor Storm and Jupitel Thunder by 15%. +-------------------------- +Refine Level +7: +Increases damage of Meteor Storm and Jupitel Thunder by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Meteor Storm and Jupitel Thunder by additional 15%. +-------------------------- +Refine Level +11: +Increases damage of Meteor Storm and Jupitel Thunder by additional 15%. +Increases damage of Meteor Storm Buster and Jupitel Thunderstorm by 15%. +# +311192# +Increases damage of Dragon Breath and Dragon Breath - Water by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Dragon Breath and Dragon Breath - Water by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Dragon Breath and Dragon Breath - Water by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Dragon Breath, Dragon Breath - Water by additional 20%. +# +311193# +Increases damage of Wind Cutter by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Wind Cutter by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Wind Cutter by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Wind Cutter by additional 20%. +# +311194# +Increases damage of Ignition Break by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Ignition Break by additional 10%. +-------------------------- +Refine Level +9: +Decreases Ignition Break skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Wind Cutter by additional 20%. +# +311195# +Increases damage of Hundred Spear by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Hundred Spear by additional 10%. +-------------------------- +Refine Level +9: +Decreases Hundred Spear skill cooldown by 1.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Hundred Spear by additional 20%. +# +311196# +Increases damage of Sonic Wave by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Sonic Wave by additional 10%. +-------------------------- +Refine Level +9: +Decreases Sonic Wave skill cooldown by 1.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Sonic Wave by additional 20%. +# +311197# +Increases damage of Overbrand by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Overbrand by additional 10%. +-------------------------- +Refine Level +9: +Decreases SP Consumption of Overbrand by 20%. +-------------------------- +Refine Level +11: +Increases damage of Overbrand by additional 20%. +# +311198# +Increases damage of Hesperus Lit by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Hesperus Lit by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Hesperus Lit by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Hesperus Lit by additional 20%. +# +311199# +Increases damage of Banishing Point by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Banishing Point by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Banishing Point by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Banishing Point by additional 20%. +# +311200# +Increases damage of Cannon Spear by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Cannon Spear by additional 10%. +-------------------------- +Refine Level +9: +Decreases Cannon Spear skill cooldown by 0.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Cannon Spear by additional 20%. +# +311201# +Increases damage of Genesis Ray by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Genesis Ray by additional 10%. +-------------------------- +Refine Level +9: +Decreases Genesis Ray skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Genesis Ray by additional 20%. +# +311202# +Increases damage of Shield Press by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Shield Press by additional 10%. +-------------------------- +Refine Level +9: +Decreases Shield Press skill cooldown by 0.25 seconds. +-------------------------- +Refine Level +11: +Increases damage of Shield Press by additional 20%. +# +311203# +Increases damage of Earth Drive by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Earth Drive by additional 10%. +-------------------------- +Refine Level +9: +Decreases Earth Drive skill cooldown by 1.2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Earth Drive by additional 20%. +# +311204# +Increases damage of Knuckle Boost by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Knuckle Boost by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Knuckle Boost by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Knuckle Boost by additional 20%. +# +311205# +Increases damage of Arm Cannon by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Arm Cannon by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Arm Cannon by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Arm Cannon by additional 20%. +Nullifies the consumption of Magic Gear Fuel for Arm Cannon. +# +311206# +Increases damage of Axe Tornado by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Axe Tornado by additional 10%. +-------------------------- +Refine Level +9: +Decreases Axe Tornado skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Axe Tornado by additional 20%. +# +311207# +Increases damage of Power Swing by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Power Swing by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Power Swing by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Power Swing by additional 20%. +# +311208# +Increases damage of Vulcan Arm by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Vulcan Arm by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Vulcan Arm by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Vulcan Arm by additional 20%. +# +311209# +Increases damage of Axe Boomerang by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Axe Boomerang by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Axe Boomerang by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Axe Boomerang by additional 20%. +# +311210# +Increases damage of Cart Tornado by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Cart Tornado by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Cart Tornado by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Cart Tornado by additional 20%. +# +311211# +Increases damage of Cart Cannon by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Cart Cannon by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Cart Cannon by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Cart Cannon by additional 20%. +# +311212# +Increases damage of Spore Explosion by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Spore Explosion by additional 10%. +-------------------------- +Refine Level +9: +Decreases Spore Explosion skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Spore Explosion by additional 20%. +# +311213# +Increases damage of Crazy Weed by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Crazy Weed by additional 10%. +-------------------------- +Refine Level +9: +Decreases Crazy Weed skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Crazy Weed by additional 20%. +# +311214# +Increases damage of Cross Ripper Slasher by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Cross Ripper Slasher by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Cross Ripper Slasher by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Cross Ripper Slasher by additional 20%. +# +311215# +Increases damage of Rolling Cutter by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Rolling Cutter by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Rolling Cutter by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Rolling Cutter by additional 20%. +# +311216# +Increases damage of Counter Slash by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Counter Slash by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Counter Slash by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Counter Slash by additional 20%. +# +311217# +Increases damage of Cross Impact by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Cross Impact by additional 10%. +-------------------------- +Refine Level +9: +Decreases SP Consumption of Cross Impact by 20%. +-------------------------- +Refine Level +11: +Increases damage of Cross Impact by additional 20%. +# +311218# +Increases damage of Fatal Menace by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Fatal Menace by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Fatal Menace by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Fatal Menace by additional 20%. +# +311219# +Increases damage of Triangle Shot by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Triangle Shot by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Triangle Shot by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Triangle Shot by additional 20%. +# +311220# +Increases damage of Feint Bomb by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Feint Bomb by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Feint Bomb by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Feint Bomb by additional 20%. +# +311221# +Melee physical attacks have a 7% chance to auto-cast Level 7 Meteor Storm. +-------------------------- +For each 3 Refine Levels: +Increases damage of Meteor Storm by 25%. +-------------------------- +Refine Level +9: +Melee physical attacks have a 5% chance to auto-cast Level 5 Psychic Wave. +-------------------------- +Refine Level +11: +Increases damage of Psychic Wave by 40%. +# +311222# +Increases damage of Crimson Rock, Jack Frost, Chain Lightning and Earth Strain by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Crimson Rock, Jack Frost, Chain Lightning and Earth Strain by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Crimson Rock, Jack Frost, Chain Lightning and Earth Strain by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Crimson Rock, Jack Frost, Chain Lightning and Earth Strain by additional 20%. +# +311223# +Increases damage of Soul Expansion by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Soul Expansion by additional 10%. +-------------------------- +Refine Level +9: +Decreases Telekinesis Intense skill cooldown by 30 seconds. +-------------------------- +Refine Level +11: +Increases damage of Soul Expansion by additional 20%. +# +311224# +Increases damage of Comet by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Comet by additional 10%. +-------------------------- +Refine Level +9: +Decreases SP Consumption of Comet by 20%. +-------------------------- +Refine Level +11: +Increases damage of Comet by additional 20%. +# +311225# +Increases damage of Psychic Wave by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Psychic Wave by additional 10%. +-------------------------- +Refine Level +9: +Decreases Psychic Wave skill cooldown by 1.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Psychic Wave by additional 20%. +# +311226# +Increases damage of Diamond Dust by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Diamond Dust by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Diamond Dust by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Diamond Dust by additional 20%. +# +311227# +Increases damage of Varetyr Spear by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Varetyr Spear by additional 10%. +-------------------------- +Refine Level +9: +Decreases Varetyr Spear skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Varetyr Spear by additional 20%. +# +311228# +Increases damage of Earth Grave by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Earth Grave by additional 10%. +-------------------------- +Refine Level +9: +Decreases Earth Grave skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Earth Grave by additional 20%. +# +311229# +Increases damage of Poison Buster by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Poison Buster by additional 10%. +-------------------------- +Refine Level +9: +Decreases Poison Buster skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Poison Buster by additional 20%. +# +311230# +Increases damage of Adoramus by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Adoramus by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Adoramus by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Adoramus by additional 20%. +# +311231# +Increases damage of Judex by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Judex by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Judex by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Judex by additional 20%. +# +311232# +Increases damage of Duple Light by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Duple Light by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Duple Light by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Duple Light by additional 20%. +# +311233# +Increases damage of Tiger Cannon by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Tiger Cannon by additional 10%. +-------------------------- +Refine Level +9: +Decreases Tiger Cannon skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Tiger Cannon by additional 20%. +# +311234# +Increases damage of Rampage Blaster by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Rampage Blaster by additional 10%. +-------------------------- +Refine Level +9: +Decreases Rampage Blaster skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Rampage Blaster by additional 20%. +# +311235# +Increases damage of Sky Net Blow by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Sky Net Blow by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Sky Net Blow by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Sky Net Blow by additional 20%. +# +311236# +Increases damage of Ride in Lightning by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Ride in Lightning by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Ride in Lightning by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Ride in Lightning by additional 20%. +# +311237# +Increases damage of Knuckle Arrow by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Knuckle Arrow by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Knuckle Arrow by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Knuckle Arrow by additional 20%. +# +311238# +Increases damage of Aimed Bolt by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Aimed Bolt by additional 10%. +-------------------------- +Refine Level +9: +Decreases Aimed Bolt skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Aimed Bolt by additional 20%. +# +311239# +Increases damage of Arrow Storm by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Arrow Storm by additional 10%. +-------------------------- +Refine Level +9: +Decreases Arrow Storm skill cooldown by 1.2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Arrow Storm by additional 20%. +# +311240# +Increases damage of Warg Strike by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Warg Strike by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Warg Strike by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Warg Strike by additional 20%. +# +311241# +Increases damage of Severe Rainstorm by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Severe Rainstorm by additional 10%. +-------------------------- +Refine Level +9: +Decreases Severe Rainstorm skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Severe Rainstorm by additional 20%. +# +311242# +Increases damage of Metallic Sound by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Metallic Sound by additional 10%. +-------------------------- +Refine Level +9: +Decreases Metallic Sound skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Metallic Sound by additional 20%. +# +311243# +Increases damage of Reverberation by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Reverberation by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Reverberation by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Reverberation by additional 20%. +# +311244# +Increases damage of Prominence Kick and Solar Burst by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Prominence Kick and Solar Burst by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Prominence Kick and Solar Burst by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Prominence Kick and Solar Burst by additional 20%. +# +311245# +Increases damage of New Moon Kick and Full Moon Kick by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of New Moon Kick and Full Moon Kick by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of New Moon Kick and Full Moon Kick by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of New Moon Kick and Full Moon Kick by additional 20%. +# +311246# +Increases damage of Flash Kick and Falling Star by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Flash Kick and Falling Star by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Flash Kick and Falling Star by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Flash Kick and Falling Star by additional 20%. +# +311247# +Increases damage of Espa by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Espa by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Espa by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Espa by additional 20%. +# +311248# +Increases damage of Eswhoo by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Eswhoo by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Eswhoo by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Eswhoo by additional 20%. +# +311249# +Increases damage of Curse Explosion by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Curse Explosion by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Curse Explosion by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Curse Explosion by additional 20%. +# +311250# +Increases damage of Fire Dance by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Fire Dance by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Fire Dance by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Fire Dance by additional 20%. +# +311251# +Increases damage of Hammer of God by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Hammer of God by additional 10%. +-------------------------- +Refine Level +9: +Decreases Hammer of God skill cooldown by 8 seconds. +-------------------------- +Refine Level +11: +Increases damage of Hammer of God by additional 20%. +# +311252# +Increases damage of Dragon Tail by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Dragon Tail by additional 10%. +-------------------------- +Refine Level +9: +Decreases Dragon Tail skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Dragon Tail by additional 20%. +# +311253# +Increases damage of Shattering Storm and Banishing Buster by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Shattering Storm and Banishing Buster by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Banishing Buster by additional 20%. +Decreases Shattering Storm skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Shattering Storm and Banishing Buster by additional 20%. +# +311254# +Increases damage of Round Trip by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Round Trip by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Round Trip by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Round Trip by additional 20%. +# +311255# +Increases damage of Cross Slash by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Cross Slash by additional 10%. +-------------------------- +Refine Level +9: +Decreases Cross Slash skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Cross Slash by additional 20%. +# +311256# +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 20%. +# +311257# +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 20%. +# +311258# +Increases damage of Kunai Splash and Kunai Explosion by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Kunai Splash and Kunai Explosion by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Kunai Splash and Kunai Explosion by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Kunai Splash and Kunai Explosion by additional 20%. +# +311259# +Increases damage of Swirling Petal by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Swirling Petal by additional 10%. +-------------------------- +Refine Level +9: +Decreases Swirling Petal skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Swirling Petal by additional 20%. +# +311260# +Increases damage of Silvervine Stem Spear by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Silvervine Stem Spear by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Silvervine Stem Spear by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Silvervine Stem Spear by additional 20%. +# +311261# +Increases damage of Catnip Meteor by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Catnip Meteor by additional 10%. +-------------------------- +Refine Level +9: +Decreases Catnip Meteor skill cooldown by 1.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Catnip Meteor by additional 20%. +# +311262# +Increases damage of Lunatic Carrot Beat by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Lunatic Carrot Beat by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Lunatic Carrot Beat by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Lunatic Carrot Beat by additional 20%. +# +311263# +Increases damage of Picky Peck by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Picky Peck by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Picky Peck by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Picky Peck by additional 20%. +# +311264# +Increases damage of Spirit of Savage by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Spirit of Savage by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Spirit of Savage by additional 20%. +-------------------------- +Refine Level +11: +Increases damage of Spirit of Savage by additional 20%. +# +311265# +Increases damage of Holy Cross by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Holy Cross by additional 20%. +-------------------------- +Refine Level +9: +Increases damage of Holy Cross by additional 30%. +-------------------------- +Refine Level +11: +Increases damage of Holy Cross by additional 20%. +# +311266# +Increases damage of Back Stab by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Back Stab by additional 20%. +-------------------------- +Refine Level +9: +Increases damage of Back Stab by additional 30%. +-------------------------- +Refine Level +11: +Increases damage of Back Stab by additional 20%. +# +311267# +Increases damage of Shield Boomerang by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Shield Boomerang by additional 20%. +-------------------------- +Refine Level +9: +Increases damage of Shield Boomerang by additional 30%. +-------------------------- +Refine Level +11: +Increases damage of Shield Boomerang by additional 20%. +# +311268# +Increases damage of Lord of Vermilion by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Lord of Vermilion by additional 20%. +-------------------------- +Refine Level +9: +Increases damage of Lord of Vermilion by additional 30%. +-------------------------- +Refine Level +11: +Increases damage of Lord of Vermilion by additional 20%. +# +311269# +Increases damage of Jupital Thunder by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Jupital Thunder by additional 20%. +-------------------------- +Refine Level +9: +Increases damage of Jupital Thunder by additional 30%. +-------------------------- +Refine Level +11: +Increases damage of Jupital Thunder by additional 20%. +# +311270# +Increases damage of Meteor Storm by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Meteor Storm by additional 20%. +-------------------------- +Refine Level +9: +Increases damage of Meteor Storm by additional 30%. +-------------------------- +Refine Level +11: +Increases damage of Meteor Storm by additional 20%. +# +311271# +Increases damage of Storm Gust by 20%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Storm Gust by additional 20%. +-------------------------- +Refine Level +9: +Increases damage of Storm Gust by additional 30%. +-------------------------- +Refine Level +11: +Increases damage of Storm Gust by additional 20%. +# +311272# +Increases damage of Servant Weapon by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Servant Weapon by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Servant Weapon by additional 10%. +# +311273# +Increases damage of Hack and Slasher by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Hack and Slasher by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Hack and Slasher by additional 10%. +# +311274# +Increases damage of Madness Crusher by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Madness Crusher by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Madness Crusher by additional 10%. +# +311275# +Increases damage of Storm Slash by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Storm Slash by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Storm Slash by additional 10%. +# +311276# +Increases damage of Overslash by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Overslash by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Overslash by additional 10%. +# +311277# +Increases damage of Shield Shooting by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Shield Shooting by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Shield Shooting by additional 10%. +# +311278# +Increases damage of Cross Rain by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Cross Rain by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Cross Rain by additional 10%. +# +311279# +Increases damage of Axe Stomp by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Axe Stomp by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Axe Stomp by additional 10%. +# +311280# +Increases damage of Acidified Zone (Water/Wind/Ground/Fire) by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Acidified Zone (Water/Wind/Ground/Fire) by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Acidified Zone (Water/Wind/Ground/Fire) by additional 10%. +# +311281# +Increases damage of Savage Impact by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Savage Impact by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Savage Impact by additional 10%. +# +311282# +Increases damage of Eternal Slash by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Eternal Slash by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Eternal Slash by additional 10%. +# +311283# +Increases damage of Impact Crater by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Impact Crater by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Impact Crater by additional 10%. +# +311285# +Increases damage of Abyss Dagger by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Abyss Dagger by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Abyss Dagger by additional 10%. +# +311286# +Increases damage of Chain Reaction Shot by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Chain Reaction Shot by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Chain Reaction Shot by additional 10%. +# +311287# +Increases damage of Frenzy Shot by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Frenzy Shot by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Frenzy Shot by additional 10%. +# +311288# +Increases damage of Abyss Square by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Abyss Square by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Abyss Square by additional 10%. +# +311289# +Increases damage of Deft Stab by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Deft Stab by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Deft Stab by additional 10%. +# +311290# +Increases damage of Floral Flare Road and Crimson Arrow by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Floral Flare Road and Crimson Arrow by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Floral Flare Road and Crimson Arrow by additional 10%. +# +311291# +Increases damage of Rain of Crystal and Frozen Slash by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Rain of Crystal and Frozen Slash by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Rain of Crystal and Frozen Slash by additional 10%. +# +311292# +Increases damage of Tornado Storm and Storm Cannon by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Tornado Storm and Storm Cannon by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Tornado Storm and Storm Cannon by additional 10%. +# +311293# +Increases damage of Stratum Tremor and Rock Down by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Stratum Tremor and Rock Down by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Stratum Tremor and Rock Down by additional 10%. +# +311294# +Increases damage of Mystery Illusion and Soul Vulcan Strike by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Mystery Illusion and Soul Vulcan Strike by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Mystery Illusion and Soul Vulcan Strike by additional 10%. +# +311295# +Increases damage of Diamond Storm by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Diamond Storm by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Diamond Storm by additional 10%. +# +311296# +Increases damage of Conflagration by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Conflagration by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Conflagration by additional 10%. +# +311297# +Increases damage of Lightning Land by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Lightning Land by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Lightning Land by additional 10%. +# +311298# +Increases damage of Terra Drive by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Terra Drive by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Terra Drive by additional 10%. +# +311299# +Increases damage of Venom Swamp by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Venom Swamp by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Venom Swamp by additional 10%. +# +311300# +Increases damage of Framen by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Framen by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Framen by additional 10%. +# +311301# +Increases damage of Arbitrium by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Arbitrium by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Arbitrium by additional 10%. +# +311302# +Increases damage of Petitio by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Petitio by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Petitio by additional 10%. +# +311303# +Increases damage of Second Faith and Third Punish by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Second Faith and Third Punish by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Second Faith and Third Punish by additional 10%. +# +311304# +Increases damage of Second Judgement and Third Consecration by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Second Judgement and Third Consecration by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Second Judgement and Third Consecration by additional 10%. +# +311305# +Increases damage of Second Flame and Third Flame Bomb by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Second Flame and Third Flame Bomb by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Second Flame and Third Flame Bomb by additional 10%. +# +311306# +Increases damage of Explosion Blaster by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Explosion Blaster by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Explosion Blaster by additional 10%. +# +311307# +Increases damage of Hawk Rush and Hawk Boomerang by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Hawk Rush and Hawk Boomerang by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Hawk Rush and Hawk Boomerang by additional 10%. +# +311308# +Increases damage of Gale Storm by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Gale Storm by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Gale Storm by additional 10%. +# +311309# +Increases damage of Crescive Bolt by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Crescive Bolt by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Crescive Bolt by additional 10%. +# +311310# +Increases damage of Metallic Fury by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Metallic Fury by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Metallic Fury by additional 10%. +# +311311# +Increases damage of Rhythm Shooting by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Rhythm Shooting by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Rhythm Shooting by additional 10%. +# +311312# +Increases damage of Rose Blossom by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Rose Blossom by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Rose Blossom by additional 10%. +# +311313# +Increases damage of Noon Blast and Sunset Blast by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Noon Blast and Sunset Blast by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Noon Blast and Sunset Blast by additional 10%. +# +311314# +Increases damage of Midnight Kick and Dawn Break by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Midnight Kick and Dawn Break by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Midnight Kick and Dawn Break by additional 10%. +# +311315# +Increases damage of Twinkling Galaxy and Star Cannon by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Twinkling Galaxy and Star Cannon by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Twinkling Galaxy and Star Cannon by additional 10%. +# +311316# +Increases damage of Talisman of Blue Dragon by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Talisman of Blue Dragon by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Talisman of Blue Dragon by additional 10%. +# +311317# +Increases damage of Talisman of White Tiger by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Talisman of White Tiger by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Talisman of White Tiger by additional 10%. +# +311318# +Increases damage of Talisman of Red Phoenix by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Talisman of Red Phoenix by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Talisman of Red Phoenix by additional 10%. +# +311319# +Increases damage of Talisman of Black Tortoise by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Talisman of Black Tortoise by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Talisman of Black Tortoise by additional 10%. +# +311320# +Increases damage of Exorcism of Malicious Soul by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Exorcism of Malicious Soul by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Exorcism of Malicious Soul by additional 10%. +# +311321# +Increases damage of Shadow Dance and Shadow Flash by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Shadow Dance and Shadow Flash by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Shadow Dance and Shadow Flash by additional 10%. +# +311322# +Increases damage of Huuma Shuriken - Grasp and Huuma Shuriken - Construct by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Huuma Shuriken - Grasp and Huuma Shuriken - Construct by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Huuma Shuriken - Grasp and Huuma Shuriken - Construct by additional 10%. +# +311323# +Increases damage of Kunai - Distortion and Kunai - Refraction by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Kunai - Distortion and Kunai - Refraction by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Kunai - Distortion and Kunai - Refraction by additional 10%. +# +311324# +Increases damage of Red Flame Cannon, Cold Blooded Cannon, Thundering Cannon, Golden Dragon Cannon and Darkening Cannon by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Red Flame Cannon, Cold Blooded Cannon, Thundering Cannon, Golden Dragon Cannon and Darkening Cannon by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Red Flame Cannon, Cold Blooded Cannon, Thundering Cannon, Golden Dragon Cannon and Darkening Cannon by additional 10%. +# +311325# +Increases damage of The Vigilante at Night by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of The Vigilante at Night by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of The Vigilante at Night by additional 10%. +# +311326# +Increases damage of Only One Bullet by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Only One Bullet by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Only One Bullet by additional 10%. +# +311327# +Increases damage of Spiral Shooting by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Spiral Shooting by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Spiral Shooting by additional 10%. +# +311328# +Increases damage of Magazine for One by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Magazine for One by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Magazine for One by additional 10%. +# +311329# +Increases damage of Wild Fire by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Wild Fire by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Wild Fire by additional 10%. +# +311330# +Increases damage of Basic Grenade, Hasty Fire in the Hole and Grenades Dropping by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Basic Grenade, Hasty Fire in the Hole and Grenades Dropping by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Basic Grenade, Hasty Fire in the Hole and Grenades Dropping by additional 10%. +# +311331# +Increases damage of Chulho Sonic Claw by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Chulho Sonic Claw by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Chulho Sonic Claw by additional 10%. +# +311332# +Increases damage of Hogogong Strike by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Hogogong Strike by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Hogogong Strike by additional 10%. +# +311333# +Increases damage of Hyunrok Breeze by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Hyunrok Breeze by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Hyunrok Breeze by additional 10%. +# +311334# +Increases damage of Hyunrok Cannon by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Hyunrok Cannon by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Hyunrok Cannon by additional 10%. +# +311335# +Increases damage of Double Bowling Bash by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Double Bowling Bash by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Double Bowling Bash by additional 10%. +# +311336# +Increases damage of Mega Sonic Blow by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Mega Sonic Blow by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Mega Sonic Blow by additional 10%. +# +311337# +Increases damage of Shield Chain Rush by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Shield Chain Rush by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Shield Chain Rush by additional 10%. +# +311338# +Increases damage of Spiral Pierce Max by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Spiral Pierce Max by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Spiral Pierce Max by additional 10%. +# +311339# +Increases damage of Meteor Storm Buster and Jupitel Thunderstorm by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Meteor Storm Buster and Jupitel Thunderstorm by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Meteor Storm Buster and Jupitel Thunderstorm by additional 10%. +# +311340# +Increases damage of Hell's Drive and Jack Frost Nova by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Hell's Drive and Jack Frost Nova by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Hell's Drive and Jack Frost Nova by additional 10%. +# +311341# +Increases damage of Napalm Vulcan Strike and Ground Gravitation by 10%. +-------------------------- +For each 4 Refine Levels: +Increases damage of Napalm Vulcan Strike and Ground Gravitation by additional 5%. +-------------------------- +Refine Level +9: +Increases damage of Napalm Vulcan Strike and Ground Gravitation by additional 10%. +# +311342# +For each 3 Refine Levels: +ATK +20 +Increases Melee and Ranged Physical Damage by 5%. +-------------------------- +Refine Level +9: +ATK +10% +-------------------------- +Refine Level +11: +P.ATK +5 +-------------------------- +When enchanted on Two-Handed Sword, Two-Handed Spear, Two-Handed Staff, Two-Handed Axe, Katar, Bow, Huuma Shuriken or any Firearm class weapon: +Increases Melee and Ranged Physical Damage by additional 10%. +# +311343# +For each 3 Refine Levels: +MATK +20 +Increases Magical Damage with every element by 5%. +-------------------------- +Refine Level +9: +MATK +10% +-------------------------- +Refine Level +11: +S.MATK +5 +-------------------------- +When enchanted on Two-Handed Sword, Two-Handed Spear, Two-Handed Staff, Two-Handed Axe, Katar, Bow, Huuma Shuriken or any Firearm class weapon: +Increases Magical Damage with every element by additional 10%. +# +311344# +For each 3 Refine Levels: +Critical +4 +Increases Critical Damage by 5%. +-------------------------- +Refine Level +9: +Increases Critical Damage by additional 10%. +-------------------------- +Refine Level +11: +C.Rate +5 +-------------------------- +When enchanted on Two-Handed Sword, Two-Handed Spear, Two-Handed Staff, Two-Handed Axe, Katar, Bow, Huuma Shuriken or any Firearm class weapon: +Increases Critical Damage by additional 10%. +# +311345# +Decreases Variable Casting Time by 7%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 8%. +-------------------------- +When enchanted on Two-Handed Sword, Two-Handed Spear, Two-Handed Staff, Two-Handed Axe, Katar, Bow, Huuma Shuriken or any Firearm class weapon: +Decreases Variable Casting Time by additional 5%. +# +311346# +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by additional 8%). +-------------------------- +When enchanted on Two-Handed Sword, Two-Handed Spear, Two-Handed Staff, Two-Handed Axe, Katar, Bow, Huuma Shuriken or any Firearm class weapon: +ASPD +1 +# +311347# +Decreases After Skill Delay by 7%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by additional 8%. +-------------------------- +When enchanted on Two-Handed Sword, Two-Handed Spear, Two-Handed Staff, Two-Handed Axe, Katar, Bow, Huuma Shuriken or any Firearm class weapon: +Decreases After Skill Delay by additional 5%. +# +311348# +Increases Physical Damage against monsters of every race by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against monsters of every race by additional 10%. +-------------------------- +When enchanted on Two-Handed Sword, Two-Handed Spear, Two-Handed Staff, Two-Handed Axe, Katar, Bow, Huuma Shuriken or any Firearm class weapon: +Increases Physical Damage against monsters of every race by additional 15%. +# +311349# +Increases Magical Damage against monsters of every race by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage against monsters of every race by additional 10%. +-------------------------- +When enchanted on Two-Handed Sword, Two-Handed Spear, Two-Handed Staff, Two-Handed Axe, Katar, Bow, Huuma Shuriken or any Firearm class weapon: +Increases Magical Damage against monsters of every race by additional 15%. +# +311350# +Increases Physical Damage against monsters of every size by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against monsters of every size by additional 10%. +-------------------------- +When enchanted on Two-Handed Sword, Two-Handed Spear, Two-Handed Staff, Two-Handed Axe, Katar, Bow, Huuma Shuriken or any Firearm class weapon: +Increases Physical Damage against monsters of every size by additional 15%. +# +311351# +Increases Magical Damage against monsters of every size by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage against monsters of every size by additional 10%. +-------------------------- +When enchanted on Two-Handed Sword, Two-Handed Spear, Two-Handed Staff, Two-Handed Axe, Katar, Bow, Huuma Shuriken or any Firearm class weapon: +Increases Magical Damage against monsters of every size by additional 15%. +# +311352# +Increases Physical Damage against monsters of every element by 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against monsters of every element by additional 10%. +-------------------------- +When enchanted on Two-Handed Sword, Two-Handed Spear, Two-Handed Staff, Two-Handed Axe, Katar, Bow, Huuma Shuriken or any Firearm class weapon: +Increases Physical Damage against monsters of every element by additional 15%. +# +311353# +Increases Magical Damage against monsters of every element by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage against monsters of every element by additional 10%. +-------------------------- +When enchanted on Two-Handed Sword, Two-Handed Spear, Two-Handed Staff, Two-Handed Axe, Katar, Bow, Huuma Shuriken or any Firearm class weapon: +Increases Magical Damage against monsters of every element by additional 15%. +# +311354# +Increases Critical Damage by 10%. +Critical +10 +# +311355# +CON +5 +# +311356# +For each Level of Clementia: +Decreases After Skill Delay by 3%. +-------------------------- +When equipped with Archbishop Stone(Garment): +Increases Magical Damage with every element by 15%. +-------------------------- +When equipped with Archbishop Stone II(Garment): +Increases Magical Damage against enemies of every size by 15%. +# +311357# +For each Level of Lauda Agnus: +Decreases Variable Casting Time by 3%. +-------------------------- +When equipped with Archbishop Stone(Garment): +Increases damage of Adoramus by 15%. +-------------------------- +When equipped with Archbishop Stone II(Garment): +Increases damage of Judex by 15%. +# +311358# +For each Level of Expiatio: +Decreases Fixed Casting Time by 0.1 second. +-------------------------- +When equipped with Archbishop Stone(Garment): +Increases Magical Damage against enemies of every race, except Players, by 15%. +-------------------------- +When equipped with Archbishop Stone II(Garment): +Increases damage of Adoramus by 15%. +# +311359# +For each 2 Levels of Ranger Main: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Ranger Stone(Garment): +Decreases Unlimit skill cooldown by 45 seconds. +-------------------------- +When equipped with Ranger Stone II(Garment): +Increases damage of Sharp Shooting by 15%. +# +311360# +For each Level of Trap Research: +Decreases Variable Casting Time by 1%. +-------------------------- +When equipped with Ranger Stone(Garment): +Increases damage of Arrow Storm by 15%. +-------------------------- +When equipped with Ranger Stone II(Garment): +Increases damage of Aimed Bolt by 15%. +# +311361# +For each Level of Fear Breeze: +Increases Ranged Physical Damage by 2%. +-------------------------- +When equipped with Ranger Stone(Garment): +Physical attacks have a 2% chance to absorb 1% of the inflicted damage as SP. +-------------------------- +When equipped with Ranger Stone II(Garment): +Increases Physical Damage against enemies of every size by 15%. +# +311362# +For each Level of Escape: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +When equipped with Shadow Chaser Stone(Garment): +Increases damage of Feint Bomb by 15%. +-------------------------- +When equipped with Shadow Chaser Stone II(Garment): +Physical attacks have a 1% chance to absorb 1% of the inflicted damage as SP. +# +311363# +For each Level of Shadow Form: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Shadow Chaser Stone(Garment): +Increases damage of Triangle Shot by 15%. +-------------------------- +When equipped with Shadow Chaser Stone II(Garment): +Increases damage of Fatal Menace by 15%. +# +311364# +For each Level of Reproduce: +Increases Melee and Ranged Physical Damage by 1%. +-------------------------- +When equipped with Shadow Chaser Stone(Garment): +Increases Physical Damage against enemies of every element by 15%. +-------------------------- +When equipped with Shadow Chaser Stone II(Garment): +Increases Physical Damage against enemies of every size by 15%. +# +311367# +When equipped with Thanos Greatsword-AD: +Increases damage of Wind Cutter and Servant Weapon by 15%. + +For each 2 Refine Levels of equipped Weapon: +Increases Melee Physical Damage by 2%. +-------------------------- +When equipped with Thanos Axe-AD: +Increases damage of Axe Tornado and Axe Stomp by 15%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Axe Boomerang by 6%. +-------------------------- +When equipped with Thanos Spear-AD: +Increases damage of Hesperus Lit and Overslash by 15%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Overbrand by 6%. +-------------------------- +[Bonus by Grade of Headgear] +[Grade D]: POW +1 +[Grade C]: P.ATK +1 +# +311368# +When equipped with Thanos Greatsword-AD: +Increases damage of Wind Cutter and Servant Weapon by 20%. + +For each 2 Refine Levels of equipped Weapon: +Increases Melee Physical Damage by 4%. +-------------------------- +When equipped with Thanos Axe-AD: +Increases damage of Axe Tornado and Axe Stomp by 20%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Axe Boomerang by 9%. +-------------------------- +When equipped with Thanos Spear-AD: +Increases damage of Hesperus Lit and Overslash by 20%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Overbrand by 9%. +-------------------------- +[Bonus by Grade of Headgear] +[Grade D]: POW +2 +[Grade C]: P.ATK +2 +# +311369# +When equipped with Thanos Greatsword-AD: +Increases damage of Wind Cutter and Servant Weapon by 25%. + +For each 2 Refine Levels of equipped Weapon: +Increases Melee Physical Damage by 6%. +-------------------------- +When equipped with Thanos Axe-AD: +Increases damage of Axe Tornado and Axe Stomp by 25%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Axe Boomerang by 12%. +-------------------------- +When equipped with Thanos Spear-AD: +Increases damage of Hesperus Lit and Overslash by 25%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Overbrand by 12%. +-------------------------- +[Bonus by Grade of Headgear] +[Grade D]: POW +3 +[Grade C]: P.ATK +3 +# +311370# +When equipped with Thanos Sword-AD: +Increases damage of Cart Cannon and Acidified Zone (Fire/Water/Wind/Ground) by 15%. + +For each 2 Refine Levels of equipped Weapon: +Increases Ranged Physical Damage by 2%. +-------------------------- +When equipped with Thanos Bow-AD: +Increases damage of Sharp Shooting and Crescive Bolt by 15%. + +For each 2 Refine Levels of equipped Weapon: +Increases Ranged Physical Damage by 2%. +-------------------------- +When equipped with Thanos Violin-AD or Thanos Whip-AD: +Increases damage of Severe Rainstorm and Rhythm Shooting by 15%. + +For each 2 Refine Levels of equipped Weapon: +Increases Ranged Physical Damage by 2%. +-------------------------- +[Bonus by Grade of Headgear] +[Grade D]: CON +1 +[Grade C]: P.ATK +1 +# +311371# +When equipped with Thanos Sword-AD: +Increases damage of Cart Cannon and Acidified Zone (Fire/Water/Wind/Ground) by 20%. + +For each 2 Refine Levels of equipped Weapon: +Increases Ranged Physical Damage by 4%. +-------------------------- +When equipped with Thanos Bow-AD: +Increases damage of Sharp Shooting and Crescive Bolt by 20%. + +For each 2 Refine Levels of equipped Weapon: +Increases Ranged Physical Damage by 4%. +-------------------------- +When equipped with Thanos Violin-AD or Thanos Whip-AD: +Increases damage of Severe Rainstorm and Rhythm Shooting by 20%. + +For each 2 Refine Levels of equipped Weapon: +Increases Ranged Physical Damage by 4%. +-------------------------- +[Bonus by Grade of Headgear] +[Grade D]: CON +2 +[Grade C]: P.ATK +2 +# +311372# +When equipped with Thanos Sword-AD: +Increases damage of Cart Cannon and Acidified Zone (Fire/Water/Wind/Ground) by 25%. + +For each 2 Refine Levels of equipped Weapon: +Increases Ranged Physical Damage by 6%. +-------------------------- +When equipped with Thanos Bow-AD: +Increases damage of Sharp Shooting and Crescive Bolt by 25%. + +For each 2 Refine Levels of equipped Weapon: +Increases Ranged Physical Damage by 6%. +-------------------------- +When equipped with Thanos Violin-AD or Thanos Whip-AD: +Increases damage of Severe Rainstorm and Rhythm Shooting by 25%. + +For each 2 Refine Levels of equipped Weapon: +Increases Ranged Physical Damage by 6%. +-------------------------- +[Bonus by Grade of Headgear] +[Grade D]: CON +3 +[Grade C]: P.ATK +3 +# +311373# +When equipped with Thanos Two-Handed Staff-AD: +Increases damage of Crimson Rock, Floral Flare Road and Stratum Tremor by 15%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Earth Strain by 6%. +-------------------------- +When equipped with Thanos Staff-AD: +Increases damage of Varetyr Spear and Lightning Land by 15%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Psychic Wave by 6%. +-------------------------- +When equipped with Thanos Dagger-AD: +Increases damage of Psychic Wave and From the Abyss by 15%. + +For each 2 Refine Levels of equipped Weapon: +Increases Magical Damage with every element by 2%. +-------------------------- +[Bonus by Grade of Headgear] +[Grade D]: SPL +1 +[Grade C]: S.MATK +1 +# +311374# +When equipped with Thanos Two-Handed Staff-AD: +Increases damage of Crimson Rock, Floral Flare Road and Stratum Tremor by 20%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Earth Strain by 9%. +-------------------------- +When equipped with Thanos Staff-AD: +Increases damage of Varetyr Spear and Lightning Land by 20%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Psychic Wave by 9%. +-------------------------- +When equipped with Thanos Dagger-AD: +Increases damage of Psychic Wave and From the Abyss by 20%. + +For each 2 Refine Levels of equipped Weapon: +Increases Magical Damage with every element by 4%. +-------------------------- +[Bonus by Grade of Headgear] +[Grade D]: SPL +2 +[Grade C]: S.MATK +2 +# +311375# +When equipped with Thanos Two-Handed Staff-AD: +Increases damage of Crimson Rock, Floral Flare Road and Stratum Tremor by 25%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Earth Strain by 12%. +-------------------------- +When equipped with Thanos Staff-AD: +Increases damage of Varetyr Spear and Lightning Land by 25%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Psychic Wave by 12%. +-------------------------- +When equipped with Thanos Dagger-AD: +Increases damage of Psychic Wave and From the Abyss by 25%. + +For each 2 Refine Levels of equipped Weapon: +Increases Magical Damage with every element by 6%. +-------------------------- +[Bonus by Grade of Headgear] +[Grade D]: SPL +3 +[Grade C]: S.MATK +3 +# +311376# +When equipped with Thanos Hammer-AD: +Increases damage of Duple Light and Petitio by 15%. + +For each 2 Refine Levels of equipped Weapon: +Increases Ranged Physical Damage by 2%. +-------------------------- +When equipped with Thanos Knuckle-AD: +Increases damage of Tiger Cannon and Third Flame Bomb by 15%. + +For each 2 Refine Levels of equipped Weapon: +MaxHP +2% +-------------------------- +When equipped with Thanos Katar-AD: +Increases damage of Rolling Cutter and Impact Crater by 15%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Counter Slash by 6%. +-------------------------- +[Bonus by Grade of Headgear] +[Grade D]: STA +1 +[Grade C]: P.ATK +1 +# +311377# +When equipped with Thanos Hammer-AD: +Increases damage of Duple Light and Petitio by 20%. + +For each 2 Refine Levels of equipped Weapon: +Increases Ranged Physical Damage by 4%. +-------------------------- +When equipped with Thanos Knuckle-AD: +Increases damage of Tiger Cannon and Third Flame Bomb by 20%. + +For each 2 Refine Levels of equipped Weapon: +MaxHP +3% +-------------------------- +When equipped with Thanos Katar-AD: +Increases damage of Rolling Cutter and Impact Crater by 20%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Counter Slash by 9%. +-------------------------- +[Bonus by Grade of Headgear] +[Grade D]: STA +2 +[Grade C]: P.ATK +2 +# +311378# +When equipped with Thanos Hammer-AD: +Increases damage of Duple Light and Petitio by 25%. + +For each 2 Refine Levels of equipped Weapon: +Increases Ranged Physical Damage by 6%. +-------------------------- +When equipped with Thanos Knuckle-AD: +Increases damage of Tiger Cannon and Third Flame Bomb by 25%. + +For each 2 Refine Levels of equipped Weapon: +MaxHP +5% +-------------------------- +When equipped with Thanos Katar-AD: +Increases damage of Rolling Cutter and Impact Crater by 25%. + +For each 2 Refine Levels of equipped Weapon: +Increases damage of Counter Slash by 12%. +-------------------------- +[Bonus by Grade of Headgear] +[Grade D]: STA +3 +[Grade C]: P.ATK +3 +# +311379# +Increases damage of The Vigilante at Night by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of The Vigilante at Night +3%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of The Vigilante at Night +4%. +[Grade A]: Damage of The Vigilante at Night +6%. +# +311380# +Increases damage of Magazine for One by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Magazine for One +3%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Magazine for One +4%. +[Grade A]: Damage of Magazine for One +6%. +# +311381# +Increases damage of Wild Fire by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Wild Fire +3%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Wild Fire +4%. +[Grade A]: Damage of Wild Fire +6%. +# +311382# +Increases damage of Huuma Shuriken - Grasp by 5%. +-------------------------- +[Bonus by Weapon Grade] +[Grade D]: Damage of Huuma Shuriken - Grasp +3%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Damage of Huuma Shuriken - Grasp +4%. +[Grade A]: Damage of Huuma Shuriken - Grasp +6%. +# +311384# +Increases Melee Physical Damage by 2%. +# +311385# +Increases Melee Physical Damage by 4%. +# +311386# +Increases Melee Physical Damage by 6%. +# +311387# +Increases Melee Physical Damage by 8%. +# +311388# +Increases Melee Physical Damage by 10%. +# +311389# +Increases Magical Damage with every element by 2%. +# +311390# +Increases Magical Damage with every element by 4%. +# +311391# +Increases Magical Damage with every element by 6%. +# +311392# +Increases Magical Damage with every element by 8%. +# +311393# +Increases Magical Damage with every element by 10%. +# +311394# +Increases Attack Speed (Decreases After Attack Delay by 10%). +ASPD +1 +# +311395# +HIT +5 +Perfect HIT +3% +# +311396# +HIT +10 +Perfect HIT +6% +# +311397# +HIT +15 +Perfect HIT +9% +# +311398# +HIT +20 +Perfect HIT +12% +# +311399# +HIT +25 +Perfect HIT +15% +# +311400# +Decreases Variable Casting Time by 2%. +# +311401# +Decreases Variable Casting Time by 4%. +# +311402# +Decreases Variable Casting Time by 6%. +# +311403# +Decreases Variable Casting Time by 8%. +# +311404# +Decreases Variable Casting Time by 10%. +# +311425# +SPL +5 +# +311426# +S.MATK +3 +-------------------------- +When equipped with Magic Power Stone(Upper): +S.MATK +1, SPL +1 +-------------------------- +When equipped with Magic Power Stone(Middle): +S.MATK +1, SPL +1 +-------------------------- +When equipped with Magic Power Stone(Lower): +S.MATK +1, SPL +1 +-------------------------- +When equipped with Spell Stone(Dual): +S.MATK +5, SPL +3 +# +311427# +For each 2 Levels of Rising Dragon: +Decreases Fixed Casting Time by 0.1 second. +-------------------------- +When equipped with Sura Stone(Garment): +Increases damage of Ride in Lightning by 20%. +-------------------------- +When equipped with Sura Stone II(Garment): +Increases damage of Knuckle Arrow by 15%. +# +311428# +For each Level of Gentle Touch-Revitalize: +Increases Melee Physical Damage by 2%. +-------------------------- +When equipped with Sura Stone(Garment): +Increases damage of Ride in Lightning by 20%. +-------------------------- +When equipped with Sura Stone II(Garment): +Increases damage of Tiger Cannon by 15%. +# +311429# +For each Level of Gentle Touch-Change: +Increases Ranged Physical Damage by 2%. +-------------------------- +When equipped with Sura Stone(Garment): +Increases damage of Rampage Blaster by 15%. +-------------------------- +When equipped with Sura Stone II(Garment): +Increases damage of Knuckle Arrow by 15%. +# +311430# +For each Level of Fire Earth Research: +Decreases Variable Casting Time by 1%. +-------------------------- +When equipped with Mechanic Stone(Garment): +Increases damage of Axe Tornado by 15%. +-------------------------- +When equipped with Mechanic Stone II(Garment): +Increases damage of Knuckle Boost by 15%. +# +311431# +For each Level of Mado Gear License: +Increases Melee and Ranged Physical Damage by 1%. +-------------------------- +When equipped with Mechanic Stone(Garment): +Increases damage of Axe Boomerang by 15%. +-------------------------- +When equipped with Mechanic Stone II(Garment): +Increases damage of Arm Cannon by 15%. +# +311432# +For each 2 Levels of Axe Mastery: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Mechanic Stone(Garment): +Increases damage of Power Swing by 15%. +-------------------------- +When equipped with Mechanic Stone II(Garment): +Increases damage of Vulcan Arm by 15%. +# +311433# +For each 2 Levels of Research New Poison: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Assassin Cross Stone(Garment): +Increases damage of Cross Ripper Slasher by 15%. +-------------------------- +When equipped with Assassin Cross Stone II(Garment): +Increases damage of Counter Slash by 15%. +# +311434# +For each Level of Dark Illusion: +Increases Melee Physical Damage by 2%. +-------------------------- +When equipped with Assassin Cross Stone(Garment): +Increases damage of Rolling Cutter by 15%. +-------------------------- +When equipped with Assassin Cross Stone II(Garment): +Increases damage of Cross Impact by 15%. +# +311435# +For each Level of Dark Illusion: +Increases Melee Physical Damage by 2%. +-------------------------- +When equipped with Assassin Cross Stone(Garment): +Increases damage of Rolling Cutter by 15%. +-------------------------- +When equipped with Assassin Cross Stone II(Garment): +Increases damage of Cross Impact by 15%. +# +311817# +Increases melee physical damage by 1%. +# +311818# +Increases melee physical damage by 2%. +# +311819# +Increases melee physical damage by 3%. +# +312159# +DEF +9 +# +312160# +DEF +18 +# +312161# +DEF +30 +# +312171# +ATK +10 +# +312172# +ATK +15 +# +312173# +ATK +21 +# +312181# +MATK +10 +# +312182# +MATK +15 +# +312183# +MATK +21 +# +400000# +It seems that you can hear Jitterburg's piano playing and Fer's whistling. +-------------------------- +ATK +1% +MATK +1% +-------------------------- +When equipped with Pendant of Maelstrom: +Increases Critical Damage by 10%. +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Pendant of Chaos: +Increases Critical Damage by 10%. +-------------------------- +When equipped with Pendant of Harmony: +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +3rd Job Classes +# +400001# +Ceremonial headgear for the winner. +Decorate ears to show off their splendid appearance. +-------------------------- +Hit +15 +Agi +2 +Flee +5 +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +400002# +Ears ornament known only given to a winner. +Wear it to show off your splendor. +-------------------------- +ATK +5 +MATK +5 +-------------------------- +Decreases After Skill Delay by 4%. +-------------------------- +This item can't receive additional enchantment from Piercing Brosnan. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +400003# +Available for 7 days. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +400011# +A high-ranking officer's hat. +Gold ornaments are the highlight of the understated color tone. +-------------------------- +When equipped, consumes 10 HP every 5 seconds. +-------------------------- +For each 2 Refine Levels: +ATK +5 +MATK +5 +-------------------------- +Refine Level +7: +ATK +5% +MATK +5% +-------------------------- +Refine Level +9: +Physical attacks have a 5% chance of absorbing 5% of the damage dealt as HP. +Physical attacks have a 1% chance of absorbing 3% of the damage dealt as SP. + +Magical attacks have a 4% chance to recover 300 HP every second for 4 seconds. +Magical attacks have a 4% chance to recover 70 SP every second for 4 seconds. +-------------------------- +Type: Headgear +Defense: 35 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +400016# +A turkey-shaped costume made to commemorate the Thanksgiving Festival. +It's pretty cute sitting above your head. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +400020# +A light ball inflated with bright colors suitable for summer. +Let's play with it on the sandy beach! +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 20. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400021# +A hat worn by the Aldebaran clock tower repairman. The clock model decoration is particularly attractive. +It has been modified to suit the OS weapons. +-------------------------- +For each 2 Refine Levels: +ATK +20 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases Melee Physical Damage by 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Small and Medium sized enemies by 15%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Meuchler-OS: +ATK +30 + +For each 2 Refine Levels of Meuchler-OS: +Increases damage of Rolling Cutter by 4%. +-------------------------- +When equipped with Circuit Board-OS: +ATK +30 + +For each 2 Refine Levels of Circuit Board-OS: +Increases damage of Solar Burst by 4%. +-------------------------- +When equipped with Beam Claymore-OS: +Critical +10 + +For each 2 Refine Levels of Beam Claymore-OS: +Increases Damage against monsters of Large sized enemies by 4%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +400022# +A mysterious hat from Captain Ignis. +It has been modified to suit the OS weapons. +-------------------------- +For each 2 Refine Levels +ATK +20 +-------------------------- +Refine Level +7: +Decreases Variable Casting time by 10%. +-------------------------- +Refine Level +9: +Increase Ranged Physical Damage by 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Small and Medium size by 15%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Saphir Mace-OS, +ATK +30 + +For each 2 Refine Levels of Saphir Mace-OS: +Increases damage of Cart Cannon by 4%. +-------------------------- +When equipped with Virtual Bow-OS, +Decreases Arrow Storm skill cooldown by 2.5 seconds. + +For each 2 Refine Levels of Virtual Bow-OS: +Increase Ranged Physical Damage by 7%. +-------------------------- +When equipped with Blasti-OS, +MaxHP +5% + +For each 2 Refine Levels of Blasti-OS: +Decreases Physical and Magical Damage taken from Small size by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +400023# +A doll hat that resembles Thanatos' agony. There are rumors that this doll is talking. +-------------------------- +Increases Damage against Holy and Shadow elemental, Dragon and Angel race by 10%. +-------------------------- +For each 2 Refine Levels: +Increases Damage against Holy and Shadow elemental, Dragon and Angel race by additional 1%. +-------------------------- +MaxHP +5% +MaxSP +5% +-------------------------- +Refine Level +7: +ATK +5% +MATK +5% +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 15%. +-------------------------- +Type: Headgear +Defense: 30 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +400043# +A hairband made from the feathers of a Fallen Angel's wings. +-------------------------- +Allstats +1 +-------------------------- +Damage taken from Holy property attack +10% +-------------------------- +Damage taken from Angel monsters +15%. +-------------------------- +Resistance against Demon, Demi-human enemies +6%. +-------------------------- +If refine level is +10 or above and +equip with refine level +10 or above Fallen Angel Wing, +-------------------------- +has a chance to apply Stone Curse to all enemies in 5x5 cells around to wearer upon receiving physical damage. +-------------------------- +Resistance to all races except Angel enemies +3%. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +Base Level 30 +# +400044# +A stylishly crafted hat found somewhere. +It has been modified to suit the OS weapons. +-------------------------- +For each 2 Refine Levels: +MATK +20 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increase Magical Damage with every element by 15%. +-------------------------- +Refine Level +11: +Increases Magical Damage against monsters of Small and Medium size by 15%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Electric Fox-OS: +Decreases Catnip Meteor skill cooldown by 1 second. + +For each 2 Refine Levels of Electric Fox-OS: +Increases damage of Catnip Meteor by 4%. +-------------------------- +When equipped with Rutilus Stick-OS: +MATK +30 + +For each 2 Refine Levels of Rutilus Stick-OS: +Increases damage of Espa and Eswhoo by 4%. +-------------------------- +When equipped with Ultio-OS: +Increases Magical Damage with Holy element by 5%. + +For each 2 Refine Levels of Ultio-OS: +Decreases Variable Casting Time by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +400045# +A hat inspired by the Sharpshooter's apple. +The figure pierced by an arrow feels rather cute. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +400046# +A hat inspired by the Sharpshooter's apple. +The figure pierced by an arrow feels rather cute. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400049# +A hat characterized by long stripes running from the brim of the hat to the back of the head. +It has been modified to suit the OS weapons. +-------------------------- +For each 2 Refine Levels: +ATK +20 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Small and Medium sized enemies by 15. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Boost Lance-OS: +ATK +30 + +For each 2 Refine Levels of Boost Lance-OS: +Increases damage of Cannon Spear by 4%. +-------------------------- +When equipped with MH-P89-OS: +Increases damage of Severe Rainstorm by 10%. + +For each 2 Refine Levels of MH-P89-OS: +Increases Ranged Physical Damage by 3%. +-------------------------- +When equipped with AC-B44-OS: +Decreases After Skill Delay by 10%. + +For each 2 Refine Levels of AC-B44-OS: +Increases Ranged Physical Damage by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +400053# +A helm that was once owned by Morrigan, the goddess of war. +-------------------------- +STR +5 +Critical +5 +-------------------------- +Refine Level +7: +ATK +50 +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +When equipped with Illusion Morrigan's Manteau, Illusion Morrigan's Pendant and Illusion Morrigan's Belt: +STR +5 +ATK +10% +Critical +5 +MaxHP +10%, MaxSP +10%, +Increases Physical Damage against enemies of Small size by 20%. +-------------------------- +Total Refine Level of entire set at least +18: +Perfect Dodge +10, ATK +50. +-------------------------- +Total Refine Level of entire set at least +22: +Increases Critical Damage by 20%. +Increases Physical Damage against enemies of Medium size by 20%. +-------------------------- +Type: Headgear +Defense: 15 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +All Jobs except Novice +# +400054# +It is said that a certain great mage prepared it in a robe and used it. +It has been modified to suit the OS weapons. +-------------------------- +For each 2 Refine Levels: +MATK +20 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 15%. +-------------------------- +Refine Level +11: +Increases Magical Damage against monsters of Small and Medium sized enemies by 15%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Cannon Rapier-OS: +MATK +30 + +For each 2 Refine Levels of Cannon Rapier-OS: +Increases damage of Hell Inferno by 4%. +-------------------------- +When equipped with Rutilus Stick-OS: +MATK +30 + +For each 2 Refine Levels of Rutilus Stick-OS: +Increases damage of Comet by 4%. +-------------------------- +When equipped with Kuroiro-OS: +Increases Magical Damage with Water, Wind and Fire element by 5%. + +For each 2 Refine Levels of Kuroiro-OS: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +400055# +Poring, wearing a Santa hat, is awe-inspiring, sparkling and jumping from overhead. +-------------------------- +Increases experience gained from monsters by 10%. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400056# +A costume long hair wig that lets you feel like a different hairstyle when worn. +It is finished in a slightly dark cyan color. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +400057# +If you wear it, you can feel like a different hairstyle than usual. +The shaggy hair was finished with more voluminous feel. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +400059# +The crown representing Scorpio, the eighth position of the zodiac. The birthstone, Topaz, is embedded. +It has been modified to suit the OS weapons. +-------------------------- +For each 2 Refine Levels: +MATK +20 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 15%. +-------------------------- +Refine Level +11: +Increases Magical Damage against monsters of Small and Medium sized enemies by 15%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Cannon Rapier-OS: +Increases Magical Damage with Holy element by 4%. + +For each 2 Refine Levels of Cannon Rapier-OS: +Increases damage of Genesis Ray by 4%. +-------------------------- +When equipped with Rutilus Stick-OS: +MATK +30 + +For each 2 Refine Levels of Rutilus Stick-OS: +Increases damage of Psychic Wave by 3%. +-------------------------- +When equipped with Ultio-OS: +Increases Magical Damage with Holy element by 5%. + +For each 2 Refine Levels of Ultio-OS: +Increases damage of Judex by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +400061# +The crown representing Sagittarius, the ninth position of the zodiac. The birthstone, Zircon, is embedded. +It has been modified to suit the OS weapons. +-------------------------- +For each 2 Refine Levels: +ATK +20 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Small and Medium sized enemies by 15%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Burning Knuckle-OS: +Decreases Rampage Blaster skill cooldown by 1 second. + +For each 2 Refine Levels of Burning Knuckle-OS: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +When equipped with Saphir Mace-OS: +Decreases Variable Casting Time by additional 10%. + +For each 2 Refine Levels of Saphir Mace-OS: +Increases damage of Acid Demonstration by 3%. +-------------------------- +When equipped with HR-S55-OS: +Increases Ranged Physical Damage by additional 5%. + +For each 2 Refine Levels of HR-S55-OS: +Increases damage of Hammer of God by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +400073# +The scent of roses and petals spreading all over the place will make your way into a romantic atmosphere. +-------------------------- +Collection Effect +Reduces the global delay of skills by 1% +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400074# +Mysterious hat. +If you look closely, it seems like time has stopped. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 21. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400076# +Ragnarok's 20th anniversary balloon. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +400078# +A crown made with bent horns and white mane made for specific subjects, and decorated with red gems. +-------------------------- +For each 2 Refine Levels: +ATK +20 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 10%. +-------------------------- +When equipped with Volar: +Increases Critical Damage by 10%. + +For each Refine Level of Volar: +Increases damage of Ignition Break by 12%. +-------------------------- +When equipped with Vernan: +Decreases After Skill Delay by 10%. + +For each Refine Level of Vernan: +Increases damage of Sonic Wave by 10%. +-------------------------- +When equipped with Argen Blanco: +Decreases Hundred Spear skill cooldown by 0.5 seconds. + +For each Refine Level of Argen Blanco: +Increases damage of Hundred Spear by 10%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Rune Knight +# +400079# +A crown in the shape of a unique curved tube made for specific subjects. Decorated with blue gemstones. +-------------------------- +For each 2 Refine Levels: +ATK +20 +MATK +20 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +ATK +15% +Increases Magical Damage with Holy element by 15%. +-------------------------- +Refine Level +11: +Increases damage against enemies of every size by 10%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Farthezan: +Decreases Variable Casting Time by 10%. + +For each Refine Level of Farthezan: +Increases damage of Pressure and Genesis Ray by 10%. +-------------------------- +When equipped with Harve: +Decreases Shield Press skill cooldown by 1 second. + +For each Refine Level of Harve: +Increases damage of Shield Press by 10%. +-------------------------- +When equipped with Fortrage: +Decreases Cannon Spear skill cooldown by 0.5 seconds. + +For each Refine Level of Fortrage: +Increases damage of Cannon Spear by 12%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Royal Guard +# +400094# +A crown designed for specific subjects. +The jadeite crown has a pink lace. It is said that it plays a role in increasing the power. +-------------------------- +For each 2 Refine Levels: +MATK +2% +Increases SP Recovery Rate by 6%. +-------------------------- +Refine Level +7: +All Stats +3 +-------------------------- +Refine Level +9: +MATK +4% +-------------------------- +Refine Level +11: +Increases Magical Damage with Neutral, Fire and Ghost element by 20%. +-------------------------- +When equipped with Crimson Rose Stick: +Decreases Crimson Rock skill cooldown by 1 second. + +For each Refine Level of Crimson Rose Stick: +Increases damage of Crimson Rock by 3%. +-------------------------- +When equipped with Staff of Miracle: +Increases Magical Damage with Ghost element by 3%. + +For each Refine Level of Staff of Miracle: +Increases damage of Soul Expansion by 3%. +-------------------------- +When equipped with Gravitation Staff: +Increases Magical Damage with Neutral element by 3%. + +For each Refine Level of Gravitation Staff: +Increases damage of Gravitation Field and Comet by 3%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Warlock +# +400095# +A crown designed for specific subjects. +It is decorated with a blue spinel symbolizing hope. +-------------------------- +For each 2 Refine Levels: +MATK +2% +Increases SP Recovery Rate by 6%. +-------------------------- +Refine Level +7: +All Stats +3 +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Increases Magical Damage with Neutral, Earth and Water element by 20%. +-------------------------- +When equipped with Boltijin: +MATK +2% + +For each Refine Level of Boltijin: +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by 3%. +-------------------------- +When equipped with Psychic Spear Rod: +Increases Magical Damage with Neutral and Wind element by 3%. + +For each Refine Level of Psychic Spear Rod: +Increases damage of Varetyr Spear by 3%. +-------------------------- +When equipped with Dust Grave: +Increases Magical Damage with Water and Earth element by 3%. + +For each Refine Level of Dust Grave: +Increases damage of iamond Dust by 3%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Sorcerer +# +400097# +A newly crafted helmet based on Aegir's helmet. +-------------------------- +Indestructible in battle +-------------------------- +ATK +7% +MATK +7% +-------------------------- +Refine Level +9: +ATK +40 +MATK +40 +-------------------------- +When equipped with Aegirnian Armor, Aegirnian Manteau and Aegirnian Boots: +ATK +5%, MATK +5% +Increases experience gained from Fish and Demi-Human race by 20%. +Increases Damage against monsters of Fish and Demi-Human race by 50%. +Decreases damage taken from Water and Wind elemental attacks by 25%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 140 +# +400098# +A crown designed for specific subjects. +Green gemstones and tough-looking horns add a sense of dignity to the wearer. +-------------------------- +For each 2 Refine Levels: +ATK +20 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 10%. +-------------------------- +When equipped with Golden Wrench: +Increases Physical Damage against enemies of every size by 10%. + +For each Refine Level of Golden Wrench: +Increases damage of Power Swing by 10%. +-------------------------- +When equipped with Engine Pilebunker: +Increases Ranged Physical Damage by 15%. + +For each Refine Level of Engine Pilebunker: +Increases damage of Arms Cannon by 10%. +-------------------------- +When equipped with Maxi Spanner: +Increases Physical Damage against enemies of every size by 10%. + +For each Refine Level of Maxi Spanner: +Increases damage of Axe Tornado by 10%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Mechanic +# +400099# +A crown designed for specific subjects. +It is made of bull horns, but the rounded design is rather cute. +-------------------------- +For each 2 Refine Levels: +ATK +20 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 10%. +-------------------------- +When equipped with Coolant Injection: +Increases Ranged Physical Damage by 10%. + +For each Refine Level of Coolant Injection: +Increases damage of Cart Cannon by 10%. +-------------------------- +When equipped with Gene Rod: +Increases Physical Damage against enemies of every size by 10%. + +For each Refine Level of Gene Rod: +Increases damage of Crazy Weed by 10%. +-------------------------- +When equipped with Estal: +Increases Physical Damage against enemies of every size by 10%. + +For each Refine Level of Estal: +Increases damage of Spore Explosion by 10%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Genetic +# +400115# +Costume made to commemorate the launch of Ragnarok Origin. +Angeling's confident expression is cute. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400116# +A crown designed for specific subjects. +The blue jewel shines like a pupil and seems to see through the enemy. +-------------------------- +For each 2 Refine Levels: +ATK +20 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 10%. +-------------------------- +When equipped with Sharp Star Bow: +Increases Critical Damage by 20%. + +For each Refine Level of Sharp Star Bow: +Increases damage of Sharp Shooting by 10%. +-------------------------- +When equipped with Aiming Bow: +Increases Ranged Physical Damage by 10%. + +For each Refine Level of Aiming Bow: +Increases damage of Aimed Bolt by 10%. +-------------------------- +When equipped with Falken Shooter: +Decreases Arrow Storm skill cooldown by 1.8 seconds. + +For each Refine Level of Falken Shooter: +Increases damage of Arrow Storm by 10%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Ranger +# +400117# +A crown designed for specific subjects. +A golden crown that makes the wearer stand out. It is decorated with blue jewels resembling Venus. +-------------------------- +For each 2 Refine Levels: +ATK +20 +MATK +20 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 15%. +Increases Magical Damage with Neutral element by 10%. +-------------------------- +Refine Level +11: +Increases Magical Damage with every element by 10%. +Increases Physical Damage against enemies of every size by additional 10%. +-------------------------- +When equipped with Black Circle or Heart Whip: +Increases Magical Damage with Neutral element by 10%. + +For each Refine Level of Black Circle or Heart Whip: +Increases damage of Metallic Sound by 5%. +-------------------------- +When equipped with Antique Cello or Scarlet Ribbon: +Increases Ranged Physical Damage by 10%. + +For each Refine Level of Antique Cello or Scarlet Ribbon: +Increases damage of Severe Rainstorm by 10%. +-------------------------- +When equipped with Wind Gale: +Increases Ranged Physical Damage by 10%. + +For each Refine Level of Wind Gale: +Increases damage of Severe Rainstorm by 10%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Minstrel, Wanderer +# +400118# +A crown designed for specific subjects. +A helmet designed to wrap around your head. It is said that a priest used it in the past. +-------------------------- +For each 2 Refine Levels: +ATK +20 +MATK +20 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +ATK +15% +MATK +15% +-------------------------- +Refine Level +11: +Increases Magical Damage with every element by 10%. +Increases Physical Damage against enemies of every size by 10%. +-------------------------- +When equipped with Adorare Staff: +Increases Magical Damage with Holy element by 10%. + +For each Refine Level of Adorare Staff: +Increases damage of Adoramus by 5%. +-------------------------- +When equipped with Poenitentia: +Increases Magical Damage with Holy element by 10%. + +For each Refine Level of Poenitentia: +Increases damage of Judex by 10%. +-------------------------- +When equipped with Lucis Flail: +Increases Physical Damage against enemies of all sized enmies by 10%. + +For each Refine Level of Lucis Flail: +Increases damage of Duple Light by 10%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Archbishop +# +400119# +A crown designed for specific subjects. +The crown designed with oversized jewels in a jagged design gives an intense feeling. +-------------------------- +For each 2 Refine Levels: +ATK +20 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +MaxHP +10% +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 10%. +-------------------------- +When equipped with Raging Dragon Fist: +Increases Physical Damage against enemies of every size by 10%. + +For each Refine Level of Raging Dragon Fist: +Increases damage of Chain Crush Combo by 10%. +-------------------------- +When equipped with Fighting God's Bandage: +Increases Ranged Physical Damage by 10%. + +For each Refine Level of Fighting God's Bandage: +Increases damage of Knuckle Arrow by 10%. +-------------------------- +When equipped with Bright Pendulum: +Increases Ranged Physical Damage by 10%. + +For each Refine Level of Bright Pendulum: +Increases damage of Finger Offensive by 10%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Sura +# +400120# +A crown designed for specific subjects. +A crown hanging over the ears in the shape of a goat's horn. It has a stubborn personality and persistence that survives even in a barren environment. +-------------------------- +For each 2 Refine Levels: +ATK +20 +MATK +20 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +ATK +15% +MATK +15% +-------------------------- +Refine Level +11: +Increases damage against enemies of every size by 10%. +-------------------------- +When equipped with Jack The Knife: +Decreases After Skill Delay by 10%. + +For each Refine Level of Jack The Knife: +Increases damage of Fatal Menace by 10%. +-------------------------- +When equipped with Platinum Dagger: +Increases Magical Damage with every element by 10%. + +For each Refine Level of Platinum Dagger: +Increases Magical Damage with every element by additional 5%. +-------------------------- +When equipped with Rapid Fire: +Increases Ranged Physical Damage by 10%. + +For each Refine Level of Rapid Fire: +Increases damage of Triangle Shot by 10%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Shadow Chaser +# +400121# +A crown designed for specific subjects. +The crown is decorated with twin faces on both sides of the head. +-------------------------- +For each 2 Refine Levels: +ATK +20 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 15%. +-------------------------- +Refine Level +11: +Increases damage against enemies of every size by 10%. +-------------------------- +When equipped with Judgement Slasher and Repent Slasher: +Increases Critical Damage by 20%. + +For each 2 Refine Levels of the total Refine Level of Judgement Slasher and Repent Slasher: +Increases Melee and Ranged Physical Damage by 5%. +-------------------------- +When equipped with Agudo Filo: +Increases damage of Cross Impact by 20%. + +For each Refine Level of Agudo Filo: +Increases Melee Physical Damage by 5%. +-------------------------- +When equipped with Reaper Cross: +Increases Ranged Physical Damage by 20%. + +For each Refine Level of Reaper Cross: +Increases damage of Cross Ripper Slasher by 10%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +Guillotine Cross +# +400124# +The moment it is worn as a helmet resembling a goat's horn, the wearer enjoys the effect of enormous attention and at the same time gives a feeling of pride. +It is given to those who have reached a new level. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: +Base Level 200 +# +400127# +The camouflage form of Smart Elly, one of the managers of the Varmundt Mansion. It's performance is slightly lower than that of the main body, but it can analyze information and communicate with Varmundt Mansion Manager Alpha. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +400128# +Elly returns to the main body and the little Elly doll was left with only the shell. After the mission was over, the managers of the mansion said that her head might be empty, and the mansion's managers transformed the little Ellie with only a shell left into a doll and gave it as a gift. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400134# +A warrior helmet made with Thanos' weapon and set. +It has the effect of increasing the performance of the melee physical Thanos weapons. +-------------------------- +For each 3 Refine Levels: +ATK +4% +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases Melee Physical Damage by 10%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of against enemies of all elements by 15%. +-------------------------- +When equipped with Thanos Greatsword-AD: +Increases Physical Damage against enemies of every size by 10%. + +For each 2 Refine Levels of Thanos Greatsword-AD: +Increases damage of Wind Cutter by 10%. +-------------------------- +When equipped with Thanos Axe-AD: +Increases Physical Damage against enemies of every race enemies by 10%. + +For each 2 Refine Levels of Thanos Axe-AD: +Increases damage of Axe Tornado by 10%. +-------------------------- +When equipped with Thanos Spear-AD: +Decreases After Skill Delay by 10%. + +For each 2 Refine Levels of Thanos Spear-AD: +Increases damage of Hesperus Lit by 10%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 190 +# +400135# +A warrior helmet made with Thanos' weapon and set. +It has been improved and has the effect of further increasing the performance of the melee physical Thanos weapons. +-------------------------- +For each 3 Refine Levels: +ATK +5% +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 15%). +-------------------------- +Refine Level +9: +Increases Melee Physical Damage by 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of against enemies of all elements by 15%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Thanos Greatsword-AD: +Increases Physical Damage against enemies of every size by 15%. + +For each 2 Refine Levels of Thanos Greatsword-AD: +Increases damage of Wind Cutter by 12%. +-------------------------- +When equipped with Thanos Axe-AD: +Increases Physical Damage against enemies of every race enemies by 15%. + +For each 2 Refine Levels of Thanos Axe-AD: +Increases damage of Axe Tornado by 12%. +-------------------------- +When equipped with Thanos Spear-AD: +Decreases After Skill Delay by 15%. + +For each 2 Refine Levels of Thanos Spear-AD: +Increases damage of Hesperus Lit by 12%. +-------------------------- +[Bonus by Grade] +[Grade D]: Increases Melee Physical Damage by 5%. +[Grade C]: POW +2, P.ATK +2 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 190 +# +400137# +A cap given to members of the Paradise Group. +-------------------------- +ATK +5 +-------------------------- +For each 5 Base Level: +ATK +2 (Up to Base Level 100) +-------------------------- +Base Level at least 30: +ATK +5 +-------------------------- +Base Level at least 45: +ATK +10 +-------------------------- +Base Level at least 85: +ATK +15 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +400138# +A hat given to members of the Paradise Group. +-------------------------- +MATK +5 +-------------------------- +For each 5 Base Level: +MATK +2 (Up to Base Level 100) +-------------------------- +Base Level at least 30: +MATK +5 +-------------------------- +Base Level at least 45: +MATK +10 +-------------------------- +Base Level at least 85: +MATK +15 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +400139# +A high-quality cap given to members of the Paradise Group. +-------------------------- +ATK +60 +-------------------------- +Physical attacks have a certain chance to absorb 2% of the inflicted damage as HP. +Physical attacks have a certain chance to absorb 2% of the inflicted damage as SP. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +400140# +A high-quality cap given to members of the Paradise Group. +-------------------------- +MATK +60 +-------------------------- +Magical attacks have a certain chance to recover 350 HP every second for 4 seconds. +Magical attacks have a certain chance to recover 80 SP every second for 4 seconds. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +400141# +A gunner helmet made with Thanos' weapon and set. +It has the effect of increasing the performance of ranged physical Thanos weapons. +-------------------------- +For each 3 Refine Levels: +ATK +4% +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 10%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of against enemies of all elements by 15%. +-------------------------- +When equipped with Thanos Sword-AD: +Increases Physical Damage against enemies of every size by 10%. + +For each 2 Refine Levels of Thanos Sword-AD: +Increases damage of Cart Cannon by 10%. +-------------------------- +When equipped with Thanos Bow-AD: +Increases Physical Damage against enemies of enemies of every race by 10%. + +For each 2 Refine Levels of Thanos Bow-AD: +Increases damage of Sharp Shooting by 10%. +-------------------------- +When equipped with Thanos Violin-AD or Thanos Whip-AD: +Increases Ranged Physical Damage by 10%. + +For each 2 Refine Levels of Thanos Violin-AD or Thanos Whip-AD: +Increases damage of Severe Rainstorm by 10%. +-------------------------- +Go to [Special Equipment Researcher]rgsr_in,136,171,0,100,0,0 to upgrade your helmet. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +-------------------------- +Requirement: +Base Level 190 +# +400142# +A gunner helmet made with Thanos' weapon and set. +It has the effect of increasing the performance of ranged physical Thanos weapons. +-------------------------- +For each 3 Refine Levels: +ATK +5% +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 15%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of against enemies of all elements by 15%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Thanos Sword-AD: +Increases Physical Damage against enemies of every size by 15%. + +For each 2 Refine Levels of Thanos Sword-AD: +Increases damage of Cart Cannon by 12%. +-------------------------- +When equipped with Thanos Bow-AD: +Increases Physical Damage against enemies of enemies of every race by 15%. + +For each 2 Refine Levels of Thanos Bow-AD: +Increases damage of Sharp Shooting by 12%. +-------------------------- +When equipped with Thanos Violin-AD or Thanos Whip-AD: +Increases Ranged Physical Damage by 15%. + +For each 2 Refine Levels of Thanos Violin-AD or Thanos Whip-AD: +Increases damage of Severe Rainstorm by 12%. +-------------------------- +[Bonus by Grade] +[Grade D]: Ranged physical damage +5%. +[Grade C]: POW +2, P.ATK +2 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 190 +# +400145# +A magic helmet made with Thanos' weapon and set. +It has the effect of increasing the performance of ranged physical Thanos weapons. +-------------------------- +For each 3 Refine Levels: +MATK +5% +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 15%. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every element by 15%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Thanos Two-Handed Staff-AD: +Increases Magical Damage against enemies of every size by 15%. + +For each 2 Refine Levels of Thanos Two-Handed Staff-AD: +Increases damage of Crimson Rock by 12%. +-------------------------- +When equipped with Thanos Staff-AD: +Increases Magical Damage against enemies of every race by 15%. + +For each 2 Refine Levels of Thanos Staff-AD: +Increases damage of Varetyr Spear by 12%. +-------------------------- +When equipped with Thanos Dagger-AD: +Increases all elemental magical damage by 15%. + +For each 2 Refine Levels of Thanos Dagger-AD: +Increases damage of Psychic Wave by 12%. +-------------------------- +[Bonus by Grade] +[Grade D]: All elemental magical damage +5%. +[Grade C]: SPL +2, S.MATK +2 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 190 +# +400146# +A magic helmet made with Thanos' weapon and set. +It has the effect of increasing the performance of ranged physical Thanos weapons. +-------------------------- +For each 3 Refine Levels: +MATK +4% +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 10%. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every element by 15%. +-------------------------- +When equipped with Thanos Two-Handed Staff-AD: +Increases Magical Damage against enemies of every size by 10%. + +For each 2 Refine Levels of Thanos Two-Handed Staff-AD: +Increases damage of Crimson Rock by 10%. +-------------------------- +When equipped with Thanos Staff-AD: +Increases Magical Damage against enemies of every race by 10%. + +For each 2 Refine Levels of Thanos Staff-AD: +Increases damage of Varetyr Spear by 10%. +-------------------------- +When equipped with Thanos Dagger-AD: +Increases all elemental magical damage by 10%. + +For each 2 Refine Levels of Thanos Dagger-AD: +Increases damage of Psychic Wave by 10%. +-------------------------- +Go to [Special Equipment Researcher]rgsr_in,136,171,0,100,0,0 to upgrade your helmet. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +-------------------------- +Requirement: +Base Level 190 +# +400147# +A drooping Betelgeuse doll. +When you put it on your head, it feels like you're staring. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400148# +A wig that makes you feel like a mysterious power is created the moment you put it on your hair. +But in reality there is no power. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +400149# +It wraps itself in powerful lightning bolts. +However, contrary to it's powerful appearance, it is said that it does not actually generate power. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +400150# +A fighter helmet made with Thanos' weapon and set. +It has the effect of increasing the performance of ranged physical Thanos weapons. +-------------------------- +For each 3 Refine Levels: +ATK +4% +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases Melee Physical Damage by 10%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of against enemies of all elements by 15%. +-------------------------- +When equipped with Thanos Hammer-AD: +Increases Damage against enemies of every size by 10%. + +For each 2 Refine Levels of Thanos Hammer-AD: +Increases damage of Duple Light by 10%. +-------------------------- +When equipped with Thanos Knuckle-AD: +MaxHP +10% + +For each 2 Refine Levels of Thanos Knuckle-AD: +Increases damage of Tiger Cannon by 10%. +-------------------------- +When equipped with Thanos Katar-AD: +Decreases After Skill Delay by 10%. + +For each 2 Refine Levels of Thanos Katar-AD: +Increases damage of Rolling Cutter by 10%. +-------------------------- +Go to [Special Equipment Researcher]rgsr_in,136,171,0,100,0,0 to upgrade your helmet. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +-------------------------- +Requirement: +Base Level 190 +# +400151# +A fighter helmet made with Thanos' weapon and set. +It has the effect of increasing the performance of ranged physical Thanos weapons. +-------------------------- +For each 3 Refine Levels: +ATK +5% +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 15%). +-------------------------- +Refine Level +9: +Increases Melee Physical Damage by 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of against enemies of all elements by 15%. +-------------------------- +When equipped with Thanos Hammer-AD: +Increases Damage against enemies of every size by 15%. + +For each 2 Refine Levels of Thanos Hammer-AD: +Increases damage of Duple Light by 12%. +-------------------------- +When equipped with Thanos Knuckle-AD: +MaxHP +15% + +For each 2 Refine Levels of Thanos Knuckle-AD: +Increases damage of Tiger Cannon by 12%. +-------------------------- +When equipped with Thanos Katar-AD: +Decreases After Skill Delay by 15%. + +For each 2 Refine Levels of Thanos Katar-AD: +Increases damage of Rolling Cutter by 12%. +-------------------------- +[Bonus by Grade] +[Grade D]: Melee physical damage +5%. +[Grade C]: POW +2, P.ATK +2 +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 190 +# +400152# +An improved version of the transformation leave used by Smokey. +-------------------------- +Base Level at least 120: +P.ATK +2 +S.MATK +2 +-------------------------- +For each Refine Level: +Increases Magical Damage with every element by 1%. +-------------------------- +For each 3 Refine Levels: +MATK +2% +-------------------------- +For each 5 Refine Levels: +ASPD +1 +-------------------------- +Has a chance to transform into Smokie for 10 seconds when dealing Melee Physical Damage. +-------------------------- +Grants following effects while in Smokie form: +MATK +100, HIT +50 +Physical melee attacks have 5% chance to auto-cast Level 3 Cloud Kill. +(If you learned a higher Level, it will auto cast that Level instead.) + +Refine Level +7: +MATK +50, HIT +25 + +Refine Level +9: +Physical melee attacks have 5% chance to auto-cast Level 5 Hell Inferno additionally. + +Refine Level +10: +Physical melee attacks have 5% chance to auto-cast Level 3 Chain Lightning additionally. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Magical attacks have 3% chance to auto-cast Level 9 Fire Ball additionally. +[Grade C]: P.ATK +2, S.MATK +2 +[Grade B]: Refine Level +12: Fixed Casting Time of all skills -0.5 seconds. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 60 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 150 +# +400153# +An improved version of the black cat ears used by Wickebine. +-------------------------- +FLEE +20 +-------------------------- +Increases Critical Damage by 15%. +Increases Magical Damage with every element by 15%. +-------------------------- +Base Level at least 210: +P.ATK +2 +S.MATK +2 +-------------------------- +Physical attacks have a certain chance to increase Critical by 30 for 10 seconds. +Magical attacks have a certain chance to ignore magic defense of all race, except Players, by 100% for 10 seconds. +-------------------------- +Refine Level +7: +Increases Critical Damage by additional 10%. +Increases Magical Damage with every element by additional 10%. +-------------------------- +Refine Level +9: +ATK +5%, MATK +5% +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 5%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: After Skill Delay of all skills -5%. +[Grade C]: P.ATK +2, S.MATK +2 +[Grade B]: Refine Level +12: Fixed Casting Time of all skills -0.5 seconds. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 150 +# +400154# +An improvised version of the headdress used by practitioners. +-------------------------- +INT +3 +MATK +50 +-------------------------- +Base Level at least 180: +MATK +50 +-------------------------- +Base Level at least 210: +P.ATK +2 +S.MATK +2 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 15%. +-------------------------- +Refine Level +10: +MATK +5% +-------------------------- +Refine Level +11: +Increases Magical Damage against monsters of Boss class by 20%. +-------------------------- +When equipped with Survivor Orb-LT: +Protects from skill cast interruption. +Increases Magical Damage against enemies of every element by 10%. + +Refine Level of Survivor's Circlet-LT is +11 or higher: +Decreases After Skill Delay by 12%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: After Skill Delay of all skills -5%. +[Grade C]: P.ATK +2, S.MATK +2 +[Grade B]: Refine Level +12: Fixed Casting Time of all skills -0.5 seconds. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 50 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 150 +# +400155# +An improved version of the puffing gold fish hat. +-------------------------- +Base Level at least 210: +P.ATK +2 +S.MATK +2 +-------------------------- +Physical attacks have a certain chance to grant Holy element to your weapon for 60 seconds. +Magical attacks have a certain chance to increase Magical Damage with Holy element by 20% for 60 seconds. +-------------------------- +Refine Level +7: +Increases Melee Physical Damage by 10%. +Increases Magical Damage with Holy element by 10%. +-------------------------- +Refine Level +9: +ATK +5%, MATK +5% +-------------------------- +Refine Level +11: +Increases Magical Damage against Shadow elemental by 20%. +-------------------------- +[Bonus by Grade] +[Grade D]: Melee physical damage +5%. Magical Damage with Holy element +5%. +[Grade C]: P.ATK +2, S.MATK +2 +[Grade B]: Refine Level +12: Fixed Casting Time of all skills -0.5 seconds. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 40 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 150 +# +400156# +An improved version of the hat modeled after the Imp, the mascot of the Thor Volcano Dungeon. +-------------------------- +Base Level at least 210: +P.ATK +2 +S.MATK +2 +-------------------------- +Physical attacks have a certain chance to grant Fire element to your weapon for 60 seconds. +Magical attacks have a certain chance to increase Magical Damage with Fire element by 20% for 60 seconds. +-------------------------- +Refine Level +7: +Increases Melee Physical Damage by 10%. +Increases Magical Damage with Fire element by 10%. +-------------------------- +Refine Level +9: +ATK +5%, MATK +5% +-------------------------- +Refine Level +11: +Increases Damage against Earth elemental by 20%. +-------------------------- +[Bonus by Grade] +[Grade D]: Melee physical damage +5%. Magical Damage with Fire element +5%. +[Grade C]: P.ATK +2, S.MATK +2 +[Grade B]: Refine Level +12: Fixed Casting Time of all skills -0.5 seconds. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 40 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 150 +# +400160# +Noodles shaking violently in the bowl. It is carefully made with ingredients that give you strength to spend the hot summer energetically. Be careful not to spill it! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400163# +A nautical hat representing the glorious marine mammal. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400178# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +Base Level at least 230: +SPL +3, S.MATK +2. +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Soul Expansion by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with Ghost element by 7%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +MATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Rod: +Increases Magical Damage with Ghost element by 10%. + +For each 3 Refine Levels of Adulter Fides Rod: +Increases damage of Soul Expansion by 5%. +-------------------------- +When equipped with Vivatus Fides Rod: +Increases Magical Damage with Ghost element by 10%. + +For each 3 Refine Levels of Vivatus Fides Rod: +Increases damage of Soul Expansion by 5%. +Increases damage of Soul Vulcan Strike by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Soul Vulcan Strike by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Warlock +# +400179# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +Base Level at least 230: +SPL +3, S.MATK +2. +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Comet by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with Neutral and Shadow element by 7%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +MATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Two-Handed Staff: +Increases Magical Damage with Neutral and Shadow element by 10%. + +For each 3 Refine Levels of Adulter Fides Two-Handed Staff: +Increases damage of Comet by 5%. +-------------------------- +When equipped with Vivatus Fides Two-Handed Staff: +Increases Magical Damage with Neutral and Shadow element by 10%. + +For each 3 Refine Levels of Vivatus Fides Two-Handed Staff: +Increases damage of Comet by 5%. +Increases damage of Mystery Illusion by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Mystery Illusion by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Warlock +# +400180# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Tiger Cannon by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 7%. +-------------------------- +Refine Level +7: +MaxHP +5% +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Knuckle: +Increases Melee Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Knuckle: +Increases damage of Tiger Cannon by 5%. +-------------------------- +When equipped with Vivatus Fides Knuckle: +Increases Melee Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Knuckle: +Increases damage of Tiger Cannon by 5%. +Increases damage of Third Flame Bomb by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Third Flame Bomb by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Sura +# +400181# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Rampage Blaster by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +7: +MaxSP +5% +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Claw: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Claw: +Increases damage of Rampage Blaster by 5%. +-------------------------- +When equipped with Vivatus Fides Claw: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Claw: +Increases damage of Rampage Blaster by 5%. +Increases damage of Explosion Blaster by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Explosion Blaster by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Sura +# +400188# +A commemorative headband from the Ragnarok Festival. It was made with a similar feeling to the headband in Ragnarok. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400189# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +Base Level at least 230: +SPL +3, S.MATK +2. +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Adoramus by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with Neutral and Holy element by 7%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +MATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Wand: +Increases Magical Damage with Neutral and Holy element by 10%. + +For each 3 Refine Levels of Adulter Fides Wand: +Increases damage of Adoramus by 5%. +-------------------------- +When equipped with Vivatus Fides Wand: +Increases Magical Damage with Neutral and Holy element by 10%. + +For each 3 Refine Levels of Vivatus Fides Wand: +Increases damage of Adoramus by 5%. +Increases damage of Arbitrium by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Arbitrium by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Archbishop +# +400190# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Duple Light by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Melee and Ranged Physical Damage by 7%. +-------------------------- +Refine Level +7: +Critical +15 +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Bible: +Increases Melee Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Bible: +Increases damage of Duple Light by 5%. +-------------------------- +When equipped with Vivatus Fides Bible: +Increases Melee Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Bible: +Increases damage of Duple Light by 5%. +Increases damage of Petitio by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Petitio by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Archbishop +# +400191# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Fatal Menace by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 7%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Dagger: +Increases Melee Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Dagger: +Increases damage of Fatal Menace by 5%. +-------------------------- +When equipped with Vivatus Fides Dagger: +Increases Melee Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Dagger: +Increases damage of Fatal Menace by 5%. +Increases damage of Abyss Dagger by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Abyss Dagger by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Shadow Chaser +# +400192# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Triangle Shot by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +7: +Critical +15 +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Crossbow: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Crossbow: +Increases damage of Triangle Shot by 5%. +-------------------------- +When equipped with Vivatus Fides Crossbow: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Crossbow: +Increases damage of Triangle Shot by 5%. +Increases damage of Frenzy Shot by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Frenzy Shot by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Shadow Chaser +# +400197# +A costume Chef's Hat topped with a whole cake. +A marzipan with a poring appearance is on top. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400198# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Arrow Storm by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Ballista: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Ballista: +Increases damage of Arrow Storm by 5%. +-------------------------- +When equipped with Vivatus Fides Ballista: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Ballista: +Increases damage of Arrow Storm by 5%. +Increases damage of Gale Storm by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Gale Storm by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Ranger +# +400199# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Aimed Bolt by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +7: +Critical +15 +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Aiming Bow: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Aiming Bow: +Increases damage of Aimed Bolt by 5%. +-------------------------- +When equipped with Vivatus Fides Aiming Bow: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Aiming Bow: +Increases damage of Aimed Bolt by 5%. +Increases damage of Crescive Bolt by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Crescive Bolt by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Ranger +# +400200# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +Base Level at least 230: +SPL +3, S.MATK +2. +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Genesis Ray by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with Neutral and Holy element by 7%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +MATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Guardian Sword: +Increases Magical Damage with Neutral and Holy element by 10%. + +For each 3 Refine Levels of Adulter Fides Guardian Sword: +Increases damage of Genesis Ray by 5%. +-------------------------- +When equipped with Vivatus Fides Guardian Sword: +Increases Magical Damage with Neutral and Holy element by 10%. + +For each 3 Refine Levels of Vivatus Fides Guardian Sword: +Increases damage of Genesis Ray by 5%. +Increases damage of Cross Rain by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Cross Rain by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Royal Guard +# +400201# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Overbrand by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 7%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Guardian Spear: +Increases Melee Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Guardian Spear: +Increases damage of Overbrand by 5%. +-------------------------- +When equipped with Vivatus Fides Guardian Spear: +Increases Melee Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Guardian Spear: +Increases damage of Overbrand by 5%. +Increases damage of Overslash by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Overslash by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Royal Guard +# +400204# +A hat made by a witch who likes cute things with decorations imitating the ears of her beloved cat. +It seems that the soul of life resides in the production process. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 26. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400213# +Mdef + 10. +All stat + 3. +-------------------------- +Reduces damage taken from normal and boss monsters by 20%. +Increases physical and magical damage against monsters small, medium and large size monsters by 10%. +-------------------------- +If refine rate is 7 or higher, increases physical and magical damage against monsters small, medium and large size monsters by 15%, +-------------------------- +If refine rate is 9 or higher, increases physical and magical damage against monsters small, medium and large size monsters by 15% reduces delay after skill by 20%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +400216# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Counter Slash by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 7%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Katar: +Increases Melee Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Katar: +Increases damage of Counter Slash by 5%. +-------------------------- +When equipped with Vivatus Fides Katar: +Increases Melee Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Katar: +Increases damage of Counter Slash by 5%. +Increases damage of Eternal Slash by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Eternal Slash by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Guillotine Cross +# +400217# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Rolling Cutter by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 7%. +-------------------------- +Refine Level +7: +Critical +15 +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Chakram: +Increases Melee Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Chakram: +Increases damage of Rolling Cutter by 5%. +-------------------------- +When equipped with Vivatus Fides Chakram: +Increases Melee Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Chakram: +Increases damage of Rolling Cutter by 5%. +Increases damage of Impact Crater by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Impact Crater by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Guillotine Cross +# +400218# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +Base Level at least 230: +SPL +3, S.MATK +2. +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Poison Buster by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with Fire and Poison element by 7%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +MATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Poison Book: +Increases Magical Damage with Poison element by 10%. + +For each 3 Refine Levels of Adulter Fides Poison Book: +Increases damage of Poison Buster by 5%. +-------------------------- +When equipped with Vivatus Fides Poison Book: +Increases Magical Damage with Fire and Poison element by 10%. + +For each 3 Refine Levels of Vivatus Fides Poison Book: +Increases damage of Poison Buster by 5%. +Increases damage of Conflagration and Venom Swamp by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Conflagration and Venom Swamp by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Sorcerer +# +400219# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +Base Level at least 230: +SPL +3, S.MATK +2. +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Psychic Wave by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with Neutral, Wind and Earth element by 7%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +MATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Magic Book: +Increases Magical Damage with Neutral element by 10%. + +For each 3 Refine Levels of Adulter Fides Magic Book: +Increases damage of Psychic Wave by 5%. +-------------------------- +When equipped with Vivatus Fides Magic Book: +Increases Magical Damage with Neutral, Wind and Earth element by 10%. + +For each 3 Refine Levels of Vivatus Fides Magic Book: +Increases damage of Psychic Wave by 5%. +Increases damage of Lightning Land and Terra Drive by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Lightning Land and Terra Drive by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Sorcerer +# +400225# +Fluffy costume cape in the shape of a rabbit. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 26. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400226# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Wind Cutter and Ignition Break by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 7%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Two-Handed Sword: +Decreases Ignition Break skill cooldown by 0.5 seconds. + +For each 3 Refine Levels of Adulter Fides Two-Handed Sword: +Increases damage of Wind Cutter and Ignition Break by 5%. +-------------------------- +When equipped with Vivatus Fides Two-Handed Sword: +Decreases Ignition Break skill cooldown by 1 second. + +For each 3 Refine Levels of Vivatus Fides Two-Handed Sword: +Increases damage of Wind Cutter and Ignition Break by 5%. +Increases damage of Storm Slash by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Storm Slash by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Rune Knight +# +400227# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Hundred Spear by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Lance: +Decreases Hundred Spear skill cooldown by 0.2 seconds. + +For each 3 Refine Levels of Adulter Fides Lance: +Increases damage of Hundred Spear by 5%. +-------------------------- +When equipped with Vivatus Fides Lance: +Decreases Hundred Spear skill cooldown by 0.5 seconds. + +For each 3 Refine Levels of Vivatus Fides Lance: +Increases damage of Hundred Spear by 5%. +Increases damage of Madness Crusher by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Madness Crusher by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Rune Knight +# +400228# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +Base Level at least 230: +SPL +3, S.MATK +2. +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Metallic Sound by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with Neutral element by 7%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +MATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Harp or Adulter Fides Ribbon: +Increases Magical Damage with Neutral element by 10%. + +For each 3 Refine Levels of Adulter Fides Harp or Adulter Fides Ribbon: +Increases damage of Metallic Sound by 5%. +-------------------------- +When equipped with Vivatus Fides Harp or Vivatus Fides Ribbon: +Increases Magical Damage with Neutral element by 10%. + +For each 3 Refine Levels of Vivatus Fides Harp or Vivatus Fides Ribbon: +Increases damage of Metallic Sound by 5%. +Increases damage of Metallic Fury by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Metallic Fury by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Minstrel, Wanderer +# +400229# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Severe Rainstorm by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +7: +Critical +15 +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Violin or Adulter Fides Chain Rope: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Violin or Adulter Fides Chain Rope: +Increases damage of Severe Rainstorm by 5%. +-------------------------- +When equipped with Vivatus Fides Violin or Vivatus Fides Chain Rope: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Violin or Vivatus Fides Chain Rope: +Increases damage of Severe Rainstorm by 5%. +Increases damage of Rythm Shooting by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Rythm Shooting by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Minstrel, Wanderer +# +400230# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Axe Boomerang and Axe Tornado by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 7%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Axe: +Increases Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Axe: +Increases damage of Axe Boomerang and Axe Tornado by 5%. +-------------------------- +When equipped with Vivatus Fides Axe: +Increases Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Axe: +Increases damage of Axe Boomerang and Axe Tornado by 5%. +Increases damage of Axe Stomp by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Axe Stomp by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Mechanic +# +400231# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Vulcan Arm by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Mace: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Mace: +Increases damage of Vulcan Arm by 5%. +-------------------------- +When equipped with Vivatus Fides Mace: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Mace: +Increases damage of Vulcan Arm by 5%. +Increases damage of Activation Attack Machine by 7% (only applies to yourself). + +If the Weapon's Grade is C or higher: +Increases damage of Activation Attack Machine by additional 15% (only applies to yourself). +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Mechanic +# +400232# +A snowman squashed by someone. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400233# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Cart Cannon by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Rapier: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Rapier: +Increases damage of Cart Cannon by 5%. +-------------------------- +When equipped with Vivatus Fides Rapier: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Rapier: +Increases damage of Cart Cannon by 5%. +Increases damage of Acidified Zone (Water/Wind/Ground/Fire) by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Acidified Zone (Water/Wind/Ground/Fire) by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Genetic +# +400234# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Cart Tornado by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 7%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Scepter: +Decreases Cart Tornado skill cooldown by 0.15 seconds. + +For each 3 Refine Levels of Adulter Fides Scepter: +Increases damage of Cart Tornado by 5%. +-------------------------- +When equipped with Vivatus Fides Scepter: +Decreases Cart Tornado skill cooldown by 0.3 seconds. + +For each 3 Refine Levels of Vivatus Fides Scepter: +Increases damage of Cart Tornado by 5%. +Increases damage of Hell's Plant by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Hell's Plant by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Genetic +# +400235# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Swirling Petal by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Huuma Shuriken: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Huuma Shuriken: +Increases damage of Swirling Petal by 5%. +-------------------------- +When equipped with Vivatus Fides Huuma Shuriken: +Increases Ranged Physical Damage by additional 10%. + +For each 3 Refine Levels of Vivatus Fides Huuma Shuriken: +Increases damage of Swirling Petal by 5%. +Increases damage of Huuma Shuriken - Grasp by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Huuma Shuriken - Grasp by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Kagerou and Oboro classes +# +400236# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Cross Slash by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Cross Huuma Shuriken: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Cross Huuma Shuriken: +Increases damage of Cross Slash by 5%. +-------------------------- +When equipped with Vivatus Fides Cross Huuma Shuriken: +Increases Ranged Physical Damage by additional 10%. + +For each 3 Refine Levels of Vivatus Fides Cross Huuma Shuriken: +Increases damage of Swirling Petal by 5%. +Increases damage of Kunai - Distortion by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Kunai - Distortion by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Kagerou and Oboro classes +# +400237# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Hammer of God, Fire Dance and Dragon Tail by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Rifle: +Decreases Hammer of God skill cooldown by 10 seconds. + +For each 3 Refine Levels of Adulter Fides Rifle: +Increases damage of Hammer of God by 5%. +-------------------------- +When equipped with Adulter Fides Revolver: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Revolver: +Increases damage of Fire Dance by 5%. +-------------------------- +When equipped with Adulter Fides Launcher: +Decreases Dragon Tail skill cooldown by 2 seconds. + +For each 3 Refine Levels of Adulter Fides Launcher: +Increases damage of Dragon Tail by 5%. +-------------------------- +When equipped with Vivatus Fides Rifle: +Decreases Hammer of God skill cooldown by 10 seconds. + +For each 3 Refine Levels of Vivatus Fides Rifle: +Increases damage of Hammer of God by 5%. +Increases damage of Only One Bullet by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Only One Bullet by additional 15%. +-------------------------- +When equipped with Vivatus Fides Revolver: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Revolver: +Increases damage of Fire Dance by 5%. +Increases damage of Magazine for One by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Magazine for One by additional 15%. +-------------------------- +When equipped with Vivatus Fides Launcher: +Decreases Dragon Tail skill cooldown by 2 seconds. + +For each 3 Refine Levels of Vivatus Fides Launcher: +Increases damage of Dragon Tail by 5%. +Increases damage of Spiral Shooting by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Spiral Shooting by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Rebellion classes +# +400238# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Shattering Storm and Round Trip by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Shotgun: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Shotgun: +Increases damage of Shattering Storm by 5%. +-------------------------- +When equipped with Adulter Fides Gatling Gun: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Gatling Gun: +Increases damage of Round Trip by 5%. +-------------------------- +When equipped with Vivatus Fides Shotgun: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Shotgun: +Increases damage of Shattering Storm by 5%. +Increases damage of Only One Bullet by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Only One Bullet by additional 15%. +-------------------------- +When equipped with Vivatus Fides Gatling Gun: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Gatling Gun: +Increases damage of Round Trip by 5%. +Increases damage of The Vigilante at Night by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of The Vigilante at Night by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Rebellion classes +# +400239# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +Base Level at least 230: +SPL +3, S.MATK +2. +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Espa by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with every element by 7%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +MATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Soul Stick: +Increases Magical Damage with every element by 10%. + +For each 3 Refine Levels of Adulter Fides Soul Stick: +Increases damage of Eswhoo and Espa by 5%. +-------------------------- +When equipped with Vivatus Fides Soul Stick: +Increases Magical Damage with every element by 10%. + +For each 3 Refine Levels of Vivatus Fides Soul Stick: +Increases damage of Eswhoo and Espa by 5%. +Increases damage of Talisman of Red Phoenix and Talisman of Black Tortoise by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Talisman of Red Phoenix and Talisman of Black Tortoise by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Soul Reaper classes +# +400240# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +Base Level at least 230: +SPL +3, S.MATK +2. +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Curse Explosion by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with every element by 7%. +-------------------------- +Refine Level +7: +Increases Magical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +MATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Dark Wand: +Decreases Curse of Wicked Soul skill cooldown by 2 seconds. + +For each 3 Refine Levels of Adulter Fides Dark Wand: +Increases damage of Curse Explosion by 5%. +-------------------------- +When equipped with Vivatus Fides Dark Wand: +Decreases Curse of Wicked Soul skill cooldown by 2 seconds. + +For each 3 Refine Levels of Vivatus Fides Dark Wand: +Increases damage of Curse Explosion by 5%. +Increases damage of Exorcism of Malicious Soul by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Exorcism of Malicious Soul by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Soul Reaper classes +# +400241# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of New Moon Kick and Full Moon Kick by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 7%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Moon Book: +Increases Melee Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Moon Book: +Increases damage of New Moon Kick and Full Moon Kick by 5%. +-------------------------- +When equipped with Vivatus Fides Moon Book: +Increases Melee Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Moon Book: +Increases damage of New Moon Kick and Full Moon Kick by 5%. +Increases damage of Midnight Kick by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Midnight Kick by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Star Emperor classes +# +400242# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Falling Star by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 7%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Stardust Book: +Increases Melee Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Stardust Book: +Increases damage of Falling Star by 5%. +-------------------------- +When equipped with Vivatus Fides Stardust Book: +Increases Melee Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Stardust Book: +Increases damage of Falling Star by 5%. +Increases damage of Star Cannon by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Star Cannon by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Star Emperor classes +# +400243# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +Base Level at least 230: +POW +3, P.ATK +2. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Picky Peck and Lunatic Carrot Beat by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +ATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Foxtail Model: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Adulter Fides Foxtail Model: +Increases damage of Picky Peck and Lunatic Carrot Beat by 5%. +-------------------------- +When equipped with Vivatus Fides Foxtail Model: +Increases Ranged Physical Damage by 10%. + +For each 3 Refine Levels of Vivatus Fides Foxtail Model: +Increases damage of Picky Peck and Lunatic Carrot Beat by 5%. +Increases damage of Chulho Sonic Claw by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Chulho Sonic Claw by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Summoner (Doram) classes +# +400244# +A helm with the power of faith. +It has the effect of amplifying the effects of Vivatus and Adulter weapons. +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +Base Level at least 230: +SPL +3, S.MATK +2. +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Silvervine Stem Spear and Catnip Meteor by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with every element by 7%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Refine Level +11: +MATK +5% +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +When equipped with Adulter Fides Foxtail Wand: +Increases Magical Damage with every element by 10%. + +For each 3 Refine Levels of Adulter Fides Foxtail Wand: +Increases damage of Silvervine Stem Spear and Catnip Meteor by 5%. +-------------------------- +When equipped with Vivatus Fides Foxtail Wand: +Increases Magical Damage with every element by 10%. + +For each 3 Refine Levels of Vivatus Fides Foxtail Wand: +Increases damage of Silvervine Stem Spear and Catnip Meteor by 5%. +Increases damage of Hyunrok Breeze by 7%. + +If the Weapon's Grade is C or higher: +Increases damage of Hyunrok Breeze by additional 15%. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +Summoner (Doram) classes +# +400245# +The Tiger King Doll Hat which Team Richiet has modified for better performance. +-------------------------- +STR +2, DEX +2 +POW +2, CON +2 +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Increases Physical Damage against enemies of Brute race by 10%. +-------------------------- +Physical attacks have a chance to activate Power of the Beast effect for 7 seconds. +-------------------------- +Refine Level +7: +Increases Melee Physical Damage by 15%. +-------------------------- +Refine Level +9: +ATK +10% +-------------------------- +Refine Level +11: +Increases Melee Physical Damage by additional 10%. +-------------------------- +[Power of the Beast] +For each Refine Level: +ATK +35 + +Refine Level +10: +P.ATK +20 +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +5%, POW +3 +[Grade C]: STA +2, Fixed Casting Time -0.5 seconds +[Grade B]: P.ATK +2, RES +20 +[Grade A]: P.ATK +7 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 40 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 150 +# +400246# +The Bacsojin Doll Hat which Team Richiet has modified for better performance. +-------------------------- +INT +2, DEX +2 +SPL +2, CON +2 +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Increases Magical Damage against enemies of Undead race by 10%. +-------------------------- +Magical attacks have a chance to activate Divine Willpower effect for 7 seconds. +-------------------------- +Refine Level +7: +Increases Magical Damage with every element by 15%. +-------------------------- +Refine Level +9: +MATK +10% +-------------------------- +Refine Level +11: +Increases Magical Damage with every element by additional 10%. +-------------------------- +[Divine Willpower] +For each Refine Level: +MATK +35 + +Refine Level +10: +S.MATK +20 +-------------------------- +[Bonus by Grade] +[Grade D]: MATK +5%, SPL +3 +[Grade C]: WIS +2, Fixed Casting Time -0.5 seconds +[Grade B]: S.MATK +3, MRES +20 +[Grade A]: S.MATK +7 +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 40 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 150 +# +400253# +A headdress full of cuteness. +How about putting macarons on your head! +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400254# +A gothic costume headband decorated with wings and lace in a small heart. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 26. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400261# +The crown representing Sagittarius, the ninth position of the zodiac. The birthstone, Zircon, is embedded. +It has been modified to suit the upgraded OS weapons. +-------------------------- +For each 2 Refine Levels: +ATK +20 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 20%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Small and Medium sized enemies by 20%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Burning Knuckle-OSAD: +Decreases Rampage Blaster skill cooldown by 1 second. + +For each 2 Refine Levels of Burning Knuckle-OSAD: +Increases Ranged Physical Damage by additional 4%. +-------------------------- +When equipped with Saphir Mace-OSAD: +Decreases Variable Casting Time by additional 10%. + +For each 2 Refine Levels of Saphir Mace-OSAD: +Increases damage of Acid Demonstration by 5%. +-------------------------- +When equipped with HR-S55-OSAD: +Increases Ranged Physical Damage by additional 10%. + +For each 2 Refine Levels of HR-S55-OSAD: +Increases damage of Hammer of God by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 170 +# +400262# +The crown representing Scorpio, the eighth position of the zodiac. The birthstone, Topaz, is embedded. +It has been modified to suit the upgraded OS weapons. +-------------------------- +For each 2 Refine Levels: +MATK +20 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 20%. +-------------------------- +Refine Level +11: +Increases Magical Damage against monsters of Small and Medium sized enemies by 20%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Cannon Rapier-OSAD: +Decreases Genesis Ray skill cooldown by 1 second. + +For each 2 Refine Levels of Cannon Rapier-OSAD: +Increases damage of Genesis Ray by 7%. +-------------------------- +When equipped with Rutilus Stick-OS: +Decreases Psychic Wave skill cooldown by 1 second. + +For each 2 Refine Levels of Rutilus Stick-OSAD: +Increases damage of Psychic Wave by 7%. +-------------------------- +When equipped with Ultio-OSAD: +Increases Magical Damage with Holy element by 7%. + +For each 2 Refine Levels of Ultio-OSAD: +Increases damage of Judex by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 170 +# +400263# +It is said that a certain great mage prepared it in a robe and used it. +It has been modified to suit the upgraded OS weapons. +-------------------------- +For each 2 Refine Levels: +MATK +20 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 20%. +-------------------------- +Refine Level +11: +Increases Magical Damage against monsters of Small and Medium sized enemies by 20%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Cannon Rapier-OSAD: +MATK +70 + +For each 2 Refine Levels of Cannon Rapier-OSAD: +Increases damage of Hell Inferno by 7%. +-------------------------- +When equipped with Rutilus Stick-OSAD: +MATK +70 + +For each 2 Refine Levels of Rutilus Stick-OSAD: +Increases damage of Comet by 5%. +Increases damage of Crimson Rock^ by 7%. +-------------------------- +When equipped with Kuroiro-OSAD: +Increases Magical Damage with Water, Wind and Fire element by 7%. + +For each 2 Refine Levels of Kuroiro-OSAD: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 170 +# +400264# +A hat characterized by long stripes running from the brim of the hat to the back of the head. +It has been modified to suit the upgraded OS weapons. +-------------------------- +For each 2 Refine Levels: +ATK +20 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 20%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Small and Medium sized enemies by 20. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Boost Lance-OSAD: +Decreases Cannon Spear skill cooldown by 0.5 seconds. + +For each 2 Refine Levels of Boost Lance-OSAD: +Increases damage of Cannon Spear by 5%. +-------------------------- +When equipped with MH-P89-OSAD: +Decreases Severe Rainstorm skill cooldown by 0.5 seconds. + +For each 2 Refine Levels of MH-P89-OSAD: +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with AC-B44-OSAD: +Decreases After Skill Delay by 15%. + +For each 2 Refine Levels of AC-B44-OSAD: +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 170 +# +400265# +A stylishly crafted hat found somewhere. +It has been modified to suit the upgraded OS weapons. +-------------------------- +For each 2 Refine Levels: +MATK +20 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increase Magical Damage with every element by 20%. +-------------------------- +Refine Level +11: +Increases Magical Damage against monsters of Small and Medium size by 20%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Electric Fox-OSAD: +Decreases Catnip Meteor skill cooldown by 1 second. + +For each 2 Refine Levels of Electric Fox-OSAD: +Increases damage of Catnip Meteor by 5%. +-------------------------- +When equipped with Rutilus Stick-OSAD: +MATK +70 + +For each 2 Refine Levels of Rutilus Stick-OSAD: +Increases damage of Espa and Eswhoo by 5%. +-------------------------- +When equipped with Ultio-OSAD: +Increases Magical Damage with Holy element by 7%. + +For each 2 Refine Levels of Ultio-OSAD: +Increases damage of Adoramus by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 170 +# +400266# +A mysterious hat from Captain Ignis. +It has been modified to suit the upgraded OS weapons. +-------------------------- +For each 2 Refine Levels +ATK +20 +-------------------------- +Refine Level +7: +Decreases Variable Casting time by 15%. +-------------------------- +Refine Level +9: +Increase Ranged Physical Damage by 20%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Small and Medium size by 20%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Saphir Mace-OSAD, +ATK +70 + +For each 2 Refine Levels of Saphir Mace-OSAD: +Increases damage of Cart Cannon by 5%. +-------------------------- +When equipped with Virtual Bow-OSAD, +Decreases Arrow Storm skill cooldown by 2.5 seconds. + +For each 2 Refine Levels of Virtual Bow-OSAD: +Increase damage of Sharp Shooting by 5%. +-------------------------- +When equipped with Blasti-OSAD, +ATK +70 + +For each 2 Refine Levels of Blasti-OSAD: +Increases damage of Arms Cannon by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 170 +# +400267# +A hat worn by the Aldebaran clock tower repairman. The clock model decoration is particularly attractive. +It has been modified to suit the upgraded OS weapons. +-------------------------- +For each 2 Refine Levels: +ATK +20 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases Melee Physical Damage by 20%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Small and Medium sized enemies by 20%. +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +When equipped with Meuchler-OSAD: +ATK +70 + +For each 2 Refine Levels of Meuchler-OSAD: +Increases damage of Rolling Cutter by 7%. +-------------------------- +When equipped with Circuit Board-OSAD: +ATK +70 + +For each 2 Refine Levels of Circuit Board-OSAD: +Increases damage of Solar Burst by 7%. +-------------------------- +When equipped with Beam Claymore-OSAD: +Decreases Ignition Break skill cooldown by 1 second. + +For each 2 Refine Levels of Beam Claymore-OSAD: +Increases damage of Ignition Break by 7%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 170 +# +400272# +A headdress for a costume that looks like flowers blooming at different angles. +A costume for those who like to see the colorful look. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 27. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400278# +A costume doll with the motif of the robot vacuum cleaner Omega. +It looks like a big ribbon from the back. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400280# +Automatic doll series product of the Fantasy Series Editorial Department. +VR Book: A Scientist's Escape Record +Butterfly +\ + + +This is an exchange-only product. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400305# +A costume helmet given to those who have made a Gravity Plus friend. +Costume hat with the motif of the sky. +Even in gloomy, rainy weather, wearing this hat will make you feel sunny. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400311# +A costume helmet with decorations that resemble a shield and feather +decorations that represent the contrasting light and darkness +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400343# +A bamboo hat with cute fox ears. +This hat goes well with a kimono. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400344# +Wings of an Angel that make you feel happy +-------------------------- +Max HP increases by 5 times of Base Level +Max SP increases by 2 times of Job Level +Increases resistance to all elemental attacks by 5% +-------------------------- +When equipped with Wings of Happiness: +every 2 upgrades, increases resistance to Player and Demi-Human monsters by 2% (up to +10 upgrade). +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +400418# +Crown Adorned with a Large Green Gem +A crown that grants immense magical power to its wearer! +-------------------------- +Fixed Casting Time Reduction: 10% +Every 1 level upgrade MATK: +1 +For every upgrade level of Nymph Green Sapphire, increases Jupitel Thunder skill damage by an additional 5%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Hi-Magician Class +Base Level 60 +# +400450# +A costume made with a set of shining crown and cute lion ears. +Wearing it makes you feel like a cute king. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +400478# +A specially crafted beret made to honor those who defend their freedom. +-------------------------- +ATK +15, HIT +30 +Increases damage dealt to Demi-Human monsters by 5%. +When equipped by Rogue or Stalker, every upgrade level (+1) increases the damage of Back Stab by 5%. +-------------------------- +Set Bonus (with Shadow Ring): +Reduces the cooldown of Back Stab by 0.15 seconds. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +400512# +A helmet worn by warriors in the Morroc continent. It provided good protection from the heat. +-------------------------- +ATK + 2%, ASPD + 1 +-------------------------- +if upgraded level 5, ATK + 20, increases Bowling Bash skill damage by 10%. +-------------------------- +if upgraded to level 7, increases damage of Bowling Bash skill by 20%. +-------------------------- +if upgraded to level 9, when physically attacking, there is a 3% chance to gain 5% HP from the damage dealt. +Cancel normal recovery of HP and SP. +-------------------------- +When worn with Kenshi Gauntlet +Increases damage of Bowling Bash skill by 25%. +Causes a condition like using Skill Endure all the time. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +410000# +The object of the ancient thunder god. +It is said that when you hit the drum, a dragon floats with a roaring sound. +-------------------------- +ATK +2% +-------------------------- +Increases Physical Damage against enemies of Boss class by 2%. +-------------------------- +Base STR at least 90: +ATK +3% +Increases Physical Damage against enemies of Boss class by additional 3%. +-------------------------- +Base STR at least 125: +ATK +5% +Increases Physical Damage against enemies of Boss class by additional 5%. +-------------------------- +When equipped with Group of Stars: +Ignores physical defense of all enemies by 50%. +-------------------------- +Since it is an equipped effect, it still will be displayed even when the effect (/effect) is turned off. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +410005# +A magic pendant made of the rare crystalline god's diamond, +because of the high magical affinity of the god's diamond, is the dream prop of the magician. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +410006# +I wish a great fortune in the New Year, and the money is coming! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +410012# +Helps you gain more exp. +-------------------------- +Increase exp gain from monsters by 2%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +410013# +It helps you to accumulate more experience points through advice. +-------------------------- +Increases experience gained from defeating monsters by 1%. +-------------------------- +Activates additional effects by using the EXP Overclocker. +-------------------------- +EXP Overclocker can be obtained from +[Cat Salesman Nyarom]itemmall,41,50,0,100,0,0, +by using Silvervine Cat Fruit or Zeny. +This item cannot receive additional enchantment from [Piercing Brosnan]. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +410016# +Specialized processor for improving combative functions. +-------------------------- +ATK +20, +MATK +20 +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +410017# +Specialized processor for improving combative functions. +-------------------------- +ATK +10, +MATK +10 +-------------------------- +Activates additional effects by using the Battle Processor Accelerator. +-------------------------- +Battle Processor Accelerator can be obtained from +[Cat Salesman Nyarom]itemmall,41,50,0,100,0,0, +by using Silvervine Cat Fruit or Zeny. +This item cannot receive additional enchantment from [Piercing Brosnan]. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +410018# +A mask designed to help adventurers grow. +The red feather decoration is attractive. +-------------------------- +Decreases After Skill Delay by 8%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +410019# +A mask designed to help adventurers grow. +The blue feather decoration is attractive. +-------------------------- +Decreases Variable Casting Time by 8%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +410020# +A mask designed to help adventurers grow. +The light green feather decoration is attractive. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 8%). +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +410029# +A basket full of Pet eggs. Let's go outside with a great partner. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410047# +A ceremonial mask once worn by heroes of a certain tribe. +Wearing this mask seems to endlessly restore your stamina. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410048# +A cool costume tiger doll that is so well made that you can mistake it for a real tiger. +When you go together, you feel like you are the lion king. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410049# +Brown and gold two-tone color costume contact lenses that blink when you wear them. +Let's ignore the question of 'Why doesn't it blink normally?'. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410051# +Snowflake that makes your eyes flutter when equipped. +You can always enjoy the snowy scene. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410054# +A long dress ribbon that seems to signify a sacred blessing. +The hem of the ribbon is very long, creating a mysterious atmosphere. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410055# +A very convenient parasol that supports itself without holding it with your hands. +Let's enjoy a walk with both hands free. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410056# +A Costume Chick Doll made so well that you might mistake it for a real chick. +It's cute to see him waddling around with his best friend Poring on his head. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 24. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410061# +A costume that makes chocolate making fun with an apron in the form of Deviruchi. +You will want to go on an adventure by equipping it with the Deviruchi Pet. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410062# +A costume mask that can change into a carefree expression. +Because he always has an apathetic face, the people around him are mentally healed. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 23. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: +All classes except Summoner +# +410063# +Costume ribbon with cute cherries. +There seems to be a crackling sound every time it moves. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 24. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410068# +A costume cart made for Dorams who likes carts. +Let's sit back and open a cute fish shop! +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410069# +A pet popcorn box specially made by Comodo. +They say they like hot weather. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410079# +Sunglasses specially coated in dark blue. +Excellent for UV protection. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Heagear +Defense: 0 +Position: Middle +Weight: 10 +-------------------------- +Requirement: None +# +410080# +Sunglasses specially coated in dark blue. +Excellent for UV protection. +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Additional abilities can be activated by using the Lens Craft Stone. +Lens Craft Stone can be obtained from +[Cat Salesman Nyarom]itemmall,41,50,0,100,0,0, +by using Silvervine Cat Fruit or Zeny. +-------------------------- +This item can't receive additional enchantment from Piercing Brosnan. +-------------------------- +Type: Heagear +Defense: 0 +Position: Middle +Weight: 10 +-------------------------- +Requirement: None +# +410081# +A costume decoration that expresses how the ground was destroyed by a huge force. +The overflowing power floats the earth. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +410087# +A masterpiece of robotic technology. +These fully automatic drones follow and monitor the surroundings of their master. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410091# +Booster headphones made of Cor-Core. +-------------------------- +Decreases Variable Casting Time by 8%. +Decreases After Skill Delay by 8%. +-------------------------- +When equipped with Disk in Mouth: +Increases Magical Damage with every element by 7%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 10 +-------------------------- +Requirement: +Base Level 150 +# +410092# +Booster headphones made of Cor-Core. +-------------------------- +Decreases Variable Casting Time by 8%. +Decreases After Skill Delay by 8%. +-------------------------- +When equipped with Disk in Mouth: +Increases Magical Damage with every element by 7%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 10 +-------------------------- +Requirement: +Base Level 150 +# +410093# +A chain crafted to suppress evil energy. +-------------------------- +Critical +8 +Increases Melee and Ranged Physical Damage by 8%. +-------------------------- +When equipped with Bondage Necklace: +Increases Critical Damage by 7%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 10 +-------------------------- +Requirement: +Base Level 150 +# +410094# +A chain crafted to suppress evil energy. +-------------------------- +Critical +8 +Increases Melee and Ranged Physical Damage by 8%. +-------------------------- +When equipped with Bondage Necklace: +Increases Critical Damage by 7%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 10 +-------------------------- +Requirement: +Base Level 150 +# +410095# +Costume plush in the shape of a white kitten. +A cute small kitten that sits on your shoulder. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 25. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410099# +The last appearance of a human caught in revenge... +A costume eye patch and contact lenses. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410103# +Silk made from the thread of the soul. +The process of making it is not understood, but the result is silk. +It is very soft and comfortable when applied to the face. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410122# +Little pink eyes that blink. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410126# +A mini glass for costumes modeled after a girl who obtained a doctorate from Yuno's Academy. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 27. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410127# +Now you can be the star you've always dreamed of with this Costume Spotlight. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410131# +A wonderful costume tiger doll that is so well made that you can mistake it for a real tiger. +When you go together, you feel like you are the oil king. +-------------------------- +Collection Effect +Def +2 +Mdef +2 +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410132# +A wonderful costume tiger doll that is so well made that you can mistake it for a real tiger. +When you go together, you feel like you are the oil king. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410145# +Automatic doll series product of the Fantasy Series Editorial Department. +VR Book: A Scientist's Escape Record +Butterfly +\ + + +This is an exchange-only product. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410146# +Automatic doll series product of the Fantasy Series Editorial Department. +VR Book: An ornamental plant that anyone can grow easily (Practical Edition) +Debris +\ + + +This is an exchange-only product. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410147# +Automatic doll series product of the Fantasy Series Editorial Department. +VR Book: Elena Volkova, That Great Flame +Elena Volkova +\ + + +This is an exchange-only product. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410148# +Automatic doll series product of the Fantasy Series Editorial Department. +VR Book: Elena Volkova, That Great Flame +Elumina +\ + + +This is an exchange-only product. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410149# +Automatic doll series product of the Fantasy Series Editorial Department. +VR Book: A Scientist's Escape Record +Eisen Werner +\ + + +This is an exchange-only product. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410157# +Lunatics for costumes that follow people. +Every time Lunatic walks, he drops a clover! +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410200# +A cute rabbit butler waiting for you 24 hours a day. You can enjoy tea time anytime, anywhere. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410231# +Looks like you've been invited to a tea party in a cute and charming country. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410261# +Headphones with King Poring decoration hanging around the neck. +A classy decoration makes the wearer's heart flutter. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410277# +A cat doll with dazzling blue eyes that shine like gemstones. It was meticulously crafted by a skilled artisan of Rune-Midgarts. +Highly sought after by doll collectors, its intricate design makes it look almost alive. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +410279# +A costume that embodies the colors of the evening sky in autumn. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +410290# +Mysterious sea creatures with dreamlike shapes and colors. +Jellyfish will set you free~ +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +420003# +It feels like a lot of data in the compact disc is being transferred into the brain through the mouth. +-------------------------- +Increases Magical Damage with every element by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +420010# +A costume in which the energy of darkness rises from the feet of Smalsmal. +It is said that it can be used with bluff because it looks incredibly strong just by wearing it on the body. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420016# +A costume paper doll that floats around the body. +It is said to have magical powers to prevent disasters on behalf of its owner. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 23. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +420017# +The leaves of Yggdrasil, the source of this world. Resonates with the equipment of time to elicit hidden power. +-------------------------- +When equipped with Temporal STR Manteau and Soaring Power Armor: +ATK +5% + +Total Refine Level of entire set at least +14: +ATK +80 + +Total Refine Level of entire set at least +18: +ATK +30 +Decreases After Skill Delay by 7%. + +Total Refine Level of entire set at least +22: +Increases Melee Physical Damage by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +420018# +The leaves of Yggdrasil, the source of this world. Resonates with the equipment of time to elicit hidden power. +-------------------------- +When equipped with Temporal DEX Manteau and Excellent Dexterity Armor: +Increases Physical Damage against enemies of every size by 7%. + +Total Refine Level of entire set at least +14: +ATK +80 + +Total Refine Level of entire set at least +18: +ATK +5% +Increases Physical Damage against enemies of every size by additional 7%. + +Total Refine Level of entire set at least +22: +Increases Ranged Physical Damage by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +420019# +The leaves of Yggdrasil, the source of this world. Resonates with the equipment of time to elicit hidden power. +-------------------------- +When equipped with Temporal AGI Manteau and Brilliant Rapid Armor: +Increases Physical Damage against enemies of enemies of every race, except Players, by 7%. + +Total Refine Level of entire set at least +14: +ATK +80 + +Total Refine Level of entire set at least +18: +ASPD +1 +Increases Physical Damage against enemies of enemies of every race, except Players, by additional 7%. + +Total Refine Level of entire set at least +22: +Decreases After Skill Delay by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +420020# +The leaves of Yggdrasil, the source of this world. Resonates with the equipment of time to elicit hidden power. +-------------------------- +When equipped with Temporal LUK Manteau and Unexpected Lucky Armor: +Increases Physical Damage against enemies of enemies of every race, except Players, by 10%. + +Total Refine Level of entire set at least +14: +ATK +80 + +Total Refine Level of entire set at least +18: +Increases Physical Damage against enemies of every size by 10%. +Increases Critical Damage by 12%. + +Total Refine Level of entire set at least +22: +Increases Melee and Ranged Physical Damage by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +420021# +The leaves of Yggdrasil, the source of this world. Resonates with the equipment of time to elicit hidden power. +-------------------------- +When equipped with Temporal VIT Manteau and Hardened Vitality Armor: +MaxHP +10% + +Total Refine Level of entire set at least +14: +ATK +80 + +Total Refine Level of entire set at least +18: +ATK +10% +MaxSP +7% + +Total Refine Level of entire set at least +22: +Decreases After Skill Delay by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +420022# +The leaves of Yggdrasil, the source of this world. Resonates with the equipment of time to elicit hidden power. +-------------------------- +When equipped with Temporal INT Manteau and Strong Magic Armor: +Decreases Variable Casting Time by 10%. + +Total Refine Level of entire set at least +14: +MATK +80 + +Total Refine Level of entire set at least +18: +Increases Magical Damage with every element by 10%. +Decreases After Skill Delay by 7%. + +Total Refine Level of entire set at least +22: +Increases Magical Damage against enemies of every size by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +420025# +Lanterns shining eyes. +If you keep watching, it seems like it will be sucked in. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420027# +A costume wig that makes you feel like a different, hairy person when you wear it. +Braided hair, whose dense texture resembles the spines of a fish. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420029# +A replica of the armor worn by the legendary Imperial General. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 22. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420030# +A feather that looks like a blow. +It can sound like a flute when it bites and blows into your mouth. +-------------------------- +Ranged physical damage increased by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +420031# +A blue mask that lets you feel like a ninja when worn. +-------------------------- +Increases Melee Physical Damage by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +420034# +A beautiful wig with long, voluminous hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420035# +A beautiful wig with long, voluminous hair. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420036# +A cute hairstyle with fluffy curls. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420037# +A cute hairstyle with fluffy curls. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420038# +A cute hairstyle with fluffy curls. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420039# +A cute hairstyle with fluffy curls. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420040# +A cute hairstyle with fluffy curls. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420041# +A cute hairstyle with fluffy curls. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420042# +A cute hairstyle with fluffy curls. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420043# +A cute hairstyle with fluffy curls. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420044# +A decoration made with the collar part worn by sailors for clothes. +There is a legend that the collar was erected on a ship with strong winds to make it easier to hear the sound. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 24. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420046# +A noble-born heir's shoulder cloak from an aristocratic family. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420047# +A costume cloak that is said to be bestowed on a brave knight of honor. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420048# +A costume wig that gives you a feeling of having a different hairstyle when worn. +This is a cute hairstyle because the rolled hair looks just like chocolate conch bread. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420050# +A costume wig that gives you a feeling of having a different hairstyle than usual when worn. +The dumpling part decorated with ribbon makes the fluffy wavy hair even cuter. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420053# +Shadow costume called Deviruchi. +It must be a shadow, but it is often seen moving creepyly. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420055# +A fan with warm spring vibes. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420057# +A costume wig nearly tied to one side. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420058# +A costume wig nearly tied to one side. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420059# +A costume wig nearly tied to one side. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420060# +A costume wig nearly tied to one side. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420061# +A costume wig nearly tied to one side. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420062# +A costume wig nearly tied to one side. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420066# +An improved version of the freestanding orb that automatically assists the owner. +-------------------------- +Decreases Variable Casting Time by 3%. +Increases Magical Damage with every element by 7%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Lower +Weight: 30 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 150 +# +420067# +Costume wig with rabbit ears. +A cute hairstyle that looks like a Lunatic when worn. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420069# +Costume replica used by the king who commanded the royal guard in the old days. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420071# +A costume stole with a wing-shaped hem. +It is beautiful to see it swaying in the wind like wings. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420072# +A costume wig that gives you a feeling of having a different hairstyle than usual when worn on the body. +Tied loosely at the bottom, a girly braid that looks like something you'd find in a forest. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420074# +Lime soda with tangy taste. +It is said that if you drink lime soda when you eat popcorn and it is stuffy, the stuffiness disappears. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +420076# +A necklace created by a being with strong magical powers to bind minions. +-------------------------- +Critical +3 +-------------------------- +Increases Critical Damage by 5%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 1 +-------------------------- +Requirement: +Base Level 150 +# +420077# +Pitter-patter, you too can pretend you're a cat with these cat footprints! +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420079# +A costume wig that makes you feel like you have a different hair style than usual when you wear it. +The accent color of the point color on the inside is clearly revealed. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420081# +Even if you hate carrots, you can pretend to eat one with this costume. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420082# +A cute roll-shaped hairstyle. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420092# +A costume wig that makes you feel like you have changed into a different hairstyle when worn. +Long hair that is soft and fluffy like silk. +Lightly braided hair is cute. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420095# +A wig made by braiding the hair into two parts. +It helps with various productions. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420096# +A wig made by braiding the hair into two parts. +It helps with various productions. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420097# +A wig made by braiding the hair into two parts. +It helps with various productions. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420098# +A wig made by braiding the hair into two parts. +It helps with various productions. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420099# +A wig made by braiding the hair into two parts. +It helps with various productions. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420100# +A wig made by braiding the hair into two parts. +It helps with various productions. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420101# +A wig made by braiding the hair into two parts. +It helps with various productions. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420102# +A wig made by braiding the hair into two parts. +It helps with various productions. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420104# +A costume wig that makes you feel like you have changed into a different hairstyle when worn. +It is said that it was modeled after the hairstyle of a certain fighter. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420107# +A costume wig that makes you feel like you have changed into a different hairstyle when worn. +Twin hair with gradation color that makes your hair sparkle as you move. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420108# +A delicious-looking costume decoration that mimics a bite-sized chocolate bonbon chocolat. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 26. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420109# +A costume amulet that is said to contain the power of the fire spirit. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420113# +A costume wig that makes you feel like you have changed into a different hairstyle when worn. +The roll-shaped hairstyle turned to one side is cute. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420114# +A costume wig that makes you feel like you have changed into a different hairstyle when worn. +The roll-shaped hairstyle turned to one side is cute. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420115# +A costume wig that makes you feel like you have changed into a different hairstyle when worn. +The roll-shaped hairstyle turned to one side is cute. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420116# +A costume wig that makes you feel like you have changed into a different hairstyle when worn. +The roll-shaped hairstyle turned to one side is cute. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420117# +A costume wig that makes you feel like you have changed into a different hairstyle when worn. +The roll-shaped hairstyle turned to one side is cute. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420118# +A costume wig that makes you feel like you have changed into a different hairstyle when worn. +The roll-shaped hairstyle turned to one side is cute. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420119# +A costume wig that makes you feel like you have changed into a different hairstyle when worn. +The roll-shaped hairstyle turned to one side is cute. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420120# +A costume wig that makes you feel like you have changed into a different hairstyle when worn. +The roll-shaped hairstyle turned to one side is cute. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420121# +A costume wig that makes you feel like you have changed into a different hairstyle when worn. +It is said that it was modeled after the hairstyle of a certain fighter. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420122# +A costume wig that makes you feel like you have changed into a different hairstyle when worn. +It is said that it was modeled after the hairstyle of a certain fighter. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420123# +A costume wig that makes you feel like you have changed into a different hairstyle when worn. +It is said that it was modeled after the hairstyle of a certain fighter. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420124# +A costume wig that makes you feel like you have changed into a different hairstyle when worn. +It is said that it was modeled after the hairstyle of a certain fighter. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420125# +A costume wig that makes you feel like you have changed into a different hairstyle when worn. +It is said that it was modeled after the hairstyle of a certain fighter. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420126# +A costume wig that makes you feel like you have changed into a different hairstyle when worn. +It is said that it was modeled after the hairstyle of a certain fighter. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420127# +A costume wig that makes you feel like you have changed into a different hairstyle when worn. +It is said that it was modeled after the hairstyle of a certain fighter. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420128# +A costume wig that makes you feel like you have changed into a different hairstyle when worn. +It is said that it was modeled after the hairstyle of a certain fighter. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420152# +A costume of opposing forces of light and darkness. +It is said that it can be used as a bluff, as it makes you look incredibly strong just by wearing it. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +420248# +The Third Eye of the Genie +If you accidentally gaze into this eye, you will be trapped in the Genies spell forever. +-------------------------- +All State + 1, +Reduce Fixed Cast Time 0.1 Second +Increases item drop rate by 5% +Has a chance to drop Milk, Honey, Jujube, and Coffee when defeating monsters +-------------------------- +When equipped with Hat of Desert: +For every upgrade level of the Hat of Desert, the item drop rate increases by 1%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +436000# +The mask used Thanatos' Sorrow. +It's abilities and memories seem to be handed down. +-------------------------- +MATK +3% +-------------------------- +Increases Magical Damage against Players by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +436001# +The mask worn by Thanatos' despair. It seems to be popular with it's charming design. +-------------------------- +ATK +3% +-------------------------- +Increases Physical Damage against Players by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +436002# +The mask used by Thanatos' hatred. He had a defense that did not go well with his charming appearance. +-------------------------- +MaxHP +5% +-------------------------- +Decreases Physical and Magical Damage taken from Players by 5%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +436003# +The mask used by Thanatos' hatred. He had a defense that did not go well with his charming appearance. +-------------------------- +MaxHP +5% +-------------------------- +Decreases Physical and Magical Damage taken from Players by 5%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +436004# +The mask worn by Thanatos' despair. It seems to be popular with its charming design. +-------------------------- +ATK +3% +-------------------------- +Increases Physical Damage against Players by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +436005# +The mask worn by Thanatos' Sorrow. It's abilities and memories seem to be handed down. +-------------------------- +MATK +3% +-------------------------- +Increases Magical Damage against Players by 10%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle, Lower +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +436006# +A helmet that perfectly embodies the shape of the Rgan. +It would have been better if I had implemented an advanced legan... +Why are you so low... +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle, Lower +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +436007# +A hat that perfectly embodies Irwin's appearance which is very warm. +No, it's not warm, it's so hot that I feel like I'm suffocating. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle, Lower +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +436008# +A self-portrait drawn by Chulho. +Tiger paintings are said to have the effect of preventing bad luck, and this painting is so well drawn that tiger protrude from the paper. +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle, Lower +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +440000# +A hat worn on the head in the shape of a shark head. +If you stick your head out from the water, you might think that a shark appeared! +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 19. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +440002# +A cat hanging around the owner's head. +The long tail covers the neck and looks warm. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 21. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +440003# +A redesigned hood based on the popularity of Love Rabbit Hood. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +440006# +A cute black hood with soft and soft cat ears. +-------------------------- +Type: Costume +Position: Upper, Middle +Weight: 0 +-------------------------- +Requirement: None +# +440007# +A cute squirrel hat with pricked ears.At the moment of writing, it seems like a squirrel characterized by a small but sharp attack. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +440009# +A hood in the shape of a cat looking at the moon. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +440010# +A costume mask in the shape of a teddy bear head. +It is a mask made to welcome theme park visitors, but it seems that it can also be used to hide and wander around. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 24. +-------------------------- +Type: Costume +Position: Upper, Middle, Lower +Weight: 0 +-------------------------- +Requirement: None +# +450000# +MaxHP +100 +-------------------------- +Type: Armor +Defense: 10 +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: None +# +450001# +Special armor prepared for your rapid growth. +It is specialized for melee physical attacks. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +100 +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +For each 2 Refine Levels: +ATK +1% +-------------------------- +For each 3 Refine Levels: +Increases Critical Damage by 1%. +-------------------------- +Refine Level +7: +ATK +50 +-------------------------- +Refine Level +9: +Decreases After Skill Delay by additional 5%. +-------------------------- +Type: Armor +Defense: 120 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +450002# +Special robe prepared for your rapid growth. +It is specialized in some elemental magic attacks. +-------------------------- +Cannot be refined normally. +-------------------------- +MATK +100 +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +For each 2 Refine Levels: +MATK +1% +-------------------------- +For each 3 Refine Levels: +Decreases Variable Casting Time by additional 1%. +-------------------------- +Refine Level +7: +MATK +50 +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 5%. +-------------------------- +Type: Armor +Defense: 80 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +450003# +Special robe prepared for your rapid growth. +It is specialized in some elemental magic attacks. +-------------------------- +Cannot be refined normally. +-------------------------- +MATK +100 +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +For each 2 Refine Levels: +MATK +1% +-------------------------- +For each 3 Refine Levels: +Decreases Variable Casting Time by additional 1%. +-------------------------- +Refine Level +7: +MATK +50 +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 5%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +450004# +Special armor prepared for your rapid growth. +It is specialized for ranged physical attacks. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +100 +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +For each 2 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +7: +MATK +50 +-------------------------- +Refine Level +9: +Decreases After Skill Delay by additional 5%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +450018# +Noble Rune Knight Armor with the emblem of Rune Midgarts +-------------------------- +MaxHP +5% +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +MaxHP +5% +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +Decreases After Skill Delay by 5%. +MaxHP +5% +Increases damage of Dragon Breath and Dragon Breath - Water by 10%. +-------------------------- +Total Refine Level of Noblesse Breath Armor, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 5%. +MaxHP +5% +Increases damage of Dragon Breath and Dragon Breath - Water by additional 10%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +450019# +Noble Rune Knight Armor with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +9: +Increases Critical Damage by 5%. +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +ASPD +1 +Increases Critical Damage by 5%. +Increases damage of Ignition Break by 10%. +-------------------------- +Total Refine Level of Noblesse Knight Armor, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +ASPD +1 +Increases Critical Damage by additional 5%. +Increases damage of Ignition Break by additional 10%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +450020# +Noble Royal Guard Armor with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +ASPD +1 +Increases Ranged Physical Damage by 5%. +Increases damage of Cannon Spear by 10%. +-------------------------- +Total Refine Level of Noblesse Spear Armor, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +ASPD +1 +Increases Ranged Physical Damage by additional 5%. +Increases damage of Cannon Spear by additional 10%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Royal Guard +# +450021# +Noble Royal Guard Armor with the emblem of Rune Midgarts +-------------------------- +MATK +50 +-------------------------- +Refine Level +7: +Increases Magical Damage with Holy element by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Holy element by additional 5%. +-------------------------- +When equipped with Noblesse Magic Manteau, Noblesse Magic Boots and Noblesse Magic Ring: +MATK +25 +Decreases After Skill Delay by 5%. +Increases damage of Genesis Ray by 10%. +-------------------------- +Total Refine Level of Noblesse Genesis Armor, Noblesse Magic Manteau and Noblesse Magic Boots is +27 or higher: +MATK +25 +Decreases After Skill Delay by additional 5%. +Increases damage of Genesis Ray by additional 10%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Royal Guard +# +450022# +Noble Ranger Suit with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +Decreases After Skill Delay by 5%. +Increases Critical Damage by 5%. +Increases damage of Sharp Shooting by 10%. +-------------------------- +Total Refine Level of Noblesse Sharp Suit, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 5%. +Increases Critical Damage by additional 5%. +Increases damage of Sharp Shooting by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Ranger +# +450023# +Noble Ranger Suit with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +Decreases After Skill Delay by 5%. +ATK +2% +Increases damage of Aimed Bolt by 10%. +-------------------------- +Total Refine Level of Noblesse Aimed Suit, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 5%. +ATK +3% +Increases damage of Aimed Bolt by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Ranger +# +450024# +Noble Performer Suit with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10% +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +Increases Ranged Physical Damage by 5%. +ATK +2% +Increases damage of Severe Rainstorm by 10%. +-------------------------- +Total Refine Level of Noblesse Severe Suit, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +Increases Ranged Physical Damage by additional 5%. +ATK +3% +Increases damage of Severe Rainstorm by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Minstrel and Wanderer +# +450025# +Noble Performer Suit with the emblem of Rune Midgarts +-------------------------- +MATK +50 +-------------------------- +Refine Level +7: +Increases Magical Damage with Neutral element by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Neutral element by additional 5%. +-------------------------- +When equipped with Noblesse Magic Manteau, Noblesse Magic Boots and Noblesse Magic Ring: +Decreases Variable Casting Time by 5%. +MATK +2% +Increases damage of Reverberation by 10%. +-------------------------- +Total Refine Level of Noblesse Reverb Suit, Noblesse Magic Manteau and Noblesse Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Reverberation by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Minstrel and Wanderer +# +450026# +Noble Bishop Robe with the emblem of Rune Midgarts +-------------------------- +MATK +50 +-------------------------- +Refine Level +7: +Increases Magical Damage with Holy element by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Holy element by additional 5%. +-------------------------- +When equipped with Noblesse Magic Manteau, Noblesse Magic Boots and Noblesse Magic Ring: +Decreases Variable Casting Time by 5%. +MATK +2% +Increases damage of Adoramus by 10%. +-------------------------- +Total Refine Level of Noblesse Adora Robe, Noblesse Magic Manteau and Noblesse Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Adoramus by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +450027# +Noble Bishop Robe with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +9: +Increases Critical Damage by 5%. +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +ASPD +1 +ATK +2% +Increases damage of Duple Light by 10%. +-------------------------- +Total Refine Level of Noblesse Duple Suit, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +ASPD +1 +ATK +3% +Increases damage of Duple Light by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +450028# +Noble Mechanic Armor with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by 5%. +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +ASPD +1 +Decreases After Skill Delay by 5% +Increases damage of Axe Tornado by 10%. +-------------------------- +Total Refine Level of Noblesse Tornado Armor, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +ASPD +1 +Decreases After Skill Delay by additional 5% +Increases damage of Axe Tornado by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +450029# +Noble Mechanic Armor with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +ASPD +1 +Increases Ranged Physical Damage by additional 5%. +Increases damage of Vulcan Arm by 10%. +-------------------------- +If total Refine Level of ^99009Noblesse Vulcan Armor, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +ASPD +1 +Increases Ranged Physical Damage by additional 5% +Increases damage of Vulcan Arm by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +450030# +Noble Genetic Suit with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +Decreases Variable Casting Time by additional 5%. +ATK +2% +Increases damage of Cart Cannon by 10%. +-------------------------- +Total Refine Level of Noblesse Cart Cannon Suit, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +ATK +3% +Increases damage of Cart Cannon by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Genetic +# +450031# +Noble Genetic Suit with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by 5%. +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +ASPD +1 +ATK +2% +Increases damage of Cart Tornado by 10%. +-------------------------- +Total Refine Level of Noblesse Cart Tornado Suit, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +ASPD +1 +ATK +3% +Increases damage of Cart Tornado by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Genetic +# +450032# +Noble Guillotine Cross Suit with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +Decreases After Skill Delay by 5%. +ATK +2% +Increases damage of Rolling Cutter by 10%. +-------------------------- +Total Refine Level of Noblesse Rolling Suit, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 5%. +ATK +3% +Increases damage of Rolling Cutter by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +450033# +Noble Guillotine Cross Suit with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +9: +Increases Critical Damage by 5%. +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +ASPD +1 +Increases Critical Damage by additional 5%. +ATK +2% +-------------------------- +Total Refine Level of Noblesse Assassin Suit, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +ASPD +1 +Increases Critical Damage by additional 5%. +ATK +3% +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +450034# +Noble Shadow Chaser Suit with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by 5%. +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +Decreases After Skill Delay by 5%. +ATK +2% +Increases damage of Fatal Menace by 10%. +-------------------------- +Total Refine Level of Noblesse Fatal Suit, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 5%. +ATK +3% +Increases damage of Fatal Menace by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +450035# +Noble Shadow Chaser Suit with the emblem of Rune Midgarts +-------------------------- +MATK +50 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +9: +Increases Magical Damage with Fire element by 5%. +-------------------------- +When equipped with Noblesse Magic Manteau, Noblesse Magic Boots and Noblesse Magic Ring: +ASPD +1 +MATK +2% +Increases damage of Meteor Storm by 20%. +-------------------------- +Total Refine Level of Noblesse Stalker Suit, Noblesse Magic Manteau and Noblesse Magic Boots is +27 or higher: +ASPD +1 +MATK +3% +Increases damage of Meteor Storm by additional 20%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +450036# +Noble Summoner Robe with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +Decreases After Skill Delay by 5%. +ATK +2% +Increases damage of Picky Peck by 10%. +-------------------------- +Total Refine Level of Noblesse Picky Robe, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 5%. +ATK +3% +Increases damage of Picky Peck by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +450037# +Noble Summoner Robe with the emblem of Rune Midgarts +-------------------------- +MATK +50 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Neutral element by 5%. +-------------------------- +When equipped with Noblesse Magic Manteau, Noblesse Magic Boots and Noblesse Magic Ring: +Decreases Variable Casting Time by 5%. +MATK +2% +Increases damage of Catnip Meteor by 10%. +-------------------------- +Total Refine Level of Noblesse Catnip Robe, Noblesse Magic Manteau and Noblesse Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Catnip Meteor by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +450038# +Noble Rebellion Suit with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +ATK +5% +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +Increases Ranged Physical Damage by 5%. +ATK +2% +Increases damage of Round Trip by 10%. +-------------------------- +Total Refine Level of Noblesse Trip Suit, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +Increases Ranged Physical Damage by additional 5%. +ATK +3% +Increases damage of Round Trip by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +450039# +Noble Rebellion Suit with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +ATK +5% +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +ASPD +1 +ATK +2% +Increases damage of Fire Rain by 10%. +-------------------------- +Total Refine Level of Noblesse Fire Rain Suit, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +ASPD +1 +ATK +3% +Increases damage of Fire Rain by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Rebellion +# +450040# +Noble Warlock Robe with the emblem of Rune Midgarts +-------------------------- +MATK +50 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Fire element by 5%. +-------------------------- +When equipped with Noblesse Magic Manteau, Noblesse Magic Boots and Noblesse Magic Ring: +Decreases Variable Casting Time by additional 5%. +MATK +2% +Increases damage of Crimson Rock by 10%. +-------------------------- +Total Refine Level of Noblesse Crimson Robe, Noblesse Magic Manteau and Noblesse Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Crimson Rock by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Warlock +# +450041# +Noble Warlock Robe with the emblem of Rune Midgarts +-------------------------- +MATK +50 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Water element by 5%. +-------------------------- +When equipped with Noblesse Magic Manteau, Noblesse Magic Boots and Noblesse Magic Ring: +Decreases Variable Casting Time by additional 5%. +MATK +2% +Increases damage of Jack Frost by 10%. +-------------------------- +Total Refine Level of Noblesse Frost Robe, Noblesse Magic Manteau and Noblesse Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Jack Frost by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Warlock +# +450042# +Noble Sorcerer Robe with the emblem of Rune Midgarts +-------------------------- +MATK +50 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Neutral element by 5%. +-------------------------- +When equipped with Noblesse Magic Manteau, Noblesse Magic Boots and Noblesse Magic Ring: +Decreases Variable Casting Time by additional 5%. +MATK +2% +Increases damage of Psychic Wave by 10%. +-------------------------- +Total Refine Level of Noblesse Psychic Robe, Noblesse Magic Manteau and Noblesse Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Psychic Wave by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +450043# +Noble Sorcerer Robe with the emblem of Rune Midgarts +-------------------------- +MATK +50 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Water element by 5%. +-------------------------- +When equipped with Noblesse Magic Manteau, Noblesse Magic Boots and Noblesse Magic Ring: +Decreases Variable Casting Time by additional 5%. +MATK +2% +Increases damage of Diamond Dust by 10%. +-------------------------- +Total Refine Level of Noblesse Dust Robe, Noblesse Magic Manteau and Noblesse Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Diamond Dust by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +450044# +Noble Star Emperor Suit with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +9: +ATK +5% +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +ASPD +1 +ATK +2% +Increases damage of Solar Burst by 10%. +-------------------------- +Total Refine Level of Noblesse Sun Suit, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +ASPD +1 +ATK +3% +Increases damage of Solar Burst by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Star Emperor +# +450045# +Noble Star Emperor Suit with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of all size enemeies by 5%. +-------------------------- +Refine Level +9: +ATK +5% +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +Increases Physical Damage against enemies of all size enemeies by additional 5%. +ATK +2% +Increases damage of Full Moon Kick by 10%. +-------------------------- +Total Refine Level of Noblesse Moon Suit, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +Increases Physical Damage against enemies of all size enemeies by additional 5%. +ATK +3% +Increases damage of Full Moon Kick by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Star Emperor +# +450046# +Noble Ninja Suit with the emblem of Rune Midgarts +-------------------------- +MATK +50 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 5%. +-------------------------- +When equipped with Noblesse Magic Manteau, Noblesse Magic Boots and Noblesse Magic Ring: +Decreases Variable Casting Time by additional 5%. +MATK +2% +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 10%. +-------------------------- +Total Refine Level of Noblesse Ninja Suit, Noblesse Magic Manteau and Noblesse Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +450047# +Noble Ninja Suit with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +ATK +5% +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +Increases Ranged Physical Damage by additional 5%. +ATK +2% +Increases damage of Kunai Splash by 10%. +-------------------------- +Total Refine Level of Noblesse Kunai Suit, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +Increases Ranged Physical Damage by additional 5%. +ATK +3% +Increases Kunai Splash by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro +# +450048# +Noble Soul Reaper Robe with the emblem of Rune Midgarts +-------------------------- +MATK +50 +-------------------------- +Refine Level +7: +Increases Magical Damage with Shadow element by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Shadow element by additional 5%. +-------------------------- +When equipped with Noblesse Magic Manteau, Noblesse Magic Boots and Noblesse Magic Ring: +Decreases Variable Casting Time by additional 5%. +MATK +2% +Increases damage of Eswhoo by 10%. +-------------------------- +Total Refine Level of Noblesse Eswhoo Robe, Noblesse Magic Manteau and Noblesse Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Eswhoo by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Soul Reaper +# +450049# +Noble Soul Reaper Robe with the emblem of Rune Midgarts +-------------------------- +MATK +50 +-------------------------- +Refine Level +7: +Increases Magical Damage with Shadow element by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Shadow element by additional 5%. +-------------------------- +When equipped with Noblesse Magic Manteau, Noblesse Magic Boots and Noblesse Magic Ring: +Decreases Variable Casting Time by 5%. +MATK +2% +Increases damage of Curse Explosion by 10%. +-------------------------- +Total Refine Level of Noblesse Explosion Robe, Noblesse Magic Manteau and Noblesse Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Curse Explosion by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Soul Reaper +# +450050# +Noble Sura Suit with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +MaxSP +10%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by 5%. +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +Decreases After Skill Delay by 5%. +ATK +2% +Increases damage of Knuckle Arrow by 10%. +-------------------------- +Total Refine Level of Noblesse Knuckle Suit, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 5%. +ATK +3% +Increases damage of Knuckle Arrow by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Sura +# +450051# +Noble Sura Suit with the emblem of Rune Midgarts +-------------------------- +MaxSP +5% +-------------------------- +Refine Level +7: +MaxHP +3% +-------------------------- +Refine Level +9: +MaxHP +3% +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +MaxHP +5% +ATK +2% +Increases damage of Tiger Cannon by 10%. +-------------------------- +Total Refine Level of Noblesse Tiger Suit, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +MaxHP +5% +ATK +3% +Increases damage of Tiger Cannon by additional 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Sura +# +450052# +Noble Rune Knight Armor with the emblem of Rune Midgarts +-------------------------- +MaxHP +7% +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +MaxHP +7% +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +Decreases After Skill Delay by 5%. +MaxHP +5% +Increases damage of Dragon Breath and Dragon Breath - Water by 10%. +-------------------------- +Total Refine Level of Imperial Breath Armor, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 10%. +MaxHP +5% +Increases damage of Dragon Breath and Dragon Breath - Water by additional 15%. +-------------------------- +Type: Armor +Defense: 120 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Rune Knight +# +450053# +Noble Rune Knight Armor with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +Increases Critical Damage by 7%. +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +ASPD +1 +Increases Critical Damage by 5%. +Increases damage of Ignition Break by 10%. +-------------------------- +Total Refine Level of Imperial Knight Armor, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +ASPD +1 +Increases Critical Damage by additional 5%. +Increases damage of Ignition Break by additional 15%. +-------------------------- +Type: Armor +Defense: 120 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Rune Knight +# +450054# +Noble Royal Guard Armor with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 7%. +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +ASPD +1 +Increases Ranged Physical Damage by 5%. +Increases damage of Cannon Spear by 10%. +-------------------------- +Total Refine Level of Imperial Spear Armor, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +ASPD +1 +Increases Ranged Physical Damage by additional 5%. +Increases damage of Cannon Spear by additional 15%. +-------------------------- +Type: Armor +Defense: 120 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Royal Guard +# +450055# +Noble Royal Guard Armor with the emblem of Rune Midgarts +-------------------------- +MATK +75 +-------------------------- +Refine Level +7: +Increases Magical Damage with Holy element by 7%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Holy element by additional 7%. +-------------------------- +When equipped with Imperial Magic Manteau, Imperial Magic Boots and Imperial Magic Ring: +MATK +25 +Decreases After Skill Delay by 5%. +Increases damage of Genesis Ray by 10%. +-------------------------- +Total Refine Level of Imperial Genesis Armor, Imperial Magic Manteau and Imperial Magic Boots is +27 or higher: +MATK +25 +Decreases After Skill Delay by additional 10%. +Increases damage of Genesis Ray by additional 15%. +-------------------------- +Type: Armor +Defense: 120 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Royal Guard +# +450056# +Noble Ranger Suit with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 7%. +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +Decreases After Skill Delay by 5%. +Increases Critical Damage by 5%. +Increases damage of Sharp Shooting by 10%. +-------------------------- +Total Refine Level of Imperial Sharp Suit, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 10%. +Increases Critical Damage by additional 10%. +Increases damage of Sharp Shooting by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Ranger +# +450057# +Noble Ranger Suit with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 7%. +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +Decreases After Skill Delay by 5%. +ATK +2% +Increases damage of Aimed Bolt by 10%. +-------------------------- +Total Refine Level of Imperial Aimed Suit, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 10%. +ATK +3% +Increases damage of Aimed Bolt by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Ranger +# +450058# +Noble Performer Suit with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15% +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 7%. +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +Increases Ranged Physical Damage by 5%. +ATK +2% +Increases damage of Severe Rainstorm by 10%. +-------------------------- +Total Refine Level of Imperial Severe Suit, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +Increases Ranged Physical Damage by additional 5%. +ATK +3% +Increases damage of Severe Rainstorm by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Minstrel and Wanderer +# +450059# +Noble Performer Suit with the emblem of Rune Midgarts +-------------------------- +MATK +75 +-------------------------- +Refine Level +7: +Increases Magical Damage with Neutral element by 7%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Neutral element by additional 7%. +-------------------------- +When equipped with Imperial Magic Manteau, Imperial Magic Boots and Imperial Magic Ring: +Decreases Variable Casting Time by 5%. +MATK +2% +Increases damage of Reverberation by 10%. +-------------------------- +Total Refine Level of Imperial Reverb Suit, Imperial Magic Manteau and Imperial Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Reverberation by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Minstrel and Wanderer +# +450060# +Noble Bishop Robe with the emblem of Rune Midgarts +-------------------------- +MATK +75 +-------------------------- +Refine Level +7: +Increases Magical Damage with Holy element by 7%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Holy element by additional 7%. +-------------------------- +When equipped with Imperial Magic Manteau, Imperial Magic Boots and Imperial Magic Ring: +Decreases Variable Casting Time by 5%. +MATK +2% +Increases damage of Adoramus by 10%. +-------------------------- +Total Refine Level of Imperial Adora Robe, Imperial Magic Manteau and Imperial Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Adoramus by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Archbishop +# +450061# +Noble Bishop Robe with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +Increases Critical Damage by 7%. +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +ASPD +1 +ATK +2% +Increases damage of Duple Light by 10%. +-------------------------- +Total Refine Level of Imperial Duple Suit, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +ASPD +1 +ATK +3% +Increases damage of Duple Light by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Archbishop +# +450062# +Noble Sura Suit with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +MaxSP +15%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by 7%. +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +Decreases After Skill Delay by 5%. +ATK +2% +Increases damage of Knuckle Arrow by 10%. +-------------------------- +Total Refine Level of Imperial Knuckle Suit, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 10%. +ATK +3% +Increases damage of Knuckle Arrow by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Sura +# +450063# +Noble Sura Suit with the emblem of Rune Midgarts +-------------------------- +MaxSP +7% +-------------------------- +Refine Level +7: +MaxHP +4% +-------------------------- +Refine Level +9: +MaxHP +4% +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +MaxHP +5% +ATK +2% +Increases damage of Tiger Cannon by 10%. +-------------------------- +Total Refine Level of Imperial Tiger Suit, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +MaxHP +5% +ATK +3% +Increases damage of Tiger Cannon by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Sura +# +450064# +Noble Mechanic Armor with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by 7%. +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +ASPD +1 +Decreases After Skill Delay by 5% +Increases damage of Axe Tornado by 10%. +-------------------------- +Total Refine Level of Imperial Tornado Armor, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +ASPD +1 +Decreases After Skill Delay by additional 10% +Increases damage of Axe Tornado by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Mechanic +# +450065# +Noble Mechanic Armor with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 7%. +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +ASPD +1 +Increases Ranged Physical Damage by additional 5%. +Increases damage of Vulcan Arm by 10%. +-------------------------- +If total Refine Level of ^99009Noblesse Vulcan Armor, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +ASPD +1 +Increases Ranged Physical Damage by additional 5% +Increases damage of Vulcan Arm by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Mechanic +# +450066# +Noble Genetic Suit with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 7%. +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +Decreases Variable Casting Time by additional 5%. +ATK +2% +Increases damage of Cart Cannon by 10%. +-------------------------- +Total Refine Level of Imperial Cart Cannon Suit, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +ATK +3% +Increases damage of Cart Cannon by additional 1%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Genetic +# +450067# +Noble Genetic Suit with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by 7%. +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +ASPD +1 +ATK +2% +Increases damage of Cart Tornado by 10%. +-------------------------- +Total Refine Level of Imperial Cart Tornado Suit, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +ASPD +1 +ATK +3% +Increases damage of Cart Tornado by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Genetic +# +450068# +Noble Guillotine Cross Suit with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 7%. +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +Decreases After Skill Delay by 5%. +ATK +2% +Increases damage of Rolling Cutter by 10%. +-------------------------- +Total Refine Level of Imperial Rolling Suit, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 10%. +ATK +3% +Increases damage of Rolling Cutter by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Guillotine Cross +# +450069# +Noble Guillotine Cross Suit with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +Increases Critical Damage by 7%. +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +ASPD +1 +Increases Critical Damage by additional 5%. +ATK +2% +-------------------------- +Total Refine Level of Imperial Assassin Suit, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +ASPD +1 +Increases Critical Damage by additional 5%. +ATK +3% +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Guillotine Cross +# +450070# +Noble Shadow Chaser Suit with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by 7%. +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +Decreases After Skill Delay by 5%. +ATK +2% +Increases damage of Fatal Menace by 10%. +-------------------------- +Total Refine Level of Imperial Fatal Suit, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 10%. +ATK +3% +Increases damage of Fatal Menace by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Shadow Chaser +# +450071# +Noble Shadow Chaser Suit with the emblem of Rune Midgarts +-------------------------- +MATK +75 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +Increases Magical Damage with Fire element by 7%. +-------------------------- +When equipped with Imperial Magic Manteau, Imperial Magic Boots and Imperial Magic Ring: +ASPD +1 +MATK +2% +Increases damage of Meteor Storm by 25%. +-------------------------- +Total Refine Level of Imperial Stalker Suit, Imperial Magic Manteau and Imperial Magic Boots is +27 or higher: +ASPD +1 +MATK +3% +Increases damage of Meteor Storm by additional 25%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Shadow Chaser +# +450072# +Noble Summoner Robe with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 7%. +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +Decreases After Skill Delay by 5%. +ATK +2% +Increases damage of Picky Peck by 10%. +-------------------------- +Total Refine Level of Imperial Picky Robe, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 10%. +ATK +3% +Increases damage of Picky Peck by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Summoner (Doram) +# +450073# +Noble Summoner Robe with the emblem of Rune Midgarts +-------------------------- +MATK +75 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Neutral element by 7%. +-------------------------- +When equipped with Imperial Magic Manteau, Imperial Magic Boots and Imperial Magic Ring: +Decreases Variable Casting Time by 5%. +MATK +2% +Increases damage of Catnip Meteor by 10%. +-------------------------- +Total Refine Level of Imperial Catnip Robe, Imperial Magic Manteau and Imperial Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Catnip Meteor by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Summoner (Doram) +# +450074# +Noble Rebellion Suit with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +ATK +7% +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 7%. +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +Increases Ranged Physical Damage by 5%. +ATK +2% +Increases damage of Round Trip by 10%. +-------------------------- +Total Refine Level of Imperial Trip Suit, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +Increases Ranged Physical Damage by additional 5%. +ATK +3% +Increases damage of Round Trip by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Rebellion +# +450075# +Noble Rebellion Suit with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +ATK +7% +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 7%. +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +ASPD +1 +ATK +2% +Increases damage of Fire Rain by 10%. +-------------------------- +Total Refine Level of Imperial Fire Rain Suit, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +ASPD +1 +ATK +3% +Increases damage of Fire Rain by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Rebellion +# +450076# +Noble Warlock Robe with the emblem of Rune Midgarts +-------------------------- +MATK +75 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Fire element by 7%. +-------------------------- +When equipped with Imperial Magic Manteau, Imperial Magic Boots and Imperial Magic Ring: +Decreases Variable Casting Time by additional 5%. +MATK +2% +Increases damage of Crimson Rock by 10%. +-------------------------- +Total Refine Level of Imperial Crimson Robe, Imperial Magic Manteau and Imperial Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Crimson Rock by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Warlock +# +450077# +Noble Warlock Robe with the emblem of Rune Midgarts +-------------------------- +MATK +75 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Water element by 7%. +-------------------------- +When equipped with Imperial Magic Manteau, Imperial Magic Boots and Imperial Magic Ring: +Decreases Variable Casting Time by additional 5%. +MATK +2% +Increases damage of Jack Frost by 10%. +-------------------------- +Total Refine Level of Imperial Frost Robe, Imperial Magic Manteau and Imperial Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Jack Frost by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Warlock +# +450078# +Noble Sorcerer Robe with the emblem of Rune Midgarts +-------------------------- +MATK +75 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Neutral element by 7%. +-------------------------- +When equipped with Imperial Magic Manteau, Imperial Magic Boots and Imperial Magic Ring: +Decreases Variable Casting Time by additional 5%. +MATK +2% +Increases damage of Psychic Wave by 10%. +-------------------------- +Total Refine Level of Imperial Psychic Robe, Imperial Magic Manteau and Imperial Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Psychic Wave by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Sorcerer +# +450079# +Noble Sorcerer Robe with the emblem of Rune Midgarts +-------------------------- +MATK +75 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Water element by 7%. +-------------------------- +When equipped with Imperial Magic Manteau, Imperial Magic Boots and Imperial Magic Ring: +Decreases Variable Casting Time by additional 5%. +MATK +2% +Increases damage of Diamond Dust by 10%. +-------------------------- +Total Refine Level of Imperial Dust Robe, Imperial Magic Manteau and Imperial Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Diamond Dust by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Sorcerer +# +450080# +Noble Star Emperor Suit with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +ATK +7% +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +ASPD +1 +ATK +2% +Increases damage of Solar Burst by 10%. +-------------------------- +Total Refine Level of Imperial Sun Suit, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +ASPD +1 +ATK +3% +Increases damage of Solar Burst by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Star Emperor +# +450081# +Noble Star Emperor Suit with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of all size enemeies by 7%. +-------------------------- +Refine Level +9: +ATK +7% +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +Increases Physical Damage against enemies of all size enemeies by additional 5%. +ATK +2% +Increases damage of Full Moon Kick by 10%. +-------------------------- +Total Refine Level of Imperial Moon Suit, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +Increases Physical Damage against enemies of all size enemeies by additional 5%. +ATK +3% +Increases damage of Full Moon Kick by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Star Emperor +# +450082# +Noble Ninja Suit with the emblem of Rune Midgarts +-------------------------- +MATK +75 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 7%. +-------------------------- +When equipped with Imperial Magic Manteau, Imperial Magic Boots and Imperial Magic Ring: +Decreases Variable Casting Time by additional 5%. +MATK +2% +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 10%. +-------------------------- +Total Refine Level of Imperial Ninja Suit, Imperial Magic Manteau and Imperial Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Kagerou and Oboro +# +450083# +Noble Ninja Suit with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +ATK +7%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 7%. +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +Increases Ranged Physical Damage by additional 5%. +ATK +2% +Increases damage of Kunai Splash by 10%. +-------------------------- +Total Refine Level of Imperial Kunai Suit, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +Increases Ranged Physical Damage by additional 5%. +ATK +3% +Increases Kunai Splash by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Kagerou and Oboro +# +450084# +Noble Soul Reaper Robe with the emblem of Rune Midgarts +-------------------------- +MATK +75 +-------------------------- +Refine Level +7: +Increases Magical Damage with Shadow element by 7%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Shadow element by additional 7%. +-------------------------- +When equipped with Imperial Magic Manteau, Imperial Magic Boots and Imperial Magic Ring: +Decreases Variable Casting Time by additional 5%. +MATK +2% +Increases damage of Eswhoo by 10%. +-------------------------- +Total Refine Level of Imperial Eswhoo Robe, Imperial Magic Manteau and Imperial Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Eswhoo by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Soul Reaper +# +450085# +Noble Soul Reaper Robe with the emblem of Rune Midgarts +-------------------------- +MATK +75 +-------------------------- +Refine Level +7: +Increases Magical Damage with Shadow element by 7%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Shadow element by additional 7%. +-------------------------- +When equipped with Imperial Magic Manteau, Imperial Magic Boots and Imperial Magic Ring: +Decreases Variable Casting Time by 5%. +MATK +2% +Increases damage of Curse Explosion by 10%. +-------------------------- +Total Refine Level of Imperial Explosion Robe, Imperial Magic Manteau and Imperial Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Curse Explosion by additional 15%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Soul Reaper +# +450086# +Noble Rune Knight Armor with the emblem of Rune Midgarts +-------------------------- +MaxHP +10% +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 20%. +-------------------------- +Refine Level +9: +MaxHP +10% +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +Decreases After Skill Delay by 10%. +MaxHP +5% +Increases damage of Dragon Breath and Dragon Breath - Water by 15%. +-------------------------- +Total Refine Level of Imperial Breath Armor, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 10%. +MaxHP +5% +Increases damage of Dragon Breath and Dragon Breath - Water by additional 15%. +-------------------------- +Type: Armor +Defense: 130 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Rune Knight +# +450087# +Noble Rune Knight Armor with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases Critical Damage by 10%. +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +ASPD +1 +Increases Critical Damage by 5%. +Increases damage of Ignition Break by 15%. +-------------------------- +Total Refine Level of Grace Knight Armor, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +ASPD +1 +Increases Critical Damage by additional 5%. +Increases damage of Ignition Break by additional 15%. +-------------------------- +Type: Armor +Defense: 130 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Rune Knight +# +450088# +Noble Royal Guard Armor with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +ASPD +1 +Increases Ranged Physical Damage by 5%. +Increases damage of Cannon Spear by 15%. +-------------------------- +Total Refine Level of Grace Spear Armor, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +ASPD +1 +Increases Ranged Physical Damage by additional 5%. +Increases damage of Cannon Spear by additional 15%. +-------------------------- +Type: Armor +Defense: 130 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Royal Guard +# +450089# +Noble Royal Guard Armor with the emblem of Rune Midgarts +-------------------------- +MATK +100 +-------------------------- +Refine Level +7: +Increases Magical Damage with Holy element by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Holy element by additional 10%. +-------------------------- +When equipped with Grace Magic Manteau, Grace Magic Boots and Grace Magic Ring: +MATK +25 +Decreases After Skill Delay by 10%. +Increases damage of Genesis Ray by 15%. +-------------------------- +Total Refine Level of Grace Genesis Armor, Grace Magic Manteau and Grace Magic Boots is +27 or higher: +MATK +25 +Decreases After Skill Delay by additional 10%. +Increases damage of Genesis Ray by additional 15%. +-------------------------- +Type: Armor +Defense: 130 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Royal Guard +# +450090# +Noble Ranger Suit with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +Decreases After Skill Delay by 10%. +Increases Critical Damage by 5%. +Increases damage of Sharp Shooting by 15%. +-------------------------- +Total Refine Level of Grace Sharp Suit, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 10%. +Increases Critical Damage by additional 10%. +Increases damage of Sharp Shooting by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Ranger +# +450091# +Noble Ranger Suit with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +Decreases After Skill Delay by 10%. +ATK +2% +Increases damage of Aimed Bolt by 15%. +-------------------------- +Total Refine Level of Grace Aimed Suit, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 10%. +ATK +3% +Increases damage of Aimed Bolt by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Ranger +# +450092# +Noble Performer Suit with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 20% +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +Increases Ranged Physical Damage by 5%. +ATK +2% +Increases damage of Severe Rainstorm by 15%. +-------------------------- +Total Refine Level of Grace Severe Suit, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +Increases Ranged Physical Damage by additional 5%. +ATK +3% +Increases damage of Severe Rainstorm by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Minstrel and Wanderer +# +450093# +Noble Performer Suit with the emblem of Rune Midgarts +-------------------------- +MATK +100 +-------------------------- +Refine Level +7: +Increases Magical Damage with Neutral element by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Neutral element by additional 10%. +-------------------------- +When equipped with Grace Magic Manteau, Grace Magic Boots and Grace Magic Ring: +Decreases Variable Casting Time by 5%. +MATK +2% +Increases damage of Reverberation by 15%. +-------------------------- +Total Refine Level of Grace Reverb Suit, Grace Magic Manteau and Grace Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Reverberation by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Minstrel and Wanderer +# +450094# +Noble Bishop Robe with the emblem of Rune Midgarts +-------------------------- +MATK +100 +-------------------------- +Refine Level +7: +Increases Magical Damage with Holy element by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Holy element by additional 10%. +-------------------------- +When equipped with Grace Magic Manteau, Grace Magic Boots and Grace Magic Ring: +Decreases Variable Casting Time by 5%. +MATK +2% +Increases damage of Adoramus by 15%. +-------------------------- +Total Refine Level of Grace Adora Robe, Grace Magic Manteau and Grace Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Adoramus by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Archbishop +# +450095# +Noble Bishop Robe with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases Critical Damage by 10%. +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +ASPD +1 +ATK +2% +Increases damage of Duple Light by 15%. +-------------------------- +Total Refine Level of Grace Duple Suit, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +ASPD +1 +ATK +3% +Increases damage of Duple Light by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Archbishop +# +450096# +Noble Sura Suit with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +MaxSP +20%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by 10%. +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +Decreases After Skill Delay by 10%. +ATK +2% +Increases damage of Knuckle Arrow by 15%. +-------------------------- +Total Refine Level of Grace Knuckle Suit, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 10%. +ATK +3% +Increases damage of Knuckle Arrow by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Sura +# +450097# +Noble Sura Suit with the emblem of Rune Midgarts +-------------------------- +MaxSP +10% +-------------------------- +Refine Level +7: +MaxHP +5% +-------------------------- +Refine Level +9: +MaxHP +5% +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +MaxHP +5% +ATK +2% +Increases damage of Tiger Cannon by 15%. +-------------------------- +Total Refine Level of Grace Tiger Suit, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +MaxHP +5% +ATK +3% +Increases damage of Tiger Cannon by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Sura +# +450098# +Noble Mechanic Armor with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by 10%. +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +ASPD +1 +Decreases After Skill Delay by 10% +Increases damage of Axe Tornado by 15%. +-------------------------- +Total Refine Level of Grace Tornado Armor, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +ASPD +1 +Decreases After Skill Delay by additional 10% +Increases damage of Axe Tornado by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Mechanic +# +450099# +Noble Mechanic Armor with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +ASPD +1 +Increases Ranged Physical Damage by additional 5%. +Increases damage of Vulcan Arm by 15%. +-------------------------- +If total Refine Level of ^99009Noblesse Vulcan Armor, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +ASPD +1 +Increases Ranged Physical Damage by additional 5% +Increases damage of Vulcan Arm by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Mechanic +# +450100# +Noble Genetic Suit with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 20%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +Decreases Variable Casting Time by additional 5%. +ATK +2% +Increases damage of Cart Cannon by 15%. +-------------------------- +Total Refine Level of Grace Cart Cannon Suit, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +ATK +3% +Increases damage of Cart Cannon by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Genetic +# +450101# +Noble Genetic Suit with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by 10%. +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +ASPD +1 +ATK +2% +Increases damage of Cart Tornado by 15%. +-------------------------- +Total Refine Level of Grace Cart Tornado Suit, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +ASPD +1 +ATK +3% +Increases damage of Cart Tornado by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Genetic +# +450102# +Noble Guillotine Cross Suit with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +Decreases After Skill Delay by 10%. +ATK +2% +Increases damage of Rolling Cutter by 15%. +-------------------------- +Total Refine Level of Grace Rolling Suit, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 10%. +ATK +3% +Increases damage of Rolling Cutter by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Guillotine Cross +# +450103# +Noble Guillotine Cross Suit with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases Critical Damage by 10%. +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +ASPD +1 +Increases Critical Damage by additional 5%. +ATK +2% +-------------------------- +Total Refine Level of Grace Assassin Suit, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +ASPD +1 +Increases Critical Damage by additional 5%. +ATK +3% +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Guillotine Cross +# +450104# +Noble Shadow Chaser Suit with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by 10%. +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +Decreases After Skill Delay by 10%. +ATK +2% +Increases damage of Fatal Menace by 15%. +-------------------------- +Total Refine Level of Grace Fatal Suit, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 10%. +ATK +3% +Increases damage of Fatal Menace by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Shadow Chaser +# +450105# +Noble Shadow Chaser Suit with the emblem of Rune Midgarts +-------------------------- +MATK +100 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases Magical Damage with Fire element by 10%. +-------------------------- +When equipped with Grace Magic Manteau, Grace Magic Boots and Grace Magic Ring: +ASPD +1 +MATK +2% +Increases damage of Meteor Storm by 30%. +-------------------------- +Total Refine Level of Grace Stalker Suit, Grace Magic Manteau and Grace Magic Boots is +27 or higher: +ASPD +1 +MATK +3% +Increases damage of Meteor Storm by additional 30%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Shadow Chaser +# +450106# +Noble Summoner Robe with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 20%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +Decreases After Skill Delay by 10%. +ATK +2% +Increases damage of Picky Peck by 15%. +-------------------------- +Total Refine Level of Grace Picky Robe, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +Decreases After Skill Delay by additional 10%. +ATK +3% +Increases damage of Picky Peck by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Summoner (Doram) +# +450107# +Noble Summoner Robe with the emblem of Rune Midgarts +-------------------------- +MATK +100 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 20%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Neutral element by 10%. +-------------------------- +When equipped with Grace Magic Manteau, Grace Magic Boots and Grace Magic Ring: +Decreases Variable Casting Time by 5%. +MATK +2% +Increases damage of Catnip Meteor by 15%. +-------------------------- +Total Refine Level of Grace Catnip Robe, Grace Magic Manteau and Grace Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Catnip Meteor by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Summoner (Doram) +# +450108# +Noble Rebellion Suit with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +ATK +10% +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +Increases Ranged Physical Damage by 5%. +ATK +2% +Increases damage of Round Trip by 15%. +-------------------------- +Total Refine Level of Grace Trip Suit, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +Increases Ranged Physical Damage by additional 10%. +ATK +3% +Increases damage of Round Trip by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +450109# +Noble Rebellion Suit with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +ATK +10% +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +ASPD +1 +ATK +2% +Increases damage of Fire Rain by 15%. +-------------------------- +Total Refine Level of Grace Fire Rain Suit, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +ASPD +1 +ATK +3% +Increases damage of Fire Rain by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +450110# +Noble Warlock Robe with the emblem of Rune Midgarts +-------------------------- +MATK +100 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 20%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Fire element by 10%. +-------------------------- +When equipped with Grace Magic Manteau, Grace Magic Boots and Grace Magic Ring: +Decreases Variable Casting Time by additional 5%. +MATK +2% +Increases damage of Crimson Rock by 15%. +-------------------------- +Total Refine Level of Grace Crimson Robe, Grace Magic Manteau and Grace Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Crimson Rock by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Warlock +# +450111# +Noble Warlock Robe with the emblem of Rune Midgarts +-------------------------- +MATK +100 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 20%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Water element by 10%. +-------------------------- +When equipped with Grace Magic Manteau, Grace Magic Boots and Grace Magic Ring: +Decreases Variable Casting Time by additional 5%. +MATK +2% +Increases damage of Jack Frost by 15%. +-------------------------- +Total Refine Level of Grace Frost Robe, Grace Magic Manteau and Grace Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Jack Frost by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Warlock +# +450112# +Noble Sorcerer Robe with the emblem of Rune Midgarts +-------------------------- +MATK +100 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 20%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Neutral element by 10%. +-------------------------- +When equipped with Grace Magic Manteau, Grace Magic Boots and Grace Magic Ring: +Decreases Variable Casting Time by additional 5%. +MATK +2% +Increases damage of Psychic Wave by 15%. +-------------------------- +Total Refine Level of Grace Psychic Robe, Grace Magic Manteau and Grace Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Psychic Wave by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Sorcerer +# +450113# +Noble Sorcerer Robe with the emblem of Rune Midgarts +-------------------------- +MATK +100 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 20%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Water element by 10%. +-------------------------- +When equipped with Grace Magic Manteau, Grace Magic Boots and Grace Magic Ring: +Decreases Variable Casting Time by additional 5%. +MATK +2% +Increases damage of Diamond Dust by 15%. +-------------------------- +Total Refine Level of Grace Dust Robe, Grace Magic Manteau and Grace Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Diamond Dust by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Sorcerer +# +450114# +Noble Star Emperor Suit with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +ATK +10% +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +ASPD +1 +ATK +2% +Increases damage of Solar Burst by 15%. +-------------------------- +Total Refine Level of Grace Sun Suit, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +ASPD +1 +ATK +3% +Increases damage of Solar Burst by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Star Emperor +# +450115# +Noble Star Emperor Suit with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of all size enemeies by 10%. +-------------------------- +Refine Level +9: +ATK +10% +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +Increases Physical Damage against enemies of all size enemeies by additional 5%. +ATK +2% +Increases damage of Full Moon Kick by 15%. +-------------------------- +Total Refine Level of Grace Moon Suit, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +Increases Physical Damage against enemies of all size enemeies by additional 5%. +ATK +3% +Increases damage of Full Moon Kick by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Star Emperor +# +450116# +Noble Ninja Suit with the emblem of Rune Midgarts +-------------------------- +MATK +75 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 20%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 10%. +-------------------------- +When equipped with Grace Magic Manteau, Grace Magic Boots and Grace Magic Ring: +Decreases Variable Casting Time by additional 5%. +MATK +2% +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 15%. +-------------------------- +Total Refine Level of Grace Ninja Suit, Grace Magic Manteau and Grace Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Kagerou and Oboro +# +450117# +Noble Ninja Suit with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +ATK +10% +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +Increases Ranged Physical Damage by additional 5%. +ATK +2% +Increases damage of Kunai Splash by 15%. +-------------------------- +Total Refine Level of Grace Kunai Suit, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +Increases Ranged Physical Damage by additional 5%. +ATK +3% +Increases Kunai Splash by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Kagerou and Oboro +# +450118# +Noble Soul Reaper Robe with the emblem of Rune Midgarts +-------------------------- +MATK +100 +-------------------------- +Refine Level +7: +Increases Magical Damage with Shadow element by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Shadow element by additional 10%. +-------------------------- +When equipped with Grace Magic Manteau, Grace Magic Boots and Grace Magic Ring: +Decreases Variable Casting Time by additional 5%. +MATK +2% +Increases damage of Eswhoo by 15%. +-------------------------- +Total Refine Level of Grace Eswhoo Robe, Grace Magic Manteau and Grace Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Eswhoo by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Soul Reaper +# +450119# +Noble Soul Reaper Robe with the emblem of Rune Midgarts +-------------------------- +MATK +100 +-------------------------- +Refine Level +7: +Increases Magical Damage with Shadow element by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Shadow element by additional 10%. +-------------------------- +When equipped with Grace Magic Manteau, Grace Magic Boots and Grace Magic Ring: +Decreases Variable Casting Time by 5%. +MATK +2% +Increases damage of Curse Explosion by 15%. +-------------------------- +Total Refine Level of Grace Explosion Robe, Grace Magic Manteau and Grace Magic Boots is +27 or higher: +Decreases Variable Casting Time by additional 5%. +MATK +3% +Increases damage of Curse Explosion by additional 15%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Soul Reaper +# +450121# +Noble Super Novice Suit with the emblem of Rune Midgarts +-------------------------- +ATK +50 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +9: +MaxHP +5% +-------------------------- +When equipped with Noblesse Attack Manteau, Noblesse Attack Boots and Noblesse Attack Ring: +MaxHP +5% +ATK +2% +Increases Critical Damage by 5%. +-------------------------- +Total Refine Level of Noblesse Super Novice Suit, Noblesse Attack Manteau and Noblesse Attack Boots is +27 or higher: +MaxHP +5% +ATK +3% +Increases Critical Damage by additional 5%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Super Novice +# +450122# +Noble Super Novice Suit with the emblem of Rune Midgarts +-------------------------- +MATK +50 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +9: +MaxHP +5% +-------------------------- +When equipped with Noblesse Magic Manteau, Noblesse Magic Boots and Noblesse Magic Ring: +MaxHP +5% +MATK +2% +Physical attacks have a chance to auto-cast Level 1 Psychic Wave. +-------------------------- +Total Refine Level of Noblesse Super Novice Robe, Noblesse Magic Manteau and Noblesse Magic Boots is +27 or higher: +MaxHP +5% +MATK +3% +Increases damage of Psychic Wave by 5%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +Super Novice +# +450123# +Noble Super Novice Suit with the emblem of Rune Midgarts +-------------------------- +ATK +75 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +MaxHP +7% +-------------------------- +When equipped with Imperial Attack Manteau, Imperial Attack Boots and Imperial Attack Ring: +MaxHP +5% +ATK +2% +Increases Critical Damage by 5%. +-------------------------- +Total Refine Level of Imperial Super Novice Suit, Imperial Attack Manteau and Imperial Attack Boots is +27 or higher: +MaxHP +5% +ATK +3% +Increases Critical Damage by additional 5%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Super Novice +# +450124# +Noble Super Novice Suit with the emblem of Rune Midgarts +-------------------------- +MATK +75 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +9: +MaxHP +7% +-------------------------- +When equipped with Imperial Magic Manteau, Imperial Magic Boots and Imperial Magic Ring: +MaxHP +5% +MATK +2% +Physical attacks have a chance to auto-cast Level 1 Psychic Wave. +-------------------------- +Total Refine Level of Imperial Super Novice Robe, Imperial Magic Manteau and Imperial Magic Boots is +27 or higher: +MaxHP +5% +MATK +3% +Increases damage of Psychic Wave by 7%. +-------------------------- +Type: Armor +Defense: 90 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +Super Novice +# +450125# +Noble Super Novice Suit with the emblem of Rune Midgarts +-------------------------- +ATK +100 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +MaxHP +10% +-------------------------- +When equipped with Grace Attack Manteau, Grace Attack Boots and Grace Attack Ring: +MaxHP +5% +ATK +2% +Increases Critical Damage by 5%. +-------------------------- +Total Refine Level of Grace Super Novice Suit, Grace Attack Manteau and Grace Attack Boots is +27 or higher: +MaxHP +5% +ATK +3% +Increases Critical Damage by additional 5%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Super Novice +# +450126# +Noble Super Novice Suit with the emblem of Rune Midgarts +-------------------------- +MATK +100 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +MaxHP +10% +-------------------------- +When equipped with Grace Magic Manteau, Grace Magic Boots and Grace Magic Ring: +MaxHP +5% +MATK +2% +Physical attacks have a chance to auto-cast Level 1 Psychic Wave. +-------------------------- +Total Refine Level of Grace Super Novice Robe, Grace Magic Manteau and Grace Magic Boots is +27 or higher: +MaxHP +5% +MATK +3% +Increases damage of Psychic Wave by 10%. +-------------------------- +Type: Armor +Defense: 100 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +Super Novice +# +450127# +Combat armor type A improved with the technology of the Varmundt's mansion. +It is said to be able to add abilities by attaching various modules. +-------------------------- +ATK +125 +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 15%). +-------------------------- +When equipped with Automatic Engine Wing Type A: +ATK +50 +-------------------------- +When equipped with Automatic Engine Wing Type B: +Decreases After Skill Delay by 10%. +-------------------------- +Type: Armor +Defense: 135 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +450128# +Combat armor type B improved with the technology of the Varmundt's mansion. +It is said to be able to add abilities by attaching various modules. +-------------------------- +MATK +125 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +When equipped with Automatic Engine Wing Type A: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +When equipped with Automatic Engine Wing Type B: +MATK +50 +-------------------------- +Type: Armor +Defense: 135 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +450131# +Armor once belonging to a fallen angel, imbued with immense power +All Stats +1 +Indestructible +Damage Received from elemental attributes Holy +10% +Damage Received from monster race Angel+15%. +Damage Received from monster race Demon, Demi-Human And Player -5% +-------------------------- +When upgraded to +7 or higher: +MaxHP + 5% +-------------------------- +When upgraded to +9 or higher: +resistance against Demon, Demi-human enemies +5% additionally. +-------------------------- +When upgraded to +11 or higher: +Reduces variable casting time by 8% +-------------------------- +When equipped together with Fallen Angel Wing upgraded to +9 or higher: +Reduces damage taken from all monster races (except Angel) by 3% +-------------------------- +If equipped with Fallen Angel Hairband: Vit+2 Max HP 10% +-------------------------- +Type: Armor +Defense: 50 +Weight: 100 +Armor Level: 1 +Tier Level: 6 +-------------------------- +Requirement: +Base Level 30 +# +450132# +A close that was created all night by a wizard who longed for a magic swordsman to amplify his magical power. +I managed to amplify the magical power, but I couldn't equip the essential sword. +-------------------------- +Increases Fire, Water, Magical Damage with Wind and Earth element by 5%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases Fire, Water, Magical Damage with Wind and Earth element by additional 2%. +-------------------------- +Refine Level +8: +Increases Fire, Water, Magical Damage with Wind and Earth element by additional 3%. +Indestructible in battle +-------------------------- +Refine Level +9: +Increases Fire, Water, Magical Damage with Wind and Earth element by additional 5%. +Random chance to increase damage of Fire Bolt, Cold Bolt, Lightning Bolt and Earth Spike by 100% for 10 seconds when recieving physical damage. +-------------------------- +When equipped with Sorcerer Celia Card: +MATK +5% +Ignores magic defense of all race by 50%. +-------------------------- +Type: Armor +Defense: 45 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +450143# +A dress that was said to have worn twelve-winged angels who were said to have lived in paradise. +-------------------------- +Prevents the user from being knocked back. +-------------------------- +Refine Level +5: +Increases Damage against monsters of Insect and Plant race by 10%. +Increases Damage against Holy and Poison elemental by 10%. +-------------------------- +Refine Level +7: +Increases Damage against monsters of Insect and Plant race by additional 15%. +Increases Damage against Holy and Poison elemental by additional 15%. +-------------------------- +Refine Level +9: +Increases Damage against monsters of Insect and Plant race by additional 15%. +Increases Damage against Holy and Poison elemental by additional 15%. +-------------------------- +Type: Armor +Defense: 120 +Element: Holy +Weight: 40 +-------------------------- +Requirement: +Base Level 90 +# +450144# +A robe that has been baptized with saintly power. +-------------------------- +MaxHP +10% +MaxSP +10% +MDEF +10 +-------------------------- +Refine Level +9: +Decreases Physical and Magical Damage taken from Fish race by 15%. +-------------------------- +Refine Level +11: +Bypass 20% of hard magic defense of Fish race. +-------------------------- +When equipped with Illusion Combo Battle Glove: +ATK +30 +-------------------------- +Refine Level of Illusion Combo Battle Glove and Illusion Saint Robe each is +7 or higher: +ATK +5% +-------------------------- +Total Refine Level of entire set at least +18: +Increases damage of Sky Net Blow by 20%. +-------------------------- +Total Refine Level of entire set at least +22: +Decreases After Skill Delay by 10%. +-------------------------- +Type: Armor +Defense: 60 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +Acolyte and Merchant classes +# +450145# +A suit of armor that is enchanted with the water elemental. +-------------------------- +MaxHP +10% +-------------------------- +For each Refine Level: +MaxHP +125 +-------------------------- +Refine Level +7: +DEF +50 +-------------------------- +Refine Level +9: +Physical attacks have a chance to decreases damage taken from Water elemental attacks by 15% for 5 seconds. +-------------------------- +Type: Armor +Defense: 50 +Weight: 220 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +Swordsman and Merchant classes +# +450146# +Heavy mail made entirely of polished, metal chain links. +-------------------------- +MaxHP +10% +MaxSP +10% +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +For each 3 Refine Level: +Increases Physical Damage against enemies of Fire and Water elemental by 4%. +-------------------------- +Refine Level +9: +ATK +10% +-------------------------- +When equipped with Illusion Katar of Frozen Icicle: +ATK +5% + +Refine Level of Illusion Katar of Frozen Icicle and Illusion Chain Mail each is +7 or higher: +Critical +5 + +Total Refine Level of entire set at least +18: +Increases Critical Damage by 15%. + +Total Refine Level of entire set at least +22: +Increases Physical Damage against enemies of Fire elemental enemies and Insect race by 10%. +-------------------------- +Type: Armor +Defense: 70 +Weight: 330 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 120 +Swordsman, Merchant and Thief classes +# +450147# +A type A combat armor made from illusion technology. +There are various modules that can be installed to enhance it. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +100 +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +When equipped with Illusion Engine Wing Type A (Bound): +ATK +50 +-------------------------- +When equipped with Illusion Engine Wing Type B (Bound): +Decreases After Skill Delay by 10%. +-------------------------- +Type: Armor +Defense: 105 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +450148# +A type B combat armor made from illusion technology. +There are various modules that can be installed to enhance it. +-------------------------- +Cannot be refined normally. +-------------------------- +MATK +100 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Illusion Engine Wing Type A (Bound): +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +When equipped with Illusion Engine Wing Type B (Bound): +MATK +50 +-------------------------- +Type: Armor +Defense: 105 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +450149# +It is designed to facilitate the operation of more powerful suits and various magic through continuous research and improvement. +-------------------------- +Increases incoming Healing effectiveness by 10%. +Decreases SP Consumption by 10%. +-------------------------- +MaxHP +3% +STR +3 +AGI +3 +-------------------------- +For each Refine Level: +ATK +10 +-------------------------- +For each 2 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +9: +Increases Melee and Ranged Physical Damage by 10%. +-------------------------- +Refine Level +11: +Increases Attack Speed (Decreases After Attack Delay by additional 7%). +-------------------------- +Refine Level +13: +ATK +60 +-------------------------- +Type: Armor +Defense: 120 +Weight: 90 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 230 +# +450150# +Uniforms of Geffen wizards. It has the ability to improve magical power efficiency when chanting spells. +-------------------------- +Increases incoming Healing effectiveness by 10%. +Decreases SP Consumption by 10%. +-------------------------- +MaxHP +3% +INT +3 +DEX +3 +-------------------------- +For each Refine Level: +MATK +10 +-------------------------- +For each 2 Refine Levels: +Decreases Variable Casting Time by 2%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 10%. +-------------------------- +Refine Level +11: +Decreases Variable Casting Time by additional 7%. +-------------------------- +Refine Level +13: +MATK +60 +-------------------------- +Type: Armor +Defense: 110 +Weight: 80 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 230 +# +450151# +Cotton shirt for testing. +-------------------------- +Type: Armor +Defense: 0 +Weight: 0 +Armor Level: 2 +-------------------------- +Requirement: None +# +450164# +A newly created armor based on Aegir's armor. +-------------------------- +MaxHP +10% +MaxSP +5% +-------------------------- +Indestructible in battle +-------------------------- +Refine Level +9: +MaxHP +5% +MaxSP +2% +-------------------------- +When equipped with Aegirnian Helm: +Decreases damage taken from Fish and Demi-Human race by 10%. + +For each Refine Level of Aegirnian Armor: +Decreases damage taken from Fish and Demi-Human race by additional 1%. +-------------------------- +Type: Armor +Defense: 80 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 140 +# +450166# +A robe faintly infused with the magic of stars. +-------------------------- +MATK +125 +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Increases Magical Damage with every element by 10%. +-------------------------- +Type: Armor +Defense: 105 +Weight: 50 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 240 +# +450167# +A suit faintly infused with the magic of stars. +-------------------------- +ATK +75, MATK +75 +-------------------------- +For each 2 Refine Levels: +ATK +10, MATK +10 +-------------------------- +Refine Level +9: +Increases Attach Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by 10%. +-------------------------- +Type: Armor +Defense: 135 +Weight: 150 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 240 +# +450168# +A armor faintly infused with the magic of stars. +-------------------------- +ATK +125 +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +Refine Level +9: +MaxHP +7% +-------------------------- +Refine Level +11: +Increases Melee Physical Damage by 10%. +-------------------------- +Type: Armor +Defense: 175 +Weight: 250 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 240 +# +450169# +A armor that received the energy of physics among the power of stars. +The physical ability will be increased. +-------------------------- +POW +1 +ATK +125 +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +Refine Level +9: +ATK +5% +-------------------------- +Refine Level +11: +Increases Melee Physical Damage by 20%. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +2 and ATK +1% per 2 Refine Levels, Melee Physical Damage +1% per 3 Refine Levels. +[Grade C]: ATK +3 and ATK +1% per 2 Refine Levels, Melee Physical Damage +1% per 3 Refine Levels +[Grade B]: ATK +2% per 2 Refine Levels, Melee Physical Damage +1% per 3 Refine Levels, P.ATK +1 per 4 Refine Levels +[Grade A]: ATK +3% per 2 Refine Levels, Melee Physical Damage +2% per 3 Refine Levels, P.ATK +2 per 4 Refine Levels +-------------------------- +Type: Armor +Defense: 175 +Weight: 250 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 240 +# +450170# +A armor that received the energy of stamina among the power of stars. +The physical defense and resilience will be increased. +-------------------------- +STA +1 +MaxHP +10% +-------------------------- +For each 2 Refine Levels: +DEF +15 +-------------------------- +Refine Level +9: +Increases Healing skills effectiveness by 10%. +-------------------------- +Refine Level +11: +MaxHP +15% +-------------------------- +[Bonus by Grade] +[Grade D]: DEF +5 and Healing skills effectiveness +2% per 2 Refine Levels, RES +1 per 4 Refine Levels. +[Grade C]: DEF +7 and Healing skills effectiveness +3% per 2 Refine Levels, RES +2 per 4 Refine Levels. +[Grade B]: MaxHP +1% per 3 Refine Levels, RES +3 per 4 Refine Levels. +[Grade A]: MaxHP +2% per 3 Refine Levels, RES +4 per 4 Refine Levels. +-------------------------- +Type: Armor +Defense: 175 +Weight: 250 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 240 +# +450171# +A suit that received the energy of agility among the power of stars. +Speed and ranged physical ability will be increased. +-------------------------- +CON +1 +ATK +125 +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by 20%. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +2, increases Attack Speed (After Attack Delay -1%) and ATK +1% per 2 Refine Levels. +[Grade C]: ATK +3, increases Attack Speed (After Attack Delay -1%) and ATK +2% per 2 Refine Levels. +[Grade B]: Increases Attack Speed (After Attack Delay -2%) per 2 Refine Levels, Ranged Physical Damage +1% per 3 Refine Levels, P.ATK +1 per 4 Refine Levels. +[Grade A]: Increases Attack Speed (After Attack Delay -2%) per 2 Refine Levels, Ranged Physical Damage +2% per 3 Refine Levels, P.ATK +2 per 4 Refine Levels. +-------------------------- +Type: Armor +Defense: 135 +Weight: 150 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 240 +# +450172# +A suit that received the energy of luck among the power of stars. +Critical ability will be increased. +-------------------------- +CRT +1 +ATK +100 +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +Refine Level +9: +Critical +5 +-------------------------- +Refine Level +11: +Increases Critical Damage by 20%. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +1 per 2 Refine Levels, Critical Damage +2% and Critical +1 per 3 Refine Levels. +[Grade C]: ATK +2 per 2 Refine Levels, Critical Damage +3% and Critical +2 per 3 Refine Levels. +[Grade B]: Critical Damage +5% per 3 Refine Levels, CRI.Rate +1, P.ATK +1 per 4 Refine Levels. +[Grade A]: Critical Damage +7% per 3 Refine Levels, CRI.Rate +1, P.ATK +2 per 4 Refine Levels. +-------------------------- +Type: Armor +Defense: 135 +Weight: 150 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 240 +# +450173# +A robe that received the energy of spell among the power of stars. +Magic ability will be increased. +-------------------------- +SPL +1 +MATK +125 +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +Refine Level +9: +MATK +5% +-------------------------- +Refine Level +11: +Increases Magical Damage with every element by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: MATK +2, MATK +1% per 2 Refine Levels, Magical Damage with every element +3% per 3 Refine Levels. +[Grade C]: MATK +3, MATK +1% per 2 Refine Levels, Magical Damage with every element +3% per 3 Refine Levels. +[Grade B]: MATK +2% per 2 Refine Levels, Magical Damage with every element +5% per 3 Refine Levels, S.MATK +1 per 4 Refine Levels. +[Grade A]: MATK +3% per 2 Refine Levels, Magical Damage with every element +5% per 3 Refine Levels, S.MATK +2 per 4 Refine Levels. +-------------------------- +Type: Armor +Defense: 105 +Weight: 50 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 240 +# +450174# +A robe that received the energy of wisdom among the power of stars. +Magic defense and recovery ability will be increased. +-------------------------- +WIS +1 +MATK +125 +-------------------------- +For each 2 Refine Levels: +MaxSP +2% +Increases Healing skills effectiveness by 1%. +-------------------------- +Refine Level +9: +Increases SP Recovery Rate by 30%. +-------------------------- +Refine Level +11: +Decreases Variable Casting Time by 10%. +-------------------------- +[Bonus by Grade] +[Grade D]: SP Recovery Rate +2%, Healing skills effectiveness +2% per 2 Refine Levels, M.RES +1 per 3 Refine Levels. +[Grade C]: SP Recovery Rate +3%, Healing skills effectiveness +2% per 2 Refine Levels, M.RES +2 per 3 Refine Levels. +[Grade B]: MaxSP +1% per 2 Refine Levels, MRES +2 per 3 Refine Levels, H.PLUS +2% per 4 Refine Levels. +[Grade A]: MaxSP +2% per 2 Refine Levels, MRES +3 per 3 Refine Levels, H.PLUS +3% per 4 Refine Levels. +-------------------------- +Type: Armor +Defense: 105 +Weight: 50 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 240 +# +450177# +A suit given to those who have been recognized by the Gray Wolf Clan. +-------------------------- +ATK +130 +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 15%). +-------------------------- +When equipped with Gray Wolf Manteau: +ATK +50 +-------------------------- +When equipped with Gray Wolf Scarf: +Decreases After Skill Delay by 10%. +-------------------------- +Type: Armor +Defense: 160 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 190 +# +450178# +A robe given to those who have been recognized by the Gray Wolf Clan. +-------------------------- +MATK +130 +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +When equipped with Gray Wolf Manteau: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +When equipped with Gray Wolf Scarf: +MATK +50 +-------------------------- +Type: Armor +Defense: 160 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 190 +# +450179# +The dress worn by Celine. +There are marks that look like old bloodstains. +-------------------------- +MATK +50 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 10%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +12: +Decreases After Skill Delay by additional 5%. +-------------------------- +When equipped with Evil Thread Glove: +MATK +10% +Perfect HIT +10% +Increases Magical Damage against enemies of every size by 15%. +Physical attacks have a random chance to increase magical damage against enemies of every race, except Players, by 15% for 10 seconds. +-------------------------- +When equipped with Celine's Ribbon: +For each Refine Level of Celine's Ribbon and Celine's Dress: +Increases Magical Damage with Holy, Shadow,Poison and Ghost element by 1%. + +Total Refine Level of entire set at least +19: +MATK +15% + +Total Refine Level of entire set at least +23: +Increases Magical Damage against enemies of every element by 20%. +-------------------------- +When equipped with Celine's Brooch: +For each Refine Level of Celine's Dress: +MATK +10 + +Refine Level of Celine's Dress is +9 or higher: +Decreases Variable Casting Time by 5%. + +Refine Level of Celine's Dress is +11 or higher: +Increases Water, Wind, Earth, Magical Damage with Fire and Neutral element by 10%. + +Refine Level of Celine's Dress is +13 or higher: +Indestructible in battle +-------------------------- +Type: Armor +Defense: 40 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +450182# +Armor that grants agility for sprinting. +-------------------------- +VIT +5 +-------------------------- +Increases Natural HP Recovery Rate by 20%. +-------------------------- +Refine Level +7: +Increases Natural HP Recovery Rate by additional 20%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 5%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by additional 7%. +-------------------------- +When equipped with Illusion Sprint Shoes: +ATK +10% + +Refine Level of Illusion Sprint Mail and Illusion Sprint Shoes is +7 or higher: +ATK +70 + +Total Refine Level of entire set at least +18: +Increases Physical Damage by 15%. + +Total Refine Level of entire set at least +22: +Decreases Fixed Casting Time by 0.7 seconds. +Increases Physical Damage against monsters of Boss class by 25%. +-------------------------- +When equipped with Illusion Sprint Ring and Illusion Sprint Glove: +MaxHP +15%, MaxSP +15%. +-------------------------- +Type: Armor +Defense: 40 +Weight: 150 +-------------------------- +Requirement: +Base Level 130 +# +450183# +A suit given to members of the Paradise Group. +-------------------------- +MaxHP +150 +MaxSP +20 +-------------------------- +For each 5 Base Level: +MaxHP +30 (Up to Base Level 100) +-------------------------- +Base Level at least 30: +MaxHP +80, MaxSP +20. +-------------------------- +Base Level at least 45: +MaxHP +150, MaxSP +30. +-------------------------- +Base Level at least 85: +MaxHP +250, MaxSP +50. +-------------------------- +Type: Armor +Defense: 30 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +450184# +A robe given to members of the Paradise Group. +-------------------------- +MaxHP +100 +MaxSP +50 +-------------------------- +For each 5 Base Level: +MaxHP +20 (Up to Base Level 100) +-------------------------- +Base Level at least 30: +MaxHP +60, MaxSP +30. +-------------------------- +Base Level at least 45: +MaxHP +100, MaxSP +50. +-------------------------- +Base Level at least 85: +MaxHP +150, MaxSP +70. +-------------------------- +Type: Armor +Defense: 20 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +450185# +A high-quality robe given to members of the Paradise Group. +-------------------------- +MaxHP +1500 +MaxSP +150 +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +For each 10 Base Level: +ATK +5 (Up to Base Level 150) +-------------------------- +Base Level at least 105: +ATK +3% +-------------------------- +Base Level at least 110: +Decreases After Skill Delay by additional 5%. +-------------------------- +Base Level at least 120: +MaxHP +3% +-------------------------- +Base Level at least 130: +ATK +40 +-------------------------- +Type: Armor +Defense: 50 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +450186# +A high-quality robe given to members of the Paradise Group. +-------------------------- +MaxHP +1000 +MaxSP +250 +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +For each 10 Base Level: +MATK +5 (Up to Base Level 150) +-------------------------- +Base Level at least 105: +MATK +3% +-------------------------- +Base Level at least 110: +Decreases After Skill Delay by additional 5%. +-------------------------- +Base Level at least 120: +MaxHP +3% +-------------------------- +Base Level at least 130: +MATK +40 +-------------------------- +Type: Armor +Defense: 35 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +450191# +A uniform worn by a court chef with severe tuberculosis. When he was preaching about cooking, no one could stop his talk. +It was strengthened due to Varmundt's rune engraving. +-------------------------- +Increases Variable Casting Time of all skills by 15%. +Skill casting cannot be interrupted. +-------------------------- +Refine Level +7: +MATK +50 +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Increases Magical Damage with Neutral and Fire element by 20%. +-------------------------- +When equipped with Engraved Orlean's Glove: +For each 3 Refine Levels of Engraved Orlean's Gown: +MATK +1% + +Refine Level of Engraved Orlean's Gown is +9 or higher: +Decreases Variable Casting Time by 10%. + +Refine Level of Engraved Orlean's Gown is +11 or higher: +Increases Magical Damage with Water, Wind and Earth element by 20%. + +Refine Level of Engraved Orlean's Gown is +13 or higher: +Indestructible in battle +-------------------------- +Type: Armor +Defense: 50 +Weight: 30 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +450192# +It is an armor made from the scales of naga, and the sharpness and brilliance of the armor make you dazzle. If you get too close, the scales are likely to injure you. +It was strengthened due to Varmundt's rune engraving. +-------------------------- +Reflects 5% of the damage recieved from melee physical attacks. +-------------------------- +MRES +3 +-------------------------- +Refine Level +7: +Reflects additional 5% of the damage recieved from melee physical attacks. +-------------------------- +Refine Level +9: +Increases Melee Physical Damage by 10%. +-------------------------- +Refine Level +11: +Random chance to transform into Naga for 7 seconds when dealing physical attacks. +During tranformation: +P.ATK +15 +-------------------------- +When equipped with Engraved Naga's Scale Shield: +Increases Melee Physical Damage by additional 10%. +-------------------------- +Type: Armor +Defense: 450 +Weight: 100 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +450198# +A cotton shirt specially made to experience refining at the Ragnarok Festival. You can participate in the refinement experience and exchange products according to the successful refine level. If refine level is +7 or higher, you can apply for a prize! +-------------------------- +[Ragfest Supporter]rag_fes,110,302,0,101,0, +-------------------------- +Type: Armor +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +450199# +Armor engraved with Varmundt's runic magic. +It doesn't look like it has any special power, but it has magical power. +-------------------------- +Type: Armor +Defense: 45 +Weight: 100 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +450200# +Armor engraved with Varmundt's Fire Rune magic. +It is stamped with power. +-------------------------- +For each 25 base STR: +POW +1 +-------------------------- +Refine Level +7: +ATK +5% +-------------------------- +Refine Level +9: +Increases Critical Damage by 10%. +-------------------------- +Refine Level +11: +Increases Melee Physical Damage by 10%. +-------------------------- +[Bonus by Grade] +[Grade D] ATK +3% +[Grade C] POW +3, ATK +3%. +[Grade B] Melee Physical Damage +10%. +[Grade A] After Skill Delay of all skills -10%. +-------------------------- +Type: Armor +Defense: 45 +Weight: 100 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +450201# +Armor engraved with Varmundt's Glade Rune magic. +It is stamped with physical strength. +-------------------------- +For each 25 base VIT: +STA +1 +-------------------------- +Refine Level +7: +MaxHP +5% +-------------------------- +Refine Level +9: +Increases Healing recieved by 10%. +-------------------------- +Refine Level +11: +MaxHP +10% +-------------------------- +[Bonus by Grade] +[Grade D] MaxHP +3% +[Grade C] STA +3, MaxHP +3%. +[Grade B] After Skill Delay of all skills -5%. +[Grade A] After Skill Delay of all skills -10%. +-------------------------- +Type: Armor +Defense: 45 +Weight: 100 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +450202# +Armor engraved with Varmundt's Death Rune magic. +It is engraved with magic. +-------------------------- +For each 25 base INT: +SPL +1 +-------------------------- +Refine Level +7: +MATK +5% +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Increases Magical Damage with every element by 10%. +-------------------------- +[Bonus by Grade] +[Grade D] MATK +3% +[Grade C] SPL +3, MATK +3%. +[Grade B] Magical Damage with every element +10%. +[Grade A] After Skill Delay of all skills -10%. +-------------------------- +Type: Armor +Defense: 45 +Weight: 100 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +450203# +Armor engraved with Varmundt's Ice Rune magic. +It is a mark of concentration. +-------------------------- +For each 25 base DEX: +CON +1 +-------------------------- +Refine Level +7: +ATK +5% +-------------------------- +Refine Level +9: +Increases Critical Damage by 10%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by 10%. +-------------------------- +[Bonus by Grade] +[Grade D] ATK +3% +[Grade C] CON +3, ATK +3%. +[Grade B] Ranged Physical Damage +10%. +[Grade A] After Skill Delay of all skills -10%. +-------------------------- +Type: Armor +Defense: 45 +Weight: 100 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +450206# +An armor made by grinding the flower petals that grow in Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +ATK +130 +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 15%). +-------------------------- +Refine Level +9: +P.ATK +2 +-------------------------- +When equipped with Snow Flower Manteau: +ATK +50 +-------------------------- +When equipped with Snow Flower Muffler: +Decreases After Skill Delay by 10%. +-------------------------- +Type: Armor +Defense: 150 +Weight: 80 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +450207# +A robe made by grinding the flower petals that grow in Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +130 +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +S.MATK +2 +-------------------------- +When equipped with Snow Flower Manteau: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +When equipped with Snow Flower Muffler: +MATK +50 +-------------------------- +Type: Armor +Defense: 150 +Weight: 80 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +450217# +A suit that embodies the figure of a Phreeoni. +It is difficult to expect defense power from this armor. +-------------------------- +CON +3, ATK +100 +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 4 Refine Levels: +P.ATK +1 +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 10%. +-------------------------- +Refine Level +9: +Perfect HIT +15% +-------------------------- +Refine Level +11: +Decreases After Skill Delay of all skills by 15%. +Increases Ranged Physical Damage by additional 15%. +-------------------------- +When equipped with Phreeoni Card: +For each 2 Refine Levels of equipped Armor: +Increases Ranged Physical Damage by 3%. + +For each 3 Refine Levels of equipped Armor: +Increases Physical Damage against monsters of Boss class by 8%. +-------------------------- +When equipped with Phreeoni Card: +P.ATK +10, C.RATE +5 + +For each 3 Refine Levels of equipped Armor: +Increases Critical Damage by 4%. +-------------------------- +When Pet Phreeoni is active: +ATK +7%, ASPD +2 +-------------------------- +[Additional Options by Grade] +[Grade D]: ATK +40, ATK +5% +[Grade C]: CON +5 +[Grade B]: Physical Damage against enemies of every size +15%. +[Grade A]: P.ATK +7 +-------------------------- +Type: Armor +Defense: 10 +Weight: 150 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 200 +# +460005# +A shield that has improved the ability to reflect magic as a shield for the great wizard. +It is very thin because of the characteristic of being an anti-magic shield. +-------------------------- +Increases Magical Damage with every element by 3%. +-------------------------- +MDEF +15 +-------------------------- +Refine Level +7: +MATK +25 +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +12: +Increases Magical Damage with every element by additional 7%. +-------------------------- +When equipped with Mental Condenser or Force Condenser: +MaxHP +10% +Decreases After Skill Delay by 5%. +-------------------------- +Type: Shield +Defense: 50 +Weight: 50 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 230 +# +460006# +The complete edition of the encyclopedia of Prontera Mo Publishing, which is famous for its hard edges. +Now, not just the corners, but every side of the book is incredibly heavy and hard. +-------------------------- +ATK +3%, +MDEF +15 +-------------------------- +Refine Level +7: +ATK +25 +Critical +7 +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 5%. +-------------------------- +Refine Level +12: +ATK +7% +Increases Critical Damage by 10%. +-------------------------- +When equipped with Mental Condenser or Force Condenser: +MaxHP +10% +Decreases After Skill Delay by 5%. +-------------------------- +Type: Shield +Defense: 150 +Weight: 150 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 230 +# +460010# +A replica of the shield used by the hero who defeated the witch. +Although the shape can be reproduced, it shines brilliantly and cannot have the power to convey that it has prevented all kinds of magic. +-------------------------- +MDEF +15 +-------------------------- +Decreases damage taken from Normal and Boss class by 10%. +-------------------------- +When equipped by Rune Knight: +Decreases damage taken from Normal and Boss class by additional 10%. + +Refine Level of Demon Hunting Shield is +7 or higher: +Decreases damage taken from Normal and Boss class by additional 10%. + +Refine Level of Demon Hunting Shield is +9 or higher: +Decreases damage taken from Normal and Boss class by additional 10%. +-------------------------- +When compounded with Alice Card: +The effect of Demon Hunting Shield will not be activated. +-------------------------- +When compounded with Gaster Card (jRO): +The effect of Demon Hunting Shield will not be activated. +-------------------------- +When equipped with Ordre Card, Paiement Card and Blut Haase Card: +The effect of Demon Hunting Shield will not be activated. +-------------------------- +Indestructible in battle +-------------------------- +Type: Shield +Defense: 170 +Weight: 120 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +460012# +Shield for testing. +-------------------------- +Type: Shield +Defense: 0 +Weight: 50 +Armor Level: 2 +-------------------------- +Requirement: None +# +460013# +A shield with regrets that couldn't be kept. +-------------------------- +MaxHP +5% +MaxSP +5% +-------------------------- +For each 3 Refine Levels: +DEF +50, MDEF +10 +-------------------------- +[Bonus by Grade] +[Grade D]: Increases damage of Shield Shooting by 5%. +[Grade C]: Increases damage of Shield Shooting by 8%. +[Grade B]: Increases damage of Shield Shooting by 15, POW +1, SPL +1 +-------------------------- +When equipped with Poenitentia Gladius or Poenitentia Asta: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases damage taken from against enemies of all elements by 10%. +-------------------------- +Type: Shield +Defense: 120 +Weight: 150 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 230 +Imperial Guard +# +460017# +A shield made to simply block enemy attacks. +-------------------------- +ASPD +2 +-------------------------- +For each 2 Refine Levels: +Perfect HIT +3% (Up to Refine Level 12) +-------------------------- +Type: Shield +Defense: 60 +Weight: 60 +-------------------------- +Requirement: +Base Level 120 +# +460018# +A shield with a thin layer of silver and iron mixed from an normal guard. +-------------------------- +Decreases Variable Casting Time by 7%. +-------------------------- +For each 2 Refine Levels: +Decreases After Skill Delay by 1%. +(Up to Refine Level 12) +-------------------------- +Type: Shield +Defense: 60 +Weight: 30 +-------------------------- +Requirement: +Base Level 120 +# +460020# +A stuffed toy that Piamette conveniently uses for attack and defense? +Apparently it's moving... +-------------------------- +ATK +5%, MATK +5%. +ASPD +3 +-------------------------- +For each 2 Refine Levels: +ATK +2%, MATK +2%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +9: +Increases Melee and Ranged Physical Damage by 7%. +Increases Magical Damage with every element by 7%. +-------------------------- +Refine Level +12: +Skill casting cannot be interrupted. +Critical +15 +-------------------------- +[Bonus by Grade] +[Grade D]: Decreases damage taken from enemies of every element by 10%. +[Grade C]: POW +2, SPL +2. +[Grade B]: S.MATK +2, P.ATK +2 +[Grade A]: Decreases After Skill Delay by 5%. +-------------------------- +Type: Shield +Defense: 0 +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 160 +# +460021# +A wide round iron plate that seems to have been carrying food. Well polished and shiny. +It was strengthened due to Varmundt's rune engraving. +-------------------------- +MRES +2 +-------------------------- +Refine Level +7: +MRES +3, S.MATK +1. +-------------------------- +Refine Level +11: +MATK +5% +Increases Magical Damage with every element by 5%. +-------------------------- +When equipped with Engraved Orlean's Glove: +Decreases Variable Casting Time by 5%. +S.MATK +2 + +Refine Level of Engraved Orlean's Glove is +9 or higher: +Decreases Variable Casting Time by additional 5%. +SPL +1 +-------------------------- +Type: Shield +Defense: 75 +Weight: 100 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +460022# +A shield made from the scales of naga, it is hard and meticulous. If you touch it wrongly, it looks like a veil. +It was strengthened due to Varmundt's rune engraving. +-------------------------- +MRES +3 +-------------------------- +Ignores physical defense of Normal class enemies by 5%. +-------------------------- +For each Refine Level: +Reflects 1% of the damage recieved from melee physical attacks. +-------------------------- +For each 2 Refine Levels: +Ignores physical defense of Normal class enemies by additional 1%. +-------------------------- +Type: Shield +Defense: 35 +Weight: 50 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +470000# +Special boots prepared for your rapid growth. +It is specialized for melee physical attacks. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +20 +FLEE +20 +-------------------------- +For each 3 Refine Levels: +MaxHP +1% +-------------------------- +Refine Level +7: +MaxHP +5% +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +470001# +Special shoes prepared for your rapid growth. +It is specialized in some elemental magic attacks. +-------------------------- +Cannot be refined normally. +-------------------------- +MATK +20 +FLEE +20 +-------------------------- +For each 3 Refine Levels: +MaxHP +400 +-------------------------- +Refine Level +7: +MaxHP +1800 +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +470002# +Special shoes prepared for your rapid growth. +It is specialized in some elemental magic attacks. +-------------------------- +Cannot be refined normally. +-------------------------- +MATK +20 +FLEE +20 +-------------------------- +For each 3 Refine Levels: +MaxHP +400 +-------------------------- +Refine Level +7: +MaxHP +1800 +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Type: Shoes +Defense: 18 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +470003# +Special boots prepared for your rapid growth. +It is specialized for ranged physical attacks. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +20 +HIT +15 +-------------------------- +For each 3 Refine Levels: +MaxSP +50 +-------------------------- +Refine Level +7: +MaxSP +300 +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Type: Shoes +Defense: 18 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +470016# +Aristocratic shoes with the emblem of Rune Midgarts. +-------------------------- +ATK +10 +HIT +10 +-------------------------- +Refine Level +7: +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +470017# +Aristocratic shoes with the emblem of Rune Midgarts. +-------------------------- +MATK +10 +FLEE +10 +-------------------------- +Refine Level +7: +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 5%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +470018# +Aristocratic shoes with the emblem of Rune Midgarts. +-------------------------- +ATK +15 +HIT +15 +-------------------------- +Refine Level +7: +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 7%. +-------------------------- +Type: Shoes +Defense: 25 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +# +470019# +Aristocratic shoes with the emblem of Rune Midgarts. +-------------------------- +MATK +15 +FLEE +15 +-------------------------- +Refine Level +7: +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 7%. +-------------------------- +Type: Shoes +Defense: 25 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +# +470020# +Aristocratic shoes with the emblem of Rune Midgarts. +-------------------------- +ATK +20 +HIT +20 +-------------------------- +Refine Level +7: +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 10%. +-------------------------- +Type: Shoes +Defense: 30 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +470021# +Aristocratic shoes with the emblem of Rune Midgarts. +-------------------------- +MATK +20 +FLEE +20 +-------------------------- +Refine Level +7: +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 10%. +-------------------------- +Type: Shoes +Defense: 30 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +470022# +Combat boots A type improved with the technology of Varmundt's mansion. +It is said to be able to add abilities by attaching various modules. +-------------------------- +MaxSP +250 +-------------------------- +For each 2 Refine Levels: +MaxSP +20 +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 7%. +-------------------------- +When equipped with Automatic Armor Type A: +ATK +7% +-------------------------- +When equipped with Automatic Armor Type B: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Type: Shoes +Defense: 70 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +470023# +Combat boots B type improved with the technology of Varmundt's mansion. +It is said to be able to add abilities by attaching various modules. +-------------------------- +MaxSP +250 +-------------------------- +For each 2 Refine Levels: +MaxSP +20 +-------------------------- +Refine Level +7: +Increases Magical Damage with every element by 7%. +-------------------------- +When equipped with Automatic Armor Type A: +MaxSP +7% +-------------------------- +When equipped with Automatic Armor Type B: +MATK +7% +-------------------------- +Type: Shoes +Defense: 70 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +470027# +Shoes said to be worn by Rebellions during military operations. +-------------------------- +MDEF +10 +MaxHP +3% +MaxSP +3% +-------------------------- +Enables the use of Level 1 Improve Concentration. +-------------------------- +Decreases Rich's Coin skill cooldown by 3 seconds. +-------------------------- +When Fallen Angel is mastered: +Increases Attack Speed (Decreases After Attack Delay by 20%). +Decreases SP Consumption of Fire Dance by 20. +-------------------------- +When Anti-Material Blast mastered: +Bypass 100% of hard defense of Normal, Boss and Demi-Human race when performing a physical attack. +auto-cast Level 1 Rich's Coin when using Hammer of God skill. +-------------------------- +For each level of Banishing Buster skill: +Decreases Fixed Casting Time of Banishing Buster by 20%. +Increases damage of Banishing Buster by 60%. +-------------------------- +For each level of Fire Rain skill: +Increases Physical Damage against enemies of every size by 4%. +Increases damage of Fire Rain by 50%. +-------------------------- +For each level of Howling Mine skill: +Decreases After Skill Delay by 8%. +Increases damage of Howling Mine by 40%. +-------------------------- +Refine Level +5: +MaxHP +7% +MaxSP +7% +-------------------------- +Refine Level +7: +MaxHP +10% +MaxSP +10% +-------------------------- +Type: Shoes +Defense: 12 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +470033# +A pair of boots enchanted with the 4 elemental powers. +-------------------------- +Increases damage of Fire Bolt, Cold Bolt, Lightning Bolt and Earth Spike by 15%. +-------------------------- +For each Refine Level: +Increases damage of Fire Bolt, Cold Bolt, Lightning Bolt and Earth Spike by 2%. +-------------------------- +Refine Level +7: +MATK +20 +-------------------------- +Refine Level +9: +Random chance to increase INT by 70 and MATK by 10% for 5 seconds when dealing physical damage. +-------------------------- +Refine Level +11: +Increases Magical Damage with Water, Wind, Earth and Fire element by 10%. +-------------------------- +When equipped with Elemental Sword: +ASPD +2 +MATK +70 + +Refine Level of Elemental Sword is +10 or higher: +Increases Magical Damage with every element by 10%. +-------------------------- +Type: Shoes +Defense: 10 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 99 +# +470054# +Combat boots A type born from Illusion's technology. +It is said to be able to add abilities by attaching various modules. +-------------------------- +Cannot be refined normally. +-------------------------- +MaxSP +200 +-------------------------- +For each 2 Refine Levels: +MaxSP +20 +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Illusion Armor Type A (Bound): +ATK +5% +-------------------------- +When equipped with Illusion Armor Type B (Bound): +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Type: Shoes +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +470055# +Combat boots B type born from Illusion's technology. +It is said to be able to add abilities by attaching various modules. +-------------------------- +Cannot be refined normally. +-------------------------- +MaxSP +200 +-------------------------- +For each 2 Refine Levels: +MaxSP +20 +-------------------------- +Refine Level +7: +Increases Magical Damage with every element by 5%. +-------------------------- +When equipped with Illusion Armor Type A (Bound): +MaxSP +5% +-------------------------- +When equipped with Illusion Armor Type B (Bound): +MATK +5% +-------------------------- +Type: Shoes +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +470066# +A pair of comfortable shoes for sprinting, tying the laces to keep your feet in place. +-------------------------- +AGI +5 +-------------------------- +Increases Natural SP Recovery Rate by 20%. +-------------------------- +Refine Level +7: +Increases Natural SP Recovery Rate by additional 20%. +-------------------------- +Refine Level +9: +MaxHP +5%, MaxSP +5%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +When equipped with Illusion Sprint Ring: +Drain 500 HP per second. +Physical attacks have a certain chance to increase STR by 150 for 10 seconds. +-------------------------- +When equipped with Illusion Sprint Glove: +Drain 50 SP per second. +Physical attacks have a certain chance to increase AGI by 150 for 10 seconds. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 70 +-------------------------- +Requirement: +Base Level 130 +# +470067# +A pair of boots given to members of the Paradise Group. +-------------------------- +Increases Melee and Ranged Physical Damage by 3%. +-------------------------- +For each 5 Base Level: +Critical +1 (Up to Base Level 100) +-------------------------- +Base Level at least 30: +Increases Melee and Ranged Physical Damage by additional 3%. +-------------------------- +Base Level at least 45: +Increases Melee and Ranged Physical Damage by additional 4%. +-------------------------- +Base Level at least 85: +Decreases Fixed Casting Time of skills by 0.3 seconds. +-------------------------- +Type: Shoes +Defense: 8 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +470068# +A pair of shoes given to members of the Paradise Group. +-------------------------- +Increases Magical Damage with every element by 3%. +-------------------------- +For each 5 Base Level: +MATK +2 (Up to Base Level 100) +-------------------------- +Base Level at least 30: +Increases Magical Damage with every element by additional 3%. +-------------------------- +Base Level at least 45: +Increases Magical Damage with every element by additional 4%. +-------------------------- +Base Level at least 85: +Decreases Fixed Casting Time of skills by 0.3 seconds. +-------------------------- +Type: Shoes +Defense: 4 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +470069# +A pair of high-quality boots given to members of the Paradise Group. +-------------------------- +Increases Melee and Ranged Physical Damage by 10%. +Decreases Fixed Casting Time of skills by 0.3 seconds. +-------------------------- +For each 10 Base Level: +MaxHP +50, MaxSP +20 (Up to Base Level 150) +-------------------------- +Base Level at least 105: +Critical +15 +-------------------------- +Base Level at least 110: +Increases Critical Damage by 5%. +-------------------------- +Base Level at least 120: +Increases Critical Damage by additional 5%. +-------------------------- +Base Level at least 130: +ATK +5% +-------------------------- +Type: Shoes +Defense: 14 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +470070# +A newly made shoe based on Aegir's shoes. +-------------------------- +MaxHP +10% +MaxSP +5% +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +When equipped with Aegirnian Helm: +Increases damage against Water and Wind elemental by 10%. + +For each Refine Level of Aegirnian Shoes: +Increases damage against Water and Wind elemental by additional 1%. +-------------------------- +Type: Shoes +Defense: 35 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 140 +# +470071# +Old shoes that have been eroded by an unknown force. +Whenever the wearer exerts force, he can feel the boots react. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +MaxHP +120 +MaxSP +8 +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +11: +Physical attacks have a random chance to increase STR by 175 for 10 seconds. +-------------------------- +Refine Level +13: +Increases Melee Physical Damage by 7%. +-------------------------- +[Bonus by Grade] +[Grade D]: Physical attacks have a random chance to increase STR by 25 for 10 seconds. +[Grade C]: Physical attacks have a random chance to increase STR by 25 for 10 seconds. +-------------------------- +Type: Shoes +Defense: 60 +Weight: 70 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 230 +# +470072# +Old shoes that have been eroded by an unknown force. +Whenever the wearer concentrates, he can feel the boots react. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +MaxHP +110 +MaxSP +10 +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +11: +Physical and magical attacks have a random chance to increase DEX by 175 for 10 seconds. +-------------------------- +Refine Level +13: +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +[Bonus by Grade] +[Grade D]: Physical and magical attacks have a random chance to increase DEX by 25 for 10 seconds. +[Grade C]: Physical and magical attacks have a random chance to increase DEX by 25 for 10 seconds. +-------------------------- +Type: Shoes +Defense: 60 +Weight: 70 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 230 +# +470073# +Old shoes that have been eroded by an unknown force. +Whenever the wearer feels pain, he can feel the boots react. +-------------------------- +For each 2 Refine Levels: +ATK +10 +MATK +10 +-------------------------- +For each 3 Refine Levels: +MaxHP +150 +MaxSP +15 +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 5%. +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +11: +Physical and magical attacks have a random chance to increase VIT by 175 for 10 seconds. +-------------------------- +Refine Level +13: +Decreases After Skill Delay by 5%. +-------------------------- +[Bonus by Grade] +[Grade D]: Physical and magical attacks have a random chance to increase VIT by 25 for 10 seconds. +[Grade C]: Physical and magical attacks have a random chance to increase VIT by 25 for 10 seconds. +-------------------------- +Type: Shoes +Defense: 65 +Weight: 75 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 230 +# +470074# +Old shoes that have been eroded by an unknown force. +Whenever the wearer uses magic, he can feel the boots react. +-------------------------- +For each 2 Refine Levels: +MATK +15 +Increases Healing skills effectiveness by 2%. +-------------------------- +For each 3 Refine Levels: +MaxHP +80 +MaxSP +20 +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 7%. +-------------------------- +Refine Level +11: +Magical attacks have a random chance to increase INT by 175 for 10 seconds. +-------------------------- +Refine Level +13: +Increases Magical Damage with every element by 7%. +-------------------------- +[Bonus by Grade] +[Grade D]: Magical attacks have a random chance to increase INT by 25 for 10 seconds. +[Grade C]: Magical attacks have a random chance to increase INT by 25 for 10 seconds. +-------------------------- +Type: Shoes +Defense: 50 +Weight: 65 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 230 +# +470076# +Old shoes that have been eroded by an unknown force. +Whenever the wearer makes agile movements, he can feel the boots react. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +MaxHP +120 +MaxSP +8 +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +11: +Physical attacks have a random chance to increase AGI by 175 for 10 seconds. +-------------------------- +Refine Level +13: +Increases Melee and Ranged Physical Damage by 4%. +-------------------------- +[Bonus by Grade] +[Grade D]: Physical attacks have a random chance to increase AGI by 25 for 10 seconds. +[Grade C]: Physical attacks have a random chance to increase AGI by 25 for 10 seconds. +-------------------------- +Type: Shoes +Defense: 60 +Weight: 70 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 230 +# +470077# +Old shoes that have been eroded by an unknown force. +Whenever the wearer is lucky, he can feel the boots react. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +MaxHP +100 +MaxSP +8 +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +11: +Physical attacks have a random chance to increase LUK by 175 for 10 seconds. +-------------------------- +Refine Level +13: +Critical +7 +Increases Critical Damage by 7%. +ATK +7% +-------------------------- +[Bonus by Grade] +[Grade D]: Physical attacks have a random chance to increase LUK by 25 for 10 seconds. +[Grade C]: Physical attacks have a random chance to increase LUK by 25 for 10 seconds. +-------------------------- +Type: Shoes +Defense: 65 +Weight: 72 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 230 +# +470087# +A pair of boots given to those who have been recognized by the Gray Wolf Clan. +-------------------------- +MaxSP +300 +-------------------------- +For each 2 Refine Levels: +MaxSP +50 +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 7%. +-------------------------- +When equipped with Gray Wolf Suit: +ATK +7% +-------------------------- +When equipped with Gray Wolf Robe: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Type: Shoes +Defense: 70 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 190 +# +470088# +A pair of shoes given to those who have been recognized by the Gray Wolf Clan. +-------------------------- +MaxSP +250 +-------------------------- +For each 2 Refine Levels: +MaxSP +20 +-------------------------- +Refine Level +7: +Increases Magical Damage with every element by 7%. +-------------------------- +When equipped with Gray Wolf Suit: +MaxSP +7% +-------------------------- +When equipped with Gray Wolf Robe: +MATK +7% +-------------------------- +Type: Shoes +Defense: 70 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 190 +# +470093# +A pair of high-quality shoes given to members of the Paradise Group. +-------------------------- +Increases Magical Damage with every element by 10%. +Decreases Fixed Casting Time of skills by 0.3 seconds. +-------------------------- +For each 10 Base Level: +MaxHP +40, MaxSP +30 (Up to Base Level 150) +-------------------------- +Base Level at least 105: +Decreases Variable Casting Time by 10%. +-------------------------- +Base Level at least 110: +Increases Magical Damage against enemies of every element by 5%. +-------------------------- +Base Level at least 120: +Increases Magical Damage against enemies of every element by additional 5%. +-------------------------- +Base Level at least 130: +MATK +5% +-------------------------- +Type: Shoes +Defense: 10 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +470094# +An improved version of the boots said to have been worn by great heroes. +It resonates with the improved hero's armor. +-------------------------- +MaxHP +1500, MaxSP +150. +-------------------------- +Base Level at least 210: +P.ATK +1, S.MATK +1. +-------------------------- +For each 3 Refine Levels: +MaxHP +1%, MaxSP +1%. +-------------------------- +Refine Level +7: +ATK +5%, MATK +5%. +-------------------------- +Refine Level +9: +Critical +5, Perfect Hit +10% +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +11: +Decreases Fixed Casting Time by 0.8 seconds. +Decreases After Skill Delay by 5%. +-------------------------- +[Bonus by Grade] +[Grade D]: RES +50, MRES +50 +[Grade C]: Damage against enemies of every size +10%. +[Grade B]: STA +5, WIS +5 +[Grade A]: P.ATK +5, S.MATK +3, Refine Level +13: Fixed Casting Time of all skills -0.2 seconds. +-------------------------- +Type: Shoes +Defense: 15 +Weight: 60 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 190 +# +470107# +Shoes imprinted with Varmundt's runic magic. +It doesn't look like it has any special power, but it has magical power. +-------------------------- +Type: Shoes +Defense: 25 +Weight: 70 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +470108# +Boots engraved with Varmundt's Glade Rune magic. +It is a stamp of physical strength. +-------------------------- +Refine Level +7: +MaxHP +5% +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 5%. +Decreases Fixed Casting Time by 0.3 seconds. +-------------------------- +Refine Level +11: +MaxHP +5% +Decreases Fixed Casting Time by additional 0.2 seconds. +-------------------------- +[Bonus by Grade] +[Grade D] MaxHP +2% +[Grade C] Fixed Casting Time of all skills -0.3 seconds. +[Grade B] MaxHP +2%, Variable Casting Time of all skills -5%. +[Grade A] Fixed Casting Time of all skills -0.2 seconds. +-------------------------- +Type: Shoes +Defense: 45 +Weight: 100 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +470109# +Boots engraved with Varmundt's Flame Rune magic. +It is stamped of power. +-------------------------- +Refine Level +7: +ATK +5% +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 5%. +Decreases Fixed Casting Time by 0.3 seconds. +-------------------------- +Refine Level +11: +Increases Melee Physical Damage by 5%. +Decreases Fixed Casting Time by additional 0.2 seconds. +-------------------------- +[Bonus by Grade] +[Grade D] ATK +2% +[Grade C] Fixed Casting Time of all skills -0.3 seconds. +[Grade B] ATK +2%, P.ATK +2 +[Grade A] Fixed Casting Time of all skills -0.2 seconds. +-------------------------- +Type: Shoes +Defense: 45 +Weight: 100 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +470110# +Boots engraved with Varmundt's Death Rune magic. +It is engraved of magic. +-------------------------- +Refine Level +7: +MATK +5% +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 5%. +Decreases Fixed Casting Time by 0.3 seconds. +-------------------------- +Refine Level +11: +Increases Magical Damage with every element by 5%. +Decreases Fixed Casting Time by additional 0.2 seconds. +-------------------------- +[Bonus by Grade] +[Grade D] MATK +2% +[Grade C] Fixed Casting Time of all skills -0.3 seconds. +[Grade B] MATK +2%, S.MATK +2 +[Grade A] Fixed Casting Time of all skills -0.2 seconds. +-------------------------- +Type: Shoes +Defense: 45 +Weight: 100 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +470111# +Boots engraved with Varmundt's Ice Rune magic. +It is a mark of concentration. +-------------------------- +Refine Level +7: +ATK +5% +-------------------------- +Refine Level +9: +Increases Critical Damage by 5%. +Decreases Fixed Casting Time by 0.3 seconds. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by 5%. +Decreases Fixed Casting Time by additional 0.2 seconds. +-------------------------- +[Bonus by Grade] +[Grade D] ATK +2% +[Grade C] Fixed Casting Time of all skills -0.3 seconds. +[Grade B] ATK +2%, P.ATK +2 +[Grade A] C.RATE +1 +-------------------------- +Type: Shoes +Defense: 45 +Weight: 100 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +470115# +A pair of boots made by grinding the flower petals that grow in Isgard. +You can enchant them with Ice Flower Magic Stones for special abilities. +-------------------------- +MaxHP +8%, MaxSP +4% +-------------------------- +For each 2 Refine Levels: +MaxSP +1% +-------------------------- +Refine Level +7: +Increases Melee and Ranged Physical Damage by 7%. +-------------------------- +Refine Level +9: +P.ATK +2 +-------------------------- +When equipped with Snow Flower Armor: +ATK +7% +-------------------------- +When equipped with Snow Flower Robe: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Type: Shoes +Defense: 70 +Weight: 50 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +470116# +A pair of shoes made by grinding the flower petals that grow in Isgard. +You can enchant them with Ice Flower Magic Stones for special abilities. +-------------------------- +MaxHP +6%, MaxSP +6% +-------------------------- +For each 2 Refine Levels: +MaxSP +1% +-------------------------- +Refine Level +7: +Increases Magical Damage with every element by 7%. +-------------------------- +Refine Level +9: +S.MATK +2 +-------------------------- +When equipped with Snow Flower Armor: +Decreases Variable Casting Time by 7%. +-------------------------- +When equipped with Snow Flower Robe: +MATK +7% +-------------------------- +Type: Shoes +Defense: 70 +Weight: 50 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +470122# +Leather shoes made with the motif of a Moonlight. +-------------------------- +MaxHP +1500, MaxSP +150 +-------------------------- +Refine Level +7: +MATK +3% +-------------------------- +Refine Level +9: +MATK +5%, S.MATK +5 +-------------------------- +Refine Level +11: +Decreases Fixed Casting Time of all skills by 0.8 seconds. +Decreases Variable Casting Time of all skills by 10%. +-------------------------- +When equipped with Moonlight Card: +Decreases Fixed Casting Time of all skills by 0.2 seconds. +S.MATK +15 +-------------------------- +When equipped with Sealed Moonlight Card: +Decreases Fixed Casting Time of all skills by 0.2 seconds. +-------------------------- +When equipped with Furious Moonlight Card: +For each 3 Refine Levels of equipped Shoes: +Increases Magical Damage with every element by 4%. +-------------------------- +[Additional Options by Grade] +[Grade D]: RES +30, MRES +30 +[Grade C]: Magical Damage against enemies of every size +15% +[Grade B]: SPL +3 +[Grade A]: S.MATK +7 +-------------------------- +Type: Shoes +Defense: 15 +Weight: 60 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 200 +# +480000# +Special manteau prepared for your rapid growth. +It is specialized for melee physical attacks. +-------------------------- +Cannot be refined normally. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%.) +-------------------------- +For each 3 Refine Levels: +Critical +2 +-------------------------- +Refine Level +7: +Increases Critical Damage by 5%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Type: Garment +Defense: 30 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +480001# +Special muffler prepared for your rapid growth. +It is specialized in some elemental magic attacks. +-------------------------- +Cannot be refined normally. +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +For each 3 Refine Levels: +MATK +4 +-------------------------- +Refine Level +7: +Increases Water, Wind, Earth, Magical Damage with Fire and Neutral element by 5%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Type: Garment +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +480002# +Special muffler prepared for your rapid growth. +It is specialized in some elemental magic attacks. +-------------------------- +Cannot be refined normally. +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +For each 3 Refine Levels: +MATK +4 +-------------------------- +Refine Level +7: +Increases Magical Damage with Ghost, Holy, Shadow, Undead and Poison element by 5%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Type: Garment +Defense: 25 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +480003# +Special manteau prepared for your rapid growth. +It is specialized for ranged physical attacks. +-------------------------- +Cannot be refined normally. +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +For each 3 Refine Levels: +ATK +2 +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Type: Garment +Defense: 30 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +480012# +A noble cloak engraved with the emblem of Rune Midgarts. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 3%). +-------------------------- +Refine Level +7: +Decreases After Skill Delay by 5%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by 5%. +-------------------------- +Type: Garment +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +480014# +A noble cloak engraved with the emblem of Rune Midgarts. +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 5%. +-------------------------- +Type: Garment +Defense: 20 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +480016# +A noble cloak engraved with the emblem of Rune Midgarts. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +7: +Decreases After Skill Delay by 5%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by 7%. +-------------------------- +Type: Garment +Defense: 25 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +# +480017# +A noble cloak engraved with the emblem of Rune Midgarts. +-------------------------- +Decreases Variable Casting Time by 7%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 7%. +-------------------------- +Type: Garment +Defense: 25 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +# +480018# +A noble cloak engraved with the emblem of Rune Midgarts. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +7: +Decreases After Skill Delay by 5%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by 10%. +-------------------------- +Type: Garment +Defense: 30 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +480019# +A noble cloak engraved with the emblem of Rune Midgarts. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 10%. +-------------------------- +Type: Garment +Defense: 30 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +480020# +Combat engine A type improved with the technology of Varmundt's mansion. +It is said to be able to add abilities by attaching various modules. +-------------------------- +MaxHP +1500 +-------------------------- +For each 2 Refine Levels: +MaxHP +100 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +When equipped with Automatic Leg Type A: +Increases Critical Damage by 15%. +-------------------------- +When equipped with Automatic Leg Type B: +Decreases Variable Casting Time by 15%. +-------------------------- +Type: Garment +Defense: 70 +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +480021# +Combat engine B type improved with the technology of Varmundt's mansion. +It is said to be able to add abilities by attaching various modules. +-------------------------- +MaxHP +1500 +-------------------------- +For each 2 Refine Levels: +MaxHP +100 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 7%. +-------------------------- +When equipped with Automatic Leg Type A: +Increases Ranged Physical Damage by 7%. +-------------------------- +When equipped with Automatic Leg Type B: +Increases Magical Damage with every element by 15%. +-------------------------- +Type: Garment +Defense: 70 +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +480045# +A cload said to have been possessed by a sage who served a great king. +Absolute defense techniques have been woven within it. +-------------------------- +MDEF +10 +-------------------------- +Enables the use of Level 3 Heaven's Drive. +-------------------------- +Decreases damage taken from Demi-Human players by 5%. +-------------------------- +For each 18 combined sum of base STR and LUK: +ATK +15 +Decreases After Skill Delay by 1%. +Decreases damage taken from Shadow and Undead elemental attacks by 7%. +-------------------------- +For each 18 combined sum of base AGI and VIT: +Increases Attack Speed (Decreases After Attack Delay by 2%). +MaxHP +2% +Decreases damage taken from Fire and Water elemental attacks by 7%. +-------------------------- +For each 18 combined sum of base INT and DEX: +MATK +15 +Decreases Variable Casting Time of skills by 1%. +Decreases damage taken Earth from and Wind elemental attacks by 7%. +-------------------------- +Increases damage taken from Holy elemental attacks by 7%. +-------------------------- +Type: Garment +Defense: 25 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +480052# +It is said that when you tie the ribbon, you can feel the breath of the gods. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480054# +A manteau made from gray crow feathers that were enchanted through the power of Morrigan, whose incarnation is the gray crow. +-------------------------- +LUK +5 +FLEE +20 +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Demon, Fish, Insect and Demihuman race by 5%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Demon, Fish, Insect and Demihuman race by additional 10%. +-------------------------- +Type: Garment +Defense: 9 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +All Jobs except Novice +# +480056# +Fallen angel's black wings sway in the sky +The fluttering and softly falling feathers make you feel as if your wings are alive. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480058# +Golden wings of a golden angel swaying in the sky. +Feathers fluttering and falling gently make the wings feel as if they are alive. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480061# +A muffler made of a fabric woven with the magical power of a strange dragon born from the wrath of the goddess of the earth. +It is said that even the gods turn into animals and run away. +-------------------------- +MaxHP +2%, MaxSP +2% +-------------------------- +Decreases damage taken from Players by 5%. +-------------------------- +Increases Ranged Physical Damage by 2%. +-------------------------- +When Level 5 Unlimited Humming Voice is learned: +Recovers 2 SP when physical attacking. +ATK +20% +-------------------------- +For each Level of Frigg's Song: +Increases Ranged Physical Damage by additional 4%. +Increases damage of Severe Rainstorm by 2%. +-------------------------- +When Level 5 Gloomy Shyness is learned: +Decreases After Skill Delay by 10%. +Decreases Severe Rainstorm skill cooldown by 2 seconds. +-------------------------- +Refine Level +5: +MaxHP +3%, MaxSP +3% +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +7: +MaxHP +5%, MaxSP +5% +Increases Ranged Physical Damage by additional 5%. +-------------------------- +When equipped with Fire Arrow: +Decreases damage taken from Fire elemental attacks by 75%. +-------------------------- +When equipped with Crystal Arrow: +Decreases damage taken from Water elemental attacks by 75%. +-------------------------- +When equipped with Arrow of Wind: +Decreases damage taken from Wind elemental attacks by 75%. +-------------------------- +When equipped with Stone Arrow: +Decreases damage taken from Earth elemental attacks by 75%. +-------------------------- +When equipped with Bow of Storm: +When Level 5 Gloomy Shyness is learned: +Increases Severe Rainstorm skill cooldown by 2 seconds. +-------------------------- +When equipped with Elven Bow and Scaraba High Heels: +Refine Level of Scaraba High Heels is +7 or higher: +When Level 5 Gloomy Shyness is learned: +Increases Severe Rainstorm skill cooldown by 2 seconds. +-------------------------- +Type: Garment +Defense: 12 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +480062# +Combat engine A type created with Illusion's technology. +It is said to be able to add abilities by attaching various modules. +-------------------------- +Cannot be refined normally. +-------------------------- +MaxHP +1000 +-------------------------- +For each 2 Refine Levels: +MaxHP +100 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +When equipped with Illusion Leg Type A (Bound): +Increases Critical Damage by 10%. +-------------------------- +When equipped with Illusion Leg Type B (Bound): +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Garment +Defense: 50 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +480063# +Combat engine B type created with Illusion's technology. +It is said to be able to add abilities by attaching various modules. +-------------------------- +Cannot be refined normally. +-------------------------- +MaxHP +1000 +-------------------------- +For each 2 Refine Levels: +MaxHP +100 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 5%. +-------------------------- +When equipped with Illusion Leg Type A (Bound): +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Illusion Leg Type B (Bound): +Increases Magical Damage with every element by 10%. +-------------------------- +Type: Garment +Defense: 50 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +480065# +An improved manteau that was one of the prizes of the Geffen Magic Tournament. +Although it is not an officially approved improvement, there is a phrase that says that the safety is excellent. +-------------------------- +MaxHP +1500 +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +9: +Increases Melee Physical Damage by 5%. +-------------------------- +Refine Level +11: +Increases Melee Physical Damage by additional 7%. +-------------------------- +When equipped with Anti-Conjurer Suit: +ATK +50 + +Refine Level of Anti-Conjurer Suit is +11 or higher: +Increases Melee Physical Damage by 5%. +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +When equipped with Magic Protector Robe: +ATK +50 + +Refine Level of Magic Protector Robe is +11 or higher: +Increases Melee Physical Damage by 5%. +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Garment +Defense: 75 +Weight: 70 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 230 +# +480066# +An improved muffler that was one of the prizes of the Geffen Magic Tournament. +Although it is not an officially approved improvement, there is a phrase that says that the safety is excellent. +-------------------------- +MaxHP +1500 +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +For each 3 Refine Levels: +Decreases Variable Casting Time by 2%. +-------------------------- +Refine Level +9: +MATK +7% +Increases Healing skills effectiveness by 15%. +-------------------------- +Refine Level +11: +Increases Magical Damage with every element by 7%. +-------------------------- +When equipped with Magic Protector Robe: +MATK +50 + +Refine Level of Magic Protector Robe is +11 or higher: +Increases all elemental magical damage by 5%. +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Anti-Conjurer Suit: +MATK +50 + +Refine Level of Anti-Conjurer Suit is +11 or higher: +Increases all elemental magical damage by 5%. +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Type: Garment +Defense: 70 +Weight: 65 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 230 +# +480067# +An improved manteau exclusively for anti-magic, not only has excellent magic defense, but also greatly improves the wearer's physical ability. +-------------------------- +MaxHP +1200 +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by additional 7%. +-------------------------- +When equipped with Anti-Conjurer Suit: +ATK +50 + +Refine Level of Anti-Conjurer Suit is +11 or higher: +Increases Ranged Physical Damage by 5%. +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +When equipped with Magic Protector Robe: +ATK +50 + +Refine Level of Magic Protector Robe is +11 or higher: +Increases Ranged Physical Damage by 5%. +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Garment +Defense: 70 +Weight: 65 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 230 +# +480068# +An improved muffler exclusively for anti-magic, not only has excellent magic defense, but also greatly improves the wearer's physical ability. +-------------------------- +MaxHP +2000 +-------------------------- +For each 2 Refine Levels: +MaxHP +1% +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 1%). +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +9: +Increases damage against all sized monsters by 3%. +-------------------------- +Refine Level +11: +Random chance to recover 350 HP and 20 SP per second for 10 seconds when dealing damage. +-------------------------- +When equipped with Anti-Conjurer Suit: +ATK +50 + +Refine Level of Anti-Conjurer Suit is +11 or higher: +ATK +5% +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +When equipped with Magic Protector Robe: +MATK +50 + +Refine Level of Magic Protector Robe is +11 or higher: +MATK +5% +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Garment +Defense: 90 +Weight: 80 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 230 +# +480069# +Angel's wings sway in the sky. +The fluttering and softly falling feathers make you feel as if your wings are alive. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480071# +A vial for clothing made to be worn. +It is decorated with a blue rope, as if it was used to seal something. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480083# +A new cloak based on Aegir's cloak. +-------------------------- +MaxHP +10% +MaxSP +5% +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Aegirnian Helm: +Increases Damage against monsters of Fish and Demi-Human race by 10%. + +For each Refine Level of Aegirnian Manteau: +Increases Damage against monsters of Fish and Demi-Human race by additional 1%. +-------------------------- +Type: Garment +Defense: 40 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 140 +# +480090# +A scarf given to those who have been recognized by the Gray Wolf Clan. +-------------------------- +MaxHP +1500 +-------------------------- +For each 2 Refine Levels: +MaxHP +100 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 7%. +-------------------------- +When equipped with Gray Wolf Boots: +Increases Ranged Physical Damage by 7%. +-------------------------- +When equipped with Gray Wolf Shoes: +Increases Magical Damage with every element by 15%. +-------------------------- +Type: Garment +Defense: 70 +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 190 +# +480091# +A manteau given to those who have been recognized by the Gray Wolf Clan. +-------------------------- +MaxHP +2500 +-------------------------- +For each 2 Refine Levels: +MaxHP +150 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +When equipped with Gray Wolf Boots: +Increases Critical Damage by 15%. +-------------------------- +When equipped with Gray Wolf Shoes: +Decreases Variable Casting Time by 15%. +-------------------------- +Type: Garment +Defense: 70 +Weight: 90 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 190 +# +480093# +A costume scepter emanating with a majestic aura. +It is decorated with a crown that matches the symbol of the monarch. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480095# +A huge costume stuffed ragdoll rabbit. +It feels like you're being energized by the soft energy from the white rabbit. +-------------------------- +Collection Effect +Receive 1% less damage from Small size monster +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480096# +A coat worn by adventurers to withstand the cold. An essential item in cold weather. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480097# +Snow powder for clothes that sparkles and scatters snow. +Wearing this in any heatwave will instantly cool you down. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480103# +A manteau given to members of the Paradise Group. +-------------------------- +HIT +15 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 20%. +-------------------------- +For each 5 Base Level: +HIT +1 (Up to Base Level 100) +-------------------------- +Base Level at least 30: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Base Level at least 45: +Increases Attack Speed (Decreases After Attack Delay by additional 5%). +-------------------------- +Base Level at least 85: +ASPD +1 +-------------------------- +Type: Garment +Defense: 8 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +480104# +A muffler given to members of the Paradise Group. +-------------------------- +FLEE +20 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 20%. +-------------------------- +For each 5 Base Level: +FLEE +1 (Up to Base Level 100) +-------------------------- +Base Level at least 30: +Decreases Variable Casting Time by 5%. +-------------------------- +Base Level at least 45: +Decreases Variable Casting Time by additional 5%. +-------------------------- +Base Level at least 85: +Decreases Variable Casting Time by additional 5%. +-------------------------- +Type: Garment +Defense: 4 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +480105# +A high-quality manteau given to members of the Paradise Group. +-------------------------- +HIT +35 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 20%. +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +For each 10 Base Level: +Decreases Variable Casting Time by 1%. +(Up to Base Level 150) +-------------------------- +Base Level at least 105: +Increases Attack Speed (Decreases After Attack Delay by additional 5%). +-------------------------- +Base Level at least 110: +Decreases Variable Casting Time by additional 5%. +-------------------------- +Base Level at least 120: +Decreases After Skill Delay by 5%. +-------------------------- +Base Level at least 130: +Decreases After Skill Delay by additional 5%. +-------------------------- +Type: Garment +Defense: 14 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +480106# +A high-quality muffler given to members of the Paradise Group. +-------------------------- +FLEE +40 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 20%. +Decreases Variable Casting Time by 15%. +-------------------------- +For each 10 Base Level: +Increases Attack Speed (Decreases After Attack Delay by 1%). +(Up to Base Level 150) +-------------------------- +Base Level at least 105: +Increases Attack Speed (Decreases After Attack Delay by additional 5%). +-------------------------- +Base Level at least 110: +Decreases Variable Casting Time by additional 5%. +-------------------------- +Base Level at least 120: +Decreases After Skill Delay by 5%. +-------------------------- +Base Level at least 130: +Decreases After Skill Delay by additional 5%. +-------------------------- +Type: Garment +Defense: 10 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +# +480107# +A costume double sword made after the sword of an ancient king. +It is known for the sword that praises the splendor of the ancient king and the sword that is said to have destroyed thousands of countries. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480110# +A costume backpack full of useful adventure sets for Doram. +Let's go on an adventure together with the kittens in the side pockets. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480118# +A decorative sword made after General Daehyon's weapon. +Daehyon's momentum seems to be flowing. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 25. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480122# +A costume with feathers that cannot be missed at the Samba Carnival. +It's a very large feather, and it's sure to attract attention when worn! +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 24. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480123# +Wings of Nydhog, the guardian dragon of... Yggdrasil +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 Can be exchanged Can be exchanged for Landverse Enchant Stone Box 1 +-------------------------- +Type: Costume +Position Garment +Weight: 0 +-------------------------- +Requirements: None +# +480124# +A multi-purpose wing that has been further improved for the purpose of high efficiency and high output. +A physical process is installed. +Compatible with various items. +-------------------------- +For each 2 Refine Levels: +ATK +5, ATK +1%. +-------------------------- +For each 3 Refine Levels: +Increases Physical Damage against enemies of every size by 3%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Decreases damage taken from Neutral elemental attacks by 7%. +-------------------------- +Refine Level +11: +Increases Physical Damage by 10%. +-------------------------- +When equipped with Deep Blue Sunglasses[1]: +ATK +7% +Decreases Variable Casting Time by 15%. +-------------------------- +When equipped with Victory Wing Ears[1]: +ATK +7% +Decreases After Skill Delay by 15%. +-------------------------- +When equipped with Battle Processor[1]: +ATK +7% +Increases Physical Damage by 5%. +-------------------------- +Type: Garment +Defense: 38 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +480125# +A multi-purpose wing that has been further improved for the purpose of high efficiency and high output. +A magical process is installed. +Compatible with various items. +-------------------------- +For each 2 Refine Levels: +MATK +5, MATK +1%. +-------------------------- +For each 3 Refine Levels: +Increases Magical Damage against enemies of every size by 3%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 7%. +-------------------------- +Refine Level +9: +Decreases damage taken from Neutral elemental attacks by 7%. +-------------------------- +Refine Level +11: +Increases Magical Damage with every element by 10%. +-------------------------- +When equipped with Deep Blue Sunglasses[1]: +MATK +7% +Decreases Variable Casting Time by 15%. +-------------------------- +When equipped with Victory Wing Ears[1]: +MATK +7% +Decreases After Skill Delay by 15%. +-------------------------- +When equipped with Battle Processor[1]: +MATK +7% +Increases Magical Damage with every element by 5%. +-------------------------- +Type: Garment +Defense: 38 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +480126# +A very big costume doll. +Go out for a swim while wearing this and watch everyone in the water scatter! +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480129# +An costume ice cream that looks colorful and delicious. +In the hot summer, you want to eat it without realizing it. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 24. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480130# +Party on your back! Bringing the party wherever you go. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480131# +Costume flames swirling and blazing under your feet. +As it is for decoration, you do not have to worry about burns even if you touch it. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480136# +A magic sword said to have been used by a powerful magic swordsman in the past. +Part of that power still resides in it. +-------------------------- +Base Level at least 210: +P.ATK +3, S.MATK +3. +-------------------------- +Base Level at least 230: +P.ATK +2, S.MATK +2. +-------------------------- +For each 3 Refine Levels: +Increases Melee and Ranged Physical Damage by 2%. +Increases Magical Damage with every element by 2%. +-------------------------- +For each 5 Refine Levels: +Increases Damage against enemies of Medium and Large size by 5%. +-------------------------- +Refine Level +9: +Ignores physical and magical defense of monsters of Dragon and Angel race by 20%. +-------------------------- +Refine Level +11: +Ignores physical and magical defense of monsters of Dragon and Angel race by additional 10%. +-------------------------- +When equipped with Thanatos' Anguish: +Decreases Variable Casting Time by 10%. + +Refine Level of Thanatos' Anguish is +7 or higher: +Increases Damage against enemies of Holy and Shadow element by 15%. + +Refine Level of Thanatos' Anguish is +9 or higher: +Increases Damage against enemies of Dragon and Angel race by 15%. + +Refine Level of Thanatos' Anguish is +11 or higher: +Increases Damage against enemies of Medium and Large size by additional 15%. +-------------------------- +When equipped with either Red Force Pendant or Blue Mental Pendant: +ATK +50, MATK +50. +Increases Damage against enemies of Medium and Large size by additional 15%. +-------------------------- +Type: Garment +Defense: 60 +Weight: 50 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 180 +# +480137# +From the front, it looks like wings, but in reality, it is a Costume Backpack with Filir on its back. +If you like Filir, you can't resist it. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480138# +A cloak that greatly increases your chances of surviving in any situation. +It was strengthened due to Varmundt's rune engraving. +-------------------------- +VIT +10, CON +3. +MaxHP +5% +-------------------------- +Type: Garment +Defense: 10 +Weight: 55 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +480144# +Pauldrons engraved with Varmundt's runic magic. +It doesn't look like it has any special power, but it has magical power. +-------------------------- +Type: Garment +Defense: 15 +Weight: 30 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +480145# +A manteau engraved with Varmundt's Glade Rune magic. +It is a stamp of physical strength. +-------------------------- +Refine Level +7: +MaxHP +5% +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +MaxHP +3% +-------------------------- +When equipped with Varmundt Glade Rune Armor and Varmundt Glade Rune Boots: +MaxHP +10% +Decreases damage taken from enemies of Earth element by 10%. +-------------------------- +[Bonus by Grade] +[Grade D] MaxHP +3% +[Grade C] MaxHP +3%, RES +2, MRES +2. +[Grade B] After Skill Delay of all skills -5%. +[Grade A] After Skill Delay of all skills -10%. +-------------------------- +Type: Garment +Defense: 45 +Weight: 100 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +480146# +A manteau engraved with Varmundt's Fire Rune magic. +It is stamped with power. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Critical Damage by 10%. +-------------------------- +Refine Level +11: +ATK +5% +-------------------------- +When equipped with Varmundt Fire Rune Armor and Varmundt Fire Rune Boots: +Increases Melee Physical Damage by 5%. +Decreases Variable Casting Time by additional 5%. +-------------------------- +[Bonus by Grade] +[Grade D] ATK +3% +[Grade C] ATK +3%, P.ATK +2. +[Grade B] Melee Physical Damage +5%. +[Grade A] After Skill Delay of all skills -10%. +-------------------------- +Type: Garment +Defense: 45 +Weight: 100 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +480147# +A manteau engraved with Varmundt's Death Rune magic. +It is engraved with magic. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 10%. +-------------------------- +Refine Level +11: +MATK +5% +-------------------------- +When equipped with Varmundt Death Rune Armor and Varmundt Death Rune Boots: +Increases Magical Damage with every element by additional 5%. +Decreases Variable Casting Time by additional 5%. +-------------------------- +[Bonus by Grade] +[Grade D] MATK +3% +[Grade C] MATK +3%, S.MATK +2. +[Grade B] Magical Damage with every element +5%. +[Grade A] After Skill Delay of all skills -10%. +-------------------------- +Type: Garment +Defense: 45 +Weight: 100 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +480148# +A manteau engraved with Varmundt's Ice Rune magic. +It is a mark of concentration. +-------------------------- +Refine Level +7: +ATK +5% +-------------------------- +Refine Level +9: +Increases Critical Damage by 10%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by 5%. +-------------------------- +When equipped with Varmundt Ice Rune Armor and Varmundt Ice Rune Boots: +Increases Ranged Physical Damage by additional 5%. +Decreases Variable Casting Time by additional 5%. +-------------------------- +[Bonus by Grade] +[Grade D] ATK +3% +[Grade C] ATK +3%, P.ATK +2. +[Grade B] Ranged Physical Damage +5%. +[Grade A] After Skill Delay of all skills -10%. +-------------------------- +Type: Garment +Defense: 45 +Weight: 100 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +480152# +A spoon & fork costume set for eco-friendlieness. +It would be good to wear it with decorative clothes such as cakes or sweets. +It cannot be used as a weapon. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 27. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480159# +A manteau made by grinding the flower petals that grow in Isgard. +You can enchant them with Ice Flower Magic Stones for special abilities. +-------------------------- +MaxHP +2500, MaxSP +500 +-------------------------- +For each 2 Refine Levels: +MaxHP +200, MaxSP +50 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +POW +3 +-------------------------- +When equipped with Snow Flower Boots: +Increases Critical Damage by 15%. +-------------------------- +When equipped with Snow Flower Shoes: +Decreases Variable Casting Time by 15%. +-------------------------- +Type: Garment +Defense: 70 +Weight: 90 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +480160# +A muffler made by grinding the flower petals that grow in Isgard. +You can enchant them with Ice Flower Magic Stones for special abilities. +-------------------------- +MaxHP +2000, MaxSP +1000 +-------------------------- +For each 2 Refine Levels: +MaxHP +150, MaxSP +100 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 7%. +-------------------------- +Refine Level +9: +SPL +3 +-------------------------- +When equipped with Snow Flower Boots: +Increases Ranged Phyical Damage by 7%. +-------------------------- +When equipped with Snow Flower Shoes: +Increases Magical Damage with every element by 15%. +-------------------------- +Type: Garment +Defense: 70 +Weight: 90 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +480167# +A costume decoration modeled after a heart stick chocolate. +Let's walk around with cute sweets on your back. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 26. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480174# +The captain's coat worn by Drake. +-------------------------- +Critical +3, C.RATE +5 +-------------------------- +For each 2 Refine Levels: +ATK +15 +Increases Critical Damage by 3%. +-------------------------- +For each 3 Refine Levels: +Increases Physical Damage against enemies of every size by 5%. +-------------------------- +Refine Level +7: +ATK +5%, P.ATK +7 +-------------------------- +Refine Level +9: +Decreases After Skill Delay of all skills by 10%. +-------------------------- +Refine Level +11: +DEF +150 +Decreases After Skill Delay of all skills by additional 5%. +-------------------------- +When equipped with Drake Card: +Critical +15, C.RATE +10 +Increases Melee and Ranged Physical Damage by 15%. +-------------------------- +[Additional Options by Grade] +[Grade D]: Critical +3, CRT +3 +[Grade C]: Critical Damage +15% +[Grade B]: POW +3, CON +3 +[Grade A]: P.ATK +7 +-------------------------- +Type: Garment +Defense: 15 +Weight: 60 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 200 +# +480177# +Costume bouquet made of red and yellow tulips. +A large ribbon tied with a bouquet is also an attractive point. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box 27. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480193# +This blood-soaked cloak was filled with a black aura. +-------------------------- +Reduce delay skill by 5% +-------------------------- +Increase damage skill [Grimtooth] by 1% per character's LV. +-------------------------- +When upgrade Enforcer Cape to Level 5 or higher and learn [Grimtooth] to Level 5, [Grimtooth]'s damage will increase by 50%. +-------------------------- +When upgrade Enforcer Cape to Level 7 or higher MAXSP + 5%, Reduce delay skill by 3% +-------------------------- +When upgrade Enforcer Cape to Level 9 or higher Reduce delay skill by 3% +-------------------------- +Banned guild wars & PVP +-------------------------- +Type: Garment +Defense: 18 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level: 70 +Job: All +# +480197# +A multi-purpose wing that has been further improved for the purpose of high efficiency and high output. +Critical processes are installed. +Compatible with various items. +-------------------------- +For each 2 Refine Levels: +ATK +5, Critical +2 +-------------------------- +For each 3 Refine Levels: +Increases Physical Damage against enemies of every size by 3%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Decreases damage taken from Neutral element attacks by 7%. +-------------------------- +Refine Level +11: +Increases Melee and Ranged Physical Damage by 10%. +-------------------------- +When equipped with Deep Blue Sunglasses[1]: +Increases Critical Damage by 7%. +Decreases Variable Casting Time by 15%. +-------------------------- +When equipped with Victory Wing Ears[1]: +Increases Critical Damage by 7%. +Decreases After Skill Delay by 15%. +-------------------------- +When equipped with Battle Processor[1]: +Increases Critical Damage by 7%. +Increases Melee and Ranged Physical Damage by additional 5%. +-------------------------- +Type: Garment +Defense: 38 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +480201# +A costume wing modeled on the wings that cover the body of a Cherubim, the throne of God. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480207# +A set of clothing and equipment for adventurers traveling through the desert. +There are many tools that come in handy when traveling. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480226# +Wings that make you feel happy +-------------------------- +All Stats + 3 +-------------------------- +Enables Level 3 Increase AGI. +-------------------------- +When equipped with Angel Of Happiness: +Increases HP recovery rate by 5% +Increases SP recovery rate by 5% +If refine rate is 5, increases resistance from Holy property attacks 15% +If refine rate is 6 or every upgrade, increases resistance from Holy property attacks 5% (up to +10) +-------------------------- +Type: Garment +Defense: 10 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +480411# +A huge costume with a fluffy white tail of a rabbit. +It warms the heart of the wearer. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480420# +A large rifle made with advanced robotics technology. +You can feel the power of science when wearing it. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480246# +A costume spear modeled after the spear of the Valkyrie. +-------------------------- +Allstats +2 +Increases experience gained from defeating all monsters by 3% +Increases drop rate gained from defeating all monsters by 3% +Expiration date 29-04-2024 +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480286# +When equipped, you will feel a huge Silver Snake God energy supporting your back. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480297# +A cloak made with the motif of long rabbit ears. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480310# +A giant bunny modeled after the doll that Piamette always carries around. +It certainly looks like it just moved... +-------------------------- +Collection Effect +Add a 1% resistance against Water, Fire, Shadow and Undead Property. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480311# +A key to the costume Kathua, which contains the wish for good luck to everyone. +It is decorated with a four-leaf clover with a lucky flower saying. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480316# +A replica of a giant double-edged axe.It looks heavy to lift, but it's a costume, so it's okay! +-------------------------- +Allstats +2 +Increases experience gained from defeating all monsters by 3% +Increases drop rate gained from defeating all monsters by 3% +Expiration date 29-04-2024 +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480333# +The Medical Cape +-------------------------- +MHP +100, MSP +10 +Reduces damage taken from ranged attacks by 5% (excluding magic) +Each upgrade level reduces damage from ranged attacks by an additional 1% +-------------------------- +When equipped by Alchemist and Creator, +Each upgrade level increases healing skill effectiveness by 2% +-------------------------- +Type: Garment +Defense: 12 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +480360# +A giant costume shuriken. +It may seem heavy enough to be difficult to lift, but since it is a costume, throwing it around is no problem! +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480361# +A two wielding demon sword that is said to contain the countless souls that disappeared as grudges. +It is said that the tightly sealed dead soul cannot escape from the sheath. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Costume Enchant Stone Box I. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +480368# +A costume decoration modeled after a giant lollipop. +Try walking around with a cute lollipop on your back. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +490004# +Special ring prepared for your rapid growth. +Specialized for melee physical attacks. +-------------------------- +MaxSP +3% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases Variable Casting Time by 10%. +Increases Critical Damage by 5%. +-------------------------- +Type: Accessory +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490005# +Special earrings prepared for your rapid growth. +Specialized in some elemental magic attacks. +-------------------------- +MaxSP +3% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases Variable Casting Time by 10%. +Increases Water, Wind, Earth, Magical Damage with Fire and Neutral element by 5%. +-------------------------- +Type: Accessory +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490006# +Special earrings prepared for your rapid growth. +Specialized in some elemental magic attacks. +-------------------------- +MaxSP +3% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases Variable Casting Time by 10%. +Increases Magical Damage with Ghost, Holy, Shadow, Undead and Poison element by 5%. +-------------------------- +Type: Accessory +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490007# +Special ring prepared for your rapid growth. +Specialized for ranged physical attacks. +-------------------------- +MaxSP +3% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases Variable Casting Time by 10%. +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Accessory +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490013# +A ring in which an esper had sealed the power of a ferocious monster after a fierce battle. +Only agents of divine punishment would be able to handle its power. +-------------------------- +Increases Physical Damage against enemies of every size by 10%. +Decreases Assimilate Power skill cooldown by 3 seconds. +-------------------------- +When Earth Shaker is mastered, +Decreases SP Consumption of Howling of Lion by 35. +Decreases SP Consumption of Knuckle Arrow by 4. +-------------------------- +When Rampage Blaster is mastered, +Increases damage of Howling of Lion by 30%. +Increases damage of Knuckle Arrow by 100%. +-------------------------- +When Ride In Lightening is mastered, +Increases Attack Speed (Decreases After Attack Delay by 10%). +Perfect HIT +15% +-------------------------- +Type: Accessory +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490014# +Noble Ring engraved with the emblem of Rune Midgarts +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 3%). +Decreases Variable Casting Time by 5%. +Increases Critical Damage by 5%. +-------------------------- +Type: Accessory +Position: Right +Defense: 5 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490015# +Noble Ring engraved with the emblem of Rune Midgarts +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 3%). +Decreases Variable Casting Time by 5%. +Increases Magical Damage against enemies of every element by 5%. +-------------------------- +Type: Accessory +Position: Right +Defense: 5 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490016# +If you wear it, your limbs will move naturally regardless of your will. +-------------------------- +All Stats +10 +-------------------------- +MaxHP +10% +-------------------------- +When equipped with Dark Hand: +Decreases damage taken from Demi-Human race by 3%. + +Refine Level of Dark Hand is +6 or higher: +Perfect HIT +15% +Decreases After Skill Delay by 5%. +Ignores physical and magical defense of all race by 25%. + +Refine Level of Dark Hand is +8 or higher: +Perfect HIT +15% +Decreases After Skill Delay by additional 10%. +Ignores physical and magical defense of all race by additional 25%. +-------------------------- +Type: Accessory +Defense: 5 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490017# +Noble Ring engraved with the emblem of Rune Midgarts +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +Decreases Variable Casting Time by 7%. +Increases Critical Damage by 7%. +-------------------------- +Type: Accessory +Position: Right +Defense: 8 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +# +490018# +Noble Ring engraved with the emblem of Rune Midgarts +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +Decreases Variable Casting Time by 7%. +Increases Magical Damage against enemies of every element by 7%. +-------------------------- +Type: Accessory +Position: Right +Defense: 8 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 125 +# +490019# +Noble Ring engraved with the emblem of Rune Midgarts +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +Decreases Variable Casting Time by 10%. +Increases Critical Damage by 10%. +-------------------------- +Type: Accessory +Position: Right +Defense: 10 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +490020# +Noble Ring engraved with the emblem of Rune Midgarts +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +Decreases Variable Casting Time by 10%. +Increases Magical Damage against enemies of every element by 10%. +-------------------------- +Type: Accessory +Position: Right +Defense: 10 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 150 +# +490022# +A ring with the power of lightning. +It carries the fragments of the power of \ +. +-------------------------- +ATK +5%, MATK +5% +-------------------------- +Increases Damage against Water elemental by 10%. +-------------------------- +Decreases damage taken from Water elemental attacks by 5%. +-------------------------- +When equipped with any Thunder weapon: +Increases Damage against monsters of Fish race by 20%. +Increases damage against Water elemental by additional 20%. +-------------------------- +When enchanted with Hayate: +Increases Damage against monsters of Fish race by 15%. +Increases damage against Water elemental by additional 15%. +-------------------------- +Type: Accessory +Defense: 0 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490024# +Improved Combat Enhancement Parts with Varmundt's Mansion technology. +It is said to be able to add abilities by attaching various modules. +-------------------------- +ATK +5% +MaxHP +5% +-------------------------- +Type: Accessory +Position: Right +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +490025# +Improved Combat Enhancement Parts with Varmundt's Mansion technology. +It is said to be able to add abilities by attaching various modules. +-------------------------- +ATK +5% +MaxSP +5% +-------------------------- +Type: Accessory +Position: Left +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +490026# +A battle-enhancing chip improved with the technology of the Varmundt's Mansion. +It is said to be able to add abilities by attaching various modules. +-------------------------- +MATK +5% +MaxHP +5% +-------------------------- +Type: Accessory +Position: Right +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +490027# +A battle-enhancing chip improved with the technology of the Varmundt's Mansion. +It is said to be able to add abilities by attaching various modules. +-------------------------- +MATK +5% +MaxSP +5% +-------------------------- +Type: Accessory +Position: Left +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 160 +# +490029# +One of the great treasures of the forgotten continent, Geffenia. +Those who obtained it becomes the ruler of absolute zero. +-------------------------- +MDEF +10 +-------------------------- +Increases Magical Damage against monsters of enemies of every size by 10%. +-------------------------- +For each 3 Base Level: +Increases damage of Storm Gust by 2%. +-------------------------- +When Comet is mastered: +Decreases SP Consumption of Jack Frost by 35. +Decreases Fixed Casting Time of Jack Frost by 100%. +-------------------------- +When Jack Frost is mastered: +Increases damage of Comet by 50%. +Decreases SP Consumption of Comet by 100. +-------------------------- +When Stasis is mastered: +Increases damage of Frosty Misty and Jack Frost by 50%. +-------------------------- +When Recognized Spell is mastered, +Decreases After Skill Delay by 30%. +-------------------------- +When equipped by a Warlock and equipped with Liberation of Truth: +Nullifies Gemstone requirement of certain skills. +-------------------------- +Type: Accessory +Defense: 2 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490033# +A gem formed from the tears of a fallen angel +-------------------------- +ATK+6%, MATK+6%, Hit+15. +-------------------------- +When equipped together with Fallen Angel Wing Upgraded to +9 or higher +Increases defense Stone And Curse +40%. +-------------------------- +When equipped together with Fallen Angel Hairband Upgraded to +9 or higher +Reduces variable casting time 5% +-------------------------- +When equipped together with Fallen Angel Armor Upgraded to +9 or higher +MaxHp+8%. +-------------------------- +Type: Accessory +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirements: +Base Level 30 +# +490035# +A pendant used by King Solomon, the Great Wizard. +It contains a huge amount of magical power and has the effect of amplifying it in response to the power of the owner. +-------------------------- +INT +5, DEX +5 +-------------------------- +MATK +10% +-------------------------- +Enables the use of Level 5 Mystical Amplification. +-------------------------- +When using Mystical Amplification, increases Fire, Water, Wind, Magical Damage with Holy and Neutral element for 10 seconds by 30%. +-------------------------- +When equipped by Novice, Magician, Acolyte or Summoner classes: +When equipped with either Amplification 1, Amplification 2, Amplification 3, Amplification 4 or Amplification 5: +Increases Magical Damage against enemies of every race by 10%. +Ignores magical defense of all enemies by 70%. +-------------------------- +Type: Accessory +Position: Left +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490036# +A pendant used by King Solomon, the Great Wizard. +It contains a huge amount of magical power and has the effect of amplifying it in response to the power of the owner. +-------------------------- +INT +5, DEX +5 +-------------------------- +MATK +10% +-------------------------- +Enables the use of Level 5 Mystical Amplification. +-------------------------- +When using Mystical Amplification, increases Fire, Water, Wind, Magical Damage with Holy and Neutral element for 10 seconds by 30%. +-------------------------- +When equipped by Novice, Magician, Acolyte or Summoner classes: +When equipped with either Amplification 1, Amplification 2, Amplification 3, Amplification 4 or Amplification 5: +Increases Magical Damage against enemies of every race by 10%. +Ignores magical defense of all enemies by 70%. +-------------------------- +Type: Accessory +Position: Left +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490038# +A ring that encloses an unknown power in a jewel. +It strengthens the sixth sense of the wearer. +-------------------------- +MDEF +15 +-------------------------- +INT +7 +-------------------------- +Increases Magical Damage against monsters of Small, Medium and Large size by 10%. +-------------------------- +For each 5 Base Level: +Increases damage of Psychic Wave by 1%. +-------------------------- +When Level 5 Killing Cloud is learned: +Decreases Variable Casting Time by 15%. +Recovers 100 HP and 10 SP when defeating monsters with magical attacks. +-------------------------- +When Level 5 Psychic Wave is learned: +Decreases After Skill Delay by 30%. +-------------------------- +When Level 5 Striking is learned: +Increases Magical Damage with Fire, Water, Wind, Earth and Neutral element by 10%. +-------------------------- +When Level 5 Extreme Vacuum is learned: +Decreases SP Consumption of Psychic Wave by 20. +Decreases Psychic Wave skill cooldown by 1 second. +-------------------------- +When equipped by Sorcerer and equipped with Release of Magic: +Ignore magical defense of all enemies by 100%. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490044# +A ring stained with sin with a red Ruby embedded in it. +From the depths, it is sending out evil and powerful energy. +-------------------------- +ATK +10% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +When equipped with Red Dragon Plate, Dragon Scale Hood and Dragon Scale Boots: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.2 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 20%. +Decreases damage taken from Angel and Dragon race by 10%. +-------------------------- +Type: Accessory +Position Right +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490045# +A necklace stained with sin, decorated with reddish Rubies. +It is emitting a dark and cold energy from the deep. +-------------------------- +ATK +10% +-------------------------- +Decreases Variable Casting Time by 7%. +-------------------------- +When equipped with Sinful Ruby Ring: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.3 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 15%. +-------------------------- +Type: Accessory +Position Left +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490046# +A ring stained with sin with green Emeralds. +Evil and powerful energy is being released from the depths. +-------------------------- +ATK +10% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +When equipped with Green Dragon Plate, Dragon Scale Hood and Dragon Scale Boots: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.2 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 20%. +Decreases damage taken from Angel and Dragon race by 10%. +-------------------------- +Type: Accessory +Position Right +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490047# +A necklace stained with sin, adorned with green Emeralds. +It is emitting a dark and cold energy from the deep. +-------------------------- +ATK +10% +-------------------------- +Decreases Variable Casting Time by 7%. +-------------------------- +When equipped with Sinful Emerald Ring: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.3 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 15%. +-------------------------- +Type: Accessory +Position Left +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490048# +A ring stained with sin with golden Topaz embedded in it. +Evil and powerful energy is being released from the depths. +-------------------------- +ATK +7% +MATK +7% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +When equipped with Gold Dragon Plate, Dragon Scale Hood and Dragon Scale Boots: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.2 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 20%. +Decreases damage taken from Angel and Dragon race by 10%. +-------------------------- +Type: Accessory +Position Right +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490049# +A necklace stained with sin, decorated with golden Topaz. +It is emitting a dark and cold energy from the deep. +-------------------------- +ATK +7% +MATK +7% +-------------------------- +Decreases Variable Casting Time by 7%. +-------------------------- +When equipped with Sinful Topaz Ring: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.3 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 15%. +-------------------------- +Type: Accessory +Position Left +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490050# +A ring stained with sin with a purple Amethyst embedded in it. +Evil and powerful energy is being released from the depths. +-------------------------- +ATK +7% +MATK +7% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +When equipped with Purple Dragon Plate, Dragon Scale Hood and Dragon Scale Boots: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.2 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 20%. +Decreases damage taken from Angel and Dragon race by 10%. +-------------------------- +Type: Accessory +Position Right +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490051# +A necklace stained with sin, decorated with purple Amethyst. +It is emitting a dark and cold energy from the deep. +-------------------------- +ATK +7% +MATK +7% +-------------------------- +Decreases Variable Casting Time by 7%. +-------------------------- +When equipped with Sinful Amethyst Ring: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.3 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 15%. +-------------------------- +Type: Accessory +Position Left +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490052# +A ring stained with sin with a blue Sapphire embedded in it. +Evil and powerful energy is being released from the depths. +-------------------------- +MATK +10% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +When equipped with Blue Dragon Plate, Dragon Scale Hood and Dragon Scale Boots: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.2 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 20%. +Decreases damage taken from Angel and Dragon race by 10%. +-------------------------- +Type: Accessory +Position Right +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490053# +A necklace stained with sin, decorated with purple Amethyst. +It is emitting a dark and cold energy from the deep. +-------------------------- +ATK +10% +-------------------------- +Decreases Variable Casting Time by 7%. +-------------------------- +When equipped with Sinful Sapphire Ring: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.3 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 15%. +-------------------------- +Type: Accessory +Position Left +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490054# +A ring stained with sin with a white Opal embedded in it. +Evil and powerful energy is being released from the depths. +-------------------------- +ATK +10% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +When equipped with Silver Dragon Plate, Dragon Scale Hood and Dragon Scale Boots: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.2 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 20%. +Decreases damage taken from Angel and Dragon race by 10%. +-------------------------- +Type: Accessory +Position Right +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490055# +A necklace stained with sin, decorated with white Opal. +It is emitting a dark and cold energy from the deep. +-------------------------- +ATK +10% +-------------------------- +Decreases Variable Casting Time by 7%. +-------------------------- +When equipped with Sinful Opal Ring: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.3 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 15%. +-------------------------- +Type: Accessory +Position Left +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490056# +A ring that shines brightly with red rubies. +From the depths, it has a sacred and powerful energy. +-------------------------- +ATK +10% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +When equipped with STR Soutane, Clergy's Manteau and Clergy's Boots: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.2 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 20%. +Decreases damage taken from Angel and Dragon race by 10%. +-------------------------- +Type: Accessory +Position Right +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490057# +A shining necklace decorated with red Rubies. +It radiates bright and warm energy from the deep. +-------------------------- +ATK +10% +-------------------------- +Decreases Variable Casting Time by 7%. +-------------------------- +When equipped with Brilliant Light Ruby Ring: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.2 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 15%. +-------------------------- +Type: Accessory +Position Left +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490058# +A ring that shines brightly with a purple Amethyst. +From the depths, it has a sacred and powerful energy. +-------------------------- +ATK +7% +MATK +7% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +When equipped with DEX Soutane, Clergy's Manteau and Clergy's Boots: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.2 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 20%. +Decreases damage taken from Angel and Dragon race by 10%. +-------------------------- +Type: Accessory +Position Right +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490059# +A shining necklace decorated with a purple Amethyst. +It radiates bright and warm energy from the deep. +-------------------------- +ATK +7% +MATK +7% +-------------------------- +Decreases Variable Casting Time by 7%. +-------------------------- +When equipped with Amethyst Ring of Brilliant Light: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.2 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 15%. +-------------------------- +Type: Accessory +Position Left +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490060# +A ring that shines brightly with a green Emeralds. +From the depths, it has a sacred and powerful energy. +-------------------------- +ATK +7% +MATK +7% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +When equipped with VIT Soutane, Clergy's Manteau and Clergy's Boots: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.2 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 20%. +Decreases damage taken from Angel and Dragon race by 10%. +-------------------------- +Type: Accessory +Position Right +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490061# +A shining necklace decorated with a green Emeralds. +It radiates bright and warm energy from the deep. +-------------------------- +ATK +7% +MATK +7% +-------------------------- +Decreases Variable Casting Time by 7%. +-------------------------- +When equipped with Brilliant Light Emerald Ring: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.2 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 15%. +-------------------------- +Type: Accessory +Position Left +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490062# +A ring that shines brightly with a turquoise Zircon. +From the depths, it has a sacred and powerful energy. +-------------------------- +ATK +10% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +When equipped with AGI Soutane, Clergy's Manteau and Clergy's Boots: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.2 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 20%. +Decreases damage taken from Angel and Dragon race by 10%. +-------------------------- +Type: Accessory +Position Right +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490063# +A shining necklace decorated with a turquoise Zircon. +It radiates bright and warm energy from the deep. +-------------------------- +ATK +10% +-------------------------- +Decreases Variable Casting Time by 7%. +-------------------------- +When equipped with Brilliant Light Zircon Ring: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.2 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 15%. +-------------------------- +Type: Accessory +Position Left +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490064# +A ring that shines brightly with a blue Sapphire. +From the depths, it has a sacred and powerful energy. +-------------------------- +MATK +10% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +When equipped with INT Soutane, Clergy's Manteau and Clergy's Boots: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.2 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 20%. +Decreases damage taken from Angel and Dragon race by 10%. +-------------------------- +Type: Accessory +Position Right +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490065# +A shining necklace decorated with a blue Sapphire. +It radiates bright and warm energy from the deep. +-------------------------- +MATK +10% +-------------------------- +Decreases Variable Casting Time by 7%. +-------------------------- +When equipped with Brilliant Light Sapphire Ring: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.2 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 15%. +-------------------------- +Type: Accessory +Position Left +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490066# +A ring that shines brightly with a sea-colored Aquamarine. +From the depths, it has a sacred and powerful energy. +-------------------------- +MATK +10% +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +When equipped with INT Soutane, Clergy's Manteau and Clergy's Boots: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.2 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 20%. +Decreases damage taken from Angel and Dragon race by 10%. +-------------------------- +Type: Accessory +Position Right +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490067# +A shining necklace decorated with a sea-colored Aquamarine. +It radiates bright and warm energy from the deep. +-------------------------- +ATK +10% +-------------------------- +Decreases Variable Casting Time by 7%. +-------------------------- +When equipped with Brilliant Light Aquamarine Ring: +Decreases After Skill Delay by 5%. +Decreases Fixed Casting Time by 0.2 seconds. +Increases Physical Damage against enemies of Angel and Dragon race by 15%. +-------------------------- +Type: Accessory +Position Left +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 170 +# +490069# +A belt that was kept as a memento while recovering his body after Ku Hulin died. +-------------------------- +STR +3 +MaxHP +5% +-------------------------- +When equipped with Illusion Morrigane's Pendant : +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Type: Accessory +Position: Right +Defense: 0 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +All Jobs except Novice +# +490070# +The pendant that ChuChulain gave to Morrigan when they were both still in love. +It's symoblic of her endless devotion, as she stood by his side even after he had abandoned her. +-------------------------- +ATK +20 +Critical +5 +-------------------------- +When equipped with Illusion Morrigane's Belt : +ATK +10% +-------------------------- +Type: Accessory +Position: Left +Defense: 0 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +All Jobs except Novice +# +490072# +A component for combat enhancement created with Illusion's technology. +It is said that you can add abilities by installing various modules. +-------------------------- +ATK +5% +-------------------------- +Type: Accessory +Position: Right +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +490073# +A component for combat enhancement created with Illusion's technology. +It is said that you can add abilities by installing various modules. +-------------------------- +ATK +5% +-------------------------- +Type: Accessory +Position: Left +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +490074# +A component for combat enhancement created with Illusion's technology. +It is said that you can add abilities by installing various modules. +-------------------------- +MATK +5% +-------------------------- +Type: Accessory +Position: Right +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +490075# +A component for combat enhancement created with Illusion's technology. +It is said that you can add abilities by installing various modules. +-------------------------- +MATK +5% +-------------------------- +Type: Accessory +Position: Left +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 130 +# +490076# +A terrifying ring with the power of all things. +It is said that those who get this will get the world. +-------------------------- +ATK +10%, MATK +10% +-------------------------- +Recovers 200 HP and 20 SP when defeating monsters. +-------------------------- +When equipped with Grand Master: +Decreases After Skill Delay by 15%. +Increases Ranged Physical Damage by 25%. +-------------------------- +When equipped with Death Drive: +AGI +40 +Nullifies weapon damage size penalty against all monsters. +-------------------------- +When equipped with Liberation of Truth: +Increases Wind, Magical Damage with Holy and Neutral element by 50%. +Decreases Fixed Casting Time by 70%. +-------------------------- +When equipped with Overlord: +Increases Attack Speed (Decreases After Attack Delay by 15%). +ATK +35% +-------------------------- +Type: Accessory +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490077# +The magic ring developed by Geffen improves the body's ability. +-------------------------- +MaxHP +5% +ATK +8% +-------------------------- +When equipped with either Anti-Conjurer Suit or Magic Protector Robe: +Physical attacks have a random chance to recover 400 HP per 0.5 seconds for 19 times. +-------------------------- +Type: Accessory +Defense: 15 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 230 +# +490078# +The magic ring developed by Geffen improves magical abilities. +-------------------------- +MaxHP +5% +MATK +8% +-------------------------- +When equipped with either Anti-Conjurer Suit or Magic Protector Robe: +Magical attacks have a random chance to recover 80 SP per 0.5 seconds for 19 times. +-------------------------- +Type: Accessory +Defense: 15 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 230 +# +490079# +A ring with embedded red stones that amplifies psychokinesis. +-------------------------- +MDEF +15 +-------------------------- +INT +7 +-------------------------- +Increases Magical Damage against monsters of Small, Medium and Large size by 10%. +-------------------------- +For each 7 Base Level: +Increases damage of Soul Expansion by 1%. +-------------------------- +When Level 5 Stasis is learned: +Increases Magical Damage with Shadow, Ghost and Neutral element by 10%. +-------------------------- +When Level 5 Telekinesis Intense is learned: +Decreases Telekinesis Intense skill cooldown by 75 seconds. +-------------------------- +When Level 5 Hell Inferno is learned: +Increases Attack Speed (Decreases After Attack Delay by 15%). +Recovers 100 HP and 10 SP when defeating monsters with magical attacks. +-------------------------- +When Level 5 Recognized Spell is learned: +Decreases After Skill Delay by 30%. +-------------------------- +When equipped by Warlock: +When equipped with Release of Truth: +Ignore magical defense of all enemies by 100%. +-------------------------- +Releases Telekinesis Intense state when unequipping. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490083# +A replica of the balance that the Goddess of Law and Law used to measure right and wrong. +-------------------------- +MDEF +5 +-------------------------- +INT +7 +-------------------------- +For each 5 Base Level: +Increases damage of Genesis Ray by 1%. +-------------------------- +When Level 5 Inspiration is learned: +Decreases Variable Casting Time of Genesis Ray by 50%. +Decreases SP Consumption of Genesis Ray by 20. +-------------------------- +When Level 5 Devotion is learned: +Increases Magical Damage against monsters of Boss class by 15%. +-------------------------- +When Level 5 Hesperus Lit is learned: +Decreases After Skill Delay by 30%. +-------------------------- +Random chance to recieve the following effect for 3 seconds when dealing magical damage: +auto-cast Level 3 Highness Heal on yourself when using Genesis Ray. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490087# +Hourglass decorative necklace with special power. +It is said that when the hourglass runs out, all of its strength disappears. +-------------------------- +POW, SPL, STA, WIS, CRT, CON +6 + +For each 5 Job Level: +POW, SPL, STA, WIS, CRT, CON -1 +-------------------------- +Type: Accessory +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 200 +# +490090# +Ring of Aegir, the god of the sea. It is said that the protection of the sea resides in it. +-------------------------- +MATK +10 +-------------------------- +Increases Magical Damage with every element by 2%. +-------------------------- +When equipped with Aegir Helm, Aegir Armor, Aegir Manteau and Aegir Shoes: +Increases Magical Damage with every element by additional 2%. +-------------------------- +Type: Accessory +Position: Right +Defense: 5 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +490091# +Necklace of Aegir, the god of the sea. It is said that the protection of the sea resides in it. +-------------------------- +ATK +10 +-------------------------- +Increases Melee and Ranged Physical Damage by 2%. +-------------------------- +When equipped with Aegir Helm, Aegir Armor, Aegir Manteau and Aegir Shoes: +Increases Melee and Ranged Physical Damage by additional 2%. +-------------------------- +Type: Accessory +Position: Left +Defense: 5 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +490092# +A newly crafted ring based on Aegir's Ring. +-------------------------- +MATK +30 +-------------------------- +Increases Magical Damage with every element by 5%. +-------------------------- +When equipped with Aegirnian Helm, Aegirnian Armor, Aegirnian Manteau and Aegirnian Shoes: +Increases Magical Damage with every element by additional 5%. +-------------------------- +Type: Accessory +Position: Right +Defense: 10 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 140 +# +490093# +A newly crafted necklace based on Aegir's Necklace. +-------------------------- +ATK +30 +-------------------------- +Increases Melee and Ranged Physical Damage by 5%. +-------------------------- +When equipped with Aegirnian Helm, Aegirnian Armor, Aegirnian Manteau and Aegirnian Shoes: +Increases Melee and Ranged Physical Damage by additional 5%. +-------------------------- +Type: Accessory +Position: Left +Defense: 10 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 140 +# +490098# +A ring with the power of evil spirits of wind and hot air. +It is said that the power of evil spirits overflows when this ring is put on. +-------------------------- +MDEF +15 +-------------------------- +INT +7 +-------------------------- +Increases Magical Damage against monsters of Small, Medium and Large size by 10%. +-------------------------- +For each 3 Base Level: +Increases damage of Crimson Rock and Chain Lightning by 1%. +-------------------------- +For each Base Level: +Increases damage of Lord of Vermillion by 6%. +-------------------------- +When Level 5 Chain Lightning is learned: +Decreases SP Consumption of Chain Lightning by 35. +Decreases Chain Lightning skill cooldown by 0.5 seconds. +-------------------------- +When Level 5 Drain Life is learned: +Decreases Variable Casting Time by 15%. +Recovers 100 HP and 10 SP when defeating monsters with magical attacks. +-------------------------- +When Level 3 Radius is learned: +Increases Magical Damage with Fire, Wind and Neutral element by 10%. +-------------------------- +When Level 5 Recognized Spell is learned: +Decreases After Skill Delay by 30%. +-------------------------- +When equipped by Warlock and equipped with Liberation of Truth: +Decreases SP Consumption of Crimson Rock by 50. +Decreases Crimson Rock skill cooldown by 2 seconds. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490099# +A necklace decorated with beautiful jewels possessed by Thanatos's agony. +-------------------------- +ATK +5% +MATK +5% +-------------------------- +When equipped with Thanatos' Anguish: +Refine Level of Thanatos' Anguish is +7 or higher: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases Variable Casting Time by 10%. + +Refine Level of Thanatos' Anguish is +9 or higher: +ATK +5% +MATK +5% + +Refine Level of Thanatos' Anguish is +11 or higher: +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Random options can be given with the 'Pendant Gemstone of Force' item. +-------------------------- +Type: Accessory +Position: Right +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +490100# +A pendant customized with Thanatos' necklace. It has the power to restore HP. +-------------------------- +ATK +5% +MATK +5% +-------------------------- +When equipped with Thanatos' Anguish: +For each 4 Refine Levels of Thanatos' Anguish: +Decreases After Skill Delay by 2%. + +Refine Level of Thanatos' Anguish is +7 or higher: +Physical attacks have a 5% chance to absorb 5% of the inflicted damage as HP. +Magical attacks have a 4% chance to recover 300 HP per second for 4 times. + +Refine Level of Thanatos' Anguish is +9 or higher: +ATK +5% +MATK +5% + +Refine Level of Thanatos' Anguish is +11 or higher: +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Random options can be given with the 'Dark Stone' item. +-------------------------- +Type: Accessory +Position: Right +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +490101# +A pendant customized with Thanatos' necklace. It has the power to restore SP. +-------------------------- +ATK +5% +MATK +5% +-------------------------- +When equipped with Thanatos' Anguish: +For each 4 Refine Levels of Thanatos' Anguish: +Decreases After Skill Delay by 2%. + +Refine Level of Thanatos' Anguish is +7 or higher: +Physical attacks have a 1% chance to absorb 3% of the inflicted damage as SP. +Magical attacks have a 4% chance to recover 70 SP per second for 4 times. + +Refine Level of Thanatos' Anguish is +9 or higher: +ATK +5% +MATK +5% + +Refine Level of Thanatos' Anguish is +11 or higher: +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Random options can be given with the 'Dark Stone' item. +-------------------------- +Type: Accessory +Position: Right +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +490106# +A pendant given to those who have been recognized by the Gray Wolf Clan. +-------------------------- +ATK +7% +MaxHP +5% +-------------------------- +Type: Accessory +Position: Right +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 190 +# +490107# +A ring given to those recognized by the Gray Wolf Clan. +-------------------------- +ATK +7% +MaxSP +5% +-------------------------- +Type: Accessory +Position: Left +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 190 +# +490108# +Earrings given to those recognized by the Gray Wolf Clan. +-------------------------- +MATK +7% +MaxHP +5% +-------------------------- +Type: Accessory +Position: Right +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 190 +# +490109# +A necklace given to those recognized by the Gray Wolf Clan. +-------------------------- +MATK +7% +MaxSP +5% +-------------------------- +Type: Accessory +Position: Left +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 190 +# +490120# +A ring that seems to feel the flow of wind, as if it would make you do your best when you wear it. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Illusion Sprint Mail: +Decreases After Skill Delay by 10%. +-------------------------- +Type: Accessory +Position: Left +Defense: 0 +Weight: 10 +-------------------------- +Requirement: +Base Level 130 +# +490121# +Gloves featuring durability suitable for sprinting, quick sweat wicking and drying, and excellent grip. +-------------------------- +Decreases After Skill Delay by 3%. +-------------------------- +When equipped with Illusion Sprint Ring: +Decreases After Skill Delay by additional 5%. +-------------------------- +When equipped with Illusion Sprint Mail: +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Accessory +Position: Right +Defense: 0 +Weight: 10 +-------------------------- +Requirement: +Base Level 130 +# +490122# +A ring given to members of the Paradise Group. +-------------------------- +ATK +2% +-------------------------- +Protects from skill cast interruption. +-------------------------- +When equipped with Paradise Gloves: +Decreases Fixed Casting Time by 0.2 seconds. + +Base Level at least 30: +ATK +1% +Increases Attack Speed (Decreases After Attack Delay by 2%). + +Base Level at least 45: +ATK +1% +Increases Attack Speed (Decreases After Attack Delay by additional 3%). + +Base Level at least 85: +ATK +1% +Increases Attack Speed (Decreases After Attack Delay by additional 5%). +-------------------------- +Type: Accessory +Position: Left +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +490123# +Gloves given to members of the Paradise Group. +-------------------------- +Enables the use of Level 1 Heal. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Type: Accessory +Position: Right +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +490124# +A magic ring given to members of the Paradise Group. +-------------------------- +MATK +2% +-------------------------- +Protects from skill cast interruption. +-------------------------- +When equipped with Paradise Necklace: +Decreases Fixed Casting Time by 0.2 seconds. + +Base Level at least 30: +MATK +1% +Decreases Variable Casting Time by 2%. + +Base Level at least 45: +MATK +1% +Decreases Variable Casting Time by additional 3%. + +Base Level at least 85: +MATK +1% +Decreases Variable Casting Time by additional 5%. +-------------------------- +Type: Accessory +Position: Left +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +490125# +A necklace given to members of the Paradise Group. +-------------------------- +Enables the use of Level 1 Heal. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Accessory +Position: Right +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +490126# +A high-quality ring given to members of the Paradise Group. +-------------------------- +ATK +3% +-------------------------- +Protects from skill cast interruption. +-------------------------- +When equipped with Advanced Paradise Gloves: +Decreases Fixed Casting Time by 0.2 seconds. +Increases Attack Speed (Decreases After Attack Delay by 10%). + +Base Level at least 105: +ATK +2% + +Base Level at least 110: +Increases Melee and Ranged Physical Damage by 5%. + +Base Level at least 120: +Increases Critical Damage by 5%. +-------------------------- +Type: Accessory +Position: Left +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490127# +High-quality gloves given to members of the Paradise Group. +-------------------------- +Enables the use of Level 1 Heal. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases Variable Casting Time by 5%. +-------------------------- +Type: Accessory +Position: Right +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490128# +A high-quality magic ring given to members of the Paradise Group. +-------------------------- +MATK +3% +-------------------------- +Protects from skill cast interruption. +-------------------------- +When equipped with Advanced Paradise Necklace: +Decreases Fixed Casting Time by 0.2 seconds. +Decreases Variable Casting Time by 10%. + +Base Level at least 105: +MATK +2% + +Base Level at least 110: +Increases Magical Damage with every element by 5%. + +Base Level at least 120: +Increases Magical Damage against enemies of every element by 5%. +-------------------------- +Type: Accessory +Position: Left +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490129# +A high-quality necklace given to members of the Paradise Group. +-------------------------- +Enables the use of Level 1 Heal. +-------------------------- +Decreases Variable Casting Time by 10%. +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Type: Accessory +Position: Right +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +490131# +A seal imbued with stellar energy. +It doesn't seem to have any special features. +-------------------------- +Type: Accessory +Position: Right +Defense: 0 +Weight: 50 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 240 +# +490132# +A seal imbued with the power of strength from the stars. +-------------------------- +ATK +7%, P.ATK +3. +-------------------------- +When equipped with Nebula Armor of Power: +ATK +5%, P.ATK +2. +-------------------------- +Type: Accessory +Position: Right +Defense: 10 +Weight: 50 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 240 +# +490133# +A seal imbued with the power of stamina from the stars. +-------------------------- +MaxHP +7%, RES +3. +-------------------------- +When equipped with Nebula Armor of Stamina: +MaxHP +5%, RES +3. +-------------------------- +Type: Accessory +Position: Right +Defense: 10 +Weight: 50 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 240 +# +490134# +A seal imbued with the power of agility from the stars. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 7%). +Critical +3 +-------------------------- +When equipped with Nebula Suit of Agility: +ASPD +1, Critical +7. +-------------------------- +Type: Accessory +Position: Right +Defense: 10 +Weight: 50 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 240 +# +490135# +A seal imbued with the power of luck from the stars. +-------------------------- +Increases Critical Damage by 7%. +P.ATK +2 +-------------------------- +When equipped with Nebula Suit of Luck: +Increases Critical Damage by additional 5%. +P.ATK +2 +-------------------------- +Type: Accessory +Position: Right +Defense: 10 +Weight: 50 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 240 +# +490136# +A seal imbued with the power of spell from the stars. +-------------------------- +Increases Magical Damage with every element by 7%. +S.MATK +2 +-------------------------- +When equipped with Nebula Robe of Spell: +Increases Magical Damage with every element by additional 5%. +S.MATK +2 +-------------------------- +Type: Accessory +Position: Right +Defense: 10 +Weight: 50 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 240 +# +490137# +A seal imbued with the power of wisdom from the stars. +-------------------------- +Decreases Variable Casting Time by 7%. +H.PLUS +2 +-------------------------- +When equipped with Nebula Robe of Wisdom: +Increases Healing skills effectiveness by 10%. +H.PLUS +2 +-------------------------- +Type: Accessory +Position: Right +Defense: 10 +Weight: 50 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 240 +# +490152# +A mysterious accessory that brings out the potential of a Hero's Weapon-LT. It contains the energy of the Arch Mage. +-------------------------- +ATK +10%, MATK +10%. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Iron Staff-LT: +Increases Magical Damage against enemies of every size by 15%. + +Refine Level of Iron Staff-LT is +10 or higher: +Increases Magical Damage with every element by 10%. +Increases damage of Crimson Arrow and Rock Down by 10%. + +If Iron Staff-LT's Grade is C or higher: +SPL +5, S.MATK +5. +Increases damage of Crimson Arrow and Rock Down by additional 10%. +-------------------------- +When equipped with Blue Crystal Staff-LT: +Increases Magical Damage against enemies of every size by 15%. + +Refine Level of Blue Crystal Staff-LT is +10 or higher: +Increases Magical Damage with every element by 10%. +Increases damage of Frozen Slash and Soul Vulcan Strike by 10%. + +If Blue Crystal Staff-LT's Grade is C or higher: +SPL +5, S.MATK +5. +Increases damage of Frozen Slash and Soul Vulcan Strike by additional 10%. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 20 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 205 +Arch Mage +# +490153# +A mysterious accessory that brings out the potential of a Hero's Weapon-LT. It contains the energy of the Wind Hawk. +-------------------------- +ATK +10%, MATK +10%. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Royal Bow-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of Royal Bow-LT is +10 or higher: +Increases Ranged Physical Damage by 10%. +Increases damage of Gale Storm by 10%. + +If Royal Bow-LT's Grade is C or higher: +CON +5, P.ATK +5. +Increases damage of Gale Storm by additional 10%. +-------------------------- +When equipped with Scarlet Dragon Leather Bow-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of Scarlet Dragon Leather Bow-LT is +10 or higher: +Increases Ranged Physical Damage by 10%. +Increases damage of Crescive Bolt by 10%. + +If Scarlet Dragon Leather Bow-LT's Grade is C or higher: +CON +5, P.ATK +5. +Increases damage of Crescive Bolt by additional 10%. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 20 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 205 +Wind Hawk +# +490155# +A mysterious accessory that brings out the potential of a Hero's Weapon-LT. It contains the energy of the Imperial Guard. +-------------------------- +ATK +10%, MATK +10%. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Aquatic Spear-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of Aquatic Spear-LT is +10 or higher: +Increases Ranged Physical Damage by 10%. +Increases damage of Shield Shooting by 10%. + +If Aquatic Spear-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Shield Shooting by additional 10%. +-------------------------- +When equipped with Light Blade-LT: +Increases Magical Damage against enemies of every size by 15%. + +Refine Level of Light Blade-LT is +10 or higher: +Increases Magical Damage with every element by 10%. +Increases damage of Cross Rain by 10%. + +If Light Blade-LT's Grade is C or higher: +SPL +5, S.MATK +5. +Increases damage of Cross Rain by additional 10%. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 20 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 205 +Imperial Guard +# +490156# +A mysterious accessory that brings out the potential of a Hero's Weapon-LT. It contains the energy of the Cardinal. +-------------------------- +ATK +10%, MATK +10%. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Saint Mace-LT: +Increases Magical Damage against enemies of every size by 15%. + +Refine Level of Saint Mace-LT is +10 or higher: +Increases Magical Damage with every element by 10%. +Increases damage of Framen by 10%. + +If Saint Mace-LT's Grade is C or higher: +SPL +5, S.MATK +5. +Increases damage of Framen by additional 10%. +-------------------------- +When equipped with Exorcist's Bible-LT: +Increases Damage against enemies of every size by 15%. + +Refine Level of Exorcist's Bible-LT is +10 or higher: +Increases Melee Physical Damage by 10%. +Increases damage of Petitio by 10%. + +If Exorcist's Bible-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Petitio by additional 10%. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 20 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 205 +Cardinal +# +490159# +A core that traps unstabilized powerful energy. +-------------------------- +MaxHP -3% +Critical +10 +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Violet Halo and Magical Booster[1]: +Increases Magical Damage with every element by 5%. + +Refine Level of Violet Halo is +7 or higher: +Increases Magical Damage against monsters of Boss class by 15%. + +Refine Level of Violet Halo is +9 or higher: +Increases Magical Damage with every element by additional 5%. +-------------------------- +When equipped with Violet Halo and Crimson Booster[1]: +Increases Ranged Physical Damage by 5%. + +Refine Level of Violet Halo is +7 or higher: +Critical +10 + +Refine Level of Violet Halo is +9 or higher: +Increases Ranged Physical Damage by additional 5%. +-------------------------- +When equipped with Violet Halo and Sigrun's Wings[1]: +Increases Melee Physical Damage by 5%. + +Refine Level of Violet Halo is +7 or higher: +Perfect HIT +10% + +Refine Level of Violet Halo is +9 or higher: +Increases Melee Physical Damage by additional 10%. +-------------------------- +When equipped with Violet Halo and Dark Blinder[1]: +Decreases After Skill Delay by 5%. + +Refine Level of Violet Halo is +7 or higher: +Increases Physical Damage against monsters of Boss class by 15%. + +Refine Level of Violet Halo is +9 or higher: +Decreases Fixed Casting Time by 0.2 seconds. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 50 +-------------------------- +Requirement: +Base Level 150 +# +490160# +Gloves used by the best court chefs. It looks like it can imitate his hand movements when worn. +It was strengthened due to Varmundt's rune engraving. +-------------------------- +SPL +2, CRT +2, S.MATK +3. +-------------------------- +Type: Accessory +Defense: 0 +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +490161# +A small corsage in the shape of a Pinguicula. +It was strengthened due to Varmundt's rune engraving. +-------------------------- +MRES +2 +-------------------------- +Increases Magical Damage with Earth and Poison element by 7%. +-------------------------- +Type: Accessory +Defense: 20 +Weight: 0 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +490162# +A brooch made by collecting the tears of Aqua Elemental. +It was strengthened due to Varmundt's rune engraving. +-------------------------- +MaxHP +5%, MRES +2. +-------------------------- +Decreases damage taken from monsters of Water element by 5%. +Increases Magical Damage with Water element by 7%. +-------------------------- +Type: Accessory +Defense: 20 +Weight: 0 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +490163# +An insignia worn by Ancient Heroes. +It seems to resonate with the weapons of Ancient Heroes. +-------------------------- +All Stats +2 +-------------------------- +Type: Accessory +Position: Left +Defense: 0 +Weight: 20 +-------------------------- +Requirement: +Base Level 150 +# +490164# +A mysterious accessory that brings out the potential of a Hero's Weapon-LT. It contains the energy of the Shadow Cross. +-------------------------- +ATK +10%, MATK +10%. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Katar of Shiver-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of Katar of Shiver-LT is +10 or higher: +Increases Melee Physical Damage by 10%. +Increases damage of Savage Impact by 10%. + +If Katar of Shiver-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Savage Impact by additional 10%. +-------------------------- +When equipped with Blade Katar-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of Blade Katar-LT is +10 or higher: +Increases Melee Physical Damage by 10%. +Increases damage of Eternal Slash by 10%. + +If Blade Katar-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Eternal Slash by additional 10%. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 20 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 205 +Shadow Cross +# +490165# +A mysterious accessory that brings out the potential of a Hero's Weapon-LT. It contains the energy of the Abyss Chaser. +-------------------------- +ATK +10%, MATK +10%. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Magic Sword-LT: +Increases Magical Damage against enemies of every size by 15%. + +Refine Level of Magic Sword-LT is +10 or higher: +Increases Magical Damage with every element by 10%. +Increases damage of Abyss Square by 10%. + +If Magic Sword-LT's Grade is C or higher: +SPL +5, S.MATK +5. +Increases damage of Abyss Square by additional 10%. +-------------------------- +When equipped with Fatalist-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of Fatalist-LT is +10 or higher: +Increases Melee Physical Damage by 10%. +Increases damage of Abyss Dagger by 10%. + +If Fatalist-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Abyss Dagger by additional 10%. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 20 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 205 +Abyss Chaser +# +490166# +A mysterious accessory that brings out the potential of a Hero's Weapon-LT. It contains the energy of the Dragon Knight. +-------------------------- +ATK +10%, MATK +10%. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Oriental Sword-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of Oriental Sword-LT is +10 or higher: +Increases Physical Damage by 10%. +Increases damage of Servant Weapon by 10%. + +If Oriental Sword-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Servant Weapon by additional 10%. +-------------------------- +When equipped with Dragonic Slayer-LT: +Decreases damage taken from enemies of every size by 10%. + +Refine Level of Dragonic Slayer-LT is +10 or higher: +Increases Ranged Physical Damage by 10%. +Increases damage of Dragon Breath and Dragon Breath - Water by 10%. + +If Dragonic Slayer-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Dragon Breath and Dragon Breath - Water by additional 10%. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 20 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 205 +Dragon Knight +# +490167# +A mysterious accessory that brings out the potential of a Hero's Weapon-LT. It contains the energy of the Biolo. +-------------------------- +ATK +10%, MATK +10%. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Red Lotus Sword-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of Red Lotus Sword-LT is +10 or higher: +Increases Ranged Physical Damage by 10%. +Increases damage of Acidified Zone (Water/Wind/Ground/Fire) by 10%. + +If Red Lotus Sword-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Acidified Zone (Water/Wind/Ground/Fire) by additional 10%. +-------------------------- +When equipped with Slate Sword-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of Slate Sword-LT is +10 or higher: +Increases Melee Physical Damage by 10%. +Increases damage of Cart Tornado by 10%. + +If Slate Sword-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Cart Tornado by additional 10%. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 20 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 205 +Biolo +# +490171# +A mysterious accessory that brings out the potential of a Hero's Weapon-LT. It contains the energy of the Elemental Master. +-------------------------- +ATK +10%, MATK +10%. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Chilling Cane-LT: +Increases Magical Damage against enemies of every size by 15%. + +Refine Level of Chilling Cane-LT is +10 or higher: +Increases Magical Damage with every element by 10%. +Increases damage of Lightning Land and Diamond Storm by 10%. + +If Chilling Cane-LT's Grade is C or higher: +SPL +5, S.MATK +5. +Increases damage of Lightning Land and Diamond Storm by additional 10%. +-------------------------- +When equipped with Shadow Staff-LT: +Increases Magical Damage against enemies of every size by 15%. + +Refine Level of Shadow Staff-LT is +10 or higher: +Increases Magical Damage with every element by 10%. +Increases damage of Terra Drive and Venom Swamp by 10%. + +If Shadow Staff-LT's Grade is C or higher: +SPL +5, S.MATK +5. +Increases damage of Terra Drive and Venom Swamp by additional 10%. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 20 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 205 +Elemental Master +# +490172# +A mysterious accessory that brings out the potential of a Hero's Weapon-LT. It contains the energy of the Troubadour/Trouvere. +-------------------------- +ATK +10%, MATK +10%. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Narcissus Bow-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of Narcissus Bow-LT is +10 or higher: +Increases Ranged Physical Damage by 10%. +Increases damage of Rythm Shooting by 10%. + +If Narcissus Bow-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Rythm Shooting by additional 10%. +-------------------------- +When equipped with Trumpet Shell-LT or Barbed Wire Whip-LT: +Increases Magical Damage against enemies of every size by 15%. + +Refine Level of Trumpet Shell-LT or Barbed Wire Whip-LT is +10 or higher: +Increases Magical Damage with every element by 10%. +Increases damage of Metallic Fury by 10%. + +If Trumpet Shell-LT or Barbed Wire Whip-LT's Grade is C or higher: +SPL +5, S.MATK +5. +Increases damage of Metallic Fury by additional 10%. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 20 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 205 +Troubadour, Trouvere +# +490176# +A pendant made by grinding the flower petals that grow in Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +ATK +7%, MaxHP +7% +-------------------------- +Type: Accessory +Position: Right +Defense: 0 +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +490177# +A ring made by grinding the flower petals that grow in Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +ATK +7%, MaxSP +7% +-------------------------- +Type: Accessory +Position: Left +Defense: 0 +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +490178# +A necklace made by grinding the flower petals that grow in Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +7%, MaxHP +7% +-------------------------- +Type: Accessory +Position: Right +Defense: 0 +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +490179# +A earring made by grinding the flower petals that grow in Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +7%, MaxSP +7% +-------------------------- +Type: Accessory +Position: Left +Defense: 0 +Weight: 10 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 210 +# +490180# +A mysterious accessory that brings out the potential of a Hero's Weapon-LT. It contains the energy of the Meister. +-------------------------- +ATK +10%, MATK +10%. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Avenger-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of Avenger-LT is +10 or higher: +Increases Melee Physical Damage by 10%. +Increases damage of Axe Stomp by 10%. + +If Avenger-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Axe Stomp by additional 10%. +-------------------------- +When equipped with Meteor Striker-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of Meteor Striker-LT is +10 or higher: +Increases Ranged Physical Damage by 10%. +Increases damage of Arms Cannon by 10%. + +If Meteor Striker-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Arms Cannon by additional 10%. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 20 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 205 +Meister +# +490181# +A mysterious accessory that brings out the potential of a Hero's Weapon-LT. It contains the energy of the Inquisitor. +-------------------------- +ATK +10%, MATK +10%. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Iron Nail-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of Iron Nail-LT is +10 or higher: +Increases Ranged Physical Damage by 10%. +Increases damage of Explosion Blaster by 10%. + +If Iron Nail-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Explosion Blaster by additional 10%. +-------------------------- +When equipped with Ray Knuckle-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of Ray Knuckle-LT is +10 or higher: +Increases Melee Physical Damage by 10%. +Increases damage of Third Flame Bomb by 10%. + +If Ray Knuckle-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Third Flame Bomb by additional 10%. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 20 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 205 +Inquisitor +# +490184# +A mysterious accessory that brings out the potential of a Hero's Weapon-LT. It contains the energy of the Shinkiro and Shiranui. +-------------------------- +ATK +10%, MATK +10%. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Clarity Huuma Shuriken-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of Clarity Huuma Shuriken-LT is +10 or higher: +Increases Ranged Physical Damage by 10%. +Increases damage of Huuma Shuriken - Grasp by 10%. + +If Clarity Huuma Shuriken-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Huuma Shuriken - Grasp by additional 10%. +-------------------------- +When equipped with Kiri No Tsuyu-LT and Surudoi Kaze: +Increases Physical Damage against enemies of every size by 15%. + +Total Refine Level of Kiri No Tsuyu-LT and Surudoi Kaze is +20 or higher: +Increases Ranged Physical Damage by 10%. +Increases damage of Kunai - Distortion and Kunai - Rotation by 10%. + +If Kiri No Tsuyu-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Kunai - Distortion and Kunai - Rotation by additional 10%. +(Applies only when equipped on the right hand) +-------------------------- +Type: Accessory +Defense: 10 +Weight: 20 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 205 +Shinkiro, Shiranui +# +490185# +A mysterious accessory that brings out the potential of a Hero's Weapon-LT. It contains the energy of the Night Watch. +-------------------------- +ATK +10%, MATK +10%. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Crimson Rose-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of Crimson Rose-LT is +10 or higher: +Increases Critical Damage by 10%. +Increases damage of Magazine for One by 10%. + +If Crimson Rose-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Magazine for One by additional 10%. +-------------------------- +When equipped with Master Soul Rifle-LT: +Increases Damage against enemies of every size by 15%. + +Refine Level of Master Soul Rifle-LT is +20 or higher: +Increases Attack Speed (Decreases After Attack Delay by 15%). +Increases damage of Basic Grenade and Hasty Fire in the Hole by 10%. + +If Master Soul Rifle-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Basic Grenade and Hasty Fire in the Hole by additional 10%. +-------------------------- +When equipped with Demon Slayer Shot-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of Demon Slayer Shot-LT is +20 or higher: +Increases Ranged Physical Damage by 10%. +Increases damage of Wild Fire by 10%. + +If Demon Slayer Shot-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Wild Fire by additional 10%. +-------------------------- +When equipped with The Black-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of The Black-LT is +20 or higher: +Increases Ranged Physical Damage by 10%. +Increases damage of The Vigilante at Night by 10%. + +If The Black-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of The Vigilante at Night by additional 10%. +-------------------------- +When equipped with Golden Lord Launcher-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of Golden Lord Launcher-LT is +20 or higher: +Increases Ranged Physical Damage by 10%. +Increases damage of Spiral Shooting by 10%. + +If Golden Lord Launcher-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Spiral Shooting by additional 10%. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 20 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 205 +Night Watch +# +490186# +A mysterious accessory that brings out the potential of a Hero's Weapon-LT. It contains the energy of the Soul Ascetic. +-------------------------- +ATK +10%, MATK +10%. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Spirit Pendulum-LT: +Increases Magical Damage against enemies of every size by 15%. + +Refine Level of Spirit Pendulum-LT is +10 or higher: +Increases Magical Damage with every element by 10%. +Increases damage of Talisman of Blue Dragon and Talisman of White Tiger by 10%. + +If Spirit Pendulum-LT's Grade is C or higher: +SPL +5, S.MATK +5. +Increases damage of Talisman of Blue Dragon and Talisman of White Tiger by additional 10%. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 20 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 205 +Soul Ascetic +# +490187# +A mysterious accessory that brings out the potential of a Hero's Weapon-LT. It contains the energy of the Sky Emperor. +-------------------------- +ATK +10%, MATK +10%. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with One Sky One Sun-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of One Sky One Sun-LT is +10 or higher: +Increases Critical Damage by 10%. +Increases damage of Noon Blast and Sunset Blast by 10%. + +If One Sky One Sun-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Noon Blast and Sunset Blast by additional 10%. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 20 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 205 +Sky Emperor +# +490188# +A mysterious accessory that brings out the potential of a Hero's Weapon-LT. It contains the energy of the Spirit Handler. +-------------------------- +ATK +10%, MATK +10%. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Meowmeow Foxtail-LT: +Increases Damage against enemies of every size by 15%. + +Refine Level of Meowmeow Foxtail-LT is +10 or higher: +Increases Ranged Physical Damage by 10%. +Increases Magical Damage with every element by 10%. +Increases damage of Hogogong Strike and Hyunrok Breeze by 10%. + +If Meowmeow Foxtail-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Hogogong Strike and Hyunrok Breeze by additional 10%. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 20 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 205 +Spirit Handler +# +490220# +A mysterious accessory that brings out the potential of a Hero's Weapon-LT. It contains the energy of the Hyper Novice. +-------------------------- +ATK +10%, MATK +10%. +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Freedom Stick-LT: +Increases Magical Damage against enemies of every size by 15%. + +Refine Level of Freedom Stick-LT is +10 or higher: +Increases Magical Damage with every element by 10%. +Increases damage of Hell Drive and Ground Gravitation by 10%. + +If Freedom Stick-LT's Grade is C or higher: +SPL +5, S.MATK +5. +Increases damage of Hell Drive and Ground Gravitation by additional 10%. +-------------------------- +When equipped with Blessed Knife-LT: +Increases Physical Damage against enemies of every size by 15%. + +Refine Level of Blessed Knife-LT is +10 or higher: +Increases Melee Physical Damage by 10%. +Increases damage of Double Bowling Bash by 10%. + +If Blessed Knife-LT's Grade is C or higher: +POW +5, P.ATK +5. +Increases damage of Double Bowling Bash by additional 10%. +-------------------------- +Type: Accessory +Defense: 10 +Weight: 20 +Armor Level: 2 +-------------------------- +Requirement: +Base Level 205 +Hyper Novice +# +490236# +Specially made German ones belonging to the Archery Association. +-------------------------- +Agi + 2, Dex + 2, Flee + 10 +-------------------------- +Every 2 base levels: +Increases Damage : Arrow Shower, Double Strafing + 1% +Every 2 Level Skill: +Double Strafing learned additional ATK + 5 +-------------------------- +Banned guild wars & PVP +-------------------------- +Type: Accessory +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +Thief Class, Archer Class, Rogue Class. +# +490267# +A ring once worn by a highly skilled thief. +-------------------------- +For every 2 Base Levels, increases the damage of Back Stab by 1%. +Physical attacks have a chance to inflict Stun based on the learned level of the Raid skill. +At upgrade level +7, increases the damage of Back Stab by 25%. +At upgrade level +9, increases the damage of Back Stab by 75%. +-------------------------- +Cannot be used in PvP and Guild War. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 20 +# +490282# +Kenshi's gloves which he wore in battle +-------------------------- +Str + 3, Vit + 3, ATK + 3% +Increases Brandish Spear skill damage by 1%. +-------------------------- +Every Base Lv.1 increase Brandish Spear skill damage by 0.5%. +Every 2 levels of Spear Mastery learned, ATK + 5 +-------------------------- +When learning the skill Two hand Quicken to level 10, +Increases damage of Bowling Bash skill by 10%. +-------------------------- +If BaseLv.90 or higher +Reduce SP consumption by 10 when using Charge Attack skill. +-------------------------- +When equipped with Solider Card, it grants Armor Holy element. +-------------------------- +Banned guild wars & PVP +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +490295# +A belt that Armia wears when hunting.. +-------------------------- +Dex+3, Int+3, MHP+2% +-------------------------- +Every 1 Base Lv increases the damage of Acid Terror skill by 0.30 (Max.Lv 125) +When learning skill Maximize Power Lv.5, increase damage Skill Cart Revolut skill 25%. +-------------------------- +When worn together with Fancy Phantom Mask, +Every learning skill Mammonite 2 Lv, increases ATK+5. +When use physical attack has a chance to use the skill Mammonite Lv.1, +Mammonite skill will change to Lv.10 if learned Mammonite skill Lv.10. +(If you don't have Zeny, you won't be able to use the skill.) +-------------------------- +Banned guild wars & PVP +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +None +# +490351# +As it is, it is a miracle for most people that the person they love is still themselves. +-------------------------- +MSP + 20 +CRI + 3 +-------------------------- +Every 1 Level of Advanced Katar Mastery , ATK + 1, Sonic Blow Damage 5%, Flee - 5 +-------------------------- +Every 1 Level of Sonic Blow, CRI + 1, Grimtooth's extra Damage 5%, HIT - 5 +-------------------------- +Every 1 Level of Soul Destroyer, ASPD + 1%, Meteor Assault Damage 5%, MHP - 1% +-------------------------- +Banned guild wars & PVP +-------------------------- +Type: Accessory +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +Assassin Cross +# +490378# +A book that records cursed skills. Once read, it cannot be closed again. +-------------------------- +INT +3, AGI +3. +-------------------------- +When equipped by a Sage class, +For every 30 Base INT, ASPD increases by 1. +-------------------------- +If worn together with Book of the Apocalypse, +For every weapon upgrade, increases Fire Bolt, Cold Bolt, and Lightning Bolt damage by 10%. +-------------------------- +When equipped by a Star Gladiator or Soul Linker, +For every 2 JOB levels, increases DEX and LUK by 1 each, and increases Esma and Warmth of Star skills' damage by 2% +-------------------------- +Cannot be used in Guild War zones. +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +490399# +A pair of gloves once owned by a great boxer. They were designed to perform powerful attacks. +-------------------------- +STR + 3, AGI + 3 +Max SP + 75 +MDEF + 15 +-------------------------- +Every physical attack has a chance to grant a vigor sphere. +-------------------------- +When equipped by a Monk class +Using the Chain Crush Combo skill will activate the Zen skill. +For every 1 Base Level, increases the damage of the Chain Combo, Combo Finish, Glacier Fist, and Chain Crush Combo skills by 1%. +For every 1 Base Job Level, increases the damage of the Finger Offensive skill by 1%. +-------------------------- +Banned guild wars & PVP +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 55 +# +490537# +Bomber gloves with great destruction power. +-------------------------- +Int+3, Dex+3, SP+50 +-------------------------- +Every 2 Base Lv increases the damage of Blast Mine, Claymore Trap, Land Mine skills by 1%. +-------------------------- +When performing a physical attack +5% chance to gain Trap running ability for 60 seconds. +-------------------------- +Banned guild wars & PVP +-------------------------- +Type: Accessory +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Archer Class +# +500000# +Physical attacks have a random chance to auto-cast Level 1 Cold Bolt. +-------------------------- +Type: Sword +Attack: 100 +Weight: 1 +Weapon Level: 1 +Armor Level: 1 +-------------------------- +Requirement: +Novice, Swordsman, Merchant and Assassin classes +# +500001# +A special One-Handed Sword prepared for your rapid growth. +-------------------------- +ATK +2% +-------------------------- +Decreases Variable Casting Time by 3%. +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 +(Up to Base Level 180) +-------------------------- +Refine Level +7: +For each Level of Learning Potion: +Decreases Variable Casting Time by additional 1%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Attack Booster Suit, Attack Booster Manteau, Attack Booster Greaves and Attack Booster Ring: +ASPD +2 +Increases Physical Damage against enemies of every size by 10%. + +For each 15 Base Level: +Increases damage of Cart Tornado by 1%. +(Up to Base Level 180) + +When using Cart Boost: +Increases damage of Cart Tornado by additional 20% for 60 seconds. +-------------------------- +When equipped with Ranged Booster Suit, Ranged Booster Manteau, Ranged Booster Boots and Ranged Booster Brooch: +MaxHP +10% +Decreases Variable Casting Time by 10%. + +For each 15 Base Level: +Increases damage of Cart Cannon by 1%. +(Up to Base Level 180) + +When using Cart Boost: +Increases damage of Cart Cannon by additional 20% for 60 seconds. +-------------------------- +Type: Sword +Attack: 160 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Genetic +# +500003# +A sword of light that is said to have been used by a warrior of the past. +It resonates with Ancient Hero's Boots. +-------------------------- +MATK +170 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Pressure and Genesis Ray by 5%. +-------------------------- +Refine Level +9: +Decreases variable casting time by 10%. +-------------------------- +Refine Level +11: +Increases Magical Damage with Holy element by 15%. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase INT by 20 and MATK by 15% for 7 seconds when dealing magical damage. +-------------------------- +Type: Sword +Attack: 130 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Royal Guard +# +500004# +A sword made of an ancient slab. +It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Cart Tornado by 10%. +-------------------------- +Refine Level +9: +Increases damage of Cart Tornado by additional 20%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 10%. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase STR by 20 and ATK by 15% for 7 seconds when dealing physical or magical damage. +-------------------------- +Type: Sword +Attack: 190 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Genetic +# +500007# +One-handed sword used by guards in Varmundt's Mansion. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Indestructible in battle +-------------------------- +For each 2 Refine Levels: +Increases Melee Physical Damage by 3%. +-------------------------- +For each 3 Refine Levels: +Critical +2 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 20%). +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Small and Large sized enemies by 25%. +-------------------------- +Refine Level +11: +Enables the use of Bowling Bash with the same Level of Sword Mastery learned. +-------------------------- +Type: Sword +Attack: 250 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Novice classes +# +500008# +Scientific instrument that was kept in the Varmundt's Mansion. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Increases damage of Cart Tornado by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Cart Tornado by additional 15%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Increases damage of Cart Tornado by additional 25%. +-------------------------- +Type: Sword +Attack: 210 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Genetic +# +500013# +A sword with blue colored flame when unsheathed. +With a more intense flame, he began to demonstrate his natural ability. +It resonates with Great Hero Boots. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +Decreases SP Consumption of Cart Cannon by 10%. +Decreases Variable Casting Time by 7%. +-------------------------- +Refine Level +9: +Increases damage of Cart Cannon by 20%. +-------------------------- +Refine Level +11: +Increases damage of Acid Demonstration by 10%. +Decreases Variable Casting Time by additional 5%. +-------------------------- +When equipped with Great Hero Boots: +DEX +10 +Increases Ranged Physical Damage by additional 5%. +-------------------------- +Type: One-Handed Sword +Attack: 200 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Genetic +# +500014# +A sword made of an ancient stone slab. +He recovered the power of the slate and began to show its natural ability. +It resonates with Great Hero Boots. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Cart Tornado by 10%. +Increases damage of Hell's Plant by 5%. +-------------------------- +Refine Level +7: +Increases damage of Cart Tornado damage by additional 20% +Increases damage of Hell's Plant damage by additional 10%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by additional 5%. +MaxHP +10% +-------------------------- +When equipped with Great Hero Boots: +VIT +10 +Increases Melee Physical Damage by 5%. +-------------------------- +Type: Sword +Attack: 205 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Genetic +# +500015# +A One-Handed Sword designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +MATK +180 +-------------------------- +MATK +2% +-------------------------- +For each Refine Level: +MATK +3 +-------------------------- +For each 15 Base Level: +MATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Faith: +Increases Magical Damage with Holy element by 1%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +Increases damage of Pressure and Genesis Ray by 25%. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every size by 15%. +Increases Magical Damage with Holy element by additional 15%. +-------------------------- +Refine Level +13: +Increases damage of Pressure and Genesis Ray by additional 15%. +-------------------------- +Type: One-Handed Sword +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Royal Guard +# +500016# +A One-Handed Sword designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Sword Training: +Increases Melee Physical Damage by 2%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 5%. +Increases damage of Hell's Plant and Cart Tornado by 25%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by additional 10%. +Increases Physical Damage against enemies of every size by 20%. +-------------------------- +Refine Level +13: +Increases damage of Hell's Plant and Cart Tornado by additional 15%. +-------------------------- +Type: One-Handed Sword +Attack: 190 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Genetic +# +500017# +A sword of light that is said to have been used by a warrior of the past. +It resonates with Great Hero Boots. +-------------------------- +MATK +195 +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Pressure and Genesis Ray by 5%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Holy element by 15%. +-------------------------- +Refine Level +11: +Increases Magical Damage against all size by 15%. +Increases damage of Pressure and Genesis Ray by additional 15%. +-------------------------- +When equipped with Great Hero Boots: +INT +10, MATK +7%. +-------------------------- +Type: Sword +Attack: 130 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Royal Guard +# +500018# +A weapon that was restored by using ether to restore a weapon eroded by unclean energy. +New abilities that had not been discovered before began to emerge. +-------------------------- +For each 2 Refine Levels: +Increases damage of Acidified Zone (Fire/Wind) by 5%. +-------------------------- +For each 4 Refine Levels: +ATK +3% +-------------------------- +Type: Sword +Attack: 200 +Weight: 185 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Biolo +# +500019# +A sword containing the pain of bereavement. +-------------------------- +MATK +250 +MATK +10% +-------------------------- +Increases damage of Cross Rain by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Genesis Ray by 4%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Genesis Ray by additional 25%. +-------------------------- +Refine Level +11: +Increases Magical Damage with Holy element by 10%. +-------------------------- +[Bonus by Grade] +[Grade D]: Increases damage of Cross Rain by 5%. +[Grade C]: Increases damage of Cross Rain by 8%, S.MATK +1. +[Grade B]: Increases damage of Cross Rain by 12%, SPL +1. +-------------------------- +Type: Sword +Attack: 195 +Weight: 180 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Imperial Guard +# +500020# +A sword containing the pain of bereavement. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Acidified Zone (Fire/Water/Wind/Ground) by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Cart Cannon by 3%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Cart Cannon by additional 25%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by 10%. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Acidified Zone (Fire/Wind) +5%. +[Grade C]: Damage of Acidified Zone (Water/Ground) +8%, P.ATK +1. +[Grade B]: Damage of Acidified Zone (Fire/Water/Wind/Ground) +10%, POW +2. +-------------------------- +Type: Sword +Attack: 185 +Weight: 180 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Biolo +# +500024# +Thanos' sword remodeled with the addition of Tim Artnard's technology. +-------------------------- +Physical attacks have a random chance to recover 2500 HP and 50 SP every second for 4 seconds. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +ATK +5% +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +9: +Increases damage of Cart Cannon by 15%. +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +Increases damage of Cart Cannon by additional 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +2%, Damage of Acidified Zone (Fire/Water/Wind/Ground) +10%. +[Grade C]: ATK +3%, P.ATK +1. +[Grade B]: Damage of Acidified Zone (Fire/Water/Wind/Ground) +10%. +-------------------------- +Type: Sword +Attack: 190 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Genetic +# +500025# +A guardian sword filled with false beliefs. +-------------------------- +MATK +220 +-------------------------- +Increases damage of Genesis Ray by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Genesis Ray by additional 20%. +-------------------------- +Refine Level +9: +Decreases Genesis Ray skill cooldown by 0.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Genesis Ray by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Holy and Neutral element by 15%. +-------------------------- +Type: Sword +Attack: 200 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Royal Guard +# +500026# +A rapier filled with false beliefs. +-------------------------- +Increases damage of Cart Cannon by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Cart Cannon by additional 20%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Increases damage of Cart Cannon by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +Type: Sword +Attack: 210 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Genetic +# +500027# +A guardian sword reborn with the power of true faith through a ritual of purification. +-------------------------- +MATK +220 +-------------------------- +Increases damage of Genesis Ray by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Genesis Ray by additional 20%. +-------------------------- +Refine Level +9: +Decreases Genesis Ray skill cooldown by 0.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Genesis Ray by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Holy and Neutral element by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Magic Damage against against enemies of every element +15%. +[Grade C]: Damage of Genesis Ray +15%. +[Grade B]: MATK +7%. +[Grade A]: SPL +1, S.MATK +1 per 3 Refine Levels. +-------------------------- +Type: Sword +Attack: 200 +Weight: 200 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Imperial Guard +# +500028# +A rapier reborn with the power of true faith through a ritual of purification. +-------------------------- +Increases damage of Cart Cannon by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Cart Cannon by additional 20%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Increases damage of Cart Cannon by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Cart Cannon +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Sword +Attack: 210 +Weight: 200 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Biolo +# +500030# +A sword known to have been stuck in a rock in a far western country. It has divine powers over its own master. +-------------------------- +MATK +180 +MATK +5% +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +Refine Level +7: +Increases damage of Genesis Ray by 15%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Neutral and Holy element by 15%. +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Increases damage of Genesis Ray by additional 25%. +-------------------------- +When equipped with Illusion Herald of God: +MATK +50 +Decreases Variable Casting Time of all skills 10%. + +Refine Level of Illusion Excalibur and Illusion Herald of God is +7 or higher: +Increases damage of Genesis Ray by additional 10%. + +Total Refine Level of entire set at least +18: +Increases Magical Damage against monsters of every race by 20%. + +Total Refine Level of entire set at least +22: +Decreases Genesis Ray skill cooldown by 1 second. +Decreases After Skill Delay by additional 5%. +-------------------------- +Type: Sword +Attack: 120 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Royal Guard classes +# +500032# +A one-handed sword for beginners made by Paradise Group. +-------------------------- +Base Level at least 20: +ATK +15 +-------------------------- +Base Level at least 30: +ATK +20 +-------------------------- +Base Level at least 45: +ATK +25 +-------------------------- +Type: Sword +Attack: 100 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +Swordsman, Merchant and Thief classes +# +500033# +A one-handed sword for beginners made by Paradise Group. +-------------------------- +MATK +160 +MATK +3% +-------------------------- +Base Level at least 60: +Decreases Variable Casting Time by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Grand Cross by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Grand Cross by additional 15%. +-------------------------- +Type: Sword +Attack: 160 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Crusader classes +# +500034# +A one-handed sword for beginners made by Paradise Group. +-------------------------- +ATK +3% +-------------------------- +Base Level at least 60: +Increases Melee Physical Damage by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Cart Revolution by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Cart Revolution by additional 15%. +-------------------------- +Type: Sword +Attack: 160 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Alchemist classes +# +500035# +A one-handed sword for beginners made by Paradise Group. +-------------------------- +ATK +3% +-------------------------- +Base Level at least 60: +Increases Melee Physical Damage by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Bash by 20%. +-------------------------- +Base Level at least 90: +Increases damage of Bash by additional 20%. +-------------------------- +Type: Sword +Attack: 160 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Novice classes +# +500036# +A high quality one-handed sword for beginners made by Paradise Group. +-------------------------- +MATK +180 +MATK +5% +-------------------------- +For each Level of Faith: +Decreases Variable Casting Time by 1%. +-------------------------- +Base Level at least 105: +Increases Magical Damage with Neutral and Holy element by 10%. +Increases damage of Pressure and Genesis Ray by 25%. +-------------------------- +Base Level at least 110: +Increases Magical Damage against enemies of every size by 15%. +Increases Magical Damage with Neutral and Holy element by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Pressure and Genesis Ray by additional 15%. +-------------------------- +Type: Sword +Attack: 160 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Royal Guard classes +# +500037# +A high quality one-handed sword for beginners made by Paradise Group. +-------------------------- +ATK +5% +-------------------------- +For each Level of Sword Training: +Increases Melee Physical Damage by 2%. +-------------------------- +Base Level at least 105: +Decreases After Skill Delay by 5%. +Increases damage of Hell's Plant and Cart Tornado by 25%. +-------------------------- +Base Level at least 110: +Decreases After Skill Delay by additional 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Hell's Plant and Cart Tornado by additional 15%. +-------------------------- +Type: Sword +Attack: 180 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Genetic classes +# +500038# +An improved version of the sword of light said to have been used by a certain hero. +Resonates with Hero's Boots-LT. +-------------------------- +MATK +195 +MATK +5% +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Pressure and Genesis Ray by 5%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Neutral and Holy element by 15%. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every size by 15%. +Increases damage of Pressure and Genesis Ray by additional 30%. +-------------------------- +When equipped with Hero's Boots-LT: +MATK +10%, S.MATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: MATK +3% +[Grade C]: Magical Damage of Neutral and Holy element +15%. S.MATK +1 +[Grade B]: SPL +3, S.MATK +2. +-------------------------- +Type: Sword +Attack: 130 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Royal Guard classes +# +500039# +An improved version of a sword that emits blue flames when pulled from its sheath. +Resonates with Hero's Boots-LT. +-------------------------- +ATK +5% +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +Increases damage of Cart Cannon by 10%. +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Cart Cannon by additional 20%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Cart Cannon by additional 10%. +Increases damage of Acid Demonstration by 25%. +Decreases Variable Casting Time by additional 8%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Ranged Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2. +-------------------------- +Type: Sword +Attack: 200 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Genetic classes +# +500040# +An improved version of a sword made using an ancient stone slab. +Resonates with Hero's Boots-LT. +-------------------------- +ATK +5% +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Melee Physical Damage by 4%. +-------------------------- +Refine Level +7: +Increases damage of Cart Tornado by 25%. +Increases damage of Hell's Plant by 30%. +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Cart Tornado by additional 20%. +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +MaxHP +10% +Increases damage of Cart Tornado by additional 20%. +Decreases After Skill Delay by additional 5%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Melee Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2. +-------------------------- +Type: Sword +Attack: 205 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Genetic classes +# +500042# +A one-handed sword designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +MATK +2%, MATK +170. +-------------------------- +For each Refine Level: +MATK +3 +-------------------------- +For each 15 Base Level: +MATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Increase SP Recovery: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Refine Level +9: +Increases Magical Damage with Fire and Neutral element by 10%. +Increases damage of Psychic Wave by 25%. +Random chance to auto-cast Level 2 Psychic Wave when dealing melee physical attacks. +-------------------------- +Refine Level +11: +MATK +10% +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Psychic Wave by additional 15%. +-------------------------- +Type: Sword +Attack: 130 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Novice classes +# +500043# +A one-handed sword designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +Critical +15 +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Sword Mastery: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Refine Level +9: +Increases Critical Damage by 10%. +Increases damage of Ignition Break by 25%. +Random chance to auto-cast Level 2 Ignition Break when dealing melee physical attacks. +-------------------------- +Refine Level +11: +Critical +15 +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Ignition Break by additional 15%. +-------------------------- +Type: Sword +Attack: 190 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Novice classes +# +500044# +A blade made of refined clock tower parts and quenched with etheric power. +It supplemented the shortcomings of the existing Fortified Edge. +-------------------------- +For each 2 Refine Levels: +Increases damage of Double Bowling Bash by 6%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Mega Sonic Blow by 8%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 4%. +-------------------------- +[Bonus by Grade] +[Grade D]: POW +2 +[Grade C]: Damage of Double Bowling Bash +10%. +[Grade B]: P.ATK +2. +-------------------------- +Type: Dagger +Attack: 200 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Hyper Novice +# +500045# +A one-handed sword equipped with unholy energy concentrated on the clock tower parts. +It is more difficult to handle than the existing Relapse Blade. +-------------------------- +For each 2 Refine Levels: +Increases damage of Acidified Zone (Fire/Wind) by 6%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Cart Tornado by 7%. +-------------------------- +For each 4 Refine Levels: +ATK +5% +-------------------------- +[Bonus by Grade] +[Grade D]: POW +2 +[Grade C]: Damage of Acidified Zone (Fire/Wind) +10%. +[Grade B]: P.ATK +2 +-------------------------- +Type: Sword +Attack: 230 +Weight: 180 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Biolo +# +500046# +A one-handed sword filled with the pain of bereavement. +-------------------------- +ATK +5% +-------------------------- +Increases damage of Shield Chain Rush and Double Bowling Bash by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Shield Boomerang and Backstab by 3%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 20%). +-------------------------- +Refine Level +9: +Increases damage of Shield Boomerang and Backstab by additional 25%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Shield Chain Rush and Double Bowling Bash +5% +[Grade C]: Damage of Shield Chain Rush and Double Bowling Bash +3%. P.ATK +1 +[Grade B]: Damage of Shield Chain Rush and Double Bowling Bash +5%. POW +1 +-------------------------- +Type: Sword +Attack: 260 +Weight: 160 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Hyper Novice +# +500049# +A sword crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +210 +-------------------------- +Type: Sword +Attack: 220 +Weight: 160 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Swordsman and Merchant classes +# +500050# +A sword crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +210 +-------------------------- +Type: Sword +Attack: 220 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Novice classes +# +500051# +A upgraded version of the sword that causes a strong explosion by activating the detonation system built into the sword. +-------------------------- +MATK +150 +-------------------------- +Random chance to auto cast Fire Bolt and Fire Ball when dealing physical damage, skill level is equal to Refine Level (up to Refine Level 10). +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +Refine Level +9: +Increases damage of Fire Bolt and Fire Ball by 60%. +-------------------------- +Refine Level +11: +Random chance to auto cast Level 4 Hell Inferno when dealing physical damage. +-------------------------- +Type: One-Handed Sword +Attack: 160 +Weight: 80 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 170 +Novice, Swordsman, Thief and Merchant classes +# +510001# +A special Dagger prepared for your rapid growth. +-------------------------- +MATK +160 +-------------------------- +ATK +3% +-------------------------- +Increases Magical Damage with Fire element by 3%. +-------------------------- +For each Refine Level: +ATK +2 +MATK +2 +-------------------------- +For each 15 Base Level: +ATK +3 +MATK +3 +(Up to Base Level 180) +-------------------------- +Refine Level +7: +For each Level of Plagiarism: +Increases Magical Damage with Fire element by additional 1%. +-------------------------- +Refine Level +9: +Increases Damage against enemies of every size by 10%. +-------------------------- +When equipped with Elemental Booster Robe, Elemental Booster Muffler, Elemental Booster Shoes and Elemental Booster Earring: +MATK +20 +Increases Magical Damage against enemies of every size by 10%. + +For each 15 Base Level: +Increases damage of Meteor Storm by 2%. +(Up to Base Level 180) + +When using Preserve: +Increases damage of Meteor Storm by additional 35% for 60 seconds. +-------------------------- +When equipped with Attack Booster Plate, Attack Booster Manteau, Attack Booster Greaves and Attack Booster Ring: +ATK +5% +Decreases After Skill Delay by 15%. + +For each 15 Base Level: +Increases damage of Fatal Menace by 1%. +(Up to Base Level 180) + +When using Preserve: +Increases damage of Fatal Menace by additional 20% for 60 seconds. +-------------------------- +Type: Dagger +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +510002# +A special Nindo prepared for your rapid growth. +-------------------------- +MATK +160 +-------------------------- +ATK +3% +-------------------------- +Increases Magical Damage with Water, Wind and Fire element by 3%. +-------------------------- +For each Refine Level: +ATK +2 +MATK +2 +-------------------------- +For each 15 Base Level: +ATK +3 +MATK +3 +(Up to Base Level 180) +-------------------------- +Refine Level +7: +For each Level of Ninja Mastery: +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +9: +Increases Damage against enemies of every size by 10%. +-------------------------- +When equipped with Elemental Booster Robe, Elemental Booster Muffler, Elemental Booster Shoes and Elemental Booster Earring: +MATK +20 +Decreases After Skill Delay by 10%. + +For each 15 Base Level: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 2%. +(Up to Base Level 180) + +When using Ninja Aura: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 35% for 60 seconds. +-------------------------- +When equipped with Ranged Booster Suit, Ranged Booster Manteau, Ranged Booster Boots and Ranged Booster Brooch: +ATK +20 +Decreases Cross Slash skill cooldown by 1 second. + +For each 15 Base Level: +Increases damage of Kunai Splash by 1%. +(Up to Base Level 180) + +When using Ninja Aura: +Increases damage of Kunai Splash by additional 20% for 60 seconds. +-------------------------- +Type: Dagger +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Ninja +# +510006# +Swords of old travelers who specialize in stabbing rather than cutting. +It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +9: +Increases damage of Fatal Menace by 20%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 7%. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase STR by 20 and ATK by 15% for 7 seconds when dealing physical damage. +-------------------------- +Type: Dagger +Attack: 165 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +510008# +It was a dagger that was easy to see everywhere. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +MATK +170 +Increases damage of Flaming Petals and Freezing Spear by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +6 +-------------------------- +Refine Level +7: +Increases damage of Flaming Petals and Freezing Spear by additional 10%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Increases damage of Flaming Petals and Freezing Spear by additional 10%. +-------------------------- +Type: Dagger +Attack: 160 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Ninja classes +# +510009# +It was a work tool used for various experiments, +but it was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Increases damage of Fatal Menace by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Fatal Menace by additional 10%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Fatal Menace by additional 15%. +-------------------------- +Type: Dagger +Attack: 180 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Shadow Chaser +# +510017# +A Dagger designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Left Hand Mastery: +Decreases After Skill Delay by 1%. +-------------------------- +Refine Level +9: +Increases Melee Physical Damage by 10%. +Increases damage of Meteor Assault and Counter Slash by 25%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by additional 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +13: +Increases damage of Meteor Assault and Counter Slash by additional 15%. +-------------------------- +Type: Dagger +Attack: 180 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +510018# +A Dagger designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +MATK +180 +-------------------------- +ATK +2% +MATK +2% +-------------------------- +For each Refine Level: +ATK +3 +MATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 +MATK +3 +(Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Plagiarism: +Increases Magical Damage with Neutral element by 1%. + +For each Level of Back Stab: +Decreases After Skill Delay by 1%. +-------------------------- +Refine Level +9: +ASPD +1 +Increases damage of Fatal Menace by 25%. +-------------------------- +Refine Level +11: +Increases Damage against enemies of every size by 15%. +Increases Melee Physical Damage by 15%. +-------------------------- +Refine Level +13: +Increases damage of Fatal Menace by additional 15% and Psychic Wave by 15%. +-------------------------- +Type: Dagger +Attack: 190 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +510019# +A dagger once used by ancient wizard. +Seeing the state of magic, he began to demonstrate his natural ability. +It resonates with Great Hero Boots. +-------------------------- +MATK +195 +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +7: +Random chance to auto-cast Level 7 Meteor Storm when dealing physical damage. +-------------------------- +Refine Level +9: +Increases all elemental magical damage by 15%. +-------------------------- +Refine Level +11: +Random chance to auto-cast Level 4 Psychic Wave when dealing physical damage. +-------------------------- +When equipped with Great Hero Boots: +INT +10, MATK +7%. +-------------------------- +Type: Dagger +Attack: 150 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Shadow Chaser +# +510020# +Swords of old travelers who specialize in stabbing rather than cutting. +The experience and knowledge of old travelers began to show their natural abilities. +It resonates with Great Hero Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +7: +Increases damage of Fatal Menace by 25%. +-------------------------- +Refine Level +9: +Decreases SP Consumption of Fatal Menace by 15%. +Decreases After Skill Delay by 7%. +-------------------------- +Refine Level +11: +Increases Melee Physical Damage by 10%. +Decreases After Skill Delay by additional 7%. +-------------------------- +When equipped with Great Hero Boots: +STR +10, ATK +7%. +-------------------------- +Type: Dagger +Attack: 205 +Weight: 110 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Shadow Chaser +# +510021# +Knife for testing. +-------------------------- +Type: Dagger +Attack: 100 +Weight: 10 +Weapon Level: 5 +-------------------------- +Requirement: +Swordsman, Archer, Thief, Wizard, Merchant, Ninja and Soul Linker classes +# +510022# +One of the ninja swords used by ninjas who were good at sword art in the past. +Seeing it with a sharpened blade, it began to show its natural strength. +It must be equipped with the other ninja sword, Surudoi Kaze, in order to demonstrate its true ability, and it seems to resonate with the Great Hero Boots. +-------------------------- +When equipped with Surudoi Kaze: +For each 3 Refine Levels of entire set: +ATK +15 + +For each 5 Refine Levels of entire set: +ATK +3% + +Total Refine Level of entire set at least +14: +Increases damage of Cross Slash by 30%. +Decreases Cross Slash skill cooldown by 2 seconds. + +Total Refine Level of entire set at least +16: +Enables the use of Distorted Cresent, skill Level based on learned Level of Shadow Trampling. +Enables the use of Shadow Trampling, skill Level based on learned Level of Distorted Cresent. + +Total Refine Level of entire set at least +18: +Increases Physical Damage against enemies of every element by 15%. + +Total Refine Level of entire set at least +20: +Increases damage of Cross Slash by 25%. +-------------------------- +When equipped with Surudoi Kaze and Great Hero Boots: +DEX +10, ATK +7%. +-------------------------- +Type: Dagger +Attack: 190 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Ninja +# +510026# +A weapon that was restored by using ether to restore a weapon eroded by unclean energy. +New abilities that had not been discovered before began to emerge. +-------------------------- +MATK +215 +-------------------------- +For each 2 Refine Levels: +Increases damage of Abyss Square by 5%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with every element by 2%. +-------------------------- +Type: Dagger +Attack: 180 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Abyss Chaser +# +510027# +A dagger containing the pain of bereavement. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Shadow Stab by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Cross Impact by 3%. +-------------------------- +Refine Level +7: +Increases Critical Damage by 15%. +-------------------------- +Refine Level +9: +Increases damage of Cross Impact by additional 30%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Shadow Stab +5%. +[Grade C]: Damage of Shadow Stab +8%, P.ATK +1. +[Grade B]: Damage of Shadow Stab +12%, POW +1. +-------------------------- +Type: Dagger +Attack: 190 +Weight: 90 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Shadow Cross +# +510028# +A dagger containing the pain of bereavement. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Deft Stab by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Fatal Menace by 3%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases damage of Fatal Menace by additional 30%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 12%. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Deft Stab +5%. +[Grade C]: Damage of Deft Stab +8%, P.ATK +1. +[Grade B]: Damage of Deft Stab +12%, POW +1. +-------------------------- +Type: Dagger +Attack: 190 +Weight: 90 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Abyss Chaser +# +510030# +Thanos' dagger remodeled with the addition of Tim Artnard's technology. +-------------------------- +MATK +160 +-------------------------- +Magical attacks have a random chance to recover 1000 HP and 100 SP every second for 4 seconds. +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Magical Damage with Fire and Neutral element by 4%. +-------------------------- +Refine Level +7: +MATK +5% +Increases Magical Damage with Fire and Neutral element by additional 10%. +-------------------------- +Refine Level +9: +Physical attacks have a random chance to auto-cast Level 7 Meteor Storm and Level 4 Psychic Wave. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every size by 15%. +Increases Magical Damage with Fire and Neutral element by additional 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: MATK +2%, Damage of From the Abyss +10%. +[Grade C]: MATK +3%, S.MATK +1. +[Grade B]: Damage of From the Abyss +10%. +-------------------------- +Type: Sword +Attack: 190 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Genetic +# +510032# +A dagger filled with false beliefs. +-------------------------- +Increases damage of Fatal Menace by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Fatal Menace by additional 20%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Fatal Menace by additional 25%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +Type: Dagger +Attack: 210 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Shadow Chaser +# +510033# +A dagger reborn with the power of true faith through a ritual of purification. +-------------------------- +Increases damage of Fatal Menace by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Fatal Menace by additional 20%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Fatal Menace by additional 25%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Fatal Menace +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Dagger +Attack: 210 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Abyss Chaser +# +510034# +A dagger used in ancient rituals and rituals, it has an unknown power. +-------------------------- +MATK +180 +MaxSP +100 +-------------------------- +Increases Natrual SP Recovery by 10%. +Physical attacks have a chance to increase MATK by 10% and MATK by 70 for 10 seconds. +-------------------------- +Refine Level +7: +Increases Magical Damage with every element by 15%. +-------------------------- +Refine Level +9: +Increases Magical Damage against enemies of Medium and Large size by 20%. +-------------------------- +Refine Level +11: +Magical attacks have a certain chance to increase Magical Damage against monsters of every race by 15% for 10 seconds. +-------------------------- +When equipped with Illusion Guard: +Refine Level of Illusion Ancient Dagger and Illusion Guard is +7 or higher: +Perfect HIT +10% + +Total Refine Level of entire set at least +18: +Increases Magical Damage with every element by additional 15%. +Melee physical attacks have certain chance to auto-cast Level 3 Killing Cloud. + +Total Refine Level of entire set at least +22: +When Killing Cloud is used: +Magical attacks have a certain chance to auto-cast Level 4 Poison Buster for 30 seconds. +-------------------------- +Type: Dagger +Attack: 107 +Weight: 60 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Shadow Chaser classes +# +510035# +A dagger for beginners made by the Paradise Group. +-------------------------- +MATK +100 +-------------------------- +Base Level at least 20: +ATK +15, MATK +15. +-------------------------- +Base Level at least 30: +ATK +20, MATK +20. +-------------------------- +Base Level at least 45: +ATK +25, MATK +25. +-------------------------- +Type: Dagger +Attack: 100 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +Novice, Swordsman, Archer, Thief, Mage, Merchant, Ninja and Soul Linker classes +# +510036# +A dagger made by the Paradise Group. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Base Level at least 60: +Increases damage of Backstab by 20%. +-------------------------- +Base Level at least 75: +Increases damage of Raid by 20%. +-------------------------- +Base Level at least 90: +Increases damage of Raid by additional 15%. +-------------------------- +Type: Dagger +Attack: 160 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Rogue classes +# +510037# +A dagger made by the Paradise Group. +-------------------------- +Critical +15 +-------------------------- +Base Level at least 60: +Critical +30 +-------------------------- +Base Level at least 75: +Increases Critical Damage by 5%. +-------------------------- +Base Level at least 90: +Increases Critical Damage by additional 10%. +-------------------------- +Type: Dagger +Attack: 160 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Soul Linker classes +# +510038# +A high-quality dagger made by the Paradise Group. +-------------------------- +MATK +180 +ATK +3% +MATK +3% +-------------------------- +For each Level of Plagiarism: +Decreases After Skill Delay by 1%. +-------------------------- +Base Level at least 105: +Increases damage of Fatal Menace by 25%. +-------------------------- +Base Level at least 110: +Increases Damage against enemies of every size by 15%. +Increases Melee Physical Damage by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Fatal Menace by additional 15%. +Increases Magical Damage with Neutral and Fire element by 15%. +-------------------------- +Type: Dagger +Attack: 180 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +510039# +A high-quality dagger made by the Paradise Group. +-------------------------- +ATK +5% +-------------------------- +For each Level of Sword Mastery: +Increases Melee Physical Damage by 1%. +-------------------------- +Base Level at least 105: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases damage of Raid and Backstab by 25%. +-------------------------- +Base Level at least 110: +Increases Melee Physical Damage by additional 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Raid and Backstab by additional 15%. +-------------------------- +Type: Dagger +Attack: 180 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Novice classes +# +510040# +An improved version of the dagger said to have been used by wizards who admired magic swords. +Resonates with Hero's Boots-LT. +-------------------------- +MATK +195 +MATK +5% +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +7: +Melee Physical attacks have a certain chance to auto-cast Level 7 Meteor Storm. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 15%. +Increases Magical Damage against enemies of every element by 15%. +-------------------------- +Refine Level +11: +Melee Physical attacks have a certain chance to auto-cast Level 5 Psychic Wave. +-------------------------- +When equipped with Hero's Boots-LT: +MATK +10%, S.MATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: MATK +3% +[Grade C]: Magical Damage of every element +15%. S.MATK +1 +[Grade B]: SPL +3, S.MATK +2. +-------------------------- +Type: Dagger +Attack: 150 +Weight: 80 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Shadow Chaser classes +# +510041# +An improved version of the old traveler's sword that specialized in stabbing rather than cutting. +Resonates with Hero's Boots-LT. +-------------------------- +ATK +5% +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +7: +Increases damage of Fatal Menace by 25%. +-------------------------- +Refine Level +9: +Increases damage of Fatal Menace by additional 20%. +Decreases After Skill Delay by 7%. +-------------------------- +Refine Level +11: +Increases Melee Physical Damage by 15%. +Decreases After Skill Delay by additional 7%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Melee Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2. +-------------------------- +Type: Dagger +Attack: 215 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Shadow Chaser classes +# +510049# +Be careful with the rusty bladed garden knife, as it can be dangerous from deadly poison. +-------------------------- +MATK +190 +-------------------------- +Random chance to auto-cast Level 1 Killing Cloud when dealing melee physical attacks. +Random chance to increase Magical Damage with Poison element by 15% when dealing physical attacks. +-------------------------- +Refine Level +7: +Increases Magical Damage with every element by 15%. +-------------------------- +Refine Level +9: +Increases Magical Damage against enemies of Small and Medium size by 10%. +-------------------------- +Refine Level +11: +Increases Magical Damage with Poison element by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: S.MATK +2 +[Grade C]: SPL +3, S.MATK +1 +[Grade B]: Magical Damage with every element +15%. +-------------------------- +Type: Dagger +Attack: 117 +Weight: 30 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Shadow Chaser classes +# +510050# +A dagger made of refined clock tower parts and quenched with etheric power. +It supplemented the shortcomings of the existing Fortified Dagger. +-------------------------- +MATK +200 +-------------------------- +For each 2 Refine Levels: +Increases damage of Red Flame Cannon and Cold Blooded Cannon by 5%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Darkening Cannon by 7%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with every element by 3%. +-------------------------- +[Bonus by Grade] +[Grade D]: SPL +1 +[Grade C]: Damage of Red Flame Cannon and Cold Blooded Cannon +7%. +[Grade B]: S.MATK +1 +-------------------------- +Type: Dagger +Attack: 180 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Shinkiro, Shiranui +# +510051# +A dagger equipped with unholy energy concentrated on the clock tower parts. +It is more difficult to handle than the existing Relapse Dagger. +-------------------------- +MATK +230 +-------------------------- +For each 2 Refine Levels: +Increases damage of Abyss Square by 7%. +-------------------------- +For each 3 Refine Levels: +Increases damage of From the Abyss by 10%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with every element by 3%. +Increases Attack Speed (Decreases After Attack Delay) by 7%. +-------------------------- +[Bonus by Grade] +[Grade D]: SPL +2 +[Grade C]: Damage of Abyss Square +10%. +[Grade B]: S.MATK +2 +-------------------------- +Type: Dagger +Attack: 160 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Abyss Chaser +# +510052# +A dagger equipped with unholy energy concentrated on the clock tower parts. +It is more difficult to handle than the existing Relapse Edge. +-------------------------- +For each 2 Refine Levels: +Increases damage of Shadow Dance by 5%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Shadow Flash by 7%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 3%. +-------------------------- +[Bonus by Grade] +[Grade D]: POW +2 +[Grade C]: Damage of Shadow Dance +7%. +[Grade B]: P.ATK +2 +-------------------------- +Type: Dagger +Attack: 200 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Shinkiro, Shiranui +# +510053# +A weapon enhanced by using Etel's magical power. +New abilities that had not been discovered before began to emerge. +-------------------------- +MATK +180 +-------------------------- +For each 2 Refine Levels: +Increases damage of Red Flame Cannon and Cold Blooded Cannon by 4%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with every element by 2%. +-------------------------- +Type: Dagger +Attack: 160 +Weight: 110 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Shinkiro, Shiranui +# +510054# +A weapon enhanced by using Etel's magical power. +New abilities that had not been discovered before began to emerge. +-------------------------- +For each 2 Refine Levels: +Increases damage of Double Bowling Bash by 5%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 2%. +-------------------------- +Type: Dagger +Attack: 170 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Hyper Novice +# +510055# +A weapon that was restored by using ether to restore a weapon eroded by unclean energy. +New abilities that had not been discovered before began to emerge. +-------------------------- +For each 2 Refine Levels: +Increases damage of Shadow Dance by 4%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 2%. +-------------------------- +Type: Dagger +Attack: 180 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Shinkiro, Shiranui +# +510056# +A dagger containing the pain of bereavement. +-------------------------- +ATK +7% +-------------------------- +Increases damage of Kunai - Rotation and Kunai - Refraction by 7%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Cross Slash by 2%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 10%. +-------------------------- +Refine Level +9: +Increases damage of Cross Slash by additional 20%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 10%. +Decreases Cross Slash skill cooldown by 1 second. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Kunai - Rotation and Kunai - Refraction +5%. +[Grade C]: Damage of Kunai - Rotation and Kunai - Refraction +3%, P.ATK +1. +[Grade B]: Damage of Kunai - Rotation and Kunai - Refraction +5%, POW +1. +-------------------------- +Type: Dagger +Attack: 210 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Shinkiro, Shiranui +# +510057# +A dagger containing the pain of bereavement. +-------------------------- +MATK +200 +MATK +7% +-------------------------- +Increases damage of Thundering Cannon and Golden Dragon Cannon by 7%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 2%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 20%. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every race, except Players, by 10%. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Thundering Cannon and Golden Dragon Cannon +5%. +[Grade C]: Damage of Thundering Cannon and Golden Dragon Cannon +3%, S.MATK +1. +[Grade B]: Damage of Thundering Cannon and Golden Dragon Cannon +5%, SPL +1. +-------------------------- +Type: Dagger +Attack: 180 +Weight: 110 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Shinkiro, Shiranui +# +510060# +An improved version of one of the ninja swords used by ninjas skilled in dual swordsmanship in the past. +Resonates with Hero's Boots-LT. +It's true abilities can only be realized when equipped with the other ninja sword, Surudoi Kaze. +-------------------------- +When equipped with Surudoi Kaze: +Base Level at least 210: +POW +2, P.ATK +1. + +For each 3 Refine Levels of entire set: +ATK +15 + +For each 5 Refine Levels of entire set: +ATK +4% + +Total Refine Level of entire set at least +14: +Increases damage of Cross Slash by 35%. +Decreases Cross Slash skill cooldown by 2 seconds. + +Total Refine Level of entire set at least +16: +Enables the use of Distorted Cresent, skill Level based on learned Level of Shadow Trampling. +Enables the use of Shadow Trampling, skill Level based on learned Level of Distorted Cresent. +Increases Physical Damage against enemies of every element by 15%. + +Total Refine Level of entire set at least +18: +Increases damage of Cross Slash by 25%. + +Total Refine Level of entire set at least +20: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +When equipped with Surudoi Kaze and Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Ranged Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2. +-------------------------- +Type: Dagger +Attack: 190 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Ninja classes +# +510061# +A dagger crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +210 +-------------------------- +Type: Dagger +Attack: 210 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Shadow Chaser classes +# +510062# +A dagger crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +210 +-------------------------- +Type: Dagger +Attack: 210 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Novice classes +# +510066# +A upgraded version of the dagger with black blade encrusted to transparent white beads. +-------------------------- +MATK +150 +-------------------------- +Increases Damage against Shadow and Undead elemental by 7%. +-------------------------- +Refine Level +7: +Increases Damage against Shadow and Undead elemental by additional 13%. +-------------------------- +Refine Level +9: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 20%. +Increases damage of Kunai Splash by 35%. +-------------------------- +Refine Level +11: +Increases Damage against monsters of Demon and Undead race by 15%. +-------------------------- +Type: Dagger +Attack: 150 +Weight: 90 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 170 +Ninja classes +# +510070# +A knife said to have been used by brave heroes in the past. +It is said that it can only be used by those who have received the angel's blessing. +It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Back Stab by 20%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Enables the use of Level 7 Fatal Menace. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase STR by 20 and ATK by 15% for 7 seconds when dealing physical damage. +-------------------------- +Type: Dagger +Attack: 200 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Novice +# +510071# +A knife said to have been used by brave heroes in the past. +It is said that it can only be used by those who have received the angel's blessing. +An ancient power has been imbued and it has begun to show its original ability. +It seems to resonate with the Great Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Back Stab by 25%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every element by 15%. +Enables the use of Level 10 Fatal Menace. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases damage of Fatal Menace by 10%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 5%. +Increases Melee Physical Damage by 15%. +-------------------------- +When equipped with Great Hero Boots: +STR +10 +Increases Melee Physical Damage by 7%. +-------------------------- +Type: Dagger +Attack: 210 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Novice +# +510072# +An improved version of the knife said to have been used by brave heroes in the past. +It is said that it can only be used by those who have received the angel's blessing. +Resonates with Hero's Boots-LT. +-------------------------- +ATK +5% +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Back Stab by 25%. +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of every element by 15%. +Enables the use of Level 10 Fatal Menace. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases damage of Fatal Menace by 15%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 10%. +Increases Melee Physical Damage by 20%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Melee Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2. +-------------------------- +Type: Dagger +Attack: 220 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Novice +# +510501# +Dagger made of metal with enhanced abilities by adding Phracon and Emveretarcon to Steel. +-------------------------- +Type: Dagger +Attack: 118 +Weight: 80 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Assassin, Rogue +# +520000# +A special Axe prepared for your rapid growth. +-------------------------- +Indestructible in battle +-------------------------- +ATK +5% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Up to Base Level 180) +-------------------------- +Refine Level +7: +For each Level of Weaponry Research: +ATK +3 +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +When equipped with Attack Booster Plate, Attack Booster Manteau, Attack Booster Greaves and Attack Booster Ring: +Decreases After Skill Delay by 10%. +Decreases Axe Tornado skill cooldown by 1 second. + +For each 15 Base Level: +Increases damage of Axe Tornado by 1%. +(Up to Base Level 180) + +When using Weapon Perfection: +Increases damage of Axe Tornado by additional 20% for 60 seconds. +-------------------------- +When equipped with Ranged Booster Suit, Ranged Booster Manteau, Ranged Booster Boots and Ranged Booster Brooch: +Decreases Variable Casting Time by 10%. +Decreases After Skill Delay by 15%. + +For each 15 Base Level: +Increases damage of Arms Cannon by 1%. +(Up to Base Level 180) + +When using Weapon Perfection: +Increases damage of Arms Cannon by additional 20% for 60 seconds. +-------------------------- +Type: One-Handed Axe +Attack: 200 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +520002# +Automatic robots break down, smash and fall apart. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Power Swing by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Power Swing by additional 15%. +-------------------------- +Refine Level +9: +Decreases Axe Tornado skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Power Swing by additional 25%. +-------------------------- +Type: One-Handed Axe +Attack: 250 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Mechanic +# +520008# +A axe filled with false beliefs. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Axe Boomerang by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Axe Boomerang by additional 20%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Axe Boomerang by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +Type: One-Handed Axe +Attack: 270 +Weight: 750 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Mechanic +# +520009# +A axe reborn with the power of true faith through a ritual of purification. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Axe Boomerang by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Axe Boomerang by additional 20%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Axe Boomerang by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Axe Boomerang +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: One-Handed Axe +Attack: 270 +Weight: 750 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Meister +# +520010# +A one-handed axe for beginners made by the Paradise Group. +-------------------------- +Indestructible in battle +-------------------------- +Base Level at least 20: +ATK +15 +-------------------------- +Base Level at least 30: +ATK +20 +-------------------------- +Base Level at least 45: +ATK +25 +-------------------------- +Type: One-Handed Axe +Attack: 100 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +Merchant +# +520011# +A one-handed axe made by the Paradise Group. +-------------------------- +Indestructible in battle +-------------------------- +ATK +3% +-------------------------- +Base Level at least 60: +Increases Melee Physical Damage by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Cart Revolution damage by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Cart Revolution damage by additional 15%. +-------------------------- +Type: One-Handed Axe +Attack: 160 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Blacksmith +# +520012# +A high-quality one-handed axe made by the Paradise Group. +-------------------------- +Indestructible in battle +-------------------------- +ATK +5% +-------------------------- +For each Level of Mado Gear Licence: +Increases Ranged Physical Damage by 2%. +-------------------------- +Base Level at least 105: +Decreases Variable Casting Time by 10%. +Increases damage of Vulcan Arm, Boost Knuckle and Arms Cannon by 25%. +-------------------------- +Base Level at least 110: +Decreases After Skill Delay by 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Vulcan Arm, Boost Knuckle and Arms Cannon by additional 15%. +-------------------------- +Type: One-Handed Axe +Attack: 250 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +520017# +A axe crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +Indestructible in battle +-------------------------- +MATK +210 +-------------------------- +Type: One-Handed Axe +Attack: 240 +Weight: 500 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Swordsman and Merchant classes +# +530000# +A special One-Handed Spear prepared for your rapid growth. +-------------------------- +MATK +160 +ATK +3% +-------------------------- +Increases Magical Damage with Holy element by 3%. +-------------------------- +For each Refine Level: +ATK +2 +MATK +2 +-------------------------- +For each 15 Base Level: +ATK +3 +MATK +3 +(Up to Base Level 180) +-------------------------- +Refine Level +7: +For each Level of Faith: +Increases Magical Damage with Holy element by additional 1%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Default Booster Robe, Default Booster Muffler, Default Booster Shoes and Default Booster Earring: +MATK +20 +Decreases After Skill Delay by 15%. + +For each 15 Base Level: +Increases damage of Genesis Ray by 1%. +(Up to Base Level 180) + +When using Cure: +Increases damage of Genesis Ray by additional 20% for 60 seconds. +-------------------------- +When equipped with Ranged Booster Suit, Ranged Booster Manteau, Ranged Booster Boots and Ranged Booster Brooch: +ASPD +2 +Increases Ranged Physical Damage by 10%. + +For each 15 Base Level: +Increases damage of Banishing Point by 2%. +(Up to Base Level 180) + +When using Spear Quicken: +Increases damage of Banishing Point by additional 35% for 60 seconds. +-------------------------- +Type: One-Handed Spear +Attack: 160 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Royal Guard +# +530002# +A nicely decorated spear from the Varmundt's Mansion. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +MATK +200 +Increases damage of Genesis Ray by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Genesis Ray by additional 10%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Increases damage of Genesis Ray by additional 15%. +-------------------------- +Type: One-Handed Spear +Attack: 190 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Royal Guard +# +530005# +A One-Handed Spear designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Spear Quicken: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Refine Level +9: +ASPD +1 +Increases damage of Overbrand, Banishing Point and Cannon Spear by 25%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +Increases Melee and Ranged Physical Damage by 15%. +-------------------------- +Refine Level +13: +Increases damage of Overbrand, Banishing Point and Cannon Spear by additional 15%. +-------------------------- +Type: One-Handed Spear +Attack: 200 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Royal Guard +# +530006# +It is said that it was used by a hero who received the blessing of the water spirit in the past. +A beautiful window reminiscent of a raging wave. +The power of the sea inhabited and began to show its natural ability. +It resonates with Great Hero Boots. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +Increases damage of Cannon Spear and Banishing Point by 15%. +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases damage of Cannon Spear and Banishing Point by additional 20%. +-------------------------- +Refine Level +11: +Perfect HIT +7 +MaxSP +5% +-------------------------- +When equipped with Great Hero Boots: +STR +10, ATK +7%. +-------------------------- +Type: One-Handed Spear +Attack: 195 +Weight: 140 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Royal Guard +# +530009# +A weapon enhanced by using Etel's magical power. +New abilities that had not been discovered before began to emerge. +-------------------------- +For each 2 Refine Levels: +Increases damage of Shield Shooting by 5%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 2%. +-------------------------- +Type: One-Handed Spear +Attack: 200 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Imperial Guard +# +530010# +A spear containing the pain of bereavement. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Overslash by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Overslash by 3%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Overslash by additional 25%. +-------------------------- +Refine Level +11: +Increases Melee Physical Damage by 10%. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Overslash +5%. +[Grade C]: Damage of Overslash +8%, P.ATK +1. +[Grade B]: Damage of Overslash +12%, POW +1. +-------------------------- +Type: One-Handed Spear +Attack: 205 +Weight: 190 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Imperial Guard +# +530012# +Thanos' spear remodeled with the addition of Tim Artnard's technology. +-------------------------- +Physical attacks have a random chance to recover 2500 HP and 50 SP every second for 4 seconds. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Hesperus Lit by 10%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by 10%. +Increases damage of Hesperus Lit by additional 15%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +Increases damage of Overbrand by 25%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +Increases Melee Physical Damage by additional 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +2%, Damage of Overslash +10%. +[Grade C]: ATK +3%, P.ATK +1. +[Grade B]: Damage of Overslash +10%. +-------------------------- +Type: One-Handed Spear +Attack: 190 +Weight: 180 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Royal Guard +# +530013# +A guardian spear filled with false beliefs. +-------------------------- +Increases damage of Overbrand by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Overbrand by additional 20%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Overbrand by additional 25%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +Type: One-Handed Spear +Attack: 220 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Royal Guard +# +530014# +A guardian spear reborn with the power of true faith through a ritual of purification. +-------------------------- +Increases damage of Overbrand by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Overbrand by additional 20%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Overbrand by additional 25%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Overbrand +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: One-Handed Spear +Attack: 220 +Weight: 180 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Imperial Guard +# +530015# +It is said that metabolic activity is activated when worn as a large one-handed spear that contains the energy of the earth. +-------------------------- +MaxHP +10% +Critical +15 +-------------------------- +For each 3 Refine Levels: +ATK +20 +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +Refine Level +7: +Increases damage of Cannon Spear by 15%. +Increases Critical Damage by 30%. +-------------------------- +Refine Level +9: +Increases damage of Banishing Point by 25%. +Increases Ranged Physical Damage by 15%. +-------------------------- +Refine Level +11: +Increases damage of Cannon Spear and Banishing Point by additional 15%. +-------------------------- +When equipped with Illusion Hot-Blooded Headband: +When using Shield skills: +Increases damage of Cannon Spear and Banishing Point by 25% for 60 seconds. + +Refine Level of Illusion Gelerdria and Illusion Hot-Blooded Headband is +7 or higher: +Increases Ranged Physical Damage by 15%. + +Total Refine Level of entire set at least +18: +Increases Physical Damage against monsters of every race by 15%. + +Total Refine Level of entire set at least +22: +Increases damage of Cannon Spear and Banishing Point by additional % by twice the sum of refine level. +-------------------------- +Type: One-Handed Spear +Attack: 170 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Royal Guard classes +# +530017# +A one-handed spear made by the Paradise Group. +-------------------------- +ATK +3% +-------------------------- +Base Level at least 60: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Base Level at least 75: +Increases damage of Holy Cross by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Holy Cross by additional 15%. +-------------------------- +Type: One-Handed Spear +Attack: 160 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Crusader +# +530018# +A high-quality one-handed spear made by the Paradise Group. +-------------------------- +ATK +5% +-------------------------- +For each Level of Spear Quicken: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Base Level at least 105: +ASPD +1 +Increases damage of Banishing Point, Cannon Spear and Overbrand by 25%. +-------------------------- +Base Level at least 110: +Increases Physical Damage against enemies of every size by 15%. +Increases Melee and Ranged Physical Damage by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Banishing Point, Cannon Spear and Overbrand by additional 15%. +-------------------------- +Type: One-Handed Spear +Attack: 180 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Royal Guard +# +530019# +An improved version of a beautiful spear reminiscent of a raging wave that is said to have been used by a hero blessed with a water spirit in the past. +Resonates with Hero's Boots-LT. +-------------------------- +ATK +5% +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +Increases damage of Cannon Spear and Banishing Point by 15%. +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases damage of Cannon Spear and Banishing Point by additional 35%. +-------------------------- +Refine Level +11: +Perfect HIT +15% +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Physical Damage against enemies of every element +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2. +-------------------------- +Type: One-Handed Spear +Attack: 205 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Royal Guard classes +# +530023# +A spear made of refined clock tower parts and quenched with etheric power. +It supplemented the shortcomings of the existing Fortified Spear. +-------------------------- +For each 2 Refine Levels: +Increases damage of Shield Shooting by 6%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Shield Chain by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 3%. +-------------------------- +[Bonus by Grade] +[Grade D]: POW +2 +[Grade C]: Damage of Shield Shooting +7%. +[Grade B]: P.ATK +2 +-------------------------- +Type: Spear +Attack: 230 +Weight: 160 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Imperial Guard +# +530025# +A spear crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +210 +-------------------------- +Type: One-Handed Spear +Attack: 220 +Weight: 210 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Swordman classes +# +530031# +An upgraded version of the lance with a small propulsion mechanism. +It is smaller than the existing lance, perhaps for propulsion. +-------------------------- +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by additional 10%). +-------------------------- +Refine Level +9: +Increases damage of Banishing Point by 20%. +Increases damage of Cannon Spear by 20%. +-------------------------- +Refine Level +11: +Increases damage of Banishing Point by additional 25%. +-------------------------- +Type: One-Handed Spear +Attack: 190 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 170 +Royal Guard +# +540000# +A special Book prepared for your rapid growth. +-------------------------- +MATK +165 +-------------------------- +MATK +3% +-------------------------- +Increases Magical Damage with Neutral element by 3%. +-------------------------- +For each Refine Level: +MATK +3 +-------------------------- +For each 15 Base Level: +MATK +3 (Up to Base Level 180) +-------------------------- +Refine Level +7: +For each Level of Indulge: +Increases Magical Damage with Neutral element by additional 2%. +-------------------------- +Refine Level +9: +Increases Magical Damage against enemies of every size by 10%. +-------------------------- +When equipped with Elemental Booster Robe, Elemental Booster Muffler, Elemental Booster Shoes and Elemental Booster Earring: +MATK +20 +Increases Magical Damage against enemies of every size by additional 10%. + +For each 15 Base Level: +Increases damage of Psychic Wave by 1%. +(Up to Base Level 180) + +When using Memorize: +Increases damage of Psychic Wave by additional 20% for 60 seconds. +-------------------------- +When equipped with Default Booster Robe, Default Booster Muffler, Default Booster Shoes and Default Booster Earring: +MATK +20 +ASPD +2 + +For each 15 Base Level: +Increases damage of Fire Bolt, Cold Bolt, Lightning Bolt by 2%. +(Up to Base Level 180) + +When using Double Casting: +Increases damage of Fire Bolt, Cold Bolt, Lightning Bolt by additional 35% for 60 seconds. +-------------------------- +Type: Book +Attack: 165 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +540001# +A special Book prepared for your rapid growth. +-------------------------- +ATK +5% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Up to Base Level 180) +-------------------------- +Refine Level +7: +For each Level of Sprint: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Refine Level +9: +ATK +10% +-------------------------- +When equipped with Attack Booster Plate, Attack Booster Manteau, Attack Booster Greaves and Attack Booster Ring: +ATK +20 +Increases Physical Damage against enemies of every size by 10%. + +For each 15 Base Level: +Increases damage of Full Moon Kick by 1%. +(Up to Base Level 180) + +When using Flash Kick: +Increases damage of Full Moon Kick by additional 20% for 60 seconds. +-------------------------- +When equipped with Ranged Booster Suit, Ranged Booster Manteau, Ranged Booster Boots and Ranged Booster Brooch: +ATK +20 +ASPD +2 + +For each 15 Base Level: +Increases damage of Falling Star by 2%. +(Up to Base Level 180) + +When using Weapon Perfection: +Increases damage of Falling Star by additional 35% for 60 seconds. +-------------------------- +Type: Book +Attack: 160 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Star Emperor +# +540004# +A technical book that was kept in the Varmundt's Mansion. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of New Moon Kick by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of New Moon Kick by additional 15%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Increases damage of Full Moon Kick by 25%. +-------------------------- +Type: Book +Attack: 210 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Star Emperor +# +540005# +A recording book that was kept in the Varmundt's Mansion. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +MATK +220 +Physical and magical attacks have a chance to recover 300SP per second for 5 seconds. +Decreases damage taken from Normal class by 15%. +-------------------------- +For each 3 Refine Levels: +MATK +6 +Decreases Variable Casting Time by 3%. +-------------------------- +Refine Level +7: +Increases damage of Fire Bolt and Lightning Bolt by 25%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Increases damage of Fire Bolt and Lightning Bolt by additional 30%. +-------------------------- +Type: Book +Attack: 160 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Sorcerer +# +540009# +A Book designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +Indestructible in battle +-------------------------- +MATK +160 +-------------------------- +MATK +2% +-------------------------- +For each Refine Level: +MATK +3 +-------------------------- +For each 15 Base Level: +MATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Auto Spell: +Increases Magical Damage with Water, Wind, Earth and Fire element by 1%. +-------------------------- +Refine Level +9: +ASPD +1 +Increases damage of Fire Bolt, Cold Bolt, Lightning Bolt, Earth Spike and Heaven's Drive by 25%. +-------------------------- +Refine Level +11: +ASPD +1 +Increases Magical Damage with Water, Wind, Earth and Fire element by additional 15%. +-------------------------- +Refine Level +13: +Increases damage of Fire Bolt, Cold Bolt, Lightning Bolt, Earth Spike and Heaven's Drive by additional 15%. +-------------------------- +Type: Book +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +540010# +An ancient book titled The Only Sun on the Sky. +It is not known when anyone wrote down, but it contains knowledge of the heavenly bodies. +Seeing the intense energy of the sun, it began to exert its natural power. +It resonates with Great Hero Boots. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Melee Physical Damage by 4%. +-------------------------- +Refine Level +7: +Increases damage of Prominence Kick by 20%. +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases damage of Solar Burst by 25%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of enemies of every race by 15%. +-------------------------- +When equipped with Great Hero Boots: +STR +10, ATK +7%. +-------------------------- +Type: Book +Attack: 200 +Weight: 110 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Star Emperor +# +540011# +The Bible on Demon Era, reportedly used by ancient high priests. +Seeing that the divine power was inhabited, it began to exert its natural power. +It resonates with Great Hero Boots. +-------------------------- +MATK +190 +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Duple Light and Judex by 25%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases Magical Damage with Holy element by 15%. +-------------------------- +Refine Level +9: +Increases damage of Duple Light and Judex by additional 30%. +-------------------------- +Refine Level +11: +Physical attacks have a chance to auto-cast Level 5 Adoramus (If you learned a higher Level, it will auto cast that Level instead.). +-------------------------- +When equipped with Great Hero Boots: +INT +10, MATK +7%. +-------------------------- +Type: Book +Attack: 205 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Archbishop +# +540013# +A weapon enhanced by using Etel's magical power. +New abilities that had not been discovered before began to emerge. +-------------------------- +Indestructible in battle +-------------------------- +MATK +210 +-------------------------- +For each 2 Refine Levels: +Increases damage of Conflagration by 5%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with every element by 2%. +-------------------------- +Type: Book +Attack: 190 +Weight: 80 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Elemental Master +# +540014# +A book containing the pain of bereavement. +-------------------------- +Indestructible in battle +-------------------------- +MATK +215 +-------------------------- +MATK +10% +-------------------------- +Increases damage of Diamond Storm and Terra Drive by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Diamond Dust and Earth Grave by 3%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Diamond Dust and Earth Grave by additional 25%. +-------------------------- +Refine Level +11: +Decreases Diamond Dust and Earth Grave skill cooldown by 2 seconds. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Diamond Storm and Terra Drive +5%. +[Grade C]: Damage of Diamond Storm and Terra Drive +8%, S.MATK +1. +[Grade B]: Damage of Diamond Storm and Terra Drive +12%, SPL +1. +-------------------------- +Type: Book +Attack: 150 +Weight: 160 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Elemental Master +# +540015# +A book containing the pain of bereavement. +-------------------------- +Indestructible in battle +-------------------------- +MATK +215 +-------------------------- +ATK +5% +MATK +5% +-------------------------- +Increases damage of Petitio by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Duple Light by 3%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases damage of Duple Light by additional 30%. +-------------------------- +Refine Level +11: +Increases Magical Damage with Holy element by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Petitio +5%. +[Grade C]: Damage of Petitio +8%, S.MATK +1. +[Grade B]: Damage of Petitio +12%, SPL +1. +-------------------------- +Type: Book +Attack: 230 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Cardinal +# +540019# +A magic book filled with false beliefs. +-------------------------- +MATK +220 +-------------------------- +Increases damage of Psychic Wave by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Psychic Wave by additional 20%. +-------------------------- +Refine Level +9: +Decreases Psychic Wave skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Psychic Wave by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Neutral element by 15%. +-------------------------- +Type: Book +Attack: 170 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Sorcerer +# +540020# +A poison book filled with false beliefs. +-------------------------- +MATK +220 +-------------------------- +Increases damage of Poison Buster by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Poison Buster by additional 20%. +-------------------------- +Refine Level +9: +Decreases Poison Buster skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Poison Buster by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Poison element by 15%. +-------------------------- +Type: Book +Attack: 170 +Weight: 130 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Sorcerer +# +540021# +A bible filled with false beliefs. +-------------------------- +MATK +210 +-------------------------- +Increases damage of Duple Light by 15%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Duple Light by additional 25%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Increases damage of Duple Light by additional 40%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +Type: Book +Attack: 210 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Archbishop +# +540022# +A moon book filled with false beliefs. +-------------------------- +Increases damage of Full Moon Kick by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Full Moon Kick by additional 20%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Full Moon Kick by additional 25%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +Type: Book +Attack: 230 +Weight: 110 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Star Emperor +# +540023# +A star book filled with false beliefs. +-------------------------- +Increases damage of Falling Star by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Falling Star by additional 20%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Falling Star by additional 25%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +Type: Book +Attack: 240 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Star Emperor +# +540024# +A magic book reborn with the power of true faith through a ritual of purification. +-------------------------- +MATK +200 +-------------------------- +Increases damage of Psychic Wave by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Psychic Wave by additional 20%. +-------------------------- +Refine Level +9: +Decreases Psychic Wave skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Psychic Wave by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Neutral element by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Magic Damage against against enemies of every element +15%. +[Grade C]: Damage of Psychic Wave +15%. +[Grade B]: MATK +7%. +[Grade A]: SPL +1, S.MATK +1 per 3 Refine Levels. +-------------------------- +Type: Book +Attack: 170 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Elemental Master +# +540025# +A poison book reborn with the power of true faith through a ritual of purification. +-------------------------- +MATK +200 +-------------------------- +Increases damage of Poison Buster by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Poison Buster by additional 20%. +-------------------------- +Refine Level +9: +Decreases Poison Buster skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Poison Buster by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Poison element by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Magic Damage against against enemies of every element +15%. +[Grade C]: Damage of Poison Buster +15%. +[Grade B]: MATK +7%. +[Grade A]: SPL +1, S.MATK +1 per 3 Refine Levels. +-------------------------- +Type: Book +Attack: 170 +Weight: 130 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Elemental Master +# +540026# +A bible reborn with the power of true faith through a ritual of purification. +-------------------------- +MATK +210 +-------------------------- +Increases damage of Duple Light by 15%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Duple Light by additional 25%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Increases damage of Duple Light by additional 40%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Damage against against enemies of every element +15%. +[Grade C]: Damage of Duple Light +25%. +[Grade B]: ATK +7%, MATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Book +Attack: 210 +Weight: 180 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Cardinal +# +540027# +A book made by the Paradise Group. +-------------------------- +MATK +160 +MATK +3% +-------------------------- +Base Level at least 60: +Decreases Variable Casting Time by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Heaven's Drive by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Heaven's Drive by additional 15%. +-------------------------- +Type: Book +Attack: 100 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Sage +# +540028# +A book made by the Paradise Group. +-------------------------- +MATK +160 +MATK +3% +-------------------------- +Base Level at least 60: +Increases Attack Speed (Decreases After Attack Delay of all skills by 10%). +-------------------------- +Base Level at least 75: +Increases damage of Fire Bolt and Cold Bolt by 20%. +-------------------------- +Base Level at least 90: +Increases damage of Lightning Bolt and Earth Spike by 20%. +-------------------------- +Type: Book +Attack: 100 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Sage +# +540029# +A book made by the Paradise Group. +-------------------------- +ATK +3% +-------------------------- +Base Level at least 60: +Increases Melee Physical Damage by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Tornado Kick and Roundhouse Kick by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Tornado Kick and Roundhouse Kick by additional 15%. +-------------------------- +Type: Book +Attack: 160 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Taekwon classes +# +540030# +A book made by the Paradise Group. +-------------------------- +ATK +3% +-------------------------- +Base Level at least 60: +Increases Melee Physical Damage by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Heel Drop and Counter Kick by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Heel Drop and Counter Kick by additional 15%. +-------------------------- +Type: Book +Attack: 160 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Taekwon classes +# +540031# +A high-quality book made by the Paradise Group. +-------------------------- +MATK +180 +MATK +5% +-------------------------- +For each Level of Land Protector: +Decreases Variable Casting Time by 2%. +-------------------------- +Base Level at least 105: +Increases Magical Damage with Water, Wind, Earth and Neutral element by 10%. +Increases damage of Psychic Wave, Diamond Dust, Earth Grave and Varetyr Spear by 25%. +-------------------------- +Base Level at least 110: +Increases Magical Damage with Water, Wind, Earth and Neutral element by additional 15%. +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Psychic Wave, Diamond Dust, Earth Grave and Varetyr Spear by additional 15%. +-------------------------- +Type: Book +Attack: 150 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +540032# +A high-quality book made by the Paradise Group. +-------------------------- +MATK +180 +MATK +5% +-------------------------- +For each Level of Auto Spell: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Base Level at least 105: +Increases Magical Damage with Water, Wind, Earth and Fire element by 10%. +Increases damage of Psychic Wave, Diamond Dust, Earth Grave and Varetyr Spear by 25%. +-------------------------- +Base Level at least 110: +Increases Magical Damage with Water, Wind, Earth and Fire element by additional 15%. +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Psychic Wave, Diamond Dust, Earth Grave and Varetyr Spear by additional 15%. +-------------------------- +Type: Book +Attack: 150 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +540033# +A high-quality book made by the Paradise Group. +-------------------------- +ATK +5% +-------------------------- +For each Level of Peaceful Break: +Increases Melee Physical Damage by 1%. +-------------------------- +Base Level at least 105: +ATK +10% +Increases damage of Prominence Kick and Solar Burst by 25%. +-------------------------- +Base Level at least 110: +Increases Melee Physical Damage by additional 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Prominence Kick and Solar Burst by additional 15%. +-------------------------- +Type: Book +Attack: 180 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Star Emperor +# +540034# +A high-quality book made by the Paradise Group. +-------------------------- +ATK +5% +-------------------------- +For each Level of Peaceful Break: +Increases Melee Physical Damage by 1%. +-------------------------- +Base Level at least 105: +ATK +10% +Increases damage of New Moon Kick and Full Moon Kick by 25%. +-------------------------- +Base Level at least 110: +Increases Melee Physical Damage by additional 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of New Moon Kick and Full Moon Kick by additional 15%. +-------------------------- +Type: Book +Attack: 180 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Star Emperor +# +540035# +An improved version of the Bible on exorcism that is said to have been used by high priests in ancient times. +Resonates with Hero's Boots-LT. +-------------------------- +Indestructible in battle +-------------------------- +MATK +190 +MATK +5% +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +10, MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Duple Light and Judex by 25%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases Magical Damage with Neutral and Holy element by 15%. +-------------------------- +Refine Level +9: +Increases damage of Duple Light and Judex by additional 45%. +-------------------------- +Refine Level +11: +Physical attacks have a certain chance to auto-cast Level 5 Judex. +(If you learned a higher Level, it will auto cast that Level instead.) +-------------------------- +When equipped with Hero's Boots-LT: +MATK +10%, S.MATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: MATK +3% +[Grade C]: Magical Damage of Neutral and Holy element +15%. S.MATK +1 +[Grade B]: SPL +3, S.MATK +2. +-------------------------- +Type: Book +Attack: 220 +Weight: 70 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Archbishop classes +# +540039# +A Book designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Kihop: +Increases Melee Physical Damage by 1%. +-------------------------- +Refine Level +9: +Increases Melee Physical Damage by additional 10%. +Increases damage of Full Moon Kick, New Moon Kick and Falling Star by 25%. +-------------------------- +Refine Level +11: +ATK +10% +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +13: +Increases damage of Full Moon Kick, New Moon Kick and Falling Star by additional 15%. +-------------------------- +Type: Book +Attack: 230 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Star Emperor +# +540040# +A Book designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Kihop: +Increases Melee Physical Damage by 1%. +-------------------------- +Refine Level +9: +Increases Melee Physical Damage by additional 10%. +Increases damage of Prominence Kick and Solar Burst by 25%. +-------------------------- +Refine Level +11: +ATK +10% +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +13: +Increases damage of Prominence Kick and Solar Burst by additional 15%. +-------------------------- +Type: Book +Attack: 230 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Star Emperor +# +540041# +A book made of refined clock tower parts and quenched with etheric power. +It supplemented the shortcomings of the existing Fortified Book. +-------------------------- +Indestructible in battle +-------------------------- +MATK +240 +-------------------------- +For each 2 Refine Levels: +Increases damage of Conflagration and Lightning Land by 6%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Psychic Wave by 15%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with every element by 4%. +-------------------------- +[Bonus by Grade] +[Grade D]: SPL +2 +[Grade C]: Damage of Conflagration and Lightning Land +10%. +[Grade B]: S.MATK +2 +-------------------------- +Type: Book +Attack: 180 +Weight: 90 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Elemental Master +# +540042# +A book equipped with unholy energy concentrated on the clock tower parts. +It is more difficult to handle than the existing Relapse Book. +-------------------------- +Indestructible in battle +-------------------------- +For each 2 Refine Levels: +Increases damage of Noon Blast by 6%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Rising Sun by 8%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 4%. +-------------------------- +[Bonus by Grade] +[Grade D]: POW +2 +[Grade C]: Damage of Noon Blast +10%. +[Grade B]: P.ATK +2 +-------------------------- +Type: Book +Attack: 220 +Weight: 150 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Sky Emperor +# +540043# +A weapon that was restored by using ether to restore a weapon eroded by unclean energy. +New abilities that had not been discovered before began to emerge. +-------------------------- +Indestructible in battle +-------------------------- +For each 2 Refine Levels: +Increases damage of Noon Blast by 5%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 3%. +-------------------------- +Type: Book +Attack: 190 +Weight: 130 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Sky Emperor +# +540044# +A book containing the pain of bereavement. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Sunset Blast and Dawn Break by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Solar Burst and Full Moon Kick by 3%. +-------------------------- +Refine Level +7: +Increases Melee Physical Damage by 10%. +-------------------------- +Refine Level +9: +Increases damage of Solar Burst and Full Moon Kick by additional 25%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Sunset Blast and Dawn Break +5%. +[Grade C]: Damage of Sunset Blast and Dawn Break +3%, P.ATK +1. +[Grade B]: Damage of Sunset Blast and Dawn Break +5%, POW +1. +-------------------------- +Type: Book +Attack: 260 +Weight: 90 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Sky Emperor +# +540045# +A book reborn with the power of true faith through a ritual of purification. +-------------------------- +Increases damage of Falling Star by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Falling Star by additional 20%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Falling Star by additional 25%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Damage against against enemies of every element +15%. +[Grade C]: Damage of Falling Star +15%. +[Grade B]: ATK +7% +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Book +Attack: 240 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Sky Emperor +# +540046# +A moon book reborn with the power of true faith through a ritual of purification. +-------------------------- +Increases damage of Full Moon Kick by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Full Moon Kick by additional 20%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Full Moon Kick by additional 25%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Damage against against enemies of every element +15%. +[Grade C]: Damage of Full Moon Kick +15%. +[Grade B]: ATK +7% +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Book +Attack: 230 +Weight: 110 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Sky Emperor +# +540048# +An improved version of an ancient book titled The Only Sun on the Sky. +Resonates with Hero's Boots-LT. +-------------------------- +Indestructible in battle +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Melee Physical Damage by 4%. +-------------------------- +Refine Level +7: +Increases damage of Prominence Kick and Solar Burst by 20%. +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases damage of Prominence Kick and Solar Burst by additional 25%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +Increases Melee Physical Damage by additional 15%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Melee Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2. +-------------------------- +Type: Book +Attack: 200 +Weight: 110 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Star Emperor classes +# +540049# +A book crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +Indestructible in battle +-------------------------- +MATK +210 +-------------------------- +Type: Book +Attack: 210 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Sage, Priest and Star Gladiator classes +# +540051# +An upgraded version of a Circuit Board made in unknown format. +It's pretty hard and suitable to swing. +-------------------------- +ATK +5% +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases Damage against monsters of Small and Medium size by 30%. +-------------------------- +Refine Level +11: +Increases Critical Damage by 20%. +Increases Melee Physical Damage by 10%. +-------------------------- +Type: Book +Attack: 180 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 170 +Sage, Priest and Star Gladiator +# +540053# +A Bible sealed with evil energy. +-------------------------- +Indestructible in battle +-------------------------- +ATK +5%, POW +2. +Increases damage of Petitio by 5%. +-------------------------- +Refine Level +5: +Increases damage of Petitio by additional 10%. +-------------------------- +Refine Level +7: +Increases Melee Physical Damage by 5%. +-------------------------- +Refine Level +9: +Increases damage of Petitio by additional 10%. +-------------------------- +Refine Level +10: +Critical +10 +-------------------------- +Refine Level +11: +Increases damage of Petitio by additional 5%. +Increases Critical Damage by 20%. +-------------------------- +[Bonus by Grade] +[Grade D]: Melee Physical Damage +10%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Physical Damage against enemies of every race +10%. +[Grade A]: Physical Damage against enemies of every element +10%. +-------------------------- +Type: Book +Attack: 210 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 215 +Cardinal +# +540054# +A book created to gather and use the power of darkness. +-------------------------- +Indestructible in battle +-------------------------- +ATK +5%, POW +2. +Increases damage of Midnight Kick by 5%. +-------------------------- +Refine Level +5: +Increases damage of Midnight Kick by additional 10%. +-------------------------- +Refine Level +7: +Increases Melee Physical Damage by 5%. +-------------------------- +Refine Level +9: +Increases damage of Midnight Kick by additional 10%. +-------------------------- +Refine Level +10: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Increases damage of Midnight Kick by additional 5%. +Increases damage of Dawn Break by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Melee Physical Damage +10%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Physical Damage against enemies of every race +10%. +[Grade A]: Physical Damage against enemies of every element +10%. +-------------------------- +Type: Book +Attack: 200 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 215 +Sky Emperor +# +540055# +A tablet meaning that the beginning of light is the source of recorded life. +-------------------------- +Indestructible in battle +-------------------------- +ATK +5%, POW +2. +Increases damage of Noon Blast by 5%. +-------------------------- +Refine Level +5: +Increases damage of Noon Blast by additional 10%. +-------------------------- +Refine Level +7: +Increases Melee Physical Damage by 5%. +-------------------------- +Refine Level +9: +Increases damage of Noon Blast by additional 10%. +-------------------------- +Refine Level +10: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Noon Blast by additional 5%. +Increases damage of Sunset Blast by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Melee Physical Damage +10%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Physical Damage against enemies of every race +10%. +[Grade A]: Physical Damage against enemies of every element +10%. +-------------------------- +Type: Book +Attack: 200 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 215 +Sky Emperor +# +550001# +A special wand prepared for your rapid growth. +-------------------------- +MATK +170 +-------------------------- +Indestructible in battle +-------------------------- +MATK +2% +-------------------------- +Increases Magical Damage with Shadow element by 3%. +-------------------------- +For each Refine Level: +MATK +3 +-------------------------- +For each 15 Base Level: +MATK +3 (Up to Base Level 180) +-------------------------- +Refine Level +7: +For each Level of Sprint: +Increases Magical Damage with Shadow element by additional 1%. +-------------------------- +Refine Level +9: +Increases Magical Damage against enemies of every size by 10%. +-------------------------- +When equipped with Elemental Booster Robe, Elemental Booster Muffler, Elemental Booster Shoes and Elemental Booster Earring: +MATK +20 +Increases Magical Damage against enemies of every size by additional 10%. + +For each 15 Base Level: +Increases damage of Eswhoo by 1%. +(Up to Base Level 180) + +When using Espa: +Increases damage of Eswhoo by additional 20% for 60 seconds. +-------------------------- +When equipped with Default Booster Robe, Default Booster Muffler, Default Booster Shoes and Default Booster Earring: +MATK +20 +Decreases Variable Casting Time by 10%. + +For each 15 Base Level: +Increases damage of Curse Explosion by 1%. +(Up to Base Level 180) + +When using Curse of Wicked Soul: +Increases damage of Curse Explosion by additional 20% for 60 seconds. +-------------------------- +Type: One-Handed Staff +Attack: 120 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Soul Reaper +# +550002# +A special One-Handed Foxtail prepared for your rapid growth. +-------------------------- +MATK +260 +-------------------------- +Indestructible in battle +-------------------------- +ATK +5% +MATK +5% +-------------------------- +For each Refine Level: +ATK +2 +MATK +2 +-------------------------- +For each 15 Base Level: +ATK +3 +MATK +3 +(Up to Base Level 180) +-------------------------- +Refine Level +7: +For each Level of Nyang Grass: +Decreases Variable Casting Time by 2%. + +For each Level of Spirit of Savage: +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +9: +Increases Damage against enemies of every size by 10%. +-------------------------- +When equipped with Elemental Booster Robe, Elemental Booster Muffler, Elemental Booster Shoes and Elemental Booster Earring: +MATK +20 +Increases Magical Damage against enemies of every size by additional 10%. + +For each 15 Base Level: +Increases damage of Catnip Meteor by 2%. +(Up to Base Level 180) + +When using Silvervine Stem Spear: +Increases damage of Catnip Meteor by additional 35% for 60 seconds. +-------------------------- +When equipped with Ranged Booster Suit, Ranged Booster Manteau, Ranged Booster Boots and Ranged Booster Brooch: +ATK +20 +Decreases After Skill Delay by 10%. + +For each 15 Base Level: +Increases damage of Picky Peck by 2%. +(Up to Base Level 180) + +When using Arclouse Dash: +Increases damage of Picky Peck by additional 35% for 60 seconds. +-------------------------- +Type: One-Handed Staff +Attack: 250 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +550006# +It's as strong as steel, probably because +of the mysterious stones that grew in the Einbech mine. +-------------------------- +MATK +350 +ATK +7% +MATK +7% +Increases damage of Catnip Meteor and Picky Peck by 15%. +-------------------------- +Indestructible in battle +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Catnip Meteor and Picky Peck by additional 20%. +Physical and magical attacks have a chance to increase Physical and Magical Damage against all size enemies by 10% for 10 seconds +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 20%. +-------------------------- +Type: One-Handed Staff +Attack: 300 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 170 +Summoner (Doram) +# +550007# +A cane with a blue glow that an ancient hero used. +It resonates with Ancient Hero's Boots. +-------------------------- +Indestructible in battle +-------------------------- +MATK +150 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Diamond Dust by 8%. +-------------------------- +Refine Level +9: +Increases Magical Damage against Undead elemental by 10%. +-------------------------- +Refine Level +11: +Increases Magical Damage with Water element by 7%. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase INT by 20 and MATK by 15% for 7 seconds when dealing magical damage. +-------------------------- +Type: Staff +Attack: 40 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +550008# +A small rod used to set fire to and from a Varmundt's house. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Indestructible in battle +-------------------------- +MATK +200 +Increases damage of Espa by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Espa by 15%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Increases damage of Eswhoo by 25%. +-------------------------- +Type: One-Handed Staff +Attack: 130 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Soul Reaper +# +550009# +It was a common weed that grew in the mansion botanical garden, +but was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Indestructible in battle +-------------------------- +MATK +330 +Magical attacks have a chance to recover 300SP per second for 5 seconds. +Decreases damage taken from Normal class by 15%. +-------------------------- +For each 3 Refine Levels: +MATK +6 +Decreases Variable Casting Time by 3%. +-------------------------- +Refine Level +7: +Increases damage of Silvervine Stem Spear and Catnip Meteor by 15%. +-------------------------- +Refine Level +9: +Decreases Catnip Meteor skill cooldown by 1.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Silvervine Stem Spear and Catnip Meteor by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 280 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Summoner (Doram) +# +550010# +A One-Handed Staff designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +Indestructible in battle +-------------------------- +MATK +160 +MATK +2% +-------------------------- +For each Refine Level: +MATK +3 +-------------------------- +For each 15 Base Level: +MATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Land Protector: +Increases Magical Damage with Water, Wind, Earth, Neutral and Poison element by 1%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +Increases damage of Psychic Wave, Diamond Dust, Earth Grave, Varetyr Spear and Poison Buster by 25%. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every size by 15%. +Increases Magical Damage with Water, Wind, Earth, Neutral and Poison element by additional 15%. +-------------------------- +Refine Level +13: +Increases damage of Psychic Wave, Diamond Dust, Earth Grave, Varetyr Spear and Poison by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Sorcerer +# +550011# +A One-Handed Staff designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +Indestructible in battle +-------------------------- +MATK +160 +-------------------------- +MATK +2% +-------------------------- +For each Refine Level: +MATK +3 +-------------------------- +For each 15 Base Level: +MATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Meditatio: +Increases Magical Damage with Holy element by 1%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +Increases damage of Magnus Exorcismus and Adoramus by 25%. +-------------------------- +Refine Level +11: +Increases Magic Damage against enemies of every size by 15%. +Increases Magical Damage with Holy element by additional 15%. +-------------------------- +Refine Level +13: +Increases damage of Magnus Exorcismus and Adoramus by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +550012# +An old cane used by Ancient Heroes. +The ancient power was inhabited and began to show its natural abilities. +It looks old but has hidden magic, it resonates with Great Hero Boots. +-------------------------- +Indestructible in battle +-------------------------- +MATK +195 +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Earth Grave by 12%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Earth and Neutral element by 15%. +-------------------------- +Refine Level +9: +Increases damage of Psychic Wave by 25% +Decreases Variable Casting Time by 7%. +-------------------------- +Refine Level +11: +Decreases Variable Casting Time by additional 8%. +Decreases Psychic Wave skill cooldown by 1 second. +-------------------------- +When equipped with Great Hero Boots: +INT +10, MATK +7%. +-------------------------- +Type: One-Handed Staff +Attack: 40 +Weight: 75 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Sorcerer +# +550013# +A blue lighted staff said to have been used by an ancient hero. +The ancient power was inhabited and began to show its natural abilities. +It resonates with Great Hero Boots. +-------------------------- +Indestructible in battle +-------------------------- +MATK +150 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Diamond Dust by 12%. +-------------------------- +Refine Level +7: +Increases Magical Damage against all elemental by 15%. +Increases damage of Varetyr Spear by 15%. +-------------------------- +Refine Level +9: +Increases damage of Varetyr Spear by additional 20%. +Decreases Variable Casting Time by 7%. +-------------------------- +Refine Level +11: +Decreases Variable Casting Time by additional 8%. +Decreases Varetyr Spear skill cooldown by 2 seconds. +-------------------------- +When equipped with Great Hero Boots: +INT +10, MATK +7%. +-------------------------- +Type: Staff +Attack: 40 +Weight: 75 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Sorcerer +# +550014# +Mysterious puppy grass where you hear a nipple every time you shake. +Seeing it with the softer shaking, it began to show its natural strength. +It resonates with Great Hero Boots. +-------------------------- +Indestructible in battle +-------------------------- +MATK +350 +-------------------------- +For each 2 Refine Levels: +ATK +15 +MATK +15 +-------------------------- +For each 3 Refine Levels: +ATK +2% +MATK +2% +-------------------------- +Refine Level +7: +Increases damage of Lunatic Carrot Beat and Silvervine Stem Spear by 25%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Increases damage of Picky Peck and Catnip Meteor by 25%. +-------------------------- +When equipped with Great Hero Boots: +LUK +10, ATK +7%, MATK +7%. +-------------------------- +Type: One-Handed Staff +Attack: 350 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Summoner (Doram) +# +550015# +A pendulum that was used by Soul Reapers with considerable spiritual power and contains the power to lead the spirits. +When you shake it, you can hear the spirits sing and it begins to exert its natural strength. +It resonates with Great Hero Boots. +-------------------------- +MATK +190 +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Magical Damage with every element by 2%. +-------------------------- +Refine Level +7: +Increases damage of Espa by 15%. +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Eswhoo by 25%. +-------------------------- +Refine Level +11: +Magical attacks have a 7% chance to recover 230 SP per second for 10 seconds. +-------------------------- +When equipped with Great Hero Boots: +INT +10, MATK +7%. +-------------------------- +Type: One-Handed Staff +Attack: 70 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Soul Reaper +# +550019# +A staff containing the pain of bereavement. +-------------------------- +Indestructible in battle +-------------------------- +MATK +215 +MATK +10% +-------------------------- +Increases damage of Conflagration and Lightning Land by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Psychic Wave and Varetyr Spear by 3%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Psychic Wave and Varetyr Spear by additional 25%. +-------------------------- +Refine Level +11: +Decreases Psychic Wave skill cooldown by 1.5 seconds. +Decreases Varetyr Spear skill cooldown by 2 seconds. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Conflagration and Lightning Land +5%. +[Grade C]: Damage of Conflagration and Lightning Land +8%, S.MATK +1. +[Grade B]: Damage of Conflagration and Lightning Land +12%, SPL +1. +-------------------------- +Type: One-Handed Staff +Attack: 150 +Weight: 160 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Elemental Master +# +550020# +A staff containing the pain of bereavement. +-------------------------- +Indestructible in battle +-------------------------- +MATK +250 +MATK +10% +-------------------------- +Increases damage of Framen by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Adoramus by 3%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Adoramus by additional 30%. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every race, except Players by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Framen +5%. +[Grade C]: Damage of Framen +8%, S.MATK +1. +[Grade B]: Damage of Framen +12%, SPL +1. +-------------------------- +Type: One-Handed Staff +Attack: 150 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Cardinal +# +550023# +Thanos' staff remodeled with the addition of Tim Artnard's technology. +-------------------------- +Indestructible in battle +-------------------------- +MATK +180 +-------------------------- +Magical attacks have a random chance to recover 1000 HP and 100 SP every second for 4 seconds. +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Varetyr Spear by 10%. +-------------------------- +Refine Level +7: +Increases Wind elemental magical damage by 15%. +Increases damage of Varetyr Spear by additional 15%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 15%. +Decreases Varetyr Spear skill cooldown by 2.5 seconds. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every size by 15%. +Decreases Psychic Wave skill cooldown by 1 second. +-------------------------- +[Bonus by Grade] +[Grade D]: MATK +2%, Damage of Lightning Land +10%. +[Grade C]: MATK +3%, S.MATK +1. +[Grade B]: Damage of Lightning Land +10%. +-------------------------- +Type: One-Handed Staff +Attack: 100 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Sorcerer +# +550024# +A wand filled with false beliefs. +-------------------------- +MATK +210 +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Adoramus by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Adoramus by additional 20%. +-------------------------- +Refine Level +9: +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Adoramus by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Holy element by 15%. +-------------------------- +Type: One-Handed Staff +Attack: 160 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Archbishop +# +550025# +A soul stick filled with false beliefs. +-------------------------- +MATK +205 +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Eswhoo by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Eswhoo by additional 20%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Increases damage of Eswhoo by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Water, Wind, Earth, Fire, Ghost, Shadow and Holy element by 15%. +-------------------------- +Type: One-Handed Staff +Attack: 160 +Weight: 190 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Soul Reaper +# +550026# +A dark wand filled with false beliefs. +-------------------------- +MATK +220 +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Curse Explosion by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Curse Explosion by additional 20%. +-------------------------- +Refine Level +9: +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Curse Explosion by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Shadow element by 15%. +-------------------------- +Type: One-Handed Staff +Attack: 160 +Weight: 160 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Soul Reaper +# +550027# +A foxtail wand filled with false beliefs. +-------------------------- +MATK +350 +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Catnip Meteor by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Catnip Meteor by additional 20%. +-------------------------- +Refine Level +9: +Decreases Catnip Meteor skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Catnip Meteor by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Neutral element by 15%. +-------------------------- +Type: One-Handed Staff +Attack: 200 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Summoner (Doram) +# +550028# +A foxtail model filled with false beliefs. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Picky Peck by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Picky Peck by additional 20%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Picky Peck by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +Type: One-Handed Staff +Attack: 320 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Summoner (Doram) +# +550029# +A wand reborn with the power of true faith through a ritual of purification. +-------------------------- +MATK +210 +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Adoramus by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Adoramus by additional 20%. +-------------------------- +Refine Level +9: +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Adoramus by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Holy element by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Magical Damage against against enemies of every element +15%. +[Grade C]: Damage of Adoramus +15%. +[Grade B]: MATK +7%. +[Grade A]: SPL +1, S.MATK +1 per 3 Refine Levels. +-------------------------- +Type: One-Handed Staff +Attack: 160 +Weight: 150 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Cardinal +# +550030# +It is a staff surrounded by thorn vines and has a strong magical meaning. +-------------------------- +Indestructible in battle +-------------------------- +MATK +180 +INT +3 +DEX +3 +-------------------------- +For each Refine Level: +Ignores Magical Defense of monsters of every race, except Players, by 3%. +-------------------------- +For each 2 Refine Levels: +Decreases After Skill Delay by 3%. +-------------------------- +Refine Level +7: +MATK +7% +Decreases Variable Casting Time by 7%. +-------------------------- +Refine Level +9: +Increases Magical Damage against enemies of Holy element and monsters of Angel race by 20%. +-------------------------- +Refine Level +11: +Increases Magical Damage with Poison, Shadow, Undead and Ghost element by 15%. +-------------------------- +When equipped with Illusion Morpheus's Hood: +MATK +20 + +Refine Level of Illusion Thorny Staff of Darkness and Illusion Morpheus's Hood is +7 or higher: +Increases Magical Damage against enemies of every element by 10%. + +Total Refine Level of entire set at least +18: +Increases Magical Damage against enemies of Shadow element and monsters of Demon race by 20%. + +Total Refine Level of entire set at least +22: +Increases Magical Damage against enemies of every size by 15%. +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +Type: One-Handed Staff +Attack: 60 +Element:Shadow +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Wizard, Acolyte and Soul Linker classes +# +550031# +A long staff engraved with the divine goddess of light. +-------------------------- +Indestructible in battle +-------------------------- +MATK +190 +INT +6 +VIT +2 +-------------------------- +Magical attacks have a certain chance to recover 150 SP per second for 4 seconds. +-------------------------- +For each 3 Refine Levels: +Increases damage of Judex by 20%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Holy element by 15%. +-------------------------- +Refine Level +9: +Increases damage of Judex by additional 30%. +Decreases After Skill Delay by 15%. +-------------------------- +Refine Level +11: +When using Magnus Exorcismus: +Increases Magical Damage against enemies of every size by 20% for 15 seconds. +-------------------------- +When equipped with Illusion Saint Robe: +MATK +50 +Decreases After Skill Delay by 10%. + +Refine Level of Illusion Dea Staff and Illusion Saint Robe is +7 or higher: +MATK +10% +ASPD +2 + +Total Refine Level of entire set at least +18: +Increases Magical Damage against monsters of every race by 20%. + +Total Refine Level of entire set at least +22: +Decreases Variable Casting Time by 15%. +Decreases After Skill Delay by additional 10%. +-------------------------- +Type: One-Handed Staff +Attack: 50 +Element:Holy +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Archbishop classes +# +550032# +A staff for beginners made by the Paradise Group. +-------------------------- +MATK +100 +-------------------------- +Indestructible in battle +-------------------------- +Base Level at least 20: +MATK +15 +-------------------------- +Base Level at least 30: +MATK +20 +-------------------------- +Base Level at least 45: +MATK +25 +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +Mage, Acolyte and Soul Linker classes +# +550033# +A foxtail for beginners made by the Paradise Group. +-------------------------- +MATK +100 +-------------------------- +Indestructible in battle +-------------------------- +Base Level at least 20: +ATK +15, MATK +15 +-------------------------- +Base Level at least 30: +ATK +20, MATK +20 +-------------------------- +Base Level at least 45: +ATK +25, MATK +25 +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +Summoner (Doram) +# +550034# +A one-handed staff made by the Paradise Group. +-------------------------- +MATK +160 +MATK +3% +-------------------------- +Indestructible in battle +-------------------------- +Base Level at least 60: +Decreases Variable Casting Time of skills by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Storm Gust and Meteor Storm by 20%. +-------------------------- +Base Level at least 90: +Increases damage of Lord of Vermillion and Heaven's Drive by 20%. +-------------------------- +Type: One-Handed Staff +Attack: 100 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Wizard classes +# +550035# +A one-handed staff made by the Paradise Group. +-------------------------- +MATK +160 +MATK +3% +-------------------------- +Indestructible in battle +-------------------------- +Base Level at least 60: +Decreases Variable Casting Time of skills by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Jupitel Thunder by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Jupitel Thunder by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 100 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Wizard classes +# +550036# +A one-handed staff made by the Paradise Group. +-------------------------- +MATK +160 +MATK +3% +-------------------------- +Indestructible in battle +-------------------------- +Base Level at least 60: +Decreases Variable Casting Time of skills by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Magnus Exorcismus by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Magnus Exorcismus by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 100 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Priest classes +# +550037# +A one-handed staff made by the Paradise Group. +-------------------------- +MATK +160 +MATK +3% +-------------------------- +Indestructible in battle +-------------------------- +Base Level at least 60: +Decreases Variable Casting Time of skills by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Esma by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Esma by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 100 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Soul Linker classes +# +550038# +A foxtail made by the Paradise Group. +-------------------------- +ATK +3% +-------------------------- +Indestructible in battle +-------------------------- +Base Level at least 60: +Increases Ranged Physical Damage by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Picky Peck by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Picky Peck by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 160 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Summoner (Doram) +# +550039# +A foxtail made by the Paradise Group. +-------------------------- +MATK +160 +MATK +3% +-------------------------- +Indestructible in battle +-------------------------- +Base Level at least 60: +Decreases Variable Casting Time of skills by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Catnip Meteor by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Catnip Meteor by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 100 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Summoner (Doram) +# +550040# +A one-handed staff made by the Paradise Group. +-------------------------- +MATK +160 +MATK +3% +-------------------------- +Indestructible in battle +-------------------------- +Base Level at least 60: +Decreases Variable Casting Time of skills by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by 20%. +-------------------------- +Base Level at least 90: +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by additional 20%. +-------------------------- +Type: One-Handed Staff +Attack: 100 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Super Novice classes +# +550041# +A high-quality one-handed staff made by the Paradise Group. +-------------------------- +MATK +180 +MATK +5% +-------------------------- +Indestructible in battle +-------------------------- +For each Level of Meditatio: +Decreases Variable Casting Time of skills by 1%. +-------------------------- +Base Level at least 105: +Increases Magical Damage with Holy element by 10%. +Increases damage of Adoramus by 25%. +-------------------------- +Base Level at least 110: +Increases Magical Damage with Holy element by additional 15%. +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Adoramus by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 150 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Archbishop classes +# +550042# +A high-quality foxtail made by the Paradise Group. +-------------------------- +ATK +5% +-------------------------- +Indestructible in battle +-------------------------- +For each Level of Picky Peck: +Increases Ranged Physical Damage by 1%. +-------------------------- +Base Level at least 105: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases damage of Picky Peck and Spirit of Savage by 25%. +-------------------------- +Base Level at least 110: +Increases Ranged Physical Damage by additional 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Picky Peck and Spirit of Savage by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 300 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +550043# +A high-quality foxtail made by the Paradise Group. +-------------------------- +MATK +300 +MATK +5% +-------------------------- +Indestructible in battle +-------------------------- +For each Level of Silvervine Stem Spear: +Decreases Variable Casting Time by 2%. +-------------------------- +Base Level at least 105: +Decreases Catnip Meteor skill cooldown by 1.5 seconds. +Increases damage of Silvervine Stem Spear and Catnip Meteor by 25%. +-------------------------- +Base Level at least 110: +Increases Magical Damage with Earth, Fire, Water, Wind and Ghost element by 10%. +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Silvervine Stem Spear and Catnip Meteor by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 150 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +550044# +A high-quality one-handed staff made by the Paradise Group. +-------------------------- +MATK +180 +MATK +5% +-------------------------- +Indestructible in battle +-------------------------- +For each Level of Increase SP Recovery: +Decreases Variable Casting Time by 1%. +-------------------------- +Base Level at least 105: +Increases Magical Damage with Water, Wind, Earth and Fire element by 10%. +Increases damage of Fire Bolt, Cold Bolt, Lightning Bolt and Heaven's Drive by 25%. +-------------------------- +Base Level at least 110: +Increases Magical Damage with Water, Wind, Earth and Fire element by additional 10%. +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Fire Bolt, Cold Bolt, Lightning Bolt and Heaven's Drive by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 100 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Super Novice classes +# +550045# +An improved version of the old staff said to have been used by ancient heroes. +Resonates with Hero's Boots-LT. +-------------------------- +MATK +195 +MATK +5% +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Earth Grave by 12%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Neutral, Earth and Poison element by 15%. +-------------------------- +Refine Level +9: +Increases damage of Psychic Wave and Poison Buster by 35%. +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +11: +Increases damage of Psychic Wave and Poison Buster by additional 15%. +Decreases Psychic Wave skill cooldown by 1 second. +-------------------------- +When equipped with Hero's Boots-LT: +MATK +10%, S.MATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: MATK +3% +[Grade C]: Magical Damage of Neutral, Earth and Poison element +15%. S.MATK +1 +[Grade B]: SPL +3, S.MATK +2. +-------------------------- +Type: One-Handed Staff +Attack: 40 +Weight: 75 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Sorcerer classes +# +550046# +An improved version of a staff with a blue light that is said to have been used by ancient heroes. +Resonates with Hero's Boots-LT. +-------------------------- +MATK +195 +MATK +5% +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Diamond Dust by 12%. +-------------------------- +Refine Level +7: +Increases Magical Damage against enemies of every element by 15%. +Increases damage of Varetyr Spear by 15%. +-------------------------- +Refine Level +9: +Increases damage of Varetyr Spear by additional 30%. +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +11: +Increases Magical Damage with Wind and Water element by 15%. +Decreases Varetyr Spear skill cooldown by 2 seconds. +-------------------------- +When equipped with Hero's Boots-LT: +MATK +10%, S.MATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: MATK +3% +[Grade C]: Magical Damage of Wind and Water element +15%. S.MATK +1 +[Grade B]: SPL +3, S.MATK +2. +-------------------------- +Type: One-Handed Staff +Attack: 40 +Weight: 75 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Sorcerer classes +# +550050# +A foxtail designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +Indestructible in battle +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Picky Peck: +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 10%. +Increases damage of Picky Peck and Lunatic Carrot Beat by 25%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by additional 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +13: +Increases damage of Picky Peck and Lunatic Carrot Beat by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 280 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +550051# +A foxtail designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +Indestructible in battle +-------------------------- +MATK +2% +MATK +280 +-------------------------- +For each Refine Level: +MATK +3 +-------------------------- +For each 15 Base Level: +MATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Silvervine Stem Spear: +MATK +2% +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 10%. +Increases damage of Silvervine Stem Spear and Catnip Meteor by 25%. +-------------------------- +Refine Level +11: +Decreases Variable Casting Time by 10%. +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +13: +Increases damage of Silvervine Stem Spear and Catnip Meteor by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 120 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Summoner (Doram) +# +550052# +A staff designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +Indestructible in battle +-------------------------- +MATK +2% +MATK +175 +-------------------------- +For each Refine Level: +MATK +3 +-------------------------- +For each 15 Base Level: +MATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Happy Break: +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 10%. +Increases damage of Espa and Eswhoo by 25%. +-------------------------- +Refine Level +11: +Decreases Variable Casting Time by additional 10%. +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +13: +Increases damage of Espa and Eswhoo by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 110 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Soul Reaper +# +550053# +A staff designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +Indestructible in battle +-------------------------- +MATK +2% +MATK +175 +-------------------------- +For each Refine Level: +MATK +3 +-------------------------- +For each 15 Base Level: +MATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Happy Break: +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by 10%. +Increases damage of Curse Explosion by 25%. +-------------------------- +Refine Level +11: +Decreases Curse of Wicked Soul skill cooldown by 2 seconds. +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +13: +Increases Magical Damage with Shadow element by 25%. +Increases damage of Curse Explosion by additional 15%. +-------------------------- +Type: One-Handed Staff +Attack: 110 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Soul Reaper +# +550054# +A wand made of refined clock tower parts and quenched with etheric power. +It supplemented the shortcomings of the existing Fortified Wand. +-------------------------- +Indestructible in battle +-------------------------- +MATK +240 +-------------------------- +For each 2 Refine Levels: +Increases damage of Talisman of Four Bearing God by 6%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Talisman of Soul Stealing by 8%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with every element by 4%. +-------------------------- +[Bonus by Grade] +[Grade D]: SPL +2 +[Grade C]: Damage of Talisman of Four Bearing God +10%. +[Grade B]: S.MATK +2 +-------------------------- +Type: One-Handed Staff +Attack: 190 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Soul Ascetic +# +550055# +A rod made of refined clock tower parts and quenched with etheric power. +It supplemented the shortcomings of the existing Fortified Rod. +-------------------------- +Indestructible in battle +-------------------------- +MATK +230 +-------------------------- +For each 2 Refine Levels: +Increases damage of Meteor Storm Buster and Jupitel Thunderstorm by 6%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Napalm Vulcan Strike by 10%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with every element by 4%. +-------------------------- +[Bonus by Grade] +[Grade D]: SPL +2 +[Grade C]: Damage of Meteor Storm Buster and Jupitel Thunderstorm +10%. +[Grade B]: S.MATK +2 +-------------------------- +Type: One-Handed Staff +Attack: 130 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Hyper Novice +# +550056# +A one-handed staff equipped with unholy energy concentrated on the clock tower parts. +It is more difficult to handle than the existing Relapse Plant. +-------------------------- +Indestructible in battle +-------------------------- +MATK +220 +-------------------------- +For each 2 Refine Levels: +Increases damage of Howling of Chulho and Hyunrok Breeze by 6%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Hogogong Strike and Hyunrok Cannon by 7%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage and Magical Damage with every element by 4%. +-------------------------- +[Bonus by Grade] +[Grade D]: POW +1, SPL +1. +[Grade C]: Damage of Howling of Chulho and Hyunrok Breeze +10%. +[Grade B]: P.ATK +1, S.MATK +1. +-------------------------- +Type: One-Handed Staff +Attack: 210 +Weight: 180 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Spirit Handler +# +550057# +A weapon enhanced by using Etel's magical power. +New abilities that had not been discovered before began to emerge. +-------------------------- +Indestructible in battle +-------------------------- +MATK +200 +-------------------------- +For each 2 Refine Levels: +Increases damage of Meteor Storm Buster and Jupitel Thunderstorm by 5%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with every element by 3%. +-------------------------- +Type: One-Handed Staff +Attack: 120 +Weight: 90 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Hyper Novice +# +550058# +A weapon that was restored by using ether to restore a weapon eroded by unclean energy. +New abilities that had not been discovered before began to emerge. +-------------------------- +Indestructible in battle +-------------------------- +MATK +200 +-------------------------- +For each 2 Refine Levels: +Increases damage of Howling of Chulho and Hyunrok Breeze by 5%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage and Magical Damage with every element by 3%. +-------------------------- +Type: One-Handed Staff +Attack: 190 +Weight: 160 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Spirit Handler +# +550059# +A weapon enhanced by using Etel's magical power. +New abilities that had not been discovered before began to emerge. +-------------------------- +Indestructible in battle +-------------------------- +MATK +210 +-------------------------- +For each 2 Refine Levels: +Increases damage of Talisman of Four Bearing God by 5%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with every element by 3%. +-------------------------- +Type: One-Handed Staff +Attack: 170 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Soul Ascetic +# +550060# +A foxtail containing the pain of bereavement. +-------------------------- +Indestructible in battle +-------------------------- +MATK +250 +MATK +10% +-------------------------- +Increases damage of Hyunrok Cannon and Hyunrok Breeze by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Catnip Meteor by 3%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Catnip Meteor by additional 30%. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every race, except Players by 15%. +Decreases Catnip Meteor skill cooldown by 2 seconds. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Hyunrok Cannon and Hyunrok Breeze +5%. +[Grade C]: Damage of Hyunrok Cannon and Hyunrok Breeze +8%, S.MATK +1. +[Grade B]: Damage of Hyunrok Cannon and Hyunrok Breeze +12%, SPL +1. +-------------------------- +Type: One-Handed Staff +Attack: 170 +Weight: 130 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Spirit Handler +# +550061# +A staff containing the pain of bereavement. +-------------------------- +Indestructible in battle +-------------------------- +MATK +250 +MATK +10% +-------------------------- +Increases damage of Talisman of Soul Stealing and Exorcism of Malicious Soul by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Eswhoo and Espa by 3%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Eswhoo and Espa by additional 30%. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every race, except Players by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Talisman of Soul Stealing and Exorcism of Malicious Soul +5%. +[Grade C]: Damage of Talisman of Soul Stealing and Exorcism of Malicious Soul +8%, S.MATK +1. +[Grade B]: Damage of Talisman of Soul Stealing and Exorcism of Malicious Soul +12%, SPL +1. +-------------------------- +Type: One-Handed Staff +Attack: 220 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Soul Ascetic +# +550062# +A wand containing the pain of bereavement. +-------------------------- +Indestructible in battle +-------------------------- +MATK +250 +MATK +10% +-------------------------- +Increases damage of Meteor Storm Buster and Jack Frost Nova by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Meteor Storm, Frost Diver and Frost Nova by 3%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Meteor Storm, Frost Diver and Frost Nova by additional 30%. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every race, except Players by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Meteor Storm Buster and Jack Frost Nova +5%. +[Grade C]: Damage of Meteor Storm Buster and Jack Frost Nova +8%, S.MATK +1. +[Grade B]: Damage of Meteor Storm Buster and Jack Frost Nova +12%, SPL +1. +-------------------------- +Type: One-Handed Staff +Attack: 160 +Weight: 130 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Hyper Novice +# +550063# +A wand reborn with the power of true faith through a ritual of purification. +-------------------------- +MATK +220 +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Curse Explosion by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Curse Explosion by additional 20%. +-------------------------- +Refine Level +9: +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Curse Explosion by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Shadow element by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Magical Damage against against enemies of every element +15%. +[Grade C]: Damage of Curse Explosion +15%. +[Grade B]: MATK +7%. +[Grade A]: SPL +1, S.MATK +1 per 3 Refine Levels. +-------------------------- +Type: One-Handed Staff +Attack: 160 +Weight: 160 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Soul Ascetic +# +550064# +A wand reborn with the power of true faith through a ritual of purification. +-------------------------- +MATK +205 +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Eswhoo by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Eswhoo by additional 20%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Increases damage of Eswhoo by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Water, Wind, Earth, Fire, Ghost, Shadow and Holy element by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Magical Damage against against enemies of every element +15%. +[Grade C]: Damage of Eswhoo +15%. +[Grade B]: MATK +7%. +[Grade A]: SPL +1, S.MATK +1 per 3 Refine Levels. +-------------------------- +Type: One-Handed Staff +Attack: 160 +Weight: 190 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Soul Ascetic +# +550065# +A foxtail wand reborn with the power of true faith through a ritual of purification. +-------------------------- +MATK +350 +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Catnip Meteor by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Catnip Meteor by additional 20%. +-------------------------- +Refine Level +9: +Decreases Catnip Meteor skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Catnip Meteor by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Neutral element by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Magical Damage against against enemies of every element +15%. +[Grade C]: Damage of Catnip Meteor +15%. +[Grade B]: MATK +7%. +[Grade A]: SPL +1, S.MATK +1 per 3 Refine Levels. +-------------------------- +Type: One-Handed Staff +Attack: 200 +Weight: 150 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Spirit Handler +# +550066# +A foxtail model reborn with the power of true faith through a ritual of purification. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Picky Peck by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Picky Peck by additional 20%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Picky Peck by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Picky Peck +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: One-Handed Staff +Attack: 320 +Weight: 180 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Spirit Handler +# +550067# +An improved version of the mysterious foxtail that makes a meowmeow sound whenever it is shaken. +Seeing the softer shaking, it began to show its original power. +Resonates with Hero's Boots-LT. +-------------------------- +Indestructible in battle +-------------------------- +MATK +350 +-------------------------- +Base Level at least 210: +POW +2, SPL +2, P.ATK +1, S.MATK +1 +-------------------------- +For each 2 Refine Levels: +ATK +15, MATK +15 +-------------------------- +For each 3 Refine Levels: +ATK +2%, MATK +2% +-------------------------- +Refine Level +7: +Increases damage of Picky Peck and Silvervine Stem Spear by 15%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 15%. +Decreases Catnip Meteor skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Lunatic Carrot Beat and Catnip Meteor by 50%. +Increases Physical and Magical Damage against enemies of every size by 15%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, MATK +10% +P.ATK +2, S.MATK +2 +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3%, MATK +3% +[Grade C]: Ranged Physical Damage and Magical Damage of every element +15%. P.ATK +1, S.MATK +1 +[Grade B]: POW +3, SPL +3, P.ATK +2, S.MATK +2. +-------------------------- +Type: One-Handed Staff +Attack: 350 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Summoner (Doram) classes +# +550068# +An improved version of the pendulum infused with the power to guide spirits that was used by Soul Reapers with considerable spiritual power. +Resonates with Hero's Boots-LT. +-------------------------- +MATK +190 +-------------------------- +Indestructible in battle +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1 +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Magical Damage with every element by 3%. +-------------------------- +Refine Level +7: +Increases damage of Espa by 25%. +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Espa by additional 15%. +Increases damage of Eswhoo by 45%. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every size by 15%. +Magical attacks have a certain chance (10%) to recover 230 SP 19 times every 0.5 seconds for 10 seconds. +-------------------------- +When equipped with Hero's Boots-LT: +MATK +10%, S.MATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: MATK +3% +[Grade C]: Magical Damage of every element +15%. S.MATK +1 +[Grade B]: SPL +3, S.MATK +2. +-------------------------- +Type: One-Handed Staff +Attack: 70 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Soul Reaper classes +# +550069# +A wand crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +Indestructible in battle +-------------------------- +MATK +230 +-------------------------- +Type: One-Handed Staff +Attack: 150 +Weight: 130 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Novice, Mage, Acolyte and Soul Linker classes +# +550070# +A foxtail crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +Indestructible in battle +-------------------------- +MATK +400 +-------------------------- +Type: One-Handed Staff +Attack: 400 +Weight: 200 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Summoner (Doram) classes +# +550075# +An upgraded Staff equipped with a red glowing orb. +-------------------------- +Indestructible in battle +-------------------------- +MATK +175 +-------------------------- +Increases Magical Damage against Neutral and Earth elemental by 10%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Neutral and Fire element by 30%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 15%. +-------------------------- +Type: One-Handed Staff +Attack: 80 +Weight: 90 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 170 +Novice, Magician, Acolyte and Soul Linker classes +# +550076# +A upgraded version of a foxtail-shaped machine made of numerous wires. +It seems that the use of micro-fine wires hits each other and dissipates static electricity. +-------------------------- +Indestructible in battle +-------------------------- +MATK +350 +MATK +10% +-------------------------- +Refine Level +7: +Increases damage of Silvervine Stem Spear by 30%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time of all skills by 10%. +Increases Magical Damage with Earth, Fire, Water, Ghost and Neutral element by 20%. +-------------------------- +Refine Level +11: +Increases damage of Catnip Meteor by 45%. +-------------------------- +Type: One-Handed Staff +Attack: 250 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 170 +Summoner (Doram) +# +550080# +A one-handed staff used by any hero regardless of form. +It resonates with Ancient Hero's Boots. +-------------------------- +Indestructible in battle +-------------------------- +MATK +160 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Heaven's Drive by 20%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Enables the use of Level 3 Psychic Wave. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase INT by 20 and MATK by 15% for 7 seconds when dealing magical damage. +-------------------------- +Type: One-Handed Staff +Attack: 70 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Novice +# +550081# +A one-handed staff used by any hero regardless of form. +An ancient power has been imbued and it has begun to show its original ability. +It resonates with Ancient Hero's Boots. +-------------------------- +Indestructible in battle +-------------------------- +MATK +200 +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Heaven's Drive by 30%. +-------------------------- +Refine Level +7: +Increases Magical Damage against enemies of every element by 15%. +Enables the use of Level 5 Psychic Wave. +-------------------------- +Refine Level +9: +Increases damage of Psychic Wave by 10% +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Increases Magical Damage with Earth and Neutral element by 10%. +Decreases Variable Casting Time by additional 5%. +-------------------------- +When equipped with Great Hero Boots: +INT +10, MATK +7%. +-------------------------- +Type: One-Handed Staff +Attack: 90 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Novice +# +550082# +An improved version of the one-handed staff used by any hero regardless of form. +Resonates with Hero's Boots-LT. +-------------------------- +MATK +210 +MATK +5% +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Heaven's Drive by 30%. +-------------------------- +Refine Level +7: +Increases Magical Damage against enemies of every element by 15%. +Enables the use of Level 5 Psychic Wave. +-------------------------- +Refine Level +9: +Increases damage of Psychic Wave by 20% +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +11: +Increases Magical Damage with Earth and Neutral element by 20%. +Decreases Variable Casting Time by additional 5%. +-------------------------- +When equipped with Hero's Boots-LT: +MATK +10%, S.MATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: MATK +3% +[Grade C]: Magical Damage of Earth and Neutral element +15%. S.MATK +1 +[Grade B]: SPL +3, S.MATK +2. +-------------------------- +Type: One-Handed Staff +Attack: 100 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Novice +# +550088# +A staff for guides on the path of the divine light. +-------------------------- +Indestructible in battle +-------------------------- +MATK +220 +MATK +5%, SPL +2. +Increases damage of Framen by 5%. +-------------------------- +Refine Level +5: +Increases damage of Framen by additional 10%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Holy element by 5%. +-------------------------- +Refine Level +9: +Increases damage of Framen by additional 10%. +-------------------------- +Refine Level +10: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Framen by additional 5%. +Increases damage of Arbitrium by 20%. +-------------------------- +[Bonus by Grade] +[Grade D]: Magical Damage with Holy element +10%. +[Grade C]: Magical Damage against enemies of every size +10%. +[Grade B]: Magical Damage against enemies of every race +10%. +[Grade A]: Magical Damage against enemies of every element +10%. +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 215 +Cardinal +# +560000# +A special Knuckle prepared for your rapid growth. +-------------------------- +ATK +2% +MaxHP +3% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Up to Base Level 180) +-------------------------- +Refine Level +7: +For each Level of Explosion Spirits: +MaxHP +2% +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by 10%. +-------------------------- +When equipped with Attack Booster Plate, Attack Booster Manteau, Attack Booster Greaves and Attack Booster Ring: +MaxHP +10% +ATK +10% + +For each 15 Base Level: +Increases damage of Tiger Cannon by 1%. +(Up to Base Level 180) + +When using Dangerous Soul Collect: +Increases damage of Tiger Cannon by additional 20% for 60 seconds. +-------------------------- +When equipped with Ranged Booster Suit, Ranged Booster Manteau, Ranged Booster Boots and Ranged Booster Brooch: +MaxSP +10% +Decreases After Skill Delay by 15%. + +For each 15 Base Level: +Increases damage of Knuckle Arrow by 2%. +(Up to Base Level 180) + +When using Dangerous Soul Collect: +Increases damage of Knuckle Arrow by additional 35% for 60 seconds. +-------------------------- +Type: Knuckle +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Sura +# +560002# +A knuckle with a shining ore blade found in a meteorite. +It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Tiger Cannon by 4%. +-------------------------- +Refine Level +9: +Increases damage of Tiger Cannon by additional 15%. +-------------------------- +Refine Level +11: +Decreases Tiger Cannon skill cooldown by 1 second. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase STR by 20 and ATK by 15% for 7 seconds when dealing physical damage. +-------------------------- +Type: Knuckle +Attack: 185 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Sura +# +560004# +It was an ordinary glove used for various tasks, +but was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Increases damage of Lightning Ride by 15%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Howling of Lion by 15%. +-------------------------- +Refine Level +9: +Decreases Howling of Lion skll cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Lightning Ride and Howling of Lion by additional 15%. +-------------------------- +Type: Knuckle +Attack: 200 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Sura +# +560006# +A Knuckle designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Call Spirits: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +9: +MaxSP +10% +Increases damage of Rampage Blaster and Knuckle Arrow by 25%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +13: +Increases damage of Rampage Blaster and Knuckle Arrow by additional 15%. +-------------------------- +Type: Knuckle +Attack: 190 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Sura +# +560007# +A Knuckle designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +MaxHP +250 +MaxSP +20 +-------------------------- +For each 15 Base Level: +ATK +1% (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Chain Combo: +MaxHP +2% +-------------------------- +Refine Level +9: +ATK +5% +Increases damage of Sky Net Blow and Tiger Cannon by 25%. +-------------------------- +Refine Level +11: +Decreases Tiger Cannon skill cooldown by 1 second. +Increases Melee Physical Damage by 15%. +-------------------------- +Refine Level +13: +Increases damage of Sky Net Blow and Tiger Cannon by additional 15%. +-------------------------- +Type: Knuckle +Attack: 190 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Sura +# +560008# +A knuckle once worn by ancient hero. +The ancient power awakened and began to exert its natural power. +It resonates with Great Hero Boots. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +Increases damage of Rampage Blast and Ride in Lightning by 10%. +-------------------------- +Refine Level +9: +Decreases cooldown of Rampage Blast and Earth Shaker by 1 sec. +-------------------------- +Refine Level +11: +Decreases SP Consumption of Rampage Blast by 15% +Increases damage of Rampage Blast and Ride in Lightning by additional 10%. +-------------------------- +When equipped with Great Hero Boots: +STR +10, ATK +7%. +-------------------------- +Type: Knuckle +Attack: 205 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Sura +# +560009# +A knuckle with a shining ore blade found in a meteorite. +Seeing the stronger strength, he began to show his natural ability. +It resonates with Great Hero Boots. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Tiger Cannon by 4%. +-------------------------- +Refine Level +7: +Increases damage of Tiger Cannon by additional 15%. +Increases damage of Gate of Hell by 20%. +-------------------------- +Refine Level +9: +Decreases Tiger Cannon skill cooldown by 1 second. +-------------------------- +Refine Level +11: +MaxHP +10% +Increases damage of Gate of Hell by additional 15%. +-------------------------- +When equipped with Great Hero Boots: +STR +10, ATK +7%. +-------------------------- +Type: Knuckle +Attack: 205 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Sura +# +560011# +A weapon made crudely by collecting various scrap metals and etel powder. +New abilities that had not been discovered before began to emerge. +-------------------------- +For each 2 Refine Levels: +Increases damage of Second Judgement and Second Faith by 5%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 2%. +-------------------------- +Type: Knuckle +Attack: 210 +Weight: 130 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Inquisitor +# +560012# +A pair of knuckles containing the pain of bereavement. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Second Faith by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Tiger Cannon by 3%. +-------------------------- +Refine Level +7: +MaxHP +10% +-------------------------- +Refine Level +9: +Increases damage of Tiger Cannon by additional 30%. +-------------------------- +Refine Level +11: +Decreases Tiger Cannon skill cooldown by 1 second. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Second Faith +5%. +[Grade C]: Damage of Second Faith +8%, P.ATK +1. +[Grade B]: Damage of Second Faith +12%, POW +1. +-------------------------- +Type: Knuckle +Attack: 230 +Weight: 150 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Inquisitor +# +560013# +A pair of knuckles containing the pain of bereavement. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Explosion Blaster by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Rampage Blaster by 3%. +-------------------------- +Refine Level +7: +Decreases SP Consumption of Rampage Blaster by 15%. +-------------------------- +Refine Level +9: +Increases damage of Rampage Blaster by additional 30%. +-------------------------- +Refine Level +11: +Decreases Rampage Blaster skill cooldown by 1 second. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Explosion Blaster +5%. +[Grade C]: Damage of Explosion Blaster +8%, P.ATK +1. +[Grade B]: Damage of Explosion Blaster +12%, POW +1. +-------------------------- +Type: Knuckle +Attack: 230 +Weight: 150 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Inquisitor +# +560017# +Thanos' knuckles remodeled with the addition of Tim Artnard's technology. +-------------------------- +Physical attacks have a random chance to recover 2500 HP and 50 SP every second for 4 seconds. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Tiger Cannon by 5%. +-------------------------- +Refine Level +7: +MaxHP +5% +Decreases Tiger Cannon skill cooldown by 1 second. +-------------------------- +Refine Level +9: +Increases damage of Fallen Empire by 25%. +Increases damage of Tiger Cannon by 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +Increases Melee Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +2%, Damage of Third Flame Bomb +10%. +[Grade C]: ATK +3%, P.ATK +1. +[Grade B]: Damage of Third Flame Bomb +10%. +-------------------------- +Type: Knuckle +Attack: 200 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Sura +# +560018# +A pair of knuckles filled with false beliefs. +-------------------------- +Increases damage of Tiger Cannon by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Tiger Cannon by additional 20%. +-------------------------- +Refine Level +9: +Decreases Tiger Cannon skill cooldown by 0.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Tiger Cannon by additional 25%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +Type: Knuckle +Attack: 210 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Sura +# +560019# +A pair of claws filled with false beliefs. +-------------------------- +Increases damage of Rampage Blaster by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Rampage Blaster by additional 20%. +-------------------------- +Refine Level +9: +Decreases Rampage Blaster skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Rampage Blaster by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +Type: Knuckle +Attack: 210 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Sura +# +560020# +A pair of knuckles reborn with the power of true faith through a ritual of purification. +-------------------------- +Increases damage of Tiger Cannon by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Tiger Cannon by additional 20%. +-------------------------- +Refine Level +9: +Decreases Tiger Cannon skill cooldown by 0.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Tiger Cannon by additional 25%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Tiger Cannon +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Knuckle +Attack: 210 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Inquisitor +# +560021# +A pair of claws reborn with the power of true faith through a ritual of purification. +-------------------------- +Increases damage of Rampage Blaster by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Rampage Blaster by additional 20%. +-------------------------- +Refine Level +9: +Decreases Rampage Blaster skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Rampage Blaster by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Rampage Blaster +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Knuckle +Attack: 210 +Weight: 90 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Inquisitor +# +560022# +A pair of knuckles made by the Paradise Group. +-------------------------- +ATK +3% +-------------------------- +Base Level at least 60: +Increases Attack Speed (Decreases After Attack Delay of 10%). +-------------------------- +Base Level at least 75: +Increases damage of Chain Combo by 20%. +-------------------------- +Base Level at least 90: +Increases damage of Combo Finish by 20%. +-------------------------- +Type: Knuckle +Attack: 160 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Monk classes +# +560023# +A pair of claws made by the Paradise Group. +-------------------------- +ATK +3% +-------------------------- +Base Level at least 60: +Increases Ranged Physical Damage by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Finger Offensive by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Finger Offensive by additional 15%. +-------------------------- +Type: Knuckle +Attack: 160 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Monk classes +# +560024# +A pair of high-quality knuckles made by the Paradise Group. +-------------------------- +ATK +5% +-------------------------- +For each Level of Chain Combo: +MaxHP +2% +-------------------------- +Base Level at least 105: +Decreases Tiger Cannon skill cooldown by 1 second. +Increases damage of Fallen Empire and Tiger Cannon by 25%. +-------------------------- +Base Level at least 110: +Increases Melee Physical Damage by 15%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Fallen Empire and Tiger Cannon by additional 15%. +-------------------------- +Type: Knuckle +Attack: 180 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Sura classes +# +560025# +A pair of high-quality claws made by the Paradise Group. +-------------------------- +ATK +5% +-------------------------- +For each Level of Call Spirits: +Increases Ranged Physical Damage by 2%. +-------------------------- +Base Level at least 105: +Decreases Rampage Blaster skill cooldown by 1 second. +Increases damage of Rampage Blaster and Knuckle Arrow by 25%. +-------------------------- +Base Level at least 110: +Decreases After Skill Delay by 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Rampage Blaster and Knuckle Arrow by additional 15%. +-------------------------- +Type: Knuckle +Attack: 180 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Sura classes +# +560026# +An improved version of the knuckle used by ancient heroes. +Resonates with Hero's Boots-LT. +-------------------------- +ATK +5% +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +Increases damage of Rampage Blaster and Ride in Lightning by 20%. +-------------------------- +Refine Level +9: +Decreases Rampage Blaster skill cooldown by 1 second. +Decreases SP Consumption of Rampage Blaster by 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every element by 15%. +Increases damage of Rampage Blaster and Ride in Lightning by additional 25%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Ranged Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2. +-------------------------- +Type: Knuckle +Attack: 205 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Sura classes +# +560027# +An improved version of a knuckle with a blade made of shiny ore found in a meteorite. +Resonates with Hero's Boots-LT. +-------------------------- +ATK +5% +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Tiger Cannon by 4%. +-------------------------- +Refine Level +7: +Increases damage of Tiger Cannon by 25%. +Increases damage of Gate of Hell by 30%. +-------------------------- +Refine Level +9: +Decreases Tiger Cannon skill cooldown by 1 second. +Increases Physical Damage by 10%. +-------------------------- +Refine Level +11: +MaxHP +10% +Increases damage of Gate of Hell by additional 15%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2. +-------------------------- +Type: Knuckle +Attack: 205 +Weight: 80 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Sura classes +# +560030# +A knuckled equipped with unholy energy concentrated on the clock tower parts. +It is more difficult to handle than the existing Scrap Fist. +-------------------------- +For each 2 Refine Levels: +Increases damage of Second Judgement and Second Faith by 7%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Third Consecration and Third Punish by 8%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 4%. +-------------------------- +[Bonus by Grade] +[Grade D]: POW +2. +[Grade C]: Damage of Second Judgement and Second Faith +10%. +[Grade B]: P.ATK +2. +-------------------------- +Type: Knuckle +Attack: 230 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Inquisitor +# +560032# +A knuckle crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +220 +-------------------------- +Type: Knuckle +Attack: 240 +Weight: 150 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Sura classes +# +560034# +An upgraded purple knuckle with something boiling. +When hit, it causes burning pain on the target. +-------------------------- +ATK +5% +-------------------------- +Refine Level +7: +Decreases Earth Shaker skill cooldown by 1 second. +-------------------------- +Refine Level +9: +Increases damage of Rampage Blaster by 30%. +-------------------------- +Refine Level +11: +Increases Damage against monsters of Medium and Large size by 20%. +Increases damage of Rampage Blaster by additional 45%. +-------------------------- +Type: Knuckle +Attack: 175 +Weight: 90 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 170 +Sura +# +560036# +A knuckle imbued with the power to slay numerous demons. +-------------------------- +Indestructible in battle +-------------------------- +ATK +5%, POW +2. +Increases damage of Explosion Blaster by 5%. +-------------------------- +Refine Level +5: +Increases damage of Explosion Blaster by additional 10%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 5%. +-------------------------- +Refine Level +9: +Increases damage of Explosion Blaster by additional 10%. +-------------------------- +Refine Level +10: +Critical +10 +-------------------------- +Refine Level +11: +Increases damage of Explosion Blaster by additional 5%. +Increases damage of Oleum Sanctum by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Ranged Physical Damage +10%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Physical Damage against enemies of every race +10%. +[Grade A]: Physical Damage against enemies of every element +10%. +-------------------------- +Type: Knuckle +Attack: 210 +Weight: 150 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 215 +Inquisitor +# +570000# +A special Guitar prepared for your rapid growth. +-------------------------- +MATK +160 +-------------------------- +ATK +3% +-------------------------- +Increases Magical Damage with Neutral element by 3%. +-------------------------- +For each Refine Level: +ATK +2 +MATK +2 +-------------------------- +For each 15 Base Level: +ATK +3 +MATK +3 +(Up to Base Level 180) +-------------------------- +Refine Level +7: +For each Level of Musical Lesson: +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +9: +Increases Magical Damage against enemies of every size by 10%. +-------------------------- +When equipped with Elemental Booster Robe, Elemental Booster Muffler, Elemental Booster Shoes and Elemental Booster Earring: +MATK +20 +Decreases After Skill Delay by 10%. + +For each 15 Base Level: +Increases damage of Reverberation by 1%. +(Up to Base Level 180) + +When using Improve Concentration: +Increases damage of Reverberation by additional 20% for 60 seconds. +-------------------------- +When equipped with Ranged Booster Suit, Ranged Booster Manteau, Ranged Booster Boots and Ranged Booster Brooch: +ATK +20 +Decreases Severe Rainstorm skill cooldown by 2 seconds. + +For each 15 Base Level: +Increases damage of Severe Rainstorm by 1%. +(Up to Base Level 180) + +When using Improve Concentration: +Increases damage of Severe Rainstorm by additional 20% for 60 seconds. +-------------------------- +Type: Musical Instrument +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Minstrel +# +570002# +A beating trumpet. +It resonates with Ancient Hero's Boots. +-------------------------- +MATK +190 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Magical Damage with Neutral element by 4%. +-------------------------- +Refine Level +9: +Increases damage of Reverberation and Metallic Sound by 10%. +-------------------------- +Refine Level +11: +Decreases fixed casting time of Reverberation by 0.5 seconds. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase INT by 20 and MATK by 15% for 7 seconds when dealing physical or magical damage. +-------------------------- +Type: Instrument +Attack: 160 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Minstrel +# +570005# +An instrument that filled the Varmundt's Mansion with a beautiful melody. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +MATK +210 +Increases damage of Metallic Sound and Reverberation by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +8 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Metallic Sound and Reverberation by additional 15%. +-------------------------- +Refine Level +11: +Decreases Metallic Sound skill cooldown by 2 seconds. +Decreases SP Consumption of Reverberation by 20%. +-------------------------- +Type: Musical Instrument +Attack: 150 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Minstrel +# +570008# +Although the shape is a guitar, steel strings are used, and an amplifier is installed that converts the vibration into electrical vibration by means of magnetic induction. +-------------------------- +MATK +180 +-------------------------- +For each 2 Refine Levels: +MATK +6 +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Neutral element by 10%. +Decreases SP Consumption of Severe Rainstorm by 10%. +-------------------------- +Refine Level +9: +Increases damage of Reverberation and Severe Rainstorm by 15%. +-------------------------- +Refine Level +11: +Increases Magical Damage against Water elemental by 10%, +Decreases Severe Rainstorm skill cooldown by 1 second. +-------------------------- +When equipped with Illusion Muffler; +ATK +30 + +Refine Level of Illusion Electric Guitar and Illusion Muffler each is +7 or higher: +Increases Ranged Physical Damage by 5%. + +Total Refine Level of entire set at least +18: +Increases damage of Severe Rainstorm by 20%. + +Total Refine Level of entire set at least +22: +Decreases Severe Rainstorm skill cooldown by 1 second. +-------------------------- +When equipped with Illusion Shoes, +MATK +40 + +Refine Level of Illusion Electric Guitar and Illusion Shoes each is +7 or higher: +Increases Magical Damage with Neutral element by 5%. + +Total Refine Level of entire set at least +18: +Increases damage of Reverberation by 20%. + +Total Refine Level of entire set at least +22: +Decreases Fixed Casting time of Reverberation by 0.5 seconds. +-------------------------- +Type: Musical Instrument +Attack: 170 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Minstrel +# +570009# +A goblet trumpet with a mysterious sound. +The cry of the trumpet became more clear and began to show its natural ability. +It seems to resonate with the Great Hero's Boots. +-------------------------- +MATK +230 +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Magical Damage with every element by 4%. +-------------------------- +Refine Level +7: +Increases damage of Reverberation and Metallic Sound by 10%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time of Reverberation by 0.5 seconds. +-------------------------- +Refine Level +11: +MATK +7% +Increases damage of Reverberation and Metallic Sound by additional 15%. +-------------------------- +When equipped with Great Hero Boots: +INT +10, MATK +7%. +-------------------------- +Type: Musical Instrument +Attack: 160 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Minstrel +# +570010# +An Instrument designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +MATK +180 +-------------------------- +MATK +2% +-------------------------- +For each Refine Level: +MATK +3 +-------------------------- +For each 15 Base Level: +MATK +1% (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each 2 Levels of Musical Lesson: +Increases Magical Damage with every element by 2%. +-------------------------- +Refine Level +9: +Decreases Metallic Sound skill cooldown by 2 seconds. +Increases damage of Reverberation and Metallic Sound by 25%. +-------------------------- +Refine Level +11: +Decreases Fixed Casting Time of Reverberation by 0.5 seconds. +Increases Magical Damage with every element by additional 15%. +-------------------------- +Refine Level +13: +Increases damage of Reverberation and Metallic Sound by additional 15%. +-------------------------- +Type: Musical Instrument +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Minstrel +# +570012# +A weapon made crudely by collecting various scrap metals and etel powder. +New abilities that had not been discovered before began to emerge. +-------------------------- +For each 2 Refine Levels: +Increases damage of Rose Blossom by 5%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 2%. +-------------------------- +Type: Musical Instrument +Attack: 205 +Weight: 125 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Troubadour +# +570013# +A violin containing the pain of bereavement. +-------------------------- +MATK +250 +MATK +10% +-------------------------- +Increases damage of Metallic Fury by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Reverberation by 3%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Reverberation by additional 30%. +-------------------------- +Refine Level +11: +Decreases Fixed Casting Time of Reverberation by 0.5 seconds. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Metallic Fury +5%. +[Grade C]: Damage of Metallic Fury +8%, S.MATK +1. +[Grade B]: Damage of Metallic Fury +12%, SPL +1. +-------------------------- +Type: Musical Instrument +Attack: 220 +Weight: 110 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Troubadour +# +570016# +Thanos' violin remodeled with the addition of Tim Artnard's technology. +-------------------------- +Physical attacks have a random chance to recover 2500 HP and 50 SP every second for 4 seconds. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Severe Rainstorm by 3%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +Increases damage of Severe Rainstorm by additional 15%. +-------------------------- +Refine Level +9: +Decreaeses After Skill Delay of all skills by 10%. +Decreases Severe Rainstorm skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +2%, Damage of Rhythm Shooting +10%. +[Grade C]: ATK +3%, P.ATK +1. +[Grade B]: Damage of Rhythm Shooting +10%. +-------------------------- +Type: Musical Instrument +Attack: 220 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Minstrel +# +570017# +A violin filled with false beliefs. +-------------------------- +Increases damage of Severe Rainstorm by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Severe Rainstorm by additional 20%. +-------------------------- +Refine Level +9: +Decreases Severe Rainstorm skill cooldown by 2.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Severe Rainstorm by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +Type: Musical Instrument +Attack: 170 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Minstrel +# +570018# +A harp filled with false beliefs. +-------------------------- +MATK +210 +-------------------------- +Increases damage of Metallic Sound by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Metallic Sound by additional 20%. +-------------------------- +Refine Level +9: +Decreases Metallic Sound skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Metallic Sound by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Neutral element by 15%. +-------------------------- +Type: Musical Instrument +Attack: 100 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Minstrel +# +570019# +A violin reborn with the power of true faith through a ritual of purification. +-------------------------- +Increases damage of Severe Rainstorm by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Severe Rainstorm by additional 20%. +-------------------------- +Refine Level +9: +Decreases Severe Rainstorm skill cooldown by 2.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Severe Rainstorm by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Severe Rainstorm +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Musical Instrument +Attack: 170 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Troubadour +# +570020# +A harp reborn with the power of true faith through a ritual of purification. +-------------------------- +MATK +210 +-------------------------- +Increases damage of Metallic Sound by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Metallic Sound by additional 20%. +-------------------------- +Refine Level +9: +Decreases Metallic Sound skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Metallic Sound by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Neutral element by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Magical Damage against against enemies of every element +15%. +[Grade C]: Damage of Metallic Sound +15%. +[Grade B]: MATK +7%. +[Grade A]: SPL +1, S.MATK +1 per 3 Refine Levels. +-------------------------- +Type: Musical Instrument +Attack: 100 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Troubadour +# +570021# +A musical instrument made by the Paradise Group. +-------------------------- +ATK +3% +-------------------------- +Base Level at least 60: +Increases Ranged Physical Damage by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Musical Strike by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Musical Strike by additional 15%. +-------------------------- +Type: Musical Instrument +Attack: 160 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Bard classes +# +570022# +A high-quality musical instrument made by the Paradise Group. +-------------------------- +ATK +5% +-------------------------- +For each Level of Musical Lesson: +Increases Ranged Physical Damage by 1%. +-------------------------- +Base Level at least 105: +Decreases Severe Rainstorm skill cooldown by 2 seconds. +Increases damage of Severe Rainstorm by 25%. +-------------------------- +Base Level at least 110: +Increases Ranged Physical Damage by additional 15%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Severe Rainstorm by additional 15%. +-------------------------- +Type: Musical Instrument +Attack: 180 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Minstrel classes +# +570023# +A high-quality musical instrument made by the Paradise Group. +-------------------------- +MATK +180 +MATK +5% +-------------------------- +For each Level of Musical Lesson: +Increases Magical Damage with every element by 1%. +-------------------------- +Base Level at least 105: +Decreases Metallic Sound skill cooldown by 2 seconds. +Increases damage of Reverberation and Metallic Sound by 25%. +-------------------------- +Base Level at least 110: +Decreases Fixed Casting Time of Reverberation by 0.5 seconds. +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Reverberation and Metallic Sound by additional 15%. +-------------------------- +Type: Musical Instrument +Attack: 150 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Minstrel classes +# +570024# +An instrument designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each 2 Levels of Musical Lesson: +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +9: +Decreases Severe Rainstorm skill cooldown by 1 second. +Increases damage of Severe Rainstorm by 25%. +-------------------------- +Refine Level +11: +Decreases Severe Rainstorm skill cooldown by additional 1 second. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +13: +Increases damage of Severe Rainstorm by additional 15%. +-------------------------- +Type: Musical Instrument +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Minstrel +# +570027# +An improved version of the conch trumpet that makes a mysterious sound. +Resonates with Hero's Boots-LT. +-------------------------- +MATK +230 +MATK +5% +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Magical Damage with every element by 4%. +-------------------------- +Refine Level +7: +Increases damage of Reverberation and Metallic Sound by 20%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time of Reverberation by 0.5 seconds. +Decreases Metallic Sound skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every element by 15%. +Increases damage of Reverberation and Metallic Sound by additional 20%. +-------------------------- +When equipped with Hero's Boots-LT: +MATK +10%, S.MATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: MATK +3% +[Grade C]: Magical Damage with every element +15%. S.MATK +1 +[Grade B]: SPL +3, S.MATK +2. +-------------------------- +Type: Musical Instrument +Attack: 160 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Minstrel classes +# +570028# +A lute equipped with unholy energy concentrated on the clock tower parts. +It is more difficult to handle than the existing Scrap Lute. +-------------------------- +For each 2 Refine Levels: +Increases damage of Rose Blossom and Rythm Shooting by 7%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Severe Rainstorm by 10%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 4%. +-------------------------- +[Bonus by Grade] +[Grade D]: CON +2. +[Grade C]: Damage of Rose Blossom and Rythm Shooting +10%. +[Grade B]: P.ATK +2. +-------------------------- +Type: Musical Instrument +Attack: 220 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Troubadour +# +570029# +A violin crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +210 +-------------------------- +Type: Musical Instrument +Attack: 210 +Weight: 150 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Minstrel classes +# +580000# +A special Whip prepared for your rapid growth. +-------------------------- +MATK +160 +-------------------------- +ATK +3% +-------------------------- +Increases Magical Damage with Neutral element by 3%. +-------------------------- +For each Refine Level: +ATK +2 +MATK +2 +-------------------------- +For each 15 Base Level: +ATK +3 +MATK +3 +(Up to Base Level 180) +-------------------------- +Refine Level +7: +For each Level of Dancing Lesson: +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +9: +Increases Magical Damage against enemies of every size by 10%. +-------------------------- +When equipped with Elemental Booster Robe, Elemental Booster Muffler, Elemental Booster Shoes and Elemental Booster Earring: +MATK +20 +Decreases After Skill Delay by 10%. + +For each 15 Base Level: +Increases damage of Reverberation by 1%. +(Up to Base Level 180) + +When using Improve Concentration: +Increases damage of Reverberation by additional 20% for 60 seconds. +-------------------------- +When equipped with Ranged Booster Suit, Ranged Booster Manteau, Ranged Booster Boots and Ranged Booster Brooch: +ATK +20 +Decreases Severe Rainstorm skill cooldown by 2 seconds. + +For each 15 Base Level: +Increases damage of Severe Rainstorm by 1%. +(Up to Base Level 180) + +When using Improve Concentration: +Increases damage of Severe Rainstorm by additional 20% for 60 seconds. +-------------------------- +Type: Whip +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Wanderer +# +580002# +A spiny whip made out of wire. +It resonates with Ancient Hero's Boots. +-------------------------- +MATK +190 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Magical Damage with Neutral element by 4%. +-------------------------- +Refine Level +9: +Increases damage of Reverberation and Metallic Sound by 10%. +-------------------------- +Refine Level +11: +Decreases fixed casting time of Reverberation by 0.5 seconds. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase INT by 20 and MATK by 15% for 7 seconds when dealing physical or magical damage. +-------------------------- +Type: Whip +Attack: 160 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Wanderer +# +580005# +The tool was made for the purpose of illuminating the light in case of emergency. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +MATK +210 +Increases damage of Metallic Sound and Reverberation by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +8 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Metallic Sound and Reverberation by additional 15%. +-------------------------- +Refine Level +11: +Decreases Metallic Sound skill cooldown by 2 seconds. +Decreases SP Consumption of Reverberation by 20%. +-------------------------- +Type: Whip +Attack: 150 +Weight: 70 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Wanderer +# +580008# +A whip made of creatures that emit powerful electric energy. It feels bad to be slippery. +-------------------------- +MATK +180 +-------------------------- +For each 2 Refine Levels: +MATK +6 +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases Magical Damage with Neutral element by 10%. +Decreases SP Consumption of Severe Rainstorm by 10%. +-------------------------- +Refine Level +9: +Increases damage of Reverberation and Severe Rainstorm by 15%. +-------------------------- +Refine Level +11: +Increases Magical Damage against Water property monsters by 10%, +Decreases Severe Rainstorm skill cooldown by 1 second. +-------------------------- +When equipped with Illusion Muffler, +ATK +30 + +Refine Level of Illusion Electric Eel and Illusion Muffler each is +7 or higher: +Increases Ranged Physical Damage by 5%. + +Total Refine Level of entire set at least +18: +Increases damage of Severe Rainstorm by 20%. + +Total Refine Level of entire set at least +22: +Decreases Severe Rainstorm skill cooldown by 1 second. +-------------------------- +When equipped with Illusion Shoes: +MATK +40 + +Refine Level of Illusion Electric Eel and Illusion Shoes each is +7 or higher: +Increases Magical Damage with Neutral element by 5%. + +Total Refine Level of entire set at least +18: +Increases damage of Reverberation by 20%. + +Total Refine Level of entire set at least +22: +Decreases Fixed Casting time of Reverberation by 0.5 seconds. +-------------------------- +Type: Whip +Attack: 170 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Wanderer +# +580009# +A spiny whip made out of wire. +They became more flexible and began to show their natural abilities. +It resonates with Great Hero Boots. +-------------------------- +MATK +230 +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Magical Damage with Neutral element by 4%. +-------------------------- +Refine Level +7: +Increases damage of Reverberation and Metallic Sound by 10%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time of Reverberation by 0.5 seconds. +-------------------------- +Refine Level +11: +MATK +7% +Increases damage of Reverberation and Metallic Sound by additional 15%. +-------------------------- +When equipped with Great Hero Boots: +INT +10, MATK +7%. +-------------------------- +Type: Whip +Attack: 160 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Wanderer +# +580010# +An Whip designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +MATK +180 +-------------------------- +MATK +2% +-------------------------- +For each Refine Level: +MATK +3 +-------------------------- +For each 15 Base Level: +MATK +1% (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each 2 Levels of Dancing Lesson: +Increases Magical Damage with every element by 2%. +-------------------------- +Refine Level +9: +Decreases Metallic Sound skill cooldown by 2 second. +Increases damage of Reverberation and Metallic Sound by 25%. +-------------------------- +Refine Level +11: +Decreases Fixed Casting Time of Reverberation by 0.5 seconds. +Increases Magical Damage with every element by additional 15%. +-------------------------- +Refine Level +13: +Increases damage of Reverberation and Metallic Sound by additional 15%. +-------------------------- +Type: Whip +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Wanderer +# +580012# +A weapon made crudely by collecting various scrap metals and etel powder. +New abilities that had not been discovered before began to emerge. +-------------------------- +For each 2 Refine Levels: +Increases damage of Rose Blossom by 5%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 2%. +-------------------------- +Type: Whip +Attack: 205 +Weight: 125 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Trouvere +# +580013# +A whip containing the pain of bereavement. +-------------------------- +MATK +250 +MATK +10% +-------------------------- +Increases damage of Metallic Fury by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Reverberation by 3%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Reverberation by additional 30%. +-------------------------- +Refine Level +11: +Decreases Fixed Casting Time of Reverberation by 0.5 seconds. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Metallic Fury +5%. +[Grade C]: Damage of Metallic Fury +8%, S.MATK +1. +[Grade B]: Damage of Metallic Fury +12%, SPL +1. +-------------------------- +Type: Whip +Attack: 220 +Weight: 110 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Trouvere +# +580016# +Thanos' whip remodeled with the addition of Tim Artnard's technology. +-------------------------- +Physical attacks have a random chance to recover 2500 HP and 50 SP every second for 4 seconds. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Severe Rainstorm by 3%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +Increases damage of Severe Rainstorm by additional 15%. +-------------------------- +Refine Level +9: +Decreaeses After Skill Delay of all skills by 10%. +Decreases Severe Rainstorm skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +2%, Damage of Rhythm Shooting +10%. +[Grade C]: ATK +3%, P.ATK +1. +[Grade B]: Damage of Rhythm Shooting +10%. +-------------------------- +Type: Whip +Attack: 220 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Wanderer +# +580017# +A chain rope filled with false beliefs. +-------------------------- +Increases damage of Severe Rainstorm by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Severe Rainstorm by additional 20%. +-------------------------- +Refine Level +9: +Decreases Severe Rainstorm skill cooldown by 2.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Severe Rainstorm by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +Type: Whip +Attack: 170 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Wanderer +# +580018# +A ribbon filled with false beliefs. +-------------------------- +MATK +210 +-------------------------- +Increases damage of Metallic Sound by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Metallic Sound by additional 20%. +-------------------------- +Refine Level +9: +Decreases Metallic Sound skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Metallic Sound by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Neutral element by 15%. +-------------------------- +Type: Whip +Attack: 100 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Wanderer +# +580019# +A chain rope reborn with the power of true faith through a ritual of purification. +-------------------------- +Increases damage of Severe Rainstorm by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Severe Rainstorm by additional 20%. +-------------------------- +Refine Level +9: +Decreases Severe Rainstorm skill cooldown by 2.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Severe Rainstorm by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Severe Rainstorm +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Whip +Attack: 170 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Trouvere +# +580020# +A ribbon reborn with the power of true faith through a ritual of purification. +-------------------------- +MATK +210 +-------------------------- +Increases damage of Metallic Sound by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Metallic Sound by additional 20%. +-------------------------- +Refine Level +9: +Decreases Metallic Sound skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Metallic Sound by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Neutral element by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Magical Damage against against enemies of every element +15%. +[Grade C]: Damage of Metallic Sound +15%. +[Grade B]: MATK +7%. +[Grade A]: SPL +1, S.MATK +1 per 3 Refine Levels. +-------------------------- +Type: Whip +Attack: 100 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Trouvere +# +580021# +A whip made by the Paradise Group. +-------------------------- +ATK +3% +-------------------------- +Base Level at least 60: +Increases Ranged Physical Damage by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Throw Arrow by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Throw Arrow by additional 15%. +-------------------------- +Type: Whip +Attack: 160 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Dancer classes +# +580022# +A high-quality whip by the Paradise Group. +-------------------------- +ATK +5% +-------------------------- +For each Level of Dancing Lesson: +Increases Ranged Physical Damage by 1%. +-------------------------- +Base Level at least 105: +Decreases Severe Rainstorm skill cooldown by 2 seconds. +Increases damage of Severe Rainstorm by 25%. +-------------------------- +Base Level at least 110: +Increases Ranged Physical Damage by additional 15%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Severe Rainstorm by additional 15%. +-------------------------- +Type: Whip +Attack: 180 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Wanderer classes +# +580023# +A high-quality whip made by the Paradise Group. +-------------------------- +MATK +180 +MATK +5% +-------------------------- +For each Level of Dancing Lesson: +Increases Magical Damage with every element by 1%. +-------------------------- +Base Level at least 105: +Decreases Metallic Sound skill cooldown by 2 seconds. +Increases damage of Reverberation and Metallic Sound by 25%. +-------------------------- +Base Level at least 110: +Decreases Fixed Casting Time of Reverberation by 0.5 seconds. +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Reverberation and Metallic Sound by additional 15%. +-------------------------- +Type: Whip +Attack: 150 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Wanderer classes +# +580024# +A whip designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each 2 Levels of Dancing Lesson: +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +9: +Decreases Severe Rainstorm skill cooldown by 1 second. +Increases damage of Severe Rainstorm by 25%. +-------------------------- +Refine Level +11: +Decreases Severe Rainstorm skill cooldown by additional 1 second. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +13: +Increases damage of Severe Rainstorm by additional 15%. +-------------------------- +Type: Whip +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Wanderer classes +# +580027# +An improved version of a whip with thorns woven from wire. +Resonates with Hero's Boots-LT. +-------------------------- +MATK +230 +MATK +5% +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Magical Damage with every element by 4%. +-------------------------- +Refine Level +7: +Increases damage of Reverberation and Metallic Sound by 20%. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time of Reverberation by 0.5 seconds. +Decreases Metallic Sound skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every element by 15%. +Increases damage of Reverberation and Metallic Sound by additional 20%. +-------------------------- +When equipped with Hero's Boots-LT: +MATK +10%, S.MATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: MATK +3% +[Grade C]: Magical Damage with every element +15%. S.MATK +1 +[Grade B]: SPL +3, S.MATK +2. +-------------------------- +Type: Whip +Attack: 160 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Wanderer classes +# +580028# +A whip equipped with unholy energy concentrated on the clock tower parts. +It is more difficult to handle than the existing Scrap Whip. +-------------------------- +For each 2 Refine Levels: +Increases damage of Rose Blossom and Rythm Shooting by 7%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Severe Rainstorm by 10%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 4%. +-------------------------- +[Bonus by Grade] +[Grade D]: CON +2. +[Grade C]: Damage of Rose Blossom and Rythm Shooting +10%. +[Grade B]: P.ATK +2. +-------------------------- +Type: Whip +Attack: 220 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Trouvere +# +580030# +A whip crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +210 +-------------------------- +Type: Whip +Attack: 210 +Weight: 150 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Wanderer classes +# +590000# +A special mace prepared for your rapid growth. +-------------------------- +MATK +160 +-------------------------- +ATK +3% +-------------------------- +Increases Magical Damage with Holy element by 3%. +-------------------------- +Indestructible in battle +-------------------------- +For each Refine Level: +ATK +2 +MATK +2 +-------------------------- +For each 15 Base Level: +ATK +3 +MATK +3 +(Up to Base Level 180) +-------------------------- +Refine Level +7: +For each Level of Meditatio: +Increases Magical Damage with Holy element by additional 1%. +-------------------------- +Refine Level +9: +Increases Damage against enemies of every size by 10%. +-------------------------- +When equipped with Default Booster Robe, Default Booster Muffler, Default Booster Shoes and Default Booster Earring: +MATK +20 +Increases damage of Judex by 30%. + +For each 15 Base Level: +Increases damage of Adoramus by 1%. +(Up to Base Level 180) + +When using Manificat: +Increases damage of Adoramus by additional 20% for 60 seconds. +-------------------------- +When equipped with Ranged Booster Suit, Ranged Booster Manteau, Ranged Booster Boots and Ranged Booster Brooch: +ASPD +2 +Increases Critical Damage by 10%. + +For each 15 Base Level: +Increases damage of Duple Light by 2%. +(Up to Base Level 180) + +When using Magnificat: +Increases damage of Duple Light by additional 35% for 60 seconds. +-------------------------- +Type: Mace +Attack: 160 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +590002# +A hammer made of rare ores found in a meteorite. +It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Vulcan Arm by 4%. +-------------------------- +Refine Level +9: +Increases damage of Vulcan Arm and Arms Cannon by additional 10%. +-------------------------- +Refine Level +11: +Decreases variable casting time by 10%. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase STR by 20 and ATK by 15% for 7 seconds when dealing physical or magical damage. +-------------------------- +Type: Mace +Attack: 300 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +590003# +A scepter said to have been used by a saint. +It resonates with Ancient Hero's Boots. +-------------------------- +Indestructible in battle +-------------------------- +MATK +165 +-------------------------- +MATK +3% +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage with Holy element by 1%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Adoramus by 5%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Holy element by additional 10%. +-------------------------- +Refine Level +11: +Decreases fixed casting time of by 0.5 seconds. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase INT by 20 and MATK by 15% for 7 seconds when dealing magical damage. +-------------------------- +Type: Mace +Attack: 170 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +590006# +Automatic robots break down, smash and fall apart. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Indestructible in battle +-------------------------- +MATK +210 +-------------------------- +Increases damage of Duple Light by 15%. +-------------------------- +For each 3 Refine Levels: +MATK +12 +-------------------------- +Refine Level +7: +Increases damage of Duple Light by additional 20%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Increases damage of Duple Light by additional 35%. +Decreases Fixed Casting Time of Duple Light by 0.5 seconds. +-------------------------- +Type: Mace +Attack: 180 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Archbishop +# +590008# +A Mace designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +Indestructible in battle +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Mado Gear License: +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +Increases damage of Vulcan Arm, Knuckle Boost and Arms Cannon by 25%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 10%. +Increases Physical Damage against enemies of every size by 20%. +-------------------------- +Refine Level +13: +Increases damage of Vulcan Arm, Knuckle Boost and Arms Cannon by additional 15%. +-------------------------- +Type: Mace +Attack: 400 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +590009# +A Club designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +Indestructible in battle +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Learning Potion: +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +Increases damage of Acid Demonstration and Cart Cannon by 25%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 10%. +Increases Physical Damage against enemies of every size by 20%. +-------------------------- +Refine Level +13: +Increases damage of Acid Demonstration and Cart Cannon by additional 15%. +-------------------------- +Type: Mace +Attack: 190 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Genetic +# +590010# +A Mace designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +Indestructible in battle +-------------------------- +MATK +160 +-------------------------- +ATK +2% +MATK +2% +-------------------------- +For each Refine Level: +ATK +3 +MATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 +MATK +3 +(Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Meditatio: +Increases Melee Physical Damage by 1%. +Increases Magical Damage with Holy element by 1%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +Decreases After Skill Delay by 10%. +Increases damage of Judex and Duple Light by 25%. +-------------------------- +Refine Level +11: +Increases Magic Damage against enemies of every size by 15%. +Increases Magical Damage with Holy element by additional 15%. +-------------------------- +Refine Level +13: +Increases damage of Judex and Duple Light by additional 15%. +-------------------------- +Type: Mace +Attack: 190 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Archbishop +# +590011# +A hammer made of rare ores found in a meteorite. +Seeing the stronger strength, he began to show his natural ability. +It resonates with Great Hero Boots. +-------------------------- +Indestructible in battle +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Vulcan Arm and Knuckle Boost by 10%. +-------------------------- +Refine Level +7: +Increases damage of Vulcan Arm and Knuckle Boost by additional 15%. +-------------------------- +Refine Level +9: +Increases damage of Arms Cannon by 25%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by 15%. +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Great Hero Boots: +STR +10 +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Mace +Attack: 320 +Weight: 350 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +590012# +A scepter said to have been used by a saint. +Seeing that the divine power was inhabited, he began to exert its natural power. +It resonates with Great Hero Boots. +-------------------------- +Indestructible in battle +-------------------------- +MATK +200 +-------------------------- +MATK +3% +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage with Holy element by 1%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Adoramus by 5%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10% +Increases Magical Damage with Holy element by additional 10%. +-------------------------- +Refine Level +9: +Increases magical damage against enemies of every race by 15% (Except Players). +-------------------------- +Refine Level +11: +Increases damage of Adoramus by additional 15%. +-------------------------- +When equipped with Great Hero Boots: +INT +10, MATK +7%. +-------------------------- +Type: Mace +Attack: 170 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Archbishop +# +590015# +A weapon that was restored by using ether to restore a weapon eroded by unclean energy. +New abilities that had not been discovered before began to emerge. +-------------------------- +Indestructible in battle +-------------------------- +MATK +210 +-------------------------- +For each 2 Refine Levels: +Increases damage of Framen by 5%. +Increases Healing skills effectiveness by 5%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with every element by 2%. +-------------------------- +Type: Mace +Attack: 190 +Weight: 130 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Cardinal +# +590016# +A axe containing the pain of bereavement. +-------------------------- +Indestructible in battle +-------------------------- +ATK +10% +-------------------------- +Increases damage of Axe Stomp by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Knuckle Boost by 5%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Vulcan Arm by 25%. +-------------------------- +Refine Level +11: +Increases damage of Arms Cannon by 25%. +-------------------------- +[Bonus by Grade] +[Grade D]: Ranged physical damage +2%. +[Grade C]: Ranged physical damage +3%. +[Grade B]: Damage of Arms Cannon +12%, P.ATK +1. +-------------------------- +Type: One-Handed Axe +Attack: 205 +Weight: 180 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Meister +# +590017# +A mace containing the pain of bereavement. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Acidified Zone (Fire/Water/Wind/Ground) by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Cart Tornado by 3%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Cart Tornado by additional 25%. +-------------------------- +Refine Level +11: +Increases Melee Physical Damage by 10%. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Acidified Zone (Fire/Wind) +5%. +[Grade C]: Damage of Acidified Zone (Water/Ground) +8%, P.ATK +1. +[Grade B]: Damage of Acidified Zone (Fire/Water/Wind/Ground) +10%, POW +2. +-------------------------- +Type: Mace +Attack: 195 +Weight: 165 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Biolo +# +590020# +Thanos' hammer remodeled with the addition of Tim Artnard's technology. +-------------------------- +Indestructible in battle +-------------------------- +MATK +190 +-------------------------- +Physical attacks have a random chance to recover 2500 HP and 50 SP every second for 4 seconds. +-------------------------- +For each 2 Refine Levels: +ATK +10 +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Duple Light by 18%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases Magical Damage with Holy element by 15%. +-------------------------- +Refine Level +9: +ATK +5%, MATK +5% +Increases damage of Duple Light by additional 30%. +-------------------------- +Refine Level +11: +Increases damage against enemies of every size by 15%. +Increases Melee Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3%, Damage of Petitio +10%. +[Grade C]: Ranged physical damage +15%, P.ATK +1. +[Grade B]: Damage of Petitio +10%. +-------------------------- +Type: Mace +Attack: 200 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Archbishop +# +590021# +A mace filled with false beliefs. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Vulcan Arm by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Vulcan Arm by additional 20%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Increases damage of Vulcan Arm by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +Type: Mace +Attack: 340 +Weight: 400 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Mechanic +# +590022# +A mace filled with false beliefs. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Cart Tornado by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Cart Tornado by additional 20%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Cart Tornado by additional 25%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +Type: Mace +Attack: 230 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Genetic +# +590023# +A mace reborn with the power of true faith through a ritual of purification. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Vulcan Arm by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Vulcan Arm by additional 20%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Increases damage of Vulcan Arm by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Vulcan Arm +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Mace +Attack: 340 +Weight: 400 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Meister +# +590024# +A mace reborn with the power of true faith through a ritual of purification. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Cart Tornado by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Cart Tornado by additional 20%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Cart Tornado by additional 25%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Cart Tornado +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Mace +Attack: 230 +Weight: 300 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Biolo +# +590025# +A mace for beginners made by the Paradise Group. +-------------------------- +Indestructible in battle +-------------------------- +Base Level at least 20: +ATK +15 +-------------------------- +Base Level at least 30: +ATK +20 +-------------------------- +Base Level at least 45: +ATK +25 +-------------------------- +Type: Mace +Attack: 100 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +Swordsman, Merchant and Acolyte classes +# +590026# +A mace made by the Paradise Group. +-------------------------- +Indestructible in battle +-------------------------- +ATK +3% +-------------------------- +Base Level at least 60: +Decreases Variable Casting Time by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Acid Terror by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Acid Terror by additional 15%. +-------------------------- +Type: Mace +Attack: 160 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Alchemist classes +# +590027# +A mace made by the Paradise Group. +-------------------------- +Indestructible in battle +-------------------------- +Critical +10 +-------------------------- +Base Level at least 60: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Base Level at least 75: +Increases Critical Damage by 5%. +-------------------------- +Base Level at least 90: +Increases Critical Damage by additional 10%. +-------------------------- +Type: Mace +Attack: 160 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Priest classes +# +590028# +A high-quality mace made by the Paradise Group. +-------------------------- +Indestructible in battle +-------------------------- +ATK +5% +-------------------------- +For each Level of Learning Potion: +Increases Ranged Physical Damage by 1%. +-------------------------- +Base Level at least 105: +Decreases Variable Casting Time by 10%. +Increases damage of Cart Cannon by 25%. +-------------------------- +Base Level at least 110: +Decreases After Skill Delay by 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Cart Cannon by additional 15%. +-------------------------- +Type: Mace +Attack: 180 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Genetic classes +# +590029# +A high-quality mace made by the Paradise Group. +-------------------------- +Indestructible in battle +-------------------------- +MATK +180 +Critical +15% +MATK +5% +-------------------------- +For each Level of Meditatio: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Base Level at least 105: +Decreases Variable Casting Time by 10%. +Decreases After Skill Delay by 10%. +Increases damage of Magnus Exorcismus, Judex and Duple Light by 25%. +-------------------------- +Base Level at least 110: +Increases Magical Damage with Neutral and Holy element by 20%. +Increases Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Magnus Exorcismus, Judex and Duple Light by additional 15%. +-------------------------- +Type: Mace +Attack: 180 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Archbishop classes +# +590030# +An improved version of the sacred scepter said to have been used by a certain saint. +Resonates with Hero's Boots-LT. +-------------------------- +Indestructible in battle +-------------------------- +MATK +195 +MATK +5% +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +For each 2 Refine Levels: +Increases Magical Damage with Holy element by 1%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Adoramus by 5%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +Increases Magical Damage with Holy element by additional 10%. +-------------------------- +Refine Level +9: +Increases Magical Damage against monsters of every race, except Players, by 15%. +-------------------------- +Refine Level +11: +Increases damage of Adoramus by additional 30%. +-------------------------- +When equipped with Hero's Boots-LT: +MATK +10%, S.MATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: MATK +3% +[Grade C]: Magical Damage of Holy element +15%. S.MATK +1 +[Grade B]: SPL +3, S.MATK +2. +-------------------------- +Type: Mace +Attack: 180 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Archbishop classes +# +590034# +An improved version of a hammer crafted from rare ore found in a meteorite. +Resonates with Hero's Boots-LT. +-------------------------- +Indestructible in battle +-------------------------- +ATK +5% +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Vulcan Arm and Knuckle Boost by 10%. +-------------------------- +Refine Level +7: +Increases damage of Vulcan Arm and Knuckle Boost by additional 10%. +-------------------------- +Refine Level +9: +Increases damage of Arms Cannon by 25%. +Decreases Variable Casting Time by 15%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by 15%. +Increases damage of Arms Cannon by additional 20%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Ranged Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2. +-------------------------- +Type: Mace +Attack: 320 +Weight: 350 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Mechanic classes +# +590036# +A cross equipped with unholy energy concentrated on the clock tower parts. +It is more difficult to handle than the existing Relapse Cross. +-------------------------- +Indestructible in battle +-------------------------- +MATK +230 +-------------------------- +For each 2 Refine Levels: +Increases damage of Framen by 7%. +Increases Healing effectiveness by 6%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Arbitrium by 7%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with every element by 3%. +-------------------------- +[Bonus by Grade] +[Grade D]: SPL +2. +[Grade C]: Damage of Framen +10%. +[Grade B]: S.MATK +2. +-------------------------- +Type: Mace +Attack: 150 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Cardinal +# +590038# +A mace crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +Indestructible in battle +-------------------------- +MATK +210 +-------------------------- +Type: Mace +Attack: 210 +Weight: 180 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Swordsman, Merchant and Acolyte classes +# +590039# +A mace crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +Indestructible in battle +-------------------------- +MATK +160 +-------------------------- +Type: Mace +Attack: 400 +Weight: 400 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Mechanic classes +# +590043# +An upgraded extra blunt weapon wrapped in a blue glowing sphere. +-------------------------- +Indestructible in battle +-------------------------- +ATK +5% +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Cart Cannon by 25%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by 15%. +Increases damage of Cart Cannon by additional 20%. +-------------------------- +Type: Mace +Attack: 185 +Weight: 80 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 170 +Genetic +# +590044# +An upgraded mace decorated with an orb with a black glow. +-------------------------- +Indestructible in battle +-------------------------- +MATK +170 +MATK +5% +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Adoramus by 30%. +Increases damage of Judex by 25%. +-------------------------- +Refine Level +11: +Increases Magical Damage with Holy element by 15%. +Decreases After Skill Delay by 15%. +-------------------------- +Type: Mace +Attack: 150 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 170 +Archbishop +# +590045# +A scepter said to be used to slay demons with evil energy. +-------------------------- +Indestructible in battle +-------------------------- +ATK +5%, POW +2. +Increases damage of Third Punish by 5%. +-------------------------- +Refine Level +5: +Increases damage of Third Punish by additional 10%. +-------------------------- +Refine Level +7: +Increases Melee Physical Damage by 5%. +-------------------------- +Refine Level +9: +Increases damage of Third Punish by additional 10%. +-------------------------- +Refine Level +10: +Critical +10 +-------------------------- +Refine Level +11: +Increases damage of Third Punish by additional 5%. +Increases damage of First Brand by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Melee Physical Damage +10%. +[Grade C]: Physical Damage against enemies of every size +10%. +[Grade B]: Physical Damage against enemies of every race +10%. +[Grade A]: Physical Damage against enemies of every element +10%. +-------------------------- +Type: Mace +Attack: 210 +Weight: 150 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 215 +Inquisitor +# +600000# +Physical attacks have a random chance to auto-cast Level 1 Cold Bolt. +-------------------------- +Type: Two-Handed Sword +Attack: 100 +Weight: 1 +Weapon Level: 1 +-------------------------- +Requirement: +Swordman classes +# +600001# +A special Two-Handed Sword prepared for your rapid growth. +-------------------------- +Critical +10 +MaxHP +3% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Up to Base Level 180) +-------------------------- +Refine Level +7: +For each Level of Two-Handed Quicken: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Refine Level +9: +Increases Critical Damage by 10%. +-------------------------- +When equipped with Attack Booster Plate, Attack Booster Manteau, Attack Booster Greaves and Attack Booster Ring: +ASPD +2 +Increases Critical Damage by additional 10%. + +For each 15 Base Level: +Increases damage of Sonic Wave by 2%. +(Up to Base Level 180) + +When using Concentration: +Increases damage of Sonic Wave by additional 35% for 60 seconds. +-------------------------- +When equipped with Ranged Booster Suit, Ranged Booster Manteau, Ranged Booster Boots and Ranged Booster Brooch: +MaxHP +10% +Decreases After Skill Delay by 15%. + +For each 15 Base Level: +Increases damage of Dragon Breath and Dragon Breath - Water by 1%. +(Up to Base Level 180) + +When using Concentration: +Increases damage of Dragon Breath and Dragon Breath - Water by additional 20% for 60 seconds. +-------------------------- +Type: Two-Handed Sword +Attack: 250 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +600004# +A great sword that is said to have been used by a dragon slayer in the past. +It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +MaxHP +3% +MaxSP +3% +-------------------------- +For each 3 Refine Levels: +Increase Dragon Breath and Dragon Breath - Water by 5%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increase long Ranged Physical Damage by 10%. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to gain VIT +20 and increase long Ranged Physical Damage by 10% for 7 seconds when dealing physical damage. +-------------------------- +Type: Two-Handed Sword +Attack: 180 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +600008# +A massive sword that decorated the corners of the Varmundt's Mansion. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Wind Cutter by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Wind Cutter by additional 10%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Wind Cutter by additional 15%. +-------------------------- +Type: Two-Handed Sword +Attack: 280 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rune Knight +# +600009# +An ancient sword said has cut many evil souls in eastern. +He recovered his former glory and began to display his natural abilities. +It resonates with Great Hero Boots. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Sonic Wave by 10%. +-------------------------- +Refine Level +7: +Indestructible in battle +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Random chance to auto-cast Level 2 Sonic Wave when dealing melee physical attacks. +-------------------------- +Refine Level +11: +Critical +15 +Increases Critical Damage by 15%. +-------------------------- +When equipped with Great Hero Boots: +STR +10, ATK +7%. +-------------------------- +Type: Two-Handed Sword +Attack: 240 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rune Knight +# +600011# +A cursed weapon exists only for the destruction of all living being. The curse of this sword even affects the wielder that leads the person to misery. +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +Refine Level +7: +Increases damage of Storm Blast by 20%. +-------------------------- +Refine Level +9: +Physical attacks have a 3% chance to recover 50 HP per refine rate per second for 4 seconds. +-------------------------- +Refine Level +11: +Critical +15 +Increases Critical Damage by 15%. +-------------------------- +When equipped with Illusion Chain Mail: +ATK +30 + +Refine Level of Illusion Death Guidance and Illusion Chain Mail each is +7 or higher: +Critical +5 + +Total Refine Level of entire set at least +18: +Increases damage of Storm Blast by 20%. + +Total Refine Level of entire set at least +22: +Increases Physical Damage against enemies of Water elemental enemies and Fish race by 15%. +-------------------------- +Type: Two-Handed Sword +Attack: 240 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Transcendent Swordman classes +# +600012# +A Two-Handed Sword designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +Critical +15 +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Two-Handed Quicken: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Refine Level +9: +Increases Critical Damage by 10%. +Increases damage of Wind Cutter, Ignition Break and Sonic Wave by 25%. +Physical attacks have a high chance to auto-cast Sonic Wave, skill level is based on learned level. +-------------------------- +Refine Level +11: +Critical +15 +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +13: +Increases damage of Wind Cutter, Ignition Break and Sonic Wave by additional 15%. +-------------------------- +Type: Two-Handed Sword +Attack: 250 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +600013# +A weapon enhanced by using Etel's magical power. +New abilities that had not been discovered before began to emerge. +-------------------------- +For each 2 Refine Levels: +Increases damage of Storm Slash by 5%. +-------------------------- +For each 4 Refine Levels: +ATK +2% +-------------------------- +Type: Two-Handed Sword +Attack: 250 +Weight: 230 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Dragon Knight +# +600014# +A sword containing the pain of bereavement. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Storm Slash by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Ignition Break by 3%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Ignition Break by additional 25%. +-------------------------- +Refine Level +11: +Decreases Ignition Break skill cooldown by 0.7 seconds. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Storm Slash +5%. +[Grade C]: Damage of Storm Slash +8%, P.ATK +1. +[Grade B]: Damage of Storm Slash +12%, POW +2. +-------------------------- +Type: Two-Handed Sword +Attack: 315 +Weight: 220 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Dragon Knight +# +600016# +Thanos' greatsword remodeled with the addition of Tim Artnard's technology. +-------------------------- +Physical attacks have a random chance to recover 2500 HP and 50 SP every second for 4 seconds. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Wind Cutter by 10%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +Increases damage of Wind Cutter by additional 20%. +-------------------------- +Refine Level +9: +ATK +5% +Physical attacks have a certain chance to auto cast Level 2 Wind Cutter. (If you learned a higher Level, it will auto cast that Level instead.) +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +Increases Melee Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +2%, Damage of Servant Weapon +10%. +[Grade C]: ATK +3%, P.ATK +1. +[Grade B]: Damage of Servant Weapon +10%. +-------------------------- +Type: Two-Handed Sword +Attack: 240 +Weight: 250 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Rune Knight +# +600017# +A two-handed sword filled with false beliefs. +-------------------------- +Increases damage of Wind Cutter by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Wind Cutter by additional 20%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Wind Cutter by additional 25%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +Type: Two-Handed Sword +Attack: 300 +Weight: 400 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Rune Knight +# +600018# +A two-handed sword reborn with the power of true faith through a ritual of purification. +-------------------------- +Increases damage of Wind Cutter by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Wind Cutter by additional 20%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Wind Cutter by additional 25%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Wind Cutter +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Two-Handed Sword +Attack: 300 +Weight: 400 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Dragon Knight +# +600020# +A two-handed sword made by the Paradise Group. +-------------------------- +Critical +10 +-------------------------- +Base Level at least 60: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Base Level at least 75: +Increases damage of Bowling Bash by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Bowling Bash by additional 15%. +-------------------------- +Type: Two-handed Sword +Attack: 180 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Knight classes +# +600021# +A high-quality two-handed sword made by the Paradise Group. +-------------------------- +Critical +15 +-------------------------- +For each Level of Two-Handed Quicken: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Base Level at least 105: +Increases Critical Damage by 10%. +Increases damage of Ignition Break and Sonic Wave by 25%. +-------------------------- +Base Level at least 110: +Critical +15 +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Ignition Break and Sonic Wave by additional 15%. +-------------------------- +Type: Two-Handed Sword +Attack: 200 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Rune Knight classes +# +600023# +An improved version of an ancient treasured sword that is said to cut even evil spirits from the East. +Resonates with Hero's Boots-LT. +-------------------------- +Indestructible in battle +-------------------------- +ATK +5% +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Critical Damage by 5%. +-------------------------- +Refine Level +7: +Increases damage of Sonic Wave and Storm Blast by 20%. +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Melee physical attacks have high chance to auto cast Level 2 Sonic Wave. +(If you learned a higher Level, it will auto cast that Level instead.) +Increases damage of Sonic Wave and Storm Blast by additional 20%. +-------------------------- +Refine Level +11: +Critical +25 +Increases Melee and Ranged Physical Damage by 15%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Melee and Ranged Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2. +-------------------------- +Type: Two-Handed Sword +Attack: 240 +Weight: 200 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Rune Knight classes +# +600024# +An improved version of the great sword said to have been used by a certain Dragon Slayer in the past. +Resonates with Hero's Boots-LT. +-------------------------- +MaxHP +5% +-------------------------- +Base Level at least 210: +MaxHP/MaxSP +5%. +-------------------------- +For each 2 Refine Levels: +MaxHP/MaxSP +5% +-------------------------- +For each 3 Refine Levels: +Increases damage of Dragon Breath and Dragon Breath - Water by 7%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by 10%. +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 15%. +Decreases damage taken from enemies of every size by 15%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by additional 7%. +MaxSP +5% +-------------------------- +When equipped with Hero's Boots-LT: +MaxHP +10%, MaxSP +5%. +-------------------------- +[Bonus by Grade] +[Grade D]: MaxHP/MaxSP +3% +[Grade C]: Ranged Physical Damage +15%. RES +30, MRES +30 +[Grade B]: Damage taken from enemies of every element -15%. +-------------------------- +Type: Two-Handed Sword +Attack: 200 +Weight: 200 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Rune Knight classes +# +600027# +A two-handed sword crafted from ice harvested from the glaciers of Isgard. +You can enchanting it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +270 +-------------------------- +Type: Two-Handed Sword +Attack: 300 +Weight: 400 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Knight classes +# +600028# +An upgraded version of a two-handed Sword made of high density emerald that emits rays of light. +-------------------------- +Indestructible in battle +-------------------------- +Critical +10 +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases Critical Damage by 20%. +Increases damage of Storm Blast by 25%. +-------------------------- +Refine Level +11: +Increases Damage against monsters of Small and Medium size by 25%. +-------------------------- +Type: Two-Handed Sword +Attack: 250 +Weight: 180 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 170 +Swordman classes +# +610000# +A special Katar prepared for your rapid growth. +-------------------------- +ATK +2% +-------------------------- +Increases Critical Damage by 3% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Up to Base Level 180) +-------------------------- +Refine Level +7: +For each Level of Katar Mastery: +Increases Critical Damage by additional 1%. +-------------------------- +Refine Level +9: +ATK +10% +-------------------------- +When equipped with Attack Booster Plate, Attack Booster Manteau, Attack Booster Greaves and Attack Booster Ring: +ASPD +2 +Increases Critical Damage by additional 10%. + +For each 15 Base Level: +Increases Physical Damage against enemies of against enemies of all elements by 1%. +(Up to Base Level 180) + +When using Enchant Deadly Poison: +Increases Physical Damage against enemies of against enemies of all elements by additional 10% for 60 seconds. +-------------------------- +When equipped with Ranged Booster Suit, Ranged Booster Manteau, Ranged Booster Boots and Ranged Booster Brooch: +ATK +10% +Decreases After Skill Delay by 15%. + +For each 15 Base Level: +Increases damage of Rolling Cutter by 1%. +(Up to Base Level 180) + +When using Enchant Deadly Poison: +Increases damage of Rolling Cutter by additional 20% for 60 seconds. +-------------------------- +Type: Katar +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +610003# +Katar with sharp blades. +It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 4%). +-------------------------- +Refine Level +9: +Increases damage of Rolling Cutter by 20%. +-------------------------- +Refine Level +11: +Increases Attack Speed (Decreases After Attack Delay by 7%). +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase STR by 20 and ATK by 15% for 7 seconds when dealing physical damage. +-------------------------- +Type: Katar +Attack: 185 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +610006# +Automatic robots break down, smash and fall apart. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Increases damage of Rolling Cutter by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Cross Ripper Slasher by 15%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Increases damage of Rolling Cutter and Cross Ripper Slasher by additional 15%. +-------------------------- +Type: Katar +Attack: 220 +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Guillotine Cross +# +610008# +Katar specially made to inflict lethal damage, it was once used by famous assassin in the past. +He recovered his former glory and began to display his natural abilities. +It resonates with Great Hero Boots. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Critical Damage by 4%. +-------------------------- +Refine Level +7: +Increases Critical Damage by additional 15%. +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Demihuman and Brute race by 25%. +-------------------------- +Refine Level +11: +Critical +15 +Decreases Dark Claw skill cooldown by 10 sec. +-------------------------- +When equipped with Great Hero Boots: +AGI +10 +Increases Melee Physical Damage by 5%. +-------------------------- +Type: Katar +Attack: 225 +Weight: 140 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Guillotine Cross +# +610009# +Katar with sharp blades. +He recovered his former glory and began to display his natural abilities. +It resonates with Great Hero Boots. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Attack Speed (Decreases After Attack Delay by 4%). +-------------------------- +Refine Level +7: +Increases damage of Rolling Cutter and Cross Ripper Slasher by 25%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 12%. +-------------------------- +Refine Level +11: +Increases melee and long Ranged Physical Damage by 10%. +-------------------------- +When equipped with Great Hero Boots: +STR +10, ATK +7%. +-------------------------- +Type: Katar +Attack: 275 +Weight: 140 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Guillotine Cross +# +610012# +A katar fashioned from a cold, sharp icicle. +-------------------------- +For each Refine Level: +ATK +5 +-------------------------- +Refine Level +7: +Increases damage of Cross Impact by 20%. +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +11: +Critical +15 +Increases Physical Damage against enemies of Fire elemental enemies and Insect race by 10%. +-------------------------- +When equipped with Illusion Ring: +ATK +5% + +Refine Level of Illusion Katar of Frozen Icicle is +9: +Increases Critical Damage by 20%. + +Refine Level of Illusion Katar of Frozen Icicle is +11: +Critical +15 for 10 seconds when using Venom Impress skill. +-------------------------- +Type: Katar +Attack: 220 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Assassin classes +# +610013# +A Katar designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +Critical +15 +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Advanced Katar Mastery: +Increases Melee Physical Damage by 2%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 5%. +Increases damage of Cross Impact and Rolling Cutter by 25%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by additional 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +13: +Increases damage of Cross Impact and Rolling Cutter by additional 15%. +-------------------------- +Type: Katar +Attack: 200 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +610015# +A weapon that was restored by using ether to restore a weapon eroded by unclean energy. +New abilities that had not been discovered before began to emerge. +-------------------------- +For each 2 Refine Levels: +Increases damage of Impact Crater by 5%. +-------------------------- +For each 4 Refine Levels: +ATK +2% +-------------------------- +Type: Katar +Attack: 260 +Weight: 180 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Shadow Cross +# +610016# +A katar containing the pain of bereavement. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Impact Crater by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Rolling Cutter by 3%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases damage of Rolling Cutter by additional 30%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 12%. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Impact Crater +5%. +[Grade C]: Damage of Impact Crater +8%, P.ATK +1. +[Grade B]: Damage of Impact Crater +12%, POW +1. +-------------------------- +Type: Katar +Attack: 280 +Weight: 190 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Shadow Cross +# +610019# +Thanos' katar remodeled with the addition of Tim Artnard's technology. +-------------------------- +Physical attacks have a random chance to recover 2500 HP and 50 SP every second for 4 seconds. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Counter Slash by 7%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by 12%. +Increases damage of Counter Slash by additional 15%. +-------------------------- +Refine Level +9: +ATK +5% +Increases damage of Rolling Cutter by 25%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +Increases Melee Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3%, Damage of Impact Crater +10%. +[Grade C]: After Skill Delay of all skills -5%, P.ATK +1. +[Grade B]: Damage of Impact Crater +10%. +-------------------------- +Type: Katar +Attack: 250 +Weight: 200 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Guillotine Cross +# +610020# +A chakram filled with false beliefs. +-------------------------- +Increases damage of Rolling Cutter by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Rolling Cutter by additional 20%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Rolling Cutter by additional 25%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +Type: Katar +Attack: 250 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Guillotine Cross +# +610021# +A katar filled with false beliefs. +-------------------------- +Increases damage of Counter Slash by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Counter Slash by additional 20%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Counter Slash by additional 25%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +Type: Katar +Attack: 230 +Weight: 170 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Guillotine Cross +# +610022# +A chakram reborn with the power of true faith through a ritual of purification. +-------------------------- +Increases damage of Rolling Cutter by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Rolling Cutter by additional 20%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Rolling Cutter by additional 25%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Rolling Cutter +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Katar +Attack: 250 +Weight: 200 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Shadow Cross +# +610023# +A katar reborn with the power of true faith through a ritual of purification. +-------------------------- +Increases damage of Counter Slash by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Counter Slash by additional 20%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Counter Slash by additional 25%. +-------------------------- +Refine Level +12: +Increases Melee Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Counter Slash +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Katar +Attack: 230 +Weight: 170 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Shadow Cross +# +610024# +A katar made by the Paradise Group. +-------------------------- +Critical +5 +-------------------------- +Base Level at least 60: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Base Level at least 75: +Increases Critical Damage by 5%. +-------------------------- +Base Level at least 90: +Increases Critical Damage by additional 10%. +-------------------------- +Type: Katar +Attack: 180 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Assassin classes +# +610025# +A katar made by the Paradise Group. +-------------------------- +ATK +3% +-------------------------- +Base Level at least 60: +HIT +15 +-------------------------- +Base Level at least 75: +Increases damage of Sonic Blow by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Sonic Blow by additional 15%. +-------------------------- +Type: Katar +Attack: 180 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Assassin classes +# +610026# +A high-quality katar made by the Paradise Group. +-------------------------- +Critical +10 +-------------------------- +For each Level of Katar Mastery: +Increases Melee Physical Damage by 1%. +-------------------------- +Base Level at least 105: +Decreases After Skill Delay by 5%. +Increases damage of Cross Impact and Rolling Cutter by 25%. +-------------------------- +Base Level at least 110: +Decreases After Skill Delay by additional 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Cross Impact and Rolling Cutter by additional 15%. +-------------------------- +Type: Katar +Attack: 200 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross classes +# +610027# +A high-quality katar made by the Paradise Group. +-------------------------- +ATK +5% +-------------------------- +For each Level of Katar Mastery: +Decreases After Skill Delay by 1%. +-------------------------- +Base Level at least 105: +Increases Melee Physical Damage by 10%. +Increases damage of Counter Slash by 25%. +-------------------------- +Base Level at least 110: +Decreases After Skill Delay by additional 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Counter Slash by additional 15%. +-------------------------- +Type: Katar +Attack: 200 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross classes +# +610028# +A katar designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each 2 Levels of Katar Mastery: +Decreases After Skill Delay by 1%. +-------------------------- +Refine Level +9: +Increases Melee Physical Damage by 10%. +Increases damage of Meteor Assault and Counter Slash by 25%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by additional 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +13: +Increases damage of Meteor Assault and Counter Slash by additional 15%. +-------------------------- +Type: Katar +Attack: 240 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Guillotine Cross +# +610033# +An improved version of Katar that maximized the lethal power said to have been used by a famous assassin in the past. +Resonates with Hero's Boots-LT. +-------------------------- +ATK +5% +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Critical Damage by 5%. +-------------------------- +Refine Level +7: +Increases damage of Cross Impact by 20%. +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases damage of Cross Impact by additional 25%. +Increases Physical Damage against monsters of Demi-Human, Brute and Dragon race by 25%. +-------------------------- +Refine Level +11: +Critical +15 +Decreases Dark Claw skill cooldown by 10 seconds. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Melee Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2 +-------------------------- +Type: Katar +Attack: 255 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Guillotine Cross classes +# +610034# +An improved version of Katar with sharp blades. +Resonates with Hero's Boots-LT. +-------------------------- +ATK +5% +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Decreases After Skill Delay by 2%. +-------------------------- +Refine Level +7: +Increases damage of Rolling Cutter and Cross Ripper Slasher by 25%. +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases damage of Rolling Cutter and Cross Ripper Slasher by additional 20%. +Decreases After Skill Delay by additional 5%. +-------------------------- +Refine Level +11: +Increases Melee and Ranged Physical Damage by 15%. +Increases damage of Counter Slash by 30%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Melee and Ranged Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2 +-------------------------- +Type: Katar +Attack: 275 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Guillotine Cross classes +# +610035# +A katar equipped with unholy energy concentrated on the clock tower parts. +It is more difficult to handle than the existing Relapse Katar. +-------------------------- +For each 2 Refine Levels: +Increases damage of Impact Crater by 6%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Savage Impact by 7%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 3%. +-------------------------- +[Bonus by Grade] +[Grade D]: POW +2. +[Grade C]: Damage of Impact Crater +10%. +[Grade B]: P.ATK +2. +-------------------------- +Type: Katar +Attack: 280 +Weight: 190 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Shadow Cross +# +610037# +A katar crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +220 +-------------------------- +Type: Katar +Attack: 240 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Guillotine Cross classes +# +610039# +An upgraded version of a katar with black blades that engraved with turquoise colored motif. +-------------------------- +ATK +5% +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 7%). +Increases Ranged Physical Damage by 10%. +-------------------------- +Refine Level +9: +Increases damage of Cross Ripper Slasher by 45%. +Decreases After Skill Delay by 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Small and Medium size by 20%. +-------------------------- +Type: Katar +Attack: 190 +Weight: 130 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 170 +Guillotine Cross +# +620003# +A Two-Handed Axe designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +Indestructible in battle +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Weaponry Research: +Increases Melee Physical Damage by 1%. +-------------------------- +Refine Level +9: +Decreases Axe Tornado skill cooldown by 1 second. +Increases damage of Axe Tornado and Power Swing by 25%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 10%. +Increases Physical Damage against enemies of every size by 20%. +-------------------------- +Refine Level +13: +Increases damage of Axe Tornado and Power Swing by additional 15%. +-------------------------- +Type: Two-Handed Axe +Attack: 300 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Mechanic +# +620004# +A Two-Handed Axe created by top class blacksmith whose had revenge desire. +Seeing the sharp ax blade, he began to show his natural ability. +It resonates with Great Hero Boots. +-------------------------- +Indestructible in battle +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Axe Tornado by 10%. +-------------------------- +Refine Level +7: +Increases damage of Axe Boomerang by 40%. +Decreases Cross Slash skill cooldown by 1 sec. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size monsters by 15%. +-------------------------- +Refine Level +11: +Decreases Physical and Magical Damage from against enemies of all elements by 5%. +-------------------------- +When equipped with Great Hero Boots: +STR +10, ATK +7%. +-------------------------- +Type: Two-Handed Axe +Attack: 290 +Weight: 700 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Mechanic +# +620005# +A weapon that was restored by using ether to restore a weapon eroded by unclean energy. +New abilities that had not been discovered before began to emerge. +-------------------------- +For each 2 Refine Levels: +Increases damage of Axe Stomp by 5%. +-------------------------- +For each 4 Refine Levels: +ATK +2% +-------------------------- +Type: Two-Handed Axe +Attack: 280 +Weight: 300 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Meister +# +620006# +A huge axe containing the pain of bereavement. +-------------------------- +Indestructible in battle +-------------------------- +ATK +10% +-------------------------- +Increases damage of Axe Stomp by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Axe Tornado by 3%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases damage of Axe Tornado by additional 25%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Axe Stomp +5%. +[Grade C]: Damage of Axe Stomp +8%, P.ATK +1. +[Grade B]: Damage of Axe Stomp +12%, POW +2. +-------------------------- +Type: Two-Handed Axe +Attack: 325 +Weight: 325 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Meister +# +620009# +Thanos' two-handed axe remodeled with the addition of Tim Artnard's technology. +-------------------------- +Physical attacks have a random chance to recover 2500 HP and 50 SP every second for 4 seconds. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Axe Tornado by 7%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by 10%. +Decreases Axe Tornado skill cooldown by 1 second. +-------------------------- +Refine Level +9: +Increases damage of Axe Boomerang by 15%. +Increases damage of Axe Tornado by additional 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +Increases Melee Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +2%, Damage of Axe Stomp +10%. +[Grade C]: ATK +3%, P.ATK +1. +[Grade B]: Damage of Axe Stomp +10%. +-------------------------- +Type: Two-Handed Axe +Attack: 350 +Weight: 600 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Mechanic +# +620010# +An axe that is so huge and heavy that even the word \ + doesn't fit. +-------------------------- +Indestructible in battle +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +Base STR at least 100: +ATK +75 +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by additional 10%. +-------------------------- +Refine Level +9: +Increases Physical Damage by 15%. +Increases Physical Damage against enemies of every size by 20%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 10%. +-------------------------- +When equipped with Illusion Chain Mail: +ATK +50 +Decreases After Skill Delay by additional 10%. + +Refine Level of Illusion Doom Slayer and Illusion Chain Mail is +7 or higher: +Increases Attack Speed (Decreases After Attack Delay by 15%). + +Total Refine Level of entire set at least +18: +Increases Physical Damage against enemies of every race by 20%. + +Total Refine Level of entire set at least +22: +ATK +15% +Decreases Variable Casting Time by 10%. +-------------------------- +Type: Two-Handed Axe +Attack: 250 +Weight: 700 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Merchant classes +# +620011# +A two-handed axe made by the Paradise Group. +-------------------------- +Indestructible in battle +-------------------------- +Critical +10 +-------------------------- +Base Level at least 60: +HIT +15 +-------------------------- +Base Level at least 75: +Increases Critical Damage by 5%. +-------------------------- +Base Level at least 90: +Increases Critical Damage by additional 5%. +-------------------------- +Type: Two-Handed Axe +Attack: 180 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Blacksmith classes +# +620012# +A high-quality two-handed axe made by the Paradise Group. +-------------------------- +ATK +5% +-------------------------- +For each Level of Weapon Research: +Increases Melee Physical Damage by 1%. +-------------------------- +Base Level at least 105: +Decreases Axe Tornado skill cooldown by 1 second. +Increases damage of Axe Tornado and Power Swing by 25%. +-------------------------- +Base Level at least 110: +Decreases After Skill Delay by additional 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Axe Tornado and Power Swing by additional 15%. +-------------------------- +Type: Two-Handed Axe +Attack: 250 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Mechanic classes +# +620015# +An improved version of the two-handed axe that is said to have been sharpened by a first-class blacksmith for his revenge. +Resonates with Hero's Boots-LT. +-------------------------- +Indestructible in battle +-------------------------- +ATK +5% +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Axe Tornado by 10%. +-------------------------- +Refine Level +7: +Increases damage of Axe Tornado by 40%. +Decreases Axe Tornado skill cooldown by 1 second. +-------------------------- +Refine Level +9: +Increases Melee and Ranged Physical Damage by 15%. +Increases Physical Damage against enemies of every size by 20%. +-------------------------- +Refine Level +11: +Decreases damage taken from enemies of every element by 20%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Melee and Ranged Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2 +-------------------------- +Type: Two-Handed Axe +Attack: 290 +Weight: 700 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Mechanic classes +# +620016# +A axe equipped with unholy energy concentrated on the clock tower parts. +It is more difficult to handle than the existing Relapse Axe. +-------------------------- +Indestructible in battle +-------------------------- +For each 2 Refine Levels: +Increases damage of Axe Stomp by 7%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Axe Tornado by 8%. +-------------------------- +For each 4 Refine Levels: +Increases Melee Physical Damage by 3%. +-------------------------- +[Bonus by Grade] +[Grade D]: POW +2. +[Grade C]: Damage of Axe Stomp +10%. +[Grade B]: P.ATK +2. +-------------------------- +Type: Two-Handed Axe +Attack: 300 +Weight: 320 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Meister +# +620017# +A two-handed axe crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +Indestructible in battle +-------------------------- +MATK +180 +-------------------------- +Type: Two-Handed Axe +Attack: 350 +Weight: 700 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Mechanic classes +# +620018# +An upgraded axe with a invisible blade. +Normally you don't see the blade, but when you swing, you can see it faintly reddish. +-------------------------- +Indestructible in battle +-------------------------- +Decreases damage taken from Medium and Large size by 15%. +-------------------------- +Refine Level +7: +Decreases damage taken from Medium and Large size by additional 15%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 15%. +Increases damage of Arms Cannon by 25%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 15%. +-------------------------- +Type: Two-Handed Axe +Attack: 400 +Weight: 450 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 170 +Mechanic +# +630003# +Scientific instrument that was kept in the Varmundt's Mansion. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Increases damage of Hundred Spear by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Hundred Spear by additional 15%. +-------------------------- +Refine Level +9: +Decreases Hundred Spear skill cooldown by 1.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Hundred Spear by additional 20%. +-------------------------- +Type: Two-Handed Spear +Attack: 250 +Weight: 330 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rune Knight +# +630006# +A spear that radiates with the warm, glowing light of pure holiness. +-------------------------- +ATK +10% +-------------------------- +For each 2 Refine Levels: +Increases damage of Overbrand by 5%. +-------------------------- +Refine Level +7: +Increases damage Overbrand by additional 20%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of Medium and Large size by 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Fish and Demon race by 30%. +-------------------------- +When equipped with Illusion Saphien's Armor of Ocean: +ATK +5% + +Refine Level of Illusion Brionac and Illusion Saphien's Armor of Ocean each is +7 or higher: +Decreases After Skill Delay by 5%. + +Total Refine Level of entire set at least +18: +Increases damage of Overbrand by 20%. + +Total Refine Level of entire set at least +22: +Has as a chance to gain ATK +50 and Increases Physical Damage against enemies of Fish and Demon race by 50% for 10 seconds when using Overbrand skill. +-------------------------- +Type: Two-Handed Spear +Attack: 210 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Swordman classes +# +630007# +A spear imbued with the wind element. +-------------------------- +For each Refine Level: +ATK +4 +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +7: +Increases damage Spiral Pierce by 20%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 5%. +-------------------------- +Refine Level +11: +HIT +10 +Increases Physical Damage against enemies of Medium and Large size by 10%. +-------------------------- +When equipped with Illusion Chain Mail: +ATK +30 + +Refine Level of Illusion Zephyrus and Illusion Chain Mail each is +7 or higher: +Increases Ranged Physical Damage by 5%. + +Total Refine Level of entire set at least +18: +Increases damage of Spiral Pierce by 20%. + +Total Refine Level of entire set at least +22: +Increases damage against Water elemental by 15%. +Increases Physical Damage against enemies of Fish race by 15%. +-------------------------- +Type: Two-Handed Spear +Attack: 250 +Weight: 330 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 120 +Swordman classes +# +630008# +A Two-Handed Spear designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +MaxHP +250 +MaxSP +20 +-------------------------- +For each 15 Base Level: +ATK +1% (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Dragon Training: +Decreases After Skill Delay by 3%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +Increases damage of Dragon Breath, Dragon Breath - Water and Hundred Spear by 25%. +-------------------------- +Refine Level +11: +Decreasees Hundred Spear skill cooldown by 2 seconds. +Increases Ranged Physical Damage by 15%. +-------------------------- +Refine Level +13: +Increases damage of Dragon Breath, Dragon Breath - Water and Hundred Spear by additional 15%. +-------------------------- +Type: Two-Handed Spear +Attack: 250 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Rune Knight +# +630009# +A spear containing the pain of bereavement. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Madness Crusher by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Hundred Spear by 3%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Hundred Spear by additional 25%. +-------------------------- +Refine Level +11: +Decreases Hundred Spear skill cooldown by 2 seconds. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Madness Crusher +5%. +[Grade C]: Damage of Madness Crusher +8%, P.ATK +1. +[Grade B]: Damage of Madness Crusher +12%, POW +2. +-------------------------- +Type: Two-Handed Spear +Attack: 320 +Weight: 230 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Dragon Knight +# +630012# +A lance filled with false beliefs. +-------------------------- +Increases damage of Hundred Spear by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Hundred Spear by additional 20%. +-------------------------- +Refine Level +9: +Decreases Hundred Spear skill cooldown by 1.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Hundred Spear by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +Type: Two-Handed Spear +Attack: 270 +Weight: 380 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Rune Knight +# +630013# +A lance reborn with the power of true faith through a ritual of purification. +-------------------------- +Increases damage of Hundred Spear by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Hundred Spear by additional 20%. +-------------------------- +Refine Level +9: +Decreases Hundred Spear skill cooldown by 1.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Hundred Spear by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Hundred Spear +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Two-Handed Spear +Attack: 270 +Weight: 380 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Dragon Knight +# +630014# +A two-handed spear made by the Paradise Group. +-------------------------- +ATK +3% +-------------------------- +Base Level at least 60: +Increases damage of Pierce by 20%. +-------------------------- +Base Level at least 75: +Increases damage of Brandish Spear by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Brandish Spear by additional 15%. +-------------------------- +Type: Two-Handed Spear +Attack: 180 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Knight classes +# +630015# +A high-quality two-handed spear made by the Paradise Group. +-------------------------- +ATK +5% +-------------------------- +For each Level of Dragon Training: +Decreases After Skill Delay by 3%. +-------------------------- +Base Level at least 105: +Decreases Variable Casting Time fo all skills by 10%. +Increases damage of Dragon Breath, Dragon Breath - Water and Hundred Spear by 25%. +-------------------------- +Base Level at least 110: +Decreases Hundred Spear skill cooldown by 2 seconds. +Increases Ranged Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Dragon Breath, Dragon Breath - Water and Hundred Spear by additional 15%. +-------------------------- +Type: Two-Handed Spear +Attack: 200 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Rune Knight classes +# +630018# +A two-handed spear crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +270 +-------------------------- +Type: Two-Handed Spear +Attack: 300 +Weight: 450 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Knight classes +# +640000# +A special staff prepared for your rapid growth. +-------------------------- +Indestructible in battle +-------------------------- +MATK +200 +-------------------------- +MATK +2% +-------------------------- +Increases Magical Damage with Fire element by 3%. +-------------------------- +For each Refine Level: +MATK +3 +-------------------------- +For each 15 Base Level: +MATK +3 (Up to Base Level 180) +-------------------------- +Refine Level +7: +For each Level of Mystical Amplification: +Increases Magical Damage with Fire element by additional 1%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Ghost, Wind, Water element by 10%. +-------------------------- +When equipped with Elemental Booster Robe, Elemental Booster Muffler, Elemental Booster Shoes and Elemental Booster Earring: +MATK +20 +Increases Magical Damage against enemies of every size by 10%. + +For each 15 Base Level: +Increases damage of Crimson Rock by 1%. +(Up to Base Level 180) + +When using Mystical Amplification: +Increases damage of Crimson Rock by additional 20% for 60 seconds. +-------------------------- +When equipped with Default Booster Robe, Default Booster Muffler, Default Booster Shoes and Default Booster Earring: +MATK +20 +Decreases After Skill Delay by 10%. + +For each 15 Base Level: +Increases damage of Soul Expansion by 1%. +(Up to Base Level 180) + +When using Mystical Amplification: +Increases damage of Soul Expansion by additional 20% for 60 seconds. +-------------------------- +Type: Two-Handed Staff +Attack: 100 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Warlock +# +640004# +A staff with the power of cold ice used by some arch wizards in the past. +It resonates with Ancient Hero's Boots. +-------------------------- +Indestructible in battle +-------------------------- +MATK +200 +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Jack Frost by 12%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Water element by 7%. +-------------------------- +Refine Level +11: +Decreases Jack Frost skill cooldown by 1 second. +Increases Magical Damage against monsters of Fire elemental by 7%. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase INT by 20 and MATK by 15% for 7 seconds when dealing magical damage. +-------------------------- +Type: Two-Handed Staff +Attack: 100 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Warlock +# +640005# +Scientific instrument that was kept in the Varmundt's Mansion. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Indestructible in battle +-------------------------- +MATK +320 +-------------------------- +Increases Magical Damage with Neutral and Water element by 15%. +-------------------------- +For each 3 Refine Levels: +MATK +6 +Decreases Variable Casting Time by 3%. +-------------------------- +Refine Level +7: +Increases damage of Comet and Jack Frost by 10%. +-------------------------- +Refine Level +9: +Decreases Comet skill cooldown by 10 seconds. +Decreases Jack Frost skill cooldown by 1.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Comet and Jack Frost by additional 20%. +-------------------------- +Type: Two-Handed Staff +Attack: 180 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Warlock +# +640009# +A Two-Handed Staff designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +Indestructible in battle +-------------------------- +MATK +230 +MATK +2% +-------------------------- +For each Refine Level: +MATK +3 +-------------------------- +For each 15 Base Level: +MATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Mystical Amplification: +Increases Fire, Magical Damage with Earth and Neutral element by 1%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +Increases damage of Crimson Rock, Earth Strain and Comet by 25%. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every size by 15%. +Increases Fire, Magical Damage with Earth and Neutral element by additional 15%. +-------------------------- +Refine Level +13: +Increases damage of Crimson Rock, Earth Strain and Comet by additional 15%. +-------------------------- +Type: Two-Handed Staff +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Warlock +# +640010# +A Two-Handed Staff designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +Indestructible in battle +-------------------------- +MATK +230 +MATK +2% +-------------------------- +For each Refine Level: +MATK +3 +-------------------------- +For each 15 Base Level: +MATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Mystical Amplification: +Increases Magical Damage with Wind, Water and Ghost element by 1%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +Increases damage of Chain Lightning, Jack Frost and Soul Expansion by 25%. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every size by 15%. +Increases Magical Damage with Wind, Water and Ghost element by additional 15%. +-------------------------- +Refine Level +13: +Increases damage of Chain Lightning, Jack Frost and Soul Expansion by additional 15%. +-------------------------- +Type: Two-Handed Staff +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Warlock +# +640011# +Metal staff made from stainless steel. +It is said that an ancient wizard made it. +It resonates with Great Hero Boots. +-------------------------- +Indestructible in battle +-------------------------- +MATK +235 +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Earth Strain by 12%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +Increases Magical Damage with Fire and Earth element by 15%. +-------------------------- +Refine Level +9: +Decreases Earth Strain skill cooldown by 1 second. +Decreases Variable Casting Time by additional 5%. +-------------------------- +Refine Level +11: +Increases Magical Damage against all sizes by 15%. +Increases damage of Crimson Rock by 15%. +-------------------------- +When equipped with Great Hero Boots: +INT +10, MATK +7%. +-------------------------- +Type: Two-Handed Staff +Attack: 100 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Warlock +# +640012# +A staff with the power of cold ice used by some arch wizards in the past. +Seeing the power of cold magic, it began to show its natural power. +It resonates with Great Hero Boots. +-------------------------- +Indestructible in battle +-------------------------- +MATK +235 +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Jack Frost by 12%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +Increases Magical Damage with Water and Wind element by 15%. +-------------------------- +Refine Level +9: +Decreases Jack Frost skill cooldown by 1 second. +Decreases Delay After Skill by 5%. +-------------------------- +Refine Level +11: +Increases Magical Damage against all sizes by 15%. +Increases damage of Chain Lightning by 15%. +-------------------------- +When equipped with Great Hero Boots: +INT +10, MATK +7%. +-------------------------- +Type: Two-Handed Staff +Attack: 100 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Warlock +# +640013# +A weapon enhanced by using Etel's magical power. +New abilities that had not been discovered before began to emerge. +-------------------------- +Indestructible in battle +-------------------------- +MATK +240 +-------------------------- +For each 2 Refine Levels: +Increases damage of Frozen Slash by 5%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with every element by 2%. +-------------------------- +Type: Two-Handed Staff +Attack: 140 +Weight: 210 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Arch Mage +# +640014# +A staff containing the pain of bereavement. +-------------------------- +Indestructible in battle +-------------------------- +MATK +300 +MATK +10% +-------------------------- +Increases damage of Crimson Arrow and Frozen Slash by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Crimson Rock and Frost Misty by 3%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Crimson Rock and Frost Misty by additional 25%. +-------------------------- +Refine Level +11: +Increases Magical Damage with Fire and Water element by 10%. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Crimson Arrow and Frozen Slash +5%. +[Grade C]: Damage of Crimson Arrow and Frozen Slash +8%, S.MATK +1. +[Grade B]: Damage of Crimson Arrow and Frozen Slash +12%, SPL +2. +-------------------------- +Type: Two-Handed Staff +Attack: 170 +Weight: 200 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Arch Mage +# +640015# +A staff containing the pain of bereavement. +-------------------------- +Indestructible in battle +-------------------------- +MATK +300 +MATK +10% +-------------------------- +Increases damage of Storm Cannon and Rock Down by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Chain Lightning and Earth Strain by 3%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Chain Lightning and Earth Strain by additional 25%. +-------------------------- +Refine Level +11: +Increases Magical Damage with Wind and Earth element by 10%. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Storm Cannon and Rock Down +5%. +[Grade C]: Damage of Storm Cannon and Rock Down +8%, S.MATK +1. +[Grade B]: Damage of Storm Cannon and Rock Down +12%, SPL +2. +-------------------------- +Type: Two-Handed Staff +Attack: 170 +Weight: 200 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Arch Mage +# +640017# +Thanos' two-handed staff remodeled with the addition of Tim Artnard's technology. +-------------------------- +Magical attacks have a random chance to recover 1000 HP and 100 SP every second for 4 seconds. +-------------------------- +For each 2 Refine Levels: +MATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Crimson Rock by 10%. +-------------------------- +Refine Level +7: +Decreases After Skill Delay by 10%. +Increases Magical Damage with Fire and Earth element by 15%. +-------------------------- +Refine Level +9: +Increases damage of Earth Strain by 40%. +Increases damage of Crimson Rock by additional 15%. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every size by 15%. +Decreases damage taken from against enemies of all elements by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: MATK +2%, Damage of Floral Flare Road and Stratum Tremor +10%. +[Grade C]: MATK +3%, S.MATK +1. +[Grade B]: Damage of Floral Flare Road and Stratum Tremor +10%. +-------------------------- +Type: Two-Handed Staff +Attack: 150 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Warlock +# +640019# +A two-handed staff filled with false beliefs. +-------------------------- +Indestructible in battle +-------------------------- +MATK +340 +-------------------------- +Increases damage of Comet by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +18 +-------------------------- +Refine Level +7: +Increases damage of Comet by additional 20%. +-------------------------- +Refine Level +9: +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Comet by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Neutral element by 15%. +-------------------------- +Type: Two-Handed Staff +Attack: 200 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Warlock +# +640020# +A rod filled with false beliefs. +-------------------------- +Indestructible in battle +-------------------------- +MATK +340 +-------------------------- +Increases damage of Soul Expansion by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +18 +-------------------------- +Refine Level +7: +Increases damage of Soul Expansion by additional 20%. +-------------------------- +Refine Level +9: +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Soul Expansion by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Ghost element by 15%. +-------------------------- +Type: Two-Handed Staff +Attack: 200 +Weight: 190 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Warlock +# +640021# +A two-handed staff reborn with the power of true faith through a ritual of purification. +-------------------------- +Indestructible in battle +-------------------------- +MATK +340 +-------------------------- +Increases damage of Comet by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +18 +-------------------------- +Refine Level +7: +Increases damage of Comet by additional 20%. +-------------------------- +Refine Level +9: +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Comet by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Neutral element by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Magical Damage against against enemies of every element +15%. +[Grade C]: Damage of Comet +15%. +[Grade B]: MATK +7%. +[Grade A]: SPL +1, S.MATK +1 per 3 Refine Levels. +-------------------------- +Type: Two-Handed Staff +Attack: 200 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 210 +Arch Mage +# +640022# +A rod reborn with the power of true faith through a ritual of purification. +-------------------------- +Indestructible in battle +-------------------------- +MATK +340 +-------------------------- +Increases damage of Soul Expansion by 10%. +-------------------------- +For each 3 Refine Levels: +MATK +18 +-------------------------- +Refine Level +7: +Increases damage of Soul Expansion by additional 20%. +-------------------------- +Refine Level +9: +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Soul Expansion by additional 25%. +-------------------------- +Refine Level +12: +Increases Magical Damage with Ghost element by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Magical Damage against against enemies of every element +15%. +[Grade C]: Damage of Soul Expansion +15%. +[Grade B]: MATK +7%. +[Grade A]: SPL +1, S.MATK +1 per 3 Refine Levels. +-------------------------- +Type: Two-Handed Staff +Attack: 200 +Weight: 190 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 210 +Arch Mage +# +640023# +A high-quality two-handed staff made by the Paradise Group. +-------------------------- +MATK +200 +MATK +5% +-------------------------- +Indestructible in battle +-------------------------- +For each Level of Mystical Amplification: +Decreases Variable Casting Time by 1%. +-------------------------- +Base Level at least 105: +Increases Magical Damage with Fire and Earth element by 10%. +Increases damage of Crimson Rock and Earth Strain by 25%. +-------------------------- +Base Level at least 110: +Increases Magical Damage with Fire and Earth element by additional 15%. +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Crimson Rock and Earth Strain by additional 15%. +-------------------------- +Type: Two-Handed Staff +Attack: 150 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Warlock classes +# +640024# +A high-quality two-handed staff made by the Paradise Group. +-------------------------- +MATK +200 +MATK +5% +-------------------------- +Indestructible in battle +-------------------------- +For each Level of Mystical Amplification: +Decreases Variable Casting Time by 1%. +-------------------------- +Base Level at least 105: +Increases Magical Damage with Wind and Ghost element by 10%. +Increases damage of Chain Lightning and Soul Expansion by 25%. +-------------------------- +Base Level at least 110: +Increases Magical Damage with Wind and Ghost element by additional 15%. +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Chain Lightning and Soul Expansion by additional 15%. +-------------------------- +Type: Two-Handed Staff +Attack: 150 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Warlock classes +# +640025# +A high-quality two-handed staff made by the Paradise Group. +-------------------------- +MATK +200 +MATK +5% +-------------------------- +Indestructible in battle +-------------------------- +For each Level of Happy Break: +Decreases Variable Casting Time by 1%. +-------------------------- +Base Level at least 105: +Increases Magical Damage with every element by 10%. +Increases damage of Espa and Eswhoo by 25%. +-------------------------- +Base Level at least 110: +Decreases Variable Casting Time by additional 10%. +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Espa and Eswhoo by additional 15%. +-------------------------- +Type: Two-Handed Staff +Attack: 150 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Soul Reaper classes +# +640026# +A high-quality two-handed staff made by the Paradise Group. +-------------------------- +MATK +200 +MATK +5% +-------------------------- +Indestructible in battle +-------------------------- +For each Level of Happy Break: +Decreases Variable Casting Time by 1%. +-------------------------- +Base Level at least 105: +Increases Magical Damage with Shadow element by 15%. +Increases damage of Curse Explosion by 25%. +-------------------------- +Base Level at least 110: +Decreases Curse of Wicked Soul skill cooldown by 2 seconds. +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Curse Explosion by additional 15%. +-------------------------- +Type: Two-Handed Staff +Attack: 150 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Soul Reaper classes +# +640027# +An improved version of the staff made of otherworldly metal. +Resonates with Hero's Boots-LT. +-------------------------- +Indestructible in battle +-------------------------- +MATK +235 +MATK +5% +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Earth Strain and Gravitation Field by 12%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +Increases Magical Damage with Neutral, Earth and Fire element by 20%. +-------------------------- +Refine Level +9: +Decreases Earth Strain skill cooldown by 1 second. +Increases damage of Comet by 30%. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every size by 20%. +Increases damage of Crimson Rock by 30%. +-------------------------- +When equipped with Hero's Boots-LT: +MATK +10%, S.MATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: MATK +3% +[Grade C]: Magical Damage of Neutral, Earth and Fire element +15%. S.MATK +1 +[Grade B]: SPL +3, S.MATK +2. +-------------------------- +Type: Two-Handed Staff +Attack: 100 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Warlock classes +# +640028# +An improved version of the staff with the power of cold ice used by an archmage in the past. +Resonates with Hero's Boots-LT. +-------------------------- +Indestructible in battle +-------------------------- +MATK +235 +MATK +5% +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Jack Frost by 12%. +-------------------------- +Refine Level +7: +Decreases Variable Casting Time by 15%. +Increases Magical Damage with Wind, Wind and Ghost element by 15%. +-------------------------- +Refine Level +9: +Decreases Jack Frost skill cooldown by 1 second. +Decreases After Skill Delay by 5%. +Increases damage of Soul Expansion by 30%. +-------------------------- +Refine Level +11: +Increases Magical Damage against enemies of every size by 15%. +Increases damage of Chain Lightning by 30%. +-------------------------- +When equipped with Hero's Boots-LT: +MATK +10%, S.MATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: MATK +3% +[Grade C]: Magical Damage with Wind, Wind and Ghost element +15%. S.MATK +1 +[Grade B]: SPL +3, S.MATK +2. +-------------------------- +Type: Two-Handed Staff +Attack: 100 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Warlock classes +# +640031# +A staff made of refined clock tower parts and quenched with etheric power. +It supplemented the shortcomings of the existing Fortified Staff. +-------------------------- +Indestructible in battle +-------------------------- +MATK +290 +-------------------------- +For each 2 Refine Levels: +Increases damage of Frozen Slash and Crimson Arrow by 6%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Crystal Impact by 5%. +-------------------------- +For each 4 Refine Levels: +Increases Magical Damage with every element by 3%. +-------------------------- +[Bonus by Grade] +[Grade D]: SPL +2 +[Grade C]: Damage of Frozen Slash and Crimson Arrow +10%. +[Grade B]: S.MATK +2 +-------------------------- +Type: Two-Handed Staff +Attack: 150 +Weight: 220 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Arch Mage +# +640033# +A two-handed staff crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +Indestructible in battle +-------------------------- +MATK +290 +-------------------------- +Type: Two-Handed Staff +Attack: 150 +Weight: 240 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Mage, Acolyte and Soul Linker classes +# +650003# +A large chunk of metal from somewhere in the Varmundt's Mansion. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Swirling Petal by 15%. +-------------------------- +For each 3 Refine Levels: +ATK +6 +Decreases Variable Casting Time by 2%. +-------------------------- +Refine Level +7: +Increases damage of Cross Slash by 15%. +-------------------------- +Refine Level +9: +Decreases Swirling Petal skill cooldown by 2 seconds. +Decreases Cross Slash skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Swirling Petal and Cross Slash by additional 20%. +-------------------------- +Type: Huuma Shuriken +Attack: 320 +Element: Wind +Weight: 180 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Ninja classes +# +650004# +A wind eagle sword used by a famous ninja. +The blue energy began to show off its natural strength. +It resonates with Great Hero Boots. +-------------------------- +Indestructible in battle +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +7: +Increases damage of Swirling Petal by 30%. +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Decreases Swirling Petal skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Fire, Shadow and Holy element by 20%. +Increases Physical Damage against enemies of Undead, Demon and Angel race by 20%. +-------------------------- +When equipped with Great Hero Boots: +STR +10 +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Huuma Shuriken +Attack: 290 +Weight: 230 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Ninja +# +650008# +A huuma shuriken filled with false beliefs. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Swirling Petal by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Swirling Petal by additional 20%. +-------------------------- +Refine Level +9: +Decreases Swirling Petal skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Swirling Petal by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +Type: Huuma Shuriken +Attack: 360 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Kagerou/Oboro +# +650009# +A cross-shaped huuma shuriken filled with false beliefs. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Cross Slash by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Cross Slash by additional 20%. +-------------------------- +Refine Level +9: +Decreases Cross Slash skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Cross Slash by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +Type: Huuma Shuriken +Attack: 360 +Weight: 220 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Kagerou/Oboro +# +650010# +A huuma shuriken made by the Paradise Group. +-------------------------- +Indestructible in battle +-------------------------- +MATK +180 +MATK +3% +-------------------------- +Base Level at least 60: +Decreases Variable Casting Time by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Flaming Petals and Freezing Spear and Wind Blade by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 20%. +-------------------------- +Type: Huuma Shuriken +Attack: 100 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Ninja classes +# +650011# +A huuma shuriken made by the Paradise Group. +-------------------------- +Indestructible in battle +-------------------------- +MATK +180 +MATK +3% +-------------------------- +Base Level at least 60: +Decreases Variable Casting Time by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Flaming Petals and Freezing Spear and Wind Blade by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 20%. +-------------------------- +Type: Huuma Shuriken +Attack: 100 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Ninja classes +# +650012# +A high-quality huuma shuriken made by the Paradise Group. +-------------------------- +Indestructible in battle +-------------------------- +MATK +200 +MATK +5% +-------------------------- +For each Level of Ninja Mastery: +Decreases Variable Casting Time by 1%. +-------------------------- +Base Level at least 105: +Increases Magical Damage with Fire, Wind and Water element by 10%. +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 25%. +-------------------------- +Base Level at least 110: +Decreases Variable Casting Time by additional 10%. +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 15%. +-------------------------- +Type: Huuma Shuriken +Attack: 150 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro classes +# +650013# +A high-quality huuma shuriken made by the Paradise Group. +-------------------------- +Indestructible in battle +-------------------------- +ATK +5% +-------------------------- +For each Level of Throwing Mastery: +Increases Ranged Physical Damage by 1%. +-------------------------- +Base Level at least 105: +Decreases Cross Slash skill cooldown by 2 seconds. +Increases damage of Cross Slash and Swirling Petal by 25%. +-------------------------- +Base Level at least 110: +Decreases Swirling Petal skill cooldown by 2 seconds. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Cross Slash and Swirling Petal by additional 15%. +-------------------------- +Type: Huuma Shuriken +Attack: 200 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Kagerou and Oboro classes +# +650017# +A Huuma Shuriken designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +Indestructible in battle +-------------------------- +MATK +220 +MATK +2% +-------------------------- +For each Refine Level: +MATK +3 +-------------------------- +For each 15 Base Level: +MATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Ninja Mastery: +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +9: +Increases Magical Damage with Fire, Water and Wind element by 10%. +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 25%. +-------------------------- +Refine Level +11: +Decreases Variable Casting Time by additional 10%. +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +13: +Increases Magical Damage with Shadow element by 10%. +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 15%. +-------------------------- +Type: Huuma Shuriken +Attack: 150 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Kagerou, Oboro classes +# +650018# +A Huuma Shuriken designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +Indestructible in battle +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Throwing Mastery: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +9: +Decreases Cross Slash skill cooldown by 2 seconds. +Increases Ranged Physical Damage by additional 10%. +Increases damage of Cross Slash and Swirling Petal by 25%. +-------------------------- +Refine Level +11: +Decreases Swirling Petal skill cooldown by 2 seconds. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +13: +Increases damage of Cross Slash and Swirling Petal by additional 15%. +-------------------------- +Type: Huuma Shuriken +Attack: 250 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Kagerou, Oboro classes +# +650019# +A huuma shuriken equipped with unholy energy concentrated on the clock tower parts. +It is more difficult to handle than the existing Scrap Slasher. +-------------------------- +Indestructible in battle +-------------------------- +For each 2 Refine Levels: +Increases damage of Huuma Shuriken - Grasp by 6%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Huuma Shuriken - Construct by 8%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +[Bonus by Grade] +[Grade D]: CON +2. +[Grade C]: Damage of Huuma Shuriken - Grasp +10%. +[Grade B]: P.ATK +2. +-------------------------- +Type: Huuma Shuriken +Attack: 360 +Weight: 230 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Shinkiro, Shiranui +# +650020# +A weapon made crudely by collecting various scrap metals and etel powder. +New abilities that had not been discovered before began to emerge. +-------------------------- +Indestructible in battle +-------------------------- +For each 2 Refine Levels: +Increases damage of Huuma Shuriken - Grasp by 5%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 3%. +-------------------------- +Type: Huuma Shuriken +Attack: 340 +Weight: 220 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Shinkiro, Shiranui +# +650021# +A huuma shuriken reborn with the power of true faith through a ritual of purification. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Cross Slash by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Cross Slash by additional 20%. +-------------------------- +Refine Level +9: +Decreases Cross Slash skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Cross Slash by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Cross Slash +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Huuma Shuriken +Attack: 360 +Weight: 220 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 210 +Shinkiro, Shiranui +# +650022# +A huuma shuriken reborn with the power of true faith through a ritual of purification. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Swirling Petal by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Swirling Petal by additional 20%. +-------------------------- +Refine Level +9: +Decreases Swirling Petal skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Swirling Petal by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Swirling Petal +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Huuma Shuriken +Attack: 360 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 210 +Shinkiro, Shiranui +# +650024# +An improved version of the huuma shuriken used by famous ninjas in the past. +Resonates with Hero's Boots-LT. +-------------------------- +Indestructible in battle +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +Increases damage of Swirling Petal by 30%. +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Decreases Swirling Petal skill cooldown by 2 second. +Increases damage of Swirling Petal by additional 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Fire, Shadow and Holy element by 25%. +Increases Physical Damage against enemies of Undead, Demon and Angel race by 25%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Ranged Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2. +-------------------------- +Type: Huuma Shuriken +Attack: 290 +Weight: 230 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Ninja classes +# +650025# +A huuma shuriken crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +Indestructible in battle +-------------------------- +MATK +370 +-------------------------- +Type: Huuma Shuriken +Attack: 400 +Weight: 300 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Ninja classes +# +700000# +Random chance to auto-cast Level 1 Cold Bolt when attacking. +-------------------------- +Type: Bow +Attack: 100 +Weight: 1 +Weapon Level: 1 +-------------------------- +Requirement: +Archer, Rogue classes +# +700001# +A special bow prepared for your rapid growth. +-------------------------- +Critical +10 +MaxHP +3% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Up to Base Level 180) +-------------------------- +Refine Level +7: +For each Level of Wind Walk: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Attack Booster Plate, Attack Booster Manteau, Attack Booster Greaves and Attack Booster Ring: +ASPD +2 +Increases Critical Damage by 10%. + +For each 15 Base Level: +Increases damage of Sharp Shooting by 1%. +(Up to Base Level 180) + +When using True Sight: +Increases damage of Sharp Shooting by additional 20% for 60 seconds. +-------------------------- +When equipped with Ranged Booster Suit, Ranged Booster Manteau, Ranged Booster Boots and Ranged Booster Brooch: +MaxHP +10% +Decreases After Skill Delay by 15%. + +For each 15 Base Level: +Increases damage of Aimed Bolt by 2%. +(Up to Base Level 180) + +When using True Sight: +Increases damage of Aimed Bolt by additional 35% for 60 seconds. +-------------------------- +Type: Bow +Attack: 160 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Ranger +# +700003# +A bow made of red dragon's leather on a highly elastic material. +It resonates with Ancient Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Decreases After Skill Delay by 4%. +-------------------------- +Refine Level +9: +Increases damage of Aimed Bolt by 35%. +-------------------------- +Refine Level +11: +Decreases Aimed Bolt skill cooldown by 1 second. +-------------------------- +When equipped with Ancient Hero's Boots: +Random chance to increase DEX by 20 and bow damage by 20% for 7 seconds when dealing physical damage. +-------------------------- +Type: Bow +Attack: 170 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Ranger +# +700007# +A bow used by mercenaries once guarding the Mansion. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Increases damage of Arrow Storm by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Arrow Storm by additional 10%. +-------------------------- +Refine Level +9: +Decreases Arrow Storm skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Arrow Storm by additional 15%. +-------------------------- +Type: Bow +Attack: 220 +Weight: 140 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Ranger +# +700008# +A portable bow that was once used for self-defense. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Increases damage of Triangle Shot by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Triangle Shot by additional 15%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Triangle Shot by additional 20%. +-------------------------- +Type: Bow +Attack: 220 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Shadow Chaser +# +700009# +Prototype of automatic shooting bow with new technology. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Increases damage of Severe Rainstorm by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +12 +-------------------------- +Refine Level +7: +Increases damage of Severe Rainstorm by additional 15%. +-------------------------- +Refine Level +9: +Decreases Severe Rainstorm skill cooldown by 2.5 seconds. +-------------------------- +Refine Level +11: +Increases damage of Severe Rainstorm by additional 20%. +-------------------------- +Type: Bow +Attack: 190 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Minstrel and Wanderer +# +700013# +A bow that contains the history of ancient war hero. +The aura, which became more intense, began to show its natural ability. +It resonates with Great Hero Boots. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +Decreases Severe Rainstorm skill cooldown by 2 seconds. +-------------------------- +Refine Level +9: +Increases damage of Severe Rainstorm by 15%. +-------------------------- +Refine Level +11: +Increases damage of Severe Rainstorm by additional 10%. +Increases Ranged Physical Damage by additional 15%. +-------------------------- +When equipped with Great Hero Boots: +DEX +10 +Increases Ranged Physical Damage by additional 5%. +-------------------------- +Type: Bow +Attack: 210 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +3rd Archer classes and Shadow Chaser +# +700014# +A Bow designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each 2 Levels of Vulture's Eye: +Decreases After Skill Delay by 1%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by 10%. +Increases damage of Triangle Shot and Feint Bomb by 25%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +Increases Ranged Physical Damage by 15%. +-------------------------- +Refine Level +13: +Increases damage of Triangle Shot and Feint Bomb by additional 25%. +-------------------------- +Type: Bow +Attack: 210 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser +# +700015# +A Bow designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Owl's Eye: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +9: +MaxSP +10% +Increases damage of Arrow Storm by 25%. +-------------------------- +Refine Level +11: +Decreases Arrow Storm skill cooldown by 0.7 seconds. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +13: +Increases damage of Arrow Storm by additional 15%. +-------------------------- +Type: Bow +Attack: 205 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Ranger +# +700016# +A Bow designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Vulture's Eye: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +Increases damage of Sharp Shooting and Aimed Bolt by 25%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +ATK +10% +-------------------------- +Refine Level +13: +Increases damage of Sharp Shooting and Aimed Bolt by additional 15%. +-------------------------- +Type: Bow +Attack: 200 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Ranger +# +700017# +A Bow designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Musical Lesson/Dancing Lesson: +Increases Ranged Physical Damage by 2%. +-------------------------- +Refine Level +9: +Decreases Severe Rainstorm skill cooldown by 1 second. +Increases damage of Severe Rainstorm by 25%. +-------------------------- +Refine Level +11: +Decreases Severe Rainstorm skill cooldown by additional 1 second. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +13: +Increases damage of Severe Rainstorm by additional 15%. +-------------------------- +Type: Bow +Attack: 200 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Minstrel and Wanderer +# +700018# +An ancient hero's bow, handed down from the now forgotten royal family. +The ancient power awakened and began to exert its natural power. +It resonate with Great Hero Boots. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Arrow Storm by 12%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases Delay After Attack by 10%). +Increases Ranged Physical Damage by 15%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 12%. +Increases Critical Damage by 10%. +-------------------------- +Refine Level +11: +Increases damage of Sharp Shooting by 20% +Decreases After Skill Delay by 10%. +-------------------------- +When equipped with Great Hero Boots: +DEX +10, ATK +7%. +-------------------------- +Type: Bow +Attack: 205 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Ranger and Shadow Chaser +# +700019# +A bow made of red dragon's leather on a highly elastic material. +The dragon's power was inhabited and began to show its natural abilities. +It resonates with Great Hero Boots. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Decreases After Skill Delay by 4%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 10% +Increases Physical Damage against enemies of all size enemies by 10%. +-------------------------- +Refine Level +9: +Increases damage of Aimed Bolt by 35%. +-------------------------- +Refine Level +11: +Decreases Aimed Bolt skill cooldown by 1 second. +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Great Hero Boots: +DEX +10, ATK +7% +-------------------------- +Type: Bow +Attack: 200 +Weight: 90 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Ranger +# +700021# +A weapon made crudely by collecting various scrap metals and etel powder. +New abilities that had not been discovered before began to emerge. +-------------------------- +For each 2 Refine Levels: +Increases damage of Gale Storm by 5%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 2%. +-------------------------- +Type: Bow +Attack: 210 +Weight: 170 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Wind Hawk +# +700022# +A bow containing the pain of bereavement. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Frenzy Shot by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Triangle Shot by 3%. +-------------------------- +Refine Level +7: +Increases Critical Damage by 15%. +-------------------------- +Refine Level +9: +Increases damage of Triangle Shot by additional 30%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Frenzy Shot +5%. +[Grade C]: Damage of Frenzy Shot +8%, P.ATK +1. +[Grade B]: Damage of Frenzy Shot +12%, CON +1. +-------------------------- +Type: Bow +Attack: 250 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Abyss Chaser +# +700023# +A bow containing the pain of bereavement. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Crescive Bolt by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Aimed Bolt by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 10%. +-------------------------- +Refine Level +9: +Increases damage of Aimed Bolt by additional 30%. +-------------------------- +Refine Level +11: +Decreases Aimed Bolt skill cooldown by 1 second. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Crescive Bolt +5%. +[Grade C]: Damage of Crescive Bolt +8%, P.ATK +1. +[Grade B]: Damage of Crescive Bolt +12%, CON +1. +-------------------------- +Type: Bow +Attack: 250 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Wind Hawk +# +700024# +A bow containing the pain of bereavement. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Gale Storm by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Arrow Storm by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 10%. +-------------------------- +Refine Level +9: +Increases damage of Arrow Storm by additional 30%. +-------------------------- +Refine Level +11: +Decreases Arrow Storm skill cooldown by 0.7 seconds. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Gale Storm +5%. +[Grade C]: Damage of Gale Storm +8%, P.ATK +1. +[Grade B]: Damage of Gale Storm +12%, CON +1. +-------------------------- +Type: Bow +Attack: 250 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Wind Hawk +# +700025# +A bow containing the pain of bereavement. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Rythm Shooting by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Severe Rainstorm by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 10%. +-------------------------- +Refine Level +9: +Increases damage of Severe Rainstorm by additional 30%. +-------------------------- +Refine Level +11: +Decreases Severe Rainstorm skill cooldown by 2 seconds. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Rythm Shooting +5%. +[Grade C]: Damage of Rythm Shooting +8%, P.ATK +1. +[Grade B]: Damage of Rythm Shooting +12%, CON +1. +-------------------------- +Type: Bow +Attack: 250 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Troubadour and Trouvere +# +700029# +Thanos' bow remodeled with the addition of Tim Artnard's technology. +-------------------------- +Physical attacks have a random chance to recover 2500 HP and 50 SP every second for 4 seconds. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Sharp Shooting by 5%. +-------------------------- +Refine Level +7: +Increases Critical Damage by 15%. +Increases damage of Sharp Shooting by additional 10%. +-------------------------- +Refine Level +9: +Critical +15 +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +2%, Damage of Crescive Bolt +10%. +[Grade C]: ATK +3%, P.ATK +1. +[Grade B]: Damage of Crescive Bolt +10%. +-------------------------- +Type: Bow +Attack: 230 +Weight: 200 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Ranger +# +700030# +A crossbow filled with false beliefs. +-------------------------- +Increases damage of Triangle Shot by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Triangle Shot by additional 20%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Triangle Shot by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +Type: Bow +Attack: 240 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Shadow Chaser +# +700031# +A ballista filled with false beliefs. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Arrow Storm by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Arrow Storm by additional 20%. +-------------------------- +Refine Level +9: +Decreases Arrow Storm skill cooldown by 1.2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Arrow Storm by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +Type: Bow +Attack: 250 +Weight: 170 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Ranger +# +700032# +A aiming bow filled with false beliefs. +-------------------------- +Increases damage of Aimed Bolt by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Aimed Bolt by additional 20%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Aimed Bolt by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +Type: Bow +Attack: 230 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Ranger +# +700033# +A crossbow reborn with the power of true faith through a ritual of purification. +-------------------------- +Increases damage of Triangle Shot by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Triangle Shot by additional 20%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Triangle Shot by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Triangle Shot +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Bow +Attack: 240 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 210 +Abyss Chaser +# +700034# +A ballista reborn with the power of true faith through a ritual of purification. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Arrow Storm by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Arrow Storm by additional 20%. +-------------------------- +Refine Level +9: +Decreases Arrow Storm skill cooldown by 1.2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Arrow Storm by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Arrow Storm +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Bow +Attack: 250 +Weight: 170 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 210 +Wind Hawk +# +700035# +A aiming bow reborn with the power of true faith through a ritual of purification. +-------------------------- +Increases damage of Aimed Bolt by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Aimed Bolt by additional 20%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Aimed Bolt by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Aimed Bolt +15%. +[Grade B]: ATK +7%. +[Grade A]: POW +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Bow +Attack: 230 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 210 +Wind Hawk +# +700036# +A bow for beginners made by the Paradise Group. +-------------------------- +Base Level at least 20: +ATK +15 +-------------------------- +Base Level at least 30: +ATK +20 +-------------------------- +Base Level at least 45: +ATK +25 +-------------------------- +Type: Bow +Attack: 100 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +Archer classes +# +700037# +A bow made by the Paradise Group. +-------------------------- +ATK +3% +-------------------------- +Base Level at least 60: +Increases Ranged Physical Damage by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Double Strafe by 10%. +-------------------------- +Base Level at least 90: +Increases damage of Double Strafe by additional 15%. +-------------------------- +Type: Bow +Attack: 180 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Rogue classes +# +700038# +A bow made by the Paradise Group. +-------------------------- +ATK +3% +-------------------------- +Base Level at least 60: +Increases Ranged Physical Damage by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Arrow Shower by 20%. +-------------------------- +Base Level at least 90: +Increases damage of Double Strafe by 20%. +-------------------------- +Type: Bow +Attack: 180 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Hunter classes +# +700039# +A bow made by the Paradise Group. +-------------------------- +ATK +3% +-------------------------- +Base Level at least 60: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Base Level at least 75: +Increases damage of Blitz Beat by 15%. +-------------------------- +Base Level at least 90: +Increases damage of Blitz Beat by additional 10%. +-------------------------- +Type: Bow +Attack: 180 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Hunter classes +# +700040# +A bow made by the Paradise Group. +-------------------------- +ATK +3% +-------------------------- +Base Level at least 60: +Increases Ranged Physical Damage by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Arrow Shower by 20%. +-------------------------- +Base Level at least 90: +Increases damage of Double Strafe by 20%. +-------------------------- +Type: Bow +Attack: 180 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Bard and Dancer classes +# +700041# +A high-quality bow made by the Paradise Group. +-------------------------- +ATK +5% +-------------------------- +For each Level of Vulture's Eye : +Increases Ranged Physical Damage by 1%. +-------------------------- +Base Level at least 105: +Decreases Variable Casting Time by 10%. +Increases damage of Triangle Shot and Feint Bomb by 25%. +-------------------------- +Base Level at least 110: +Decreases After Skill Delay by additional 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Triangle Shot and Feint Bomb by additional 25%. +-------------------------- +Type: Bow +Attack: 200 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Shadow Chaser classes +# +700042# +A high-quality bow made by the Paradise Group. +-------------------------- +ATK +5% +-------------------------- +For each Level of Owl's Eye : +Increases Ranged Physical Damage by 1%. +-------------------------- +Base Level at least 105: +Decreases Arrow Storm skill cooldown by 0.7 seconds. +Increases damage of Arrow Storm by 25%. +-------------------------- +Base Level at least 110: +Increases Ranged Physical Damage by additional 15%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Arrow Storm by additional 15%. +-------------------------- +Type: Bow +Attack: 200 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Ranger classes +# +700043# +A high-quality bow made by the Paradise Group. +-------------------------- +ATK +5% +-------------------------- +For each Level of Vulture's Eye : +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +Base Level at least 105: +Decreases Aimed Bolt skill cooldown by 1 second. +Increases damage of Sharp Shooting and Aimed Bolt by 25%. +-------------------------- +Base Level at least 110: +Decreases After Skill Delay by 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Sharp Shooting and Aimed Bolt by additional 15%. +-------------------------- +Type: Bow +Attack: 200 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Ranger classes +# +700045# +An improved version of the bow of an ancient hero handed down from a now-forgotten royal family. +Resonates with Hero's Boots-LT. +-------------------------- +ATK +5% +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +Increases damage of Arrow Storm by 25%. +Decreases Arrow Storm skill cooldown by 1 second. +-------------------------- +Refine Level +9: +Increases damage of Arrow Storm by additional 30%. +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Increases damage of Arrow Storm by additional 20%. +Increases damage of Sharp Shooting by 35%. +Increases Critical Damage by 15%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Ranged Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2. +-------------------------- +Type: Bow +Attack: 205 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Ranger classes, Shadow Chaser classes +# +700046# +An improved version of the bow made by adding red dragon skin to the bow of a strong material. +Resonates with Hero's Boots-LT. +-------------------------- +ATK +5% +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +Increases damage of Aimed Bolt by 20%. +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +9: +Increases damage of Aimed Bolt by additional 30%. +Decreases After Skill Delay by 10%. +-------------------------- +Refine Level +11: +Decreases Aimed Bolt skill cooldown by 1 second. +Decreases After Skill Delay by additional 8%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Ranged Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2. +-------------------------- +Type: Bow +Attack: 200 +Weight: 90 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Ranger classes +# +700049# +An improved version of the bow that contains the biography of a hero who was active in an ancient battle. +Resonates with Hero's Boots-LT. +-------------------------- +ATK +5% +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +Increases damage of Severe Rainstorm by 20%. +Decreases Severe Rainstorm skill cooldown by 2 seconds. +-------------------------- +Refine Level +9: +Increases damage of Severe Rainstorm by additional 30%. +Decreases Variable Casting Time by 10%. +-------------------------- +Refine Level +11: +Decreases damage taken from enemies of every size by 20%. +Increases Physical Damage against enemies of every element by 15%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Ranged Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2. +-------------------------- +Type: Bow +Attack: 210 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Archer and Rogue classes +# +700050# +A bow equipped with unholy energy concentrated on the clock tower parts. +It is more difficult to handle than the existing Scrap Bow. +-------------------------- +For each 2 Refine Levels: +Increases damage of Gale Storm by 7%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Arrow Storm by 10%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +[Bonus by Grade] +[Grade D]: CON +2. +[Grade C]: Damage of Gale Storm +10%. +[Grade B]: P.ATK +2. +-------------------------- +Type: Bow +Attack: 230 +Weight: 180 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Wind Hawk +# +700052# +A bow crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +220 +-------------------------- +Type: Bow +Attack: 240 +Weight: 150 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Archer and Rogue classes +# +700054# +An upgraded bow without a string. +Trying to pull it will draw a glow of string. +-------------------------- +ATK +5% +-------------------------- +Refine Level +7: +Critical +8 +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +9: +Increases damage of Arrow Storm by 40%. +Increases damage of Sharp Shooting by 20%. +-------------------------- +Refine Level +11: +Critical +7 +Increases damage of Arrow Storm by additional 30%. +-------------------------- +Type: Bow +Attack: 200 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 170 +Ranger +# +700055# +An upgraded crossbow with prototype number 89 stamped on its body. +You can tell the power by the number on the dashboard after you shoot the bow. +-------------------------- +ATK +5% +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 10%. +-------------------------- +Refine Level +9: +Decreases Severe Rainstorm skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Severe Rainstorm by 40%. +-------------------------- +Type: Bow +Attack: 170 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 170 +Minstrel and Wanderer +# +700056# +An upgraded high strength bow made of fused carbon. +-------------------------- +MATK +135. +-------------------------- +Increases Ranged Physical Damage by 7%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases damage of Triangle Shot by 25%. +-------------------------- +Refine Level +11: +Increases damage of Triangle Shot by additional 20%. +-------------------------- +Type: Bow +Attack: 190 +Weight: 60 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 170 +Shadow Chaser +# +800000# +DEX +2 +-------------------------- +Type: Revolver +Attack: 100 +Weight: 1 +Weapon Level: 1 +-------------------------- +Requirement: +Gunslinger classes +# +800002# +A revolver decorated with red roses, used by those who have reached the level of gun master who can handle all firearms skillfully. +Seeing the state of the red rose, it began to show its natural strength. +It seems to resonate with the Great Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +10 +-------------------------- +For each 3 Refine Levels: +Increases damage of Fire Dance by 2%. +-------------------------- +Refine Level +7: +ATK +5% +Increases Ranged Physical Damage by 10%. +-------------------------- +Refine Level +9: +When Heat Barrel is used: +Increases damage of Fire Dance by 25% and Ranged Physical Damage by 20% for 60 seconds. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 10%. +-------------------------- +When equipped with Great Hero Boots: +DEX +10, ATK +7%. +-------------------------- +Type: Revolver +Attack: 200 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +800003# +A revolver filled with false beliefs. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Fire Dance by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Fire Dance by additional 20%. +-------------------------- +Refine Level +9: +Decreases damage taken from all race, except Players, by 15%. +-------------------------- +Refine Level +11: +Increases damage of Fire Dance by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +Type: Revolver +Attack: 210 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Rebellion +# +800004# +A revolver for beginners made by the Paradise Group. +-------------------------- +Base Level at least 20: +ATK +15 +-------------------------- +Base Level at least 30: +ATK +20 +-------------------------- +Base Level at least 45: +ATK +25 +-------------------------- +Type: Revolver +Attack: 60 +Weight: 0 +Weapon Level: 2 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +Gunslinger classes +# +800005# +A revolver made by the Paradise Group. +-------------------------- +ATK +3% +-------------------------- +Base Level at least 60: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Base Level at least 75: +Increases damage of Rapid Shower by 20%. +-------------------------- +Base Level at least 90: +Increases damage of Desperado by 20%. +-------------------------- +Type: Revolver +Attack: 180 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Gunslinger classes +# +800006# +A high-quality revolver made by the Paradise Group. +-------------------------- +ATK +5% +-------------------------- +For each Level of Chain Action: +Increases Ranged Physical Damage by 1%. +-------------------------- +Base Level at least 105: +Increases Ranged Physical Damage by additional 10%. +Increases damage of Desperado and Fire Dance by 25%. +-------------------------- +Base Level at least 110: +Decreases After Skill Delay by 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Desperado and Fire Dance by additional 15%. +-------------------------- +Type: Revolver +Attack: 200 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Rebellion classes +# +800008# +A revolver designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Chain Action: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 10%. +Increases damage of Desperado and Fire Dance by 25%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 15%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +13: +Increases damage of Desperado and Fire Dance by additional 15%. +-------------------------- +Type: Revolver +Attack: 220 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Gunslinger classes +# +800009# +A pistol equipped with unholy energy concentrated on the clock tower parts. +It is more difficult to handle than the existing Scrap Pistol. +-------------------------- +For each 2 Refine Levels: +Increases damage of Only One Bullet by 7%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Fire Dance by 10%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +[Bonus by Grade] +[Grade D]: CON +2. +[Grade C]: Damage of Only One Bullet +10%. +[Grade B]: P.ATK +2. +-------------------------- +Type: Revolver +Attack: 250 +Weight: 140 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Night Watch +# +800010# +A weapon made crudely by collecting various scrap metals and etel powder. +New abilities that had not been discovered before began to emerge. +-------------------------- +For each 2 Refine Levels: +Increases damage of Only One Bullet by 6%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 3%. +-------------------------- +Type: Revolver +Attack: 230 +Weight: 130 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Night Watch +# +800011# +A pistol containing the pain of bereavement. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Only One Bullet and Magazine for One by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Fire Dance by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 10%. +-------------------------- +Refine Level +9: +Increases damage of Fire Dance by additional 25%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Only One Bullet and Magazine for One +5%. +[Grade C]: Damage of Only One Bullet and Magazine for One +3%, P.ATK +1. +[Grade B]: Damage of Only One Bullet and Magazine for One +12%, CON +1. +-------------------------- +Type: Revolver +Attack: 220 +Weight: 120 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Night Watch +# +800012# +A revolver reborn with the power of true faith through a ritual of purification. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Fire Dance by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Fire Dance by additional 20%. +-------------------------- +Refine Level +9: +Decreases damage taken from monsters of every race, except Players, by 15%. +-------------------------- +Refine Level +11: +Increases damage of Fire Dance by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Fire Dance +15%. +[Grade B]: ATK +7%. +[Grade A]: CON +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Revolver +Attack: 210 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 210 +Night Watch +# +800013# +An improved version of the revolver decorated with red roses used by those who have reached the level of a gunmaster who can handle all firearms skillfully. +Resonates with Hero's Boots-LT. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +Increases damage of Fire Dance by 25%. +Decreases damage taken from enemies of every size by 20%. +-------------------------- +Refine Level +9: +ATK +7% +Increases damage of Fire Dance by additional 35%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Ranged Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2. +-------------------------- +Type: Revolver +Attack: 200 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Rebellion classes +# +800014# +A revolver crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +230 +-------------------------- +Type: Revolver +Attack: 230 +Weight: 220 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Rebellion classes +# +810000# +A rifle used by mercenaries who guarded the Varmundt's Mansion. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Increases damage of Hammer of God by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +6 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +7: +Increases damage of Hammer of God by additional 15%. +-------------------------- +Refine Level +9: +Decreases Hammer of God skill cooldown by 3 seconds. +-------------------------- +Refine Level +11: +Decreases Hammer of God skill cooldown by additional 4 seconds. +When Crimson Marker has been used, Increases Damage of Hammer of God by additional 25% for 10 seconds. +-------------------------- +Type: Rifle +Attack: 260 +Weight: 130 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Gunslinger classes +# +810001# +A rifle with the power of the soul used by those who have reached the Level of Gunmaster who can handle all guns skillfully. +A powerful force was inhabited and began to show its natural strength. +It seems to resonate with the Great Hero's Boots. +-------------------------- +MATK +250 +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Soul Strike and Napalm Vulcan by 15%. +-------------------------- +Refine Level +7: +Increases damage of Soul Expansion by 20% and Magical Damage with Fire element by 15%. +-------------------------- +Refine Level +9: +Ranged physical attacks have a 15% chance to auto-cast Level 10 Soul Strike. +-------------------------- +Refine Level +11: +Ranged physical attacks have a 7% chance to auto-cast Level 3 Napalm Vulcan or Level 3 Soul Expansion. +-------------------------- +When equipped with Great Hero Boots: +INT +10 +Increases Magical Damage with Ghost element by 5%. +-------------------------- +Type: Rifle +Attack: 200 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +810002# +A rifle filled with false beliefs. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Hammer of God by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Hammer of God by additional 20%. +-------------------------- +Refine Level +9: +Decreases Hammer of God skill cooldown by 8 seconds. +-------------------------- +Refine Level +11: +Increases damage of Hammer of God by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +Type: Rifle +Attack: 280 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Rebellion +# +810003# +A rifle made by the Paradise Group. +-------------------------- +ATK +3% +-------------------------- +Base Level at least 60: +Increases Ranged Physical Damage by 10%. +-------------------------- +Base Level at least 75: +Increases damage of Tracking by 20%. +-------------------------- +Base Level at least 90: +Increases damage of Tracking by additional 15%. +-------------------------- +Type: Rifle +Attack: 180 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 45 +Gunslinger classes +# +810005# +A rifle equipped with unholy energy concentrated on the clock tower parts. +It is more difficult to handle than the existing Scrap Piercer. +-------------------------- +For each 2 Refine Levels: +Increases damage of Spiral Shooting by 7%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Hammer of God by 10%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +[Bonus by Grade] +[Grade D]: CON +2. +[Grade C]: Damage of Spiral Shooting +10%. +[Grade B]: P.ATK +2. +-------------------------- +Type: Rifle +Attack: 300 +Weight: 180 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Night Watch +# +810006# +A weapon made crudely by collecting various scrap metals and etel powder. +New abilities that had not been discovered before began to emerge. +-------------------------- +For each 2 Refine Levels: +Increases damage of Spiral Shooting by 6%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 3%. +-------------------------- +Type: Rifle +Attack: 280 +Weight: 160 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Night Watch +# +810007# +A rifle containing the pain of bereavement. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Only One Bullet and Spiral Shooting by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Hammer of God by 3%. +-------------------------- +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +9: +Increases damage of Hammer of God by additional 25%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +Decreases Hammer of God skill cooldown by 8 seconds. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Only One Bullet and Spiral Shooting +5%. +[Grade C]: Damage of Only One Bullet and Spiral Shooting +3%, P.ATK +1. +[Grade B]: Damage of Only One Bullet and Spiral Shooting +5%, CON +1. +-------------------------- +Type: Rifle +Attack: 270 +Weight: 180 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Night Watch +# +810008# +A rifle reborn with the power of true faith through a ritual of purification. +-------------------------- +Indestructible in battle +-------------------------- +Increases damage of Hammer of God by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Hammer of God by additional 20%. +-------------------------- +Refine Level +9: +Decreases Hammer of God skill cooldown by 8 seconds. +-------------------------- +Refine Level +11: +Increases damage of Hammer of God by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Hammer of God +15%. +[Grade B]: ATK +7%. +[Grade A]: CON +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Rifle +Attack: 280 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 210 +Night Watch +# +810009# +An improved version of the rifle imbued with the power of the soul used by those who have reached the level of a Gunmaster who can handle all firearms skillfully. +Resonates with Hero's Boots-LT. +-------------------------- +MATK +250 +-------------------------- +Base Level at least 210: +SPL +2, S.MATK +1. +-------------------------- +For each 2 Refine Levels: +MATK +15 +-------------------------- +For each 3 Refine Levels: +Increases damage of Soul Strike and Napalm Vulcan by 20%. +-------------------------- +Refine Level +7: +Increases damage of Soul Expansion by 40%. +Increases Magical Damage with Ghost element by 25%. +-------------------------- +Refine Level +9: +Ranged physical attacks have a 15% chance to auto-cast Level 10 Soul Strike, Level 5 Napalm Vulcan or Level 5 Soul Expansion. +-------------------------- +Refine Level +11: +Increases damage of Soul Expansion by additional 30%. +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +When equipped with Hero's Boots-LT: +MATK +10%, S.MATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: MATK +3% +[Grade C]: Magical Damage with Ghost element +15%. S.MATK +1 +[Grade B]: SPL +3, S.MATK +2. +-------------------------- +Type: Rifle +Attack: 200 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Rebellion classes +# +810010# +A rifle crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +230 +-------------------------- +Type: Rifle +Attack: 280 +Weight: 260 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Rebellion classes +# +810013# +An upgraded sniper rifle with the ability to induce satellite attacks. +-------------------------- +ATK +5% +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 10%. +-------------------------- +Refine Level +9: +Increases damage of Hammer of God by 30%. +-------------------------- +Refine Level +11: +Decreases Hammer of God skill cooldown by 5 seconds. +Increases damage of Hammer of God by additional 20%. +-------------------------- +Type: Rifle +Attack: 250 +Weight: 100 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 170 +Rebellion +# +820000# +A shotgun used by mercenaries who guarded the Varmundt's Mansion. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Increases damage of Slug Shot by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +6 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +7: +Increases damage of Slug Shot by additional 15%. +Increases damage of Shattering Storm by 10%. +-------------------------- +Refine Level +9: +Decreases Slug Shot skill cooldown by 2 seconds. +Decreases Shattering Storm skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Slug Shot by additional 25%. +When Slug Shot has been used, Increases Damage of Shattering Storm by additional 25% for 10 seconds. +-------------------------- +Type: Shotgun +Attack: 310 +Weight: 160 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Gunslinger classes +# +820001# +A shotgun with the power of the soul used by those who have reached the Level of Gunmaster, which can handle all firearms skillfully. +He regained the glory of the past and began to show his abilities. +It seems to resonate with the Great Hero's Boots. +-------------------------- +Deals Splash Damage. +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 3%. +-------------------------- +For each 3 Refine Levels: +MaxSP +2% +-------------------------- +Refine Level +7: +Increases Physical Damage against enemies of Boss class, Demon and Undead race by 15%. +-------------------------- +Refine Level +9: +When Platinum Alter is used: +Increases ATK by 50 and Ranged Physical Damage by 10% for 90 seconds. +-------------------------- +Refine Level +11: +Increases damage of Banishing Buster and Shattering Storm by 35%. +-------------------------- +When equipped with Great Hero Boots: +DEX +10 +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Shotgun +Attack: 295 +Weight: 230 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +820002# +A shotgun filled with false beliefs. +-------------------------- +Deals Splash Damage. +-------------------------- +Increases damage of Shattering Storm by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Shattering Storm by additional 20%. +-------------------------- +Refine Level +9: +Decreases Shattering Storm skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Shattering Storm by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +Type: Shotgun +Attack: 320 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Rebellion +# +820004# +A shotgun equipped with unholy energy concentrated on the clock tower parts. +It is more difficult to handle than the existing Scrap Shatter. +-------------------------- +For each 2 Refine Levels: +Increases damage of The Vigilante at Night by 7%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Banishing Buster by 10%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +[Bonus by Grade] +[Grade D]: CON +2. +[Grade C]: Damage of The Vigilante at Night +10%. +[Grade B]: P.ATK +2. +-------------------------- +Type: Shotgun +Attack: 330 +Weight: 220 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Night Watch +# +820005# +A weapon made crudely by collecting various scrap metals and etel powder. +New abilities that had not been discovered before began to emerge. +-------------------------- +For each 2 Refine Levels: +Increases damage of The Vigilante at Night by 6%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 3%. +-------------------------- +Type: Shotgun +Attack: 310 +Weight: 200 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Night Watch +# +820006# +A shotgun reborn with the power of true faith through a ritual of purification. +-------------------------- +Deals Splash Damage. +-------------------------- +Increases damage of Shattering Storm by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Shattering Storm by additional 20%. +-------------------------- +Refine Level +9: +Decreases Shattering Storm skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Shattering Storm by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Shattering Storm +15%. +[Grade B]: ATK +7%. +[Grade A]: CON +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Shotgun +Attack: 320 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 210 +Night Watch +# +820007# +An improved version of the demon extermination shotgun used by those who have reached the level of a gunmaster who can handle all firearms proficiently. +Resonates with Hero's Boots-LT. +-------------------------- +Deals Splash Damage. +-------------------------- +Indestructible in battle +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +Increases damage of Banishing Buster and Shattering Storm by 30%. +Increases Ranged Physical Damage by additional 10%. +-------------------------- +Refine Level +9: +Decreases Shattering Storm skill cooldown by 1 second. +Increases damage of Banishing Buster and Shattering Storm by additional 25%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of Boss class, Demon and Undead race by 15%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Ranged Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2. +-------------------------- +Type: Shotgun +Attack: 295 +Weight: 230 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Rebellion classes +# +820008# +A shotgun crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +200 +-------------------------- +Deals Splash Damage. +-------------------------- +Type: Shotgun +Attack: 300 +Weight: 260 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Rebellion classes +# +830000# +A special Gatling Gun prepared for your rapid growth. +-------------------------- +ATK +5% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Up to Base Level 180) +-------------------------- +Refine Level +7: +For each Level of Single Action: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 10%. +-------------------------- +When equipped with Attack Booster Plate, Attack Booster Manteau, Attack Booster Greaves and Attack Booster Ring: +ATK +20 +Increases Physical Damage against enemies of every size by 10%. + +For each 15 Base Level: +Increases damage of Round Trip by 1%. +(Up to Base Level 180) + +When using Rich's Coin: +Increases damage of Round Trip by additional 20% for 60 seconds. +-------------------------- +When equipped with Ranged Booster Suit, Ranged Booster Manteau, Ranged Booster Boots and Ranged Booster Brooch: +ATK +20 +Decreases Fire Rain skill cooldown by 1 second. + +For each 15 Base Level: +Increases damage of Fire Rain by 2%. +(Up to Base Level 180) + +When using Rich's Coin: +Increases damage of Fire Rain by additional 35% for 60 seconds. +-------------------------- +Type: Gatling Gun +Attack: 170 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Gunslinger +# +830001# +A gatling gun used by mercenaries who guarded the Varmundt's Mansion. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Increases damage of Fire Rain by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +6 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +7: +Increases damage of Fire Rain by additional 15%. +Increases damage of Round Trip by 10%. +-------------------------- +Refine Level +9: +Decreases Fire Rain skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Fire Rain by additional 25%. +When Fire Rain has been used, Increases Damage of Round Trip by additional 15% for 10 seconds. +-------------------------- +Type: Gatling Gun +Attack: 230 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Gunslinger classes +# +830002# +A black gatling gun used by those who have reached the level of Gunmaster who can handle all firearms skillfully. +Through the strength and grip of the barrel, it began to show its natural strength. +It seems to resonate with the Great Hero's Boots. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +Increases damage of Round Trip by 20%. +Increases SP Consumption of Round Trip by 10%. +-------------------------- +Refine Level +9: +Increases damage of Round Trip by additional 15%. + +When Platinum Alter is used: +Increases ATK by 50 and Ranged Physical Damage by 10% for 90 seconds. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +When equipped with Great Hero Boots: +DEX +10 +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Gatling Gun +Attack: 225 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +830003# +A gatling gun filled with false beliefs. +-------------------------- +Increases damage of Round Trip by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Round Trip by additional 20%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Round Trip by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +Type: Gatling Gun +Attack: 250 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Rebellion +# +830004# +A high-quality revolver made by the Paradise Group. +-------------------------- +ATK +5% +-------------------------- +For each Level of Single Action: +Increases Ranged Physical Damage by 1%. +-------------------------- +Base Level at least 105: +Decreases Fire Rain skill cooldown by 1 second. +Increases damage of Fire Rain and Round Trip by 25%. +-------------------------- +Base Level at least 110: +Increases Ranged Physical Damage by additional 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Base Level at least 115: +Increases damage of Fire Rain and Round Trip by additional 15%. +-------------------------- +Type: Gatling Gun +Attack: 200 +Weight: 0 +Weapon Level: 4 +Refineable: No +-------------------------- +Requirement: +Base Level 100 +Rebellion classes +# +830007# +A gatling gun designed to help adventurers grow. +-------------------------- +Cannot be refined normally. +-------------------------- +ATK +2% +-------------------------- +For each Refine Level: +ATK +3 +-------------------------- +For each 15 Base Level: +ATK +3 (Applies up to Base Level 195) +-------------------------- +Refine Level +7: +For each Level of Single Action: +Increases Ranged Physical Damage by 1%. +-------------------------- +Refine Level +9: +Decreases Fire Rain skill cooldown by 1 second. +Increases Ranged Physical Damage by additional 10%. +Increases damage of Fire Rain and Round Trip by 25%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by additional 10%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +13: +Increases damage of Fire Rain and Round Trip by additional 15%. +-------------------------- +Type: Gatling Gun +Attack: 220 +Weight: 0 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 100 +Gunslinger classes +# +830008# +A gatling gun equipped with unholy energy concentrated on the clock tower parts. +It is more difficult to handle than the existing Scrap Splatter. +-------------------------- +For each 2 Refine Levels: +Increases damage of Magazine for One by 7%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Round Trip by 10%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +[Bonus by Grade] +[Grade D]: CON +2. +[Grade C]: Damage of Magazine for One +10%. +[Grade B]: P.ATK +2. +-------------------------- +Type: Gatling Gun +Attack: 290 +Weight: 260 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Night Watch +# +830009# +A weapon made crudely by collecting various scrap metals and etel powder. +New abilities that had not been discovered before began to emerge. +-------------------------- +For each 2 Refine Levels: +Increases damage of Magazine for One by 6%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 3%. +-------------------------- +Type: Gatling Gun +Attack: 270 +Weight: 240 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Night Watch +# +830010# +A gatling gun containing the pain of bereavement. +-------------------------- +ATK +10% +-------------------------- +Increases damage of The Vigilante at Night and Magazine for One by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Round Trip by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 10%. +-------------------------- +Refine Level +9: +Increases damage of Round Trip by additional 25%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of The Vigilante at Night and Magazine for One +5%. +[Grade C]: Damage of The Vigilante at Night and Magazine for One +3%, P.ATK +1. +[Grade B]: Damage of The Vigilante at Night and Magazine for One +5%, CON +1. +-------------------------- +Type: Gatling Gun +Attack: 260 +Weight: 190 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Night Watch +# +830011# +A gatling gun reborn with the power of true faith through a ritual of purification. +-------------------------- +Increases damage of Round Trip by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Round Trip by additional 20%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Refine Level +11: +Increases damage of Round Trip by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Round Trip +15%. +[Grade B]: ATK +7%. +[Grade A]: CON +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Gatling Gun +Attack: 250 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 210 +Night Watch +# +830012# +An improved version of the black gatling gun used by those who have reached the level of a gun master who can handle all firearms skillfully. +Resonates with Hero's Boots-LT. +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +ATK +50 +Increases damage of Round Trip by 25%. +-------------------------- +Refine Level +9: +Increases damage of Round Trip by additional 25%. +Increases Ranged Physical Damage by additional 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +Decreases damage taken from enemies of every size by 20%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Ranged Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2. +-------------------------- +Type: Gatling Gun +Attack: 225 +Weight: 300 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Rebellion classes +# +830013# +A gatling gun crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +200 +-------------------------- +Type: Gatling Gun +Attack: 350 +Weight: 350 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Rebellion classes +# +840000# +A grenade launcher used by mercenaries who guarded the Varmundt's Mansion. +It was terribly transformed by the magic interference device installed by the Illusionians. +-------------------------- +Increases damage of Howling Mine by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +6 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +Refine Level +7: +Increases damage of Howling Mine by additional 10%. +Increases damage of Dragon Tail by 10%. +-------------------------- +Refine Level +9: +Decreases Howling Mine and Dragon Tail skill cooldown by 1 second. +-------------------------- +Refine Level +11: +Increases damage of Howling Mine by additional 25%. +When Crimson Marker has been used, Increases Damage of Dragon Tail by additional 25% for 10 seconds. +-------------------------- +Type: Grenade Launcher +Attack: 330 +Weight: 240 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Gunslinger classes +# +840001# +A grenade launcher made of gold used by those who have reached the level of gun master who can handle all guns skillfully. +Through the strength and grip of the barrel, it began to show its natural strength. +It seems to resonate with the Great Hero's Boots. +-------------------------- +For each 2 Refine Levels: +Increases Ranged Physical Damage by 3%. +-------------------------- +For each 3 Refine Levels: +ATK +20 +-------------------------- +Refine Level +7: +Increases damage of Dragon Tail by 15%. +Decreases Dragon Tail skill cooldown by 1 second. +-------------------------- +Refine Level +9: +Increases damage of Dragon Tail by additional 20%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of against enemies of all elements by 15%. +-------------------------- +When equipped with Great Hero Boots: +DEX +10 +Increases Ranged Physical Damage by 5%. +-------------------------- +Type: Grenade Launcher +Attack: 350 +Weight: 240 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 150 +Rebellion +# +840002# +A launcher filled with false beliefs. +-------------------------- +Increases damage of Dragon Tail by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Dragon Tail by additional 20%. +-------------------------- +Refine Level +9: +Decreases Dragon Tail skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Dragon Tail by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +Type: Grenade Launcher +Attack: 350 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 180 +Rebellion +# +840004# +A grenade launcher equipped with unholy energy concentrated on the clock tower parts. +It is more difficult to handle than the existing Scrap Bomber. +-------------------------- +For each 2 Refine Levels: +Increases damage of Wild Fire by 7%. +-------------------------- +For each 3 Refine Levels: +Increases damage of Howling Mine by 10%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +[Bonus by Grade] +[Grade D]: CON +2. +[Grade C]: Damage of Wild Fire +10%. +[Grade B]: P.ATK +2. +-------------------------- +Type: Grenade Launcher +Attack: 370 +Weight: 330 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 220 +Night Watch +# +840005# +A weapon made crudely by collecting various scrap metals and etel powder. +New abilities that had not been discovered before began to emerge. +-------------------------- +For each 2 Refine Levels: +Increases damage of Wild Fire by 6%. +-------------------------- +For each 4 Refine Levels: +Increases Ranged Physical Damage by 3%. +-------------------------- +Type: Grenade Launcher +Attack: 350 +Weight: 320 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 200 +Night Watch +# +840006# +A grenade launcher containing the pain of bereavement. +-------------------------- +ATK +10% +-------------------------- +Increases damage of Spiral Shooting and Wild Fire by 10%. +-------------------------- +For each 2 Refine Levels: +Increases damage of Dragon Tail by 3%. +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 10%. +-------------------------- +Refine Level +9: +Increases damage of Dragon Tail by additional 25%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every size by 15%. +Decreases Dragon Tail skill cooldown by 1 second. +-------------------------- +[Bonus by Grade] +[Grade D]: Damage of Spiral Shooting and Wild Fire +5%. +[Grade C]: Damage of Spiral Shooting and Wild Fire +3%, P.ATK +1. +[Grade B]: Damage of Spiral Shooting and Wild Fire +5%, CON +1. +-------------------------- +Type: Grenade Launcher +Attack: 370 +Weight: 270 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 230 +Night Watch +# +840007# +A grenade launcher reborn with the power of true faith through a ritual of purification. +-------------------------- +Increases damage of Dragon Tail by 10%. +-------------------------- +For each 3 Refine Levels: +ATK +18 +-------------------------- +Refine Level +7: +Increases damage of Dragon Tail by additional 20%. +-------------------------- +Refine Level +9: +Decreases Dragon Tail skill cooldown by 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Dragon Tail by additional 25%. +-------------------------- +Refine Level +12: +Increases Ranged Physical Damage by 15%. +-------------------------- +[Bonus by Grade] +[Grade D]: Refine Level +11: Physical Damage against against enemies of every element +15%. +[Grade C]: Damage of Dragon Tail +15%. +[Grade B]: ATK +7%. +[Grade A]: CON +1, P.ATK +1 per 3 Refine Levels. +-------------------------- +Type: Grenade Launcher +Attack: 350 +Weight: 300 +Weapon Level: 4 +-------------------------- +Requirement: +Base Level 210 +Night Watch +# +840008# +An improved version of the grenade launcher made of gold used by those who have reached the level of a gunmaster who can handle all guns skillfully. +Resonates with Hero's Boots-LT. +-------------------------- +Indestructible in battle +-------------------------- +Base Level at least 210: +POW +2, P.ATK +1. +-------------------------- +For each 2 Refine Levels: +ATK +15 +-------------------------- +For each 3 Refine Levels: +Increases Ranged Physical Damage by 4%. +-------------------------- +Refine Level +7: +Increases damage of Dragon Tail by 20%. +Decreases Dragon Tail skill cooldown by 1 second. +-------------------------- +Refine Level +9: +Increases damage of Round Trip by additional 35%. +Increases Ranged Physical Damage by additional 15%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of every element by 15%. +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +When equipped with Hero's Boots-LT: +ATK +10%, P.ATK +2. +-------------------------- +[Bonus by Grade] +[Grade D]: ATK +3% +[Grade C]: Ranged Physical Damage +15%. P.ATK +1 +[Grade B]: POW +3, P.ATK +2. +-------------------------- +Type: Grenade Launcher +Attack: 350 +Weight: 240 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 190 +Rebellion classes +# +840009# +A launcher crafted from ice harvested from the glaciers of Isgard. +You can enchant it with Ice Flower Magic Stones for special abilities. +-------------------------- +MATK +200 +-------------------------- +Type: Grenade Launcher +Attack: 300 +Weight: 300 +Weapon Level: 5 +-------------------------- +Requirement: +Base Level 210 +Rebellion classes +# +1000000# +When attempting to make an arrow, it generates 10 arrows. +-------------------------- +Weight: 1 +# +1000001# +A special ticket that allows you to easily advance your first job. +(Possible Jobs: 1st and Expanded Jobs) +-------------------------- +Visit Ex Almightyprontera,146,281,0,100,0,0 to change your job. +However, High Novice and Baby 1st Jobs cannot use this service. +-------------------------- +Weight: 0 +# +1000002# +A special ticket that allows you to easily advance your second job. +(Possible Jobs: 2nd Jobs and Star Gladiator/Soul Linker) +-------------------------- +Visit Ex Almightyprontera,146,281,0,100,0,0 to change your job. +However, 1st High and Baby 1st Jobs cannot use this service. +-------------------------- +Weight: 0 +# +1000003# +A special ticket that allows easy progression through transcendence. +-------------------------- +Visit Ex Almightyprontera,146,281,0,100,0,0 to change your job. +However, the Extended and Baby 2nd Jobs cannot use this service, only 2nd Jobs. +-------------------------- +Weight: 0 +# +1000004# +A special ticket that allows you to advance to the 3rd Job and 2nd Extended Jobs. +(Possible Jobs: 3rd Jobs and 2nd Extended Jobs) +-------------------------- +Visit Ex Almightyprontera,146,281,0,100,0,0 to change your job. +However, 2nd and Baby 2nd Jobs cannot use this service, only 2nd High Jobs. +-------------------------- +Weight: 0 +# +1000005# +Exchange ticket which can be exchanged for a Boosting Weapon. +Take it to [Weapon]prontera,148,282,0,100,0,0 and exchange it for one of the items below: +-------------------------- +Boosting Two-Handed Sword[2] +Boosting Axe[2] +Boosting Katar[2] +Boosting Staff[2] +Boosting Hammer[2] +Boosting Bow[2] +Boosting Spear[2] +Boosting Sword[2] +Boosting Dagger[2] +Boosting Spellbook[2] +Boosting Knuckles[2] +Boosting Guitar[2] +Boosting Whip[2] +Boosting Nindo[2] +Boosting Gatling[2] +Boosting Text[2] +Boosting Soul Road[2] +Boosting Foxtail[2] +-------------------------- +Weight: 0 +# +1000006# +Exchange ticket which can be exchanged for Booster Armor Set. +Take it to [Weapon]prontera,148,282,0,100,0,0 and exchange it for one of the items below: +-------------------------- +Attack Booster Box +Ranged Booster Box +Elemental Booster Box +Default Booster Box +-------------------------- +Weight: 0 +# +1000007# +A parfait for children with lots of sweet fruit. +-------------------------- +Weight: 0 +# +1000008# +A stone that awakens the potential of Snipers. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each 2 Levels of Wind Walk: +Increases Attack Speed (Decreases After Attack Delay by 1%). +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000009# +A stone that awakens the potential of Snipers. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For each 2 Levels of Beast Bane: +Increases Ranged Physical Damage by 1%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000010# +A stone that awakens the potential of Snipers. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For each Level of True Sight: +ATK +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000011# +A stone that awakens the potential of Rangers. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Aimed Bolt by 15%. +-------------------------- +When equipped with Sniper Stone II(Upper): +Increases damage of Aimed Bolt by additional 15%. +-------------------------- +When equipped with Sniper Stone II(Mid): +Decreases Variable Casting Time of Aimed Bolt by 1 second. +-------------------------- +When equipped with Sniper Stone II(Lower): +Decreases Unlimit skill cooldown by 45 seconds. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000012# +A stone that awakens the potential of Whitesmiths. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Maximum Power Thrust: +Decreases Axe Boomerang skill cooldown by 0.1 seconds. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000013# +A stone that awakens the potential of Whitesmiths. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +Increases damage of Cart Termination by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000014# +A stone that awakens the potential of Whitesmiths. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For each Level of Maximize Power: +Increases Ranged Physical Damage by 1%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000015# +A stone that awakens the potential of Mechanics. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Arms Cannon by 15%. +-------------------------- +When equipped with Whitsmith Stone II(Upper): +Increases Ranged Physical Damage by 10%. +-------------------------- +When equipped with Whitsmith Stone II(Mid): +Increases damage of Vulcan Arm by 20%. +-------------------------- +When equipped with Whitsmith Stone II(Lower): +Increases damage of Knuckle Boost by 20%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000016# +A stone that awakens the potential of High Priests. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +Increases damage of Magnus Exorcismus by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000017# +A stone that awakens the potential of High Priests. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For each Level of Assumptio: +Increases Magical Damage with Holy element by 1%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000018# +A stone that awakens the potential of High Priests. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For each 2 Levels of Kyrie Eleison: +Decreases Variable Casting Time by 1%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000019# +A stone that awakens the potential of Archbishops. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Judex by 15%. +-------------------------- +When equipped with High Priest Stone II(Upper): +Increases damage of Judex by additional 15%. +-------------------------- +When equipped with High Priest Stone II(Mid): +Decreases SP Consumption of Judex by 10%. +-------------------------- +When equipped with High Priest Stone II(Lower): +Increases Magical Damage with Holy element by 10%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000092# +Illusion-only tracker developed by Elyumina to chase traitors (?) to hell and feed large and beautiful royal potatoes. It reacts loudly when an Illucion head is detected nearby. +-------------------------- +Weight: 1 +# +1000093# +Pitaya tail with a sweet fruity flavor. It is said that it is delicious to eat when it is fresh. +-------------------------- +Weight: 1 +# +1000094# +Pitaya tail with a sweet fruity flavor. It is said that it is common to eat it slightly matured. +-------------------------- +Weight: 1 +# +1000095# +Pitaya tail with a sweet fruity flavor. The thin skin is delicious. +-------------------------- +Weight: 1 +# +1000096# +Pitaya tail with a sour fruity flavor. Very sour to just eat. It is mainly used for cooking by making juice. +-------------------------- +Weight: 1 +# +1000097# +Pitaya tail with a sweet fruity flavor. The purple tail is said to have become very easy to eat by focusing on breeding. +-------------------------- +Weight: 1 +# +1000098# +Pitaya tail with a sweet fruity flavor. The sugar content is high due to great effort in improving the variety. +-------------------------- +Weight: 1 +# +1000099# +A cookie handed over by a calm gardener calmly. What is chewy? +-------------------------- +Weight: 1 +# +1000100# +An ice trap made by modifying a special alloy trap. When it touches the trap, a powerful cold air emerges, freezing everything around in an instant. +-------------------------- +Weight: 1 +# +1000101# +Parts used for the body, legs and arms of automatic dolls. +-------------------------- +Weight: 1 +# +1000102# +An emergency key that opens the door to the basement of the warehouse. +-------------------------- +Weight: 1 +# +1000103# +Varmeal tickets issued by managers to efficiently serve mercenaries in the Varmundt's Mansion. +It is said that there is nothing in the Varmundt mansion that you can't get with this ticket. +-------------------------- +Weight: 0 +# +1000104# +Ore with powerful magic. +It is unknown why it exists. +-------------------------- +Weight: 0 +# +1000105# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Defense) to equipment. +-------------------------- +[Enchantment Effect] +DEF +150 +-------------------------- +Refine Level +9: +DEF +75 +-------------------------- +Refine Level +11: +DEF +75 +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +Automatic Engine Wing Type A +Automatic Engine Wing Type B +Automatic Leg Type A +Automatic Leg Type B +-------------------------- +Weight: 1 +# +1000106# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Magic Defense) to equipment. +-------------------------- +[Enchantment Effect] +MDEF +15 +-------------------------- +Refine Level +9: +MDEF +7 +-------------------------- +Refine Level +11: +MDEF +7 +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +Automatic Engine Wing Type A +Automatic Engine Wing Type B +Automatic Leg Type A +Automatic Leg Type B +-------------------------- +Weight: 1 +# +1000107# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (VIT) to equipment. +-------------------------- +[Enchantment Effect] +VIT +3 +MaxHP +1% +-------------------------- +[Enchantable Equipment] +Automatic Booster R +Automatic Booster L +Automatic Battle Chip R +Automatic Battle Chip L +-------------------------- +Weight: 1 +# +1000108# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (LUK) to equipment. +-------------------------- +[Enchantment Effect] +LUK +3 +Increases Critical Damage by 1%. +-------------------------- +[Enchantable Equipment] +Automatic Booster R +Automatic Booster L +Automatic Battle Chip R +Automatic Battle Chip L +-------------------------- +Weight: 1 +# +1000109# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (STR) to equipment. +-------------------------- +[Enchantment Effect] +STR +3 +ATK +2% +-------------------------- +[Enchantable Equipment] +Automatic Booster R +Automatic Battle Chip R +-------------------------- +Weight: 1 +# +1000110# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (AGI) to equipment. +-------------------------- +[Enchantment Effect] +AGI +3 +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +[Enchantable Equipment] +Automatic Booster R +Automatic Battle Chip R +-------------------------- +Weight: 1 +# +1000111# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (INT) to equipment. +-------------------------- +[Enchantment Effect] +INT +3 +MATK +2% +-------------------------- +[Enchantable Equipment] +Automatic Booster L +Automatic Battle Chip L +-------------------------- +Weight: 1 +# +1000112# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (DEX) to equipment. +-------------------------- +[Enchantment Effect] +DEX +3 +Increases Ranged Physical Damage by 2%. +-------------------------- +[Enchantable Equipment] +Automatic Booster L +Automatic Battle Chip L +-------------------------- +Weight: 1 +# +1000113# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (HP Recovery) to equipment. +-------------------------- +[Enchantment Effect] +HP Recovery Rate +30% +-------------------------- +[Enchantable Equipment] +Automatic Booster R +Automatic Battle Chip R +-------------------------- +Weight: 1 +# +1000114# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (SP Recovery) to equipment. +-------------------------- +[Enchantment Effect] +SP Recovery Rate +30% +-------------------------- +[Enchantable Equipment] +Automatic Booster L +Automatic Battle Chip L +-------------------------- +Weight: 1 +# +1000115# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Spell) to equipment. +-------------------------- +[Enchantment Effect] +MATK +20 +Decreases Variable Casting Time by 10%. +-------------------------- +[Enchantable Equipment] +Automatic Booster R +Automatic Booster L +Automatic Battle Chip R +Automatic Battle Chip L +-------------------------- +Weight: 1 +# +1000116# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Attack Speed) to equipment. +-------------------------- +[Enchantment Effect] +ATK +20 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +[Enchantable Equipment] +Automatic Booster R +Automatic Booster L +Automatic Battle Chip R +Automatic Battle Chip L +-------------------------- +Weight: 1 +# +1000117# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Fatal) to equipment. +-------------------------- +[Enchantment Effect] +Critical +10 +Increases Critical Damage by 10%. +-------------------------- +[Enchantable Equipment] +Automatic Booster R +Automatic Booster L +Automatic Battle Chip R +Automatic Battle Chip L +-------------------------- +Weight: 1 +# +1000118# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Expert Archer) to equipment. +-------------------------- +[Enchantment Effect] +HIT +10 +Increases Ranged Physical Damage by 10%. +-------------------------- +[Enchantable Equipment] +Automatic Booster R +Automatic Booster L +Automatic Battle Chip R +Automatic Battle Chip L +-------------------------- +Weight: 1 +# +1000119# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Vital) to equipment. +-------------------------- +[Enchantment Effect] +MaxHP +5% +MaxHP +1500 +-------------------------- +Refine Level +9: +MaxHP +2% +-------------------------- +Refine Level +11: +MaxHP +3% +-------------------------- +[Enchantable Equipment] +Automatic Leg Type A +Automatic Leg Type B +-------------------------- +Weight: 1 +# +1000120# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Mental) to equipment. +-------------------------- +[Enchantment Effect] +MaxSP +5% +MaxSP +300 +-------------------------- +Refine Level +9: +MaxSP +2% +-------------------------- +Refine Level +11: +MaxSP +3% +-------------------------- +[Enchantable Equipment] +Automatic Leg Type A +Automatic Leg Type B +-------------------------- +Weight: 1 +# +1000121# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Heal) to equipment. +-------------------------- +[Enchantment Effect] +Increases Healing effectiveness by 5%. +-------------------------- +Refine Level +9: +Increases Healing effectiveness by additional 5%. +-------------------------- +Refine Level +11: +Increases Healing effectiveness by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Leg Type A +Automatic Leg Type B +-------------------------- +Weight: 1 +# +1000122# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Attack Power) to equipment. +-------------------------- +[Enchantment Effect] +ATK +5% +ATK +75 +-------------------------- +Refine Level +9: +Increases Melee Physical Damage by 2%. +-------------------------- +Refine Level +11: +Increases Melee Physical Damage by 3%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000123# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Magic Power) to equipment. +-------------------------- +[Enchantment Effect] +MATK +5% +MATK +75 +-------------------------- +Refine Level +9: +MATK +2% +-------------------------- +Refine Level +11: +MATK +3% +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000124# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Shooter) to equipment. +-------------------------- +[Enchantment Effect] +Increases Ranged Physical Damage by 3%. +-------------------------- +Refine Level +9: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +Refine Level +11: +Increases Ranged Physical Damage by additional 3%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000125# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Fast) to equipment. +-------------------------- +[Enchantment Effect] +ASPD +1 +-------------------------- +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by 5%). +-------------------------- +Refine Level +11: +Increases Attack Speed (Decreases After Attack Delay by additional 5%). +-------------------------- +[Enchantable Equipment] +Automatic Engine Wing Type A +Automatic Engine Wing Type B +-------------------------- +Weight: 1 +# +1000126# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Caster) to equipment. +-------------------------- +[Enchantment Effect] +Decreases Variable Casting Time by 5%. +-------------------------- +Refine Level +9: +Decreases Variable Casting Time by additional 5%. +-------------------------- +Refine Level +11: +Decreases Variable Casting Time by additional 5%. +-------------------------- +[Enchantable Equipment] +Automatic Engine Wing Type A +Automatic Engine Wing Type B +-------------------------- +Weight: 1 +# +1000127# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Critical) to equipment. +-------------------------- +[Enchantment Effect] +Critical +10 +-------------------------- +Refine Level +9: +Increases Critical Damage by 5%. +-------------------------- +Refine Level +11: +Increases Critical Damage by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Engine Wing Type A +Automatic Engine Wing Type B +-------------------------- +Weight: 1 +# +1000128# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Magical Force) to equipment. +-------------------------- +[Enchantment Effect] +MATK +20 +Decreases Variable Casting Time by 10%. +Increases Magical Damage with every element by 2%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by additional 1%. +-------------------------- +Refine Level +11: +Increases Magical Damage with every element by additional 2%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000129# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Attacker Force) to equipment. +-------------------------- +[Enchantment Effect] +ATK +20 +Increases Melee Physical Damage by 10%. +Increases Physical Damage against enemies of all size enemies by 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by additional 1%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of all size enemies by additional 1%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000130# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Range Force) to equipment. +-------------------------- +[Enchantment Effect] +ATK +20 +Increases Ranged Physical Damage by 10%. +Increases Physical Damage against enemies of all size enemies by 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by additional 1%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of all size enemies by additional 1%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000131# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Critical Force) to equipment. +-------------------------- +[Enchantment Effect] +Critical +5 +Increases Critical Damage by 10%. +Increases Physical Damage against enemies of all size enemies by 3%. +-------------------------- +Refine Level +9: +Increases Physical Damage against enemies of all size enemies by additional 1%. +-------------------------- +Refine Level +11: +Increases Physical Damage against enemies of all size enemies by additional 1%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000132# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Recovery Force) to equipment. +-------------------------- +[Enchantment Effect] +MATK +20 +Decreases Variable Casting Time by 10%. +Increases Healing effectiveness by 5%. +-------------------------- +Refine Level +9: +Increases Healing effectiveness by additional 5%. +-------------------------- +Refine Level +11: +Increases Healing effectiveness by additional 5%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000133# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (After Skill Delay) to equipment. +-------------------------- +[Enchantment Effect] +Decreases After Skill Delay by 4%. +-------------------------- +Refine Level +9: +Decreases After Skill Delay by additional 6%. +-------------------------- +Refine Level +11: +Decreases After Skill Delay by additional 6%. +-------------------------- +[Enchantable Equipment] +Automatic Leg Type A +Automatic Leg Type B +-------------------------- +Weight: 1 +# +1000134# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Fixed Casting) to equipment. +-------------------------- +[Enchantment Effect] +Decreases Fixed Casting Time by 0.1 second. +-------------------------- +Refine Level +9: +Decreases Fixed Casting Time by additional 0.2 seconds. +-------------------------- +Refine Level +11: +Decreases Fixed Casting Time by additional 0.5 seconds. +-------------------------- +[Enchantable Equipment] +Automatic Engine Wing Type A +Automatic Engine Wing Type B +-------------------------- +Weight: 1 +# +1000135# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Above All) to equipment. +-------------------------- +[Enchantment Effect] +Decreases Physical and Magical Damage taken from Normal and Boss class enemies by 7%. +-------------------------- +Refine Level +9: +Decreases Physical and Magical Damage taken from all size enemies by 7%. +-------------------------- +Refine Level +11: +Decreases Physical and Magical Damage taken from all race by 7% (Except Players). +-------------------------- +[Enchantable Equipment] +Automatic Engine Wing Type A +Automatic Engine Wing Type B +-------------------------- +Weight: 1 +# +1000136# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Drain Life) to equipment. +-------------------------- +[Enchantment Effect] +Physical attacks have a 2% chance to restore 3% of the damage dealt as HP. +-------------------------- +[Enchantable Equipment] +Automatic Booster R +Automatic Battle Chip R +-------------------------- +Weight: 1 +# +1000137# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Drain Soul) to equipment. +-------------------------- +[Enchantment Effect] +Physical attacks have a 1% chance to restore 2% of the damage dealt as SP. +-------------------------- +[Enchantable Equipment] +Automatic Booster L +Automatic Battle Chip L +-------------------------- +Weight: 1 +# +1000138# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Magic Healing) to equipment. +-------------------------- +[Enchantment Effect] +Magical attacks have a 2% chance to restore 500 HP per 0.4 seconds for 23 times. +-------------------------- +[Enchantable Equipment] +Automatic Booster R +Automatic Battle Chip R +-------------------------- +Weight: 1 +# +1000139# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Magic Soul) to equipment. +-------------------------- +[Enchantment Effect] +Magical attacks have a 1% chance to restore 120 SP per 0.4 seconds for 23 times. +-------------------------- +[Enchantable Equipment] +Automatic Booster L +Automatic Battle Chip L +-------------------------- +Weight: 1 +# +1000140# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Power Force) to equipment. +-------------------------- +[Enchantment Effect] +ATK +3% +MATK +3% +-------------------------- +Refine Level +9: +ATK +3% +MATK +3% +-------------------------- +Refine Level +11: +ATK +4% +MATK +4% +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000141# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Robust) to equipment. +-------------------------- +[Enchantment Effect] +MaxHP +2000, MaxSP +300 +MaxHP and MaxSP +5% +-------------------------- +Refine Level +9: +MaxHP and MaxSP +2% +-------------------------- +Refine Level +11: +MaxHP and MaxSP +3% +-------------------------- +[Enchantable Equipment] +Automatic Leg Type A +Automatic Leg Type B +-------------------------- +Weight: 1 +# +1000142# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Powerful) to equipment. +-------------------------- +[Enchantment Effect] +Increases Melee and Ranged Physical Damage by 5%. +Increases Magical Damage with every element by 5%. +-------------------------- +Refine Level +9: +Increases Melee and Ranged Physical Damage by additional 2%. +Increases Magical Damage with every element by additional 2%. +-------------------------- +Refine Level +11: +Increases Melee and Ranged Physical Damage by additional 3%. +Increases Magical Damage with every element by additional 3%. +-------------------------- +[Enchantable Equipment] +Automatic Engine Wing Type A +Automatic Engine Wing Type B +-------------------------- +Weight: 1 +# +1000143# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (All Force) to equipment. +-------------------------- +[Enchantment Effect] +Increases Melee Physical Damage by 5%. +Increases Ranged Physical Damage by 5%. +Increases Magical Damage with every element by 5%. +-------------------------- +[Enchantable Equipment] +Automatic Booster R +Automatic Booster L +Automatic Battle Chip R +Automatic Battle Chip L +-------------------------- +Weight: 1 +# +1000144# +Modified module for use with automatic armor. +Grants Automatic Orb (Unlimited Vital) to equipment. +-------------------------- +[Enchantment Effect] +Recieving physical or magical damage has a 3% chance to activate Enhanced Everlasting Life for 10 seconds. +-------------------------- +[Enhanced Everlasting Life] +VIT +50 +Recover 800HP per 0.5 seconds for 23 times. +-------------------------- +[Enchantable Equipment] +Automatic Leg Type A +Automatic Leg Type B +-------------------------- +Weight: 1 +# +1000145# +Modified module for use with automatic armor. +Grants Automatic Orb (Spell Buster) to equipment. +-------------------------- +[Enchantment Effect] +Magical attacks have a 3% chance to activate Enhanced Magic Storm for 10 seconds. +-------------------------- +[Enhanced Magic Storm] +INT +50 +MATK +25% +-------------------------- +[Enchantable Equipment] +Automatic Leg Type A +Automatic Leg Type B +-------------------------- +Weight: 1 +# +1000146# +Modified module for use with automatic armor. +Grants Automatic Orb (Firing Shot) to equipment. +-------------------------- +[Enchantment Effect] +Physical attacks have a 3% chance to activate Enhanced Plunging Shot for 10 seconds. +-------------------------- +[Enhanced Plunging Shot] +DEX +50 +Increases Ranged Physical Damage by 15%. +-------------------------- +[Enchantable Equipment] +Automatic Leg Type A +Automatic Leg Type B +-------------------------- +Weight: 1 +# +1000147# +Modified module for use with automatic armor. +Grants Automatic Orb (Over Power) to equipment. +-------------------------- +[Enchantment Effect] +Physical attacks have a 3% chance to activate Enhanced Raging Fight for 10 seconds. +-------------------------- +[Enhanced Raging Fight] +STR +50 +Increases Melee Physical Damage by 10%. +-------------------------- +[Enchantable Equipment] +Automatic Leg Type A +Automatic Leg Type B +-------------------------- +Weight: 1 +# +1000148# +Modified module for use with automatic armor. +Grants Automatic Orb (Fatal Flash) to equipment. +-------------------------- +[Enchantment Effect] +Physical attacks have a 3% chance to activate Enhanced Deadly Lightspeed for 10 seconds. +-------------------------- +[Enhanced Deadly Lightspeed] +AGI +50 +Increases Critical Damage by 15%. +-------------------------- +[Enchantable Equipment] +Automatic Leg Type A +Automatic Leg Type B +-------------------------- +Weight: 1 +# +1000149# +Modified module for use with automatic armor. +Grants Automatic Orb (Lucky Strike) to equipment. +-------------------------- +[Enchantment Effect] +Magical attacks have a 3% chance to activate Enhanced Good Fortune for 10 seconds. +-------------------------- +[Enhanced Good Fortune] +LUK +50 +Increases Magical Damage with every element by 15%. +-------------------------- +[Enchantable Equipment] +Automatic Leg Type A +Automatic Leg Type B +-------------------------- +Weight: 1 +# +1000152# +Modified module for use with automatic armor. +Grants Automatic Orb (Dragonic Breath) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Dragon Breath and Dragon Breath - Water by 15%. +-------------------------- +Refine Level +9: +Increases damage of Dragon Breath and Dragon Breath - Water by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Dragon Breath and Dragon Breath - Water by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000153# +Modified module for use with automatic armor. +Grants Automatic Orb (Wave Break) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Sonic Wave and Ignition Break by 15%. +-------------------------- +Refine Level +9: +Increases damage of Sonic Wave and Ignition Break by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Sonic Wave by additional 7%. +Decreases Ignition Break skill cooldown by 0.25 seconds. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000154# +Modified module for use with automatic armor. +Grants Automatic Orb (Hundred Spiral) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Spiral Pierce and Hundred Spear by 15%. +-------------------------- +Refine Level +9: +Increases damage of Spiral Pierce and Hundred Spear by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Spiral Pierce by additional 7%. +Decreases Hundred Spear skill cooldown by 0.25 seconds. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000155# +Modified module for use with automatic armor. +Grants Automatic Orb (Drive Press) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Earth Drive and Shield Press by 15%. +-------------------------- +Refine Level +9: +Increases damage of Earth Drive and Shield Press by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Earth Drive and Shield Press by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000156# +Modified module for use with automatic armor. +Grants Automatic Orb (Banishing Cannon) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Banishing Point and Cannon Spear by 15%. +-------------------------- +Refine Level +9: +Increases damage of Banishing Point and Cannon Spear by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Banishing Point and Cannon Spear by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000157# +Modified module for use with automatic armor. +Grants Automatic Orb (Genesis Pressure) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Pressure and Genesis Ray by 15%. +-------------------------- +Refine Level +9: +Increases damage of Pressure and Genesis Ray by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Pressure and Genesis Ray by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000158# +Modified module for use with automatic armor. +Grants Automatic Orb (Boost Cannon) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Knuckle Boost and Arms Cannon by 15%. +-------------------------- +Refine Level +9: +Increases damage of Knuckle Boost and Arms Cannon by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Knuckle Boost and Arms Cannon by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000159# +Modified module for use with automatic armor. +Grants Automatic Orb (Cold Flare) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Cold Slower and Flame Launcher by 15%. +-------------------------- +Refine Level +9: +Increases damage of Cold Slower and Flame Launcher by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Cold Slower and Flame Launcher by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000160# +Modified module for use with automatic armor. +Grants Automatic Orb (Tornado Swing) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Axe Tornado and Power Swing by 15%. +-------------------------- +Refine Level +9: +Increases damage of Axe Tornado and Power Swing by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Axe Tornado and Power Swing by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000161# +Modified module for use with automatic armor. +Grants Automatic Orb (Cannon Tornado) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Cart Cannon and Cart Tornado by 15%. +-------------------------- +Refine Level +9: +Increases damage of Cart Cannon and Cart Tornado by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Cart Cannon and Cart Tornado by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000162# +Modified module for use with automatic armor. +Grants Automatic Orb (Crazy Mandragora) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Crazy Weed by 15%. +Decreases Howling of Mandragora skill cooldown by 0.3 seconds. +-------------------------- +Refine Level +9: +Increases damage of Crazy Weed by additional 3%. +Decreases Howling of Mandragora skill cooldown by additional 0.3 seconds. +-------------------------- +Refine Level +11: +Increases damage of Crazy Weed by additional 7%. +Decreases Howling of Mandragora skill cooldown by additional 0.4 seconds. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000163# +Modified module for use with automatic armor. +Grants Automatic Orb (Acid Explosion) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Acid Demonstration and Spore Explosion by 15%. +-------------------------- +Refine Level +9: +Increases damage of Acid Demonstration and Spore Explosion by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Acid Demonstration and Spore Explosion by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000164# +Modified module for use with automatic armor. +Grants Automatic Orb (Sonic Impact) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Sonic Blow and Cross Impact by 15%. +-------------------------- +Refine Level +9: +Increases damage of Sonic Blow and Cross Impact by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Sonic Blow and Cross Impact by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000165# +Modified module for use with automatic armor. +Grants Automatic Orb (Cutter Slasher) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Rolling Cutter and Cross Ripper Slasher by 15%. +-------------------------- +Refine Level +9: +Increases damage of Rolling Cutter and Cross Ripper Slasher by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Rolling Cutter and Cross Ripper Slasher by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000166# +Modified module for use with automatic armor. +Grants Automatic Orb (Berserk Slash) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Soul Destroyer and Counter Slash by 15%. +-------------------------- +Refine Level +9: +Increases damage of Soul Destroyer and Counter Slash by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Soul Destroyer and Counter Slash by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000167# +Modified module for use with automatic armor. +Grants Automatic Orb (Fatal Raid) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Fatal Menace and Raid by 15%. +-------------------------- +Refine Level +9: +Increases damage of Fatal Menace and Raid by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Fatal Menace and Raid by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000168# +Modified module for use with automatic armor. +Grants Automatic Orb (Shadow Spell) to equipment. +-------------------------- +[Enchantment Effect] +Increases Magical Damage with every element by 15%. +-------------------------- +Refine Level +9: +Increases Magical Damage with every element by additional 3%. +-------------------------- +Refine Level +11: +Increases Magical Damage with every element by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000169# +Modified module for use with automatic armor. +Grants Automatic Orb (Angle Shot) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Triangle Shot by 15%. +Increases Ranged Physical Damage by 10%. +-------------------------- +Refine Level +9: +Increases damage of Triangle Shot by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Triangle Shot by additional 7%. +Increases Ranged Physical Damage by additional 5%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000170# +Modified module for use with automatic armor. +Grants Automatic Orb (Crimson Strain) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Crimson Rock and Earth Strain by 15%. +-------------------------- +Refine Level +9: +Increases damage of Crimson Rock and Earth Strain by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Crimson Rock and Earth Strain by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000171# +Modified module for use with automatic armor. +Grants Automatic Orb (Jack Lightning) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Jack Frost and Chain Lightning by 15%. +-------------------------- +Refine Level +9: +Increases damage of Jack Frost and Chain Lightning by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Jack Frost and Chain Lightning by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000172# +Modified module for use with automatic armor. +Grants Automatic Orb (Comet Vortex) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Comet and Tetra Vortex by 15%. +-------------------------- +Refine Level +9: +Increases damage of Comet and Tetra Vortex by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Comet and Tetra Vortex by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000173# +Modified module for use with automatic armor. +Grants Automatic Orb (Double Bolt) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by 15%. +-------------------------- +Refine Level +9: +Increases Fire Bolt, Cold Bolt and Lightning Bolt by additional 3%. +-------------------------- +Refine Level +11: +Increases Fire Bolt, Cold Bolt and Lightning Bolt by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000174# +Modified module for use with automatic armor. +Grants Automatic Orb (Warm Wave) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Psychic Wave by 15%. +Decreases Warmer skill cooldown by 1 second. +-------------------------- +Refine Level +9: +Increases damage of Psychic Wave by additional 3%. +Decreases Warmer skill cooldown by additional 2 seconds. +-------------------------- +Refine Level +11: +Increases damage of Psychic Wave by additional 7%. +Decreases Warmer skill cooldown by additional 4 seconds. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000175# +Modified module for use with automatic armor. +Grants Automatic Orb (Diamond Grave) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Diamond Dust and Earth Grave by 15%. +-------------------------- +Refine Level +9: +Increases damage of Diamond Dust and Earth Grave by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Diamond Dust and Earth Grave by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000176# +Modified module for use with automatic armor. +Grants Automatic Orb (Magnusmus) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Magnus Exorcismus and Adoramus by 15%. +-------------------------- +Refine Level +9: +Increases damage of Magnus Exorcismus and Adoramus by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Magnus Exorcismus and Adoramus by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000177# +Modified module for use with automatic armor. +Grants Automatic Orb (Holy Judex) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Holy Light and Judex by 15%. +-------------------------- +Refine Level +9: +Increases damage of Holy Light and Judex by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Holy Light and Judex by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000178# +Modified module for use with automatic armor. +Grants Automatic Orb (Duple Lica) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Duple Light by 15%. +Decreases Basilica skill cooldown by 2 second. +-------------------------- +Refine Level +9: +Increases damage of Duple Light by additional 3%. +Decreases Basilica skill cooldown by additional 3 seconds. +-------------------------- +Refine Level +11: +Increases damage of Duple Light by additional 7%. +Decreases Basilica skill cooldown by additional 5 seconds. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000179# +Modified module for use with automatic armor. +Grants Automatic Orb (Tiger Empire) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Tiger Cannon and Fallen Empire by 15%. +-------------------------- +Refine Level +9: +Increases damage of Tiger Cannon and Fallen Empire by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Tiger Cannon and Fallen Empire by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000180# +Modified module for use with automatic armor. +Grants Automatic Orb (Rampage Arrow) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Rampage Blaster and Knuckle Arrow by 15%. +-------------------------- +Refine Level +9: +Increases damage of Rampage Blaster and Knuckle Arrow by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Rampage Blaster and Knuckle Arrow by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000181# +Modified module for use with automatic armor. +Grants Automatic Orb (Raging Combo) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Combo Finish and Chain Crush Combo by 15%. +-------------------------- +Refine Level +9: +Increases damage of Combo Finish and Chain Crush Combo by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Combo Finish and Chain Crush Combo by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000182# +Modified module for use with automatic armor. +Grants Automatic Orb (Cluster) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Cluster Bomb by 15%. +-------------------------- +Refine Level +9: +Increases damage of Cluster Bomb by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Cluster Bomb by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000183# +Modified module for use with automatic armor. +Grants Automatic Orb (Breeze Shooting) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Sharp Shooting by 15%. +Increases Critical Damage by 10%. +-------------------------- +Refine Level +9: +Increases damage of Sharp Shooting by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Sharp Shooting by additional 7%. +Increases Critical Damage by additional 5%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000184# +Modified module for use with automatic armor. +Grants Automatic Orb (Aimed Storm) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Aimed Bolt and Arrow Storm by 15%. +-------------------------- +Refine Level +9: +Increases damage of Aimed Bolt and Arrow Storm by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Aimed Bolt and Arrow Storm by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000185# +Modified module for use with automatic armor. +Grants Automatic Orb (Metal Echo) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Metallic Sound and Great Echo by 15%. +-------------------------- +Refine Level +9: +Increases damage of Metallic Sound and Great Echo by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Metallic Sound and Great Echo by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000186# +Modified module for use with automatic armor. +Grants Automatic Orb (Reverberation) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Reverberation by 15%. +-------------------------- +Refine Level +9: +Increases damage of Reverberation by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Reverberation by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000187# +Modified module for use with automatic armor. +Grants Automatic Orb (Vulcan Severe) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Arrow Vulcan and Severe Rainstorm by 15%. +-------------------------- +Refine Level +9: +Increases damage of Arrow Vulcan and Severe Rainstorm by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Arrow Vulcan and Severe Rainstorm by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000188# +Modified module for use with automatic armor. +Grants Automatic Orb (Prominence Burst) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Prominence Kick and Solar Burst by 15%. +-------------------------- +Refine Level +9: +Increases damage of Prominence Kick and Solar Burst by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Prominence Kick and Solar Burst by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000189# +Modified module for use with automatic armor. +Grants Automatic Orb (Moon Kick) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of New Moon Kick and Full Moon Kick by 15%. +-------------------------- +Refine Level +9: +Increases damage of New Moon Kick and Full Moon Kick by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of New Moon Kick and Full Moon Kick by additional 7%. +Increases Critical Damage by 5%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000190# +Modified module for use with automatic armor. +Grants Automatic Orb (Flash Falling) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Flash Kick and Falling Star by 15%. +-------------------------- +Refine Level +9: +Increases damage of Flash Kick and Falling Star by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Flash Kick and Falling Star by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000191# +Modified module for use with automatic armor. +Grants Automatic Orb (Eswhoo) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Esma and Eswhoo by 15%. +-------------------------- +Refine Level +9: +Increases damage of Esma and Eswhoo by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Esma and Eswhoo by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000192# +Modified module for use with automatic armor. +Grants Automatic Orb (Espa) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Espa by 15%. +-------------------------- +Refine Level +9: +Increases damage of Espa by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Espa by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000193# +Modified module for use with automatic armor. +Grants Automatic Orb (Curse Explosion) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Curse Explosion by 15%. +-------------------------- +Refine Level +9: +Increases damage of Curse Explosion by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Curse Explosion by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000194# +Modified module for use with automatic armor. +Grants Automatic Orb (Des Hammer Dance) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Desperado, Fire Dance and Hammer of God by 15%. +-------------------------- +Refine Level +9: +Increases damage of Desperado, Fire Dance and Hammer of God by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Desperado, Fire Dance and Hammer of God by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000195# +Modified module for use with automatic armor. +Grants Automatic Orb (Fire Howling Tail) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Fire Rain, Howling Mine and Dragon Tail by 15%. +-------------------------- +Refine Level +9: +Increases damage of Fire Rain, Howling Mine and Dragon Tail by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Fire Rain, Howling Mine and Dragon Tail by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000196# +Modified module for use with automatic armor. +Grants Automatic Orb (Storm Buster Trip) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Shattering Storm, Banishing Buster and Round Trip by 15%. +-------------------------- +Refine Level +9: +Increases damage of Shattering Storm, Banishing Buster and Round Trip by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Shattering Storm, Banishing Buster and Round Trip by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000197# +Modified module for use with automatic armor. +Grants Automatic Orb (Flame Ice Wind) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 15%. +-------------------------- +Refine Level +9: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000198# +Modified module for use with automatic armor. +Grants Automatic Orb (Cross Slash) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Cross Slash by 15%. +-------------------------- +Refine Level +9: +Increases damage of Cross Slash by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Cross Slash by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000199# +Modified module for use with automatic armor. +Grants Automatic Orb (Exploding Flake Wind) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by 15%. +-------------------------- +Refine Level +9: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000200# +Modified module for use with automatic armor. +Grants Automatic Orb (Power of Sea) to equipment. +-------------------------- +[Enchantment Effect] +Decreases Tuna Party and Tasty Shrimp Party skill cooldown by 0.5 seconds. +-------------------------- +Refine Level +9: +Decreases Tuna Party and Tasty Shrimp Party skill cooldown by additional 1 second. +-------------------------- +Refine Level +11: +Decreases Tuna Party and Tasty Shrimp Party skill cooldown by additional 1.5 seconds. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000201# +Modified module for use with automatic armor. +Grants Automatic Orb (Power of Land) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Silvervine Stem Spear and Catnip Meteor by 15%. +-------------------------- +Refine Level +9: +Increases damage of Silvervine Stem Spear and Catnip Meteor by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Silvervine Stem Spear and Catnip Meteor by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000202# +Modified module for use with automatic armor. +Grants Automatic Orb (Power of Life) to equipment. +-------------------------- +[Enchantment Effect] +Increases damage of Picky Peck and Lunatic Carrot Beat by 15%. +-------------------------- +Refine Level +9: +Increases damage of Picky Peck and Lunatic Carrot Beat by additional 3%. +-------------------------- +Refine Level +11: +Increases damage of Picky Peck and Lunatic Carrot Beat by additional 7%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000207# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Mirror Counter) to equipment. +-------------------------- +[Enchantment Effect] +Decreases damage taken from reflected damage by 2%. +-------------------------- +Refine Level +9: +Decreases damage taken from reflected damage by additional 2%. +-------------------------- +Refine Level +11: +Decreases damage taken from reflected damage by additional 3%. +-------------------------- +[Enchantable Equipment] +Automatic Armor Type A +Automatic Armor Type B +-------------------------- +Weight: 1 +# +1000208# +Modified module for use with automatic armor. +Grants Automatic Modification Orb (Reflection Reject) to equipment. +-------------------------- +[Enchantment Effect] +Decreases damage taken from reflected damage by 3%. +-------------------------- +Refine Level +9: +Decreases damage taken from reflected damage by additional 2%. +-------------------------- +Refine Level +11: +Decreases damage taken from reflected damage by additional 4%. +-------------------------- +[Enchantable Equipment] +Automatic Engine Wing Type A +Automatic Engine Wing Type B +-------------------------- +Weight: 1 +# +1000213# +A stone that awakens the potential of Warlocks. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Comet by 15%. +-------------------------- +When equipped with High Wizard Stone II(Upper): +Increases damage of Comet by additional 15%. +-------------------------- +When equipped with High Wizard Stone II(Mid): +Decreases Fixed Casting Time by 0.1 seconds for every 2 Levels of Mystical Amplification. +-------------------------- +When equipped with High Wizard Stone II(Lower): +Increases Magical Damage with Neutral element by 5%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000214# +A stone that awakens the potential of High Wizards. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +Increases damage of Meteor Storm by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000215# +A stone that awakens the potential of High Wizards. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For each Level of Gravitation: +Increases Magical Damage with Neutral element by 2%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000216# +A stone that awakens the potential of High Wizards. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +For each Level of Soul Drain: +MATK +2 +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000217# +A stone that awakens the potential of Royal Guards. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Genesis Ray by 15%. +-------------------------- +When equipped with Paladin Stone II(Upper): +Decreases Fixed Casting Time by 0.1 seconds for every 2 Levels of Auto Guard. +-------------------------- +When equipped with Paladin Stone II(Mid): +Increases Magical Damage with Holy element by 5%. +-------------------------- +When equipped with Paladin Stone II(Lower): +Increases damage of Genesis Ray by additional 15%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000218# +A stone that awakens the potential of Paladin. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Faith: +Decreases Variable Casting Time by 1%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000219# +A stone that awakens the potential of Paladin. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +Increases damage of Pressure by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000220# +A stone that awakens the potential of Paladin. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +For each Level of Grand Cross: +Increase Holy elemental magical damage by 1%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000221# +A stone that awakens the potential of Guillotine Crosses. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases Critical Damage by 15%. +Enables the use of Double Attack Level 3 if you have learned Katar Mastery Level 10 (if learned at a higher Level of Double Attack, use that instead). +-------------------------- +When equipped with Assassin Cross Stone II(Upper): +ATK +5% +Increases Critical Damage by additional 15%. +-------------------------- +When equipped with Assassin Cross Stone II(Mid): +Increases damage of Counter Slash by 20%. +-------------------------- +When equipped with Assassin Cross Stone II(Lower): +Decreases After Skill Delay by 5%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000222# +A stone that awakens the potential of Assassin Crosses. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Soul Destroyer: +Decreases After Skill Delay by 1%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000223# +A stone that awakens the potential of Assassin Crosses. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +Increases damage of Sonic Blow by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000224# +A stone that awakens the potential of Assassin Crosses. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +For each Level of Advanced Katar Mastery: +Increases Physical Damage against enemies of every size by 2%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000225# +A biological sudden chip mounted on Illusion. +It plays an important role in absorbing electromagnetic waves generated by overheating. +-------------------------- +Weight: 1 +# +1000226# +The core of the mansion manager damaged by an intruder. The unstable light surrounding the core seems to be shouting for self-correction. +-------------------------- +Weight: 0 +# +1000227# +High-quality cotton that Child Admin Beta likes. +-------------------------- +Weight: 1 +# +1000231# +Parts that came off the broken automatic doll. It seems to be useful somewhere. +-------------------------- +Weight: 0 +# +1000232# +Standard standard communication chip built into automatic doll. Can be used anywhere. +-------------------------- +Weight: 0 +# +1000235# +Proof of recognition as a capable hunter. +The more you have this, the better you are +recognized. +-------------------------- +Weight: 0 +# +1000243# +Fragments of broken pieces of sin. It is said that a piece of sin is split into a specific shape, but it seems to be one of them. The power of anger can be felt from the fragment. +-------------------------- +Weight: 0 +# +1000244# +Fragments of broken pieces of sin. It is said that a piece of sin is split into a specific shape, but it seems to be one of them. A feeling of fear can be felt from the fragment. +-------------------------- +Weight: 0 +# +1000245# +Fragments of broken pieces of sin. It is said that a piece of sin is split into a specific shape, but it seems to be one of them. The resentment can be felt from the fragment. +-------------------------- +Weight: 0 +# +1000253# +Exchange tickets that can be exchanged for Booster Weapons. +Take it to [Centro]prontera,166,300,0,100,0,0 to exchange it for one of the items below: +-------------------------- +Ignition Wave Booster Two-Handed Sword +Hundered Breath Booster Spear +Banishing Cannon Booster Spear +Pressure Genesis Booser Sword +Power Tornado Booster Axe +Arms Knuckle Booster Mace +Acid Cannon Booster Club +Hells Tornado Booster Sword +Rolling Cross Booster Katar +Counter Assault Booster Dagger +Triangle Spring Booster Bow +Magic Fatal Booster Dagger +Crimson Strain Booster Staff +Chain Jack Booster Staff +Spell Bolt Booster Book +Elemental Spell Booster Stick +Adonus Booster Wand +Dupledex Booster Mace +Rampage Arrow Booster Knuckle +Sky Cannon Booster Knuckle +Arrow Booster Bow +Sharp Bolt Booster Bow +Rainstorm Booster Bow +Metallic Reverberation Booster Violin +Metallic Reverberation Booster Whip +-------------------------- +Weight: 0 +# +1000254# +Coins that can purchase various booster products. +-------------------------- +Promotional Item Exchange: +[Centro]prontera,166,300,0,100,0,0 +Promotional Costume Enchantment: +[Yves]malangdo,152,136,0,100,0,0 +Illusion Equipment (Bound) Enchantment: +[RS26-1]sp_cor,98,136,0,100,0,0 +-------------------------- +Weight: 0 +# +1000255# +Fragments of broken pieces of sin. It is said that a piece of sin is split into a specific shape, but it seems to be one of them. Feelings of regret can be felt from the fragment. +-------------------------- +Weight: 0 +# +1000256# +Fragments of broken pieces of sin. It is said that a piece of sin is split into a specific shape, but it seems to be one of them. Feelings of sadness can be felt from the fragment. +-------------------------- +Weight: 0 +# +1000257# +A dark and evil sculpture containing the energy of sin. Anger, fear, resentment, regret, and sadness overflow from the sculpture. +-------------------------- +Weight: 0 +# +1000258# +Fragments of broken pieces of good intentions. It is said that a piece of good intention is split into a specific shape, but it seems to be one of them. You can feel empathy from the fragment. +-------------------------- +Weight: 0 +# +1000259# +Fragments of broken pieces of good intentions. It is said that a piece of good intention is split into a specific shape, but it seems to be one of them. Feelings of happiness can be felt from the fragment. +-------------------------- +Weight: 0 +# +1000260# +Fragments of broken pieces of good intentions. It is said that a piece of good intention is split into a specific shape, but it seems to be one of them. The mind of rest is felt from the fragment. +-------------------------- +Weight: 0 +# +1000261# +Fragments of broken pieces of good intentions. It is said that a piece of good intention is split into a specific shape, but it seems to be one of them. A feeling of comfort is felt from the fragment +-------------------------- +Weight: 0 +# +1000262# +Fragments of broken pieces of good intentions. It is said that a piece of good intention is split into a specific shape, but it seems to be one of them. You can feel the power of blessing from the fragments. +-------------------------- +Weight: 0 +# +1000263# +A bright and sacred piece of goodwill. Empathy, happiness, rest, comfort, and blessings overflow from the fragment. +-------------------------- +Weight: 0 +# +1000268# +A gas mask with excellent performance that prevents even odors that cover the entire city. At the same time, high-level technology was used to make breathing easier, but it is regrettable that after the cause of the odor has been removed, there is no need to use it. +-------------------------- +Weight: 0 +# +1000269# +An excellent sealing box that prevents even odors that cover the entire city. A little bit of anger is rising over why we had to create something like this, but for now, let's admire yourself for that ability. +-------------------------- +Weight: 0 +# +1000270# +Flask with the same structure inlet and outlet. What you see may not be everything. +-------------------------- +Weight: 0 +# +1000271# +The source of emotion. Thrill, sadness, tears, sighs, excitement, laughter, and happiness are separated from each other. +-------------------------- +Weight: 0 +# +1000272# +The source of creation. Some say it is a piece of mercy from God. +-------------------------- +Weight: 0 +# +1000274# +A coupon given for each use of Kachua's Secret Key. +You can collect them and exchange them for various items. +-------------------------- +[Macarom], [Tungkarom]itemmall,41,54,0,100,0,0 +-------------------------- +Weight: 0 +# +1000275# +Tool for making advanced medicine. +It seems to be used by experienced pharmaceutical companies. +-------------------------- +Weight: 0.1 +# +1000276# +A burning hydrochloric acid bottle made by mixing an attribute gemstone with a hydrochloric acid bottle and a Molotov cocktail. +It is difficult to handle unless you are skilled. +-------------------------- +Weight: 0.1 +# +1000277# +A hard hydrochloric acid bottle made by mixing an attribute gemstone with a hydrochloric acid bottle and a Molotov cocktail. +It is difficult to handle unless you are skilled. +-------------------------- +Weight: 0.1 +# +1000278# +A scorching hydrochloric acid bottle made by mixing an attribute gemstone with a hydrochloric acid bottle and a Molotov cocktail. +It is difficult to handle unless you are skilled. +-------------------------- +Weight: 0.1 +# +1000279# +A cold hydrochloric acid bottle made by mixing an attribute gemstone with a hydrochloric acid bottle and a Molotov cocktail. +It is difficult to handle unless you are skilled. +-------------------------- +Weight: 0.1 +# +1000280# +High-grade coating medicine that is refined with a special material. +It is difficult to handle unless you are skilled. +-------------------------- +Weight: 0.1 +# +1000281# +Advanced plant disease cultured by improving existing plant disease. +It is difficult to handle unless you are skilled. +-------------------------- +Weight: 0.1 +# +1000282# +Episode 16 Clear Ticket. +* Note: Regardless of the current quest progress, all required episode quests will be completed. +You cannot receive rewards for clearing each quest. +[Bright]prt_cas,373,77,0,100,0,0 +-------------------------- +Weight: 0 +# +1000283# +Episode 16 clear ticket distributed as an event. +* Note: Regardless of the current quest progress, all required episode quests will be completed. +You cannot receive rewards for clearing each quest. +[Bright]prt_cas,373,77,0,100,0,0 +-------------------------- +Weight: 0 +# +1000287# +Episode 17 Clear Ticket. +* Note: Regardless of the current quest progress, all required episode quests will be completed. +You cannot receive rewards for clearing each quest. +* You can select and complete the desired part from Episode 17.1 and Episode 17.2. +[Bright]prt_cas,373,77,0,100,0,0 +-------------------------- +Weight: 0 +# +1000288# +Episode 18 Clear Ticket. +* Note: Regardless of the current quest progress, all required episode quests will be completed. +You cannot receive rewards for clearing each quest. +[Bright]prt_cas,373,77,0,100,0,0 +-------------------------- +Weight: 0 +# +1000289# +Mechanical device capsules with special features. +Simply select the desired function and attach it to the target. +-------------------------- +Weight: 0.5 +# +1000290# +A capsule made by implying the devices that are fundamental to the production of the automatic combat robot ABR. +You can select and use the desired ABR model. +-------------------------- +Weight: 0.5 +# +1000291# +A stone with the energy of lightning. +-------------------------- +Weight: 0.1 +# +1000292# +A stone with earthly power. +-------------------------- +Weight: 0.1 +# +1000293# +A stone with sparkling energy. +-------------------------- +Weight: 0.1 +# +1000294# +A stone with strong poison. +-------------------------- +Weight: 0.1 +# +1000295# +A stone with the energy of cold ice. +-------------------------- +Weight: 0.1 +# +1000296# +A stone that awakens the potential of Rune Knights. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Ignition Break by 15%. +-------------------------- +When equipped with Lord Knight Stone II(Upper): +Increases damage of Sonic Wave by 20%. +-------------------------- +When equipped with Lord Knight Stone II(Mid): +Increases damage of Ignition Break by additional 10%. +-------------------------- +When equipped with Lord Knight Stone II(Lower): +Increases damage of Hundred Spear by 30%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000297# +A stone that awakens the potential of Lord Knights. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Spiral Pierce: +Increases Ranged Physical Damage by 1%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000298# +A stone that awakens the potential of Lord Knights. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +Increases damage of Bowling Bash by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000299# +A stone that awakens the potential of Lord Knights. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +Increases damage of Spiral Pierce by 20%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000300# +A stone that awakens the potential of Genetics. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Crazy Weed by 20%. +-------------------------- +When equipped with Creator Stone II(Upper): +Decreases Cart Tornado skill cooldown by 0.7 seconds. +-------------------------- +When equipped with 9Creator Stone II(Mid): +Increases damage of Spore Explosion by 20%. +-------------------------- +When equipped with Creator Stone II(Lower): +For each 2 Levels of Acid Demonstration: +Decreases Fixed Casting Time by 0.1 seconds. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000301# +A stone that awakens the potential of Creators. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Bio Cannibalize: +Increases Physical Damage against enemies of every size by 1%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000302# +A stone that awakens the potential of Creators. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +Increases damage of Acid Demonstration by 25%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000303# +A stone that awakens the potential of Creators. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +For each 2 Levels of Acid Demonstration: +Increases Ranged Physical Damage by 1%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000304# +A stone that awakens the potential of Wanderers and Minstrels. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Increases damage of Reverberation by 15%. +-------------------------- +When equipped with Clown Gypsy Stone II(Upper): +Increases damage of Reverberation by additional 10%. +-------------------------- +When equipped with Clown Gypsy Stone II(Mid): +Decreases SP Consumption of Reverberation and Metallic Sound by 20%. +-------------------------- +When equipped with Clown Gypsy Stone II(Lower): +Increases damage of Metallic Sound by 20%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000305# +A stone that awakens the potential of Gypsy and Clowns. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +Increases damage off Arrow Vulcan by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000306# +A stone that awakens the potential of Gypsy and Clowns. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For each Level of Musical Strike/Throw Arrow: +Increases Magical Damage with Neutral element by 1%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000307# +A stone that awakens the potential of Gypsy and Clowns. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +Increases damage of Musical Strike and Throw Arrow by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000311# +Flute that Wind Hawk uses to call a Hawk. +-------------------------- +Weight: 0 +# +1000316# +Coins given to those who participated in the Geffen Arena. +It is said to be used for item exchange implicitly. +-------------------------- +Weight: 0 +# +1000317# +A certificate given only to participants who have been active in the Geffen Arena. +-------------------------- +Weight: 0 +# +1000320# +Coins that can be earned by collecting Kafra points. +It is said that Aldebaran's Kafra vending machine can be used to purchase items. +-------------------------- +Weight: 0 +# +1000321# +It is a gemstone formed by hardening of pine resin and has a mysterious color. +-------------------------- +Weight: 10 +# +1000322# +Powder containing etheric power. +It is a small amount, but you can feel the magic. +-------------------------- +Weight: 0.1 +# +1000323# +A stone made by refining etel dust. +Used to impart strong magic to equipment. +-------------------------- +Weight: 1 +# +1000325# +Aquamarine with ethereal power. +-------------------------- +Weight: 1 +# +1000326# +Topaz with ethereal power. +-------------------------- +Weight: 1 +# +1000327# +Amethyst with ethereal power. +-------------------------- +Weight: 1 +# +1000328# +Amber with ethereal power. +-------------------------- +Weight: 1 +# +1000331# +Etherium containing etheric magic. +Used for refining level 2 armor from level 1 to level 10. +Failure will decrease refine level of armor by3 +-------------------------- +Weight: 1 +# +1000332# +Etherdeocon containing etheric magic. +Used for refining level 5 weapon from level 1 to level 10. +Failure will decrease refine level of weapon by3 +-------------------------- +Weight: 1 +# +1000333# +Etherium containing strong etheric magic. +Used for refining level 2 armor from level 1 to level 10. +Failure will decrease refine level of armor by 1. +-------------------------- +Weight: 1 +# +1000334# +Etherdeocon containing strong etheric magic. +Used for refining level 5 weapon from level 1 to level 10. +Failure will decrease refine level of weapon by 1. +-------------------------- +Weight: 1 +# +1000335# +High enriched Etherium containing strong etheric magic. +Used for refining level 2 armor with a refine level of 10 or higher from level 11 to level 15. +Failure will destroy the armor. +-------------------------- +Weight: 1 +# +1000336# +High enriched Etherdeocon containing strong etheric magic. +Used for refining level 5 weapon with a refine level of 10 or higher from level 11 to level 15. +Failure will destroy the weapon. +-------------------------- +Weight: 1 +# +1000337# +Powder that gives a blessing by putting ether dust in a bottle. +-------------------------- +Weight: 1 +# +1000346# +For adventurers who have reached level 200, we will inform you of where you can change to the 4th job. +Conditions for job change: Base Level 200, Job Level 70 or higher +-------------------------- +[Applicable Jobs] +Rune Knight: [Dragon Knight]gef_fild08,54,101,0,100,0,0 +Royal Guard: [Imperial Guard]prt_cas,181,10,0,100,0,0 +Archbishop: [Cardinal]prt_church,184,100,0,100,0,0 +Sura: [Inquisitor]prt_in,250,129,0,100,0,0 +Warlock: [Arch Mage]ba_maison,200,256,0,100,0,0 +Sorcerer: [Elemental Master]gef_tower,119,29,0,100,0,0 +Mechanic: [Meister]yuno,111,206,0,100,0,0 +Genetic: [Biolo]verus04,157,164,0,100,0,0 +Guillotine Cross: [Shadow Cross]job3_guil01,68,91,0,100,0,0 +Shadow Chaser: [Abyss Chaser]s_atelier,122,59,0,100,0,0 +Ranger: [Wind Hawk]payon,100,177,0,100,0,0, +Minstrel: [Troubadour]lighthalzen,186,124,0,100,0,0 +Wanderer: [Trouvere]comodo,142,165,0,100,0,0 +-------------------------- +Weight: 0 +# +1000352# +A book containing the recipes of making various device capsules. +-------------------------- +Machine Capsule: 5x Mini Furnace +5x Oridecon Hammer +50x Magic Gear Fuel +ABR Capsule: 5x Mini Furnace +5x Oridecon Hammer +75x Magic Gear Fuel +-------------------------- +Weight: 0 +# +1000363# +A stone in which the magical power that flowed from the fragment of Ymir that exploded as the unfairness crashed remained weak. Those who know the value of stone seem to be useful. +-------------------------- +Weight: 0.1 +# +1000364# +A stone with only the remnants of magical power that flowed out of the fragment of Ymir that exploded as the secret process crashed. It's steamy to just throw it away. +-------------------------- +Weight: 0 +# +1000366# +A certificate given only to participants who have performed outstandingly in the Geffen Arena. +It seems to be used only for special transactions. +-------------------------- +Weight: 0 +# +1000367# +A jewel made with a feeling of regret. +[Marquis of Remorse]dali02,78,112,0,100,0,0 can exchange it for something. +-------------------------- +Weight: 0 +# +1000368# +A bradium with ethereal power. +Used for refining level 5 weapon with a refine level of 10 or higher from level 11 to level 20. +Failure will destroy the weapon. +-------------------------- +Weight: 1 +# +1000369# +A bradium with strong ethereal power. +Used for refining level 5 weapon with a refine level of 15 or higher from level 16 to level 20. +Failure will destroy the weapon. +-------------------------- +Weight: 1 +# +1000370# +A carnium containing etheric magic. +Used for refining level 2 armor with a refine level of 10 or higher from level 11 to level 15. +Failure will destroy the armor. +-------------------------- +Weight: 1 +# +1000371# +A carnium containing strong etheric magic. +Used for refining level 2 armor with a refine level of 15 or higher from level 16 to level 15. +Failure will destroy the armor. +-------------------------- +Weight: 1 +# +1000372# +The powder on the surface of the meteorite. +There is a little bit of magical power of the meteorite. +-------------------------- +Weight: 0.1 +# +1000373# +Fragments from which part of a huge meteorite has fallen off. +I feel a quite strong magical power. +-------------------------- +Weight: 1 +# +1000374# +Sparkling water made to feel a cool and refreshing feeling through a tightly closed interior. +However, it seems that the effect of excessive carbonation somehow clears the mind. +-------------------------- +Caution: Do not drink excessively with accumulated fatigue. There are reports of side effects related to temporary memory loss. +-------------------------- +Weight: 10 +# +1000375# +A stone that increases Ranged Physical Damage. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +When equipped with Ranged Stone(Mid) and Ranged Stone(Lower): +Increases Ranged Physical Damage by additional 6%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000376# +A stone that increases Ranged Physical Damage. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +Increases Ranged Physical Damage by 3%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000377# +A stone that increases Melee Physical Damage. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +Increases Melee Physical Damage by 3%. +-------------------------- +When equipped with Melee Stone (Mid) and Melee Stone (Lower): +Increases Ranged Physical Damage by additional 6%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000378# +A stone that increases Melee Physical Damage. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +Increases Melee Physical Damage by 3%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000379# +A stone that increases Melee Physical Damage. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +Increases Melee Physical Damage by 3%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000396# +Naght Sieger's Soul. +-------------------------- +Weight: 0 +# +1000397# +Betelgeuse's Soul. +-------------------------- +Weight: 0 +# +1000398# +Meteorite Powder of Power. +-------------------------- +Weight: 0.1 +# +1000399# +Meteorite Powder of Stamina. +-------------------------- +Weight: 0.1 +# +1000400# +Meteorite Powder of Agility. +-------------------------- +Weight: 0.1 +# +1000401# +Meteorite Powder of Luck. +-------------------------- +Weight: 0.1 +# +1000402# +Meteorite Powder of Spell. +-------------------------- +Weight: 0.1 +# +1000403# +Meteorite Powder of Wisdom. +-------------------------- +Weight: 0.1 +# +1000405# +A piece of amethyst often found near the Gorge of Oz, the Gray Wolf Forest. +It is often used by locals to make jewelry or as a gift as a token of appreciation. +There seems to be a collector collecting pieces of amethyst. +-------------------------- +Weight: 0 +# +1000406# +A crystal that can only be obtained in small quantities from the Gray Wolf. It seems as if the lava is hardened. +-------------------------- +Weight: 0 +# +1000407# +A flower with two-colored petals with white petals on the right and pale gray on the left. It is said to grow wild only in the gray wolf forest. If you don't know a special way to pick a flower, it will wither. +-------------------------- +Weight: 0 +# +1000408# +A notebook for dictating the various stories of the Gray Wolf Forest. +-------------------------- +Weight: 0 +# +1000409# +A paper file with documents embedded in it. +It may be important. +-------------------------- +Weight: 0 +# +1000410# +It is sold at the Temple of Sesrumnir in Rachel as a necessity for places where clean water is scarce, such as deserts and volcanoes. Mass production seems impossible. +At first glance, it looks like an ordinary medicine bag, but when immersed in water, it instantly glows and purifies. Have fun visiting. +-------------------------- +Weight: 0 +# +1000411# +It is clean, purified water that does not give off any odor. When drinking, it is better to boil it once. +-------------------------- +Weight: 0 +# +1000412# +It is a small animal caught in a trap installed in the forest. It will be a daily food. +-------------------------- +Weight: 0 +# +1000413# +It is a small animal caught in a trap installed in the forest. It will be a daily food. +-------------------------- +Weight: 0 +# +1000414# +It is a kind of fruit that cannot be found around here. It was a little spoiled, but it can be eaten. +-------------------------- +Weight: 0 +# +1000419# +An lower gemstone used to upgrade weapon equipment. +-------------------------- +Weight: 0 +# +1000420# +An intermediate gemstone used to upgrade weapon equipment. +-------------------------- +Weight: 0 +# +1000421# +An high-grade gemstone used to upgrade weapon equipment. +-------------------------- +Weight: 0 +# +1000422# +An superior gemstone used to upgrade weapon equipment. +-------------------------- +Weight: 0 +# +1000423# +An lower gemstone used to upgrade armor equipment. +-------------------------- +Weight: 0 +# +1000424# +An intermediate gemstone used to upgrade armor equipment. +-------------------------- +Weight: 0 +# +1000425# +An superior gemstone used to upgrade armor equipment. +-------------------------- +Weight: 0 +# +1000426# +An lower gemstone used to upgrade accessory equipment. +-------------------------- +Weight: 0 +# +1000427# +An intermediate gemstone used to upgrade accessory equipment. +-------------------------- +Weight: 0 +# +1000428# +An high-grade gemstone used to upgrade accessory equipment. +-------------------------- +Weight: 0 +# +1000429# +An superior gemstone used to upgrade accessory equipment. +-------------------------- +Weight: 0 +# +1000430# +Ore made by refining Weapon Enhancement Ore(Lower). +Used to upgrade weapon equipment. +-------------------------- +Weight: 0 +# +1000431# +Ore made by refining Weapon Enhancement Ore(Intermediate). +Used to upgrade weapon equipment. +-------------------------- +Weight: 0 +# +1000432# +Ore made by refining Weapon Enhancement Ore(High). +Used to upgrade weapon equipment. +-------------------------- +Weight: 0 +# +1000433# +Ore made by refining Weapon Enhancement Ore(Superior). +Used to upgrade weapon equipment. +-------------------------- +Weight: 0 +# +1000434# +Ore made by refining Armor Enhancement Ore(Lower). +Used to upgrade armor equipment. +-------------------------- +Weight: 0 +# +1000435# +Ore made by refining Armor Enhancement Ore(Intermediate). +Used to upgrade armor equipment. +-------------------------- +Weight: 0 +# +1000436# +Ore made by refining Armor Enhancement Ore(High). +Used to upgrade armor equipment. +-------------------------- +Weight: 0 +# +1000437# +Ore made by refining Armor Enhancement Ore(Superior). +Used to upgrade armor equipment. +-------------------------- +Weight: 0 +# +1000438# +Ore made by refining Accessory Enhancement Ore(Lower). +Used to upgrade accessory equipment. +-------------------------- +Weight: 0 +# +1000439# +Ore made by refining Accessory Enhancement Ore(Intermediate). +Used to upgrade accessory equipment. +-------------------------- +Weight: 0 +# +1000440# +Ore made by refining Accessory Enhancement Ore(High). +Used to upgrade accessory equipment. +-------------------------- +Weight: 0 +# +1000441# +Ore made by refining Accessory Enhancement Ore(Superior). +Used to upgrade accessory equipment. +-------------------------- +Weight: 0 +# +1000442# +Meteorite Fragment of Power. +-------------------------- +Weight: 0.1 +# +1000443# +Meteorite Fragment of Stamina. +-------------------------- +Weight: 0.1 +# +1000444# +Meteorite Fragment of Agility. +-------------------------- +Weight: 0.1 +# +1000445# +Meteorite Fragment of Luck. +-------------------------- +Weight: 0.1 +# +1000446# +Meteorite Fragment of Spell. +-------------------------- +Weight: 0.1 +# +1000447# +Meteorite Fragment of Wisdom. +-------------------------- +Weight: 0.1 +# +1000471# +A key that fits perfectly into the lock of the forbidden door of the deceived villa. No one knows what will be inside the forbidden door. +-------------------------- +Weight: 1 +# +1000475# +A blueprint required to purify and reassemble the Adulter Fides Two-Handed Sword. +-------------------------- +Weight: 0 +# +1000476# +A blueprint required to purify and reassemble the Adulter Fides Lance. +-------------------------- +Weight: 0 +# +1000477# +A blueprint required to purify and reassemble the Adulter Fides Guardian Sword. +-------------------------- +Weight: 0 +# +1000478# +A blueprint required to purify and reassemble the Adulter Fides Guardian Spear. +-------------------------- +Weight: 0 +# +1000479# +A blueprint required to purify and reassemble the Adulter Fides Axe. +-------------------------- +Weight: 0 +# +1000480# +A blueprint required to purify and reassemble the Adulter Fides Mace. +-------------------------- +Weight: 0 +# +1000481# +A blueprint required to purify and reassemble the Adulter Fides Rapier. +-------------------------- +Weight: 0 +# +1000482# +A blueprint required to purify and reassemble the Adulter Fides Hall. +-------------------------- +Weight: 0 +# +1000483# +A blueprint required to purify and reassemble the Adulter Fides Chakram. +-------------------------- +Weight: 0 +# +1000484# +A blueprint required to purify and reassemble the Adulter Fides Katar. +-------------------------- +Weight: 0 +# +1000485# +A blueprint required to purify and reassemble the Adulter Fides Dagger. +-------------------------- +Weight: 0 +# +1000486# +A blueprint required to purify and reassemble the Adulter Fides Crossbow. +-------------------------- +Weight: 0 +# +1000487# +A blueprint required to purify and reassemble the Adulter Fides Two-Handed Staff. +-------------------------- +Weight: 0 +# +1000488# +A blueprint required to purify and reassemble the Adulter Fides Rod. +-------------------------- +Weight: 0 +# +1000489# +A blueprint required to purify and reassemble the Adulter Fides Magic Book. +-------------------------- +Weight: 0 +# +1000490# +A blueprint required to purify and reassemble the Adulter Fides Poison Book. +-------------------------- +Weight: 0 +# +1000491# +A blueprint required to purify and reassemble the Adulter Fides Bible. +-------------------------- +Weight: 0 +# +1000492# +A blueprint required to purify and reassemble the Adulter Fides Wand. +-------------------------- +Weight: 0 +# +1000493# +A blueprint required to purify and reassemble the Adulter Fides Knuckle. +-------------------------- +Weight: 0 +# +1000494# +A blueprint required to purify and reassemble the Adulter Fides Claw. +-------------------------- +Weight: 0 +# +1000495# +A blueprint required to purify and reassemble the Adulter Fides Ballista. +-------------------------- +Weight: 0 +# +1000496# +A blueprint required to purify and reassemble the Adulter Fides Aiming Bow. +-------------------------- +Weight: 0 +# +1000497# +A blueprint required to purify and reassemble the Adulter Fides Violin. +-------------------------- +Weight: 0 +# +1000498# +A blueprint required to purify and reassemble the Adulter Fides Chain Rope. +-------------------------- +Weight: 0 +# +1000499# +A blueprint required to purify and reassemble the Adulter Fides Harp. +-------------------------- +Weight: 0 +# +1000500# +A blueprint required to purify and reassemble the Adulter Fides Ribbon. +-------------------------- +Weight: 0 +# +1000501# +Holy oil needed to purify false beliefs in weapons. +-------------------------- +Weight: 0 +# +1000502# +Holy water needed to purify false beliefs in weapons. +-------------------------- +Weight: 0 +# +1000503# +A necessary handkerchief needed to purify false beliefs in weapons. +-------------------------- +Weight: 0 +# +1000504# +It feels nice to touch with your hand. Even if you touch it with damp hands, it does not smear on your hands +-------------------------- +Weight: 0 +# +1000505# +A viscous liquid that shimmers like the moon. It doesn't smell, but I don't think it's worth tasting. +-------------------------- +Weight: 0 +# +1000506# +When you hold it in your hand, you know that it is an ant's shell, but you forget that the moment you let it go. +-------------------------- +Weight: 0 +# +1000510# +Unlike ordinary antennae, the tip is very sharp, so care must be taken when handling it. +-------------------------- +Weight: 1 +# +1000511# +Compared to the size of the body, the legs are thin and long, but they are incredibly hard. +-------------------------- +Weight: 1 +# +1000512# +The ant's jaws are incredibly large and sharp, and it's very difficult to get them intact. +-------------------------- +Weight: 1 +# +1000513# +Formic acid, which is found in some special individuals, has a higher acidity than expected, so it should be handled with care. +-------------------------- +Weight: 1 +# +1000514# +The hat that Gaias wears. It's worn out so much that it looks like it's going to tear at any moment. +-------------------------- +Weight: 1 +# +1000515# +The shovel that Gaias carries, probably because of the thorough management, there is no problem in using it right away. +-------------------------- +Weight: 1 +# +1000516# +The sharp, towering fangs of a ferocious Familiar, it is very difficult to obtain intact. +-------------------------- +Weight: 1 +# +1000517# +The fur of a ferocious Familiar, it has a tendency to clump together without scattering. +-------------------------- +Weight: 1 +# +1000518# +The crowns and splendid decorations that Maya used seem to show Maya's dignity. +-------------------------- +Weight: 1 +# +1000520# +A stone that increases ASPD. +Gives the following effects when compounded on the 2nd slot of an Costume Garment. +-------------------------- +ASPD +1 +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000521# +A stone that slightly decreases Fixed Casting Time. +Gives the following effects when compounded on the 2nd slot of an Costume Garment. +-------------------------- +Decreases Fixed Casting Time by 0.1 second. +-------------------------- +When equipped with Minor Casting Reduction(Garment): +Decreases Fixed Casting Time by additional 0.3 seconds. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000522# +A stone that decreases Variable Casting Time. +Gives the following effects when compounded on the 2nd slot of an Costume Garment. +-------------------------- +Decreases Variable Casting Time by 5%. +-------------------------- +When equipped with Variable Casting Time Reduction(Garment): +Decreases Fixed Casting Time by 0.5 seconds. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000523# +A stone that increases Ranged Physical Damage. +Gives the following effects when compounded on the 2nd slot of an Costume Garment. +-------------------------- +Increases Ranged Physical Damage by 4%. +-------------------------- +When equipped with Ranged Stone(Upper): +Increases Ranged Physical Damage by additional 2%. +-------------------------- +When equipped with Ranged Stone(Mid): +Increases Ranged Physical Damage by additional 2%. +-------------------------- +When equipped with Ranged Stone(Lower): +Increases Ranged Physical Damage by additional 2%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000524# +A stone that increases Melee Physical Damage. +Gives the following effects when compounded on the 2nd slot of an Costume Garment. +-------------------------- +Increases Melee Physical Damage by 4%. +-------------------------- +When equipped with Melee Stone(Upper): +Increases Melee Physical Damage by additional 2%. +-------------------------- +When equipped with Melee Stone(Mid): +Increases Melee Physical Damage by additional 2%. +-------------------------- +When equipped with Melee Stone(Lower): +Increases Melee Physical Damage by additional 2%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000525# +A stone that can absorb SP. +Gives the following effects when compounded on the 2nd slot of an Costume Garment. +-------------------------- +Physical attacks have a 1% chance to absorb 1% of the inflicted damage as SP. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000526# +A stone that can absorb HP. +Gives the following effects when compounded on the 2nd slot of an Costume Garment. +-------------------------- +Physical attacks have a 1% chance to absorb 1% of the inflicted damage as HP. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000527# +A stone that increases Magical Damage. +Gives the following effects when compounded on the 2nd slot of an Costume Garment. +-------------------------- +Increases Magical Damage with every element by 4%. +-------------------------- +When equipped with Magic Power Stone(Upper): +Increases Magical Damage with every element by additional 2%. +-------------------------- +When equipped with Magic Power Stone(Mid): +Increases Magical Damage with every element by additional 2%. +-------------------------- +When equipped with Magic Power Stone(Lower): +Increases Magical Damage with every element by additional 2%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000528# +A stone that increases Magical Damage. +Gives the following effects when compounded on slot of an Costume Upper Headgear. +-------------------------- +Increases Magical Damage with every element by 3%. +-------------------------- +When equipped with Magic Power Stone(Mid) and Magic Power Stone(Lower): +Increases Magical Damage with every element by additional 6%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000529# +A stone that increases Magical Damage. +Gives the following effects when compounded on slot of an Costume Middle Headgear. +-------------------------- +Increases Magical Damage with every element by 3%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000530# +A stone that increases Magical Damage. +Gives the following effects when compounded on slot of an Costume Lower Headgear. +-------------------------- +Increases Magical Damage with every element by 3%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000552# +Cursed water with the energy of the evil undead in purple. +Looking at this water, the Dark Priest's eyes sparkle. +-------------------------- +Weight: 1 +# +1000563# +An amulet used to guide spirits. +-------------------------- +Weight: 0.1 +# +1000564# +A grenade with considerable explosive power. The only safety device is a safety pin, so it is quite dangerous, so only a Night Watch who is proficient in using it can use it. +-------------------------- +Weight: 0.1 +# +1000565# +A haze of dark energy. +It seems difficult to handle unless you are capable. +-------------------------- +Weight: 0.1 +# +1000566# +A haze with the energy of burning red flames. +It seems difficult to handle unless you are capable. +-------------------------- +Weight: 0.1 +# +1000567# +A haze with the aura of cold cold air. +It seems difficult to handle unless you are capable. +-------------------------- +Weight: 0.1 +# +1000568# +A haze infused with the strong energy of the earth. +It seems difficult to handle unless you are capable. +-------------------------- +Weight: 0.1 +# +1000569# +A haze with the aura of a rough sack wind. +It seems difficult to handle unless you are capable. +-------------------------- +Weight: 0.1 +# +1000570# +A certificate certifying a contribution to the development of the noodle festival. +-------------------------- +Reward Exchange +[Prize Exchange]lasagna,86,207,0,101,0 +-------------------------- +Weight: 0 +# +1000571# +Star-shaped crystals. It resembles a star button that Wandering Duck Dolls like. +-------------------------- +Weight: 0 +# +1000604# +A test tube placed in Jungkea's laboratory. +It looks like it could hold some liquid. +-------------------------- +Weight: 0 +# +1000605# +Test tube with red liquid. +-------------------------- +Weight: 0 +# +1000606# +An eggshell of an intermediate Rgan. +It is broken in a shape different from the one that hatched naturally. +-------------------------- +Weight: 0 +# +1000607# +An invitation from Isgard, the land of ice. +It is said that only invited people can enter Isgard. +-------------------------- +Weight: 0 +# +1000608# +A snow flower made by freezing the magical energy that seeped into Jormungand's epidermis. Although it looks like ice, it is actually a crystal of pure magical power. It is also used as a currency because it is used as a variety of energy resources in Isgard. +-------------------------- +Weight: 0 +# +1000609# +A ticket that grants a Slot Enchantment for Mad Bunny-LT. +You can use it by going to [Jeeky]itemmall,31,70,0,100,0,0. +-------------------------- +[Random Enchantment] +Randomly grants 1 Enchantment among After Skill Delay, Attack Speed, Variable Casting (Physical), Variable Casting (Magical), Defense, Physical, Ranged, Magical, Stamina and Mental Power. One Mad Bunny-LT Enchantment Ticket is consumed. +-------------------------- +[Enchant Upgrade Lv2] +Upgrades attached Enchantments to Lv2 randomly. Consumes 3 Mad Bunny-LT Enchantment Tickets, 50 Zelunium and 50 Shadowdecon. +-------------------------- +[Enchant Upgrade Lv3] +Lv2 Enchantments will be upgraded to Lv3. Consumes 5 Mad Bunny-LT Enchantment Tickets, 150 Zelunium and 150 Shadowdecon. +-------------------------- +[Enchant Reset] +It can be reseted for 500,000 Zenny. Reset Chance: 100%. +-------------------------- +Weight: 0 +# +1000610# +A stone that awakens the potential of Rune Knight. +Gives the following effects when compounded on slot of an Costume Upper Headgear. +-------------------------- +For each Level of Dragon Training: +Increases Critical Damage by 2%. +-------------------------- +When equipped with Rune Knight Stone(Garment): +Decreases Variable Casting Time by 10%. +-------------------------- +When equipped with Rune Knight Stone II(Garment): +Increases damage of Hundred Spear by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000611# +A stone that awakens the potential of Rune Knight. +Gives the following effects when compounded on slot of an Costume Middle Headgear. +-------------------------- +For each 2 Levels of Rune Mastery: +Increases Melee and Ranged Physical Damage by 1%. +-------------------------- +When equipped with Rune Knight Stone(Garment): +Increases damage of Dragon Breath and Dragon Breath - Water by 15%. +-------------------------- +When equipped with Rune Knight Stone II(Garment): +Increases damage of Sonic Wave by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000612# +A stone that awakens the potential of Rune Knight. +Gives the following effects when compounded on slot of an Costume Lower Headgear. +-------------------------- +For each Level of Enchant Blade: +Increases damage of Wind Cutter by 5%. +-------------------------- +When equipped with Rune Knight Stone(Garment): +MaxHP/MaxSP +10% +-------------------------- +When equipped with Rune Knight Stone II(Garment): +Increases damage of Ignition Break by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000613# +A stone that awakens the potential of Warlock. +Gives the following effects when compounded on slot of an Costume Upper Headgear. +-------------------------- +For each Level of Soul Expansion: +Increases Magical Damage with every element by 2%. +-------------------------- +When equipped with Warlock Stone(Garment): +Increases damage of Soul Expansion by 15%. +-------------------------- +When equipped with Warlock Stone II(Garment): +Increases damage of Jack Frost by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000614# +A stone that awakens the potential of Warlock. +Gives the following effects when compounded on slot of an Costume Middle Headgear. +-------------------------- +For each Level of Comet: +Decreases Fixed Casting Time by 0.1 seconds. +-------------------------- +When equipped with Warlock Stone(Garment): +Increases damage of Crimson Rock by 15%. +-------------------------- +When equipped with Warlock Stone II(Garment): +Increases damage of Jack Frost by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000615# +A stone that awakens the potential of Warlock. +Gives the following effects when compounded on slot of an Costume Lower Headgear. +-------------------------- +For each Level of Chain Lightning: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Warlock Stone(Garment): +Increases damage of Chain Lightning by 15%. +-------------------------- +When equipped with Warlock Stone II(Garment): +Increases damage of Comet by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000616# +A stone that awakens the potential of Royal Guard. +Gives the following effects when compounded on slot of an Costume Lower Headgear. +-------------------------- +For each Level of Inspiration: +Decreases Fixed Casting Time by 0.1 seconds. +-------------------------- +When equipped with Royal Guard Stone(Garment): +Increases damage of Cannon Spear by 15%. +-------------------------- +When equipped with Royal Guard Stone II(Garment): +Increases damage of Genesis Ray by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000617# +A stone that awakens the potential of Royal Guard. +Gives the following effects when compounded on slot of an Costume Middle Headgear. +-------------------------- +For each Level of Piety: +Increases Ranged Physical Damage and Magical Damage with every element by 2%. +-------------------------- +When equipped with Royal Guard Stone(Garment): +Increases damage of Banishing Point by 15%. +-------------------------- +When equipped with Royal Guard Stone II(Garment): +Decreases SP Consumption of Genesis Ray by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000618# +A stone that awakens the potential of Royal Guard. +Gives the following effects when compounded on slot of an Costume Lower Headgear. +-------------------------- +For each Level of Moon Slasher: +Increases damage of Overbrand by 5%. +-------------------------- +When equipped with Royal Guard Stone(Garment): +Increases damage of Cannon Spear by 15%. +-------------------------- +When equipped with Royal Guard Stone II(Garment): +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000635# +To celebrate the 19th Anniversary of Ragnarok Online, we would like to give a small gift to all adventurers, so please find [Jurgen]prontera,167,63,0,101,0,0 in charge of the 19th Anniversary Event! +-------------------------- +Weight: 0 +# +1000636# +A small rune piece that can be obtained from monsters in the Varmundt's Biosphere. +-------------------------- +Weight: 0.1 +# +1000637# +A small rune piece that can be obtained from monsters in the Varmundt's Biosphere. +-------------------------- +Weight: 0.1 +# +1000638# +A small rune piece that can be obtained from monsters in the Varmundt's Biosphere. +-------------------------- +Weight: 0.1 +# +1000639# +A small rune piece that can be obtained from monsters in the Varmundt's Biosphere. +-------------------------- +Weight: 0.1 +# +1000640# +A rune that can be obtained from monsters in the Varmundt's Biosphere. +-------------------------- +Weight: 1 +# +1000641# +A rune that can be obtained from monsters in the Varmundt's Biosphere. +-------------------------- +Weight: 1 +# +1000642# +A rune that can be obtained from monsters in the Varmundt's Biosphere. +-------------------------- +Weight: 1 +# +1000643# +A rune that can be obtained from monsters in the Varmundt's Biosphere. +-------------------------- +Weight: 1 +# +1000644# +Let's get stamps while visiting the Ragfest exhibition hall! You can get a stamp by listening to the description of the work on display in the mini booth. When all stamp cards are filled, they can be exchanged for goods! +-------------------------- +[Stamp HQ]rag_fes,192,128,0,101,0 +-------------------------- +Weight: 0 +# +1000645# +A ticket that grants a Slot Enchantment for Hero's Badge and Hero's Boots-LT. +You can use it by going to [Jeeky]itemmall,31,70,0,100,0,0. +-------------------------- +[Hero's Badge Enchantment] +In the second slot, randomly grants 1 Enchantment among Strength, Fortune, Hit, Intellect, Firmness and Smartness. One Hero's Enchantment Ticket is consumed. +-------------------------- +[Hero's Boots-LT Enchantment] +In the second slot, randomly grants 1 Enchantment among the Warrior's Valor, Swordsman's Sharpness, Sharpshooter's Will, Wise Man's Knowledge, The General's Spirit and Assasin's Spirit. One Hero's Enchantment Ticket is consumed. +-------------------------- +[Enchant Reset] +One Hero's Enchantment Ticket is consumed. Reset Chance: 100%. +-------------------------- +Weight: 0 +# +1000657# +Something that looks like a skein woven by Liril. +How the hell did you hook it up? +-------------------------- +Weight: 0 +# +1000666# +A stone that awakens the potential of Wanderer and Minstrel. +Gives the following effects when compounded on slot of an Costume Upper Headgear. +-------------------------- +For each Level of Lesson: +Decreases Variable Casting Time by 1%. +-------------------------- +When equipped with Wanderer Minstrel Stone(Garment): +Physical attacks have a 2% chance to restore 2% of the damage dealt as SP. +-------------------------- +When equipped with Wanderer Minstrel Stone II(Garment): +Increases damage of Metallic Sound by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000667# +A stone that awakens the potential of Wanderer and Minstrel. +Gives the following effects when compounded on slot of an Costume Middle Headgear. +-------------------------- +For each Level of Circle of Nature: +Decreases Severe Rainstorm and Metallic Sound skill cooldown by 0.1 second. +-------------------------- +When equipped with Wanderer Minstrel Stone(Garment): +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +When equipped with Wanderer Minstrel Stone II(Garment): +Increases Magical Damage with every element by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000668# +A stone that awakens the potential of Wanderer and Minstrel. +Gives the following effects when compounded on slot of an Costume Lower Headgear. +-------------------------- +For each Level of Frigg's Song: +Decreases Fixed Casting Time by 0.1 second. +-------------------------- +When equipped with Wanderer Minstrel Stone(Garment): +Increases damage of Severe Rainstorm by 15%. +-------------------------- +When equipped with Wanderer Minstrel Stone II(Garment): +Increases damage of Reverberation by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000669# +A stone that awakens the potential of Genetic. +Gives the following effects when compounded on slot of an Costume Upper Headgear. +-------------------------- +For each Level of Cart Cannon: +Increases Ranged Physical Damage by 2%. +-------------------------- +When equipped with Genetic Stone(Garment): +Increases damage of Acid Demonstration by 15%. +-------------------------- +When equipped with Genetic Stone II(Garment): +Increases damage of Spore Explosion by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000670# +A stone that awakens the potential of Genetic. +Gives the following effects when compounded on slot of an Costume Middle Headgear. +-------------------------- +For each Level of Cart Remodeling: +Decreases Variable Casting Time by 2%. +-------------------------- +When equipped with Genetic Stone(Garment): +Increases damage of Cart Cannon by 15%. +-------------------------- +When equipped with Genetic Stone II(Garment): +Increases damage of Cart Tornado by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000671# +A stone that awakens the potential of Genetic. +Gives the following effects when compounded on slot of an Costume Lower Headgear. +-------------------------- +For each Level of Sword Training: +Decreases Fixed Casting Time by 0.1 second. +-------------------------- +When equipped with Genetic Stone(Garment): +Increases damage of Acid Demonstration by 15%. +-------------------------- +When equipped with Genetic Stone II(Garment): +Increases damage of Cart Tornado by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000672# +A stone that awakens the potential of Sorcerer. +Gives the following effects when compounded on slot of an Costume Upper Headgear. +-------------------------- +For each Level of Striking: +Decreases Fixed Casting Time by 0.1 second. +-------------------------- +When equipped with Sorcerer Stone(Garment): +Decreases Killing Cloud skill cooldown by 2 seconds. +-------------------------- +When equipped with Sorcerer Stone II(Garment): +Increases damage of Earth Grave by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000673# +A stone that awakens the potential of Sorcerer. +Gives the following effects when compounded on slot of an Costume Middle Headgear. +-------------------------- +For each Level of Diamond Dust: +Decreases Variable Casting Time by 2%. +-------------------------- +When equipped with Sorcerer Stone(Garment): +Increases damage of Psychic Wave by 15%. +-------------------------- +When equipped with Sorcerer Stone II(Garment): +Increases damage of Varetyr Spear by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000674# +A stone that awakens the potential of Sorcerer. +Gives the following effects when compounded on slot of an Costume Lower Headgear. +-------------------------- +For each Level of Earth Grave: +Increases Magical Damage with every element by 2%. +-------------------------- +When equipped with Sorcerer Stone(Garment): +Increases damage of Poison Buster by 15%. +-------------------------- +When equipped with Sorcerer Stone II(Garment): +Increases damage of Diamond Dust by 15%. +-------------------------- +[Aver De Dosh]mal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000675# +A stone that decreases After Skill Delay. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +Decreases After Skill Delay by 5%. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000676# +A stone that increases creativity. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +CRT +5 +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000678# +An item that grants enchantments to various Poring Balloons that come out of the Poring Capsule. +You can use it by going to [Jeeky]itemmall,31,70,0,100,0,0. +-------------------------- +[Target Items] +Poring Balloon +Marin Balloon +Drops Balloon +Santa Poring Balloon +Poporing Balloon +Metalring Balloon +Devilring Balloon +Angelring Balloon +Ghostring Balloon +Arch Angelring Balloon +-------------------------- +[4th Slot Enchantment] +P.ATK Lv1 S.MATK Lv1 ATK Lv1 MATK Lv1 MaxHP Lv1 or MaxSP Lv1 will be enchanted. +-------------------------- +[3rd Slot Enchantment] +Formless Blessing, Undead Blessing, Brute Blessing, Plant Blessing, Insect Blessing, Fish Blessing, Demon Blessing, Demi-Human Blessing, Angel Blessing, Dragon Blessing or Rune Midgart's Blessing will be enchanted randomly. One Poring Balloon Enchantment Ticket is consumed. +-------------------------- +[Enchantment Reset] +500,000 Zeny is consumed. 100% Reset Chance. +-------------------------- +Weight: 0 +# +1000680# +A piece of metal that looked like it had fallen out of an old machine. +-------------------------- +Weight: 0 +# +1000681# +A piece of metal that looked like it had fallen out of an old machine. +It is in relatively good shape. +-------------------------- +Weight: 0 +# +1000684# +To the adventurers of the Expanded Jobs which have achieved Base Level 200, we would like to inform you of the location where you can change to the next tier for your job. +Requirement: Base Level 200, Max Job Level +-------------------------- +[Location for Job Changes] +Rebellion to [Night Watch]einbroch,313,324,0,100,0,0 +Star Emperor to [Sky Emperor]payon,213,202,0,100,0,0 +Soul Reaper to [Soul Ascetic]payon,197,119,0,100,0,0 +Kagerou/Oboro to [Shinkiro/Shiranui]amatsu,82,118,0,100,0,0 +Summoner to [Spirit Handler]payon,165,116,0,100,0,0 +Super Novice to [Hyper Novice]aldebaran,110,70,0,100,0,0 +-------------------------- +Weight: 0 +# +1000685# +A drawing needed to purify and reassemble the Adulter Fides Huuma Shuriken. +-------------------------- +Weight: 0 +# +1000686# +A drawing needed to purify and reassemble the Adulter Fides Cross-Shaped Huuma Shuriken. +-------------------------- +Weight: 0 +# +1000687# +A drawing needed to purify and reassemble the Adulter Fides Revolver. +-------------------------- +Weight: 0 +# +1000688# +A drawing needed to purify and reassemble the Adulter Fides Shotgun. +-------------------------- +Weight: 0 +# +1000689# +A drawing needed to purify and reassemble the Adulter Fides Rifle. +-------------------------- +Weight: 0 +# +1000690# +A drawing needed to purify and reassemble the Adulter Fides Gatling Gun. +-------------------------- +Weight: 0 +# +1000691# +A drawing needed to purify and reassemble the Adulter Fides Launcher. +-------------------------- +Weight: 0 +# +1000692# +A drawing needed to purify and reassemble the Adulter Fides Moon Book. +-------------------------- +Weight: 0 +# +1000693# +A drawing needed to purify and reassemble the Adulter Fides Stardust Book. +-------------------------- +Weight: 0 +# +1000694# +A drawing needed to purify and reassemble the Adulter Fides Soul Stick. +-------------------------- +Weight: 0 +# +1000695# +A drawing needed to purify and reassemble the Adulter Fides Dark Wand. +-------------------------- +Weight: 0 +# +1000696# +A drawing needed to purify and reassemble the Adulter Fides Foxtail Wand. +-------------------------- +Weight: 0 +# +1000697# +A drawing needed to purify and reassemble the Adulter Fides Foxtail Model. +-------------------------- +Weight: 0 +# +1000698# +An item that grants enchantments to various Young Leaf of World Trees. +You can use it by going to [Jeeky]itemmall,31,70,0,100,0,0. +-------------------------- +[Target Items] +Young Leaf of World Tree(Str) +Young Leaf of World Tree(Dex) +Young Leaf of World Tree(Luk) +Young Leaf of World Tree(Agi) +Young Leaf of World Tree(Vit) +Young Leaf of World Tree(Int) +-------------------------- +[3rd Slot Enchantment] +After Attack Delay Lv1~2, Spell, ATK, MATK, MaxHP or MaxSP will be enchanted randomly on the 3rd slot. Additionally, DelayAfterAttack or Spell can be upgraded to Lv2. One Young Leaf of World Tree Enchantment Ticket will be consumed. +-------------------------- +[2nd Slot Enchantment] +One of Lv1~2 POW, WIS, SPL, STA, CRT, CON, H.PLUS, C.RATE, P.ATK, S.MATK is randomly enchanted on the 2nd slot. Additionally, Lv1 Enchantments can be upgraded to Lv2. One Young Leaf of World Tree Enchantment Ticket will be consumed. +-------------------------- +[Enchantment Reset] +500,000 Zeny is consumed. 100% Reset Chance. +-------------------------- +Weight: 0 +# +1000705# +A magic core that can be obtained by killing Rgan. The magical power absorbed from Jormungand was crystallized. This magic core contains quite a bit of high-quality magic. +-------------------------- +Weight: 0 +# +1000706# +A Rgan's Magic Core that has been purified so that only pure magic remains. It is used as fuel for life in the ice castle. The magic core purified by a special method cannot be absorbed by Rgan. +# +1000707# +A magic core that can be obtained by killing Rgan. The magical power absorbed from Jormungand was crystallized. This magic core contains only a very small amount of magic power, and the efficiency is not good. +-------------------------- +Weight: 1 +# +1000708# +Very cold frozen meat. +Used as food for Irwin. +Will it be baked? +-------------------------- +Weight: 0 +# +1000709# +A bundle of snow that fell cleanly. +Be careful not to melt it. +-------------------------- +Weight: 0 +# +1000711# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +STR +3 + +Refine Level +7: +STR +1 + +Refine Level +9: +STR +1 + +Refine Level +11: +POW +1 +Increases Melee Physical Damage by 3%. +-------------------------- +[Enchantable Equipment] +Snow Flower Manteau(4th Slot) +Snow Flower Muffler(4th Slot) +Snow Flower Pendant(4th Slot) +Snow Flower Necklace(4th Slot) +-------------------------- +Weight: 0 +# +1000712# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +DEX +3 + +Refine Level +7: +DEX +1 + +Refine Level +9: +DEX +1 + +Refine Level +11: +CON +1 +Increases Ranged Physical Damage by 3%. +-------------------------- +[Enchantable Equipment] +Snow Flower Manteau(4th Slot) +Snow Flower Muffler(4th Slot) +Snow Flower Pendant(4th Slot) +Snow Flower Necklace(4th Slot) +-------------------------- +Weight: 0 +# +1000713# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +AGI +3 + +Refine Level +7: +AGI +1 + +Refine Level +9: +AGI +1 + +Refine Level +11: +WIS +1 +Perfect HIT +3 +-------------------------- +[Enchantable Equipment] +Snow Flower Manteau(4th Slot) +Snow Flower Muffler(4th Slot) +Snow Flower Ring(4th Slot) +Snow Flower Earring(4th Slot) +-------------------------- +Weight: 0 +# +1000714# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +INT +3 + +Refine Level +7: +INT +1 + +Refine Level +9: +INT +1 + +Refine Level +11: +SPL +1 +Increases Magical Damage with every element by 3%. +-------------------------- +[Enchantable Equipment] +Snow Flower Manteau(4th Slot) +Snow Flower Muffler(4th Slot) +Snow Flower Pendant(4th Slot) +Snow Flower Necklace(4th Slot) +-------------------------- +Weight: 0 +# +1000715# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +VIT +3 + +Refine Level +7: +VIT +1 + +Refine Level +9: +VIT +1 + +Refine Level +11: +STA +1 +Decreases After Skill Delay by 3%. +-------------------------- +[Enchantable Equipment] +Snow Flower Manteau(4th Slot) +Snow Flower Muffler(4th Slot) +Snow Flower Ring(4th Slot) +Snow Flower Earring(4th Slot) +-------------------------- +Weight: 0 +# +1000716# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +LUK +3 + +Refine Level +7: +LUK +1 + +Refine Level +9: +LUK +1 + +Refine Level +11: +CRT +1 +Increases Critical Damage by 3%. +-------------------------- +[Enchantable Equipment] +Snow Flower Manteau(4th Slot) +Snow Flower Muffler(4th Slot) +Snow Flower Ring(4th Slot) +Snow Flower Earring(4th Slot) +-------------------------- +Weight: 0 +# +1000717# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +DEF +250, RES +50 + +Refine Level +7: +DEF +75, RES +10 + +Refine Level +9: +DEF +100, RES +10 + +Refine Level +11: +DEF +100, RES +10 +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(4th Slot) +Snow Flower Robe(4th Slot) +Snow Flower Manteau(4th Slot) +Snow Flower Muffler(4th Slot) +Snow Flower Boots(4th Slot) +Snow Flower Shoes(4th Slot) +-------------------------- +Weight: 0 +# +1000718# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +MDEF +25, MRES +25 + +Refine Level +7: +MDEF +7, MRES +5 + +Refine Level +9: +MDEF +10, MRES +5 + +Refine Level +11: +MDEF +10, MRES +5 +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(4th Slot) +Snow Flower Robe(4th Slot) +Snow Flower Manteau(4th Slot) +Snow Flower Muffler(4th Slot) +Snow Flower Boots(4th Slot) +Snow Flower Shoes(4th Slot) +-------------------------- +Weight: 0 +# +1000719# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +ATK +6%, ATK +100 + +Refine Level +7: +Increases Ranged Physical Damage by 5%. + +Refine Level +9: +Increases Ranged Physical Damage by additional 5%. + +Refine Level +11: +Increases Ranged Physical Damage by additional 5%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(3rd Slot) +Snow Flower Robe(3rd Slot) +-------------------------- +Weight: 0 +# +1000720# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +ATK +6%, ATK +100. + +Refine Level +7: +Increases Melee Physical Damage by 5%. + +Refine Level +9: +Increases Melee Physical Damage by additional 5%. + +Refine Level +11: +Increases Melee Physical Damage by additional 5%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(3rd Slot) +Snow Flower Robe(3rd Slot) +-------------------------- +Weight: 0 +# +1000721# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +MATK +6%, MATK +100. + +Refine Level +7: +Increases Magical Damage with every element by 5%. + +Refine Level +9: +Increases Magical Damage with every element by additional 5%. + +Refine Level +11: +Increases Magical Damage with every element by additional 5%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(3rd Slot) +Snow Flower Robe(3rd Slot) +-------------------------- +Weight: 0 +# +1000722# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Decreases damage taken from reflected damage by 4%. + +Refine Level +7: +Decreases damage taken from reflected damage by additional 4%. + +Refine Level +9: +Decreases damage taken from reflected damage by additional 4%. + +Refine Level +11: +Decreases damage taken from reflected damage by additional 4%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(3rd Slot) +Snow Flower Robe(3rd Slot) +-------------------------- +Weight: 0 +# +1000723# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +ATK +2%, MATK +2% + +Refine Level +7: +ATK +2%, MATK +2% + +Refine Level +9: +ATK +2%, MATK +2% + +Refine Level +11: +ATK +4%, MATK +4% +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(3rd Slot) +Snow Flower Robe(3rd Slot) +-------------------------- +Weight: 0 +# +1000724# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Decreases After Skill Delay by 4%. + +Refine Level +7: +Decreases After Skill Delay by additional 4%. + +Refine Level +9: +Decreases After Skill Delay by additional 4%. + +Refine Level +11: +Decreases After Skill Delay by additional 4%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(3rd Slot) +Snow Flower Robe(3rd Slot) +-------------------------- +Weight: 0 +# +1000725# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +FLEE +30 + +Refine Level +7: +Increases Attack Speed (Decreases After Attack Delay by 8%). + +Refine Level +9: +Increases Attack Speed (Decreases After Attack Delay by additional 8%). + +Refine Level +11: +Increases Attack Speed (Decreases After Attack Delay by additional 8%). +-------------------------- +[Enchantable Equipment] +Snow Flower Manteau(3rd Slot) +Snow Flower Muffler(3rd Slot) +-------------------------- +Weight: 0 +# +1000726# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +MATK +30 +Decreases Variable Casting Time by 8%. + +Refine Level +7: +Decreases Variable Casting Time by additional 8%. + +Refine Level +9: +Decreases Variable Casting Time by additional 8%. + +Refine Level +11: +Decreases Variable Casting Time by additional 8%. +-------------------------- +[Enchantable Equipment] +Snow Flower Manteau(3rd Slot) +Snow Flower Muffler(3rd Slot) +-------------------------- +Weight: 0 +# +1000727# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Critical +15 + +Refine Level +7: +Increases Critical Damage by 8%. + +Refine Level +9: +Increases Critical Damage by additional 8%. + +Refine Level +11: +Increases Critical Damage by additional 8%. +-------------------------- +[Enchantable Equipment] +Snow Flower Manteau(3rd Slot) +Snow Flower Muffler(3rd Slot) +-------------------------- +Weight: 0 +# +1000728# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +HIT +30 + +Refine Level +7: +Perfect HIT +8% + +Refine Level +9: +Perfect HIT +8% + +Refine Level +11: +Perfect HIT +8% +-------------------------- +[Enchantable Equipment] +Snow Flower Manteau(3rd Slot) +Snow Flower Muffler(3rd Slot) +-------------------------- +Weight: 0 +# +1000729# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Decreases damage taken from Normal and Boss class monsters by 7%. + +Refine Level +7: +Decreases damage taken from monsters of every element by 7%. + +Refine Level +9: +Decreases damage taken from monsters of every size by 7%. + +Refine Level +11: +Decreases damage taken from monsters of every race, except Players, by 7%. +-------------------------- +[Enchantable Equipment] +Snow Flower Manteau(2nd Slot) +Snow Flower Muffler(2nd Slot) +-------------------------- +Weight: 0 +# +1000730# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases Melee and Ranged Physical Damage by 3%. +Increases Magical Damage with every element by 3%. + +Refine Level +7: +Increases Melee and Ranged Physical Damage by additional 3%. +Increases Magical Damage with every element by additional 3%. + +Refine Level +9: +Increases Melee and Ranged Physical Damage by additional 3%. +Increases Magical Damage with every element by additional 3%. + +Refine Level +11: +Increases Melee and Ranged Physical Damage by additional 3%. +Increases Magical Damage with every element by additional 3%. +-------------------------- +[Enchantable Equipment] +Snow Flower Manteau(2nd Slot) +Snow Flower Muffler(2nd Slot) +-------------------------- +Weight: 0 +# +1000731# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Decreases damage taken from reflected damage by 4%. + +Refine Level +7: +Decreases damage taken from reflected damage by additional 4%. + +Refine Level +9: +Decreases damage taken from reflected damage by additional 5%. + +Refine Level +11: +Decreases damage taken from reflected damage by additional 5%. +-------------------------- +[Enchantable Equipment] +Snow Flower Manteau(2nd Slot) +Snow Flower Muffler(2nd Slot) +-------------------------- +Weight: 0 +# +1000732# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +MaxHP +5%, MaxHP +2500 + +Refine Level +7: +MaxHP +5% + +Refine Level +9: +MaxHP +5% + +Refine Level +11: +MaxHP +5% +-------------------------- +[Enchantable Equipment] +Snow Flower Boots(4th Slot) +Snow Flower Shoes(4th Slot) +-------------------------- +Weight: 0 +# +1000733# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +MaxSP +5%, MaxSP +450 + +Refine Level +7: +MaxSP +5% + +Refine Level +9: +MaxSP +5% + +Refine Level +11: +MaxSP +5% +-------------------------- +[Enchantable Equipment] +Snow Flower Boots(4th Slot) +Snow Flower Shoes(4th Slot) +-------------------------- +Weight: 0 +# +1000734# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases Healing skills effectiveness by 5%. + +Refine Level +7: +Increases Healing skills effectiveness by additional 5%. + +Refine Level +9: +Increases Healing skills effectiveness by additional 7%. + +Refine Level +11: +Increases Healing skills effectiveness by additional 7%. +-------------------------- +[Enchantable Equipment] +Snow Flower Boots(4th Slot) +Snow Flower Shoes(4th Slot) +-------------------------- +Weight: 0 +# +1000735# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +MaxHP +5%, MaxSP +5%, MaxHP +2000, MaxSP +350 + +Refine Level +7: +MaxHP +3%, MaxSP +3% + +Refine Level +9: +MaxHP +4%, MaxSP +4% + +Refine Level +11: +MaxHP +5%, MaxSP +5% +-------------------------- +[Enchantable Equipment] +Snow Flower Boots(4th Slot) +Snow Flower Shoes(4th Slot) +-------------------------- +Weight: 0 +# +1000736# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Decreases Fixed Casting Time by 1 second. +-------------------------- +[Enchantable Equipment] +Snow Flower Boots(3rd Slot) +Snow Flower Shoes(3rd Slot) +-------------------------- +Weight: 0 +# +1000737# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases Magical Damage against enemies of every size by 4%. + +Refine Level +7: +Increases Magical Damage against enemies of every size by additional 4%. + +Refine Level +9: +Increases Magical Damage against enemies of every size by additional 4%. + +Refine Level +11: +Increases Magical Damage against enemies of every size by additional 4%. +-------------------------- +[Enchantable Equipment] +Snow Flower Boots(3rd Slot) +Snow Flower Shoes(3rd Slot) +-------------------------- +Weight: 0 +# +1000738# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases Physical Damage against enemies of every size by 4%. + +Refine Level +7: +Increases Physical Damage against enemies of every size by additional 4%. + +Refine Level +9: +Increases Physical Damage against enemies of every size by additional 4%. + +Refine Level +11: +Increases Physical Damage against enemies of every size by additional 4%. +-------------------------- +[Enchantable Equipment] +Snow Flower Boots(3rd Slot) +Snow Flower Shoes(3rd Slot) +-------------------------- +Weight: 0 +# +1000739# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Physical attacks have a 3% chance to increase VIT by 50 and ATK by 25% for 10 seconds. +-------------------------- +[Enchantable Equipment] +Snow Flower Boots(2nd Slot) +Snow Flower Shoes(2nd Slot) +-------------------------- +Weight: 0 +# +1000740# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Magical attacks have a 3% chance to increase INT by 50 and MATK by 25% for 10 seconds. +-------------------------- +[Enchantable Equipment] +Snow Flower Boots(2nd Slot) +Snow Flower Shoes(2nd Slot) +-------------------------- +Weight: 0 +# +1000741# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Physical attacks have a 3% chance to increase DEX by 50 and Ranged Physical Damage by 15% for 10 seconds. +-------------------------- +[Enchantable Equipment] +Snow Flower Boots(2nd Slot) +Snow Flower Shoes(2nd Slot) +-------------------------- +Weight: 0 +# +1000742# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Physical attacks have a 3% chance to increase STR by 50 and Melee Physical Damage by 15% for 10 seconds. +-------------------------- +[Enchantable Equipment] +Snow Flower Boots(2nd Slot) +Snow Flower Shoes(2nd Slot) +-------------------------- +Weight: 0 +# +1000743# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Physical attacks have a 3% chance to increase AGI by 50 and Critical Damage by 25% for 10 seconds. +-------------------------- +[Enchantable Equipment] +Snow Flower Boots(2nd Slot) +Snow Flower Shoes(2nd Slot) +-------------------------- +Weight: 0 +# +1000744# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Magical attacks have a 3% chance to increase LUK by 50 and Magical Damage with every element by 15% for 10 seconds. +-------------------------- +[Enchantable Equipment] +Snow Flower Boots(2nd Slot) +Snow Flower Shoes(2nd Slot) +-------------------------- +Weight: 0 +# +1000745# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +ATK +30 +Increases Attack Speed (Decreases After Attack Delay by 10%). +-------------------------- +[Enchantable Equipment] +Snow Flower Pendant(2nd Slot) +Snow Flower Necklace(2nd Slot) +Snow Flower Ring(2nd Slot) +Snow Flower Earring(2nd Slot) +-------------------------- +Weight: 0 +# +1000746# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +HIT +20 +Increases Ranged Physical Damage by 10%. +-------------------------- +[Enchantable Equipment] +Snow Flower Pendant(2nd Slot) +Snow Flower Necklace(2nd Slot) +Snow Flower Ring(2nd Slot) +Snow Flower Earring(2nd Slot) +-------------------------- +Weight: 0 +# +1000747# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Critical +15 +Increases Critical Damage by 12%. +-------------------------- +[Enchantable Equipment] +Snow Flower Pendant(2nd Slot) +Snow Flower Necklace(2nd Slot) +Snow Flower Ring(2nd Slot) +Snow Flower Earring(2nd Slot) +-------------------------- +Weight: 0 +# +1000748# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Perfect HIT +5% +Increases Melee Physical Damage by 10%. +-------------------------- +[Enchantable Equipment] +Snow Flower Pendant(2nd Slot) +Snow Flower Necklace(2nd Slot) +Snow Flower Ring(2nd Slot) +Snow Flower Earring(2nd Slot) +-------------------------- +Weight: 0 +# +1000749# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +MATK +30 +Decreases Variable Casting Time by 10%. +-------------------------- +[Enchantable Equipment] +Snow Flower Pendant(2nd Slot) +Snow Flower Necklace(2nd Slot) +Snow Flower Ring(2nd Slot) +Snow Flower Earring(2nd Slot) +-------------------------- +Weight: 0 +# +1000750# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases HP Recovery Rate by 50%. +-------------------------- +[Enchantable Equipment] +Snow Flower Pendant(3rd Slot) +Snow Flower Necklace(3rd Slot) +-------------------------- +Weight: 0 +# +1000751# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases SP Recovery Rate by 50%. +-------------------------- +[Enchantable Equipment] +Snow Flower Ring(3rd Slot) +Snow Flower Earring(3rd Slot) +-------------------------- +Weight: 0 +# +1000752# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Physical attacks have a 2% chance to absorb 4% of the inflicted damage as HP. +-------------------------- +[Enchantable Equipment] +Snow Flower Pendant(3rd Slot) +Snow Flower Necklace(3rd Slot) +-------------------------- +Weight: 0 +# +1000753# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Physical attacks have a 1% chance to absorb 3% of the inflicted damage as SP. +-------------------------- +[Enchantable Equipment] +Snow Flower Ring(3rd Slot) +Snow Flower Earring(3rd Slot) +-------------------------- +Weight: 0 +# +1000754# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Magical attacks have a 4% chance to recover 700 HP every 0.5 seconds for 19 times. +-------------------------- +[Enchantable Equipment] +Snow Flower Pendant(3rd Slot) +Snow Flower Necklace(3rd Slot) +-------------------------- +Weight: 0 +# +1000755# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Magical attacks have a 2% chance to recover 100 SP every 0.5 seconds for 19 times. +-------------------------- +[Enchantable Equipment] +Snow Flower Ring(3rd Slot) +Snow Flower Earring(3rd Slot) +-------------------------- +Weight: 0 +# +1000756# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases Melee and Ranged Physical Damage by 7%. +Increases Magical Damage with every element by 7%. +-------------------------- +[Enchantable Equipment] +Snow Flower Pendant(3rd Slot) +Snow Flower Necklace(3rd Slot) +Snow Flower Ring(3rd Slot) +Snow Flower Earring(3rd Slot) +-------------------------- +Weight: 0 +# +1000757# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Dragon Breath and Dragon Breath - Water by 15%. + +Refine Level +7: +Increases damage of Dragon Breath and Dragon Breath - Water by additional 15%. + +Refine Level +9: +Increases damage of Dragon Breath and Dragon Breath - Water by additional 15%. + +Refine Level +11: +Increases damage of Dragon Breath, Dragon Breath - Water by additional 15%. +Increases damage of Hack and Slasher by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000758# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Wind Cutter and Ignition Break by 15%. + +Refine Level +7: +Increases damage of Wind Cutter and Ignition Break by additional 15%. + +Refine Level +9: +Increases damage of Wind Cutter and Ignition Break by additional 15%. + +Refine Level +11: +Increases damage of Wind Cutter by additional 15%. +Decreases Ignition Break skill cooldown by 0.5 seconds. +Increases damage of Storm Slash by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000759# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Sonic Wave and Hundred Spear by 15%. + +Refine Level +7: +Increases damage of Sonic Wave and Hundred Spear by additional 15%. + +Refine Level +9: +Increases damage of Sonic Wave and Hundred Spear by additional 15%. + +Refine Level +11: +Increases damage of Sonic Wave by additional 15%. +Decreases Hundred Spear skill cooldown by 0.5 seconds. +Increases damage of Madness Crusher by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000760# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Overbrand and Hesperus Lit by 15%. + +Refine Level +7: +Increases damage of Overbrand and Hesperus Lit by additional 15%. + +Refine Level +9: +Increases damage of Overbrand and Hesperus Lit by additional 15%. + +Refine Level +11: +Increases damage of Overbrand and Hesperus Lit by additional 15%. +Increases damage of Overslash by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000761# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Banishing Point and Cannon Spear by 15%. + +Refine Level +7: +Increases damage of Banishing Point and Cannon Spear by additional 15%. + +Refine Level +9: +Increases damage of Banishing Point and Cannon Spear by additional 15%. + +Refine Level +11: +Increases damage of Banishing Point and Cannon Spear by additional 15%. +Increases damage of Shield Shooting by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000762# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Pressure and Genesis Ray by 15%. + +Refine Level +7: +Increases damage of Pressure and Genesis Ray by additional 15%. + +Refine Level +9: +Increases damage of Pressure and Genesis Ray by additional 15%. + +Refine Level +11: +Increases damage of Pressure and Genesis Ray by additional 15%. +Increases damage of Cross Rain by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000763# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Knuckle Boost and Arms Cannon by 15%. + +Refine Level +7: +Increases damage of Knuckle Boost and Arms Cannon by additional 15%. + +Refine Level +9: +Increases damage of Knuckle Boost and Arms Cannon by additional 15%. + +Refine Level +11: +Increases damage of Knuckle Boost and Arms Cannon by additional 15%. +Decreases ABR - Dual Cannon skill cooldown by 5 seconds. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000764# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Vulcan Arm and Axe Boomerang by 15%. + +Refine Level +7: +Increases damage of Vulcan Arm and Axe Boomerang by additional 15%. + +Refine Level +9: +Increases damage of Vulcan Arm and Axe Boomerang by additional 15%. + +Refine Level +11: +Increases damage of Vulcan Arm and Axe Boomerang by additional 15%. +Decreases Axe Boomerang skill cooldown by 2 seconds. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000765# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Axe Tornado and Power Swing by 15%. + +Refine Level +7: +Increases damage of Axe Tornado and Power Swing by additional 15%. + +Refine Level +9: +Increases damage of Axe Tornado and Power Swing by additional 15%. + +Refine Level +11: +Increases damage of Axe Tornado and Power Swing by additional 15%. +Increases damage of Axe Stomp by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000766# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Cart Tornado and Hell's Plant by 15%. + +Refine Level +7: +Increases damage of Cart Tornado and Hell's Plant by additional 15%. + +Refine Level +9: +Increases damage of Cart Tornado and Hell's Plant by additional 15%. + +Refine Level +11: +Increases damage of Cart Tornado and Hell's Plant by additional 15%. +Increases damage of Acidified Zone (Water/Wind) by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000767# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Crazy Weed and Cart Cannon by 15%. + +Refine Level +7: +Increases damage of Crazy Weed and Cart Cannon by additional 15%. + +Refine Level +9: +Increases damage of Crazy Weed and Cart Cannon by additional 15%. + +Refine Level +11: +Increases damage of Crazy Weed and Cart Cannon by additional 15%. +Decreases Crazy Weed skill cooldown by 1.5 seconds. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000768# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Acid Demonstration and Spore Explosion by 15%. + +Refine Level +7: +Increases damage of Acid Demonstration and Spore Explosion by additional 25%. + +Refine Level +9: +Decreases Spore Explosion skill cooldown by 2 seconds. + +Refine Level +11: +Increases damage of Acid Demonstration and Spore Explosion by additional 20%. +Increases damage of Acidified Zone (Fire/Ground) by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000769# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Sonic Blow and Cross Impact by 15%. + +Refine Level +7: +Increases damage of Sonic Blow and Cross Impact by additional 15%. + +Refine Level +9: +Increases damage of Sonic Blow and Cross Impact by additional 15%. + +Refine Level +11: +Increases damage of Sonic Blow and Cross Impact by additional 15%. +Increases damage of Savage Impact by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000770# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Cross Ripper Slasher and Rolling Cutter by 15%. + +Refine Level +7: +Increases damage of Cross Ripper Slasher and Rolling Cutter by additional 15%. + +Refine Level +9: +Increases damage of Cross Ripper Slasher and Rolling Cutter by additional 15%. + +Refine Level +11: +Increases damage of Cross Ripper Slasher and Rolling Cutter by additional 15%. +Increases damage of Impact Crater by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000771# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Soul Destroyer and Counter Slash by 15%. + +Refine Level +7: +Increases damage of Soul Destroyer and Counter Slash by additional 15%. + +Refine Level +9: +Increases damage of Soul Destroyer and Counter Slash by additional 15%. + +Refine Level +11: +Increases damage of Soul Destroyer and Counter Slash by additional 15%. +Increases damage of Eternal Slash by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000772# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Fatal Menace and Raid by 15%. + +Refine Level +7: +Increases damage of Fatal Menace and Raid by additional 15%. + +Refine Level +9: +Increases damage of Fatal Menace and Raid by additional 15%. + +Refine Level +11: +Increases damage of Fatal Menace and Raid by additional 15%. +Increases damage of Abyss Dagger by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000773# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases Magical Damage of every element by 15%. + +Refine Level +7: +Increases Magical Damage of every element by additional 15%. + +Refine Level +9: +Increases Magical Damage of every element by additional 15%. + +Refine Level +11: +Increases Magical Damage of every element by additional 15%. +Increases damage of Abyss Square by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000774# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Triangle Shot by 15%. +Increases Ranged Physical Damage by 5%. + +Refine Level +7: +Increases damage of Triangle Shot by additional 15%. +Increases Ranged Physical Damage by additional 10%. + +Refine Level +9: +Increases damage of Triangle Shot by additional 15%. +Increases Ranged Physical Damage by additional 10%. + +Refine Level +11: +Increases damage of Triangle Shot by additional 15%. +Increases Ranged Physical Damage by additional 15%. +Increases damage of Frenzy Shot by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000775# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Crimson Rock and Earth Strain by 15%. + +Refine Level +7: +Increases damage of Crimson Rock and Earth Strain by additional 15%. + +Refine Level +9: +Increases damage of Crimson Rock and Earth Strain by additional 15%. + +Refine Level +11: +Increases damage of Crimson Rock and Earth Strain by additional 15%. +Increases damage of Crimson Arrow and Rock Down by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000776# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Jack Frost and Chain Lightning by 15%. + +Refine Level +7: +Increases damage of Jack Frost and Chain Lightning by additional 15%. + +Refine Level +9: +Increases damage of Jack Frost and Chain Lightning by additional 15%. + +Refine Level +11: +Increases damage of Jack Frost and Chain Lightning by additional 15%. +Increases damage of Frozen Slash and Storm Cannon by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000777# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Comet and Soul Expansion by 15%. + +Refine Level +7: +Increases damage of Comet and Soul Expansion by additional 15%. + +Refine Level +9: +Increases damage of Comet and Soul Expansion by additional 15%. +Decreases Telekinesis Intense skill cooldown by 30 seconds. + +Refine Level +11: +Increases damage of Comet and Soul Expansion by additional 15%. +Increases damage of Soul Vulcan Strike and Mystery Illusion by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000778# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Killing Cloud and Poison Buster by 15%. + +Refine Level +7: +Increases damage of Killing Cloud and Poison Buster by additional 15%. + +Refine Level +9: +Increases damage of Killing Cloud and Poison Buster by additional 15%. +Decreases Poison Buster skill cooldown by 0.5 seconds. + +Refine Level +11: +Increases damage of Killing Cloud and Poison Buster by additional 15%. +Increases damage of Venom Swamp by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000779# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Varetyr Spear and Psychic Wave by 15%. + +Refine Level +7: +Increases damage of Varetyr Spear and Psychic Wave by additional 15%. + +Refine Level +9: +Increases damage of Varetyr Spear and Psychic Wave by additional 15%. + +Refine Level +11: +Increases damage of Varetyr Spear and Psychic Wave by additional 15%. +Increases damage of Conflagration and Lightning Land by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000780# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Diamond Dust and Earth Grave by 15%. + +Refine Level +7: +Increases damage of Diamond Dust and Earth Grave by additional 15%. + +Refine Level +9: +Increases damage of Diamond Dust and Earth Grave by additional 15%. + +Refine Level +11: +Increases damage of Diamond Dust and Earth Grave by additional 15%. +Increases damage of Diamond Storm and Terra Drive by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000781# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Magnus Exorcismus and Adoramus by 15%. + +Refine Level +7: +Increases damage of Magnus Exorcismus and Adoramus by additional 15%. + +Refine Level +9: +Increases damage of Magnus Exorcismus and Adoramus by additional 15%. + +Refine Level +11: +Increases damage of Magnus Exorcismus and Adoramus by additional 15%. +Increases damage of Arbitrium by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000782# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Judex by 15%. +Increases Magical Damage with Holy element by 5%. + +Refine Level +7: +Increases damage of Judex by additional 15%. +Increases Magical Damage with Holy element by additional 10%. + +Refine Level +9: +Increases damage of Judex by additional 15%. +Increases Magical Damage with Holy element by additional 10%. + +Refine Level +11: +Increases damage of Judex by additional 15%. +Increases Magical Damage with Holy element by additional 15%. +Increases damage of Framen by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000783# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Duple Light by 15%. +Increases Melee and Ranged Physical Damage by 5%. + +Refine Level +7: +Increases damage of Duple Light by additional 15%. +Increases Melee and Ranged Physical Damage by additional 10%. + +Refine Level +9: +Increases damage of Duple Light by additional 15%. +Increases Melee and Ranged Physical Damage by additional 10%. + +Refine Level +11: +Increases damage of Duple Light by additional 15%. +Increases Melee and Ranged Physical Damage by additional 15%. +Increases damage of Petitio by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000784# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Tiger Cannon and Fallen Empire by 15%. + +Refine Level +7: +Increases damage of Tiger Cannon and Fallen Empire by additional 15%. + +Refine Level +9: +Increases damage of Tiger Cannon and Fallen Empire by additional 15%. + +Refine Level +11: +Increases damage of Tiger Cannon and Fallen Empire by additional 15%. +Increases damage of Third Flame Bomb by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000785# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Rampage Blaster and Ride in Lightning by 15%. + +Refine Level +7: +Increases damage of Rampage Blaster and Ride in Lightning by additional 15%. + +Refine Level +9: +Increases damage of Rampage Blaster and Ride in Lightning by additional 15%. + +Refine Level +11: +Increases damage of Ride in Lightning by additional 15%. +Decreases Rampage Blaster skill cooldown by 0.5 seconds. +Increases damage of Explosion Blaster by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000786# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Gate of Hell and Knuckle Arrow by 15%. + +Refine Level +7: +Increases damage of Gate of Hell and Knuckle Arrow by additional 15%. + +Refine Level +9: +Increases damage of Gate of Hell and Knuckle Arrow by additional 15%. + +Refine Level +11: +Increases damage of Gate of Hell and Knuckle Arrow by additional 15%. +Increases damage of Third Punish by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000787# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Aimed Bolt by 15%. + +Refine Level +7: +Increases damage of Aimed Bolt by additional 15%. + +Refine Level +9: +Increases damage of Aimed Bolt by additional 15%. + +Refine Level +11: +Increases damage of Aimed Bolt by additional 15%. +Increases damage of Hawk Rush by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000788# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Sharp Shooting by 15%. +Increases Critical Damage by 10%. + +Refine Level +7: +Increases damage of Sharp Shooting by additional 15%. +Increases Critical Damage by additional 10%. + +Refine Level +9: +Increases damage of Sharp Shooting by additional 15%. +Increases Critical Damage by additional 15%. + +Refine Level +11: +Increases damage of Sharp Shooting by additional 15%. +Increases Critical Damage by additional 15%. +Increases damage of Crescive Bolt by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000789# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Arrow Storm by 15%. + +Refine Level +7: +Increases damage of Arrow Storm by additional 15%. + +Refine Level +9: +Increases damage of Arrow Storm by additional 15%. + +Refine Level +11: +Increases damage of Arrow Storm by additional 15%. +Increases damage of Gale Storm by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000790# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Metallic Sound and Reverberation by 15%. + +Refine Level +7: +Increases damage of Metallic Sound and Reverberation by additional 10%. + +Refine Level +9: +Increases damage of Metallic Sound and Reverberation by additional 10%. + +Refine Level +11: +Increases damage of Metallic Sound and Reverberation by additional 15%. +Increases damage of Metallic Fury by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000791# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Severe Rainstorm by 15%. + +Refine Level +7: +Increases damage of Severe Rainstorm by additional 15%. + +Refine Level +9: +Increases damage of Severe Rainstorm by additional 15%. + +Refine Level +11: +Increases damage of Severe Rainstorm by additional 15%. +Increases damage of Rose Bloosom by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000792# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Arrow Vulcan by 20%. + +Refine Level +7: +Increases damage of Arrow Vulcan by additional 20%. + +Refine Level +9: +Increases damage of Arrow Vulcan by additional 20%. + +Refine Level +11: +Increases damage of Arrow Vulcan by additional 20%. +Increases damage of Rhythm Shooting by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000793# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Prominence Kick and Solar Burst by 15%. + +Refine Level +7: +Increases damage of Prominence Kick and Solar Burst by additional 15%. + +Refine Level +9: +Increases damage of Prominence Kick and Solar Burst by additional 15%. + +Refine Level +11: +Increases damage of Prominence Kick and Solar Burst by additional 15%. +Increases damage of Sunset Blast by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000794# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of New Moon Kick and Full Moon Kick by 15%. + +Refine Level +7: +Increases damage of New Moon Kick and Full Moon Kick by additional 15%. + +Refine Level +9: +Increases damage of New Moon Kick and Full Moon Kick by additional 15%. + +Refine Level +11: +Increases damage of New Moon Kick and Full Moon Kick by additional 15%. +Increases damage of Dawn Break by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000795# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Flash Kick and Falling Star by 15%. + +Refine Level +7: +Increases damage of Flash Kick and Falling Star by additional 15%. + +Refine Level +9: +Increases damage of Flash Kick and Falling Star by additional 15%. + +Refine Level +11: +Increases damage of Flash Kick and Falling Star by additional 15%. +Increases damage of Star Cannon by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000796# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Esma and Eswhoo by 15%. + +Refine Level +7: +Increases damage of Esma and Eswhoo by additional 15%. + +Refine Level +9: +Increases damage of Esma and Eswhoo by additional 15%. + +Refine Level +11: +Increases damage of Esma and Eswhoo by additional 15%. +Increases damage of Talisman of Red Phoenix and Talisman of Black Tortoise by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000797# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Espa by 15%. + +Refine Level +7: +Increases damage of Espa by additional 15%. + +Refine Level +9: +Increases damage of Espa by additional 15%. + +Refine Level +11: +Increases damage of Espa by additional 15%. +Increases damage of Talisman of Blue Dragon and Talisman of White Tiger by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000798# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Curse Explosion by 15%. +Increases Magical Damage with Shadow element by 5%. + +Refine Level +7: +Increases damage of Curse Explosion by additional 15%. +Increases Magical Damage with Shadow element by additional 10%. + +Refine Level +9: +Increases damage of Curse Explosion by additional 15%. +Increases Magical Damage with Shadow element by additional 10%. + +Refine Level +11: +Increases damage of Curse Explosion by additional 15%. +Increases Magical Damage with Shadow element by additional 15%. +Increases damage of Exorcism of Malicious Soul by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000799# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Desperado, Fire Dance and Hammer of God by 15%. + +Refine Level +7: +Increases damage of Desperado, Fire Dance and Hammer of God by additional 15%. + +Refine Level +9: +Increases damage of Desperado, Fire Dance and Hammer of God by additional 15%. + +Refine Level +11: +Increases damage of Desperado, Fire Dance and Hammer of God by additional 15%. +Increases damage of Only One Bullet by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000800# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Fire Rain, Howling Mine and Dragon Tail by 15%. + +Refine Level +7: +Increases damage of Fire Rain, Howling Mine and Dragon Tail by additional 15%. + +Refine Level +9: +Increases damage of Fire Rain, Howling Mine and Dragon Tail by additional 15%. + +Refine Level +11: +Increases damage of Fire Rain, Howling Mine and Dragon Tail by additional 15%. +Increases damage of Wild Fire by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000801# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Shattering Storm, Banishing Buster and Round Trip by 15%. + +Refine Level +7: +Increases damage of Shattering Storm, Banishing Buster and Round Trip by additional 15%. + +Refine Level +9: +Increases damage of Shattering Storm, Banishing Buster and Round Trip by additional 15%. + +Refine Level +11: +Increases damage of Shattering Storm, Banishing Buster and Round Trip by additional 15%. +Increases damage of The Vigilante at Night by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000802# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by 15%. + +Refine Level +7: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 15%. + +Refine Level +9: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 15%. + +Refine Level +11: +Increases damage of Flaming Petals, Freezing Spear and Wind Blade by additional 15%. +Increases damage of Red Flame Cannon, Cold Blooded Cannon and Thundering Cannon by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000803# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Cross Slash and Swirling Petal by 15%. + +Refine Level +7: +Increases damage of Cross Slash and Swirling Petal by additional 15%. + +Refine Level +9: +Increases damage of Cross Slash and Swirling Petal by additional 15%. + +Refine Level +11: +Increases damage of Cross Slash and Swirling Petal by additional 15%. +Increases damage of Shadow Flash and Huuma Shuriken - Construct by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000804# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by 15%. + +Refine Level +7: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 15%. + +Refine Level +9: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 15%. + +Refine Level +11: +Increases damage of Exploding Dragon, Snow Flake Draft and First Wind by additional 15%. +Increases damage of Golden Dragon Cannon and Darkening Cannon by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000805# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Picky Peck and Lunatic Carrot Beat by 15%. + +Refine Level +7: +Increases damage of Picky Peck and Lunatic Carrot Beat by additional 15%. + +Refine Level +9: +Increases damage of Picky Peck and Lunatic Carrot Beat by additional 15%. + +Refine Level +11: +Increases damage of Picky Peck and Lunatic Carrot Beat by additional 15%. +Increases damage of Chulho Sonic Claw by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000806# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Silvervine Stem Spear and Catnip Meteor by 15%. + +Refine Level +7: +Increases damage of Silvervine Stem Spear and Catnip Meteor by additional 15%. + +Refine Level +9: +Increases damage of Silvervine Stem Spear and Catnip Meteor by additional 15%. + +Refine Level +11: +Increases damage of Silvervine Stem Spear and Catnip Meteor by additional 15%. +Increases damage of Hyunrok Cannon by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000807# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Spirit of Savage by 15%. + +Refine Level +7: +Increases damage of Spirit of Savage by additional 15%. + +Refine Level +9: +Increases damage of Spirit of Savage by additional 15%. + +Refine Level +11: +Increases damage of Spirit of Savage by additional 15%. +Increases damage of Hogogong Strike by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000808# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Holy Cross and Back Stab by 15%. + +Refine Level +7: +Increases damage of Holy Cross and Back Stab by additional 15%. + +Refine Level +9: +Increases damage of Holy Cross and Back Stab by additional 15%. + +Refine Level +11: +Increases damage of Holy Cross and Back Stab by additional 15%. +Increases damage of Double Bowling Bash and Mega Sonic Blow by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000809# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Shield Boomerang by 15%. + +Refine Level +7: +Increases damage of Shield Boomerang by additional 15%. + +Refine Level +9: +Increases damage of Shield Boomerang by additional 15%. + +Refine Level +11: +Increases damage of Shield Boomerang by additional 15%. +Increases damage of Shield Chain Rush and Spiral Pierce Max by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000810# +A manastone imbued with mysterious magic. +It can be enchanted on Snow Flake Armor. +-------------------------- +[Enchantment Effect] +Increases damage of Meteor Storm and Jupitel Thunder by 15%. + +Refine Level +7: +Increases damage of Meteor Storm and Jupitel Thunder by additional 15%. + +Refine Level +9: +Increases damage of Meteor Storm and Jupitel Thunder by additional 15%. + +Refine Level +11: +Increases damage of Meteor Storm and Jupitel Thunder by additional 15%. +Increases damage of Meteor Storm Buster and Jupitel Thunderstorm by 15%. +-------------------------- +[Enchantable Equipment] +Snow Flower Armor(2nd Slot) +Snow Flower Robe(2nd Slot) +-------------------------- +Weight: 0 +# +1000811# +An ore fragment imbued with magical power of a Snow Flower. +-------------------------- +Weight: 0.1 +# +1000812# +A Snow Magic Manastone imbued with common magical powers. +-------------------------- +Weight: 0.1 +# +1000813# +A Snow Magic Stone that gently oozes magical light. +-------------------------- +Weight: 0.1 +# +1000814# +A Snow Magic Stone that is dazzlingly wrapped in the light of magical power. +-------------------------- +Weight: 0.1 +# +1000822# +Rgan's shell. The feeling from it is strange. +-------------------------- +Weight: 1 +# +1000823# +A cell that cannot be identified as a cell of any living organism. +-------------------------- +Weight: 1 +# +1000824# +A mysterious crystal in the body of Calamaring. +-------------------------- +Weight: 1 +# +1000825# +A mysterious crystal in the body of Cave Calamaring. +-------------------------- +Weight: 1 +# +1000826# +The shell of Hallucigenia. +-------------------------- +Weight: 1 +# +1000827# +The slender claws of Dollocaris. +-------------------------- +Weight: 1 +# +1000828# +It is transparent with the peel of Limacina. +It is said to have a very good taste. +-------------------------- +Weight: 1 +# +1000829# +Bellflower used as bait for anglerfish when fishing. +-------------------------- +Weight: 1 +# +1000830# +The shell of a creature called an Ice Straw. +-------------------------- +Weight: 1 +# +1000831# +The stem part of the Shining Seaweed. +-------------------------- +Weight: 1 +# +1000832# +A fragment of the frozen shell of an ice steel ball. +-------------------------- +Weight: 1 +# +1000833# +An ore imbued with mysterious energy. +-------------------------- +Weight: 1 +# +1000834# +A long, sharp fragment of a bone. +-------------------------- +Weight: 1 +# +1000842# +A high-sensitivity magic detection device that sends a special signal when it detects the magic power of Rgan. It looks like a normal seashell. +-------------------------- +Weight: 0 +# +1000845# +A record of the movement of goods. It is documented that a large amount of material has recently entered Baggot's laboratory under Rasgand's permission. +-------------------------- +Weight: 0 +# +1000846# +Sweet and cold ice snack. It is the traditional taste of Irwin. +-------------------------- +Weight: 0 +# +1000850# +A ticket that grants a Slot Enchantment for the Helm of Faith. +You can use it by going to [Jeeky]itemmall,31,70,0,100,0,0. +-------------------------- +[Target Items] +Helm of Faith +-------------------------- +[4th Slot Enchantment] +Randomly grants 1 Enchantment among Fighting Spirit Lv3, Spell Lv1, DelayAfterAttack Lv1, Sharp Lv1, Expert Archer Lv1, AfterSkillDelay Lv1. One Helm of Faith Enchantment Ticket is consumed. +Alternatively, you can choose the Enchantment you want by consuming 5 tickets + 500 Amethyst Fragments. +The granted Enchantments can be upgraded to a maximum of Lv3 (Lv5 for Fighting Spirit) by consuming Amethyst Fragments. +-------------------------- +[3rd Slot Enchantment] +Randomly grants 1 Enchantment among Unyielding Lv1, Master Archer Lv1, Adamantine Lv1, Magic Essence Lv1, Affection Lv1, Mettle Lv1, Acute Lv1. Two Helm of Faith Enchantment Ticket is consumed. +Alternatively, you can choose the Enchantment you want by consuming 10 tickets + 1500 Amethyst Fragments. +The granted Enchantments can be upgraded up to Lv3 by consuming 1 ticket and an Amethyst Fragment. +-------------------------- +[Enchantment Reset] +It can be reseted for 500,000 Zenny. Reset Chance: 100%. +-------------------------- +Weight: 0 +# +1000851# +A small brush customized for Chulho. +Used normal components, but it's quite luxurious. +-------------------------- +Weight: 0 +# +1000852# +Soft traditional paper made by tapping the trunk of a tree. +-------------------------- +Weight: 0 +# +1000853# +Portrait drawn by Chulho. +Tiger painting has the effect of preventing bad luck. +-------------------------- +Weight: 0 +# +1000854# +If you go to [Shadow Blacksmith]itemmall,31,76,0,100,0,0, you can exchange a specific Shadow Equipment for another part of the same Shadow Equipment. +The exchange range is fixed, and the Refine Level and Random Options are maintained. +-------------------------- +[Exchangeable Items] +Full Penetration Shadow Equipment +Full Tempest Shadow Equipment +True Gemstone Shadow Equipment +Major Auto Spell Shadow Equipment +Clever Shadow Equipment +Durable Shadow Equipment +Infinity Shadow Equipment +Hasty Shadow Equipment +Perfect Size Shadow Equipment +Lord Bearer's Shadow Equipment +Spell Caster Shadow Equipment +Mega Blitz Shadow Equipment +Absolute Shadow Equipment +Maximum Mammoth Shadow Equipment +Almighty Shadow Equipment +Kingbird Ancient Shadow Equipment +Critical Hit Shadow Equipment +-------------------------- +Weight: 0 +# +1000855# +A stone that increases Critical Damage. +Gives the following effects when compounded on the 2nd slot of an Costume Garment. +-------------------------- +Increases Critical Damage by 10%. +Critical +10 +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000856# +A stone that increases Concentration. +Gives the following effects when compounded on the 2nd slot of an Costume Garment. +-------------------------- +CON +5 +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000857# +A stone that awakens the potential of Archbishop. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Clementia: +Decreases After Skill Delay by 3%. +-------------------------- +When equipped with Archbishop Stone(Garment): +Increases Magical Damage with every element by 15%. +-------------------------- +When equipped with Archbishop Stone II(Garment): +Increases Magical Damage against enemies of every size by 15%. +-------------------------- +Aver De Doshmal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000858# +A stone that awakens the potential of Archbishop. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For each Level of Lauda Agnus: +Decreases Variable Casting Time by 3%. +-------------------------- +When equipped with Archbishop Stone(Garment): +Increases damage of Adoramus by 15%. +-------------------------- +When equipped with Archbishop Stone II(Garment): +Increases damage of Judex by 15%. +-------------------------- +Aver De Doshmal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000859# +A stone that awakens the potential of Archbishop. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +For each Level of Expiatio: +Decreases Fixed Casting Time by 0.1 second. +-------------------------- +When equipped with Archbishop Stone(Garment): +Increases Magical Damage against enemies of every race, except Players, by 15%. +-------------------------- +When equipped with Archbishop Stone II(Garment): +Increases damage of Adoramus by 15%. +-------------------------- +Aver De Doshmal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000860# +A stone that awakens the potential of Ranger. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each 2 Levels of Ranger Main: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Ranger Stone(Garment): +Decreases Unlimit skill cooldown by 45 seconds. +-------------------------- +When equipped with Ranger Stone II(Garment): +Increases damage of Sharp Shooting by 15%. +-------------------------- +Aver De Doshmal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000861# +A stone that awakens the potential of Ranger. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For each Level of Trap Research: +Decreases Variable Casting Time by 1%. +-------------------------- +When equipped with Ranger Stone(Garment): +Increases damage of Arrow Storm by 15%. +-------------------------- +When equipped with Ranger Stone II(Garment): +Increases damage of Aimed Bolt by 15%. +-------------------------- +Aver De Doshmal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000862# +A stone that awakens the potential of Ranger. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +For each Level of Fear Breeze: +Increases Ranged Physical Damage by 2%. +-------------------------- +When equipped with Ranger Stone(Garment): +Physical attacks have a 2% chance to absorb 1% of the inflicted damage as SP. +-------------------------- +When equipped with Ranger Stone II(Garment): +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Aver De Doshmal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000863# +A stone that awakens the potential of Shadow Chaser. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Escape: +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +When equipped with Shadow Chaser Stone(Garment): +Increases damage of Feint Bomb by 15%. +-------------------------- +When equipped with Shadow Chaser Stone II(Garment): +Physical attacks have a 1% chance to absorb 1% of the inflicted damage as SP. +-------------------------- +Aver De Doshmal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000864# +A stone that awakens the potential of Shadow Chaser. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For each Level of Shadow Form: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Shadow Chaser Stone(Garment): +Increases damage of Triangle Shot by 15%. +-------------------------- +When equipped with Shadow Chaser Stone II(Garment): +Increases damage of Fatal Menace by 15%. +-------------------------- +Aver De Doshmal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000865# +A stone that awakens the potential of Shadow Chaser. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +For each Level of Reproduce: +Increases Melee and Ranged Physical Damage by 1%. +-------------------------- +When equipped with Shadow Chaser Stone(Garment): +Increases Physical Damage against enemies of every element by 15%. +-------------------------- +When equipped with Shadow Chaser Stone II(Garment): +Increases Physical Damage against enemies of every size by 15%. +-------------------------- +Aver De Doshmal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000874# +An item that grants enchantments to various items. +You can use it by going to [Jeeky]itemmall,31,70,0,100,0,0. +-------------------------- +- kRO Website: +(It lists also the possible enchantments for each item per seperate link) +[Target Items]https://ro.gnjoy.com/guide/runemidgarts/itemview.asp?itemSeq=7&ID=1000874,1024,768 + +[Target Items] +Mad Bunny-LT +Hero's Boots, Hero's Badge +Young Leaf of World Tree series +Poring Balloon series +Helm of Faith series +Thanos' Helmet-LT series +-------------------------- +Weight: 0 +# +1000882# +Add enchantment on 4th slot of Costume Lower Headgear. +Electric Effect +[Gregio Grumani]mal_in01,24,121,0,100,0,0 +-------------------------- +Weight: 10 +# +1000889# +Fresh fruit juice made by grinding various fruits with high sugar content. +Familiar likes it very much. +-------------------------- +Weight: 1 +# +1000897# +List of donors who have donated part of their property to help those in need. +# +1000898# +List of donors who have donated part of their property to help those in need. +# +1000899# +List of donors who have donated part of their property to help those in need. +# +1000900# +List of donors who have donated part of their property to help those in need. +# +1000901# +List of donors who have donated part of their property to help those in need. +# +1000902# +List of donors who have donated part of their property to help those in need. +# +1000903# +List of donors who have donated part of their property to help those in need. +# +1000904# +List of donors who have donated part of their property to help those in need. +# +1000905# +List of donors who have donated part of their property to help those in need. +# +1000906# +List of donors who have donated part of their property to help those in need. +# +1000907# +List of donors who have donated part of their property to help those in need. +# +1000908# +List of donors who have donated part of their property to help those in need. +# +1000909# +List of donors who have donated part of their property to help those in need. +# +1000910# +List of donors who have donated part of their property to help those in need. +# +1000911# +List of donors who have donated part of their property to help those in need. +# +1000912# +List of donors who have donated part of their property to help those in need. +# +1000913# +List of donors who have donated part of their property to help those in need. +# +1000914# +List of donors who have donated part of their property to help those in need. +# +1000915# +List of donors who have donated part of their property to help those in need. +# +1000916# +List of donors who have donated part of their property to help those in need. +# +1000917# +List of donors who have donated part of their property to help those in need. +# +1000918# +List of donors who have donated part of their property to help those in need. +# +1000919# +List of donors who have donated part of their property to help those in need. +# +1000920# +List of donors who have donated part of their property to help those in need. +# +1000921# +A stone that increases Spell. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +SPL + 5. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000922# +A stone that increases MATK. +Gives the following effects when compounded on a slot of an Costume Garment. +-------------------------- +S.MATK +3 +-------------------------- +When equipped with Magic Power Stone(Upper): +S.MATK +1, SPL +1 +-------------------------- +When equipped with Magic Power Stone(Middle): +S.MATK +1, SPL +1 +-------------------------- +When equipped with Magic Power Stone(Lower): +S.MATK +1, SPL +1 +-------------------------- +When equipped with Spell Stone(Dual): +S.MATK +5, SPL +3 +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 10 +# +1000924# +A bookmark dedicated to the fantasy series. Every time I look at the bookmarks, I seem to remember the moment I experienced as a fantasy series. Once you have read the fantasy series, you can use the bookmark to the table of contents fairy to jump to a specific page. +-------------------------- +Weight: 0 +# +1000925# +A commemorative card presented as a token of appreciation to readers who have read the fantasy series. Collect a lot and show off your reading! +-------------------------- +Weight: 0 +# +1000926# +Eisen Werner's AI assistant butterfly decoration kit. It has the same face shape as the AI assistant butterfly. It sticks well anywhere. +-------------------------- +Weight: 0 +# +1000927# +\ + A reading log book that seems to be being written at Elena's recommendation. The two have already filled more than half. +-------------------------- +Weight: 0 +# +1000928# +\ + Elena's wrist braces for combat. She can now fight without it, but it is said that she wears it like her habit. +-------------------------- +Weight: 0 +# +1000929# +\ + Delicate three-dimensional cube puzzle made of metal. It is used for free idea generation. +-------------------------- +Weight: 0 +# +1000930# +The signature product of the confectionery store newly pioneered by DeBries. Unlike cookies made with a frame heart motif, it has a banana flavor. +-------------------------- +Weight: 0 +# +1000931# +A building kit that allows you to build a model the same size as the Mini-Cannon, developed by the outstanding Genetic Demi Calverine. You can complete the spring toy. +-------------------------- +Weight: 0 +# +1000932# +A bookmark that Spica found and kept in the spring. +-------------------------- +Weight: 0 +# +1000933# +Small notebook and golden fountain pen. It is useful when organizing your thoughts. +-------------------------- +Weight: 0 +# +1000934# +A badge awarded to a knight of outstanding skill. Well maintained and shiny. +-------------------------- +Weight: 0 +# +1000935# +Orange flavored chocolate. It is a treasury item that is given out when the attendant is not feeling well. +-------------------------- +Weight: 0 +# +1000936# +Set for a short break. A teapot and teacup set to be used when suffering from troublesome political affairs. +-------------------------- +Weight: 0 +# +1000968# +A stone that awakens the potential of Sura. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each 2 Levels of Rising Dragon: +Decreases Fixed Casting Time by 0.1 second. +-------------------------- +When equipped with Sura Stone(Garment): +Increases damage of Ride in Lightning by 20%. +-------------------------- +When equipped with Sura Stone II(Garment): +Increases damage of Knuckle Arrow by 15%. +-------------------------- +Aver De Doshmal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000969# +A stone that awakens the potential of Sura. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For each Level of Gentle Touch-Revitalize: +Increases Melee Physical Damage by 2%. +-------------------------- +When equipped with Sura Stone(Garment): +Increases damage of Ride in Lightning by 20%. +-------------------------- +When equipped with Sura Stone II(Garment): +Increases damage of Tiger Cannon by 15%. +-------------------------- +Aver De Doshmal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000970# +A stone that awakens the potential of Sura. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +For each Level of Gentle Touch-Change: +Increases Ranged Physical Damage by 2%. +-------------------------- +When equipped with Sura Stone(Garment): +Increases damage of Rampage Blaster by 15%. +-------------------------- +When equipped with Sura Stone II(Garment): +Increases damage of Knuckle Arrow by 15%. +-------------------------- +Aver De Doshmal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000971# +A stone that awakens the potential of Mechanic. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each Level of Fire Earth Research: +Decreases Variable Casting Time by 1%. +-------------------------- +When equipped with Mechanic Stone(Garment): +Increases damage of Axe Tornado by 15%. +-------------------------- +When equipped with Mechanic Stone II(Garment): +Increases damage of Knuckle Boost by 15%. +-------------------------- +Aver De Doshmal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000972# +A stone that awakens the potential of Mechanic. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For each Level of Mado Gear License: +Increases Melee and Ranged Physical Damage by 1%. +-------------------------- +When equipped with Mechanic Stone(Garment): +Increases damage of Axe Boomerang by 15%. +-------------------------- +When equipped with Mechanic Stone II(Garment): +Increases damage of Arm Cannon by 15%. +-------------------------- +Aver De Doshmal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000973# +A stone that awakens the potential of Mechanic. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +For each 2 Levels of Axe Mastery: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Mechanic Stone(Garment): +Increases damage of Power Swing by 15%. +-------------------------- +When equipped with Mechanic Stone II(Garment): +Increases damage of Vulcan Arm by 15%. +-------------------------- +Aver De Doshmal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000974# +A stone that awakens the potential of Guillotine Cross. +Gives the following effects when compounded on a slot of an Costume Upper Headgear. +-------------------------- +For each 2 Levels of Research New Poison: +Decreases After Skill Delay by 1%. +-------------------------- +When equipped with Assassin Cross Stone(Garment): +Increases damage of Cross Ripper Slasher by 15%. +-------------------------- +When equipped with Assassin Cross Stone II(Garment): +Increases damage of Counter Slash by 15%. +-------------------------- +Aver De Doshmal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000975# +A stone that awakens the potential of Guillotine Cross. +Gives the following effects when compounded on a slot of an Costume Middle Headgear. +-------------------------- +For each Level of Dark Illusion: +Increases Melee Physical Damage by 2%. +-------------------------- +When equipped with Assassin Cross Stone(Garment): +Increases damage of Rolling Cutter by 15%. +-------------------------- +When equipped with Assassin Cross Stone II(Garment): +Increases damage of Cross Impact by 15%. +-------------------------- +Aver De Doshmal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000976# +A stone that awakens the potential of Guillotine Cross. +Gives the following effects when compounded on a slot of an Costume Lower Headgear. +-------------------------- +For each Level of Dark Illusion: +Increases Melee Physical Damage by 2%. +-------------------------- +When equipped with Assassin Cross Stone(Garment): +Increases damage of Rolling Cutter by 15%. +-------------------------- +When equipped with Assassin Cross Stone II(Garment): +Increases damage of Cross Impact by 15%. +-------------------------- +Aver De Doshmal_in01,23,113,0,100,0,0 +-------------------------- +Weight: 10 +# +1000998# +A neatly washed handkerchief that every good scientist has. +[Special Souvenir Exchanger]prt_elib,29,50,0,100,0,0 +-------------------------- +Weight: 0 +# +1100000# +Recovers 30 HP and 10 SP. +-------------------------- +Weight: 1 +# +1100003# +Potion created by concentrating Red Syrup once more. +It became lighter and the efficiency of use was also increased. +However, since it is a highly concentrated potion, there are some restrictions on taking it. +-------------------------- +Effect: Recovers 675 HP +Weight: 0.2 +-------------------------- +Requirement: +Base Level 120 +# +1100004# +Potion created by concentrating Blue Syrup once more. +It became lighter and the efficiency of use was also increased. +However, since it is a highly concentrated potion, there are some restrictions on taking it. +-------------------------- +Effect: Recovers 360 SP +Weight: 0.2 +-------------------------- +Requirement: +Base Level 120 +# +1100005# +Potion created by mixing White Syrup and Yellow Syrup and then +concentrating it once more. +It became lighter and the efficiency of use was also increased. +However, since it is a highly concentrated potion, there are some restrictions on taking it. +-------------------------- +Effect: Recovers 2750 HP +Weight: 0.2 +-------------------------- +Requirement: +Base Level 180 +# +1100006# +It is a kind of dried fish obtained by freeze-drying ice gangu. It is cold and crunchy like ice. A nutritious delicacy that Irwins love. +-------------------------- +Effect: Recovers 1925 HP +Weight: 0.2 +-------------------------- +Requirement: +Base Level 200 +# +1200000# +When equipped with IDTest Bow: +DEX +1 +-------------------------- +Type: Arrow +Attack: 10 +Weight: 1 +Element: Neutral +# +1210000# +A consumable item to used by Mechanic and Genetic skills. +-------------------------- +Type: Cannonball +Attack: 10 +Weight: 1 +Element: Neutral +# +1220000# +Can be used by Throw Shuriken and Throw Kunai. +-------------------------- +Type: Kunai +Attack: 10 +Weight: 1 +Element: Neutral +# +1220001# +Commonly used kunai. When you carry it, you feel proud as a Ninja. +-------------------------- +Type: Kunai +Attack: 30 +Weight: 0.1 +Element: Neutral +# +1220002# +A Kunai with the energy of air. You can feel the power to cut through air easily. +-------------------------- +Type: Kunai +Attack: 30 +Weight: 0.1 +Element: Ghost +# +1220003# +A Kunai with the energy of shadow. Dark energy is transmitted from your fingertips. +-------------------------- +Type: Kunai +Attack: 30 +Weight: 0.1 +Element: Shadow +# +1220004# +The Kunai of the Sacred Realm. It seems that all evil can be defeated. +-------------------------- +Type: Kunai +Attack: 30 +Weight: 0.1 +Element: Holy +# +1230000# +When equipped with IDTest Gun: +DEX +1 +-------------------------- +Type: Ammo +Attack: 10 +Weight: 1 +Element: Neutral +# +1400000# +The letter R used for decorating flower bouquets beautifully +-------------------------- +Type: Event Item +Weight: 0 +# +1400001# +The letter O used for decorating flower bouquets beautifully +-------------------------- +Type: Event Item +Weight: 0 +# +1400002# +The letter L used for decorating flower bouquets beautifully +-------------------------- +Type: Event Item +Weight: 0 +# +1400003# +The letter V used for decorating flower bouquets beautifully +-------------------------- +Type: Event Item +Weight: 0 +# +1400004# +The letter V used for decorating flower bouquets beautifully +-------------------------- +Type: Event Item +Weight: 0 +# +1400005# +The letter M used for decorating flower bouquets beautifully +-------------------------- +Type: Event Item +Weight: 0 +# +1400006# +Medal of Honor +Represents your support for your guild +-------------------------- +Type: Etc +Weight: 0 +# +1400007# +Miracle Coin +Used for guild donations to receive exclusive +and extraordinary rewards. +-------------------------- +Type: Etc +Weight: 0 +# +1500000# +Tools for developer. +-------------------------- +Type: Tester Tool +Weight: 0 +# +1500001# +Created from the tears or sweat of the god of Poring, this elixir instantly restores 1000 points of stamina: +-------------------------- +Type: consumable +Weight: 0 +# +1500002# +Dont open this!! +A mysterious loot box that seems to hold something inside, but you'll have to open it to find out., +-------------------------- +Type: Tester tool +Weight: 0 +# +1500003# +[ Stamina System Core ] + ... +-------------------------- +Type: Tester tool +Weight: 1 +# +1500004# +[ House System Core ] +A key with a gorgeous glyph. +This glyph symbolizes the Goddess Freya of Arunafeltz. +-------------------------- +Type: Tester tool +Weight: 1 +# +1500006# +The ancient book provides players with advice +so please handle it with care to avoid scratching it. +-------------------------- +Type: Manual +Weight: 0 +# +1500007# +A gadget specifically designed for the Autoattack system. +-------------------------- +Item cannot be stored. +Weight: 1 +# +1500008# +A pass that enables you to restart the Hidden-Square dungeon +And begin a new round, with the assistance of ROverse. +-------------------------- +Weight: 0 +# +1500009# +Unlock the possibility of obtaining rare items by +opening the opulent, gold-adorned box +The following list of items can be found inside this box. +Upgrade Adventure Suit +Upgrade Boots +Upgrade Buckler +Upgrade Clip +Upgrade Coat +Upgrade Formal Dress +Upgrade Greave +Upgrade Guard +Upgrade Hood +Upgrade Mail +Upgrade Manteau +Upgrade Muffler +Upgrade Saint Robe +Upgrade Shield +Upgrade Shoes +Upgrade Thief Cloth +Upgrade Tights +-------------------------- +Weight: 1 +# +1500010# +A scroll containing new pet scroll inside +Gives you the opportunity to randomly obtain a new pet egg. +-------------------------- +Uncommon Egg +Rare Egg +Epic Egg +-------------------------- +Weight: 0 +# +1500011# +The box requires some stamina to open. +This Lootbox drop from monster Level 1-10. +Have a chance to random!! +50-100 Zeny +And +EXP Medicine I +Equipment +Refine Material +Usable Item +ETC Item +-------------------------- +Type: Container +Weight: 0 +# +1500012# +The box requires some stamina to open. +This Lootbox drop from monster Level 11-20. +Have a chance to random!! +100-200 Zeny +And +EXP Medicine II +Equipment +Refine Material +Usable Item +ETC Item +-------------------------- +Type: Container +Weight: 0 +# +1500013# +The box requires some stamina to open. +This Lootbox drop from monster Level 21-30. +Have a chance to random!! +150-300 Zeny +And +EXP Medicine III +Equipment +Refine Material +Usable Item +ETC Item +-------------------------- +Type: Container +Weight: 0 +# +1500014# +The box requires some stamina to open. +This Lootbox drop from monster Level 31-40. +Have a chance to random!! +200-400 Zeny +And +EXP Medicine IV +Equipment +Refine Material +Usable Item +ETC Item +-------------------------- +Type: Container +Weight: 0 +# +1500015# +The box requires some stamina to open. +This Lootbox drop from monster Level 41-50. +Have a chance to random!! +250-500 Zeny +And +EXP Medicine V +Equipment +Refine Material +Usable Item +ETC Item +-------------------------- +Type: Container +Weight: 0 +# +1500016# +The box requires some stamina to open. +This Lootbox drop from monster Level 51-60. +Have a chance to random!! +300-600 Zeny +And +EXP Medicine VI +Equipment +Refine Material +Usable Item +ETC Item +-------------------------- +Type: Container +Weight: 0 +# +1500017# +The box requires some stamina to open. +This Lootbox drop from monster Level 61-70. +Have a chance to random!! +350-700 Zeny +And +EXP Medicine VII +Equipment +Refine Material +Usable Item +ETC Item +-------------------------- +Type: Container +Weight: 0 +# +1500018# +The box requires some stamina to open. +This Lootbox drop from monster Level 71-80. +Have a chance to random!! +400-800 Zeny +And +EXP Medicine VIII +Equipment +Refine Material +Usable Item +ETC Item +-------------------------- +Type: Container +Weight: 0 +# +1500019# +The box requires some stamina to open. +This Lootbox drop from monster Level 81-90. +Have a chance to random!! +450-900 Zeny +And +EXP Medicine IX +Equipment +Refine Material +Usable Item +ETC Item +-------------------------- +Type: Container +Weight: 0 +# +1500020# +The box requires some stamina to open. +This Lootbox drop from monster Level 91-100. +Have a chance to random!! +500-1000 Zeny +And +EXP Medicine X +Equipment +Refine Material +Usable Item +ETC Item +-------------------------- +Type: Container +Weight: 0 +# +1500021# +The box requires some stamina to open. +This Lootbox drop from monster Level 101-110. +Have a chance to random!! +550-1100 Zeny +And +EXP Medicine XI +Equipment +Refine Material +Usable Item +ETC Item +-------------------------- +Type: Container +Weight: 0 +# +1500022# +The box requires some stamina to open. +This Lootbox drop from monster Level 111-120. +Have a chance to random!! +600-1200 Zeny +And +EXP Medicine XII +Equipment +Refine Material +Usable Item +ETC Item +-------------------------- +Type: Container +Weight: 0 +# +1500023# +The box requires some stamina to open. +This Lootbox drop from monster Level 121-130. +Have a chance to random!! +650-1300 Zeny +And +EXP Medicine XII +Equipment +Refine Material +Usable Item +ETC Item +-------------------------- +Type: Container +Weight: 0 +# +1500031# +The box requires some stamina to open. +This Lootbox drop from monster In guild dungeon. +Have a chance to random!! +1000-1500 Zeny +And +EXP Medicine X +Equipment +Refine Material +Usable Item +ETC Item +-------------------------- +Type: Container +Weight: 0 +# +1500101# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 50,000 base experience; Gives 50,000 job experience +Weight: 0 +# +1500102# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 100,000 base experience; Gives 100,000 job experience +Weight: 0 +# +1500103# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 150,000 base experience; Gives 150,000 job experience +Weight: 0 +# +1500104# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 200,000 base experience; Gives 200,000 job experience +Weight: 0 +# +1500105# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 250,000 base experience; Gives 250,000 job experience +Weight: 0 +# +1500106# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 300,000 base experience; Gives 300,000 job experience +Weight: 0 +# +1500107# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 350,000 base experience; Gives 350,000 job experience +Weight: 0 +# +1500108# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 400,000 base experience; Gives 400,000 job experience +Weight: 0 +# +1500109# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 450,000 base experience; Gives 450,000 job experience +Weight: 0 +# +1500110# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 500,000 base experience; Gives 500,000 job experience +Weight: 0 +# +1500111# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 550,000 base experience; Gives 550,000 job experience +Weight: 0 +# +1500112# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 600,000 base experience; Gives 600,000 job experience +Weight: 0 +# +1500113# +Old purse, appears to be very worn. +there is noise when you shake it. It seems that does not contain a lot of money. +Open it will give you 50,000 zeny. +-------------------------- +Weight: 0 +# +1500114# +Old purse, appears to be very worn. +there is noise when you shake it. It seems that does not contain a lot of money. +Open it will give you 100,000 zeny. +-------------------------- +Weight: 0 +# +1500115# +Old purse, appears to be very worn. +there is noise when you shake it. It seems that does not contain a lot of money. +Open it will give you 300,000 zeny. +-------------------------- +Weight: 0 +# +1500116# +Old purse, appears to be very worn. +there is noise when you shake it. It seems that does not contain a lot of money. +Open it will give you 500,000 zeny. +-------------------------- +Weight: 0 +# +1500117# +Old purse, appears to be very worn. +there is noise when you shake it. It seems that does not contain a lot of money. +Open it will give you 1,000,000 zeny. +-------------------------- +Weight: 0 +# +1500118# +Old purse, appears to be very worn. +there is noise when you shake it. It seems that does not contain a lot of money. +Open it will give you 5,000,000 zeny. +-------------------------- +Weight: 0 +# +1500119# +Old purse, appears to be very worn. +there is noise when you shake it. It seems that does not contain a lot of money. +Open it will give you 10,000,000 zeny. +-------------------------- +Weight: 0 +# +1500120# +Old purse, appears to be very worn. +there is noise when you shake it. It seems that does not contain a lot of money. +Open it will give you 50,000,000 zeny. +-------------------------- +Weight: 0 +# +1500121# +Old purse, appears to be very worn. +there is noise when you shake it. It seems that does not contain a lot of money. +Open it will give you 100,000,000 zeny. +-------------------------- +Weight: 0 +# +1500200# +Unveil the thrill of discovery with this crate, packed with a variety of high-quality items. A great boost to your game and a tribute to your founder status. +-------------------------- +A box which contains +Unlimited Fly Wing (1 Day) Box 1ea +Battle Manual 10ea +Blessing 10 Scroll 50ea +Increase Agility 10 Scroll 50ea +Regeneration Potion 30ea +Token of Siegfried 30ea +White Potion Box20 50ea +Blue Potion Box10 30ea +-------------------------- +Weight: 1 +# +1500201# +Elevate your game with this gold-tier crate, brimming with premium items for a competitive edge. A prestigious badge of your founder role. +-------------------------- +A box which contains +Unlimited Fly Wing (1 Day) Box 3ea +Battle Manual 10ea +Blessing 10 Scroll 50ea +Increase Agility 10 Scroll 50ea +Regeneration Potion 30ea +Token of Siegfried 30ea +White Potion Box20 50ea +Blue Potion Box10 30ea +-------------------------- +Weight: 1 +# +1500202# +Indulge in the epitome of luxury with this platinum crate. Offering potent and rare items, it propels you into a league of your own, honoring your dedication as a founder. +-------------------------- +A box which contains +Unlimited Fly Wing (1 Day) Box 7ea +Battle Manual 20ea +Blessing 10 Scroll 100ea +Increase Agility 10 Scroll 100ea +Regeneration Potion 50ea +Token of Siegfried 60ea +White Potion Box20 100ea +Blue Potion Box10 50ea +-------------------------- +Weight: 1 +# +1500203# +A box containing 1 Automatic Player Box that can be used for 1 day. +-------------------------- +Rental Item. +-------------------------- +For use in Autoattack System. +-------------------------- +Weight: 1 +# +1500204# +A box containing 1 Automatic Player Box that can be used for 7 days. +-------------------------- +Rental Item. +-------------------------- +For use in Autoattack System. +-------------------------- +Item cannot be stored. +Weight: 1 +# +1500205# +A box containing 1 Automatic Player Box that can be used for 14 days. +-------------------------- +Rental Item. +-------------------------- +For use in Autoattack System. +-------------------------- +Item cannot be stored. +Weight: 1 +# +1500206# +A box containing 1 Automatic Player Box that can be used for 30 days. +-------------------------- +Rental Item. +-------------------------- +For use in Autoattack System. +-------------------------- +Item cannot be stored. +Weight: 1 +# +1500207# +Unlock the wonders of this remarkable airdrop +teeming with exquisite valuables that will leave you in awe. +-------------------------- +A box which contains +New Pet Scroll 1ea +Hidden Square Reset Coupon 1ea +Title : Airborne (Vit+3 Hit+5) +VIP Coupon 1 Day 1ea +-------------------------- +Weight: 1 +# +1500208# +Kick-start your adventure! +-------------------------- +A box which contains +Free Ticket for Kafra Storage 10ea +Free Ticket for Kafra Transportation 10ea +Unlimited Fly Wing 2hrs Box 1ea +-------------------------- +Weight: 1 +# +1500209# +A box containing 3 of each Lutie Lady's Pancake, Mastela Fruit Wine, Spicy Fried Bao, Steamed Bat Wing in Pumpkin, Green Salad and Fried Scorpion Tails. +-------------------------- +Weight: 1 +# +1500210# +Reward for Pre-Register 100,000 Milestone +-------------------------- +A box which contains +[Event] ROVerse Pre-Register Box 1ea +[Event] Blessing Scroll 10ea +[Event] Increase AGI Scroll 10ea +-------------------------- +Weight: 1 +# +1500211# +Reward for Pre-Register 300,000 Milestone +-------------------------- +A box which contains +Hidden Square Reset Pass 2ea +Unlimited Fly Wing 2hrs Box 2ea +[Event] Blessing Scroll 10ea +[Event] Increase AGI Scroll 10ea +[Event] Megaphone 5ea +-------------------------- +Weight: 1 +# +1500212# +Reward for Pre-Register 500,000 Milestone +-------------------------- +A box which contains +Founder Pet Scroll 2ea +[Event] Battle Manual 2ea +[Event] Bubble Gum 2ea +[Event] Boarding Halter 7D Box 1ea +[Event] Magnificat Scroll 2ea +-------------------------- +Weight: 1 +# +1500213# +Reward for Pre-Register 700,000 Milestone +-------------------------- +A box which contains +Founder Pet Scroll 2ea +[Event] Assorted Cooking Box 1ea +[Event] Battle Manual 3ea +[Event] Bubble Gum 3ea +[Event] Magnificat Scroll 3ea +-------------------------- +Weight: 1 +# +1500214# +Reward for Pre-Register 1,000,000 Milestone +-------------------------- +A box which contains +C Arc Angeling Hat 1ea +C Beginner Blue Backpack 1ea +[Event] Life Insurrance 5ea +[Event] Battle Manual 5ea +[Event] Bubble Gum 5ea +[Event] Token of Siegfried 5ea +-------------------------- +Weight: 1 +# +1500215# +A box containing one Unlimited Fly Wing, which can be used for 2 Hours. +-------------------------- +Rental Item +The wings cut from fly to be made into enchanted item. You can warp anywhere on the map using this item. +-------------------------- +Weight: 1 +# +1500216# +Prepare to embark on an epic gaming odyssey like no other! +-------------------------- +A box which contains +Founder Pet Scroll 1ea +Unlimited Fly Wing 2Hrs 1ea +Battle Manual 5ea +Bubble Gum 5ea +Small Mana Potion 5ea +-------------------------- +Weight: 1 +# +1500217# +Prepare to embark on an epic gaming odyssey like no other! +-------------------------- +A box which contains +Title : Glory (Allstatus + 1) +C Angel Wing Ears (Middle) +Adamantine Blessing 18ea +Founder Pet Scroll 3ea +Unlimited Fly Wing 2Hrs 2ea +Battle Manual 10ea +Bubble Gum 10ea +-------------------------- +Weight: 1 +# +1500218# +Prepare to embark on an epic gaming odyssey like no other! +-------------------------- +A box which contains +Title : Protector of Midgard (Allstatus + 1) +Moonstone Point 306ea +New Pet Scroll 3ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +Elunium Box(5) 1ea +Oridecon Box(5) 1ea +Unlimited Fly Wing 2Hrs 1ea +Increase Agility Scroll Lv 10 10ea +Blessing Scroll Lv 10 10ea +-------------------------- +Weight: 1 +# +1500219# +Prepare to embark on an epic gaming odyssey like no other! +-------------------------- +A box which contains +Title : Noblesse (Allstatus + 3) +Moonstone Point 1060ea +Gold Costume Box 1ea +Adamantine Blessing 190ea +[R]Pet Spirit Guarantee Scroll 5ea +Zeny Random Box 3ea +Worn Out Limit Break Scroll 1ea +Automatic Player Box 7 Days +VIP Coupon 30 Days 1ea +-------------------------- +Weight: 1 +# +1500220# +Prepare to embark on an epic gaming odyssey like no other! +-------------------------- +A box which contains +Title : Founder (Allstatus + 5) +Moonstone Point 3240ea +Platinum Costume Box +Adamantine Blessing 590ea +[R]Pet Spirit Guarantee Scroll 15ea +Zeny Random Box 15ea +Worn Out Limit Break Scroll 5ea +Inventory Expansion Voucher 1ea +Premium Reset Stone Box 1ea +Neuralizer Box 1ea +-------------------------- +Weight: 1 +# +1500221# +The chest brims with gold, carrying a weight that suggests it holds a multitude of coins. +-------------------------- +Type: Container +Effect: Random 10000 ~ 100000 Zeny +Weight: 2 +# +1500222# +A box containing 1 Giant Fly Wing duration 3 days. +-------------------------- +Rental Item +Enchanted giant wing which lived in ancient times. Can warp to any place on the map. +-------------------------- +Weight: 1 +# +1500223# +A box containing 3 pieces of Costumes. +When used, you can get random one 1 of 3 the following Costumes. +-------------------------- +[Obtainable Items] +C Flying Angel (Upper) +C Angel Wing Ears (Middle) +C Archangel Wing (Garment) +-------------------------- +Weight: 1 +# +1500224# +A box containing 3 pieces of Costumes. +When used, you can get random one 1 of 3 the following Costumes. +-------------------------- +[Obtainable Items] +C Angel of Happiness (Upper) +C Happiness Angel Ears (Middle) +C Wing of Happiness (Garment) +-------------------------- +Weight: 1 +# +1500225# +A box full of good memories. You will get puzzle pieces of memories in a form of hats that really make an impression on your feelings. +-------------------------- +Weight: 1 +# +1500226# +A scroll containing [Event] pet scroll inside +Gives you the opportunity to randomly obtain a new pet egg. +-------------------------- +Uncommon Egg +Rare Egg +Epic Egg +-------------------------- +Weight: 0 +# +1500227# +A box containing one Unlimited Fly Wing, which can be used for 2 Hours. +-------------------------- +Rental Item +The wings cut from fly to be made into enchanted item. You can warp anywhere on the map using this item. +-------------------------- +Weight: 1 +# +1500228# +An exclusive ticket that can be exchanged for the Roverse Ascension Box at the NPC Universal Exchange. +-------------------------- +Take it and head toUniversal Exchangepayon,148,155,0,100,0,0 +Payon 148 155 +-------------------------- +Weight: 1 +# +1500229# +A comprehensive starter package designed to aid new adventurers in their journeys. Inside, you'll find +-------------------------- +New Pet Scroll 1ea +Unlimited Fly Wing Box 1day 1ea +[Event] Battle Manual 1ea +[Event] Job Manual 1ea +[Event] Blue Potion Box(10) 1ea +-------------------------- +Weight: 1 +# +1500230# +A comprehensive starter package designed to aid new adventurers in their journeys. Inside, you'll find +-------------------------- +New Pet Scroll 1ea +Unlimited Fly Wing Box 1day 1ea +[Event] Battle Manual 2ea +[Event] Job Manual 2ea +[Event] Light Orange Potion Box 3ea +[Event] Blue Potion Box(10) 5ea +-------------------------- +Weight: 1 +# +1500231# +A comprehensive starter package designed to aid new adventurers in their journeys. Inside, you'll find +-------------------------- +Free Ticket for Kafra Storage 20ea +Free Ticket for Kafra Transportation 20ea +[Event] Battle Manual 5ea +[Event] Job Manual 5ea +[Event] Life Insurance 5ea +[Event] Token Of Siegfried 5ea +[Event] Kafra Card 10ea +[Event] Blessing Scroll 10ea +[Event] Agi Scroll 10ea +-------------------------- +Weight: 1 +# +1500232# +Unleash your inner miner with the Special Miner Package, designed to enhance your mining experience. This pack includes +-------------------------- +Adamantine Blessing 18ea +Elunium Box(5) 3ea +Oridecon Box(5) 5ea +Costume Light Bulb Hairband 1ea +Mining Pickaxe 1ea +-------------------------- +Weight: 1 +# +1500233# +Unleash your true potential at level 30 with this exclusive package. +-------------------------- +HE Battle Manual 2ea +Magnificat Scroll Box(10) 2ea +Dungeon Teleport Scroll 10ea +1 Day Unlimited Concentration Potion Box 1ea +Unlimited Fly Wing Box (2 Hrs) 1ea +[Event] Light Orange Potion Box 5ea +-------------------------- +Level Requirement: 30 +Weight: 1 +# +1500234# +Unleash your true potential at level 70 with this exclusive package. +-------------------------- +HE Battle Manual 3ea +Magnificat Scroll Box(10) 1ea +Dungeon Teleport Scroll 20ea +1 Day Unlimited Awakening Potion Box 2ea +Unlimited Fly Wing Box (1 Day) 2ea +Life Insurance Box(10) 1ea +[Event] White Potion Box 5ea +-------------------------- +Level Requirement: 70 +Weight: 1 +# +1500235# +Unleash your true potential at level 90 with this exclusive package. +-------------------------- +HE Battle Manual 3ea +Magnificat Scroll Box(10) 1ea +Dungeon Teleport Scroll 20ea +1 Day Unlimited Berserk Potion Box 2ea +Unlimited Fly Wing Box (1 Day) 3ea +Life Insurance Box(10) 2ea +Token of Siegfried Box(10) 1ea +[Event] White Potion Box 5ea +-------------------------- +Level Requirement: 90 +Weight: 1 +# +1500236# +Unlock a menagerie of companions with the New Pet Scroll Package. +Instantly summon a diverse array of pets to accompany you on your adventures and enjoy their unique abilities. +-------------------------- +Pet Incubator 20ea +New Pet Scroll 20ea +-------------------------- +Weight: 1 +# +1500237# +Scroll that has the record of using Level 5 Magnificat. It has beautiful letters written on the scroll. +-------------------------- +Weight: 1 +# +1500238# +A box containing 10 Level 5 [Event] Magnificat Scroll. Feel holy magic in the box. +-------------------------- +Weight: 1 +# +1500239# +Created from the tears or sweat of the god of Poring, this elixir instantly restores 1000 points of stamina: +-------------------------- +Type: consumable +Weight: 0 +# +1500240# +A stunning obsidian-hued egg with a graceful tail resembling that of a cat +When opened, grants you a chance to receive valuable rewards +-------------------------- +Type: Item Giver +Weight: 1 +# +1500241# +Beginning packages for the people. To help determine which items are identified for the first fight. +-------------------------- +Battle Manual 10ea +Bubble Gum 10ea +Life Insurance 10ea +Token Of Siegfried 10ea +-------------------------- +Weight: 0 +# +1500242# +Beginning packages for the people. To help determine which items are identified for the first fight. +-------------------------- +Increase Agility Scroll Box 10ea +Blessing Scroll Box 10ea +Medium Life Potion Box 3ea +Small Mana Potion 20ea +Scholar's Ring Box (3Day) +[Event] Token Of Siegfried 5ea +Unlimited Fly Wing Box (2Hrs) 5ea +-------------------------- +Weight: 0 +# +1500243# +Rental Items for 3 days +A box contains 1 Scholar's Ring Please take a care because is fragile! +-------------------------- +A scholar's ring bestows upon its wearer a full comprehension of any written document or spoken dialect, irrespective of whether they have previously encountered it or not. +-------------------------- +All Stats +5 +EXP + 5% Drop + 5% +Enables the use of Level 1 Teleport. +-------------------------- +Weight: 0 +# +1500244# +A box to celebrate newly joined adventurer. +This item cannot be traded with other accounts. +-------------------------- +Adventurer's Cap 1ea +[Event] Red Potion box (20) 10ea +[Event] Novice Fly Wing 50ea +Free ticket for kafra storage 10ea +Free ticket for kafra teleportation 10ea +Novice Butterfly Wing 10ea +-------------------------- +Weight: 0 +# +1500245# +A box to celebrate newly joined adventurer. +This item cannot be traded with other accounts. +-------------------------- +Pet Incubator 3ea +[Event] Concentration Potion 10ea +[Event] Agility Scroll 5ea +[Event] Blessing Scroll 5ea +Chewing Gum Box (7Day) 1ea +-------------------------- +Weight: 0 +# +1500246# +A box to celebrate newly joined adventurer. +This item cannot be traded with other accounts. +-------------------------- +[Event] Red Potion box (20) 5ea +[Event] Agility Scroll 10ea +[Event] Blessing Scroll 10ea +[Event] Novice Fly Wing 50ea +[Event] Boarding Halter 7D Box 1ea +-------------------------- +Weight: 0 +# +1500247# +A box to celebrate newly joined adventurer. +This item cannot be traded with other accounts. +-------------------------- +[Event] Orange potion Box (20) 5ea +[Event] Awakening Potion 10ea +[Event] Increase Agility Scroll 10ea +[Event] Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500248# +A box to celebrate newly joined adventurer. +This item cannot be traded with other accounts. +-------------------------- +[Event] Orange potion Box (20) 5ea +[Event] Increase Agility Scroll 10ea +[Event] Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500249# +A box to celebrate newly joined adventurer. +This item cannot be traded with other accounts. +-------------------------- +[Event] Orange potion Box (20) 5ea +[Event] Unlimited Fly Wing Box (2Hrs) 10ea +-------------------------- +Weight: 0 +# +1500250# +A box to celebrate newly joined adventurer. +This item cannot be traded with other accounts. +-------------------------- +Mining Pickaxe 1ea +Adamantine Blessing 50ea +-------------------------- +Weight: 0 +# +1500251# +A box to celebrate newly joined adventurer. +This item cannot be traded with other accounts. +-------------------------- +[Event] Mental Potion 10ea +[Event] Small mana potion 20ea +Elunium Box 1ea +Oridecon Box 1ea +-------------------------- +Weight: 0 +# +1500252# +A box to celebrate newly joined adventurer. +This item cannot be traded with other accounts. +-------------------------- +C Adventure Cat Bag 1ea +-------------------------- +Weight: 0 +# +1500253# +A box containing 1 Chewing Gum. Available for 7 Days. +-------------------------- +Rental Item +Huge balloon looking bubble gum. You can even blow it much bigger! +Caution: May seem ghetto to others. +-------------------------- +ATK +5 +MATK +5 +MDEF +2 +-------------------------- +Type: Headgear +Defense: 2 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +1500254# +A potion that refill your spirit. +-------------------------- +Type: Stat booster +Effect: MaxSP +10%, Reduces SP cost by 10% +Effect duration: 30 minutes +Weight: 1 +# +1500255# +The lucky, well-worn hat of former adventurer Mort Whimsey. +-------------------------- +HP +50 +SP +20 +FLEE +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 10 +-------------------------- +Requirement: None +# +1500256# +Rental Items +A scholar's ring bestows upon its wearer a full comprehension of any written document or spoken dialect, irrespective of whether they have previously encountered it or not. +-------------------------- +All Stats +5 +EXP + 5% Drop + 5% +Enables the use of Level 1 Teleport. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500257# +Top Up Milestone 10 ION Box +-------------------------- +Level 10 Blessing Scroll 5ea +Level 10 Increase Agility Scroll 5ea +-------------------------- +Weight: 0 +# +1500258# +Top Up Milestone 30 ION Box +-------------------------- +New Pet Scroll 3ea +HE Battle Manual 2ea +HE Bubble Gum 2ea +-------------------------- +Weight: 0 +# +1500259# +Top Up Milestone 50 ION Box +-------------------------- +[R] Pet Spirit Guarantee Scroll 3ea +Elite Siege Supply Box 2ea +-------------------------- +Weight: 0 +# +1500260# +Top Up Milestone 100 ION Box +-------------------------- +Small Mana Potion 15ea +Mental Potion 15ea +Unlimited Fly Wing Box (2Hrs) 3ea +Adamantine Blessing 49ea +-------------------------- +Weight: 0 +# +1500261# +Top Up Milestone 300 ION Box +-------------------------- +Adamantine Blessing 149ea +Enriched Elunium 1ea +Enriched Oridecon 1ea +Costume Reginleif Hairband 1ea +-------------------------- +Weight: 0 +# +1500262# +A box that contains. +-------------------------- +Small Life Potion 5ea +Small Mana Potion 5ea +Battle Manual 5ea +Bubble Gum 5ea +Life Insurance 10ea +Token of Siegfriend 10ea +-------------------------- +Weight: 0 +# +1500264# +A box that contains. +-------------------------- +[Event] Orange Potion Box (50) 1ea +Small Life Potion 10ea +Small Mana Potion 10ea +Battle Manual 5ea +Bubble Gum 5ea +[Event] Kafra Card\t 5ea +-------------------------- +Weight: 0 +# +1500265# +Top Up Milestone 10 ION Box II +-------------------------- +Level 10 Blessing Scroll 5ea +Level 10 Increase Agility Scroll 5ea +-------------------------- +Weight: 0 +# +1500266# +Top Up Milestone 30 ION Box II +-------------------------- +New Pet Scroll 3ea +Rare Ore Convex Mirror\t15ea +Legendary Ore Convex Mirror 15ea +-------------------------- +Weight: 0 +# +1500267# +Top Up Milestone 50 ION Box II +-------------------------- +[R] Pet Spirit Guarantee Scroll 3ea +Elite Siege Supply Box\t2ea +-------------------------- +Weight: 0 +# +1500268# +Top Up Milestone 100 ION Box II +-------------------------- +Small Mana Potion 15ea +Mental Potion 15ea +Sparkling Candy 10ea +Ghostring Scroll 10ea +-------------------------- +Weight: 0 +# +1500269# +Top Up Milestone 300 ION Box II +-------------------------- +Adamantine Blessing 149ea +Enriched Elunium 1ea +Enriched Oridecon 1ea +Costume Baseball Cap 1ea +-------------------------- +Weight: 0 +# +1500270# +A box which contains +-------------------------- +Boarding Halter Box 3D 1ea +[R] Pet Guaranteed Scroll 1ea +Unlimited Fly Wing 2hrs 5ea +Mental Potion 10ea +Small Mana Potion 10ea +-------------------------- +Weight: 0 +# +1500271# +A box which contains +-------------------------- +Small Life Potion 15ea +Medium Life Potion 15ea +Mysterious Life Potion 15ea +-------------------------- +Weight: 0 +# +1500272# +A box which contains +-------------------------- +HE Battle Manual 1ea +HE Bubble Gum 1ea +-------------------------- +Weight: 0 +# +1500273# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 5ea +-------------------------- +Weight: 0 +# +1500274# +A box which contains +-------------------------- +Small Mana Potion 5ea +Mental Potion 5ea +Hidden Square Reset Pass 5ea +-------------------------- +Weight: 0 +# +1500275# +A box which contains +-------------------------- +Miracle Medicine 1ea +-------------------------- +Weight: 0 +# +1500276# +A box which contains +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Adamantine Blessing 30ea +-------------------------- +Weight: 0 +# +1500277# +A box which contains +-------------------------- +[R] Pet Guaranteed Scroll 4ea +Rare Pet Spirit Fragment 10ea +-------------------------- +Weight: 0 +# +1500278# +A box which contains +-------------------------- +Infinity Drink 1ea +Red Booster 1ea +Limit Power Booster 1ea +Mystic Powder 1ea +Tyr's Blessing 1ea +-------------------------- +Weight: 0 +# +1500279# +A box which contains +-------------------------- +Mental Potion 10ea +Small Mana Potion 10ea +-------------------------- +Weight: 0 +# +1500280# +A box which contains +-------------------------- +Infinity Drink 1ea +Red Booster 1ea +Limit Power Booster 1ea +Mystic Powder 1ea +Tyr's Blessing 1ea +-------------------------- +Weight: 0 +# +1500281# +A box which contains +-------------------------- +HE Battle Manual 3ea +HE Bubble Gum 3ea +-------------------------- +Weight: 0 +# +1500282# +A box which contains +-------------------------- +Small Life Potion 30ea +Medium Life Potion 30ea +Mysterious Life Potion 30ea +-------------------------- +Weight: 0 +# +1500283# +A box which contains +-------------------------- +C Eremes Scarf (Black) 1ea +Enriched Elunium 1ea +Enriched Oridecon 1ea +Boarding Halter Box 7Days 1ea +Mental Potion 15ea +Small Mana Potion 15ea +Adamantine Blessing 60ea +-------------------------- +Weight: 0 +# +1500284# +A box which contains +-------------------------- +Infinity Drink 10ea +Red Booster 10ea +Limit Power Booster 10ea +Mystic Powder 10ea +Tyr's Blessing 10ea +-------------------------- +Weight: 0 +# +1500285# +A box which contains +-------------------------- +Mental Potion 15ea +Small Mana Potion 15ea +[R] Pet Guaranteed Scroll 10ea +Legendary Ore Convex Mirror 10ea +Rare Ore Convex Mirror 20ea +-------------------------- +Weight: 0 +# +1500286# +A box which contains +-------------------------- +HE Battle Manual 5ea +HE Bubble Gum 5ea +HD Bradium 3ea +HD Carnium 3ea +-------------------------- +Weight: 0 +# +1500287# +A box which contains +-------------------------- +Costume Singing Bird 1ea +Automatic Battle Box 30 Day 1ea +HD Bradium 3ea +HD Carnium 3ea +-------------------------- +Weight: 0 +# +1500288# +A box which contains +-------------------------- +Title - Safety Master (Allstats+3) +Costume Safety Helmet 1ea +Enriched Elunium 1ea +Enriched Oridecon 1ea +Gym pass 1ea +Inventory Extension Coupon 1ea +Worn Out Limit Break Scroll 1ea +Battle Manual & Bubble Gum 10ea +New pet scroll 10ea +-------------------------- +Weight: 0 +# +1500289# +A box which contains +-------------------------- +Adamantine Blessing 22ea +New pet scroll 10ea +-------------------------- +Weight: 0 +# +1500290# +A box which contains +-------------------------- +Adamantine Blessing 33ea +New pet scroll 10ea +-------------------------- +Weight: 0 +# +1500291# +A box which contains +-------------------------- +Adamantine Blessing 70ea +Epic Pet Spirit Fragment 20ea +Blessed Adamantine Dust 10ea +-------------------------- +Weight: 0 +# +1500292# +A box which contains +-------------------------- +Adamantine Blessing 80ea +Blessed Adamantine Dust 10ea +Legendary Pet Spirit Fragment 3ea +-------------------------- +Weight: 0 +# +1500293# +A box which contains +-------------------------- +Adamantine Blessing 90ea +Blessed Adamantine Dust 10ea +-------------------------- +Weight: 0 +# +1500294# +A box which contains +-------------------------- +Gym pass 1ea +Inventory Extension Coupon 1ea +Legendary Pet Spirit Fragment 5ea +Epic Pet Spirit Fragment 30ea +Adamantine Blessing 100ea +-------------------------- +Weight: 0 +# +1500295# +A durable safety helmet created to offer some protection from accidents. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1500296# +Invitation Book to Join Battle Pass Season 1, created for everyone to have fun and receive various rewards. Use it to activate the Battle Pass. +-------------------------- +Weight: 0 +# +1500297# +Sparkling crystal, everyone desires to possess it for admiration. +Use this Crystals to earn 1 Battlepass point. +-------------------------- +Weight: 0 +# +1500298# +Ordinary common powder fragments, when collected in full, will transform into a Crystal. +Collect 100 Crystal Powder to transform into a Battlepass Crystal. +-------------------------- +Weight: 0 +# +1500299# +In the vast expanse of space, Saturn's rings doth not bear the same solitude as this Egg. +-------------------------- +Type: Item Giver +Weight: 1 +# +1500300# +Use it for activate title Assassin No.1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500301# +Use it for activate title Hunter No.1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500302# +Use it for activate title Knight No.1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500303# +Use it for activate title Priest No.1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500304# +Use it for activate title Blacksmith No.1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500305# +Use it for activate title Wizard No.1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500306# +A box which contains +-------------------------- +Battle Manual 10ea +Bubble Gum 10ea +Life Insurance 10ea +Token of Siegfriend 10ea +-------------------------- +Weight: 0 +# +1500307# +A box which contains +-------------------------- +Increase Agility Scroll Box 10ea +Blessing Scroll Box 10ea +Medium Life Potion Box 3ea +Small Mana Potion 20ea +Scholar's Ring Box (7Day) +[R] Pet Spirit Guarantee Scroll 2ea +Unlimited Fly Wing Box (2Hrs) 5ea +-------------------------- +Weight: 0 +# +1500308# +A box which contains +-------------------------- +Title : Protector of Midgard (Allstatus + 1) +New Pet Scroll 3ea +Free ticket for kafra Teleportation 10ea +Free ticket for kafra storage 10ea +Elunium Box 1ea +Oridecon Box 1ea +Unlimited Fly Wing Box (2Hrs) 1ea +Level 10 Increase Agility Scroll 10ea +Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500309# +A box which contains +-------------------------- +Gold Costume Box 1ea +Adamantine Blessing 190ea +[R] Pet Spirit Guarantee Scroll 5ea +Zeny Box 3ea +Worn Out Limit Break Scroll 1ea +Automatic Player Box 7D 1ea +-------------------------- +Weight: 0 +# +1500310# +A box which contains +-------------------------- +Title : Noblesse (Allstatus + 3) +-------------------------- +Weight: 0 +# +1500311# +Rental Items for 7 days +A box contains 1 Scholar's Ring Please take a care because is fragile! +-------------------------- +A scholar's ring bestows upon its wearer a full comprehension of any written document or spoken dialect, irrespective of whether they have previously encountered it or not. +-------------------------- +All Stats +5 +EXP + 5% Drop + 5% +Enables the use of Level 1 Teleport. +-------------------------- +Weight: 0 +# +1500312# +Cutie devil make you inlove with her +Original item By Landverse team +-------------------------- +Collection Effect +Increase physical damage against enemies of all type by 1% +MATK +1% +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1500313# +Mysterious pumpkin mask which are said to very delicious +Original item By Landverse team +-------------------------- +Reduces Neutral elemental damage received by 1% +Reduce damage from Long Range attacks by 1% +-------------------------- +Type: Headgear +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +1500314# +A ball with weird face but color like a pumpkin When opened +grants you a chance to receive valuable rewards +-------------------------- +Type: Item Giver +Weight: 1 +# +1500315# +A scroll with hidden transformation powers. +Transforms the user into Skelcycle +-------------------------- +Weight: 1 +# +1500316# +Cutie devil make you inlove with her +Original item By Landverse team +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1500317# +Mysterious pumpkin mask which are said to very delicious +Original item By Landverse team +-------------------------- +ATK +5 +MATK +5 +ASPD + 2% +Increases experience gained from defeating Undead race monsters by 3%. + +Every effect will be remove on 20 November 2025 Before MA. +-------------------------- +Type: Headgear +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +1500318# +A ball with weird face but color like a pumpkin When opened +grants you a chance to receive valuable rewards +-------------------------- +Type: Item Giver +Weight: 1 +# +1500319# +A deceptive crown that was once used to summon monsters. +-------------------------- +INT +4 +Mdef +10 +Decreases Variable Casting Time by 10%. +If upgrade level is +7 or higher +increase your MATK by 1%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper, Middle +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 85 +# +1500320# +A large knitted hat that can be used to conceal long hair. +-------------------------- +MDEF +2 +-------------------------- +For each 2 Refine Levels: +MATK +1% +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +1500321# +A gangster's red scarf. +-------------------------- +ATK +5 +-------------------------- +When equipped by Rogue classes: +Enables Level 1 Gangster Paradise. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +1500322# +A gaping fish head fashioned into a hat. +A nasty stench is released whenever it opens its mouth. +-------------------------- +Random chance to auto-cast Level 1 Frost Weapon when dealing physical damage. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500323# +A hat that celebrates luck provided by the stars. +-------------------------- +LUK +2 +MDEF +5 +Luk increases by 1 for each refine level above 4 +-------------------------- +Type: Headgear +Defense: 3 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 40 +# +1500324# +A hairpin that looks like a spinning windmill, but it doesn't generate any power, though. +-------------------------- +AGI +2 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +1500325# +A training cap that lends a sense of quiet and stability to the wearer. +-------------------------- +DEX +1 +AGI +1 +MDEF +3 +-------------------------- +Increases HP Recovery Rate by 5%. +Increases SP Recovery Rate by 3%. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +1500326# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +STR +1 +-------------------------- +For each Refine Level: +HP +10 +-------------------------- +Refine Level +7: +STR +1 +-------------------------- +Refine Level +9: +STR +1 +-------------------------- +When equipped with [Event] Power Shadow Pendant: +STR +1 +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +1500327# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +STR +1 +-------------------------- +For each Refine Level: +ATK +1 +HP +10 +-------------------------- +When equipped with [Event] Power Shadow Earring: +STR +1 +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +1500328# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +DEX +1 +-------------------------- +For each Refine Level: +MAX HP +10 +-------------------------- +Refine Level +7: +DEX +1 +-------------------------- +Refine Level +9: +DEX +1 +-------------------------- +When equipped with [Event] Dexterous Shadow Weapon: +DEX +1 +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +1500329# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +DEX +1 +-------------------------- +For each Refine Level: +HIT +1 +ATK +1 +MATK +1 +-------------------------- +When equipped with [Event] Dexterous Shadow Armor: +DEX +1 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +1500330# +This well written, detailed manual explains High Efficiency battle methods. +EXP rate increases to 200% for 15 minutes. +-------------------------- +Weight: 1 +# +1500331# +A box that contains Trans Scroll Skelcycle. Item will be available for a week. +-------------------------- +Weight: 0 +# +1500332# +A box that contains Trans Scroll Skelcycle. Item will be available for a day. +-------------------------- +Weight: 0 +# +1500333# +A box that contains +Pumpkin Candy Scroll 10ea +Evil Cookie 100ea +-------------------------- +Type: Item Giver +Weight: 0 +# +1500334# +A box that contains. +-------------------------- +Magnolia Hat[1] 1ea +Small Life Potion 5ea +Small Mana Potion 5ea +Battle Manual 5ea +Bubble Gum 5ea +Sesame Pastry 10ea +-------------------------- +Weight: 0 +# +1500335# +Top Up Milestone 10 ION Box III +-------------------------- +Level 10 Blessing Scroll 5ea +Level 10 Increase Agility Scroll 5ea +-------------------------- +Weight: 0 +# +1500336# +Top Up Milestone 30 ION Box III +-------------------------- +New Pet Scroll 3ea +Rare Ore Convex Mirror\t15ea +Legendary Ore Convex Mirror 15ea +-------------------------- +Weight: 0 +# +1500337# +Top Up Milestone 50 ION Box III +-------------------------- +[R] Pet Spirit Guarantee Scroll 3ea +Elite Siege Supply Box\t2ea +-------------------------- +Weight: 0 +# +1500338# +Top Up Milestone 100 ION Box III +-------------------------- +Small Mana Potion 15ea +Mental Potion 15ea +Full SwingK 10ea +Mana Plus 10ea +-------------------------- +Weight: 0 +# +1500339# +Top Up Milestone 300 ION Box III +-------------------------- +Adamantine Blessing 149ea +Enriched Elunium 1ea +Enriched Oridecon 1ea +Costume Loyal Servant of Morroc 1ea +-------------------------- +Weight: 0 +# +1500340# +A box containing +-------------------------- +Chilly Breath 1ea +Elite Siege Supply Box 5ea +Small Mana Potion 15ea +-------------------------- +Weight: 0 +# +1500341# +A box containing +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Adamantine Blessing 100ea +Unlimited Fly Wing Box (1 Day) 3ea +Flapping Angel Wing 1ea +Archangel Wing [1] 1ea +-------------------------- +Weight: 0 +# +1500342# +A box containing +-------------------------- +Sword Master 333 Crown[1] 1ea +[Event] Elite Siege Supply Box 7ea +Enriched Oridecon 7ea +Enriched Elunium 7ea +Adamantine Blessing 70ea +-------------------------- +Weight: 0 +# +1500343# +A box containing +-------------------------- +Sword Master 333 Crown[1] 1ea +[Event] Elite Siege Supply Box 15ea +Enriched Oridecon 15ea +Enriched Elunium 15ea +Adamantine Blessing 250ea +-------------------------- +Weight: 0 +# +1500344# +A box containing 100 [Event] Siege White Potions and 50 [Event] Siege Blue Potions. +Siege White Potion - Heals 400~500 Hit Point. HP Affected by Regeneration Potion. +Siege Blue Potion - Restores 50-70 SP. +-------------------------- +Weight: 1 +# +1500345# +A White Potion which weighs less than normal. +-------------------------- +Type: Restorative +Heal: 400 ~ 500 HP +Weight: 10 +# +1500346# +A Blue Potion which weighs less than normal. +-------------------------- +Type: Restorative +Heal: 50 ~ 70 SP +Weight: 10 +# +1500347# +A crown given to sword saint whose master of any weapons. +-------------------------- +ATK +3 +MATK +3 +All Stats +3 +SP comsuption -3% +Reduces the cast delay of skills by 3% +Reduces variable casting time by 3% +Increases ASPD by 3%. +Reduces damage from DemiHuman monster by 3% +-------------------------- +Type: Headgear +Defense: 30 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +1500348# +A pair of wings from a golden angel. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1500349# +A hairband adorned with what appears to be the wings of a golden angel. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1500350# +A box that contains: +Rental Item +1 All in One Ring +Duration: 7 Days after opening. +A Jewelry Ring +that contains a +3 Seal Magic Spell. +Enables the use of Level 1 Heal +and Level 1 Teleport. +Protects from skill cast interruption. +All Stats +1 +Increases casting time by 10%. +-------------------------- +Type: Accessory +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +1500351# +Rental Item +A Jewelry Ring that contains a 3 Seal Magic Spell. +-------------------------- +All Stats +1 +-------------------------- +Enables the use of Level 1 Heal. +Enables the use of Level 1 Teleport. +-------------------------- +Protects from skill cast interruption. +-------------------------- +Increases Variable Casting Time of all skills by 10%. +-------------------------- +When VIP status active: +All Stats +1 +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500352# +A box containing 1 Automatic Player Box that can be used for 7 days. +-------------------------- +Rental Item. +-------------------------- +For use in Autoattack System. +-------------------------- +Weight: 1 +# +1500353# +A gadget specifically designed for the Autoattack system. +-------------------------- +Weight: 1 +# +1500354# +Rental Items for 7 days +A box containing 1 Beholder Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Formless monsters. +-------------------------- +Weight: 1 +# +1500355# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Formless race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500356# +Rental Items for 7 days +A box containing 1 Hallow Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Undead race monsters. +-------------------------- +Weight: 1 +# +1500357# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Undead race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500358# +Rental Items for 7 days +A box containing 1 Clamorous Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Brute race monsters. +-------------------------- +Weight: 1 +# +1500359# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Brute race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500360# +Rental Items for 7 days +A box containing 1 Chemical Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Plant race monsters. +-------------------------- +Weight: 1 +# +1500361# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Plant race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500362# +Rental Items for 7 days +A box containing 1 Insecticide Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Insect race monsters. +-------------------------- +Weight: 1 +# +1500363# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Insect race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500364# +Rental Items for 7 days +A box containing 1 Fisher Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Fish monsters monsters. +-------------------------- +Weight: 1 +# +1500365# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Fish race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500366# +Rental Items for 7 days +A box containing 1 Decussate Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Demon race monsters. +-------------------------- +Weight: 1 +# +1500367# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Demon race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500368# +Rental Items for 7 days +A box containing 1 Bloody Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Demi-Human race monsters. +-------------------------- +Weight: 1 +# +1500369# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Demi-Human race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500370# +Rental Items for 7 days +A box containing 1 Satanic Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Angel monster. +-------------------------- +Weight: 1 +# +1500371# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Angel race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500372# +Rental Items for 7 days +A box containing 1 Dragon Ring. Please take a care because is fragile! +A ring that has special power ineach shape. +Increases 15% experience from Dragon monster. +-------------------------- +Weight: 1 +# +1500373# +Rental Item +A ring that has special power ineach shape. +-------------------------- +Increases experience gained from defeating Dragon race monsters by 15%. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500374# +Unleash the mysteries of the ocean as you unveil a collection of mesmerizing aquatic creatures +When opened, grants you a chance to receive valuable rewards +-------------------------- +Type: Item Giver +Weight: 1 +# +1500375# +A box that contains +Enriched Elunium 1ea +Enriched Oridecon 1ea +-------------------------- +Enriched Elunium +Enriched Oridecon +Cannot be traded +-------------------------- +Type: Item Giver +Weight: 0 +# +1500376# +Can only be used in WoE & PVP area. +A White Potion which weighs less than normal. +-------------------------- +Type: Restorative +Heal: 400 ~ 500 HP +Weight: 10 +# +1500377# +Can only be used in WoE & PVP area. +A Blue Potion which weighs less than normal. +-------------------------- +Type: Restorative +Heal: 50 ~ 70 SP +Weight: 10 +# +1500378# +A stunning obsidian-hued egg with a graceful tail resembling that of a Rabbit +When opened, grants you a chance to receive valuable rewards +-------------------------- +Type: Item Giver +Weight: 1 +# +1500379# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +A Box containing +STR Stone (Upper) +INT Stone (Upper) +AGI Stone (Upper) +DEX Stone (Upper) +VIT Stone (Upper) +LUK Stone (Upper) +Recovery Stone (Upper) +Recovery Skill Stone (Upper) +Large Stone (Upper) +Medium Stone (Upper) +Small Stone (Upper) +ATK Stone (Middle) +MATK Stone (Middle) +Recovery Stone (Middle) +HP Stone (Middle) +SP Stone (Middle) +HIT Stone (Lower) +FLEE Stone (Lower) +Recovery Stone (Lower) +ASPD Stone (Garment) +HP Absorption Stone (Garment) +SP Absorption Stone (Garment) +Minor Casting Stone (Garment) +-------------------------- +Weight: 0 +# +1500380# +A box that contains. +-------------------------- +[Event] Novice Blazing Sun Box (30Day) 1ea +[Event] Battle Manual & Bubble Gum 5ea +[Event] Small Life Potion 5ea +[Event] Small Mana Potion 5ea +-------------------------- +Weight: 0 +# +1500381# +A blazing small Sun Much powerful than it looks Eye protection recommended. +-------------------------- +HP +100 +SP +100 +-------------------------- +When equipped with Figure +All Stats +3 +MATK +15 +ATK +15 +ASPD +2 +Variable Cast Time - 10% +SP Recovery + 10% +HP Recovery + 10% +Increases Movement Speed by 25% +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1-50 +# +1500382# +Rental Items for 30 days +A box contains 1 Novice Blazing Sun +-------------------------- +HP +100 +SP +100 +-------------------------- +When equipped with Figure +All Stats +3 +MATK +15 +ATK +15 +ASPD +2 +Variable Cast Time - 10% +SP Recovery + 10% +HP Recovery + 10% +Increases Movement Speed by 25% +-------------------------- +Weight: 0 +# +1500383# +[Dec]Top Up Milestone 10 ION Box +-------------------------- +Level 10 Blessing Scroll 10ea +Level 10 Increase Agility Scroll 10ea +Small Life Potion 10ea +-------------------------- +Weight: 0 +# +1500384# +[Dec]Top Up Milestone 30 ION Box +-------------------------- +[Event] New Pet Scroll 5ea +Rare Ore Convex Mirror\t15ea +Legendary Ore Convex Mirror 15ea +-------------------------- +Weight: 0 +# +1500385# +[Dec]Top Up Milestone 50 ION Box +-------------------------- +[R] Pet Spirit Guarantee Scroll 3ea +Elite Siege Supply Box 5ea +-------------------------- +Weight: 0 +# +1500386# +[Dec]Top Up Milestone 100 ION Box +-------------------------- +Small Mana Potion 15ea +Mental Potion 15ea +[Event] HP Increase Potion (Medium) 15ea +[Event] SP Increase Potion (Medium) 15ea +Adamantine Blessing 79ea +-------------------------- +Weight: 0 +# +1500387# +[Dec]Top Up Milestone 300 ION Box +-------------------------- +Adamantine Blessing 189ea +Enriched Elunium 1ea +Enriched Oridecon 1ea +Costume Protect Cloth 1ea +-------------------------- +Weight: 0 +# +1500388# +A potion that can Increases MaxHP. +-------------------------- +Type: Restorative +Heal: 2% HP +Effect: Moderately increases MaxHP +Effect duration: 500 sec +Weight: 4 +# +1500389# +A bottle of potion that can Increases MaxSP. +-------------------------- +Type: Restorative +Heal: 4% SP +Effect: Moderately increases MaxSP +Effect duration: 500 sec +Weight: 4 +# +1500390# +A box that contains. +-------------------------- +[Event] HE Battle Manual 4ea +[Event] HE Bubble Gum 4ea +[Event] Medium Life Potion 10ea +-------------------------- +Weight: 0 +# +1500391# +A High Efficiency bubble gum that packs double the punch. +Item drop rate increases by 200% for 15 minutes. +-------------------------- +Weight: 1 +# +1500392# +A box which contains +-------------------------- +Boarding Halter Box 3D 1ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Additional +1 Adam Blessing for each quest completed from the Daily Board\t +-------------------------- +Weight: 0 +# +1500393# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Orange Potion Box(50) 2ea +[Event] Blue Potion Box(10) 2ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500394# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500395# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Legendary Ore Convex Mirror 2ea +-------------------------- +Weight: 0 +# +1500396# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500397# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500398# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500399# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Weight: 0 +# +1500400# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Orange Potion Box(50) 2ea +[Event] Blue Potion Box(10) 2ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500401# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500402# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Legendary Ore Convex Mirror 2ea +-------------------------- +Weight: 0 +# +1500403# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500404# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500405# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500406# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Boarding Halter Box 3D 1ea +-------------------------- +Weight: 0 +# +1500407# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Orange Potion Box(50) 2ea +[Event] Blue Potion Box(10) 2ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500408# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500409# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Legendary Ore Convex Mirror 2ea +-------------------------- +Weight: 0 +# +1500410# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500411# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500412# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500413# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Weight: 0 +# +1500414# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Orange Potion Box(50) 2ea +[Event] Blue Potion Box(10) 2ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500415# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500416# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Legendary Ore Convex Mirror 2ea +-------------------------- +Weight: 0 +# +1500417# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500418# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500419# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500420# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Boarding Halter Box 3D 1ea +-------------------------- +Weight: 0 +# +1500421# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Orange Potion Box(50) 2ea +[Event] Blue Potion Box(10) 2ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500422# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500423# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Legendary Ore Convex Mirror 2ea +-------------------------- +Weight: 0 +# +1500424# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500425# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500426# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500427# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Weight: 0 +# +1500428# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Orange Potion Box(50) 2ea +[Event] Blue Potion Box(10) 2ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500429# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500430# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Legendary Ore Convex Mirror 2ea +-------------------------- +Weight: 0 +# +1500431# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500432# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500433# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500434# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Boarding Halter Box 3D 1ea +-------------------------- +Weight: 0 +# +1500435# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Orange Potion Box(50) 2ea +[Event] Blue Potion Box(10) 2ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500436# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500437# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Legendary Ore Convex Mirror 2ea +-------------------------- +Weight: 0 +# +1500438# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500439# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500440# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500441# +A box which contains +-------------------------- +[Event] Costume Bell Ribbon 1ea +[R] Pet Guaranteed Scroll 1ea +-------------------------- +Weight: 0 +# +1500442# +Created from all ultimate ingredients. +All Stats +10, ATK +30, MATK +30 for 30 minutes. +If the character KO'ed in battle, this effect will not disappear!. +-------------------------- +Weight: 1 +# +1500443# +A box which contains +-------------------------- +[R] Pet Guaranteed Scroll 1ea +Unlimited Fly Wing 2hrs 5ea +Small Mana Potion 5ea +Adamantine Blessing 30ea +-------------------------- +Weight: 0 +# +1500444# +A box which contains +-------------------------- +Small Life Potion 15ea +Medium Life Potion 15ea +Mysterious Life Potion 15ea +-------------------------- +Weight: 0 +# +1500445# +A box which contains +-------------------------- +[Event] HE Battle Manual 1ea +[Event] HE Bubble Gum 1ea +Legendary Ore Convex Mirror 10ea +-------------------------- +Weight: 0 +# +1500446# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 5ea +Advanced WoE Supply Box 2ea +Blessing Ore Convex Mirror 10ea +-------------------------- +Weight: 0 +# +1500447# +A box which contains +-------------------------- +Small Mana Potion 5ea +Mental Potion 5ea +Hidden Square Reset Pass 5ea +-------------------------- +Weight: 0 +# +1500448# +A box which contains +-------------------------- +Small Life Potion 30ea +Medium Life Potion 30ea +Mysterious Life Potion 30ea +-------------------------- +Weight: 0 +# +1500449# +A box which contains +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Adamantine Blessing 30ea +-------------------------- +Weight: 0 +# +1500450# +A box which contains +-------------------------- +[R] Pet Guaranteed Scroll 4ea +Rare Pet Spirit Fragment 10ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500451# +A box which contains +-------------------------- +Infinity Drink 1ea +Red Booster 1ea +Limit Power Booster 1ea +Mystic Powder 1ea +Tyr's Blessing 1ea +-------------------------- +Weight: 0 +# +1500452# +A box which contains +-------------------------- +Small Mana Potion 10ea +Mental Potion 10ea +Blessing Ore Convex Mirror 10ea +-------------------------- +Weight: 0 +# +1500453# +A box which contains +-------------------------- +Infinity Drink 1ea +Red Booster 1ea +Limit Power Booster 1ea +Mystic Powder 1ea +Tyr's Blessing 1ea +-------------------------- +Weight: 0 +# +1500454# +A box which contains +-------------------------- +[Event] HE Battle Manual 3ea +[Event] HE Bubble Gum 3ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500455# +A box which contains +-------------------------- +Small Mana Potion 15ea +Mental Potion 15ea +Legendary Ore Convex Mirror 10ea +-------------------------- +Weight: 0 +# +1500456# +A box which contains +-------------------------- +Costume Frosty Fox ear Bell Ribbon 1ea +Enriched Elunium 1ea +Enriched Oridecon 1ea +[Event] Boarding Halter Box 7D 1ea +Adamantine Blessing 60ea +-------------------------- +Additional +2 Adam Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +1500457# +A box which contains +-------------------------- +Infinity Drink 10ea +Red Booster 10ea +Limit Power Booster 10ea +Mystic Powder 10ea +Tyr's Blessing 10ea +-------------------------- +Weight: 0 +# +1500458# +A box which contains +-------------------------- +Mental Potion 15ea +Small Mana Potion 15ea +[R] Pet Guaranteed Scroll 10ea +Legendary Ore Convex Mirror 10ea +-------------------------- +Weight: 0 +# +1500459# +A box which contains +-------------------------- +[Event] HE Battle Manual 5ea +[Event] HE Bubble Gum 5ea +HD Bradium 3ea +HD Carnium 3ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500460# +A box which contains +-------------------------- +HD Bradium 3ea +HD Carnium 3ea +Automatic Battle Box 30 Day 1ea +Blessing Ore Convex Mirror 10ea +-------------------------- +Weight: 0 +# +1500461# +A box which contains +-------------------------- +Title - Frostbite (Allstats+3) +Costume Frosty Nine Tails Fox 1ea +Gym pass 1ea +Inventory Extension Coupon 1ea +Battle Manual & Bubble Gum 10ea +-------------------------- +Weight: 0 +# +1500462# +A box which contains +-------------------------- +Adamantine Blessing 22ea +[Event] New pet scroll 10ea +Enriched Oridecon 1ea +Enriched Elunium 1ea +-------------------------- +Weight: 0 +# +1500463# +A box which contains +-------------------------- +Adamantine Blessing 33ea +[Event] New pet scroll 10ea +Advanced WoE Supply Box 2ea +Worn Out Limit Break Scroll 1ea +-------------------------- +Weight: 0 +# +1500464# +A box which contains +-------------------------- +Adamantine Blessing 70ea +Epic Pet Spirit Fragment 20ea +Blessed Adamantine Dust 10ea +-------------------------- +Weight: 0 +# +1500465# +A box which contains +-------------------------- +Adamantine Blessing 80ea +Blessed Adamantine Dust 10ea +Legendary Pet Spirit Fragment 3ea +-------------------------- +Weight: 0 +# +1500466# +A box which contains +-------------------------- +Adamantine Blessing 190ea +Blessed Adamantine Dust 10ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500467# +A box which contains +-------------------------- +Costume Snow Fox 1ea +Gym pass 1ea +Inventory Extension Coupon 1ea +Legendary Pet Spirit Fragment 5ea +Epic Pet Spirit Fragment 30ea +-------------------------- +Weight: 0 +# +1500468# +Cute costume modeled on the snow ears of fox. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1500469# +A scroll containing new pet scroll inside +Gives you the opportunity to randomly obtain a new pet egg. +-------------------------- +Uncommon Egg +Rare Egg +Epic Egg +-------------------------- +Weight: 0 +# +1500470# +A costume decoration that imitates Snow Ninetail. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1500471# +A box containing 1 Automatic Player Box that can be used for 30 days. +-------------------------- +Rental Item. +-------------------------- +For use in Autoattack System. +-------------------------- +Weight: 1 +# +1500472# +Invitation Book to Join Battle Pass Season 2, created for everyone to have fun and receive various rewards. Use it to activate the Battle Pass. +-------------------------- +Weight: 0 +# +1500473# +Invitation Book to Unlock Premium Pass Season 2, created for everyone to have fun and receive various rewards. Use it to activate the Premium Battle Pass. +-------------------------- +Weight: 0 +# +1500474# +Boxes are made from strong cardstock and come flat packed along with red satin ribbon to add. +Use this crystal to earn 1 Season 2 Premium Battlepass point. +-------------------------- +Weight: 0 +# +1500475# +Red yarn infused with ice magic. +Use this item to combine 3 Red Yarns into a Santa Sock. +-------------------------- +Weight: 0 +# +1500476# +Santa's sock. Warm and comfortable. +Use this item to combine 3 Red Yarns into a Santa Sock. +-------------------------- +Weight: 0 +# +1500477# +Use it for activate Title - Frostbite +-------------------------- +Type: Title Giver +Weight: 1 +# +1500478# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +[Event] Concentration Potion 5ea +[Event] Orange Potion Box (20) 10ea +[Event] Blue Potion Box (10) 3ea +[Event] Blessing Scroll 10ea +[Event] Increase Agility Scroll 10ea +[Event] Battle Manual 2ea +Unlimited Flywing 1 Day 1ea +[Event] Token of Siegfried 3ea +2nd Package Box (20) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 10 +# +1500479# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +[Event] Concentration Potion 5ea +[Event] Orange Potion Box (20) 5ea +[Event] Blue Potion Box (10) 5ea +[Event] Blessing Scroll 10ea +[Event] Increase Agility Scroll 10ea +[Event] Battle Manual 2ea +Unlimited Flywing 1 Day 1ea +2nd Package Box (30) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 20 +# +1500480# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +[Event] Concentration Potion 5ea +[Event] Orange Potion Box (20) 10ea +[Event] Blue Potion Box (10) 3ea +[Event] Blessing Scroll 10ea +[Event] Increase Agility Scroll 10ea +[Event] Battle Manual 3ea +[Event] Bubble Gum 3ea +[Event] Token of Siegfried 5ea +Unlimited Flywing 1 Day 1ea +2nd Package Box (40) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 30 +# +1500481# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +[Event] Awakening Potion 10ea +[Event] Orange Potion Box (20) 5ea +[Event] Blue Potion Box (10) 5ea +[Event] Battle Manual 3ea +Unlimited Flywing 1 Day 2ea +2nd Package Box (50) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 40 +# +1500482# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +[Event] Awakening Potion 10ea +[Event] Orange Potion Box (20) 10ea +[Event] Blue Potion Box (10) 3ea +[Event] Battle Manual 5ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +2nd Package Box (60) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 50 +# +1500483# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +[Event] Awakening Potion 10ea +[Event] White Potion Box (20) 10ea +[Event] Blue Potion Box (10) 10ea +[Event] Battle Manual 5ea +[Event] Token of Siegfried 5ea +Adamentine Blessing 50ea +2nd Package Box (70) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 60 +# +1500484# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +[Event] Awakening Potion 10ea +[Event] White Potion Box (20) 10ea +[Event] Blue Potion Box (10) 10ea +[Event] Battle Manual 5ea +[Event] Token of Siegfried 5ea +Adamentine Blessing 100ea +2nd Package Box (80) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 70 +# +1500485# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +[Event] Awakening Potion 10ea +[Event] White Potion Box (20) 10ea +[Event] Blue Potion Box (10) 10ea +[Event] Battle Manual 3ea +[Event] Token of Siegfried 5ea +Adamentine Blessing 150ea +2nd Package Box (90) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 80 +# +1500486# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +[Event] Awakening Potion 10ea +[Event] White Potion Box (20) 10ea +[Event] Blue Potion Box (10) 10ea +[Event] Battle Manual 5ea +[Event] Token of Siegfried 5ea +Adamentine Blessing 300ea +2nd Costume Box (99) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 90 +# +1500487# +Inside this box, you'll find everything you need to make your life easier. +-------------------------- +Contains +[Event] Fallen Angel Hairband [1] 1ea +[Event] Fallen Angel Wing [1] 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 99 +# +1500488# +A beatiful helm shaped as a rising angel's wing. +Wearing this item makes you feel little bit dizzy, but soon it will fresh you up. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +Base Level 10 +# +1500489# +A large, black wings of a fallen dark angel. +-------------------------- +ATK +10 +MATK +10 +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +Base Level 10 +# +1500490# +A box which contains +-------------------------- +Title : Starter (All Stats +1 Exp & Drop + 3)% +Time Keeper Hat 1ea +Time Keeper Robe 1ea +Time Keeper Manteau 1ea +Time Keeper Shield 1ea +Time Keeper Boots 1ea +Time Keeper Ring[1] 1ea +(Box) Scholar's Ring (7Day) 1ea +2nd Package Box (10) 1ea +Weapon Package Box 1ea +-------------------------- +Weight: 0 +# +1500491# +Use it for activate Title - Starter +-------------------------- +Type: Title Giver +Weight: 1 +# +1500492# +Contains Sacred Weapon of your choice to help you get strong. +-------------------------- +Type: Usable +Weight: 0 +# +1500493# +Dagger that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +10 +MATK +5 +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Dagger +Attack: 55 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 1 +Novice, Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +1500494# +One-Handed Sword that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +10 +MATK +5 +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: One-Handed Sword +Attack: 80 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 1 +Novice, Swordsman, Merchant and Thief +# +1500495# +TwoHanded Sword that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +12 +MATK +5 +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Two-Handed Sword +Attack: 100 +Weight: 150 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 1 +Swordman classes +# +1500496# +One-Handed Spear that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +10 +MATK +5 +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: One-Handed Spear +Attack: 80 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 1 +Swordman classes +# +1500497# +Two-Handed Spear that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +12 +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Two-Handed Spear +Attack: 105 +Weight: 150 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 1 +Swordman classes +# +1500498# +Axe that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +10 +MATK +5 +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: One-Handed Axe +Attack: 80 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 1 +Swordman classes, Merchant Classes +# +1500499# +Two-Handed Axe that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +14 +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Two-Handed Axe +Attack: 110 +Weight: 200 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Base Level 1 +Swordsman and Merchant +# +1500500# +Become a VIP member with many benefits. +Duration 7 Days +-------------------------- +Weight: 0 +# +1500501# +Become a VIP member with many benefits. +Duration 30 Days +-------------------------- +Weight: 0 +# +1500502# +Become a VIP member with many benefits. +Duration 1 Days +-------------------------- +Weight: 0 +# +1500503# +The flatter dream life, the legendary master of the three! What it says on the box. +-------------------------- +A box containing +[Event] 20 Small Life Potions +[Event] 20 Medium Life Potions +[Event] 20 Mysterious Life Potion +8 New Pet Scroll +-------------------------- +When a character is dead the battle effect item disappears. +-------------------------- +Weight: 1 +# +1500504# +Contain 1 days Unlimited Concentration Potion +-------------------------- +Rental Item +Potion that helps to increase the character's agility for a certain period of time. It also increases that attack speed of characters. +Can be used by all Classes. +5 seconds reuse delay +-------------------------- +Weight: 1 +# +1500505# +Contain 1 day Unlimited Awakening Potion +-------------------------- +Rental Item +Potion that possesses the effect of awakening. It is a mysterious medicine that helps to increase the character's attack speed. +Can only be used by characters over Lv 40. +Can be used by all Classes. +5 seconds reuse delay +-------------------------- +Weight: 1 +# +1500506# +Contain 1 day Unlimited Berserk Potion +-------------------------- +Rental Item +A very special potion that enrages the character and turns him into a berserker and increases the character's attack speed. +Can only be used by characters over Lv 85. +Can be used by all Classes. +5 seconds reuse delay +-------------------------- +Weight: 1 +# +1500507# +A box that contains +[Event] 10 Job Battle Manuals. +-------------------------- +This well written, +detailed manual +explains effective +battle methods. +-------------------------- +Type: Supportive +Effect: Job EXP rate +50% +Duration: 30 minutes +Weight: 1 +-------------------------- +Box Weight: 1 +# +1500508# +For 30 minutes: +Increases job experience gained by 50%. +Can be used together with Battle manual. +-------------------------- +Weight: 0 +# +1500509# +A box containing 50x [Event] Orange Potions. +Perfect for taking out whenever you need it. +\ +-------------------------- +Weight: 0 +# +1500510# +A box containing 50x [Event] White Potions. +Perfect for taking out whenever you need it. +\ +-------------------------- +Weight: 0 +# +1500511# +Claim your well-deserved Level 60 rewards in the thrilling CBT event! +-------------------------- +A box which contains +Title : Beta Tester (No Status) +[Event] Battle Manual 2ea +[Event] Blessing Scroll 10ea +[Event] Agi Scroll 10ea +[Event] Small Life Potion 20ea +[Event] Med Life Potion 20ea +-------------------------- +Weight: 1 +# +1500512# +Claim your well-deserved Level 90 rewards in the thrilling CBT event! +-------------------------- +A box which contains +Title : Beater (No Status) +Unlimited Fly Wing Box (2 Hrs) 3ea +[Event] Battle Manual 2ea +[Event] Bubble Gum 2ea +[Event] Regeneration Potion 3ea +[Event] Token Of Siegfried 3ea +-------------------------- +Weight: 1 +# +1500513# +Claim your well-deserved Bug Slayer rewards in the thrilling CBT event! +-------------------------- +A box which contains +Unlimited Fly Wing Box (2Hrs) 2ea +VIP Coupon 1 Day 1ea +[Event] Battle Manual 2ea +[Event] Blessing Scroll 10ea +[Event] Agi Scroll 10ea +-------------------------- +Weight: 1 +# +1500514# +Created from the tears or sweat of the god of Poring, this elixir instantly restores 1000 points of stamina. +-------------------------- +Type: consumable +Weight: 0 +# +1500515# +A pass that enables you to restart the Hidden-Square dungeon +And begin a new round, with the assistance of ROverse. +-------------------------- +Weight: 0 +# +1500516# +Mace that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +10 +Increases Healing skills effectiveness by 1%. +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Mace +Attack: 80 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 1 +Novice, Swordsman, Acolyte and Merchant +# +1500517# +Staff that is coated by Oridecon and Gold with perfect Level. +-------------------------- +MATK +50 +-------------------------- +When equipped by Wizard classes +MATK +20 +-------------------------- +When equipped by Sage classes +MATK +10 +-------------------------- +For each Refine Level: +MATK +8 +Increases Healing skills effectiveness by 1%. +-------------------------- +For each 10 Base Level above 70: +MATK +8 +-------------------------- +Type: One-Handed Staff +Attack: 40 +Weight: 60 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 1 +Magician, Acolyte, Soul Linker +# +1500518# +Staff that is coated by Oridecon and Gold with perfect Level. +-------------------------- +MATK +70 +-------------------------- +When equipped by Wizard classes: +MATK +30 +-------------------------- +When equipped by Sage classes: +MATK +20 +-------------------------- +For each Refine Level: +MATK +10 +Increases Healing skills effectiveness by 1%. +-------------------------- +For each 10 Base Level above 70: +MATK +10 +-------------------------- +Type: Two-Handed Staff +Attack: 50 +Weight: 100 +Weapon Level: 3 +Enchantable: Yes +-------------------------- +Requirement: +Magician, Acolyte and Soul Linker +# +1500519# +Bow that is coated by Oridecon and Gold with perfect Level. +-------------------------- +When equipped by Hunter classes +ATK +20 +-------------------------- +For each Refine Level: +ATK +7 +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Bow +Attack: 60 +Weight: 60 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 1 +Archer classes +# +1500520# +Kunckle that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +10 +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Knuckle +Attack: 70 +Weight: 60 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 1 +Monk classes +# +1500521# +Violin that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +10 +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Musical +Attack: 70 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 1 +Bard classes +# +1500522# +Whip that is coated by Oridecon and Gold with perfect Level. +-------------------------- +For each Refine Level: +ATK +10 +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Whip +Attack: 70 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 1 +Dancer classes +# +1500523# +Book that is coated by Oridecon and Gold with perfect Level. +-------------------------- +MATK +20 +-------------------------- +For each Refine Level: +ATK +10 +MATK +5 +-------------------------- +For each 10 Base Level above 70: +ATK +5 +-------------------------- +Type: Book +Attack: 45 +Weight: 60 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 1 +Priest, Sage and Star Gladiator +# +1500524# +A katar that is coated with elunium and gold. +-------------------------- +For each Refine Level: +ATK +10 +-------------------------- +For each 10 Base Level above 70: +ATK +10 +-------------------------- +Type: Katar +Attack: 80 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 1 +Assassin classes +# +1500525# +Wolf x ROL Costume Box. +Mystery box with items inside. +You can get it after tasting the delicious croissants. +-------------------------- +Weight: 0 +# +1500526# +At the moment of wearing a helmet that resembles a goat's horn, the wearer enjoys the effect of enormous gaze, and at the same time, a hat that makes you feel proud. +It is decorated with red and looks particularly hot. +-------------------------- +When equipped with Costume Rudra's Wing +Expiration date 31-03-2024 +All Stats +2 +SP Consumption reduced by 5% +Reduced Variable Cast Time by 5% +ASPD +5% +MATK +5 +ATK +5 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1500527# +Unknown aura that wrapped your body. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1500528# +Unknown aura that wrapped your body. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1500529# +Unknown aura that wrapped your body. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1500530# +Unknown aura that wrapped your body. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1500531# +Unknown aura that wrapped your body. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1500532# +Unknown aura that wrapped your body. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1500533# +A box which contains +-------------------------- +[Event] VIP Coupon 30 Days 1ea +[Event] Automatic Player Box 7 Days 1ea +-------------------------- +Weight: 0 +# +1500534# +A box which contains +-------------------------- +[R] Pet Spirit Guarantee Scroll 3ea +Elite Siege Supply Box 5ea +Small Mana Potion 15ea +-------------------------- +Weight: 0 +# +1500535# +A box which contains +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Adamantine Blessing 100ea +Unlimited Fly Wing Box (1 Day) 3ea +Heal Amistr Bag [1] 1ea +-------------------------- +Weight: 0 +# +1500536# +Scroll filled with gifts to help create a warm atmosphere during this cold season. +-------------------------- +Type: Item Giver +Weight: 1 +# +1500537# +Become a VIP member with many benefits. +Duration 30 Days +-------------------------- +Weight: 0 +# +1500538# +Could that out of your neck when equipped. +You can always enjoy the snowy scene when equip it. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1500539# +A scroll with hidden transformation powers. +Transforms the user into Rurolph +-------------------------- +Weight: 1 +# +1500540# +A box that contains Trans Scroll Rurolph. Item will be available for 2 week. +-------------------------- +Weight: 0 +# +1500541# +Scroll filled with gifts to help create a warm atmosphere during this cold season. +-------------------------- +Type: Item Giver +Weight: 1 +# +1500542# +Glittering snowflakes for costumes. +It seems that she wore the diamond dust seen on a cold and sunny day. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1500543# +A replica of the hats worn by the strange antlered captains of the airships that cross Rune Midgard. +-------------------------- +DEX +1 +MaxHP +100 +-------------------------- +Increases Ranged Physical Damage by 7%. +-------------------------- +Type: Headgear +Defense: 3 +Location: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +1500544# +A unique eye protector that seems to increase the wearer's Spiritual energy. +-------------------------- +MaxSP +50 +-------------------------- +Type: Headgear +Defense: 0 +Location: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 75 +All Jobs except Novice +# +1500545# +A fish that can bite inside your mouth. It smells bad, but a special process won't let it rot. +-------------------------- +When the wearer kills a monster, they will get a low chance to drop Fresh Fish. +-------------------------- +Increases recovery amount gained from Fresh Fish by 25%. +-------------------------- +Type: Headgear +Defense: 0 +Location: Lower +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 30 +# +1500546# +A sturdy pot worn on the head that overflows with water if shaken. +-------------------------- +Random chance to auto-cast Level 2 Deluge or Level 3 Waterball with each attack. +-------------------------- +Type: Headgear +Defense: 8 +Location: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +# +1500547# +A hat that is a constant reminder of the Winter season. +-------------------------- +STR +1 +INT +1 +MDEF +3 +-------------------------- +Increases resistance to Water property by 7%. +-------------------------- +Random chance to auto-cast Level 1 Frost Joker when receive physical or magical damage. +-------------------------- +If refined to 8: +auto-casts Level 5 Frost Joker instead. +-------------------------- +Type: Headgear +Defense: 4 +Location: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500548# +A cute hat made from a hopping Poring wearing a Santa's Hat. +-------------------------- +MDEF +2 +-------------------------- +Increases physical damage on Shadow property targets by 3%. +-------------------------- +Reduces damage taken from Shadow property attacks by 3% +-------------------------- +Type: Headgear +Defense: 4 +Location: Upper +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +1500549# +Your mouth around is full with shaving cream, it look like an old man. +-------------------------- +Type: Headgear +Defense: 1 +Location: Lower +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 10 +# +1500550# +A suit of armor worn on top of normal armor for additional defense. Needs a complete set to have bonus effect. +-------------------------- +HIT +10 +-------------------------- +Refine Level +7: +HIT +10 +-------------------------- +When equipped with Kingbird Shadow Weapon: +For each Refine Level of entire set: +ATK +1 +-------------------------- +Total Refine Level of entire set at least +15: +Increases Ranged Physical Damage by 1%. +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +1500551# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +ATK +10 +-------------------------- +Refine Level +7: +Increases Ranged Physical Damage by 1%. +-------------------------- +When equipped with Ancient Shadow Armor: +For each Refine Level of entire set: +ATK +1 +-------------------------- +Total Refine Level of entire set at least +15: +Increases Ranged Physical Damage by additional 1%. +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +1500552# +A box which contains +-------------------------- +X'Mas Scroll 10ea +Santa's Parcel 100ea +-------------------------- +Weight: 0 +# +1500553# +A cute little red backpack. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1500554# +This item can only be used by VIP players +Created from the tears or sweat of the god of Poring, this elixir instantly restores 1000 points of stamina. +-------------------------- +Type: consumable +Weight: 0 +# +1500555# +A box containing various winter themed items. +-------------------------- +Type: consumable +Weight: 0 +# +1500556# +Use it for activate title Monk No.1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500557# +Use it for activate title Rogue No.1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500558# +Use it for activate title Alchemist No.1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500559# +Use it for activate title Bard No.1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500560# +Use it for activate title Sage No.1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500561# +Use it for activate title Crusader No.1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500562# +Use it for activate title Dancer No.1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500563# +Use it for activate title Snowbuilder +Movespeed Bonus 1% +-------------------------- +Type: Title Giver +Weight: 1 +# +1500564# +Use it for activate title Nose Artist +All Stats +1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500565# +Use it for activate title Chill Chaser +All Stats +1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500566# +Use it for activate title Topper Tailor +All Stats +1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500567# +Inside the box is a single Reset Stone. +-------------------------- +Take it and head toReseterprontera,146,304,0,100,0,0 +Prontera 146 304 +-------------------------- +Base Lv 1-40: reset for free. +Base Lv 41-75: 1 Premium Reset Stone required. +Base Lv 76-85: 2 Premium Reset Stones required. +Base Lv 86-98: 3 Premium Reset Stones required. +Base Lv 99: 4 Premium Reset Stones required. +-------------------------- +Weight: 0 +Weight: 1 +# +1500568# +Use it for activate title Woodland Sculptor +All Stats +1 +Expiration date 7-01-2024 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500569# +A box containing 1 Neuralizer +Description: +Pressing the button on this stick will flash blinding light that seems to cause memory loss. +Resets the Skill Tree and gives the corresponding number of Skill Points. +This item can only be used in town and the character must less than 600 weight. +Cannot be equipped with a Pushcart, Falcon or PecoPeco. +Cannot be used by Novice Class. +-------------------------- +Weight: 0 +-------------------------- +Weight: 1 +# +1500570# +A box which contains +-------------------------- +Gym Pass 1ea +Inventory Expansion Voucher 1ea +-------------------------- +Weight: 0 +# +1500571# +A box that contains. +-------------------------- +[Event] Battle Manual&Bubble Gum 3ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +[Event] Mental Potion 3ea +-------------------------- +Weight: 0 +# +1500572# +A box that contains. +-------------------------- +Level 10 Blessing Scroll 10ea +Level 10 Increase Agility Scroll 10ea +Small Life Potion 10ea +-------------------------- +Weight: 0 +# +1500573# +A box that contains. +-------------------------- +Costume Red Wing Hat 1ea +Rare Ore Convex Mirror 15ea +Legendary Ore Convex Mirror 15ea +-------------------------- +Weight: 0 +# +1500574# +A box that contains. +-------------------------- +[R] Pet Spirit Guarantee Scroll 3ea +Elite Siege Supply Box 5ea +-------------------------- +Weight: 0 +# +1500575# +A box that contains. +-------------------------- +Small Mana Potion 15ea +Mental Potion 15ea +[Event] HP Increase Potion (Medium) 15ea +[Event] SP Increase Potion (Medium) 15ea +Adamantine Blessing 79ea +-------------------------- +Weight: 0 +# +1500576# +A box that contains. +-------------------------- +Adamantine Blessing 189ea +Enriched Elunium 1ea +Enriched Oridecon 1ea +Costume Fluttering Angel's Wing 1ea +-------------------------- +Weight: 0 +# +1500577# +A stunning fur furr-huedegg with a graceful tail resembling that of a white cat. +When opened, grants you a chance to receive valuable rewards +-------------------------- +Type: Item Giver +Weight: 1 +# +1500578# +A cute baby deviling that chases his master all day. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1500579# +A long smoking pipe used by gentlemen and nobility. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1500580# +A large piece of cloth, usually polka dotted, that is wrapped around goods which are then carried on the head. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1500581# +A portable incubator that is used to hatch Cute Pet monster eggs. +-------------------------- +Type: Tool +Effect: Hatch monster egg +Weight: 3 +# +1500582# +Rental Items for 7 days +A box contains 1 Ring of Truth +-------------------------- +The truth is that the wearer is truly number 1 without a doubt. +-------------------------- +Atk +30 +Matk +30 +All Stats +6 +MaxHp +500 +MaxSp +100 +Increase physical/ magical damage against boss monster + 6% +Increase physical/ magical damage against Player + 6% +Enables the use of Level 1 Hiding. +Enables the use of Level 1 Teleport. +Enables the use of Level 1 Sight. +-------------------------- +Weight: 0 +# +1500583# +Rental Items +The truth is that the wearer is truly number 1 witho?ut a doubt. +-------------------------- +Atk +30 +Matk +30 +All Stats +6 +MaxHp +500 +MaxSp +100 +Increase physical/ magical damage against boss monster + 6% +Increase physical/ magical damage against Player + 6% +Enables the use of Level 1 Hiding. +Enables the use of Level 1 Teleport. +Enables the use of Level 1 Sight. +-------------------------- +Type: Accessory (Right) +Defense: 0 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +1500584# +Rental Items for 7 days +A box contains 1 Aasimar's Ring +-------------------------- +It almost ring of truth. +-------------------------- +Atk +20 +Matk +20 +All Stats +4 +MaxHp +300 +MaxSp +50 +Increase physical/ magical damage against boss monster + 4% +Increase physical/ magical damage against Player + 4% +Enables the use of Level 1 Hiding. +Enables the use of Level 1 Teleport. +-------------------------- +Weight: 0 +# +1500585# +Rental Items +It almost ring of truth. +-------------------------- +Atk +20 +Matk +20 +All Stats +4 +MaxHp +300 +MaxSp +50 +Increase physical/ magical damage against boss monster + 4% +Increase physical/ magical damage against Player + 4% +Enables the use of Level 1 Hiding. +Enables the use of Level 1 Teleport. +-------------------------- +Type: Accessory (Right) +Defense: 0 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +1500586# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 50,000 base experience; Gives 50,000 job experience +Weight: 0 +# +1500587# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 100,000 base experience; Gives 100,000 job experience +Weight: 0 +# +1500588# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 150,000 base experience; Gives 150,000 job experience +Weight: 0 +# +1500589# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 200,000 base experience; Gives 200,000 job experience +Weight: 0 +# +1500590# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 250,000 base experience; Gives 250,000 job experience +Weight: 0 +# +1500591# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 300,000 base experience; Gives 300,000 job experience +Weight: 0 +# +1500592# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 350,000 base experience; Gives 350,000 job experience +Weight: 0 +# +1500593# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 400,000 base experience; Gives 400,000 job experience +Weight: 0 +# +1500594# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 450,000 base experience; Gives 450,000 job experience +Weight: 0 +# +1500595# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 500,000 base experience; Gives 500,000 job experience +Weight: 0 +# +1500596# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 550,000 base experience; Gives 550,000 job experience +Weight: 0 +# +1500597# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 600,000 base experience; Gives 600,000 job experience +Weight: 0 +# +1500598# +Rental Items for 7 days +A box contains 1 Aasimar's Ring +-------------------------- +It almost ring of truth. +-------------------------- +Atk +10 +Matk +10 +All Stats +2 +MaxHp +100 +MaxSp +20 +Increase physical/ magical damage against boss monster + 2% +Increase physical/ magical damage against Player + 2% +Enables the use of Level 1 Hiding. +Enables the use of Level 1 Teleport. +-------------------------- +Weight: 0 +# +1500599# +Rental Items +It almost ring of truth. +-------------------------- +Atk +10 +Matk +10 +All Stats +2 +MaxHp +100 +MaxSp +20 +Increase physical/ magical damage against boss monster + 2% +Increase physical/ magical damage against Player + 2% +Enables the use of Level 1 Hiding. +Enables the use of Level 1 Teleport. +-------------------------- +Type: Accessory (Right) +Defense: 0 +Weight: 25 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +1500600# +A box containing +-------------------------- +[Event] Infinity Drink 5ea +[Event] Red Booster 5ea +[Event] Elite Siege Supply Box 3ea +-------------------------- +Weight: 0 +# +1500601# +A box containing +-------------------------- +[R] Pet Spirit Guarantee Scroll 3ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +-------------------------- +Weight: 0 +# +1500602# +A box containing +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Adamantine Blessing 49ea +Holgren's Shadow Smelting Hammer 2ea +Devilring Balloon 1ea +-------------------------- +Weight: 0 +# +1500603# +A scroll in which a single use of Level 10 Blessing has been recorded. +Caution!- Casts Level 10 Blessing on the user when used. +-------------------------- +Weight: 1 +# +1500604# +A scroll in which a single use of Level 10 Increase Agility has been recorded. +-------------------------- +This item will not work while your character is casting a skill or has less than 16 HP. +-------------------------- +Type: Magic scroll +Cast: Level 10 Increase Agility +Weight: 1 +# +1500605# +A small bottle of Yggdrasil Tree Sap that is effective on healing wounds. +Restores an amount of HP equal of 5% of your MaxHP every 5 seconds for a 10 minute duration. +The effect of this item will disappear upon death. +-------------------------- +Weight: 1 +# +1500606# +A sizeable bottle of Yggdrasil Tree Sap that is effective on healing wounds. +Restores an amount of HP equal of 7% of your MaxHP every 4 seconds for a 10 minute duration. +The effect of this item will disappear upon death. +-------------------------- +Weight: 1 +# +1500607# +A potion that created from concentrated Life Potion and other recovery potions. +Recover 4% of MaxHP every 3 seconds for 10 minutes. +This item cannot be used in Berserk state. +The effect of this item will disappear upon death. +-------------------------- +Weight: 5 +# +1500608# +This well written, detailed manual explains effective battle methods. +-------------------------- +Type: Supportive +Effect: Experience gained +50% +Effect duration: 30 minutes +Weight: 1 +# +1500609# +Chewy and sweet bubble gum. If you are chewing this gum, you will feel like you have to give up everything you have. +-------------------------- +Type: Supportive +Effect: Item drop rate +100% +Effect duration: 30% minutes +Weight: 1 +# +1500610# +A life insurance certificate issued by Kafra Headquarters. +-------------------------- +Type: Supportive +Effect: Disable EXP loss penalty when character dies +Effect duration: 30 minutes +Weight: 1 +# +1500611# +A set of chewy and sweet bubble gum with a written description of more efficient combat methods. +Somehow, you feel like you're growing fast and you'll feel like you're going to defeat all the monsters you meet. +-------------------------- +Experience gained is increased by 50% for 30 minutes. +Item Drop Chance is increased by 100% for 30 minutes. +-------------------------- +Weight: 0 +# +1500612# +A box containing 1 Chewing Gum. Available for 7 Days. +-------------------------- +Rental Item +Huge balloon looking bubble gum. You can even blow it much bigger! +Caution: May seem ghetto to others. +-------------------------- +ATK +5 +MATK +5 +MDEF +2 +-------------------------- +Type: Headgear +Defense: 2 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +-------------------------- +Weight: 1 +# +1500613# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 50,000 base experience; Gives 50,000 job experience +Weight: 0 +# +1500614# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 250,000 base experience; Gives 250,000 job experience +Weight: 0 +# +1500615# +Refined the root of the flower of fantasy and the liquid medicine which it made. +-------------------------- +Type: Supportive +Effect: Gives 500,000 base experience; Gives 500,000 job experience +Weight: 0 +# +1500616# +There is a rumor this stone able to reset character's stats. +-------------------------- +Take it and head toReseterprontera,146,304,0,100,0,0 +Prontera 146 304 +-------------------------- +Base Lv 1-40: reset for free. +Base Lv 41-75: 1 Premium Reset Stone required. +Base Lv 76-85: 2 Premium Reset Stones required. +Base Lv 86-98: 3 Premium Reset Stones required. +Base Lv 99: 4 Premium Reset Stones required. +-------------------------- +Type: Valuable +Weight: 0 +# +1500617# +Pressing the button on this stick will flash blinding light that seems to cause memory loss. +Resets the Skill Tree and gives the corresponding number of Skill Points. +This item can only be used in town and the character must less than 600 weight. +Cannot be equipped with a Pushcart, Falcon or PecoPeco. +Cannot be used by Novice Class. +-------------------------- +Weight: 0 +# +1500618# +Use it for activate title Path Traveler I +Atk +3 +Matk +3 +Hit +3 +Flee +3 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500619# +Use it for activate title Path Traveler II +Atk +5 +Matk +5 +Hit +5 +Flee +5 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500620# +Use it for activate title Path Traveler III +Atk +10 +Matk +10 +Hit +10 +Flee +10 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500621# +A magnifying glass used for appraises unidentified items and equipment. Double click to identify all items in your inventory. +-------------------------- +Type: Tool +Effect: Identifies unknown item +Weight: 5 +# +1500622# +Unleash the cosmic mysteries contained within the Ultraseven Scroll! +-------------------------- +Type: Item Giver +Weight: 1 +# +1500623# +Take this adorable Ultraseven plush with you wherever you go! He'll be your loyal companion on all your adventures. +-------------------------- +All Stats +1 +Expiration date 22-04-2024 +-------------------------- +Item Combo +[Not for Sale] C Flying Ultraseven +[Not for Sale] C Ultraseven Balloon +[Not for Sale] C Ultraseven Doll Hat +All Stats +3 +Exp +15% +Drop +15% +Chance 2% Drain SP & HP 2% From DMG +Increase DMG SMALL/MID/LARGE 2% +Aspd +1 +Expiration date 22-04-2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1500624# +An Ultraseven balloon that floats over your head, +As you wear this, empowering you with the confidence that you are shielded by the indomitable spirit of Ultraman. +-------------------------- +All Stats +1 +Expiration date 22-04-2024 +-------------------------- +Item Combo +[Not for Sale] C Flying Ultraseven +[Not for Sale] C Ultraseven Balloon +[Not for Sale] C Ultraseven Doll Hat +All Stats +3 +Exp +15% +Drop +15% +Chance 2% Drain SP & HP 2% From DMG +Increase DMG SMALL/MID/LARGE 2% +Aspd +1 +Expiration date 22-04-2024 +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1500625# +Show off your love for Ultraseven with this cute headband! +This adorable accessory is perfect for any fan. +-------------------------- +Increases item drop rate and experience gained from defeating a monster by 3%. +Expiration date 22-04-2024 +-------------------------- +Item Combo +[Not for Sale] C Flying Ultraseven +[Not for Sale] C Ultraseven Balloon +[Not for Sale] C Ultraseven Doll Hat +All Stats +3 +Exp +15% +Drop +15% +Chance 2% Chance 2% Drain SP & HP 2% From DMG +Increase DMG SMALL/MID/LARGE 2% +Aspd +1 +Expiration date 22-04-2024 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1500627# +A scroll with hidden transformation powers. +Transforms the user into Ultraman +-------------------------- +Weight: 1 +# +1500628# +Transform into your favorite Ultraman with this amazing device! This incredible gadget will give you the power you need to save the day. +-------------------------- +Weight: 0 +# +1500629# +Happy Lunar New Year.May this egg brings you great fortune. +When opened, grants you a chance to receive valuable rewards +-------------------------- +Type: Item Giver +Weight: 1 +# +1500631# +First Refill VI Box 10ION +A box that contains. +-------------------------- +[Event] Battle Manual&Bubble Gum 3ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +[Event] Mental Potion 5ea +-------------------------- +Weight: 0 +# +1500632# +First Refill VI Box 30ION +A box that contains. +-------------------------- +Miracle Medicine 1ea +Token Of Siegfried 5ea +Adamantine Blessing 30ea +[Event] Novice Rain Cloud (14 Days) 1ea +-------------------------- +Weight: 0 +# +1500633# +When it rains it pours. Especially when it's only raining above your head. +-------------------------- +HP +100 +SP +100 +-------------------------- +When equipped with Figure +All Stats +3 +MATK +15 +ATK +15 +ASPD +2 +Variable Cast Time - 10% +SP Recovery + 10% +HP Recovery + 10% +Increases Movement Speed by 25% +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1-60 +# +1500634# +Rental Items for 14 days +A box contains 1 Novice Rain Cloud +-------------------------- +HP +100 +SP +100 +-------------------------- +When equipped with Figure +All Stats +3 +MATK +15 +ATK +15 +ASPD +2 +Variable Cast Time - 10% +SP Recovery + 10% +HP Recovery + 10% +Increases Movement Speed by 25% +-------------------------- +Weight: 0 +# +1500635# +A box containing +-------------------------- +Small Life Potion 10ea +Small Mana Potion 10ea +[Event] HP Increase Potion (Medium) 10ea +[Event] SP Increase Potion (Medium) 10ea +-------------------------- +Weight: 0 +# +1500636# +A box containing +-------------------------- +[Event] Holy Elemental Scroll 2ea +[Event] Undead Elemental Scroll 2ea +[Event] Guyak Pudding 5ea +Elite Siege Supply Box 3ea +-------------------------- +Weight: 0 +# +1500637# +A box containing +-------------------------- +[R] Pet Spirit Guarantee Scroll 3ea +[Event] HE Bubble Gum 2ea +[Event] HE Battle Manual 2ea +-------------------------- +Weight: 0 +# +1500638# +A box containing +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Costume Spending Box 1ea +-------------------------- +Weight: 0 +# +1500639# +A scroll endowed with undead elemental magic. +-------------------------- +Type: Supportive +Effect: Increases resistance against Fire, Water, Wind and Earth by 20%. +Effect duration: 5 minutes +Weight: 1 +# +1500640# +A scroll endowed with Holy elemental magic. +-------------------------- +Type: Supportive +Effect: Blesses equipped armor with Holy elemental. +Effect duration: 5 minutes +Weight: 1 +# +1500641# +Once eat the pudding while it's cold, it soothes summer heat for a while. +Increases movement speed 5 minutes for 2 period of the character. +-------------------------- +Weight: 20 +# +1500642# +A box containing Costumes. +When used, You will have a chance to random one of the following Costumes. +-------------------------- +[Obtainable Items] +Costume Master of Light and Darkness +Costume Fallen Angel Wings +Costume Magic Circle +Costume Analyze Eye +Costume Wings of Michael +Costume Fallen Angel Hairband +Costume Eleanor Wig +Costume Scratching Cat +Costume Vanargand Helm +Costume You in ONE +-------------------------- +Weight: 0 +# +1500643# +A box that contains. +-------------------------- +Level 10 Blessing Scroll 10ea +Level 10 Increase Agility Scroll 10ea +Medium Life Potion 10ea +-------------------------- +Weight: 0 +# +1500644# +A box that contains. +-------------------------- +[Event] New Pet Scroll 5ea +Boarding Halter Box 7D 1ea +Blessing Ore Mirror 20ea +-------------------------- +Weight: 0 +# +1500645# +A box that contains. +-------------------------- +[R] Pet Spirit Guarantee Scroll 4ea +Elite Siege Supply Box 5ea +-------------------------- +Weight: 0 +# +1500646# +A box that contains. +-------------------------- +Small Mana Potion 20ea +Mental Potion 15ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +Adamantine Blessing 79ea +-------------------------- +Weight: 0 +# +1500647# +A box that contains. +-------------------------- +Adamantine Blessing 189ea +Enriched Elunium 1ea +Enriched Oridecon 1ea +Costume Moon and Stars 1ea +-------------------------- +Weight: 0 +# +1500648# +A box which contains +-------------------------- +Boarding Halter Box 3D 1ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Additional +2 Adam Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +1500649# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Orange Potion Box(50) 2ea +[Event] Blue Potion Box(10) 2ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500650# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500651# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Legendary Ore Convex Mirror 2ea +-------------------------- +Weight: 0 +# +1500652# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500653# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500654# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500655# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Weight: 0 +# +1500656# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Orange Potion Box(50) 2ea +[Event] Blue Potion Box(10) 2ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500657# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500658# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Legendary Ore Convex Mirror 2ea +-------------------------- +Weight: 0 +# +1500659# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500660# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500661# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500662# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Boarding Halter Box 3D 1ea +[R] Pet Guaranteed Scroll 1ea +-------------------------- +Weight: 0 +# +1500663# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Orange Potion Box(50) 2ea +[Event] Blue Potion Box(10) 2ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500664# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500665# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Legendary Ore Convex Mirror 2ea +-------------------------- +Weight: 0 +# +1500666# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500667# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500668# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500669# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Weight: 0 +# +1500670# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Orange Potion Box(50) 2ea +[Event] Blue Potion Box(10) 2ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500671# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500672# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Legendary Ore Convex Mirror 2ea +-------------------------- +Weight: 0 +# +1500673# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500674# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500675# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500676# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Boarding Halter Box 3D 1ea +-------------------------- +Weight: 0 +# +1500677# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Orange Potion Box(50) 2ea +[Event] Blue Potion Box(10) 2ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500678# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500679# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Legendary Ore Convex Mirror 2ea +-------------------------- +Weight: 0 +# +1500680# +A box which contains +-------------------------- +Adamantine Blessing 30ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500681# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500682# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500683# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Weight: 0 +# +1500684# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Orange Potion Box(50) 2ea +[Event] Blue Potion Box(10) 2ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500685# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500686# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Legendary Ore Convex Mirror 2ea +-------------------------- +Weight: 0 +# +1500687# +A box which contains +-------------------------- +Adamantine Blessing 30ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500688# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500689# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500690# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Boarding Halter Box 3D 1ea +-------------------------- +Weight: 0 +# +1500691# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Orange Potion Box(50) 2ea +[Event] Blue Potion Box(10) 2ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500692# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500693# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Legendary Ore Convex Mirror 2ea +-------------------------- +Weight: 0 +# +1500694# +A box which contains +-------------------------- +Adamantine Blessing 30ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500695# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500696# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500697# +A box which contains +-------------------------- +Costume Valentine Hat 1ea +[R] Pet Guaranteed Scroll 3ea +Adamantine Blessing 100ea +-------------------------- +Weight: 0 +# +1500699# +A box which contains +-------------------------- +[R] Pet Guaranteed Scroll 1ea +Unlimited Fly Wing 2hrs 5ea +Small Mana Potion 5ea +Adamantine Blessing 30ea +-------------------------- +Weight: 0 +# +1500700# +A box which contains +-------------------------- +Small Life Potion 15ea +Medium Life Potion 15ea +Mysterious Life Potion 15ea +-------------------------- +Weight: 0 +# +1500701# +A box which contains +-------------------------- +[Event] HE Battle Manual 1ea +[Event] HE Bubble Gum 1ea +Legendary Ore Convex Mirror 10ea +-------------------------- +Weight: 0 +# +1500702# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 5ea +Advanced WoE Supply Box 2ea +Blessing Ore Convex Mirror 10ea +-------------------------- +Weight: 0 +# +1500703# +A box which contains +-------------------------- +Small Mana Potion 5ea +Mental Potion 5ea +Hidden Square Reset Pass 5ea +-------------------------- +Weight: 0 +# +1500704# +A box which contains +-------------------------- +Small Life Potion 30ea +Medium Life Potion 30ea +Mysterious Life Potion 30ea +-------------------------- +Weight: 0 +# +1500705# +A box which contains +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Adamantine Blessing 30ea +-------------------------- +Weight: 0 +# +1500706# +A box which contains +-------------------------- +[R] Pet Guaranteed Scroll 5ea +Rare Pet Spirit Fragment 10ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500707# +A box which contains +-------------------------- +Infinity Drink 2ea +Red Booster 2ea +Limit Power Booster 2ea +Mystic Powder 2ea +Tyr's Blessing 2ea +-------------------------- +Weight: 0 +# +1500708# +A box which contains +-------------------------- +Small Mana Potion 10ea +Mental Potion 10ea +Blessing Ore Convex Mirror 10ea +-------------------------- +Weight: 0 +# +1500709# +A box which contains +-------------------------- +Infinity Drink 2ea +Red Booster 2ea +Limit Power Booster 2ea +Mystic Powder 2ea +Tyr's Blessing 2ea +-------------------------- +Weight: 0 +# +1500710# +A box which contains +-------------------------- +[Event] HE Battle Manual 3ea +[Event] HE Bubble Gum 3ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500711# +A box which contains +-------------------------- +Small Mana Potion 15ea +Mental Potion 15ea +Legendary Ore Convex Mirror 10ea +-------------------------- +Weight: 0 +# +1500712# +A box which contains +-------------------------- +Costume Love Whisper 1ea +Enriched Elunium 1ea +Enriched Oridecon 1ea +[Event] Boarding Halter Box 7D 1ea +Adamantine Blessing 30ea +-------------------------- +Additional +3 Adam Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +1500713# +A box which contains +-------------------------- +Infinity Drink 10ea +Red Booster 10ea +Limit Power Booster 10ea +Mystic Powder 10ea +Tyr's Blessing 10ea +-------------------------- +Weight: 0 +# +1500714# +A box which contains +-------------------------- +Mental Potion 15ea +Small Mana Potion 15ea +[R] Pet Guaranteed Scroll 10ea +Legendary Ore Convex Mirror 10ea +-------------------------- +Weight: 0 +# +1500715# +A box which contains +-------------------------- +[Event] HE Battle Manual 5ea +[Event] HE Bubble Gum 5ea +HD Bradium 3ea +HD Carnium 3ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500716# +A box which contains +-------------------------- +HD Bradium 3ea +HD Carnium 3ea +[Event] Automatic Player Box 30 Day 1ea +Blessing Ore Convex Mirror 10ea +-------------------------- +Weight: 0 +# +1500717# +A box which contains +-------------------------- +Title - Grand Heart (Allstats+3) +Costume Lovely Feeling 1ea +Gym pass 1ea +Inventory Extension Coupon 1ea +[Event] Battle Manual & Bubble Gum 10ea +-------------------------- +Additional +2 Adam Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +1500718# +A box which contains +-------------------------- +Adamantine Blessing 22ea +[Event] New pet scroll 10ea +Enriched Oridecon 1ea +Enriched Elunium 1ea +-------------------------- +Weight: 0 +# +1500719# +A box which contains +-------------------------- +Adamantine Blessing 33ea +[Event] New pet scroll 10ea +Advanced WoE Supply Box 2ea +Worn Out Limit Break Scroll 1ea +-------------------------- +Weight: 0 +# +1500720# +A box which contains +-------------------------- +Adamantine Blessing 70ea +Epic Pet Spirit Fragment 20ea +Blessed Adamantine Dust 10ea +-------------------------- +Weight: 0 +# +1500721# +A box which contains +-------------------------- +Adamantine Blessing 80ea +Blessed Adamantine Dust 10ea +Legendary Pet Spirit Fragment 3ea +-------------------------- +Weight: 0 +# +1500722# +A box which contains +-------------------------- +Blessed Adamantine Dust 10ea +Adamantine Blessing 190ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500723# +A box which contains +-------------------------- +Costume Wing of Heart 1ea +Gym pass 1ea +Inventory Extension Coupon 1ea +Legendary Pet Spirit Fragment 5ea +Epic Pet Spirit Fragment 30ea +-------------------------- +Weight: 0 +# +1500724# +Use it for activate Title - Grand Heart +All stats +3 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500725# +Invitation Book to Join Battle Pass Season 3, created for everyone to have fun and receive various rewards. Use it to activate the Battle Pass. +-------------------------- +Weight: 0 +# +1500726# +Invitation Book to Unlock Premium Pass Season 3, created for everyone to have fun and receive various rewards. Use it to activate the Premium Battle Pass. +-------------------------- +Weight: 0 +# +1500727# +Use this heart to earn 1 Season 3 Battlepass - Quest point. +-------------------------- +Weight: 0 +# +1500728# +Use this crystal to earn 1 Season 3 Premium Battlepass point. +-------------------------- +Weight: 0 +# +1500729# +No matter what is inside this egg, it must be precious thing for sure ! +When opened, grants you a chance to receive valuable rewards +-------------------------- +Type: Item Giver +Weight: 1 +# +1500730# +A balloon shaped like a teddy bear that children love. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1500731# +A box containing Rental Ring. +When used, You will have a chance to random one of the following Rental Ring. +-------------------------- +[Event] Beholder Ring (7Days) 1ea +[Event] Hallow Ring (7Days) 1ea +[Event] Clamorous Ring (7Days) 1ea +[Event] Chemical Ring (7Days) 1ea +[Event] Insecticide Ring (7Days) 1ea +[Event] Fisher Ring (7Days) 1ea +[Event] Decussate Ring (7Days) 1ea +[Event] Bloody Ring (7Days) 1ea +[Event] Satanic Ring (7Days) 1ea +[Event] Dragon Ring (7Days) 1ea +-------------------------- +Weight: 0 +# +1500732# +Reward King of Midgard +-------------------------- +Experience gained is increased by 150% for 30 minutes. +Item Drop Chance is increased by 150% for 30 minutes. +-------------------------- +Weight: 0 +# +1500733# +Reward Team Win Battle of Midgard +-------------------------- +Experience gained is increased by 100% for 30 minutes. +Item Drop Chance is increased by 100% for 30 minutes. +-------------------------- +Weight: 0 +# +1500734# +Reward Team Lose Battle of Midgard +-------------------------- +Experience gained is increased by 50% for 30 minutes. +Item Drop Chance is increased by 50% for 30 minutes. +-------------------------- +Weight: 0 +# +1500735# +A box which contains +-------------------------- +[Event] Battle Manual & Bubble Gum 5ea +Small Life Potion 15ea +Small Mana Potion 15ea +[Event] Orange Potion Box(50) 5ea +Mental Potion 10ea +Unlimited Fly Wing Box (2Hrs) 10ea +Chewing Gum Box 7Day 1ea +[Event] Boarding Halter 7D Box 1ea +Adventurer's Cap 1ea +-------------------------- +Weight: 0 +# +1500736# +A box containing +-------------------------- +Infinity Drink 5ea +Red Booster 5ea +Elite Siege Supply Box 3ea +-------------------------- +Weight: 0 +# +1500737# +A box containing +-------------------------- +[R] Pet Spirit Guarantee Scroll 4ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +Holgren's Shadow Smelting Hammer 3ea +-------------------------- +Weight: 0 +# +1500738# +A box containing +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Adamantine Blessing 109ea +Archangel Wings [1] 1ea +Odacious Angeling Balloon 1ea +-------------------------- +Weight: 0 +# +1500739# +Rental Items for 7 days +A box contains +-------------------------- +Unlimited Arrow 7Days 1ea +-------------------------- +Type: Arrow +Attack: 25 +Weight: 0 +Element: Neutral +-------------------------- +Weight: 0 +# +1500740# +Rental Items for 7 days +A box contains +-------------------------- +Unlimited Silver Arrow 7Days 1ea +-------------------------- +Type: Arrow +Attack: 30 +Weight: 0 +Element: Holy +-------------------------- +Weight: 0 +# +1500741# +Rental Items for 7 days +A box contains +-------------------------- +Unlimited Fire Arrow 7Days 1ea +-------------------------- +Type: Arrow +Attack: 30 +Weight: 0 +Element: Fire +-------------------------- +Weight: 0 +# +1500742# +A common arrow. +-------------------------- +Type: Arrow +Attack: 25 +Weight: 0 +Element: Neutral +# +1500743# +An arrow tipped with a silver point enchanted with the power of holiness. +-------------------------- +Type: Arrow +Attack: 30 +Weight: 0 +Element: Holy +# +1500744# +A flaming arrow that will inflict Fire element damage. +-------------------------- +Type: Arrow +Attack: 30 +Weight: 0 +Element: Fire +# +1500745# +Unleash the cosmic mysteries contained within the Ultraman Taro Scroll! +-------------------------- +Type: Item Giver +Weight: 1 +# +1500746# +Take this adorable Ultraman Taro plush with you wherever you go! He'll be your loyal companion on all your adventures. +-------------------------- +All Stats +1 +Expiration date 22-04-2024 +-------------------------- +Item Combo +[Not for Sale] C Flying Ultraman Taro +[Not for Sale] C Ultraman Taro Balloon +[Not for Sale] C Ultraman Taro Doll Hat +All Stats +3 +Increase DMG Demi-Human 2% +Ignore Ded&Mdef 2% +ATK +5 +Matk +5 +Aspd +1 +Expiration date 22-04-2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1500747# +An Ultraman Taro balloon that hovers above your head, As you wear this, +empowering you with the confidence that you are shielded by the indomitable spirit of Ultraman. +-------------------------- +All Stats +1 +Expiration date 22-04-2024 +-------------------------- +Item Combo +[Not for Sale] C Flying Ultraman Taro +[Not for Sale] C Ultraman Taro Balloon +[Not for Sale] C Ultraman Taro Doll Hat +All Stats +3 +Increase DMG Demi-Human 2% +Ignore Ded&Mdef 2% +ATK +5 +Matk +5 +Aspd +1 +Expiration date 22-04-2024 +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1500748# +Show off your love for Ultraman Taro with this cute headband! This adorable accessory is perfect for any fan. +-------------------------- +Increases item drop rate and experience gained from defeating a monster by 3%. +Expiration date 22-04-2024 +-------------------------- +Item Combo +[Not for Sale] C Flying Ultraman Taro +[Not for Sale] C Ultraman Taro Balloon +[Not for Sale] C Ultraman Taro Doll Hat +All Stats +3 +Increase DMG Demi-Human 2% +Ignore Ded&Mdef 2% +ATK +5 +Matk +5 +Aspd +1 +Expiration date 22-04-2024 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1500749# +An Ultraman balloon that hovers above your head, As you wear this, +empowering you with the confidence that you are shielded by the indomitable spirit of Ultraman. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1500750# +Take your favorite Ultraman with you on the go with this cool backpack! +This spacious bag is perfect for school, work, or travel. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1500751# +This stylish backpack features a cute Ultraseven design. +It's perfect for carrying all your essentials, +whether you're headed to school, work, or the gym. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1500752# +Show off your love for Ultraman Ace with this awesome backpack! +This durable bag is perfect for everyday use. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1500753# +This backpack features a timeless Ultraman design. +It's perfect for any fan of the iconic superhero. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1500754# +This adorable mask features the classic Ultraman design. +Wear it and show off your love for the iconic superhero! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1500755# +This cute mask features the iconic Ultraseven design. +Wear it and show off your love for the beloved superhero! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1500756# +This stylish mask features the iconic Ultraman Ace design. +Wear it and show off your love for the classic superhero! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1500757# +This adorable mask features the iconic Ultraman Taro design. +Wear it and show off your love for the beloved superhero! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1500758# +Rental Items for 15 days +A box contains 1 Scholar's Ring Please take a care because is fragile! +-------------------------- +A scholar's ring bestows upon its wearer a full comprehension of any written document or spoken dialect, irrespective of whether they have previously encountered it or not. +-------------------------- +All Stats +5 +EXP + 5% Drop + 5% +Enables the use of Level 1 Teleport. +-------------------------- +Weight: 0 +# +1500759# +A box contains +-------------------------- +[Rental] C Frying UItraseven Box (14 Days) +[Rental] C Ultraseven Balloon Box (14 Days) +[Rental] C Ultraseven Doll Hat Box (14 Days) +-------------------------- +Weight: 0 +# +1500760# +A box contains +-------------------------- +[Rental] C Flying Ultraman Taro Box (14 Days) +[Rental] C Ultraman Taro Balloon Box (14 Days) +[Rental] C Ultraman Taro Doll Hat (14 Days) +-------------------------- +Weight: 0 +# +1500761# +A box contains +-------------------------- +[Rental] C Flying Ultraseven (14 Days) +-------------------------- +Weight: 0 +# +1500762# +A box contains +-------------------------- +[Rental] C Ultraseven Balloon (14 Days) +-------------------------- +Weight: 0 +# +1500763# +A box contains +-------------------------- +[Rental] C Ultraseven Doll Hat (14 Days) +-------------------------- +Weight: 0 +# +1500765# +A box contains +-------------------------- +[Rental] C Flying Ultraman Taro (14 Days) +-------------------------- +Weight: 0 +# +1500766# +A box contains +-------------------------- +[Rental] C Ultraman Taro Balloon (14 Days) +-------------------------- +Weight: 0 +# +1500767# +A box contains +-------------------------- +[Rental] C Ultraman Taro Doll Hat (14 Days) +-------------------------- +Weight: 0 +# +1500769# +A box containing +-------------------------- +Ultraseven Scroll 10ea +Ultraman Backpack Select Box 1ea +Power 100ea +-------------------------- +Weight: 0 +# +1500770# +A box containing +-------------------------- +Ultraman Taro Scroll 10ea +Ultraman Backpack Select Box 1ea +Power 100ea +-------------------------- +Weight: 0 +# +1500771# +Unleash the cosmic mysteries contained within the Ultraseven Scroll! +-------------------------- +Type: Item Giver +Weight: 1 +# +1500772# +Unleash the cosmic mysteries contained within the Ultraman Taro Scroll! +-------------------------- +Type: Item Giver +Weight: 1 +# +1500773# +Take this adorable Ultraseven plush with you wherever you go! He'll be your loyal companion on all your adventures. +-------------------------- +All Stats +1 +Expiration date 22-04-2024 +-------------------------- +Item Combo +[Not for Sale] C Flying Ultraseven +[Not for Sale] C Ultraseven Balloon +[Not for Sale] C Ultraseven Doll Hat +All Stats +3 +Exp +15% +Drop +15% +Chance 2% Drain SP & HP 2% From DMG +Increase DMG SMALL/MID/LARGE 2% +Aspd +1 +Expiration date 22-04-2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1500774# +An Ultraseven balloon that hovers above your head, +As you wear this, empowering you with the confidence that you are shielded by the indomitable spirit of Ultraman. +-------------------------- +All Stats +1 +Expiration date 22-04-2024 +-------------------------- +Item Combo +[Not for Sale] C Flying Ultraseven +[Not for Sale] C Ultraseven Balloon +[Not for Sale] C Ultraseven Doll Hat +All Stats +3 +Exp +15% +Drop +15% +Chance 2% Drain SP & HP 2% From DMG +Increase DMG SMALL/MID/LARGE 2% +Aspd +1 +Expiration date 22-04-2024 +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1500775# +Show off your love for Ultraseven with this cute headband! +This adorable accessory is perfect for any fan. +-------------------------- +Increases item drop rate and experience gained from defeating a monster by 3%. +Expiration date 22-04-2024 +-------------------------- +Item Combo +[Not for Sale] C Flying Ultraseven +[Not for Sale] C Ultraseven Balloon +[Not for Sale] C Ultraseven Doll Hat +All Stats +3 +Exp +15% +Drop +15% +Chance 2% Chance 2% Drain SP & HP 2% From DMG +Increase DMG SMALL/MID/LARGE 2% +Aspd +1 +Expiration date 22-04-2024 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1500776# +An Ultraman balloon that hovers above your head, As you wear this, +empowering you with the confidence that you are shielded by the indomitable spirit of Ultraman. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1500777# +Take this adorable Ultraman Taro plush with you wherever you go! He'll be your loyal companion on all your adventures. +-------------------------- +All Stats +1 +Expiration date 22-04-2024 +-------------------------- +Item Combo +[Not for Sale] C Flying Ultraman Taro +[Not for Sale] C Ultraman Taro Balloon +[Not for Sale] C Ultraman Taro Doll Hat +All Stats +3 +Increase DMG Demi-Human 2% +Ignore Ded&Mdef 2% +ATK +5 +Matk +5 +Aspd +1 +Expiration date 22-04-2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1500778# +An Ultraman Taro balloon that hovers above your head, As you wear this, +empowering you with the confidence that you are shielded by the indomitable spirit of Ultraman. +-------------------------- +All Stats +1 +Expiration date 22-04-2024 +-------------------------- +Item Combo +[Not for Sale] C Flying Ultraman Taro +[Not for Sale] C Ultraman Taro Balloon +[Not for Sale] C Ultraman Taro Doll Hat +All Stats +3 +Increase DMG Demi-Human 2% +Ignore Ded&Mdef 2% +ATK +5 +Matk +5 +Aspd +1 +Expiration date 22-04-2024 +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1500779# +Show off your love for Ultraman Taro with this cute headband! This adorable accessory is perfect for any fan. +-------------------------- +Increases item drop rate and experience gained from defeating a monster by 3%. +Expiration date 22-04-2024 +-------------------------- +Item Combo +[Not for Sale] C Flying Ultraman Taro +[Not for Sale] C Ultraman Taro Balloon +[Not for Sale] C Ultraman Taro Doll Hat +All Stats +3 +Increase DMG Demi-Human 2% +Ignore Ded&Mdef 2% +ATK +5 +Matk +5 +Aspd +1 +Expiration date 22-04-2024 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1500781# +A backpack befitting of any hero. +-------------------------- +Enables Level 1 Hidding. +-------------------------- +If upgrade level is +7 or higher: +-------------------------- +Atk + 20 if the users base Str is 90 or higher. +-------------------------- +Matk + 30 if the users base Int is 90 or higher. +-------------------------- +Aspd + 8% if the users base Agi is 90 or higher. +-------------------------- +Increases long-ranged damage on targets by 5% if the users base Dex is 90 or higher. +-------------------------- +Increases critical damage on targets by 10% if the users base Luk is 90 or higher. +-------------------------- +Reduces damage taken from Neutral property attacks by 5% if the users base Vit is 90 or higher. +-------------------------- +If upgrade level is +9 or higher: +-------------------------- +Additional Atk + 10 if the users base Str is 90 or higher. +-------------------------- +Additional Matk + 20 if the users base Int is 90 or higher. +-------------------------- +Aspd + 1 if the users base Agi is 90 or higher. +-------------------------- +Increases long-ranged damage on targets by an additional 5% if the users base Dex is 90 or higher. +-------------------------- +Increases critical damage on targets by an additional 5% if the users base Luk is 90 or higher. +-------------------------- +Reduces damage taken from Neutral property attacks by an additional 5% if the users base Vit is 90 or higher. +-------------------------- +Type: Garment +Defense: 20 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500782# +An Angelring balloon that floating over your head. Somehow you feel really lucky just by wearing this. +-------------------------- +Increases White/Yellow/Orange/Red Potion restoration by 50% +(This effect will not Work on GVG or WoE maps) +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +1500783# +An Arch Angelring balloon that floating over your head. Somehow you feel really lucky just by wearing this. +-------------------------- +Increases item drop rate and experience gained from defeating a monster by 5%. +-------------------------- +Enables use of Level 1 Resurrection. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +1500784# +A box that contains stones that can be enchanted on an Ultraman Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +A Box containing +[Ultraman] STR Stone (Upper) +[Ultraman] INT Stone (Upper) +[Ultraman] AGI Stone (Upper) +[Ultraman] DEX Stone (Upper) +[Ultraman] VIT Stone (Upper) +[Ultraman] LUK Stone (Upper) +[Ultraman] Recovery Stone (Upper) +[Ultraman] Recovery Skill Stone (Upper) +[Ultraman] Large Stone (Upper) +[Ultraman] Medium Stone (Upper) +[Ultraman] Small Stone (Upper) +[Ultraman] ATK Stone (Upper) +[Ultraman] MATK Stone (Upper) +[Ultraman] ATK Stone (Middle) +[Ultraman] MATK Stone (Middle) +[Ultraman] Recovery Stone (Middle) +[Ultraman] HP Stone (Middle) +[Ultraman] SP Stone (Middle) +[Ultraman] HIT Stone (Lower) +[Ultraman] FLEE Stone (Lower) +[Ultraman] Recovery Stone (Lower) +[Ultraman] ATK Stone (Lower) +[Ultraman] MATK Stone (Lower) +[Ultraman] ASPD Stone (Garment) +[Ultraman] HP Absorption Stone (Garment) +[Ultraman] SP Absorption Stone (Garment) +-------------------------- +Weight: 0 +# +1500785# +Transform into your favorite Ultraman with this amazing device! This incredible gadget will give you the power you need to save the day. +-------------------------- +Weight: 0 +# +1500786# +Take this adorable Ultraseven plush with you wherever you go! He'll be your loyal companion on all your adventures. +-------------------------- +Item Combo +All Stats +3 +Exp +15% +Drop +15% +Chance 2% Chance 2% Drain SP & HP 2% From DMG +Increase DMG SMALL/MID/LARGE 2% +Aspd +1 +Expiration date 22-04-2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1500787# +An Ultraseven balloon that floats over your head, + As you wear this, empowering you with the confidence that you are shielded by the indomitable spirit of Ultraman. +-------------------------- +Item Combo +All Stats +3 +Exp +15% +Drop +15% +Chance 2% Chance 2% Drain SP & HP 2% From DMG +Increase DMG SMALL/MID/LARGE 2% +Aspd +1 +Expiration date 22-04-2024 +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1500788# +Show off your love for Ultraseven with this cute headband! +This adorable accessory is perfect for any fan. +-------------------------- +Item Combo +All Stats +3 +Exp +15% +Drop +15% +Chance 2% Chance 2% Drain SP & HP 2% From DMG +Increase DMG SMALL/MID/LARGE 2% +Aspd +1 +Expiration date 22-04-2024 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1500789# +Take this adorable Ultraman Taro plush with you wherever you go! He'll be your loyal companion on all your adventures. +-------------------------- +Item Combo +All Stats +3 +Increase DMG Demi-Human 2% +Ignore Ded&Mdef 2% +ATK +5 +Matk +5 +Aspd +1 +Expiration date 22-04-2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1500790# +An Ultraman Taro balloon that hovers above your head, As you wear this, +empowering you with the confidence that you are shielded by the indomitable spirit of Ultraman. +-------------------------- +Item Combo +All Stats +3 +Increase DMG Demi-Human 2% +Ignore Ded&Mdef 2% +ATK +5 +Matk +5 +Aspd +1 +Expiration date 22-04-2024 +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1500791# +Show off your love for Ultraman Taro with this cute headband! This adorable accessory is perfect for any fan. +-------------------------- +Item Combo +All Stats +3 +Increase DMG Demi-Human 2% +Ignore Ded&Mdef 2% +ATK +5 +Matk +5 +Aspd +1 +Expiration date 22-04-2024 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1500792# +A backpack befitting of any hero. +-------------------------- +Enables Level 1 Teleport. +-------------------------- +If upgrade level is +7 or higher: +-------------------------- +Atk + 20 if the users base Str is 90 or higher. +-------------------------- +Matk + 30 if the users base Int is 90 or higher. +-------------------------- +Aspd + 8% if the users base Agi is 90 or higher. +-------------------------- +Increases long-ranged damage on targets by 5% if the users base Dex is 90 or higher. +-------------------------- +Increases critical damage on targets by 10% if the users base Luk is 90 or higher. +-------------------------- +Reduces damage taken from Neutral property attacks by 5% if the users base Vit is 90 or higher. +-------------------------- +If upgrade level is +9 or higher: +-------------------------- +Additional Atk + 10 if the users base Str is 90 or higher. +-------------------------- +Additional Matk + 20 if the users base Int is 90 or higher. +-------------------------- +Aspd + 1 if the users base Agi is 90 or higher. +-------------------------- +Increases long-ranged damage on targets by an additional 5% if the users base Dex is 90 or higher. +-------------------------- +Increases critical damage on targets by an additional 5% if the users base Luk is 90 or higher. +-------------------------- +Reduces damage taken from Neutral property attacks by an additional 5% if the users base Vit is 90 or higher. +-------------------------- +Type: Garment +Defense: 20 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500793# +A backpack befitting of any hero. +-------------------------- +Enables Level 1 Teleport. +-------------------------- +If upgrade level is +7 or higher: +-------------------------- +Atk + 20 if the users base Str is 90 or higher. +-------------------------- +Matk + 30 if the users base Int is 90 or higher. +-------------------------- +Aspd + 8% if the users base Agi is 90 or higher. +-------------------------- +Increases long-ranged damage on targets by 5% if the users base Dex is 90 or higher. +-------------------------- +Increases critical damage on targets by 10% if the users base Luk is 90 or higher. +-------------------------- +Reduces damage taken from Neutral property attacks by 5% if the users base Vit is 90 or higher. +-------------------------- +If upgrade level is +9 or higher: +-------------------------- +Additional Atk + 10 if the users base Str is 90 or higher. +-------------------------- +Additional Matk + 20 if the users base Int is 90 or higher. +-------------------------- +Aspd + 1 if the users base Agi is 90 or higher. +-------------------------- +Increases long-ranged damage on targets by an additional 5% if the users base Dex is 90 or higher. +-------------------------- +Increases critical damage on targets by an additional 5% if the users base Luk is 90 or higher. +-------------------------- +Reduces damage taken from Neutral property attacks by an additional 5% if the users base Vit is 90 or higher. +-------------------------- +Type: Garment +Defense: 20 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500794# +A box which contains +-------------------------- +Small Life Potion 30ea +Medium Life Potion 30ea +Mysterious Life Potion 30ea +-------------------------- +Weight: 1 +# +1500795# +First Refill VII Box 10ION +A box that contains. +-------------------------- +[Event] Battle Manual&Bubble Gum 3ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +[Event] Mental Potion 5ea +-------------------------- +Weight: 0 +# +1500796# +First Refill VII Box 30ION +A box that contains. +-------------------------- +Miracle Medicine 1ea +Token Of Siegfried 5ea +Adamantine Blessing 30ea +Scholar's Ring Box (15Day) 1ea +-------------------------- +Weight: 0 +# +1500797# +A box that contains. +-------------------------- +Level 10 Blessing Scroll 10ea +Level 10 Increase Agility Scroll 10ea +Medium Life Potion 10ea +-------------------------- +Weight: 0 +# +1500798# +A box that contains. +-------------------------- +[Event] New Pet Scroll 5ea +Boarding Halter Box 7D 1ea +[Event] Guyak Pudding 10ea +Blessing Ore Mirror 20ea +-------------------------- +Weight: 0 +# +1500799# +A box that contains. +-------------------------- +[R] Pet Spirit Guarantee Scroll 4ea +Elite Siege Supply Box 5ea +Small Mana Potion 10ea +Mental Potion 10ea +-------------------------- +Weight: 0 +# +1500800# +A box that contains. +-------------------------- +[Event] Big Bun 50ea +[Event] Pill 50ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +Adamantine Blessing 119ea +-------------------------- +Weight: 0 +# +1500801# +A box that contains. +-------------------------- +Adamantine Blessing 199ea +Enriched Elunium 2ea +Enriched Oridecon 2ea +[Event] True Tyr's Blessing 2ea +[Event] Big Bun 50ea +[Event] Pill 50ea +-------------------------- +Weight: 0 +# +1500802# +A potion containing the blessing of Tyr, the god of battle. +-------------------------- +ATK and MATK +20 for 60 minutes. HIT and FLEE +30. +The Movement Speed is also increased for 10 minutes. +-------------------------- +Warning! - When using Honey Pastry, Sesame Pastry or and Rainbow Cake, the duration and stats are not applied properly and it does not stack with PC Room buff. +If you are incapacitated or hit by the Dispell skill, the item effect will disappear. +-------------------------- +Weight: 1 +# +1500803# +A delicious looking bun which is big enough for two person to eat together. It recovers your HP. +-------------------------- +Weight: 1 +# +1500804# +A very bitter pill. It is made with traditional recipe which has been handed down from the family of who have 5000 years of tradition in pharmacy. +Don't swallow it once. You should chew it slowly in order to recover your SP. +-------------------------- +Weight: 1 +# +1500805# +This item cannot be traded with other accounts. +A box to celebrate newly joined adventurer. +Require level 1 to open it. +A box that contains. +-------------------------- +[Event] Novice Potion 300ea +[Event] Novice Fly Wing 100ea +[Event] Novice Butterfly Wing 20ea +[Event] Novice Magnifier 10ea +Free ticket for kafra storage 10ea +Free Ticket for Kafra Transportation 10ea +[Event] Inspector Certificate 5ea +Quiver 5ea +[Event] Beginning Set Box 1ea +[Event] Metal Weapon Box 1ea +ROVerse Level-Up Pack (10) 1ea +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 1 +# +1500806# +This item cannot be traded with other accounts. +A box to celebrate newly joined adventurer. +Require level 10 to open it. +A box that contains. +-------------------------- +[Event] Novice Potion 300ea +[Event] Novice Fly Wing 150ea +[Event] Novice Magnifier 10ea +Quiver 5ea +ROVerse Level-Up Pack (20) 1ea +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 10 +# +1500807# +This item cannot be traded with other accounts. +A box to celebrate newly joined adventurer. +Require level 20 to open it. +A box that contains. +-------------------------- +[Event] Novice Potion 300ea +[Event] Novice Fly Wing 150ea +[Event] Novice Butterfly Wing 10ea +[Event] Novice Magnifier 10ea +Quiver 5ea +[Event] Almighty 1ea +ROVerse Level-Up Pack (30) 1ea +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 20 +# +1500808# +This item cannot be traded with other accounts. +A box to celebrate newly joined adventurer. +Require level 30 to open it. +A box that contains. +-------------------------- +[Event] Novice Potion 300ea +[Event] Novice Fly Wing 150ea +[Event] Novice Butterfly Wing 20ea +[Event] Novice Magnifier 10ea +Quiver 5ea +[Event] Inspector Certificate 10ea +[Event] Almighty 1ea +ROVerse Level-Up Pack (40) 1ea +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 30 +# +1500809# +This item cannot be traded with other accounts. +A box to celebrate newly joined adventurer. +Require level 40 to open it. +A box that contains. +-------------------------- +[Event] Novice Potion 200ea +[Event] Orange Potion 30ea +[Event] Novice Fly Wing 100ea +[Event] Novice Butterfly Wing 20ea +[Event] Novice Magnifier 10ea +Quiver 5ea +[Event] Inspector Certificate 10ea +ROVerse Level-Up Pack (50) 1ea +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 40 +# +1500810# +This item cannot be traded with other accounts. +A box to celebrate newly joined adventurer. +Require level 50 to open it. +A box that contains. +-------------------------- +[Event] Novice Potion 100ea +[Event] Yellow Potion 30ea +[Event] Novice Fly Wing 150ea +[Event] Novice Magnifier 10ea +Quiver 5ea +[Event] Scholar's Ring Box (3Day) 1ea +ROVerse Level-Up Pack (60) 1ea +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 50 +# +1500811# +This item cannot be traded with other accounts. +A box to celebrate newly joined adventurer. +Require level 60 to open it. +A box that contains. +-------------------------- +[Event] Novice Potion 100ea +[Event] Yellow Potion 30ea +[Event] Novice Fly Wing 150ea +[Event] Novice Magnifier 10ea +Quiver 5ea +ROVerse Level-Up Pack (70) 1ea +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 60 +# +1500812# +This item cannot be traded with other accounts. +A box to celebrate newly joined adventurer. +Require level 70 to open it. +A box that contains. +-------------------------- +[Event] Yellow Slim Potion 100ea +[Event] Small Mana Potion 3ea +[Event] Regeneration Potion 2ea +[Event] Bubble Gum 5ea +[Event] Insurance Certificate 5ea +ROVerse Level-Up Pack (80) 1ea +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 70 +# +1500813# +This item cannot be traded with other accounts. +A box to celebrate newly joined adventurer. +Require level 80 to open it. +A box that contains. +-------------------------- +[Event] Yellow Slim Potion 150ea +[Event] Novice Fly Wing 100ea +[Event] Regeneration Potion 4ea +[Event] Insurance Certificate 10ea +[Event] Battle Manual 5ea +[Event] Abrasive 5ea +[Event] Costume Starter Pack Thief Hat 1ea +ROVerse Level-Up Pack (90) 1ea +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 80 +# +1500814# +This item cannot be traded with other accounts. +A box to celebrate newly joined adventurer. +Require level 90 to open it. +A box that contains. +-------------------------- +[Event] Beginner Shadow Box 1ea +-------------------------- +Weight: 0 +-------------------------- +Requirement: +Base Level 90 +# +1500815# +A hat that wear on beginner event. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1500816# +A suit of armor worn on top of normal armor for additional defense. +Needs a complete set to have bonus effect. +-------------------------- +LUK +1 +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +1500817# +A pair of gloves that can draw the wearer's potential ability. +-------------------------- +DEX +1 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +1500818# +A small shield worn on the arm for additional defense. +Needs a complete set to have bonus effect. +-------------------------- +VIT +1 +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +1500819# +A pair of shoes worn on top of normal shoes for additional defense. +Needs a complete set to have bonus effect. +-------------------------- +AGI +1 +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +1500820# +A sacred earring which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +INT +1 +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +1500821# +A sacred necklace which is believed to protect its wearer. It also draws the wearer's potential abilities. +-------------------------- +STR +1 +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +1500822# +Hat made to honor of the Beginner. +-------------------------- +Level 1 - 50 +INT +2 +MaxSP +50 +SP Consumption - 5% +-------------------------- +Level 51 - 80 +INT +1 +MaxSP +25 +SP Consumption - 3% +-------------------------- +Level more than 80+ +All Effect are Disabled +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1500823# +Suit made to honor of the Beginner. +-------------------------- +Level 1 - 50 +All Stats +2 +MaxHp +300 +MaxSp +100 +MaxHp +4% +MaxSp +4% +-------------------------- +Level 51 - 80 +All Stats +1 +MaxHp +150 +MaxSp +50 +MaxHp +2% +MaxSp +2% +-------------------------- +Level more than 80+ +All Effect are Disabled +-------------------------- +Type: Armor +Defense: 62 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500824# +muffler made to honor of the Beginner. +-------------------------- +Level 1 - 50 +Reduces Neutral elemental damage by 10% +Variable Cast Time -5% +FLEE + 10 +-------------------------- +Level 51 - 80 +Reduces Neutral elemental damage by 5% +Variable Cast Time -3% +FLEE + 5 +-------------------------- +Level more than 80+ +All Effect are Disabled +-------------------------- +Type: Garment +Defense: 9 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500825# +Boots made to honor of the Beginner. +-------------------------- +Level 1 - 50 +Critical +10 +Increases HP Recovery Rate by 10% +Increases SP Recovery Rate by 10% +Aspd +10% +-------------------------- +Level 51 - 80 +Critical +5 +Increases HP Recovery Rate by 5% +Increases SP Recovery Rate by 5% +Aspd +5% +-------------------------- +Level more than 80+ +All Effect are Disabled +-------------------------- +Type: Shoes +Defense: 17 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500826# +Rental Items for 3 days +A box contains 1 Scholar's Ring Please take a care because is fragile! +-------------------------- +A scholar's ring bestows upon its wearer a full comprehension of any written document or spoken dialect, irrespective of whether they have previously encountered it or not. +-------------------------- +All Stats +5 +EXP + 5% Drop + 5% +Enables the use of Level 1 Teleport. +-------------------------- +Weight: 0 +# +1500827# +Rental Items +A scholar's ring bestows upon its wearer a full comprehension of any written document or spoken dialect, irrespective of whether they have previously encountered it or not. +-------------------------- +All Stats +5 +EXP + 5% Drop + 5% +Enables the use of Level 1 Teleport. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500828# +A badge made out of bronze that was used in an ancient asian country. +It was given to government officials who went on business trips and they could use this badge to rent horses anywhere. +-------------------------- +Type: Supportive +Effect: Increases movement speed +Effect duration: 9 minutes +Weight: 1 +# +1500829# +Created from all ultimate ingredients. +Grants the user Land Buff effect. +-------------------------- +Weight: 1 +# +1500830# +A gleaming ring crafted from advanced technology. It hums with barely contained power and is rumored to enhance the wearer's mechanical abilities. +-------------------------- +Atk +5 +Aspd +3% +-------------------------- +Type: Accessory (Right) +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +1500831# +A weathered ring etched with forgotten symbols. Despite its worn appearance, it emanates a faint magical aura, hinting at a hidden potential. +-------------------------- +Matk +5 +Variable Cast Time - 1% +-------------------------- +Type: Accessory (Left) +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +1500832# +A magnificent crown worn by the most powerful rulers. It is said to grant the wearer wisdom and charisma. +-------------------------- +Atk +10 +Matk +10 +Mdef +2 +-------------------------- +When refined to +7 or higher: +Atk +5 +Matk +5 +Mdef +3 +-------------------------- +When refined to +9 or higher: +Atk +5 +Matk +5 +Mdef +5 +-------------------------- +Type: Headgear +Defense: 13 +Position: Upper +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +1500833# +A suit of armor forged from the finest materials. It is said to be impervious to all but the most powerful attacks players. +-------------------------- +Max HP + 1% +Max SP + 1% +HIT + 3 +FLEE + 3 +-------------------------- +When refined to +7 or higher: +Max HP + 2% +Max SP + 2% +HIT + 4 +FLEE + 4 +-------------------------- +When refined to +9 or higher: +Max HP + 2% +Max SP + 2% +HIT + 3 +FLEE + 3 +-------------------------- +Type: Armor +Defense: 70 +Weight: 300 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +1500834# +A finely-crafted cloak that is said to grant the wearer the power to control time. +-------------------------- +All Status + 1 +Defense + 10 +Weight Limit +100 +-------------------------- +When refined to +7 or higher: +All Status + 1 +Defense + 10 +Weight Limit +200 +-------------------------- +When refined to +9 or higher: +All Status + 1 +Defense + 10 +Weight Limit +200 +-------------------------- +Type: Garment +Defense: 13 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +1500835# +A pair of boots that are said to allow the wearer to move with incredible speed and agility. +-------------------------- +Critical + 3 +Critical Damage + 3% +Fixed Cast Time - 1% +Resistance Frozen Status 5% +Resistance Stun Status 5% +-------------------------- +When refined to +7 or higher: +Critical + 3 +Critical Damage + 3% +Fixed Cast Time - 2% +Resistance Frozen Status 5% +Resistance Stun Status 5% +-------------------------- +When refined to +9 or higher: +Critical + 4 +Critical Damage + 4% +Fixed Cast Time - 2% +Resistance Frozen Status 5% +Resistance Stun Status 5% +-------------------------- +Type: Shoes +Defense: 27 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +1500836# +A box containing +-------------------------- +Infinity Drink 5ea +Red Booster 5ea +Elite Siege Supply Box 3ea +-------------------------- +Weight: 0 +# +1500837# +A box containing +-------------------------- +[R] Pet Spirit Guarantee Scroll 4ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +Holgren's Shadow Smelting Hammer 3ea +-------------------------- +Weight: 0 +# +1500838# +A box containing +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Adamantine Blessing 159ea +AmistrBag Random Box 1ea +-------------------------- +Weight: 0 +# +1500839# +Items Within the AmistrBag Random Box (Random) +-------------------------- +- Endure Amistr Bag [1] +- Greed Amistr Bag [1] +- Heal Amistr Bag [1] +- Hiding Amistr Bag [1] +- Improve Concentration Amistr Bag [1] +- Increase AGI Amistr Bag [1] +- Magnum Break Amistr Bag [1] +- Maximize Power Amistr Bag [1] +- Sight Amistr Bag [1] +- Teleport Amistr Bag [1] +-------------------------- +Weight: 0 +# +1500840# +A bag made based on Amistr Homunculus. +-------------------------- +All Stats +1 +-------------------------- +Enables Level 1 Maximize Power. +-------------------------- +Increases the experience given from monsters by 1% per 2 upgrade levels of the item. +Increases the drop rate of items by 1% per 2 upgrade levels of the item. +-------------------------- +If upgrade level is +9 or higher +Restores 3 SP to the user when a monster is killed by a physical or magical attack. +-------------------------- +If upgrade level is +12 or higher +The users casting cannot be interrupted outside of WoE. +-------------------------- +Type: Garment +Defense: 30 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500841# +A box which contains +-------------------------- +Ultraseven Scroll Package 1ea +Ultraman Taro Scroll Package 1ea +-------------------------- +Weight: 0 +# +1500842# +A box which contains +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +-------------------------- +Weight: 0 +# +1500843# +A box containing +-------------------------- +Ultraseven Scroll 20ea +Ultraman Backpack Select Box 1ea +Power 250ea +-------------------------- +Weight: 0 +# +1500844# +A box containing +-------------------------- +Ultraman Taro Scroll 20ea +Ultraman Backpack Select Box 1ea +Power 250ea +-------------------------- +Weight: 0 +# +1500845# +Moscovia Quest Pass grants exclusive access to bypass the quest Finding The Moving Island Quest +allowing direct entry into the Moscovia Dungeon. Additionally, users of the pass will receive a GUSLI as a special bonus item. +-------------------------- +This item cannot be used if you have already completed this quest. +-------------------------- +Weight: 0 +# +1500846# +Kiel Hyre Quest Pass grants exclusive access to bypass Kiel Hyre Quest, allowing direct entry into the Kiel Robot Factory. +Additionally, users of the pass will receive a Luxurious Keycard as a special bonus item. +-------------------------- +This item cannot be used if you have already completed this quest. +-------------------------- +Weight: 0 +# +1500847# +The Sign Quest Pass grants exclusive access to bypass The Sign Quest, allowing direct entry into the Geffenia. +Additionally, users of the pass will receive The Sign and Lucifer's Lament as a special bonus item. +-------------------------- +This item cannot be used if you have already completed this quest. +-------------------------- +Weight: 0 +# +1500848# +No matter what is inside this egg, it must be precious thing for sure ! +-------------------------- +Weight: 1 +# +1500849# +A box containing +-------------------------- +[Event] HE Battle Manual 2ea +[Event] Small Life Potion 10ea +[Event] Small Life Potion 10ea +Unlimited Fly wing 1 (Day) 2ea +[Event] New Pet Scroll 2ea +Adamantine Blessing 30ea +Costume Backpack (Black) 1ea +-------------------------- +Weight: 0 +# +1500850# +An unusual helmet that has vicious aura bearing the Great Demon name. +As its name implies, it has an ability to absorb the life force of its enemy. +-------------------------- +All stats +3 +MaxHp +100 +MaxSp +50 +-------------------------- +For every 2 refine level +Atk +10 +Matk +10 +-------------------------- +If refine level is +5 +Increases Physical and magic damage +5% +-------------------------- +If refine level is +7 +Enable a 5% chance of gaining 3% of the damage inflicted to an enemy as HP with each attack +Enable a 2% chance of gaining 2% of the damage inflicted to an enemy as SP with each attack +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +# +1500851# +The truly devoted have seen into the infinite and have been forever changed. +-------------------------- +Increases physical and magical damage against all monster classes by 3%. +Every 7 base STR, increases ATK by +1. +Every 7 base VIT, increases MHP by +30. +Every 7 base INT, increases INT by +1. +Every 7 base AGI, increases FLEE by +1. +Every 7 base DEX, increases AGI by +1. +Every 7 base LUK, increases CRIT by +1. +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +# +1500852# +A shield used by the hero Achilles. He was immune to ranged attacks as it was difficult to target his weak point, the heel. +-------------------------- +MDEF +5. +Resistance against ranged attack +5%. +Resistance against magic attack +5%. +If refine level is +7 or above, +for every refine level, resistance against ranged attack +1% andresistance against magic attack +1% additionally. +-------------------------- +Type: Shield +Defense: 50 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500853# +A spiritual robe granted by Freya. It appears very sturdy, but it will eventually disappear and return to Freya's realm, Folkvangr. +-------------------------- +MaxHP +300 +Mdef +2 +Variable Cast Time - 3% +-------------------------- +Combo with Achilles Shield [1] +-------------------------- +If refine level is +7 or above, +MaxHP +200 +Mdef +3 +Variable Cast Time - 2% +Add a 5% resistance against Water, Fire, and Wind Property. +-------------------------- +If refine level is +9 or above, +MaxHP +500 +Mdef +5 +Variable Cast Time - 5% +Add a 5% resistance against Water, Fire, and Wind Property. +-------------------------- +Type: Armor +Defense: 7 +Weight: 50 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 20 +# +1500854# +No matter what is inside this egg, it must be precious thing for sure ! +When opened, grants you a chance to receive valuable rewards +-------------------------- +Type: Item Giver +Weight: 1 +# +1500855# +A box containing +-------------------------- +[Event] HE Battle Manual 4ea +[Event] Red Booster 10ea +[Event] Power Booster 4ea +[Event] Guyak Pudding 10ea +[Event] Increase Agility Scroll 10ea +[Event] Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500856# +A box containing +-------------------------- +[Event] Token Of Siegfried 15ea +[Event] Life Insurance 30ea +[Event] Red Booster 10ea +[Event] Power Booster 2ea +[Event] Infinity Drink 2ea +[Event] Fried Pastry 10ea +[Event] Teacake 10ea +-------------------------- +Weight: 0 +# +1500857# +A box that contains. +-------------------------- +Level 10 Blessing Scroll 10ea +Level 10 Increase Agility Scroll 10ea +Medium Life Potion 10ea +-------------------------- +Weight: 0 +# +1500858# +A box that contains. +-------------------------- +New Pet Scroll 6ea +Boarding Halter Box 7D 1ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +-------------------------- +Weight: 0 +# +1500859# +A box that contains. +-------------------------- +[R] Pet Spirit Guarantee Scroll 4ea +Elite Siege Supply Box 5ea +Small Mana Potion 5ea +[Event] Guyak Pudding 10ea +-------------------------- +Weight: 0 +# +1500860# +A box that contains. +-------------------------- +[Event] Big Bun 50ea +[Event] Guyak Pudding 15ea +Full SwingK 10ea +Mana + 10ea +Combat Pill 10ea +Adamantine Blessing 119ea +-------------------------- +Weight: 0 +# +1500861# +A box that contains. +-------------------------- +Adamantine Blessing 199ea +Enriched Elunium 2ea +Enriched Oridecon 2ea +Title : The New journey (21 days) 1ea +[Event] Guyak Pudding 20ea +[Event] Big Bun 50ea +-------------------------- +Weight: 0 +# +1500862# +[Apr] First Refill Box 10ION +A box that contains. +-------------------------- +Stamina Elixir 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +[Event] Red Booster 2ea +-------------------------- +Weight: 0 +# +1500863# +[Apr] First Refill Box 30ION +A box that contains. +-------------------------- +[Event] Medium Life Potion 10ea +Token Of Siegfried 5ea +Adamantine Blessing 30ea +[Event] Scuba Mask box (14 Days) 1ea +-------------------------- +Weight: 0 +# +1500864# +Use it for activate title The New journey +-------------------------- +Allstatus +2 +Atk +5 +Matk +5 +Hit +5 +Exp +5% +Drop +3% +Expiration date 21-04-2024 +Type: Title Giver +Weight: 1 +# +1500865# +Rental Items for 14 days +A box contains 1 [Event] Scuba Mask +-------------------------- +When equipped with Figure +All Stats +3 +MATK +15 +ATK +15 +Variable Cast Time - 10% +Exp +5% +Drop +5% +Increases Movement Speed by 25% +-------------------------- +Weight: 0 +# +1500866# +A Scuba Mask with a snorkel. +It's a waterproof diving mask that resists high pressure and shocks. +-------------------------- +When equipped with Figure +All Stats +3 +MATK +15 +ATK +15 +Variable Cast Time - 10% +Exp +5% +Drop +5% +Increases Movement Speed by 25% +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1-80 +# +1500867# +Use it for activate title Divided +-------------------------- +Increase damage on DemiHuman monster by 3%. +-------------------------- +Type: Title Giver +Weight: 1 +# +1500868# +A box that contains +Adamantine Blessing 50 ea +-------------------------- +Adamantine Blessing cannot be traded +-------------------------- +Weight: 0 +# +1500869# +You can take Shrine anywhere. +-------------------------- +Weight: 0 +# +1500870# +This Box Including Godly Item material, +You will have a chance to random a Godly Item material when open this box. +-------------------------- +Weight: 0 +# +1500871# +A scroll on which +many Ninja Palace map +-------------------------- +Weight: 0 +# +1500872# +Appearance similar to a rabbit But it's not an ordinary rabbit. It's a really crazy mess. +-------------------------- +When opened, grants you a chance to receive valuable rewards +-------------------------- +Type: Item Giver +Weight: 1 +# +1500873# +Remainder Processor deducted from the Robot Factory. +-------------------------- +HIT +10 +MaxHP +3% +-------------------------- +Increase Physical and Magical Damage to Kiel Robot Factory monsters by 5%. +Reduce Physical and Magical Damage to Kiel Robot Factory monsters by 5%. +-------------------------- +If upgrade level is +5 or higher: +Increase Physical and Magical Damage to Kiel Robot Factory monsters by 5%. +Reduce Physical and Magical Damage to Kiel Robot Factory monsters by 5%. +-------------------------- +If upgrade level is +7 or higher: +Increase Physical and Magical Damage to Kiel Robot Factory monsters by 10%. +Reduce Physical and Magical Damage to Kiel Robot Factory monsters by 10%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500874# +The crown from the King Gopinich. +-------------------------- +HIT +10 +MaxHP +3% +-------------------------- +Increase Physical and Magical Damage to Moscovia monsters by 5%. +Reduce Physical and Magical Damage to Moscovia monsters by 5%. +-------------------------- +If upgrade level is +5 or higher: +Increase Physical and Magical Damage to Moscovia monsters by 5%. +Reduce Physical and Magical Damage to Moscovia monsters by 5%. +-------------------------- +If upgrade level is +7 or higher: +Increase Physical and Magical Damage to Moscovia monsters by 10%. +Reduce Physical and Magical Damage to Moscovia monsters by 10%. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500875# +The shiny black box, don't know what's inside, it must contain something valuable for sure. +-------------------------- +Type: Item Giver +Weight: 1 +# +1500876# +A mysterious wings with a white left-wing and a black right-wing +-------------------------- +Allstatus +2 +-------------------------- +Every Refine +Atk +1 +Matk +1 +Maximum of ATK and Matk bonus is +10 +-------------------------- +Set Bonus +Wings of Light and Darkness +Costume Light Darkness Crown +Increases damage monster all class +2% +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +1500877# +Supply box when open obtain Big Bun and Pill +-------------------------- +[Event] Big Bun 100 ea +[Event] Pill 50 ea +-------------------------- +Weight: 0 +# +1500878# +A box which contains +-------------------------- +Boarding Halter Box 3D 1ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Additional +2 Adam Blessing for each quest completed from the Daily Board +-------------------------- +Additional +10 Kiel Coin & Mos Coin for each quest completed from the Weekly quest +-------------------------- +Weight: 0 +# +1500879# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] White Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500880# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500881# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +1500882# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500883# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500884# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500885# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Weight: 0 +# +1500886# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] White Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500887# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500888# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +1500889# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500890# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500891# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500892# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Boarding Halter Box 3D 1ea +[R] Pet Guaranteed Scroll 1ea +-------------------------- +Weight: 0 +# +1500893# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] White Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500894# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500895# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +1500896# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500897# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500898# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500899# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Weight: 0 +# +1500900# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] White Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500901# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500902# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +1500903# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500904# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500905# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500906# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Boarding Halter Box 3D 1ea +-------------------------- +Weight: 0 +# +1500907# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] White Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500908# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500909# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +1500910# +A box which contains +-------------------------- +Adamantine Blessing 30ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500911# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500912# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500913# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Weight: 0 +# +1500914# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] White Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500915# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500916# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +1500917# +A box which contains +-------------------------- +Adamantine Blessing 30ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500918# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500919# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500920# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Boarding Halter Box 3D 1ea +-------------------------- +Weight: 0 +# +1500921# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] White Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1500922# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500923# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +1500924# +A box which contains +-------------------------- +Adamantine Blessing 30ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +1500925# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1500926# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500927# +A box which contains +-------------------------- +Costume Aqua Ten Gallon Hat 1ea +[R] Pet Guaranteed Scroll 3ea +Adamantine Blessing 100ea +Robot Fragment 1ea +Rusty Fragment 1ea +Soul of Corrison 10ea +-------------------------- +Weight: 0 +# +1500928# +A box which contains +-------------------------- +[R] Pet Guaranteed Scroll 1ea +Unlimited Fly Wing Box (1 Day) 3ea +Small Mana Potion 5ea +Adamantine Blessing 30ea +-------------------------- +Weight: 0 +# +1500929# +A box which contains +-------------------------- +Small Life Potion 15ea +Medium Life Potion 15ea +Mysterious Life Potion 15ea +-------------------------- +Weight: 0 +# +1500930# +A box which contains +-------------------------- +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +Legendary Ore Convex Mirror 10ea +-------------------------- +Weight: 0 +# +1500931# +A box which contains +-------------------------- +Unlimited Fly Wing Box (1 Day) 3ea +Advanced WoE Supply Box 2ea +Blessing Ore Convex Mirror 10ea +-------------------------- +Weight: 0 +# +1500932# +A box which contains +-------------------------- +Small Mana Potion 5ea +Mental Potion 5ea +Hidden Square Reset Pass 5ea +-------------------------- +Weight: 0 +# +1500933# +A box which contains +-------------------------- +Small Life Potion 30ea +Medium Life Potion 30ea +Mysterious Life Potion 30ea +Unlimited Fly Wing Box (1 Day) 3ea +-------------------------- +Weight: 0 +# +1500934# +A box which contains +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Adamantine Blessing 30ea +-------------------------- +Weight: 0 +# +1500935# +A box which contains +-------------------------- +[R] Pet Guaranteed Scroll 5ea +Rare Pet Spirit Fragment 10ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500936# +A box which contains +-------------------------- +Infinity Drink 2ea +Red Booster 2ea +Limit Power Booster 2ea +Mystic Powder 2ea +Tyr's Blessing 2ea +-------------------------- +Weight: 0 +# +1500937# +A box which contains +-------------------------- +Small Mana Potion 10ea +Mental Potion 10ea +Blessing Ore Convex Mirror 10ea +-------------------------- +Weight: 0 +# +1500938# +A box which contains +-------------------------- +Infinity Drink 2ea +Red Booster 2ea +Limit Power Booster 2ea +Mystic Powder 2ea +Tyr's Blessing 2ea +-------------------------- +Weight: 0 +# +1500939# +A box which contains +-------------------------- +[Event] HE Battle Manual 4ea +[Event] HE Bubble Gum 4ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500940# +A box which contains +-------------------------- +Small Mana Potion 15ea +Mental Potion 15ea +Legendary Ore Convex Mirror 10ea +Soul of Corrosion 20ea +-------------------------- +Weight: 0 +# +1500941# +A box which contains +-------------------------- +Costume Whale Cap 1ea +Enriched Elunium 1ea +Enriched Oridecon 1ea +[Event] Boarding Halter Box 7D 1ea +Adamantine Blessing 30ea +-------------------------- +Additional +3 Adam Blessing for each quest completed from the Daily Board +-------------------------- +Additional +10 Kiel Coin & Mos Coin for each quest completed from the Weekly quest +-------------------------- +Additional +1 Robot Fragment & Rusty Fragment after completed all Weekly quest +-------------------------- +Weight: 0 +# +1500942# +A box which contains +-------------------------- +Infinity Drink 10ea +Red Booster 10ea +Limit Power Booster 10ea +Mystic Powder 10ea +Tyr's Blessing 10ea +-------------------------- +Weight: 0 +# +1500943# +A box which contains +-------------------------- +Mental Potion 15ea +Small Mana Potion 15ea +[R] Pet Guaranteed Scroll 10ea +Legendary Ore Convex Mirror 10ea +Soul of Corrosion 30ea +-------------------------- +Weight: 0 +# +1500944# +A box which contains +-------------------------- +[Event] HE Battle Manual 5ea +[Event] HE Bubble Gum 5ea +HD Bradium 3ea +HD Carnium 3ea +Advanced WoE Supply Box 2ea +Epic Pet Spirit Fragment 5ea +-------------------------- +Weight: 0 +# +1500945# +A box which contains +-------------------------- +HD Bradium 3ea +HD Carnium 3ea +[Event] Automatic Player Box 30 Day 1ea +Blessing Ore Convex Mirror 10ea +Epic Pet Spirit Fragment 5ea +-------------------------- +Weight: 0 +# +1500946# +A box which contains +-------------------------- +Title - Splash Mania (Allstats+3) +Costume Giant Shark 1ea +Gym pass 1ea +Inventory Extension Coupon 1ea +[Event] Battle Manual & Bubble Gum 10ea +Epic Pet Spirit Fragment 15ea +-------------------------- +Additional +2 Adam Blessing for each quest completed from the Daily Board +-------------------------- +Additional +10 Kiel Coin & Mos Coin for each quest completed from the Weekly quest +-------------------------- +Weight: 0 +# +1500947# +A box which contains +-------------------------- +Adamantine Blessing 100ea +[Event] New pet scroll 10ea +Enriched Oridecon 1ea +Enriched Elunium 1ea +-------------------------- +Weight: 0 +# +1500948# +A box which contains +-------------------------- +Adamantine Blessing 33ea +[Event] New pet scroll 10ea +Advanced WoE Supply Box 2ea +Worn Out Limit Break Scroll 10ea +-------------------------- +Weight: 0 +# +1500949# +A box which contains +-------------------------- +Adamantine Blessing 70ea +Blessed Adamantine Dust 10ea +Epic Pet Spirit Fragment 10ea +-------------------------- +Weight: 0 +# +1500950# +A box which contains +-------------------------- +Adamantine Blessing 80ea +Blessed Adamantine Dust 10ea +Legendary Pet Spirit Fragment 3ea +-------------------------- +Additional +20 Robot&Mos Coin for each quest completed from the Weekly quest +-------------------------- +Additional +1 Fragement Robot&Mos for each quest completed from the Weekly quest +-------------------------- +Weight: 0 +# +1500951# +A box which contains +-------------------------- +Blessed Adamantine Dust 10ea +Adamantine Blessing 199ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +1500952# +A box which contains +-------------------------- +Costume Poring Splash 1ea +Gym pass 1ea +Inventory Extension Coupon 1ea +Epic Pet Spirit Fragment 30ea +Adamantine Blessing 299ea +BP Reward Choose 1ea +-------------------------- +Weight: 0 +# +1500953# +Use it for activate title Splash Mania +All Stats +3 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500954# +Invitation Book to Join Battle Pass Season 4, created for everyone to have fun and receive various rewards. +Use it to activate the Quest Battle Pass. +-------------------------- +Weight: 0 +# +1500955# +Invitation Book to Unlock Premium Pass Season 4, created for everyone to have fun and receive various rewards +Use it to activate the Premium Battle Pass. +-------------------------- +Weight: 0 +# +1500956# +Use this item to combine 3 Lotus Petal into a BP Water Infusion. +-------------------------- +Weight: 0 +# +1500957# +Use this BP Tropical Drink to earn 1 Season 4 Battlepass - Quest point. +-------------------------- +Weight: 0 +# +1500958# +Use this Crystal to earn 1 Season 4 Premium Battlepass point. +-------------------------- +Weight: 0 +# +1500959# +A box containing +-------------------------- +Sword Master 333 Crown[1] 1ea +[Event] Elite Siege Supply Box 5ea +Enriched Oridecon 1ea +Enriched Elunium 1ea +Adamantine Blessing 70ea +-------------------------- +Weight: 0 +# +1500960# +A box containing +-------------------------- +Sword Master 333 Crown[1] 1ea +[Event] Elite Siege Supply Box 10ea +Enriched Oridecon 3ea +Enriched Elunium 3ea +Adamantine Blessing 250ea +-------------------------- +Weight: 0 +# +1500961# +A box containing +-------------------------- +Elite Supply Box 5ea +Incesase Agi Scroll 10ea +Blessing Scroll Box 10ea +Smal Mana Potion 10ea +-------------------------- +Weight: 0 +# +1500962# +Use it for activate title Ninja No.1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500963# +Use it for activate title Gunslinger No.1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500964# +Use it for activate title Teakwondo No.1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500965# +Use it for activate title Soul Linker No.1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1500966# +Unlock the power of class with the class pass, your key to exclusive items and rewards fit for your class. +Level up to claim armors, weapons, and exclusive items that set you apart in universe of landverse. +-------------------------- +Type: Class Pass +Weight: 0 +Requirement: +Knight +# +1500967# +A box containing +-------------------------- +[Event] Beginning Set Box 1ea +Title : Prontera adventure 1ea +Schmidt's Two-Hand sword [1] 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +# +1500968# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +# +1500969# +A box containing +-------------------------- +[Event] Scholar Ring 7 Day 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +# +1500970# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +# +1500971# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +# +1500972# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +# +1500973# +A box containing +-------------------------- +[Event] Medal of Honor (Swordman) 1ea +Adamantine Blessing 100ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +# +1500974# +A box containing +-------------------------- +Adamantine Blessing 150ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +# +1500975# +A box containing +-------------------------- +Adamantine Blessing 200ea +[Event] HE Battle Manual 4ea +[Event] HE Bubble Gum 4ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +# +1500976# +A box containing +-------------------------- +Moonstone Crystal 3,000 Point +Adamantine Blessing 200ea +[R] Pet Spirit Guarantee Scroll 1ea +-------------------------- +Weight: 0 +# +1500977# +Str +2 +Agi +2 +Aspd +10% +-------------------------- +Every refine level increases atk +5 +-------------------------- +Increases damage of [Bash] and [Bowling Bash] skill by 15%. +-------------------------- +When refined to +8 or higher: +increases [Bash] and [Bowling Bash] skill damage by 15% to monsters. +-------------------------- +Cannot be use in WOE maps +-------------------------- +Type: Two-Handed Sword +Attack: 175 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50-100 +Knight +# +1500978# +A medal rewarded to honorable warriors. +-------------------------- +MaxHP +500 +MaxSP +50 +MATK +5% +HIT +10 +ATK +5% +-------------------------- +Adds a 1% chance of inflicting Stun on the target when performing a short-ranged attack. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Swordsman and Star Gladiator +# +1500979# +Use it for activate title Prontera Adventure +Exp +3% +Job +3% +Drop +3% +-------------------------- +Type: Title Giver +Weight: 1 +# +1500980# +Rental Items for 7 days +A box contains 1 Scholar's Ring Please take a care because is fragile! +-------------------------- +A scholar's ring bestows upon its wearer a full comprehension of any written document or spoken dialect, irrespective of whether they have previously encountered it or not. +-------------------------- +All Stats +5 +EXP + 5% Drop + 5% +Enables the use of Level 1 Teleport. +-------------------------- +Weight: 0 +# +1500981# +A box containing +-------------------------- +[Event] Beginning Set Box 1ea +Title : Prontera adventure 1ea +Schmidt's Two-Hand Spear [1] 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 50 +Crusader +# +1500982# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 55 +Crusader +# +1500983# +A box containing +-------------------------- +[Event] Scholar Ring 7 Day 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 60 +Crusader +# +1500984# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 65 +Crusader +# +1500985# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 70 +Crusader +# +1500986# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 75 +Crusader +# +1500987# +A box containing +-------------------------- +[Event] Medal of Honor (Swordman) 1ea +Adamantine Blessing 100ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 80 +Crusader +# +1500988# +A box containing +-------------------------- +Adamantine Blessing 150ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 85 +Crusader +# +1500989# +A box containing +-------------------------- +Adamantine Blessing 200ea +[Event] HE Battle Manual 4ea +[Event] HE Bubble Gum 4ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 90 +Crusader +# +1500990# +A box containing +-------------------------- +Moonstone Crystal 3,000 Point +Adamantine Blessing 200ea +[R] Pet Spirit Guarantee Scroll 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 95 +Crusader +# +1500991# +Str +2 +Dex +2 +Hit +10 +-------------------------- +Every refine level increases atk +5 +-------------------------- +Increases damage of [Holy Cross] skill by 10%. +-------------------------- +When refined to +8 or higher: +increases [Holy Cross] skill damage by 15% to monsters. +-------------------------- +Cannot be use in WOE maps +-------------------------- +Type: Two-Handed Spear +Attack: 175 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50-100 +Crusader +# +1500992# +A box containing +-------------------------- +[Event] Beginning Set Box 1ea +Title : Prontera adventure 1ea +Schmidt's Two-Hand Axe [1] 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 50 +Blacksmith +# +1500993# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 55 +Blacksmith +# +1500994# +A box containing +-------------------------- +[Event] Scholar Ring 7 Day 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 60 +Blacksmith +# +1500995# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 65 +Blacksmith +# +1500996# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 70 +Blacksmith +# +1500997# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 75 +Blacksmith +# +1500998# +A box containing +-------------------------- +[Event] Medal of Honor (Swordman) 1ea +Adamantine Blessing 100ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 80 +Blacksmith +# +1500999# +A box containing +-------------------------- +Adamantine Blessing 150ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 85 +Blacksmith +# +1501000# +A box containing +-------------------------- +Adamantine Blessing 200ea +[Event] HE Battle Manual 4ea +[Event] HE Bubble Gum 4ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 90 +Blacksmith +# +1501001# +A box containing +-------------------------- +Moonstone Crystal 3,000 Point +Adamantine Blessing 200ea +[R] Pet Spirit Guarantee Scroll 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 95 +Blacksmith +# +1501002# +Str +2 +Agi +2 +Hit +10 +-------------------------- +Every refine level increases atk +5 +-------------------------- +Increases damage of [Mammonite] and [Cart Revolution] skill by 15%. +-------------------------- +When refined to +8 or higher: +increases [Mammonite] and [Cart Revolution] skill damage by 15% to monsters. +-------------------------- +Cannot be use in WOE maps +-------------------------- +Type: Two-Handed Axe +Attack: 170 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50-100 +Blacksmith +# +1501003# +Unlock the power of class with the class pass, your key to exclusive items and rewards fit for your class. +Level up to claim armors, weapons, and exclusive items that set you apart in universe of landverse. +-------------------------- +Type: Class Pass +Weight: 0 +Requirement: +Crusader +# +1501004# +Unlock the power of class with the class pass, your key to exclusive items and rewards fit for your class. +Level up to claim armors, weapons, and exclusive items that set you apart in universe of landverse. +-------------------------- +Type: Class Pass +Weight: 0 +Requirement: +Blacksmith +# +1501005# +Unlock the power of class with the class pass, your key to exclusive items and rewards fit for your class. +Level up to claim armors, weapons, and exclusive items that set you apart in universe of landverse. +-------------------------- +Type: Class Pass +Weight: 0 +Requirement: +Alchemist +# +1501006# +A medal rewarded to honorable warriors. +-------------------------- +MaxHP +500 +MaxSP +50 +MATK +5% +ATK +5% +Aspd + 10% +-------------------------- +Adds a 1% chance of inflicting Curse on the target when performing a short-ranged attack. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Merchant +# +1501007# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 70 +Alchemist +# +1501008# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 75 +Alchemist +# +1501009# +A box containing +-------------------------- +[Event] Medal of Honor (Merchant) 1ea +Adamantine Blessing 100ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 80 +Alchemist +# +1501010# +A box containing +-------------------------- +Adamantine Blessing 150ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 85 +Alchemist +# +1501011# +A box containing +-------------------------- +Adamantine Blessing 200ea +[Event] HE Battle Manual 4ea +[Event] HE Bubble Gum 4ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 90 +Alchemist +# +1501012# +A box containing +-------------------------- +Moonstone Crystal 3,000 Point +Adamantine Blessing 200ea +[R] Pet Spirit Guarantee Scroll 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 95 +Alchemist +# +1501013# +Unlock the power of class with the class pass, your key to exclusive items and rewards fit for your class. +Level up to claim armors, weapons, and exclusive items that set you apart in universe of landverse. +-------------------------- +Type: Class Pass +Weight: 0 +Requirement: +Assassin +# +1501014# +A medal rewarded to honorable warriors. +-------------------------- +MaxHP +300 +MaxSP +80 +MATK +5% +FLEE +10 +ATK +5% +-------------------------- +Adds a 1% chance of inflicting Poison on the target when performing a short-ranged attack. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Thief and Ninja +# +1501015# +A box containing +-------------------------- +[Event] Beginning Set Box 1ea +Title : Prontera adventure 1ea +Schmidt's Katar [1] 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 50 +Assassin +# +1501016# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 55 +Assassin +# +1501017# +A box containing +-------------------------- +[Event] Scholar Ring 7 Day 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 60 +Assassin +# +1501018# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 65 +Assassin +# +1501019# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 70 +Assassin +# +1501020# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 75 +Assassin +# +1501021# +A box containing +-------------------------- +[Event] Medal of Honor (Thief) 1ea +Adamantine Blessing 100ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 80 +Assassin +# +1501022# +A box containing +-------------------------- +Adamantine Blessing 150ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 85 +Assassin +# +1501023# +A box containing +-------------------------- +Adamantine Blessing 200ea +[Event] HE Battle Manual 4ea +[Event] HE Bubble Gum 4ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 90 +Assassin +# +1501024# +A box containing +-------------------------- +Moonstone Crystal 3,000 Point +Adamantine Blessing 200ea +[R] Pet Spirit Guarantee Scroll 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 95 +Assassin +# +1501025# +Str +2 +Dex +2 +Hit +10 +Increases Critical Damage by 10% +-------------------------- +Every refine level increases atk +5 +-------------------------- +Increases damage of [Sonic blow] skill by 10%. +-------------------------- +When refined to +8 or higher: +Increases Critical Damage by 15% +increases [Sonic blow] skill damage by 15% to monsters. +-------------------------- +Cannot be use in WOE maps +-------------------------- +Type: Katar +Attack: 150 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50-100 +Assassin +# +1501026# +Unlock the power of class with the class pass, your key to exclusive items and rewards fit for your class. +Level up to claim armors, weapons, and exclusive items that set you apart in universe of landverse. +-------------------------- +Type: Class Pass +Weight: 0 +Requirement: +Rogue +# +1501027# +Str +2 +Dex +2 +Hit +10 +-------------------------- +Every refine level increases atk +5 +-------------------------- +Increases damage of [Back stab] and [Raid] skill by 10%. +-------------------------- +When refined to +8 or higher: +increases [Back stab] and [Raid] skill damage by 15% to monsters. +-------------------------- +Cannot be use in WOE maps +-------------------------- +Type: Dagger +Attack: 125 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50-100 +Rogue +# +1501028# +A box containing +-------------------------- +[Event] Beginning Set Box 1ea +Title : Prontera adventure 1ea +Schmidt's Dagger [1] 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 50 +Rogue +# +1501029# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 55 +Rogue +# +1501030# +A box containing +-------------------------- +[Event] Scholar Ring 7 Day 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 60 +Rogue +# +1501031# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 65 +Rogue +# +1501032# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 70 +Rogue +# +1501033# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 75 +Rogue +# +1501034# +A box containing +-------------------------- +[Event] Medal of Honor (Thief) 1ea +Adamantine Blessing 100ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 80 +Rogue +# +1501035# +A box containing +-------------------------- +Adamantine Blessing 150ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 85 +Rogue +# +1501036# +A box containing +-------------------------- +Adamantine Blessing 200ea +[Event] HE Battle Manual 4ea +[Event] HE Bubble Gum 4ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 90 +Rogue +# +1501037# +A box containing +-------------------------- +Moonstone Crystal 3,000 Point +Adamantine Blessing 200ea +[R] Pet Spirit Guarantee Scroll 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 95 +Rogue +# +1501038# +Unlock the power of class with the class pass, your key to exclusive items and rewards fit for your class. +Level up to claim armors, weapons, and exclusive items that set you apart in universe of landverse. +-------------------------- +Type: Class Pass +Weight: 0 +Requirement: +Priest +# +1501039# +A medal rewarded to honorable warriors. +-------------------------- +MaxHP +600 +MATK +5% +MDEF +6 +ATK +5% +-------------------------- +Adds a 1% chance of inflicting Silence on the target when performing a short-ranged attack. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Acolyte +# +1501040# +Str +2 +Int +2 +Recovery SP+ 10% +Matk +125 +-------------------------- +Every refine level increases atk & matk +5 +-------------------------- +Increases the recovery rate of recovery skills from [Heal] and [Sanctuary] 10% +-------------------------- +Increases damage against Undead property monsters and Demon monsters by 15%. +-------------------------- +When refined to +8 or higher: +Increases the recovery rate of recovery skills from [Heal] and [Sanctuary] 15% +-------------------------- +Cannot be use in WOE maps +-------------------------- +Type: Mace +Attack: 150 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50-100 +Priest +# +1501041# +A box containing +-------------------------- +[Event] Beginning Set Box 1ea +Title : Prontera adventure 1ea +Schmidt's Mace [1] 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 50 +Priest +# +1501042# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 55 +Priest +# +1501043# +A box containing +-------------------------- +[Event] Scholar Ring 7 Day 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 60 +Priest +# +1501044# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 65 +Priest +# +1501045# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 70 +Priest +# +1501046# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 75 +Priest +# +1501047# +A box containing +-------------------------- +[Event] Medal of Honor (Acolyte) 1ea +Adamantine Blessing 100ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 80 +Priest +# +1501048# +A box containing +-------------------------- +Adamantine Blessing 150ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 85 +Priest +# +1501049# +A box containing +-------------------------- +Adamantine Blessing 200ea +[Event] HE Battle Manual 4ea +[Event] HE Bubble Gum 4ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 90 +Priest +# +1501050# +A box containing +-------------------------- +Moonstone Crystal 3,000 Point +Adamantine Blessing 200ea +[R] Pet Spirit Guarantee Scroll 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 95 +Priest +# +1501051# +Unlock the power of class with the class pass, your key to exclusive items and rewards fit for your class. +Level up to claim armors, weapons, and exclusive items that set you apart in universe of landverse. +-------------------------- +Type: Class Pass +Weight: 0 +Requirement: +Monk +# +1501052# +Str +2 +Agi +2 +Hit +10 +-------------------------- +Every refine level increases atk +5 +-------------------------- +Increases damage of [Triple Attack] [Chain Combo] and [Combo Finish] skill by 10%. +-------------------------- +When refined to +8 or higher: +increases [Triple Attack] [Chain Combo] and [Combo Finish] skill damage by 15% to monsters. +-------------------------- +Cannot be use in WOE maps +-------------------------- +Type: Knuckle +Attack: 125 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50-100 +Monk +# +1501053# +A box containing +-------------------------- +[Event] Beginning Set Box 1ea +Title : Prontera adventure 1ea +Schmidt's Knuckle [1] 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 50 +Monk +# +1501054# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 55 +Monk +# +1501055# +A box containing +-------------------------- +[Event] Scholar Ring 7 Day 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 60 +Monk +# +1501056# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 65 +Monk +# +1501057# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 70 +Monk +# +1501058# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 75 +Monk +# +1501059# +A box containing +-------------------------- +[Event] Medal of Honor (Acolyte) 1ea +Adamantine Blessing 100ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 80 +Monk +# +1501060# +A box containing +-------------------------- +Adamantine Blessing 150ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 85 +Monk +# +1501061# +A box containing +-------------------------- +Adamantine Blessing 200ea +[Event] HE Battle Manual 4ea +[Event] HE Bubble Gum 4ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 90 +Monk +# +1501062# +A box containing +-------------------------- +Moonstone Crystal 3,000 Point +Adamantine Blessing 200ea +[R] Pet Spirit Guarantee Scroll 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 95 +Monk +# +1501063# +Unlock the power of class with the class pass, your key to exclusive items and rewards fit for your class. +Level up to claim armors, weapons, and exclusive items that set you apart in universe of landverse. +-------------------------- +Type: Class Pass +Weight: 0 +Requirement: +Wizard +# +1501064# +Int +2 +Dex +2 +Variable Cast Time -5% +-------------------------- +Every refine level increases matk +5 +-------------------------- +Increases damage of [Fire bolt] [Cold bolt] [Jupitel Thunder] and [Storm gust] skill by 15%. +-------------------------- +When refined to +8 or higher: +Increases damage of [Fire bolt] [Cold bolt] [Jupitel Thunder] and [Storm gust] skill by 15% to monsters. +-------------------------- +Cannot be use in WOE maps +-------------------------- +Type: Two-Handed Staff +Attack: 175 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50-100 +Wizard +# +1501065# +A box containing +-------------------------- +[Event] Beginning Set Box 1ea +Title : Prontera adventure 1ea +Schmidt's Staff [1] 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 50 +Wizard +# +1501066# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 55 +Wizard +# +1501067# +A box containing +-------------------------- +[Event] Scholar Ring 7 Day 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 60 +Wizard +# +1501068# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 65 +Wizard +# +1501069# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 70 +Wizard +# +1501070# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 75 +Wizard +# +1501071# +A box containing +-------------------------- +[Event] Medal of Honor (Mage) 1ea +Adamantine Blessing 100ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 80 +Wizard +# +1501072# +A box containing +-------------------------- +Adamantine Blessing 150ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 85 +Wizard +# +1501073# +A box containing +-------------------------- +Adamantine Blessing 200ea +[Event] HE Battle Manual 4ea +[Event] HE Bubble Gum 4ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 90 +Wizard +# +1501074# +A box containing +-------------------------- +Moonstone Crystal 3,000 Point +Adamantine Blessing 200ea +[R] Pet Spirit Guarantee Scroll 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 95 +Wizard +# +1501075# +A medal rewarded to honorable warriors. +-------------------------- +MaxHP +600 +MATK +5% +MDEF +6 +ATK +5% +-------------------------- +Adds a 1% chance of inflicting Stone Curse on the attacker when receiving a physical attack. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Magician and Soul Linker classes +# +1501076# +A box containing +-------------------------- +[Event] Beginning Set Box 1ea +Title : Prontera adventure 1ea +Schmidt's Book [1] 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 50 +Sage +# +1501077# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 55 +Sage +# +1501078# +A box containing +-------------------------- +[Event] Scholar Ring 7 Day 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 60 +Sage +# +1501079# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 65 +Sage +# +1501080# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 70 +Sage +# +1501081# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 75 +Sage +# +1501082# +A box containing +-------------------------- +[Event] Medal of Honor (Mage) 1ea +Adamantine Blessing 100ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 80 +Sage +# +1501083# +A box containing +-------------------------- +Adamantine Blessing 150ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 85 +Sage +# +1501084# +A box containing +-------------------------- +Adamantine Blessing 200ea +[Event] HE Battle Manual 4ea +[Event] HE Bubble Gum 4ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 90 +Sage +# +1501085# +A box containing +-------------------------- +Moonstone Crystal 3,000 Point +Adamantine Blessing 200ea +[R] Pet Spirit Guarantee Scroll 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 95 +Sage +# +1501086# +Unlock the power of class with the class pass, your key to exclusive items and rewards fit for your class. +Level up to claim armors, weapons, and exclusive items that set you apart in universe of landverse. +-------------------------- +Type: Class Pass +Weight: 0 +Requirement: +Sage +# +1501087# +Int +2 +Agi +2 +Matk +125 +Variable Cast Time -5% +-------------------------- +Every refine level increases atk & matk +5 +-------------------------- +Increases damage of [Fire bolt , Cold bolt , Lightening Bolt] and [Heaven's Drive] 15%. +-------------------------- +When refined to +8 or higher: +Increases [Fire bolt] [Cold bolt] [Lightening Bolt] and [Heaven's Drive] 15% to monsters. +-------------------------- +Cannot be use in WOE maps +-------------------------- +Type: Book +Attack: 120 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50-100 +Sage +# +1501088# +Unlock the power of class with the class pass, your key to exclusive items and rewards fit for your class. +Level up to claim armors, weapons, and exclusive items that set you apart in universe of landverse. +-------------------------- +Type: Class Pass +Weight: 0 +Requirement: +Hunter +# +1501089# +Agi +2 +Dex +2 +Range damage +5% +-------------------------- +Every refine level increases atk +5 +-------------------------- +Increases damage of [Double Strafe] and [Arrow Shower] skill by 10%. +-------------------------- +When refined to +8 or higher: +increases [Double Strafe] and [Arrow Shower] skill damage by 15% to monsters. +-------------------------- +Cannot be use in WOE maps +-------------------------- +Type: Bow +Attack: 125 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50-100 +Hunter +# +1501090# +A medal rewarded to honorable warriors. +-------------------------- +MaxHP +300 +MaxSP +80 +MATK +5% +Critical +10 +ATK +5% +-------------------------- +Adds a 1% chance of inflicting Blind on the target when performing a long-ranged attack. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Archer Classes +# +1501091# +A box containing +-------------------------- +[Event] Beginning Set Box 1ea +Title : Prontera adventure 1ea +Schmidt's Bow [1] 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 50 +Hunter +# +1501092# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 55 +Hunter +# +1501093# +A box containing +-------------------------- +[Event] Scholar Ring 7 Day 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 60 +Hunter +# +1501094# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 65 +Hunter +# +1501095# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 70 +Hunter +# +1501096# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 75 +Hunter +# +1501097# +A box containing +-------------------------- +[Event] Medal of Honor (Thief) 1ea +Adamantine Blessing 100ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 80 +Hunter +# +1501098# +A box containing +-------------------------- +Adamantine Blessing 150ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 85 +Hunter +# +1501099# +A box containing +-------------------------- +Adamantine Blessing 200ea +[Event] HE Battle Manual 4ea +[Event] HE Bubble Gum 4ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 90 +Hunter +# +1501100# +A box containing +-------------------------- +Moonstone Crystal 3,000 Point +Adamantine Blessing 200ea +[R] Pet Spirit Guarantee Scroll 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 95 +Hunter +# +1501101# +A box containing +-------------------------- +[Event] Beginning Set Box 1ea +Title : Prontera adventure 1ea +Schmidt's Bow [1] 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 50 +Bard +# +1501102# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 55 +Bard +# +1501103# +A box containing +-------------------------- +[Event] Scholar Ring 7 Day 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 60 +Bard +# +1501104# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 65 +Bard +# +1501105# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 70 +Bard +# +1501106# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 75 +Bard +# +1501107# +A box containing +-------------------------- +[Event] Medal of Honor (Thief) 1ea +Adamantine Blessing 100ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 80 +Bard +# +1501108# +A box containing +-------------------------- +Adamantine Blessing 150ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 85 +Bard +# +1501109# +A box containing +-------------------------- +Adamantine Blessing 200ea +[Event] HE Battle Manual 4ea +[Event] HE Bubble Gum 4ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 90 +Bard +# +1501110# +A box containing +-------------------------- +Moonstone Crystal 3,000 Point +Adamantine Blessing 200ea +[R] Pet Spirit Guarantee Scroll 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 95 +Bard +# +1501111# +Unlock the power of class with the class pass, your key to exclusive items and rewards fit for your class. +Level up to claim armors, weapons, and exclusive items that set you apart in universe of landverse. +-------------------------- +Type: Class Pass +Weight: 0 +Requirement: +Bard +# +1501112# +Agi +2 +Dex +2 +Matk +70 +-------------------------- +Every refine level increases atk & matk +5 +-------------------------- +Increases damage of [Musical Strike] skill by 15%. +-------------------------- +When refined to +8 or higher: +Increases [Musical Strike] skill damage by 15% to monsters. +-------------------------- +Cannot be use in WOE maps +-------------------------- +Type: Musical Instrument +Attack: 120 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50-100 +Bard +# +1501113# +Unlock the power of class with the class pass, your key to exclusive items and rewards fit for your class. +Level up to claim armors, weapons, and exclusive items that set you apart in universe of landverse. +-------------------------- +Type: Class Pass +Weight: 0 +Requirement: +Dancer +# +1501114# +Agi +2 +Dex +2 +Matk +70 +-------------------------- +Every refine level increases atk & matk +5 +-------------------------- +Increases damage of [Throw Arrow] skill by 15%. +-------------------------- +When refined to +8 or higher: +Increases [Throw Arrow] skill damage by 15% to monsters. +-------------------------- +Cannot be use in WOE maps +-------------------------- +Type: Whip +Attack: 120 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50-100 +Dancer +# +1501115# +A box containing +-------------------------- +[Event] Beginning Set Box 1ea +Title : Prontera adventure 1ea +Schmidt's Whip [1] 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 50 +Dancer +# +1501116# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 55 +Dancer +# +1501117# +A box containing +-------------------------- +[Event] Scholar Ring 7 Day 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 60 +Dancer +# +1501118# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 65 +Dancer +# +1501119# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 70 +Dancer +# +1501120# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 75 +Dancer +# +1501121# +A box containing +-------------------------- +[Event] Medal of Honor (Archer) 1ea +Adamantine Blessing 100ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 80 +Dancer +# +1501122# +A box containing +-------------------------- +Adamantine Blessing 150ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 85 +Dancer +# +1501123# +A box containing +-------------------------- +Adamantine Blessing 200ea +[Event] HE Battle Manual 4ea +[Event] HE Bubble Gum 4ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 90 +Dancer +# +1501124# +A box containing +-------------------------- +Moonstone Crystal 3,000 Point +Adamantine Blessing 200ea +[R] Pet Spirit Guarantee Scroll 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 95 +Dancer +# +1501125# +Unlock the power of class with the class pass, your key to exclusive items and rewards fit for your class. +Level up to claim armors, weapons, and exclusive items that set you apart in universe of landverse. +-------------------------- +Type: Class Pass +Weight: 0 +Requirement: +Gunslinger +# +1501126# +A badge rewarded to honorable warriors. +-------------------------- +MaxHP +300 +MaxSP +80 +MATK +5% +Critical +10 +ATK +5% +-------------------------- +Adds a 1% chance of inflicting Blind on the attacker when receiving a long-ranged attack. +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 80 +Gunslinger +# +1501127# +Agi +2 +Dex +2 +Cri +10 +-------------------------- +Every refine level increases atk +5 +-------------------------- +Increases damage of [Desperado] and [Rapid Shower] skill by 10%. +-------------------------- +When refined to +8 or higher: +increases [Desperado] and [Rapid Shower] skill damage by 15% to monsters. +-------------------------- +Cannot be use in WOE maps +-------------------------- +Type: Revolver +Attack: 100 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50-100 +Gunslinger +# +1501128# +A box containing +-------------------------- +[Event] Beginning Set Box 1ea +Title : Prontera adventure 1ea +Schmidt's Revolver [1] 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 50 +Gunslinger +# +1501129# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 55 +Gunslinger +# +1501130# +A box containing +-------------------------- +[Event] Scholar Ring 7 Day 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 60 +Gunslinger +# +1501131# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 65 +Gunslinger +# +1501132# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 70 +Gunslinger +# +1501133# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 75 +Gunslinger +# +1501134# +A box containing +-------------------------- +[Event] Medal of Honor (Gunslinger) 1ea +Adamantine Blessing 100ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 80 +Gunslinger +# +1501135# +A box containing +-------------------------- +Adamantine Blessing 150ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 85 +Gunslinger +# +1501136# +A box containing +-------------------------- +Adamantine Blessing 200ea +[Event] HE Battle Manual 4ea +[Event] HE Bubble Gum 4ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 90 +Gunslinger +# +1501137# +A box containing +-------------------------- +Moonstone Crystal 3,000 Point +Adamantine Blessing 200ea +[R] Pet Spirit Guarantee Scroll 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 95 +Gunslinger +# +1501138# +Unlock the power of class with the class pass, your key to exclusive items and rewards fit for your class. +Level up to claim armors, weapons, and exclusive items that set you apart in universe of landverse. +-------------------------- +Type: Class Pass +Weight: 0 +Requirement: +Ninja +# +1501139# +A badge rewarded to honorable warriors. +-------------------------- +MaxHP +300 +MaxSP +80 +ATK +5% +MATK +5% +Atk +10 +MATK +5 +Variable Cast Time -5% +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Ninja +# +1501140# +Str +2 +Int +2 +Matk +125 +Increases physical and magic damage +3% +-------------------------- +Every refine level increases atk & matk +5 +-------------------------- +Increases damage of [Throw Kunai] [Wind blade] [Lightning Jolt] and [Flaming petals] skill by 10%. +-------------------------- +When refined to +8 or higher: +increases [Throw Kunai] [Wind blade] [Lightning Jolt] and [Flaming petals] skill damage by 15% to monsters. +-------------------------- +Cannot be use in WOE maps +-------------------------- +Type: Huuma Shuriken +Attack: 10 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50-100 +Ninja +# +1501141# +A box containing +-------------------------- +[Event] Beginning Set Box 1ea +Title : Prontera adventure 1ea +Schmidt's Shuriken [1] 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 50 +Ninja +# +1501142# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 55 +Ninja +# +1501143# +A box containing +-------------------------- +[Event] Scholar Ring 7 Day 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 60 +Ninja +# +1501144# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 65 +Ninja +# +1501145# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 70 +Ninja +# +1501146# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 75 +Ninja +# +1501147# +A box containing +-------------------------- +[Event] Medal of Honor (Ninja) 1ea +Adamantine Blessing 100ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 80 +Ninja +# +1501148# +A box containing +-------------------------- +Adamantine Blessing 150ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 85 +Ninja +# +1501149# +A box containing +-------------------------- +Adamantine Blessing 200ea +[Event] HE Battle Manual 4ea +[Event] HE Bubble Gum 4ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 90 +Ninja +# +1501150# +A box containing +-------------------------- +Moonstone Crystal 3,000 Point +Adamantine Blessing 200ea +[R] Pet Spirit Guarantee Scroll 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 95 +Ninja +# +1501151# +Agi +2 +Dex +2 +Increases physical and magic damage +3% +-------------------------- +Increases damage of [Flying Kick] and [Storm kick] skill by 15%. +-------------------------- +Cannot be use in WOE maps +-------------------------- +Type: Garment +Defense: 16 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50-100 +Taekwondo +# +1501152# +A badge rewarded to honorable warriors. +-------------------------- +MaxHP +300 +MaxSP +150 +ATK +5% +MATK +5% +Atk +10 +MATK +5 +Variable Cast Time -5% +-------------------------- +Type: Accessory +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Taekwondo +# +1501153# +Unlock the power of class with the class pass, your key to exclusive items and rewards fit for your class. +Level up to claim armors, weapons, and exclusive items that set you apart in universe of landverse. +-------------------------- +Type: Class Pass +Weight: 0 +Requirement: +Taekwondo, Star Gladiator and Soul Linker +# +1501154# +A box containing +-------------------------- +[Event] Beginning Set Box 1ea +Title : Prontera adventure 1ea +Schmidt's Teakwondo Robe [1] 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 50 +Taekwondo, Star Gladiator and Soul Linker +# +1501155# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 55 +Taekwondo, Star Gladiator and Soul Linker +# +1501156# +A box containing +-------------------------- +[Event] Scholar Ring 7 Day 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 60 +Taekwondo, Star Gladiator and Soul Linker +# +1501157# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 65 +Taekwondo, Star Gladiator and Soul Linker +# +1501158# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +Requirement: +Base Level 70 +Taekwondo, Star Gladiator and Soul Linker +# +1501159# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 75 +Taekwondo, Star Gladiator and Soul Linker +# +1501160# +A box containing +-------------------------- +[Event] Medal of Honor (Archer) 1ea +Adamantine Blessing 100ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 80 +Taekwondo, Star Gladiator and Soul Linker +# +1501161# +A box containing +-------------------------- +Adamantine Blessing 150ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 85 +Taekwondo, Star Gladiator and Soul Linker +# +1501162# +A box containing +-------------------------- +Adamantine Blessing 200ea +[Event] HE Battle Manual 4ea +[Event] HE Bubble Gum 4ea +[Event] Awakening Potion 5ea +[Event] White Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (1Day) 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +Requirement: +Base Level 90 +Taekwondo, Star Gladiator and Soul Linker +# +1501163# +A box containing +-------------------------- +Moonstone Crystal 3,000 Point +Adamantine Blessing 200ea +[R] Pet Spirit Guarantee Scroll 1ea +-------------------------- +Weight: 0 +Requirement: +Base Level 95 +Taekwondo, Star Gladiator and Soul Linker +# +1501164# +Str +2 +Dex +2 +Hit +10 +-------------------------- +Every refine level increases atk +5 +-------------------------- +Increases damage of [Mammonite] and [Cart Revolution] skill by 15%. +-------------------------- +When refined to +8 or higher: +increases [Mammonite] and [Cart Revolution] skill damage by 15% to monsters. +-------------------------- +Cannot be use in WOE maps +-------------------------- +Type: One-Handed Axe +Attack: 130 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 50-95 +Alchemist +# +1501165# +A box containing +-------------------------- +[Event] Beginning Set Box 1ea +Title : Prontera adventure 1ea +Schmidt's One-handAxe [1] [1] 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +# +1501166# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +# +1501167# +A box containing +-------------------------- +[Event] Scholar Ring 7 Day 1ea +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 1ea +Unlimited Flywing (2Hr) 1ea +-------------------------- +Weight: 0 +# +1501168# +A box containing +-------------------------- +[Event] Awakening Potion 5ea +[Event] Yellow Potion Box (20) 5ea +[Event] Blessing Scroll 5ea +[Event] Increase Agility Scroll 5ea +[Event] Battle Manual 2ea +Unlimited Flywing (2Hr) 2ea +-------------------------- +Weight: 0 +# +1501169# +Get extra stuff from Kafra NOVA by using it to unlock NOVA Special Pass. +-------------------------- +Weight: 0 +# +1501170# +A special coupon related to the Kafra NOVA campaign. When used, it adds 1 Nova Treasure Point. Moreover, +it grants exclusive rights to claim NOVA Coins on the website and access to the NOVA Coin Shop. +-------------------------- +Weight: 0 +# +1501171# +A special coupon related to the Kafra NOVA campaign. When used, it adds 1 Nova Treasure Point. Moreover, +it grants exclusive rights to claim NOVA Premium Coin on the website and access to the NOVA Premium Coin Shop. +-------------------------- +Weight: 0 +# +1501172# +A box containing 1 Automatic Player Box that can be used for 14 days. +-------------------------- +Rental Item. +-------------------------- +For use in Autoattack System. +-------------------------- +Weight: 1 +# +1501173# +Use it for activate title PRONTERA +-------------------------- +Type: Title Giver +Weight: 1 +# +1501174# +Rental Items for 30 days +-------------------------- +Unlock the wonders of NOVA Space with this Subscription Coupon! Gain exclusive access to unique land amenities. +-------------------------- +Weight: 0 +# +1501175# +Rental Items for 7 days +-------------------------- +Unlock the wonders of NOVA Space with this Subscription Coupon! Gain exclusive access to unique land amenities. +-------------------------- +Weight: 0 +# +1501176# +A box containing +-------------------------- +[Event] Automatic Player Box 14 Days 1ea +[Event] Unlimited Fly Wing 2H 1ea +[Event] Battle Manual and Bubble Gum 1ea +[Event] Small Mana Potion 1ea +Blessing Ore Convex Mirror 1ea +Costume Neko Mimi Kafra 1ea +-------------------------- +Weight: 0 +# +1501177# +A box containing +-------------------------- +Infinity Drink 5ea +Red Booster 5ea +Guyak Pudding 10ea +Elite Siege Supply Box 3ea +-------------------------- +Weight: 0 +# +1501178# +A box containing +-------------------------- +[R] Pet Spirit Guarantee Scroll 4ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +Holgren's Shadow Smelting Hammer 3ea +-------------------------- +Weight: 0 +# +1501179# +A box containing +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Adamantine Blessing 159ea +Glorious Badge 1ea +-------------------------- +Weight: 0 +# +1501180# +ATK +5 +MATK +5 +HP recovery +3% +-------------------------- +Set Bonus +Glorious Badge +Meadal of Honor +Enables to use Level 1 Teleportation +Increases Damage to All Race Monster (w/o player) +3% +-------------------------- +Cannot be use in GVG Map +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +# +1501181# +Unlock the wonders of NOVA Space with this Subscription Coupon! Gain exclusive access to unique land amenities. +-------------------------- +Weight: 0 +# +1501182# +Unlock the wonders of NOVA Space with this Subscription Coupon! Gain exclusive access to unique land amenities. +-------------------------- +Weight: 0 +# +1501183# +This two-handed axe, made to counteract the Devil Sword Thanatos, is sculpted out of Gray Shard. +It offers incredible power and mana at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +40 +-------------------------- +Has a 2% chance to absorb 4% of the damage as HP when physically attacking. +Has a 1% chance to absorb 2% of the damage as SP when physically attacking. +-------------------------- +Consumes 100 HP every 10 seconds. +Consumes 1,000 HP when unequipped. +-------------------------- +Cannot use in WOE +-------------------------- +Type: Two-Handed Axe +Attack: 185 +Weight: 250 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 90 +Swordsman and Merchant +# +1501184# +This bow, made to counteract the Devil Sword Thanatos, is sculpted out of Gray Shard. +It offers incredible power and mana at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +55 +-------------------------- +Has a 2% chance to absorb 4% of the damage as HP when physically attacking. +Has a 1% chance to absorb 2% of the damage as SP when physically attacking. +-------------------------- +Consumes 100 HP every 10 seconds. +Consumes 1,000 HP when unequipped. +-------------------------- +Cannot use in WOE +-------------------------- +Type: Bow +Attack: 100 +Weight: 110 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 90 +Archer Classes +# +1501185# +This dagger, made to counteract the Devil Sword Thanatos, is sculpted out of Gray Shard. +It offers incredible power and mana at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +65 +-------------------------- +Has a 2% chance to absorb 4% of the damage as HP when physically attacking. +Has a 1% chance to absorb 2% of the damage as SP when physically attacking. +-------------------------- +Consumes 100 HP every 10 seconds. +Consumes 1,000 HP when unequipped. +-------------------------- +Cannot use in WOE +-------------------------- +Type: Dagger +Attack: 100 +Weight: 80 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 90 +Swordsman, Archer, Merchant and Thief +# +1501186# +This dagger, made to counteract the Devil Sword Thanatos, is sculpted out of Gray Shard. +It offers incredible power and mana at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +60 +-------------------------- +Has a 2% chance to absorb 4% of the damage as HP when physically attacking. +Has a 1% chance to absorb 2% of the damage as SP when physically attacking. +-------------------------- +Consumes 100 HP every 10 seconds. +Consumes 1,000 HP when unequipped. +-------------------------- +Cannot use in WOE +-------------------------- +Type: Two-Handed Sword +Attack: 180 +Weight: 250 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 90 +Swordsman Classes +# +1501187# +This dagger, made to counteract the Devil Sword Thanatos, is sculpted out of Gray Shard. +It offers incredible power and mana at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +60 +-------------------------- +Has a 2% chance to absorb 4% of the damage as HP when physically attacking. +Has a 1% chance to absorb 2% of the damage as SP when physically attacking. +-------------------------- +Consumes 100 HP every 10 seconds. +Consumes 1,000 HP when unequipped. +-------------------------- +Cannot use in WOE +-------------------------- +Type: Mace +Attack: 130 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 90 +Swordsman, Merchant, and Acolyte Classes +# +1501188# +This dagger, made to counteract the Devil Sword Thanatos, is sculpted out of Gray Shard. +It offers incredible power and mana at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +40 +-------------------------- +Has a 2% chance to absorb 4% of the damage as HP when physically attacking. +Has a 1% chance to absorb 2% of the damage as SP when physically attacking. +-------------------------- +Consumes 100 HP every 10 seconds. +Consumes 1,000 HP when unequipped. +-------------------------- +Cannot use in WOE +-------------------------- +Type: Katar +Attack: 148 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 90 +Assassin +# +1501189# +This dagger, made to counteract the Devil Sword Thanatos, is sculpted out of Gray Shard. +It offers incredible power and mana at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +50 +-------------------------- +Has a 2% chance to absorb 4% of the damage as HP when physically attacking. +Has a 1% chance to absorb 2% of the damage as SP when physically attacking. +-------------------------- +Consumes 100 HP every 10 seconds. +Consumes 1,000 HP when unequipped. +-------------------------- +Cannot use in WOE +-------------------------- +Type: Knuckle +Attack: 97 +Weight: 50 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 90 +Monk +# +1501190# +This dagger, made to counteract the Devil Sword Thanatos, is sculpted out of Gray Shard. +It offers incredible power and mana at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +25 +-------------------------- +Has a 2% chance to absorb 4% of the damage as HP when physically attacking. +Has a 1% chance to absorb 2% of the damage as SP when physically attacking. +-------------------------- +Consumes 100 HP every 10 seconds. +Consumes 1,000 HP when unequipped. +-------------------------- +Cannot use in WOE +-------------------------- +Type: Two-Handed Spear +Attack: 150 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 90 +Knight, Crusader +# +1501191# +This dagger, made to counteract the Devil Sword Thanatos, is sculpted out of Gray Shard. +It offers incredible power and mana at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +50 +-------------------------- +Has a 2% chance to absorb 4% of the damage as HP when physically attacking. +Has a 1% chance to absorb 2% of the damage as SP when physically attacking. +-------------------------- +Consumes 100 HP every 10 seconds. +Consumes 1,000 HP when unequipped. +-------------------------- +Cannot use in WOE +-------------------------- +Type: One-Handed Spear +Attack: 150 +Weight: 120 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 90 +Swordman classes +# +1501192# +This dagger, made to counteract the Devil Sword Thanatos, is sculpted out of Gray Shard. +It offers incredible power and mana at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +120 +-------------------------- ++15% Healing effectiveness. +-------------------------- +Has a 2% chance to recover 150 HP per 4 second for 5 times when dealing magical damage. +Has a 1% chance to recover 75 SP per 4 second for 5 times when dealing magical damage. +-------------------------- +Consumes 100 HP every 10 seconds. +Consumes 1,000 HP when unequipped. +-------------------------- +Cannot use in WOE +-------------------------- +Type: One-Handed Staff +Attack: 50 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 90 +Magician and Acolyte +# +1501193# +This dagger, made to counteract the Devil Sword Thanatos, is sculpted out of Gray Shard. +It offers incredible power and mana at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +50 +-------------------------- +Has a 2% chance to absorb 4% of the damage as HP when physically attacking. +Has a 1% chance to absorb 2% of the damage as SP when physically attacking. +-------------------------- +Consumes 100 HP every 10 seconds. +Consumes 1,000 HP when unequipped. +-------------------------- +Cannot use in WOE +-------------------------- +Type: One-Handed Sword +Attack: 115 +Weight: 100 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 90 +Swordman classes +# +1501194# +This dagger, made to counteract the Devil Sword Thanatos, is sculpted out of Gray Shard. +It offers incredible power and mana at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +200 +-------------------------- ++18 % Healing effectiveness. +-------------------------- +Has a 2% chance to recover 150 HP per 4 second for 5 times when dealing magical damage. +Has a 1% chance to recover 75 SP per 4 second for 5 times when dealing magical damage. +-------------------------- +Consumes 100 HP every 10 seconds. +Consumes 1,000 HP when unequipped. +-------------------------- +Cannot use in WOE +-------------------------- +Type: Two-Handed Staff +Attack: 25 +Weight: 140 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 90 +Magician and Acolyte +# +1501195# +This dagger, made to counteract the Devil Sword Thanatos, is sculpted out of Gray Shard. +It offers incredible power and mana at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +65 +-------------------------- +Increases long-ranged damage on targets by 10%. +-------------------------- +Has a 2% chance to absorb 4% of the damage as HP when physically attacking. +Has a 1% chance to absorb 2% of the damage as SP when physically attacking. +-------------------------- +Consumes 100 HP every 10 seconds. +Consumes 1,000 HP when unequipped. +-------------------------- +Cannot use in WOE +-------------------------- +Type: Musical Instrument +Attack: 142 +Weight: 90 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 90 +Bard +# +1501196# +This dagger, made to counteract the Devil Sword Thanatos, is sculpted out of Gray Shard. +It offers incredible power and mana at a great cost. +-------------------------- +INT +6 +VIT +6 +LUK -6 +MATK +65 +-------------------------- +Increases long-ranged damage on targets by 10%. +-------------------------- +Has a 2% chance to absorb 4% of the damage as HP when physically attacking. +Has a 1% chance to absorb 2% of the damage as SP when physically attacking. +-------------------------- +Consumes 100 HP every 10 seconds. +Consumes 1,000 HP when unequipped. +-------------------------- +Cannot use in WOE +-------------------------- +Type: Whip +Attack: 142 +Weight: 90 +Weapon Level: 3 +-------------------------- +Requirement: +Base Level 90 +Dancer +# +1501197# +Sculpted out of Gray Shard and infused with Sakray's old, abandoned memories, this armor protects its wearer against holiness and fear. +-------------------------- +Holy Resistance +5%. +-------------------------- +Additional Holy Resistance +1% per Upgrade level. +-------------------------- +MDEF +5 +-------------------------- +Cannot use in WOE +-------------------------- +Type: Armor +Defense: 70 +Weight: 240 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +Swordman, Archer, Merchant, and Thief Classes +# +1501198# +Sculpted out of Gray Shard and infused with Sakray's old, abandoned memories, these shoes protect their wearer against holiness and fear. +-------------------------- +Holy Resistance +1%. +-------------------------- +Additional Holy Resistance +1% per 4 Upgrade level. +-------------------------- +Cannot use in WOE +-------------------------- +Type: Shoes +Defense: 16 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +All Classes +# +1501199# +Sculpted out of Gray Shard and infused with Sakray's old, abandoned memories, this manteau protects its wearer against holiness and fear. +-------------------------- +Holy Resistance +3%. +-------------------------- +Additional Holy Resistance +1% per 3 Upgrade level. +-------------------------- +Item Combo +(Classic) Gray Manteau +(Classic) Gray Armor +(Classic) Gray Helmet +(Classic) Gray Boots +Decreases damage taken from Neutral elemental attacks by 5%. +MaxHP +5% +MaxSP +5% +-------------------------- +Item Combo +(Classic) Gray Manteau +(Classic) Gray Robe +(Classic) Gray Helmet +(Classic) Gray Boots +Decreases damage taken from Neutral elemental attacks by 5%. +MaxHP +5% +MaxSP +5% +-------------------------- +Cannot use in WOE +-------------------------- +Type: Garment +Defense: 13 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +All Classes +# +1501200# +Sculpted out of Gray Shard and infused with Sakray's old, abandoned memories, this helm protects its wearer against holiness and fear. +-------------------------- +Holy Resistance +2%. +-------------------------- +Additional Holy Resistance +1% per 3 Upgrade level. +-------------------------- +Cannot use in WOE +-------------------------- +Type: Headgear +Defense: 35 +Position: Upper +Weight: 45 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +All Classes +# +1501201# +Sculpted out of Gray Shard and infused with Sakray's old, abandoned memories, this robe protects its wearer against holiness and fear. +-------------------------- +Holy Resistance +5%. +-------------------------- +Additional Holy Resistance +1% per 2 Upgrade level. +-------------------------- +Cannot use in WOE +-------------------------- +Type: Armor +Defense: 55 +Weight: 130 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +Wizard, Sage, Priest and Monk +# +1501202# +Shield surrounded by dark aura. Has the ability to resist divine power. +-------------------------- +MDEF +5 +-------------------------- +Holy Resistance +15%. +-------------------------- +Additional Holy Resistance +1% per 2 Upgrade level. +-------------------------- +Every 4 refine level: increases MDEF by 1. +-------------------------- +Cannot use in WOE +-------------------------- +Type: Shield +Defense: 75 +Weight: 200 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +All Classes +# +1501203# +A fan with warm spring vibes. +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 1. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1501204# +A scroll on which +many Gunslinger Hideout map +-------------------------- +Weight: 0 +# +1501205# +A magic box that can refine Schmidt's Weapon from class pass. +If you put Schmidt's Weapon, you can get +8 refined Schmidt's Weapon. +-------------------------- +[Target Items] +Schmidt's Two-hand sword [1] +Schmidt's Two-hand Spear [1] +Schmidt's Axe [1] +Schmidt's Two-hand Axe [1] +Schmidt's Katar [1] +Schmidt's Dagger [1] +Schmidt's Mace [1] +Schmidt's Knuckle [1] +Schmidt's Two-hand Staff [1] +Schmidt's Book [1] +Schmidt's Bow [1] +Schmidt's Guitar [1] +Schmidt's Whip [1] +Schmidt's Revolver [1] +Schmidt's Shuriken [1] +-------------------------- +Weight: 0 +# +1501206# +[May] First Refill Box 10ION +A box that contains. +-------------------------- +Stamina Elixir 2ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +[Event] Red Booster 2ea +-------------------------- +Weight: 0 +# +1501207# +[May] First Refill Box 30ION +A box that contains. +-------------------------- +[Event] Medium Life Potion 10ea +Token Of Siegfried 5ea +Adamantine Blessing 30ea +Angel School Cap 1ea +-------------------------- +Weight: 0 +# +1501208# +The symbol of good student, it represents the enthusiastic in helping. +-------------------------- +All Stats +3 +MATK +10 +ATK +10 +ASPD +3 +Variable Cast Time -10% +Increases experience gained from defeating all monsters by 10% +Increases Job experience gained from defeating all monsters by 10% +Increses Movement Speed by 15% +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1-80 +# +1501209# +A box that contains. +-------------------------- +Level 10 Blessing Scroll 10ea +Level 10 Increase Agility Scroll 10ea +Medium Life Potion 10ea +-------------------------- +Weight: 0 +# +1501210# +A box that contains. +-------------------------- +New Pet Scroll 5ea +Boarding Halter Box 7D 1ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +-------------------------- +Weight: 0 +# +1501211# +A box that contains. +-------------------------- +[R] Pet Spirit Guarantee Scroll 4ea +Elite Siege Supply Box 5ea +Small Mana Potion 5ea +Guyak Pudding 10ea +-------------------------- +Weight: 0 +# +1501212# +A box that contains. +-------------------------- +Honey Pastry 10ea +Sesame Pastry 10ea +Full SwingK 10ea +Mana + 10ea +Combat Pill 10ea +Adamantine Blessing 119ea +-------------------------- +Weight: 0 +# +1501213# +A box that contains. +-------------------------- +Adamantine Blessing 199ea +Enriched Elunium 2ea +Enriched Oridecon 2ea +Title : Welcome to Midgard (25 days) 1ea +Guyak Pudding 20ea +[Event] Supply Big Bun& Pill Box +-------------------------- +Weight: 0 +# +1501215# +Rental Items for 14 days +A box contains 1 Angel School Cap +-------------------------- +All Stats +3 +MATK +10 +ATK +10 +ASPD +3 +Variable Cast Time -10% +Increases experience gained from defeating all monsters by 10% +Increases Job experience gained from defeating all monsters by 10% +Increses Movement Speed by 15% +-------------------------- +Weight: 0 +# +1501216# +Use it for activate title Title : Welcome to Midgard +-------------------------- +All Stats +2 +SP Consumption 5% +ATK +5 +MATK +5 +Skill : Healing Lv. 5 +Increases experience gained from defeating all monsters by 5% +Increases Job experience gained from defeating all monsters by 5% +-------------------------- +Type: Title Giver +Weight: 1 +# +1501217# +A small metal bullet that can be fired from a gun to damage enemies. +-------------------------- +Type: Ammo +Attack: 25 +Weight: 0.2 +Element: Neutral +# +1501218# +A small silver bullet imbued with holy power. +Can't be exchanged for Ammo Case. +-------------------------- +Type: Ammo +Attack: 15 +Weight: 0.2 +Element: Holy +# +1501219# +A kunai imbued with freezing cold. +-------------------------- +Type: Kunai +Attack: 30 +Weight: 2 +Element: Water +# +1501220# +An Earth elemental kunai that inflicts blunt trauma upon the targeted enemies. +-------------------------- +Type: Kunai +Attack: 30 +Weight: 2 +Element: Earth +# +1501221# +A wind elemental kunai that is especially sharp. +-------------------------- +Type: Kunai +Attack: 30 +Weight: 2 +Element: Wind +# +1501222# +An explosive kunai that will inflict splashed damage around its target. +-------------------------- +Type: Kunai +Attack: 30 +Weight: 2 +Element: Fire +# +1501223# +Rental Items for 7 days +A box contains +-------------------------- +Unlimited Bullet 7Days 1ea +-------------------------- +Type: Ammo +Attack: 25 +Element: Neutral +-------------------------- +Weight: 0 +# +1501224# +Rental Items for 7 days +A box contains +-------------------------- +Unlimited Silver Bullet 7Days 1ea +-------------------------- +Type: Ammo +Attack: 15 +Element: Holy +-------------------------- +Weight: 0 +# +1501225# +Rental Items for 7 days +A box contains +-------------------------- +Unlimited High Wind Kunai 7Days 1ea +-------------------------- +Type: Kunai +Attack: 30 +Element: Wind +-------------------------- +Weight: 0 +# +1501226# +Rental Items for 7 days +A box contains +-------------------------- +Unlimited Icicle Kunai 7Days 1ea +-------------------------- +Type: Kunai +Attack: 30 +Element: Water +-------------------------- +Weight: 0 +# +1501227# +Rental Items for 7 days +A box contains +-------------------------- +Unlimited Heat Wave Kunai 7Days 1ea +-------------------------- +Type: Kunai +Attack: 30 +Element: Fire +-------------------------- +Weight: 0 +# +1501228# +Rental Items for 7 days +A box contains +-------------------------- +Unlimited Black Earth Kunai 7Days 1ea +-------------------------- +Type: Kunai +Attack: 30 +Element: Earth +-------------------------- +Weight: 0 +# +1501229# +A box that contains. +-------------------------- +Small Life Potion 30ea +Medium Life Potion 30ea +Mysterious Life Potion 30ea +Token of Siegfried 10ea +-------------------------- +Weight: 0 +# +1501230# +Special Golden Egg With the crown symbol in the middle, try to open it!! +-------------------------- +Type: Item Giver +Weight: 1 +# +1501231# +Str +5 +HP+ 300 +-------------------------- +For every 3 refine level: +HIT +3 +ATK +3 +-------------------------- +For every 5 refine level: +ATK+2 per level of Two-Handed Sword Mastery known. +-------------------------- +When refined to +7 or higher: +Increases damage of Bowling Bash by 10% +increase damage medium size monster 10% +-------------------------- +When refined to +9 or higher: +Increases damage of Bowling Bash by 10% +-------------------------- +Cannot be use in WOE maps +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Knight Classes +# +1501232# +Str +5 +HP+ 300 +-------------------------- +For every 3 refine level: +HIT +3 +MaxHP +100 +-------------------------- +For every 5 refine level: +ATK+2 per level of Spear Mastery known. +-------------------------- +When refined to +7 or higher: +Increases damage of Holy cross 10% +Increases physical damage against property shadow and race demon by 10% +-------------------------- +When refined to +9 or higher: +Increases damage of Holy cross by 5% +-------------------------- +Cannot be use in WOE maps +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Crusader Classes +# +1501233# +Created from all ultimate ingredients. +Grants the user Land Buff effect Lv 2 - 4 +-------------------------- +Weight: 1 +# +1501234# +Created from all ultimate ingredients. +Grants the user Land Buff effect Lv 5 +-------------------------- +Weight: 1 +# +1501235# +Created from all ultimate ingredients. +Grants the user Land Buff effect Lv 6 +-------------------------- +Weight: 1 +# +1501236# +Created from all ultimate ingredients. +Grants the user Land Buff effect Lv 7 +-------------------------- +Weight: 1 +# +1501237# +Created from all ultimate ingredients. +Grants the user Land Buff effect Lv 8 +-------------------------- +Weight: 1 +# +1501238# +Created from all ultimate ingredients. +Grants the user Land Buff effect Lv 9 +-------------------------- +Weight: 1 +# +1501239# +Created from all ultimate ingredients. +Grants the user Land Buff effect Lv 10 +-------------------------- +Weight: 1 +# +1501240# +Temporarily enchants the user's weapon with the Fire elemental. +-------------------------- +Type: Magic scroll +Effect: Endows equipped weapon with Fire elemental +Effect duration: 20 minutes +Weight: 1 +# +1501241# +Temporarily enchants the user's weapon with the Water elemental. +-------------------------- +Type: Magic scroll +Effect: Endows equipped weapon with Water elemental +Effect duration: 20 minutes +Weight: 1 +# +1501242# +Temporarily enchants the user's weapon with the earth elemental. +-------------------------- +Type: Magic scroll +Effect: Endows equipped weapon with Earth elemental +Effect duration: 20 minutes +Weight: 1 +# +1501243# +Temporarily enchants the user's weapon with the Wind elemental. +-------------------------- +Type: Magic scroll +Effect: Endows equipped weapon with Wind elemental +Effect duration: 20 minutes +Weight: 1 +# +1501244# +A mystic remedy for all illnesses. +-------------------------- +Type: Restorative +Cure: Poison, Curse, Silence, Confuse, Blind, Hallucination +Weight: 10 +# +1501245# +A red berry that is renown for its slightly sweet and sour taste and is best eaten fresh. +-------------------------- +Type: Restorative +Heal: 16 ~ 28 SP +Weight: 2 +# +1501246# +A box containing +-------------------------- +Infinity Drink 5ea +Red Booster 5ea +Guyak Pudding 10ea +Elite Siege Supply Box 3ea +-------------------------- +Weight: 0 +# +1501247# +A box containing +-------------------------- +[R] Pet Spirit Guarantee Scroll 4ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +Holgren's Shadow Smelting Hammer 3ea +-------------------------- +Weight: 0 +# +1501248# +A box containing +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Adamantine Blessing 159ea +King Pet hat 1ea +-------------------------- +Weight: 0 +# +1501249# +Increase damage dealt to small, medium, and large monsters by 5% when physical or magical attack. +-------------------------- +When equipped with Physical pet group +Additional 5% chance to drain HP by 5% of the damage dealt. +-------------------------- +If Refine +7 when equippend with legendary pet additional ATK+15 +-------------------------- +When equipped with Magic pet group +Reduced Variable Cast Time by 10% +-------------------------- +If Refine +7 when equippend with legendary pet additional MATK+15 +-------------------------- +When equipped with Tanker pet group +MaxHP +10% +-------------------------- +If Refine +7 when equippend with legendary pet additional - receive effectiveness of potion +15% +-------------------------- +Cannot be used in WOE maps. +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +1501250# +Brown eggs with an arrow shape in the middle indicate that those in the archery profession must surely love them. +-------------------------- +Type: Item Giver +Weight: 1 +# +1501251# +DEX +5 +Aspd +3% +-------------------------- +For every 3 refine level: +ATK +3 +Aspd +1% +-------------------------- +For every 5 refine level: +For every 2 level of Vulture's Eye known, HIT+1 +-------------------------- +When refined to +7 or higher: +increase damage Double strafe +10% +increase damage Brute and Insect +10% +-------------------------- +When refined to +9 or higher: +additional damage Double strafe +5% +-------------------------- +Cannot be used in WOE maps. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Hunter +# +1501252# +INT +5 +MaxSP +150 +-------------------------- +For every 3 refine level: +Increases damage of Musical Strike and Throw Arrow by 1% for every level of Musical Lesson/Dancing Lesson known. +-------------------------- +When refined to +5 or higher: +Gain (Fancy Buff lv.1) (ATK+10, MATK+10, HIT+10) for youself and your party for 5 minutes when performing songs or dance skills. +-------------------------- +When refined to +7 or higher: +Gain (Fancy Buff lv.2) (ATK+25, MATK+25, HIT+20) for youself and your party for 5 minutes when performing songs or dance skills. +-------------------------- +When refined to +9 or higher: +Gain (Fancy Buff lv.3) (ATK+40, MATK+40, HIT+25) for youself and your party for 5 minutes when performing songs or dance skills. +-------------------------- +Cannot be used in WOE maps. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Bard and Dancer +# +1501253# +Nothin you need to worry in the World when wearing this on your head. +-------------------------- +MDEFF +3 +INT +2 +DEX +2 +FLEE -1 +MaxHP +2% +MaxSP +30 +-------------------------- +Enables the use of Level 1 Magnificat. +-------------------------- +Type: Headgear +Defense: 2 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 30 +All Jobs +# +1501254# +Use it for activate title MVP Hunter +-------------------------- +Allstats +3 +Atk +10 +Matk +10 +Hit +10 +Boss damage +10% +-------------------------- +Type: Title Giver +Weight: 1 +# +1501255# +Use it for activate title King of Hunter +-------------------------- +Allstats +2 +Atk +5 +Matk +5 +Hit +5 +Boss damage +7% +-------------------------- +Type: Title Giver +Weight: 1 +# +1501256# +Use it for activate title Ultimate Hunter +-------------------------- +Allstats +2 +Atk +3 +Matk +3 +Hit +3 +Boss damage +5% +-------------------------- +Type: Title Giver +Weight: 1 +# +1501257# +Use it for activate title Heart Hunter +-------------------------- +Allstats +1 +Atk +3 +Matk +3 +Hit +3 +Boss damage +3% +-------------------------- +Type: Title Giver +Weight: 1 +# +1501258# +This item is impossible to deal with another account. +A decoration for cards. You may get some of the sealed cards. +-------------------------- +Weight: 1 +# +1501259# +Contains a random mini boss monster card. +-------------------------- +Weight: 1 +# +1501260# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +STR +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +ATK +5 +-------------------------- +If the user's base STR 99 or higher, +ATK +30 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +1501261# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +INT +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +MATK +5 +-------------------------- +If the user's base INT 99 or higher, +MATK +30 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +1501262# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +AGI +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +If the user's base AGI 99 or higher, +ASPD +1 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +1501263# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +VIT +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +-------------------------- +If the user's base VIT 99 or higher, +MaxHP +5% +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +1501264# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +DEX +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +DEX +3 +-------------------------- +If the user's base DEX 99 or higher, +fixed cast time of skills is decreased by 0.3 seconds +increases long distance attack power by 3%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +1501265# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +LUK +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +Increases Critical Damage by 1%. +-------------------------- +If the user's base LUK 99 or higher, +Increases Critical Damage by 20%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +1501266# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +STR +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +ATK +5 +-------------------------- +If the user's base STR 99 or higher, +ATK +30 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +1501267# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +VIT +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +-------------------------- +If the user's base VIT 99 or higher, +MaxHP +5% +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +1501268# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +DEX +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +DEX +3 +-------------------------- +If the user's base DEX 99 or higher, +fixed cast time of skills is decreased by 0.3 seconds +increases long distance attack power by 3%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +1501269# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +INT +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +MATK +5 +-------------------------- +If the user's base INT 99 or higher, +MATK +30 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +1501270# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +AGI +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +Increases Attack Speed (Decreases After Attack Delay by 2%). +-------------------------- +If the user's base AGI 99 or higher, +ASPD +1 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +1501271# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +LUK +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +Increases Critical Damage by 1%. +-------------------------- +If the user's base LUK 99 or higher, +Increases Critical Damage by 20%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +2rd Classes +# +1501272# +These boots are obviously old but they show no signs of wear and tear. +-------------------------- +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 refine level: +MaxHP +50 +MaxSP +5 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 10 +# +1501273# +his hat boasts a unique design imbued with the warmth of blazing flames and comes with special buffs for its wearer. +-------------------------- +Increases recovery amount gained from Fire Potion by 500%. +-------------------------- +Enables the use of Level 1 Flame Launcher. +-------------------------- +Expiration date 8-05-2025 +-------------------------- +Type: Headgear +Defense: 4 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +1501274# +A box containing one Unlimited Fly Wing, which can be used for 1 day. +-------------------------- +Rental Item +The wings cut from fly to be made into enchanted item. You can warp anywhere on the map using this item. +-------------------------- +Weight: 1 +# +1501275# +A peculiar hat that makes it wearer look freshly hatched. +-------------------------- +When equipped with Figure +All Stats +3 +MATK +15 +ATK +15 +ASPD +2 +Variable Cast Time - 10% +SP Recovery + 10% +HP Recovery + 10% +Increases Movement Speed by 25% +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 1-60 +# +1501276# +[June] First Refill Box 10ION +A box that contains. +-------------------------- +[Event] Battle Manual 3ea +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +[Event] Mental Potion 5ea +-------------------------- +Weight: 0 +# +1501277# +[June] First Refill Box 30ION +A box that contains. +-------------------------- +Miracle Medicine 1ea +[Event] HE Battle Manual 2ea +Adamantine Blessing 30ea +Egg Shell Box (14Days) 1ea +-------------------------- +Weight: 0 +# +1501278# +A box that contains. +-------------------------- +[Event] Egg Shell 1ea +-------------------------- +When equipped with Figure +All Stats +3 +MATK +15 +ATK +15 +ASPD +2 +Variable Cast Time - 10% +SP Recovery + 10% +HP Recovery + 10% +Increases Movement Speed by 25% +-------------------------- +Weight: 0 +# +1501279# +A box that contains. +-------------------------- +Free Ticket for Kafra Transportation 5ea +Free Ticket for Kafra Storage 5ea +-------------------------- +Weight: 0 +# +1501280# +A box that contains. +-------------------------- +Level 10 Blessing Scroll 10ea +Level 10 Increase Agility Scroll 10ea +Medium Life Potion 10ea +-------------------------- +Weight: 0 +# +1501281# +A box that contains. +-------------------------- +New Pet Scroll 5ea +Boarding Halter Box 7D 1ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +-------------------------- +Weight: 0 +# +1501282# +A box that contains. +-------------------------- +[R] Pet Spirit Guarantee Scroll 4ea +Elite Siege Supply Box 5ea +Small Mana Potion 10ea +-------------------------- +Weight: 0 +# +1501283# +A box that contains. +-------------------------- +Honey Pastry 10ea +Sesame Pastry 10ea +Full SwingK 10ea +Mana + 10ea +Combat Pill 10ea +Adamantine Blessing 119ea +-------------------------- +Weight: 0 +# +1501284# +A box that contains. +-------------------------- +Adamantine Blessing 199ea +Enriched Elunium 2ea +Enriched Oridecon 2ea +Title : Old Glastheim Destroyer Box (25 days) 1ea +[Event] Supply Big Bun& Pill Box 2ea +-------------------------- +Weight: 0 +# +1501285# +Use it for activate title Title : Old Glastheim Destroyer +-------------------------- +All Stats +3 +ATK +5 +MATK +5 +-------------------------- +Increase Physical and Magical Damage to Old Glastheim monsters by 10%. +-------------------------- +Increases drop rate gained from defeating all monsters by 5% +-------------------------- +Expiration date 23-06-2024 +-------------------------- +Type: Title Giver +Weight: 1 +# +1501286# +A box that contains. +-------------------------- +Title : Old Glastheim Destroyer 1ea +-------------------------- +Weight: 0 +# +1501287# +A box containing +-------------------------- +Infinity Drink 5ea +Red Booster 5ea +Guyak Pudding 10ea +Elite Siege Supply Box 3ea +-------------------------- +Weight: 0 +# +1501288# +A box containing +-------------------------- +[R] Pet Spirit Guarantee Scroll 4ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +Holgren's Shadow Smelting Hammer 3ea +-------------------------- +Weight: 0 +# +1501289# +A box containing +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Adamantine Blessing 159ea +Wings of Light and Darkness [1] 1ea +Costume Light Darkness Crown 1ea +-------------------------- +Weight: 0 +# +1501290# +A brightly glowing red candy that seems to flicker with a hidden flame. +Coated with sugar that sparkles like a flickering flame in the dark, this candy has a smooth, +round shape and a sweet, inviting aroma. +-------------------------- +There's a 10% chance of dropping a Festival Candy when defeating monsters +-------------------------- +Expiration date 18-06-2024 +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs +# +1501291# +The red candy is a small, round confection coated with glittering sugar, resembling a fiery flame. +Inside, it has a bright red core that, when bitten into, offers a sweet taste with a hint of tartness. +When used, it +-------------------------- +increases ATK by 10 for 1 minute. +-------------------------- +increases MATK by 10 for 1 minute. +-------------------------- +Weight: 3 +# +1501292# +The blue candy is a clear, round confection resembling a drop of seawater reflecting sunlight. +Its exterior feels slightly cool to the touch. When bitten into, it offers a refreshing and sweet taste, +akin to juicy fruit. It +-------------------------- +increases Def by 20 for 1 minute. +-------------------------- +increases Mdef by 10 for 1 minute. +-------------------------- +Weight: 3 +# +1501293# +The orange candy is a fresh, round confection with a clear, +bright orange core coated with sparkling sugar, +resembling the sunlight reflecting off dewdrops in the morning. +When bitten into, it offers a sweet and tangy taste that is refreshing and invigorating. +-------------------------- +Type: Restorative +Heal: 10% HP +Weight: 3 +# +1501294# +yellow candy coated with a sparkling sugar glaze that gleams like sunlight. Inside, +it offers a refreshing sweet and sour flavor reminiscent of fragrant, sweet fruits. +-------------------------- +Type: Restorative +Heal: 5% SP +Weight: 3 +# +1501295# +A Candy which is rumored to bring luck to +Whomever eats it. +-------------------------- +Weight: 1 +# +1501296# +Candy Sorcerer Scroll, +a magical book containing the power of the grand sorcerer. +Open it and find rare items you desire! +-------------------------- +Type: Item Giver +Weight: 1 +# +1501297# +INT +5 +MATK +3% +-------------------------- +Magic damage to all size enemy + 5%. +-------------------------- +When refined to +5 or higher: +Increase elemantal water , wind , fire damage 10% +-------------------------- +When refined to +7 or higher: +Increase elemantal water , wind , fire damage 10% +-------------------------- +Magic damage to all size enemy + 5%. +-------------------------- +When refined to +9 or higher: +Increase elemantal water , wind , fire damage 10% +-------------------------- +Cannot be used in WOE maps. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Wizard +# +1501298# +INT +5 +Aspd +5% +-------------------------- +Adds a 5% chance of autocasting Level 5 Lightning Bolt +Adds a 5% chance of autocasting Level 5 Cold Bolt +-------------------------- +When refined to +5 or higher: +Increases damage: +Fire Bolt, Cold Bolt, Lightning Bolt, Earth Spike and Heaven's Drive 10% +-------------------------- +When refined to +7 or higher: +Increases damage: +Fire Bolt, Cold Bolt, Lightning Bolt, Earth Spike and Heaven's Drive 10% +Aspd +5% +-------------------------- +When refined to +9 or higher: +Increases damage: +Fire Bolt, Cold Bolt, Lightning Bolt, Earth Spike and Heaven's Drive 10% +-------------------------- +Cannot be used in WOE maps. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Sage +# +1501299# +The Box Pre-Sale Bronze Package When opened, you will receive various items +-------------------------- +Moonstone Point (3060) +Title: The Beginner (Allstatus + 1) +-------------------------- +Battle Manual 10ea +Job Manual 10ea +New pet scroll 3ea +[Event] Unlimited Fly Wing Box (2Hrs) 3ea +[Event] Increase Agility Scroll Box(10) 5ea +[Event] Blessing Scroll Box(10) 10ea +Free Ticket for Kafra Storage 15ea +Free Ticket for Kafra Transportation 15ea +-------------------------- +Weight: 1 +# +1501300# +The Box Pre-Sale Silver Package When opened, you will receive various items +-------------------------- +Moonstone Point (10600) +Title: The Protector (Allstatus + 3) +-------------------------- +[Event] Scholar Ring Box (7 days) 1ea +[R] Pet Spirit Guarantee Scroll 1ea +Automatic player box 7 days 1ea +Costume random box S 1ea +Vip Coupon 30 days 1ea +Zeny Box 5ea +[Event] Unlimited Fly Wing Box (1Day) 5ea +Vibranium Blessing 15ea +-------------------------- +Weight: 1 +# +1501301# +The Box Pre-Sale Gold Package When opened, you will receive various items +-------------------------- +Moonstone Point (31800) +Title: Guardian of Midgard (Allstatus + 5) +-------------------------- +[Event] Scholar Ring Box (7 days) 1ea +Booster Box Gold 1ea +Nova Space Subscription (7 Days) 1ea +Costume random box S 2ea +[R] Pet Spirit Guarantee Scroll 4ea +Zeny Box 10ea +Vibranium Blessing 50ea +-------------------------- +Weight: 1 +# +1501302# +The Box Pre-Sale Platinum Package When opened, you will receive various items +-------------------------- +Moonstone Point (127200) +Title: Uncrowned King (Allstatus + 5) +Atk +3 +Matk +3 +Hit +3 +Flee +3 +-------------------------- +[Event] Scholar Ring Box (7 days) 1ea +Booster Box Platinum 1ea +Costume random box SS 1ea +Nova Space Subscription (30 Days) 1ea +[R] Pet Spirit Guarantee Scroll 10ea +Zeny Box 20ea +Vibranium Blessing 100ea +-------------------------- +Weight: 1 +# +1501303# +The Box Pre-Sale Diamond Package When opened, you will receive various items +-------------------------- +Moonstone Point (127200) +Title: Uncrowned King (Allstatus + 5) +Atk +5 +Matk +5 +Hit +5 +Flee +5 +-------------------------- +[Event] Scholar Ring Box (7 days) 1ea +Booster Box Diamond 1ea +Costume random box SS 1ea +Nova Space Subscription (30 Days) 1ea +[R] Pet Spirit Guarantee Scroll 10ea +Zeny Box 20ea +Vibranium Blessing 100ea +-------------------------- +Weight: 1 +# +1501304# +The Box An S-rank costume filled with mystery and charm. This box contains rare items hidden within. +That will transform your look into one of elegance and power, making you shine like a goddess in the world of Rune Midgard. +-------------------------- +When opened, there is a chance to receive. +Costume Angel Wing +Costume Angel Wing Ears +Costume Archangel Wing +-------------------------- +Weight: 1 +# +1501305# +The Box contains a randomly selected SS-rank costume, filled with mystery and charm.This box hides rare items within. +That will transform your look into one of elegance and power, making you shine like a goddess in the world of Rune Midgard. +-------------------------- +When opened, there is a chance to receive. +Costume Golden Angel Hairband +Costume Golden Angel Wing Ears +Costume Golden Archangel Wing +-------------------------- +Weight: 1 +# +1501306# +The Box containing +-------------------------- +[Event] White Potion Box 5ea +[Event] Blue Potion Box 5ea +[Event] HE Battle Manual 5ea +[Event] Unlimited Fly Wing (7 Days) 3ea +[Event] Token of Siegfried 10ea +[Event] Small Mana Potion 15ea +For survival +-------------------------- +Weight: 1 +# +1501307# +The Box containing +-------------------------- +[Event] White Potion Box 10ea +[Event] Blue Potion Box 10ea +[Event] HE Battle Manual 10ea +[Event] Unlimited Fly Wing (7 Days) 4ea +[Event] Token of Siegfried 20ea +[Event] Small Mana Potion 30ea +For survival +-------------------------- +Weight: 1 +# +1501308# +The Box containing +-------------------------- +[Event] White Potion Box 20ea +[Event] Blue Potion Box 20ea +[Event] HE Battle Manual 15ea +[Event] Unlimited Fly Wing (14 Days) 3ea +[Event] Token of Siegfried 30ea +[Event] Small Mana Potion 50ea +For survival +-------------------------- +Weight: 1 +# +1501309# +The Box contains Unlimited Fly Wing (14 Days) 1 ea +-------------------------- +Rental Item +Made from the wings of various birds and enchanted with a spell Allows the character to teleport randomly within the map +-------------------------- +Weight: 0 +# +1501310# +The Box contains: Unlimited Fly Wing (7 Days) 1 ea +-------------------------- +Rental Item +Made from the wings of various birds and enchanted with a spell Allows the character to teleport randomly within the map +-------------------------- +Weight: 0 +# +1501311# +Used to activate Title : The Beginner +-------------------------- +All Status +1 +-------------------------- +Type: Title Giver +Weight: 1 +# +1501312# +Used to activate Title: The Protector +-------------------------- +All Status +3 +-------------------------- +Type: Title Giver +Weight: 1 +# +1501313# +Used to activate Title: Guardian of Midgard +-------------------------- +All Status +5 +-------------------------- +Type: Title Giver +Weight: 1 +# +1501314# +Used to activate Title: Uncrowned King +-------------------------- +All Status +5 +ATK +3 +MATK +3 +HIT +3 +Flee +3 +-------------------------- +Type: Title Giver +Weight: 1 +# +1501315# +Used to activate Title: King of Midgard +-------------------------- +All Status +5 +ATK +5 +MATK +5 +HIT +5 +Flee +5 +-------------------------- +Type: Title Giver +Weight: 1 +# +1501316# +Old Hat Box – A mysterious blue box +Its contents are unknown—you may receive a random hat +-------------------------- +Weight: 1 +# +1501317# +Supplies for novice adventurers in Midgard. You might even find a Hero’s Backpack inside! +-------------------------- +Type: Item Giver +Weight: 1 +# +1501318# +A small backpack perfect for adventurers, containing various items inside +-------------------------- +Can be used [Teleport] Lv.1 +-------------------------- +If upgraded from level + 7: +-------------------------- +STR Base level 90 or higher , Increases ATK+20 +-------------------------- +INT Base level 90 or higher , Increases MATK+30 +-------------------------- +VIT Base level 90 or higher , Increases defense Neutral Property + 5% +-------------------------- +AGI Base level 90 or higher , Increases ASPD 8% +-------------------------- +DEX Base level 90 or higher , Increases Increases ranged attack power 5% +-------------------------- +LUK Base level 90 or higher , Increases Critical Damage + 10% +-------------------------- +If upgraded from level + 9: +-------------------------- +STR Base level 90 or higher , Increases ATK+10 +-------------------------- +INT Base level 90 or higher , Increases MATK+20 +-------------------------- +VIT Base level 90 or higher , Increases defense Neutral Property + 5% +-------------------------- +AGI Base level 90 or higher , Increases ASPD +1 +-------------------------- +DEX Base level 90 or higher , Increases Increases ranged attack power 5% +-------------------------- +LUK Base level 90 or higher , Increases Critical Damage + 5% +-------------------------- +Type: Garment +Defense: 20 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: All Jobs +# +1501319# +A replica bag Homunculus Amistr +-------------------------- +All Stats +1 +-------------------------- +Can be used [Teleport] Lv.1 +-------------------------- +For every 2 upgrades, EXP from monsters +1%, Item drop rate +1%. +-------------------------- +When upgraded to 9 +If you defeat a monster with physical or magical attacks restore SP 3 +-------------------------- +When upgraded to 12 +Skill casting cannot be interrupted +-------------------------- +(Cannot be used in WoE) +-------------------------- +Type: Garment +Defense: 30 +Weight: 20 +Armor Level: 1 +Tier Level: 6 +-------------------------- +Requirement: None +# +1501320# +The Box of Growth's Treasure – Opens when you reach the required level +You will be able to open it to receive various rewards +-------------------------- +[Event] Costume Angeling Hat 1 ea +Battle Manual 5 ea +Bubble Gum 5 ea +Small Life Potion 10 ea +Small Mana Potion 5 ea +-------------------------- +Weight: 0 +# +1501321# +The Box of Growth's Treasure – Opens when you reach the required level +You will be able to open it to receive various rewards +-------------------------- +[Event] Costume Chocolate Mini Hat 1 ea +Battle Manual 10 ea +Bubble Gum 10 ea +Small Life Potion 20 ea +Small Mana Potion 10 ea +-------------------------- +Weight: 0 +# +1501322# +The Box of Growth's Treasure – Opens when you reach the required level +You will be able to open it to receive various rewards +-------------------------- +Vibranium Blessing 100 ea +-------------------------- +Weight: 0 +# +1501323# +The Box of Beginner’s Treasure – Contains magic scrolls and magical items. +Allows you to travel across Rune Midgard with ease +-------------------------- +[Event] Level 10 Blessing Scroll 10ea +[Event] Level 10 Increase Agility Scroll 10ea +[Event] Unlimited Fly Wing Box (2Hrs) 2ea +-------------------------- +Weight: 0 +# +1501324# +Treasure from the Temple of Courage, filled with magic scrolls and items that increase experience points +To help accelerate your adventure +-------------------------- +[Event] Level 10 Blessing Scroll 10ea +[Event] Level 10 Increase Agility Scroll 10ea +[Event] JOB Battle Manual 3ea +-------------------------- +Weight: 0 +# +1501325# +The Box of the Brave Warrior – Contains pet eggs and potions that increase various types of power +To enhance your abilities and strength in battle +-------------------------- +[Event] Basic Pet Scroll(Uncommon - Rare) 2ea +[Event] Small Life Potion 5ea +[Event] Medium Life Potion 5ea +[Event] Small Mana Potion 5ea +-------------------------- +Weight: 0 +# +1501326# +Treasure from the Ancient Tower – Reveals pet eggs and items that increase experience points +To help you grow and become stronger in the world of Ragnarok +-------------------------- +[Event] Basic Pet Scroll(Uncommon - Rare) 3ea +[Event] Battle Manual 2ea +[Event] Bubble Gum 2ea +-------------------------- +Weight: 0 +# +1501327# +The Box of Ragnarok's Legendary Treasure – Contains magical mounts and items that increase experience points +Mystical eggs and special hats that will make you stand out in the land of Rune Midgard. +-------------------------- +[Event] C Jumping Poring 1ea +[Event] Battle Manual 3ea +[Event] Bubble Gum 3ea +[Event] Token of Siegfried 5ea +[Event] Boarding Halter 7D Box 1ea +[Event] Adventure Scroll 3ea +-------------------------- +Weight: 0 +# +1501328# +A magic egg with a mysterious Pet inside. +Giving you a chance to randomly receive a pet egg. +-------------------------- +Uncommon Egg +Rare Egg +-------------------------- +Weight: 0 +# +1501329# +The Box of Gifts for Beginners, +-------------------------- +Type: Item Giver +Weight: 1 +# +1501330# +The Box of Special Treasures given to participants of the GGT Anniversary Celebration, +The Box contains rare and valuable items that cannot be found anywhere else +-------------------------- +[Event] Battle Manual 4ea +[Event] Bubble Gum 4ea +Boarding Halter Box 3 days 1ea +Unlimited Fly Wing 2 Hrs Box 2ea +Elephant Hat 1ea +-------------------------- +Weight: 0 +# +1501331# +The Box of Special Treasures created to celebrate the first exclusive party of Ragnarok Landverse +This Box is filled with rare and valuable items, enchanted by the power of the gods +The Box of Treasure will bring fortune and great power to its bearer +To make your adventure in the world of Ragnarok even more unforgettable +-------------------------- +Old Hat box 1ea +[Event] Battle Manual 4ea +[Event] Bubble Gum 4ea +[Event] - Random Rental Ring Box 1ea +[Event] Mental Potion 4ea +[Event] Small Mana Potion 10ea +Unlimited Fly Wing 2 Hrs Box 2ea +-------------------------- +Weight: 0 +# +1501332# +The Kafra Box containing tickets for those granted access to various services +-------------------------- +Free Ticket for Kafra Storage 10ea +Free Ticket for Kafra Transportation 10ea +-------------------------- +Weight: 1 +# +1501333# +The Box of Magical Treasures, containing numerous magic scrolls, packed with immense power +-------------------------- +Close beta Raid Boss Box (1-3) 1ea +[Event] Increase Agility Scroll Box 2ea +[Event] Blessing Scroll Box 2ea +-------------------------- +Weight: 1 +# +1501334# +The Alchemist's Treasure Box, containing powerful potions for survival, fully stocked inside +-------------------------- +Close beta Raid Boss Box (1-3) 1ea +Close beta Raid Boss Box (4-6) 1ea +Small Life Potion 5ea +Medium Life Potion 5ea +-------------------------- +Weight: 1 +# +1501335# +The Alchemist's Treasure Box, filled with powerful potions for survival, fully stocked inside +-------------------------- +Close beta Raid Boss Box (1-3) 1ea +Close beta Raid Boss Box (4-6) 1ea +Close beta Raid Boss Box (7-9) 1ea +Small Mana Potion 5ea +Mental Potion 2ea +-------------------------- +Weight: 1 +# +1501336# +The Box of Virtue, which will reward you with positive experiences in return +-------------------------- +Battle Manual 10ea +Bubble Gum 10ea +-------------------------- +Weight: 1 +# +1501340# +Spirit of Merchant Scroll , Crafted by the grandmaster merchants of Alberta, +this scroll channels their spirit to bestow rare artifacts. These items, steeped in merchant history, +enhance trading capabilities and aid in battles, upholding the legacy of Rune Midgard merchant class. +-------------------------- +Type: Item Giver +Weight: 1 +# +1501341# +Str +5 +Atk +10 +-------------------------- +Physical damage all size enemy 5% +-------------------------- +When refined to +5 or higher: +Increase damage Mammonite and Cart revolution 5% +-------------------------- +When refined to +7 or higher: +Increase damage Mammonite and Cart revolution 10% +-------------------------- +Hit +15 +-------------------------- +When refined to +9 or higher: +Increase damage Mammonite and Cart revolution 10% +-------------------------- +Cannot be used in WOE maps. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Blacksmith +# +1501342# +Dex +5 +MaxHp +200 +Atk +5 +Weight +500 +-------------------------- +When refined to +5 or higher: +Increase damage Acid Terror 10% +-------------------------- +When refined to +7 or higher: +Increase damage Acid Terror 15% +-------------------------- +Atk +5 +Weight +500 +-------------------------- +When refined to +9 or higher: +Increase damage Acid Terror 10% +-------------------------- +Cannot be used in WOE maps. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Alchemist +# +1501343# +According to ancient legends, this egg belonged to a great dragon of a long-lost kingdom. When you open this egg, +you might find precious treasures or hidden magical powers within. Use it with caution, +as you may awaken a slumbering dragon with immense power. +-------------------------- +Type: Item Giver +Weight: 1 +# +1501344# +Increase damage on Dragon race monsters by 10% +Decrease damage from Dragon race monsters by 10% +-------------------------- +Refine Level +7: +-------------------------- +Increases experience gained from defeating Dragon race monsters by 10%. +-------------------------- +Gains 5 SP each time a monster Dragon is killed. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 100 +Armor Level: 1 +-------------------------- +Requirement: None +# +1501346# +[July] First Refill Box 10ION +A box that contains. +-------------------------- +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +[Event] Bubble Gum 2ea +[Event] Kafra Card 10ea +-------------------------- +Weight: 0 +# +1501347# +[July] First Refill Box 30ION +A box that contains. +-------------------------- +[Event] Token of Siegfried 3ea +Kafra Buff(1 Hour) 1ea +[Event] HE Bubble Gum 2ea +[Event] Yggdrasil Leaf Box (14Days) 1ea +-------------------------- +Weight: 0 +# +1501348# +The leaves of Yggdrasil, the source of this world. Resonates with the equipment of time to elicit hidden power. +-------------------------- +When equipped with Figure +All Stats +1 +MATK +5 +ATK +5 +-------------------------- +Increases drop rate gained from defeating all monsters by 15% +-------------------------- +Increses Movement Speed by 15% +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +# +1501349# +Rental Item Yggdrasil Leaf 14Days +-------------------------- +A box that contains. +-------------------------- +[Event] Yggdrasil Leaf 1ea +-------------------------- +When equipped with Figure +All Stats +1 +MATK +5 +ATK +5 +-------------------------- +Increases drop rate gained from defeating all monsters by 15% +-------------------------- +Increses Movement Speed by 15% +-------------------------- +Weight: 0 +# +1501350# +A box that contains. +-------------------------- +Level 10 Blessing Scroll 10ea +Level 10 Increase Agility Scroll 10ea +[Event] Mysterious Life Potion 10ea +-------------------------- +Weight: 1 +# +1501351# +A box that contains. +-------------------------- +New Pet Scroll 5ea +Boarding Halter Box 7D 1ea +[Event] HE Bubble Gum 3ea +Combat Pill 10ea +-------------------------- +Weight: 1 +# +1501352# +A box that contains. +-------------------------- +[R] Pet Spirit Guarantee Scroll 4ea +Elite Siege Supply Box 5ea +[Event] Token of Siegfried 3ea +-------------------------- +Weight: 1 +# +1501353# +A box that contains. +-------------------------- +[Event] Token of Siegfried 7ea +[Event] Teacake 10ea +[Event] Guyak Pudding 15ea +[Event] Power Booster 4ea +Kafra Buff (1 Hour) 2ea +Adamantine Blessing 119ea +-------------------------- +Weight: 1 +# +1501354# +A box that contains. +-------------------------- +Adamantine Blessing 199ea +Enriched Elunium 2ea +Enriched Oridecon 2ea +Title : Welcome to Yggdrasil Rift (25 days) 1ea +[Event] Supply Big Bun& Pill Box 2ea +-------------------------- +Weight: 1 +# +1501355# +Use it for activate title Title : Welcome to Yggdrasil Rift +-------------------------- +All Stats +2 +-------------------------- +Increses Movement Speed by 10% +-------------------------- +Increase Physical and Magical Damage to Ygg Drasill monsters by 10%. +-------------------------- +Increases drop rate gained from defeating all monsters by 10% +-------------------------- +Expiration date 23-07-2024 +-------------------------- +Type: Title Giver +Weight: 1 +# +1501356# +Use this crystal to earn 1 Season 5 Premium Battlepass point. +-------------------------- +Weight: 0 +# +1501357# +Use this item to combine 3 BP Ember Fragment into a BP Enchanted Flame. +-------------------------- +Weight: 0 +# +1501358# +Use this heart to earn 1 Season 3 Battlepass - Quest point. +-------------------------- +Weight: 0 +# +1501359# +Invitation Book to Unlock Premium Pass Season 5, created for everyone to have fun and receive various rewards +Use it to activate the Premium Battle Pass. +-------------------------- +Weight: 0 +# +1501360# +Invitation Book to Join Battle Pass Season 5, created for everyone to have fun and receive various rewards. +Use it to activate the Quest Battle Pass. +-------------------------- +Weight: 0 +# +1501361# +When used, you can Choose +-------------------------- +[Obtainable Items] +Nova Coin 8ea +Dew Coin 8ea +-------------------------- +Type: Usable +Weight: 0 +# +1501362# +When used, you can Choose +-------------------------- +[Obtainable Items] +Nightmare Fragment 1ea +Fierce Fragment 1ea +-------------------------- +Type: Usable +Weight: 0 +# +1501363# +The crown of Winner Qilin Legacy SS2 +-------------------------- +All Status +5 +Critical Rate +5 +Flee +5 +Hit +5 +-------------------------- +Increases Movement Speed +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: None +# +1501364# +A box which contains +-------------------------- +Boarding Halter Box 3D 1ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +Terra Nova Coin Box 1ea +-------------------------- +Additional +2 Adam Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +1501365# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] White Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501366# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501367# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +1501368# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501369# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1501370# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501371# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501372# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] White Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1501373# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +Terra Nova Coin Box 1ea +[Event] Crystal Battle Pass 10ea +-------------------------- +Weight: 0 +# +1501374# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +1501375# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501376# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1501377# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501378# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Boarding Halter Box 3D 1ea +[R] Pet Guaranteed Scroll 1ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501379# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] White Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1501380# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501381# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +1501382# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501383# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +[Event] Crystal Battle Pass 10ea +-------------------------- +Weight: 0 +# +1501384# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501385# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501386# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] White Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1501387# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501388# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +1501389# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501390# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1501391# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501392# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Boarding Halter Box 3D 1ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501393# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] White Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +[Event] Crystal Battle Pass 10ea +-------------------------- +Weight: 0 +# +1501394# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501395# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +1501396# +A box which contains +-------------------------- +Adamantine Blessing 30ea +Elunium 2ea +Oridecon 2ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501397# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1501398# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501399# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501400# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] White Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1501401# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501402# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +1501403# +A box which contains +-------------------------- +Adamantine Blessing 30ea +Elunium 2ea +Oridecon 2ea +[Event] Crystal Battle Pass 10ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501404# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1501405# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501406# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Boarding Halter Box 3D 1ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501407# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] White Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +1501408# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501409# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +1501410# +A box which contains +-------------------------- +Adamantine Blessing 30ea +Elunium 2ea +Oridecon 2ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501411# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +1501412# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +Terra Nova Coin Box 1ea +-------------------------- +Weight: 0 +# +1501413# +A box which contains +-------------------------- +Costume Costume Imp Hat 1ea +[R] Pet Guaranteed Scroll 3ea +Adamantine Blessing 100ea +Soul of Corrison 10ea +Terra Nova Coin Box 1ea +Terra Nova Fragment Box 1ea +[Event] Crystal Battle Pass 10ea +-------------------------- +Weight: 0 +# +1501414# +A box which contains +-------------------------- +[R] Pet Guaranteed Scroll 1ea +[Event] Automatic Play Box 7 Days 1ea +Mental Potion 5ea +Small Mana Potion 10ea +[Event] Increase Agility Scroll Box (10) 2ea +[Event] Blessing Scroll Box (10) 2ea +Adamantine Blessing 30ea +-------------------------- +Weight: 0 +# +1501415# +A box which contains +-------------------------- +Small Life Potion 10ea +Medium Life Potion 10ea +Mysterious Life Potion 10ea +-------------------------- +Weight: 0 +# +1501416# +A box which contains +-------------------------- +Legendary Ore Convex Mirror 10ea +Adamantine Blessing 30ea +Unlimited Fly Wing 1 Days 1ea +-------------------------- +Weight: 0 +# +1501417# +A box which contains +-------------------------- +[Event] HE Battle Manual 2ea +[Event] Battle Manual 5ea +Rare Pet Spirit Fragment 5ea +-------------------------- +Weight: 0 +# +1501418# +A box which contains +-------------------------- +[Event] HE Bubble Gum 2ea +[Event] Bubble Gum 5ea +-------------------------- +Weight: 0 +# +1501419# +A box which contains +-------------------------- +Advanced WoE Supply Box 2ea +Mental Potion 5ea +Small Mana Potion 10ea +-------------------------- +Weight: 0 +# +1501420# +A box which contains +-------------------------- +Small Life Potion 30ea +Medium Life Potion 30ea +Mysterious Life Potion 30ea +Unlimited Fly Wing 1 Days 1ea +[R] Pet Guaranteed Scroll 3ea +-------------------------- +Weight: 0 +# +1501421# +A box which contains +-------------------------- +[R] Pet Guaranteed Scroll 3ea +Rare Pet Spirit Fragment 10ea +-------------------------- +Weight: 0 +# +1501422# +A box which contains +-------------------------- +Red Booster 5ea +Mystic Powder 5ea +Tyr's Blessing 5ea +-------------------------- +Weight: 0 +# +1501423# +A box which contains +-------------------------- +Blessing Ore Convex Mirror 10ea +Adamantine Blessing 30ea +Unlimited Fly Wing 1 Days 1ea +Nightmare Coin 1ea +Fierce Coin 1ea +-------------------------- +Weight: 0 +# +1501424# +A box which contains +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Eluminum Box 2ea +Oridecon Box 2ea +-------------------------- +Weight: 0 +# +1501425# +A box which contains +-------------------------- +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Battle Manual 5ea +[Event] Bubble Gum 5ea +-------------------------- +Weight: 0 +# +1501426# +A box which contains +-------------------------- +Limit Power Booster 2ea +Infinity Drink 2ea +Mental Potion 5ea +Small Mana Potion 10ea +Nightmare Coin 1ea +Fierce Coin 1ea +-------------------------- +Weight: 0 +# +1501427# +A box which contains +-------------------------- +Small Life Potion 30ea +Medium Life Potion 30ea +Mysterious Life Potion 30ea +Unlimited Fly Wing 1 Days 1ea +[R] Pet Guaranteed Scroll 1ea +-------------------------- +Weight: 0 +# +1501428# +A box which contains +-------------------------- +Costume Red Strong Hair 1ea +Enriched Elunium 1ea +Enriched Oridecon 1ea +Boarding Halter Box 7D 1ea +Adamantine Blessing 60ea +-------------------------- +Additional +3 Adam Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +1501429# +A box which contains +-------------------------- +Infinity Drink 5ea +Limit Power Booster 3ea +Red Booster 5ea +Mystic Powder 3ea +Tyr's Blessing 3ea +Rare Pet Spirit Fragment 10ea +-------------------------- +Weight: 0 +# +1501430# +A box which contains +-------------------------- +Blessing Ore Convex Mirror 10ea +Adamantine Blessing 30ea +Unlimited Fly Wing 1 Days 1ea +Eluminum Box 2ea +Oridecon Box 2ea +-------------------------- +Weight: 0 +# +1501431# +A box which contains +-------------------------- +Small Life Potion 50ea +Medium Life Potion 50ea +Mysterious Life Potion 50ea +Unlimited Fly Wing 1 Days 1ea +[R] Pet Guaranteed Scroll 3ea +-------------------------- +Weight: 0 +# +1501432# +A box which contains +-------------------------- +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Battle Manual 5ea +[Event] Bubble Gum 5ea +-------------------------- +Weight: 0 +# +1501433# +A box which contains +-------------------------- +Mental Potion 5ea +Small Mana Potion 10ea +Advanced WoE Supply Box 5ea +Rare Pet Spirit Fragment 10ea +[R] Pet Guaranteed Scroll 1ea +-------------------------- +Weight: 0 +# +1501434# +A box which contains +-------------------------- +Costume Ifrit's Ear 1ea +Infinity Drink 10ea +Limit Power Booster 4ea +Red Booster 10ea +Mystic Powder 4ea +Tyr's Blessing 4ea +Rare Pet Spirit Fragment 5ea +-------------------------- +Weight: 0 +# +1501435# +A box which contains +-------------------------- +[R] Pet Guaranteed Scroll 1ea +Mental Potion 15ea +Small Mana Potion 30ea +-------------------------- +Weight: 0 +# +1501436# +A box which contains +-------------------------- +Infinity Drink 5ea +Limit Power Booster 3ea +Red Booster 5ea +Mystic Powder 3ea +Tyr's Blessing 3ea +Nightmare Coin 1ea +Fierce Coin 1ea +-------------------------- +Weight: 0 +# +1501437# +A box which contains +-------------------------- +Blessing Ore Convex Mirror 20ea +Adamantine Blessing 30ea +Unlimited Fly Wing 1 Days 1ea +Nightmare Coin 1ea +Fierce Coin 1ea +-------------------------- +Weight: 0 +# +1501438# +A box which contains +-------------------------- +Enriched Elunium 2ea +Enriched Oridecon 2ea +Eluminum Box 2ea +Oridecon Box 2ea +[R] Pet Guaranteed Scroll 3ea +-------------------------- +Additional +3 Adam Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +1501439# +A box which contains +-------------------------- +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Battle Manual 5ea +[Event] Bubble Gum 5ea +Advanced WoE Supply Box 5ea +-------------------------- +Weight: 0 +# +1501440# +A box which contains +-------------------------- +Mental Potion 15ea +Small Mana Potion 30ea +Rare Pet Spirit Fragment 5ea +Epic Pet Spirit Fragment 5ea +-------------------------- +Weight: 0 +# +1501441# +A box which contains +-------------------------- +Small Life Potion 35ea +Medium Life Potion 35ea +Mysterious Life Potion 35ea +Rare Pet Spirit Fragment 10ea +Epic Pet Spirit Fragment 5ea +-------------------------- +Weight: 0 +# +1501442# +A box which contains +-------------------------- +Automatic Battle Box 30 Day 1ea +Infinity Drink 10ea +Limit Power Booster 4ea +Red Booster 10ea +Mystic Powder 4ea +Tyr's Blessing 4ea +Epic Pet Spirit Fragment 5ea +-------------------------- +Weight: 0 +# +1501443# +A box which contains +-------------------------- +Title - Fire Emperor (Allstats+3) 1ea +Gym pass 1ea +Inventory Extension Coupon 1ea +[Event] Battle Manual 5ea +[Event] Bubble Gum 5ea +Epic Pet Spirit Fragment 10ea +-------------------------- +Additional +3 Adam Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +1501444# +A box which contains +-------------------------- +Blessing Ore Convex Mirror 20ea +Adamantine Blessing 30ea +Unlimited Fly Wing 1 Days 1ea +HD Bradium 3ea +HD Carnium 3ea +-------------------------- +Weight: 0 +# +1501445# +A box which contains +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Eluminum Box 2ea +Oridecon Box 2ea +-------------------------- +Weight: 0 +# +1501446# +A box which contains +-------------------------- +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Battle Manual 5ea +[Event] Bubble Gum 5ea +Advanced WoE Supply Box 5ea +-------------------------- +Weight: 0 +# +1501447# +A box which contains +-------------------------- +Mental Potion 15ea +Small Mana Potion 30ea +Advanced WoE Supply Box 5ea +-------------------------- +Weight: 0 +# +1501448# +A box which contains +-------------------------- +New Pet Scroll 10ea +Small Life Potion 40ea +Medium Life Potion 40ea +Mysterious Life Potion 40ea +-------------------------- +Weight: 0 +# +1501449# +A box which contains +-------------------------- +[Event] Automatic Play Box 7 Days 1ea +[Event] Increase Agility Scroll Box (10) 5ea +[Event] Blessing Scroll Box (10) 5ea +[Event] Guyak Pudding 10ea +[Event] Big Bun 100ea +[Event] Pill 100ea +-------------------------- +Weight: 0 +# +1501450# +A box which contains +-------------------------- +Infinity Drink 5ea +Limit Power Booster 3ea +Red Booster 5ea +Mystic Powder 3ea +Tyr's Blessing 3ea +-------------------------- +Weight: 0 +# +1501451# +A box which contains +-------------------------- +Blessing Ore Convex Mirror 20ea +Adamantine Blessing 30ea +Unlimited Fly Wing 1 Days 1ea +HD Bradium 3ea +HD Carnium 3ea +-------------------------- +Weight: 0 +# +1501452# +A box which contains +-------------------------- +Adamantine Blessing 30ea +New Pet Scroll 10ea +[Event] Battle Manual 5ea +[Event] Bubble Gum 10ea +-------------------------- +Weight: 0 +# +1501453# +A box which contains +-------------------------- +True Red Booster 1ea +Red Booster 10ea +[Event] Guyak Pudding 5ea +[Event] Big Bun 50ea +[Event] Pill 50ea +Nightmare Coin 1ea +Fierce Coin 1ea +-------------------------- +Weight: 0 +# +1501454# +A box which contains +-------------------------- +True Tyr's Blessing 1ea +Tyr's Blessing 5ea +[Event] Guyak Pudding 5ea +[Event] Big Bun 50ea +[Event] Pill 50ea +-------------------------- +Weight: 0 +# +1501455# +A box which contains +-------------------------- +True Infinity Drink 1ea +Infinity Drink 1ea +[Event] Guyak Pudding 5ea +[Event] Big Bun 50ea +[Event] Pill 50ea +Nightmare Coin 1ea +Fierce Coin 1ea +-------------------------- +Weight: 0 +# +1501456# +A box which contains +-------------------------- +True Limit Power Booster 2ea +Limit Power Booster 2ea +[Event] Guyak Pudding 5ea +[Event] Big Bun 50ea +[Event] Pill 50ea +-------------------------- +Weight: 0 +# +1501457# +A box which contains +-------------------------- +Holy Elemental Scroll 5ea +Undead Elemental Scroll 5ea +Concentration Scroll 10ea +[Event] Guyak Pudding 5ea +[Event] Big Bun 50ea +[Event] Pill 50ea +Nightmare Coin 1ea +Fierce Coin 1ea +-------------------------- +Weight: 0 +# +1501458# +A box which contains +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Eluminum Box 2ea +Oridecon Box 2ea +Epic Pet Spirit Fragment 5ea +Worn Out Limit Break Scroll 5ea +-------------------------- +Weight: 0 +# +1501459# +A box which contains +-------------------------- +Adamantine Blessing 50ea +Epic Pet Spirit Fragment 5ea +Nightmare Coin 1ea +-------------------------- +Weight: 0 +# +1501460# +A box which contains +-------------------------- +Adamantine Blessing 50ea +Epic Pet Spirit Fragment 5ea +Blessed Adamantine Dust 10ea +Fierce Coin 1ea +-------------------------- +Weight: 0 +# +1501461# +A box which contains +-------------------------- +Adamantine Blessing 50ea +Epic Pet Spirit Fragment 5ea +Legendary Pet Spirit Fragment 3ea +-------------------------- +Weight: 0 +# +1501462# +A box which contains +-------------------------- +Adamantine Blessing 50ea +Epic Pet Spirit Fragment 5ea +Blessed Adamantine Dust 10ea +Fierce Coin 1ea +-------------------------- +Weight: 0 +# +1501463# +A box which contains +-------------------------- +Costume Swirling Flame 1ea +Epic Pet Spirit Fragment 25ea +Adamantine Blessing 299ea +Nightmare Coin 1ea +BP Choose 1ea +-------------------------- +Weight: 0 +# +1501464# +Use it for activate title Title : Fire Emperor +-------------------------- +All Stats +3 +-------------------------- +Type: Title Giver +Weight: 1 +# +1501465# +Atk +5 +Matk +5 +Mdef +5 +-------------------------- +When refined to +7 or higher: +Atk +10 +Matk +10 +Mdef +5 +-------------------------- +When refined to +9 or higher: +Atk +10 +Matk +10 +Mdef +5 +-------------------------- +Type: Headgear +Defense: 17 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +1501466# +Aspd + 3% +HIT + 3 +FLEE + 3 +-------------------------- +When refined to +7 or higher: +Aspd + 3% +HIT + 3 +FLEE + 3 +-------------------------- +When refined to +9 or higher: +Aspd + 4% +HIT + 4 +FLEE + 4 +-------------------------- +Type: Armor +Defense: 70 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +1501467# +All Status + 1 +Defense + 10 +Decrease damage from player 1% +-------------------------- +When refined to +7 or higher: +All Status + 2 +Defense + 10 +Decrease damage from player 1% +-------------------------- +When refined to +9 or higher: +All Status + 2 +Defense + 10 +Decrease damage from player 1% +-------------------------- +Type: Garment +Defense: 24 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +1501468# +Max Hp +1% +Max Sp +1% +Variable Cas Time -1% +Resist Stone Curse Status 5% +Resist Silence Status 5% +-------------------------- +When refined to +7 or higher: +Max Hp +2% +Max Sp +2% +Variable Cas Time -2% +Resist Stone Curse Status 5% +Resist Silence Status 5% +-------------------------- +When refined to +9 or higher: +Max Hp +2% +Max Sp +2% +Variable Cas Time -3% +Resist Stone Curse Status 5% +Resist Silence Status 5% +-------------------------- +Type: Shoes +Defense: 13 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +1501469# +Atk +7 +Aspd +3% +-------------------------- +Type: Accessory (Right) +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +1501470# +Matk +7 +Variable Cast Time - 1% +-------------------------- +Type: Accessory (Left) +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +1501471# +A box containing +-------------------------- +Infinity Drink 5ea +Red Booster 5ea +[Event] Mystic Powder 5ea +Elite Siege Supply Box 3ea +-------------------------- +Weight: 0 +# +1501472# +A box containing +-------------------------- +[R] Pet Spirit Guarantee Scroll 4ea +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 3ea +[Event] Tyr's Blessing 4ea +-------------------------- +Weight: 0 +# +1501473# +A box containing +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Adamantine Blessing 159ea +Holgren's Shadow Smelting Hammer 3ea +Armor +7 Refine Ticket 1ea +-------------------------- +Weight: 0 +# +1501474# +The long-lost scroll of King Hassan +shrouded in mysterious power +grants its possessor unprecedented abilities. +-------------------------- +Type: Item Giver +Weight: 1 +# +1501475# +AGI +5 +FLEE +5 +Critical +5 +Critical damage +5% +-------------------------- +For every 5 refine level: +increase damage Sonic blow +10% +increase damage Grimtooth +10% +-------------------------- +When refined to +7 or higher: +increase damage Sonic blow +5% +increase damage Grimtooth +5% +Increase damage monster size Small and Large 15% +-------------------------- +Every level skill Katar Mastery 1 lv Increase hit +1 +-------------------------- +When refined to +9 or higher: +increase damage Sonic blow +5% +increase damage Grimtooth +5% +-------------------------- +Cannot be used in WOE maps. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Assassin +# +1501476# +STR +5 +HIT +10 +Physical damage all class enemy 3% +-------------------------- +For every 5 refine level: +increase damage Backstab +10% +increase damage Raid +10% +-------------------------- +When refined to +7 or higher: +increase damage Backstab +10% +increase damage Raid +10% +Increase damage monster size Medium and Large 15% +-------------------------- +Every level skill Katar Mastery 1 lv Increase hit +1 +-------------------------- +When refined to +9 or higher: +increase damage Backstab +10% +increase damage Raid +10% +-------------------------- +Cannot be used in WOE maps. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Rogue +# +1501477# +Suddenly I had an idea as well. +Are you going to take this matter away...? +-------------------------- +Reduces damage received from players by 5% +HP+ 200 +SP+ 50 +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 20 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +None +# +1501478# +A helmet used by honorable knights. +CRI +3 +increases Critical Damage by 5% +-------------------------- +When refined to +7 or higher: +CRI +7 +-------------------------- +When refined to +9 or higher: +Aspd +1 +increases Critical Damage by 7% +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 70 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 85 +# +1501479# +Dewata Quest Pass grants exclusive access to bypass the quest Dewata Legend Quest +allowing direct entry into the Krakatau Volcano. Additionally, users of the pass will receive a Jaty Crown and 5 Satay +as a special bonus item. +-------------------------- +This item cannot be used if you have already completed this quest. +-------------------------- +Weight: 0 +# +1501480# +Brasilis Quest Pass grants exclusive access to bypass +Brasilis Dungeon Entrance Quest +allowing direct entry into the Beyond the Waterfall. +-------------------------- +This item cannot be used if you have already completed this quest. +-------------------------- +Weight: 0 +# +1501481# +This sacred scroll channels the pure essence +of the Holy Sanctum +purging evil and blessing the worthy. +-------------------------- +Type: Item Giver +Weight: 1 +# +1501482# +STR +5 +MAXSP +200 +ATK +10 +ASPD +5% +-------------------------- +For every 5 refine level: +increase damage Triple Attack +10% +increase damage Chain combo +10% +-------------------------- +When refined to +7 or higher: +increase damage Triple Attack +10% +increase damage Chain combo +10% +increase damage Asura Stikre +15% +-------------------------- +When refined to +9 or higher: +increase damage Triple Attack +10% +increase damage Chain combo +10% +increase damage Asura Stikre +10% +-------------------------- +Cannot be used in WOE maps. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Monk +# +1501483# +INT +5 +MAXHP +200 +MATK +20 +MAXSP +120 +-------------------------- +For every 5 refine level: +Increases the recovery rate of Heal +10% +Increases the recovery rate of Sanctuary +10% +increase damage Magnus Exorcismus +10% +-------------------------- +When refined to +7 or higher: +Increases the recovery rate of Heal +15% +Increases the recovery rate of Sanctuary +15% +Decrease Variable cast time Magnus Exorcismus +20% +-------------------------- +When refined to +9 or higher: +Increases the recovery rate of Heal +10% +Increases the recovery rate of Sanctuary +10% +increase damage Magnus Exorcismus +10% +-------------------------- +Cannot be used in WOE maps. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Priest +# +1501484# +A box containing +-------------------------- +Infinity Drink 5ea +Red Booster 5ea +[Event] Mystic Powder 5ea +[Event] Elite Siege Supply Box 3ea +-------------------------- +Weight: 0 +# +1501485# +A box containing +-------------------------- +[R] Pet Spirit Guarantee Scroll 4ea +[Event] HE Battle Manual 3ea +[Event] HE Bubble Gum 3ea +True Tyr's Blessing 2ea +-------------------------- +Weight: 0 +# +1501486# +A box containing +-------------------------- +Enriched Elunium 2ea +Enriched Oridecon 2ea +Adamantine Blessing 300ea +Holgren's Shadow Smelting Hammer 3ea +Weapon +7 Refine Ticket 1ea +-------------------------- +Weight: 0 +# +1501487# +[August] First Refill Box 10ION +A box that contains. +-------------------------- +[Event] Small Life Potion 10ea +[Event] Small Mana Potion 10ea +[Event] Battle Manual & Bubble Gum 3ea +[Event] Token of Siegfried 3ea +-------------------------- +Weight: 0 +# +1501488# +[August] First Refill Box 30ION +A box that contains. +-------------------------- +[Event] Automatic Player Box 30 Days 1ea +Kafra Buff (1 Day) 1ea +[Event] HE Bubble Gum 3ea +[Event] Spare Card 14 Days Box 1ea +-------------------------- +Weight: 0 +# +1501489# +This monster card has been rejected and deemed defective. +-------------------------- +When equipped with Figure +All Stats +2 +MATK +10 +ATK +10 +-------------------------- +Increases drop rate gained from defeating all monsters by 15% +-------------------------- +Increses Movement Speed by 15% +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +# +1501490# +Rental Item Spare Card 14Days +-------------------------- +A box that contains. +-------------------------- +[Event] Spare Card 1ea +-------------------------- +When equipped with Figure +All Stats +2 +MATK +10 +ATK +10 +-------------------------- +Increases drop rate gained from defeating all monsters by 15% +-------------------------- +Increses Movement Speed by 15% +-------------------------- +Weight: 0 +# +1501491# +A box that contains. +-------------------------- +Level 10 Blessing Scroll 10ea +Level 10 Increase Agility Scroll 10ea +[Event] Mysterious Life Potion 10ea +-------------------------- +Weight: 1 +# +1501492# +A box that contains. +-------------------------- +New Pet Scroll 10ea +Boarding Halter Box 7D 1ea +[Event] HE Bubble Gum 3ea +Combat Pill 10ea +-------------------------- +Weight: 1 +# +1501493# +A box that contains. +-------------------------- +[R] Pet Spirit Guarantee Scroll 6ea +Elite Siege Supply Box 5ea +[Event] Token of Siegfried 3ea +-------------------------- +Weight: 1 +# +1501494# +A box that contains. +-------------------------- +[Event] Token of Siegfried 10ea +[Event] Guyak Pudding 15ea +True Infinity Drink 2ea +True Red Booster 2ea +Kafra Buff (1 Day) 2ea +Adamantine Blessing 150ea +-------------------------- +Weight: 1 +# +1501495# +A box that contains. +-------------------------- +Adamantine Blessing 300ea +Enriched Elunium 2ea +Enriched Oridecon 2ea +Cigarette Box (21Days) 1ea +[Event] Supply Big Bun& Pill Box 2ea +-------------------------- +Weight: 1 +# +1501496# +A narrow, short roll of finely cut tobacco wrapped in thin paper. +-------------------------- +Allstats +2 +ATK +5 +MATK +5 +HIT +5 +-------------------------- +Add a chance of gaining 'Adamantine Blessing' when kill monster. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +None +# +1501497# +Rental Item Cigarette 21Days +-------------------------- +Cigarette 1ea +-------------------------- +Allstats +2 +ATK +5 +MATK +5 +HIT +5 +-------------------------- +Add a chance of gaining 'Adamantine Blessing' when kill monster. +-------------------------- +Weight: 0 +# +1501498# +A box that contains. +-------------------------- +-Stamina Elixer 5ea +-Rare Pet Scroll 5ea +-HE Battle Manual 2ea +-HE Bubble Gum 2ea +-[Event] Automatic Player (7 Days) 1ea +-Adamentine Blessing 1000ea +-BP Enchanted Flame 5ea +-------------------------- +Weight: 0 +# +1501499# +A box that contains. +-------------------------- +-Stamina Elixer 5ea +-Rare Pet Scroll 10ea +-HE Battle Manual 5ea +-HE Bubble Gum 5ea +-BP Enchanted Flame 5ea +-[Event] Automatic Player (7 Days) 1ea +-Kafra Buff Box (7 Days) 1ea +-Adamentine Blessing 3000ea +-------------------------- +Weight: 0 +# +1501500# +A box that contains. +-------------------------- +-Stamina Elixer 15ea +-Rare Pet Scroll 10ea +-HE Battle Manual 10ea +-HE Bubble Gum 10ea +-BP Enchanted Flame 5ea +-[Event] Automatic Player (7 Days) 3ea +-Kafra Buff Box (7 Days) 2ea +-Adamentine Blessing 5000ea +-[Land] Fruit Basket 100ea +-------------------------- +Weight: 0 +# +1501501# +Unleash the power of the guardian fairy. With this power +you will be protected by wings of light, +along with blessings of good fortune always by your side. +-------------------------- +Type: Item Giver +Weight: 1 +# +1501502# +The jewelry made for the fairy godmother, who is so kind-hearted to children, seems to make one feel even kinder when worn. Or is it just imagination? +-------------------------- +Reduces Fixed Cast Time -0.1 second +-------------------------- +When STR is 90 or higher. MHP +1% +-------------------------- +When AGI is 90 or higher. Perfect Dodge +3 +-------------------------- +When VIT is 90 or higher. MDEF +1 +-------------------------- +When INT is 90 or higher. MSP +1% +-------------------------- +When DEX is 90 or higher. Reduces Fixed Cast Time -0.1 second +-------------------------- +When LUK is 90 or higher. FLEE +10 +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +1501503# +A rare and precious scroll that, +upon unrolling, could bestow upon you +the formidable power of King Eddga +and significantly enhance your combat abilities. +-------------------------- +Type: Item Giver +Weight: 1 +# +1501504# +A backpack befitting of any hero. +-------------------------- +Enables Level 1 Greed. +-------------------------- +If upgrade level is +7 or higher: +-------------------------- +Atk + 20 if the users base Str is 90 or higher. +-------------------------- +Matk + 30 if the users base Int is 90 or higher. +-------------------------- +Aspd + 8% if the users base Agi is 90 or higher. +-------------------------- +Increases long-ranged damage on targets by 5% if the users base Dex is 90 or higher. +-------------------------- +Increases critical damage on targets by 10% if the users base Luk is 90 or higher. +-------------------------- +Reduces damage taken from Neutral property attacks by 5% if the users base Vit is 90 or higher. +-------------------------- +If upgrade level is +9 or higher: +-------------------------- +Additional Atk + 10 if the users base Str is 90 or higher. +-------------------------- +Additional Matk + 20 if the users base Int is 90 or higher. +-------------------------- +Aspd + 1 if the users base Agi is 90 or higher. +-------------------------- +Increases long-ranged damage on targets by an additional 5% if the users base Dex is 90 or higher. +-------------------------- +Increases critical damage on targets by an additional 5% if the users base Luk is 90 or higher. +-------------------------- +Reduces damage taken from Neutral property attacks by an additional 5% if the users base Vit is 90 or higher. +-------------------------- +Type: Garment +Defense: 20 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +1501505# +Rachel Quest Pass grants exclusive access to bypass the quest Rachel Sanctuary Quest +allowing direct entry into the Rachel Sanctuary. +-------------------------- +This item cannot be used if you have already completed this quest. +-------------------------- +Weight: 0 +# +1501506# +[September] First Refill Box 10ION +A box that contains. +-------------------------- +Mental Potion 5ea +[Event] Small Mana Potion 10ea +[Event] Battle Manual & Bubble Gum 3ea +[Event] Token of Siegfried 3ea +-------------------------- +Weight: 0 +# +1501507# +[September] First Refill Box 30ION +A box that contains. +-------------------------- +[Event] Automatic Player Box 30 Days 1ea +Kafra Buff (1 Day) 1ea +[Event] HE Battle Manual 3ea +[Event] Pipe Box (14 Days) 1ea +-------------------------- +Weight: 0 +# +1501508# +A Refined, wooden pipe used for smoking high quality tobacco. +-------------------------- +When equipped with Figure +All Stats +2 +MATK +10 +ATK +10 +-------------------------- +Increases drop rate gained from defeating all monsters by 15% +-------------------------- +Increses Movement Speed by 15% +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +None +# +1501509# +Rental +[Event] Pipe (14Days) +-------------------------- +A box that contains. +-------------------------- +[Event] Pipe(14Days) 1ea +-------------------------- +When equipped with Figure +All Stats +2 +MATK +10 +ATK +10 +-------------------------- +Increases drop rate gained from defeating all monsters by 15% +-------------------------- +Increses Movement Speed by 15% +-------------------------- +Weight: 0 +# +1501510# +A box that contains. +-------------------------- +Level 10 Blessing Scroll 10ea +Level 10 Increase Agility Scroll 10ea +[Event] Mysterious Life Potion 10ea +-------------------------- +Weight: 0 +# +1501511# +A box that contains. +-------------------------- +New Pet Scroll 10ea +Boarding Halter Box 7D 1ea +[Event] HE Bubble Gum 3ea +Combat Pill 10ea +-------------------------- +Weight: 0 +# +1501512# +A box that contains. +-------------------------- +[R] Pet Spirit Guarantee Scroll 6ea +Elite Siege Supply Box 5ea +[Event] Token of Siegfried 3ea +-------------------------- +Weight: 0 +# +1501513# +A box that contains. +-------------------------- +[Event] Guyak Pudding 15ea +True Mental Potion 2ea +True Infinity Drink 2ea +True Red Booster 2ea +Kafra Buff (1 Day) 2ea +Adamantine Blessing 150ea +-------------------------- +Weight: 0 +# +1501514# +A box that contains. +-------------------------- +Adamantine Blessing 300ea +Enriched Elunium 2ea +Enriched Oridecon 2ea +[Event] Supply Big Bun& Pill Box 2ea +1st ROL Aniversary Scroll 1ea +-------------------------- +Weight: 0 +# +1501515# +To Celebrate 1st ROL Aniversary Scroll +-------------------------- +All Stats +3 +ATK +10 +MATK +10 +-------------------------- +Increases experience gained from defeating all monsters by 5% +Increases drop rate gained from defeating all monsters by 5% +-------------------------- +(Period expired 30 Days after use Scroll) +-------------------------- +Weight: 0 +# +1501516# +Shadow Random Box +-------------------------- +Use 5 Shadow Equipment to randomly select 1 Shadow Equipment. +-------------------------- +Weight: 0 +# +1501518# +The Scroll of the Divine is said to contain +valuable treasures when opened, +having fallen from the heavens. +-------------------------- +Type: Item Giver +Weight: 1 +# +1501519# +The red scarf that for only person who is accepted. +-------------------------- +ATK +5 +-------------------------- +Reduce Fixed Cast Time -0.1 Sec +-------------------------- +If wearing with Fallen Angel Wing: +-------------------------- +Increases physical damage on Demon, Angel, Undead Race targets by 3%. +-------------------------- +If wearing with Fallen Angel Wing & Costume Fallen Angel Valletta: +-------------------------- +Increases physical damage on Demon, Angel, Undead Race targets by 3%. +-------------------------- +Allstats +1 +Def +10 +Mdef +10 +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +All Jobs except Novice +# +1501520# +A box containing +-------------------------- +Infinity Drink 5ea +Red Booster 5ea +[Event] Mystic Powder 5ea +[Event] Elite Siege Supply Box 5ea +-------------------------- +Weight: 0 +# +1501521# +A box containing +-------------------------- +[R] Pet Spirit Guarantee Scroll 4ea +[Event] HE Battle Manual 3ea +[Event] HE Bubble Gum 3ea +True Tyr's Blessing 2ea +-------------------------- +Weight: 0 +# +1501522# +A box containing +-------------------------- +Enriched Elunium 2ea +Enriched Oridecon 2ea +Adamantine Blessing 300ea +Holgren's Shadow Smelting Hammer 3ea +1st Aniversary ROL Shadow Box 1ea +-------------------------- +Weight: 0 +# +1501523# +1st Aniversary ROL Shadow Box +-------------------------- +A box which contains +- Promotion Shadow Earring 1 ea +- Promotion Shadow Pendant 1 ea +-------------------------- +Weight: 0 +# +1501524# +This item cannot be traded with other accounts. +Shadow Pendant from the king of Midgard +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirement: None +# +1501525# +This item cannot be traded with other accounts. +Shadow Pendant from the king of Midgard +-------------------------- +Type: Shadow Earring +-------------------------- +Requirement: None +# +1501527# +Character Bound +-------------------------- +contains +- Job Change Ticket 1ea +- [Event] Scholar's Ring Box (30Days) 1 ea +- [R] Pet Spirit Guarantee Scroll 4 ea +- [Event] Almighty Box (10) 3 ea +- [Event] Stamina Elixir 5 ea +- Adamantine 1,000 ea +-------------------------- +Weight: 0 +# +1501528# +Character Bound +-------------------------- +Contains +- Hello New Advetnure Scroll 1 ea +- The Wishdom Time Keeper Box 1 ea +- Emperor Poring Costume 1 ea +- Schmidt's Weapon Box 1 ea +- Aniversary Shadow ROL Box 1 ea +- Adamantine 1,000 ea +-------------------------- +Weight: 0 +# +1501529# +Title : Hello New Adventure Scroll +-------------------------- +All Stats +3 +-------------------------- +Type: Title Giver +Weight: 1 +# +1501530# +This item cannot be traded with other accounts. +Shadow Armor from the king of Midgard +-------------------------- +HIT +5 +ATK +5 +-------------------------- +When refine +7 additional: +HIT +5 +ATK +5 +-------------------------- +Set bonus +When equip with 1st Aniversary Set : +Allstats +3 +-------------------------- +When equipped with Promotion Shadow Earring and Promotion Shadow Pendant: +EXP +10% +Aspd +1 +-------------------------- +Type: Shadow Armor +-------------------------- +Requirement: None +# +1501531# +This item cannot be traded with other accounts. +Shadow Shield from the king of Midgard +-------------------------- +Variable cast time - 3% +Matk +5 +-------------------------- +When refine +7 additional: +Variable cast time - 3% +Matk +5 +-------------------------- +Set bonus +When equip with 1st Aniversary Set : +Allstats +3 +-------------------------- +When equipped with Promotion Shadow Earring and Promotion Shadow Pendant: +EXP +10% +Aspd +1 +-------------------------- +Type: Shadow Shield +-------------------------- +Requirement: None +# +1501532# +This item cannot be traded with other accounts. +Shadow Weapon from the king of Midgard +-------------------------- +Aspd +2% +MaxHP +1% +-------------------------- +When refine +7 additional: +Aspd +3% +MaxHP +2% +-------------------------- +Set bonus +When equip with 1st Aniversary Set : +Allstats +3 +-------------------------- +When equipped with Promotion Shadow Earring and Promotion Shadow Pendant: +EXP +10% +Aspd +1 +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirement: None +# +1501533# +This item cannot be traded with other accounts. +Shadow Shoes from the king of Midgard +-------------------------- +Flee +5 +MaxSP +1% +-------------------------- +When refine +7 additional: +Flee +5 +MaxSP +2% +-------------------------- +Set bonus +When equip with 1st Aniversary Set : +Allstats +3 +-------------------------- +When equipped with Promotion Shadow Earring and Promotion Shadow Pendant: +EXP +10% +Aspd +1 +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirement: None +# +1501534# +Character Bound. +-------------------------- +Contains +- Schmidt's Weapon +-------------------------- +Weight: 0 +# +1501535# +When used, all guild members will receive +Guild Hall Boss Reset Ticket 1 ea +From Rodex +-------------------------- +Type: Consumable +Weight: 0 +# +1501536# +Can only be used with this character +Can be used to reset Guild Hall Boss Dungeon quota. +-------------------------- +Type: Consumable +Weight: 0 +# +1501538# +The box that contains the compartment +for the Wisdom Time Keeper Set +-------------------------- +Weight: 0 +# +1501539# +The box that contains the compartment for the 1st Anniversary Shadow Set +-------------------------- +Weight: 0 +# +1501540# +A special ticket that allows you to easily +advance your job +-------------------------- +Weight: 0 +# +1501541# +Rental Items for 30 days +A box contains 1 Scholar's Ring Please take a care because is fragile! +-------------------------- +A scholar's ring bestows upon its wearer a full comprehension of any written document or spoken dialect, irrespective of whether they have previously encountered it or not. +-------------------------- +All Stats +5 +EXP + 5% Drop + 5% +Enables the use of Level 1 Teleport. +-------------------------- +Weight: 0 +# +1555000# +A Beginner, pet egg shaped scroll. +Able to Obtain Uncommon pet egg. +-------------------------- +Weight: 1 +# +1555001# +The Uncommon Guarantee pet egg scroll. +Able to get Uncommon pet egg. +-------------------------- +Weight: 1 +# +1555002# +The Rare Guarantee pet egg scroll. +Able to get Rare pet egg. +-------------------------- +Weight: 1 +# +1555003# +The Epic Guarantee pet egg scroll. +Able to get Epic pet egg. +-------------------------- +Weight: 1 +# +1555004# +The Legendary Guarantee pet egg scroll. +Able to get Legendary pet egg. +-------------------------- +Weight: 1 +# +1555100# +Concentrated spiritual energy. Looks too small, seems will fade away if left alone. +Require 25 ea. to exchange for Random Guarantee uncommon pet egg. +-------------------------- +Weight: 1 +# +1555101# +Concentrated spiritual energy. Looks too small, seems will fade away if left alone. +Require 25 ea. to exchange for Random Guarantee rare pet egg. +-------------------------- +Weight: 1 +# +1555102# +Concentrated spiritual energy. Looks too small, seems will fade away if left alone. +Require 50 ea. to exchange for Random Guarantee epic pet egg. +-------------------------- +Weight: 1 +# +1555103# +Concentrated spiritual energy. Looks too small, seems will fade away if left alone. +Require 25 ea. to exchange for Random Guarantee legendary pet egg. +-------------------------- +Weight: 0.1 +# +1555104# +A clean convex mirror that can be used to detect the presence of Legendary ores +Position of legendary ores will be showed as Red markers in your minimap. +-------------------------- +Weight: 0 +# +1555105# +A clean convex mirror that can be used to detect the presence of Rare ores +Position of rare ores will be showed as Yellow markers in your minimap. +-------------------------- +Weight: 0 +# +1555106# +A clean convex mirror that can be used to detect the presence of Rare ores and Legendary ores +Position of legendary ores will be showed as Red markers in your minimap. +Position of rare ores will be showed as Yellow markers in your minimap. +-------------------------- +Weight: 0 +# +1555107# +A box containing 20x White Potions. +Perfect for taking out whenever you need it. +\ +-------------------------- +Weight: 0 +# +1555108# +A box containing 10x Blue Potions. +Perfect for taking out andd writing whenever you need it. +-------------------------- +\ +-------------------------- +Weight: 0 +# +1555109# +A bottle of potion made from grinded White Herbs. +-------------------------- +Type: Restorative +Heal: 325 ~ 405 HP +Weight: 15 +# +1555110# +A bottle of potion made from grinded Blue Herbs. +-------------------------- +Type: Restorative +Heal: 40 ~ 60 SP +Weight: 15 +# +1555114# +A box containing items for steamer. +-------------------------- +This box including +Costume Blessings Of Soul 1ea +Enriched Elunium 15ea +Enriched Oridecon 15ea +Zeny Random Box 15ea +Adamantine Blessing 150ea +-------------------------- +Weight: 1 +# +1555115# +Contains Novice Equipment of your choice to help you get started. +-------------------------- +Type: Usable +Weight: 0 +# +1555116# +Contains 50 Novice Potions +-------------------------- +Type: Usable +Weight: 0 +# +1555117# +This box was given to you as a reward for completing the Training Ground. +Contains various items a Novice often needs in the beginning of their journey. +-------------------------- +Type: Usable +Weight: 0 +# +1555118# +The hammer of all hammer. +# +1555119# +A clean convex mirror that can be used to detect the presence of Rare ores Legendary ores and Blessing +Position of Blessing ores will be showed as Blue markers in your minimap. +Position of legendary ores will be showed as Red markers in your minimap. +Position of rare ores will be showed as Yellow markers in your minimap. +-------------------------- +Weight: 0 +# +1555120# +Use this item to obtain 1 character slot. +Has no effect on accounts with 20 character slots. +-------------------------- +Weight: 0 +# +1555121# +A box containing 3 pieces of Costumes. +When used, you can get random one 1 of 3 the following Costumes. +-------------------------- +[Obtainable Items] +[Not for Sale] C Ultraman Ace Doll Bag +[Not for Sale] C Ultraman Taro Doll Bag +[Not for Sale] C Ultraseven Doll Bag +-------------------------- +Type: Usable +Weight: 1 +# +1555122# +A box that gives you a Beginner Shadow Set +[Event] Beginner Shadow Armor 1ea +[Event] Beginner Shadow Weapon 1ea +[Event] Beginner Shadow Shield 1ea +[Event] Beginner Shadow Shoes 1ea +[Event] Beginner Shadow Earring 1ea +[Event] Beginner Shadow Pendant 1ea +-------------------------- +Weight: 0 +# +1555123# +A box that gives you a Beginner Set +[Event] ROL Beginner Hat 1ea +[Event] ROL Beginner Armor 1ea +[Event] ROL Beginner Garment 1ea +[Event] ROL Beginner Shoes 1ea +-------------------------- +Weight: 0 +# +1555124# +A box that gives you a Metal Weapon +[Event] Metal Bow [1] 1ea +[Event] Metal Dagger [1] 1ea +[Event] Metal Mace [1] 1ea +[Event] Metal Two-Handed Axe [1] 1ea +[Event] Metal Two-Handed Sword [1] 1ea +[Event] Metal Staff [1] 1ea +-------------------------- +Weight: 0 +# +1555125# +A chest that contains WOE rewards. There may be something significant within. +-------------------------- +Weight: 0 +# +1555126# +When used, you can Choose +-------------------------- +[Obtainable Items] +Flame of Rebirth 1ea +Legendary Pet Spirit Fragment 5ea +-------------------------- +Type: Usable +Weight: 1 +# +1555127# +When Opened, The Box +You can choose the item you desire. +-------------------------- +Kiel Coin 8 ea +-------------------------- +Mos Coin 8 ea +-------------------------- +Weight: 0 +# +1555128# +When Opened, The Box +You can choose the item you desire. +-------------------------- +Robot Fragment 1 ea +-------------------------- +Rusty Fragment 1 ea +-------------------------- +Weight: 0 +# +1570000# +A pair of white wings from an Archangel. +-------------------------- +Collection Effect +Weight Limit+10 +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1570001# +A beautiful headgear that looks just like +the wings of Archangel in flight. +-------------------------- +Collection Effect +Weight Limit+10 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570002# +White wings of a holy Archangel. +-------------------------- +Collection Effect +Weight Limit+10 +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1570003# +Costume made from wings of angel that fluttered in the sky. +-------------------------- +Limited Effect +Increases experience gained from defeating all monsters by 1% +Increases Job experience gained from defeating all monsters by 1% +Increases drop rate gained from defeating all monsters by 1% +Expiration date 25-12-2023 +-------------------------- +When equipped all set +C Angel Wing Ears +C Flying Angel +C Archangel Wing +C Angel Flutter +Increases experience gained from defeating all monsters by 5% +Increases drop rate gained from defeating all monsters by 5% +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570004# +Happy wings for a happy mood! +-------------------------- +Collection Effect +Weight Limit+50 +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1570005# +Spread the joy while wearing this headband. +-------------------------- +Collection Effect +Weight Limit+50 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570006# +Ears for a happy day! +-------------------------- +Collection Effect +Weight Limit+50 +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1570007# +A headgear for No.1 of all classes +There's no easy way to get it. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570008# +A headgear which looks like an angel flapping its wing. +It make you feel dizzy when you wear it, but also makes your body feel light. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570009# +A hat which showed that you were falling in love! +You will feel stronger because strength of your love will make you powerful! +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570010# +Costume wings reminiscent of a beautiful Valkyrie. +The feathers continue to flutter as if they are being blessed, but the feathers on the wings never disappear. +-------------------------- +Aspd +1 +Allstats +1 +Increases experience gained from defeating all monsters by 5% +Increases drop rate gained from defeating all monsters by 5% +Expiration date 28-08-2025 +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1570011# +A costume with intense flames. +It is said that it can be used as a bluff because it looks very strong just by putting it on the body. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570012# +A costume with intense flames. +It is said that it can be used as a bluff because it looks very strong just by putting it on the body. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570013# +A costume with intense flames. +It is said that it can be used as a bluff because it looks very strong just by putting it on the body. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570014# +Fast bubble circling around you! +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570015# +A limited costume to celebrate RO's 13th anniversary. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570016# +An earring resembling beautiful white angel wings. +Gives you the feeling of having an angelic envoy by your side +-------------------------- +Collection Ability +Str +1 +-------------------------- +Type: Apparel +Position: Middle +Weight: 0 +-------------------------- +Requirements: None +# +1570017# +A headband adorned with wings resembling those of an angel, shining with purity and beauty +Makes the wearer feel the power of the heavens, just a touch away +-------------------------- +Collection Ability +Agi +1 +-------------------------- +Type: Apparel +Position: Above +Weight: 0 +-------------------------- +Requirements: None +# +1570018# +Angel wings that flutter gently in the breeze +Gives a sense of gentleness and the celestial charm of the heavens +-------------------------- +Collection Ability +Atk +2 +Matk +2 +-------------------------- +Type: Apparel +Position: Garment +Weight: 0 +-------------------------- +Requirements: None +# +1570019# +A beautiful headgear that looks just like the wings of a Golden Angel in flight. +-------------------------- +Collection Effect +Weight Limit+30 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570020# +A pair of white wings from an Golden Angel. +-------------------------- +Collection Effect +Weight Limit+30 +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1570021# +Shiny Golden Wings. A symbol of the Elite. +-------------------------- +Collection Effect +Weight Limit+30 +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1570022# +A hat resembling goat horns, which attracts a lot of attention when worn and increases the wearer’s sense of pride +Decorated with sparkling gold, making it look luxurious and especially outstanding +-------------------------- +[Episode 3.0 - 4.0] +-------------------------- +ATK +50 +Max Hp +10% +Increases HP restore rate by +20% +The item effect increases restore rate by +20% (HP/SP) +Increases weight limit by +5000 +Gain immunity to the Frozen status +Has a 10% chance to cast Curse on the opponent when receiving physical damage +Can be used to cast Sight Skill Lv. 1 +Can be used to cast Teleport Skill Lv. 1 +Increases experience gained from monsters by +20% and item drop rate by +20% +-------------------------- +Type: Headgear +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirements: None +# +1570023# +A crown adorned with beautiful gems, said to have been worn by a wise king in ancient times +Which grants priceless wisdom to the wearer of this crown +-------------------------- +[Episode 3.0 - 4.0] +-------------------------- +MATK +50 +Increases SP restore rate. +20% +The item effect increases restore rate +20% (HP/SP) +Allows skill casting without interruption (Cannot be used in WoE) +Increases weight limit +5000 +Gain immunity to the Curse status +Can be used Hiding Skill Lv. 1 +Can be used Teleport Skill Lv. 1 +Has a 10% chance to cast Stone Curse on the opponent when receiving physical damage +Experience gained from monsters + 20%, Item drop rate + 20% +-------------------------- +Type: Headgear +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirements: None +# +1570024# +A crown adorned with beautiful gems It is said to have been worn by a wise king in ancient times +Which grants priceless wisdom to the wearer of this crown +-------------------------- +[Episode 3.0 - 4.0] +-------------------------- +DEX +15 +ATK +40 +Increases SP restore rate. +20% +The item effect increases restore rate +20% (HP/SP) +Increases weight limit +5000 +Gain immunity to the Sleep status +Can be used to cast Magnum Break Skill Lv. 1 +Can be used to cast Teleport Skill Lv. 1 +Has a 10% chance to cast Chaos on the opponent when receiving physical damage +Experience gained from monsters + 20%, Item drop rate + 20% +-------------------------- +Type: Headgear +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirements: None +# +1570025# +A crown adorned with beautiful gems It is said to have been worn by a wise king in ancient times +Which grants priceless wisdom to the wearer of this crown +-------------------------- +[Episode 3.0 - 4.0] +-------------------------- +LUK +15 +Critical rate +40 +Increases HP restore rate by +20% +The item effect increases restore rate +20% (HP/SP) +Increases weight limit +5000 +Gain immunity to the Stone Curse status +Increases movement speed [Moonlight Flower Card] +Can be used to cast Teleport Skill Lv. 1 +Has a 10% chance to cast Sleep on the opponent when receiving physical damage +Experience gained from monsters + 20%, Item drop rate + 20% +-------------------------- +Type: Headgear +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirements: None +# +1570026# +A large hat worn by the pirate captain to honor their title. This hat is crafted on a grand scale and resembles a pirate ship. +Although this hat is very old, it still retains its elegance, adorned with shimmering gold decorations. +It adds a touch of luxury and intimidation, reflecting the grandeur and power of the captain who owns it. +-------------------------- +[Episode 3.0 - 4.0] +-------------------------- +VIT +15 +INT +15 +HP +3000 +Increases SP restore rate. +20% +The item effect increases restore rate +20% (HP/SP) +Increases weight limit +5000 +Gain immunity to the Silence status. +Can be used Endure Skill lv.5 +Can be used Teleport Skill Lv.1 +10% chance to cast Silence on the opponent when receiving physical damage. +Experience gained from monsters + 20%, Item drop rate + 20% +-------------------------- +Type: Headgear +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirements: None +# +1570027# +A golden cloak that drapes from the collar down to the shoulders, adorned with luxurious feathers. It serves as a protective armor for the shoulders. +Imbued with strength from its adornments and the graceful flow of the fabric. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570028# +Character Bound. +A hat commemorating anniversary of Ragnarok Landverse. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570029# +An appearance ceremony with laurels and metal decorations. +-------------------------- +All status +5 +Fixcasttime -0.1 +Exp&Drop +10% +-------------------------- +Expiration date 25-12-2024 +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1570030# +Deng! Deng! Deng! Deng! Deng! ~ +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570031# +Costume Championship 2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570032# +Costume Championship 2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570033# +Costume Championship 2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570034# +Costume Championship 2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570035# +Costume Championship 2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570036# +Costume Championship 2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570037# +Costume Championship 2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570038# +Costume Championship 2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570039# +Costume Championship 2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570040# +Costume Championship 2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570041# +Costume Championship 2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570042# +Costume Championship 2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570043# +Costume Championship 2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570044# +Costume Championship 2024 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570045# +The hat worn by the civil man in the ancient, it is representing the wisdom. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570046# +Beautiful patterns Hat that symbolize fine tea. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570047# +Aura of fruit and tea leaf +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570048# +The Devillings are having a party. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570049# +A big ribbon with a king of pumpkin on top of it. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570050# +A radiant golden sword symbolizing victory in the recent battle +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1570051# +The crown of the eternal king. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570052# +Luna, a companion of Nova, has come to congratulate all the participants of the ROL Championship 2024! +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1570053# +A radiant golden sword symbolizing victory in the recent battle +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1570054# +The crown of the eternal king. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570055# +Luna, a companion of Nova, has come to congratulate all the participants of the ROL Championship 2024! +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1570056# +The crown of the eternal king. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570057# +The crown of the eternal king. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570058# +A radiant golden sword symbolizing victory in the recent battle +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1570059# +A radiant golden sword symbolizing victory in the recent battle +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1570060# +A headgear known to be imbued with the essence of a pure-blooded witch. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570061# +Rare witch's ears paired with a dangerously blood-red magical ornament. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1570062# +Crimson witch's wings crafted from blood. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570063# +Welcome to RO Landverse +Costume very cool hat +Only obtainable in RO Landverse. +-------------------------- +Increases experience by 10% +-------------------------- +Expires on February 12, 2025. +-------------------------- +Type: Apparel +Position: Upper +Weight: 0 +-------------------------- +Requirements: None +# +1570064# +Weclcome to RO Landverse +Mouth costume that was once popular +-------------------------- +Increases item drop rate by 3% +-------------------------- +Expires on February 12, 2025. +-------------------------- +Type: Apparel +Position: Lower +Weight: 0 +-------------------------- +Requirements: None +# +1570065# +A super cute fashion set inspired by the Golden Tiger of Eva, a symbol of both elegance and playfulness. The soft golden tiger pattern appears warm and friendly. +Featuring little tiger ears and a flowing tail that will make everyone fall in love, perfect for those who want to complete their look with both cuteness and a unique personal style. +-------------------------- +All Status +3 +Increases experience by +5% +Increases item drop rate by 5% +Increases damage against all monster types by 5%. +-------------------------- +The attributes will be removed after March 31, 2025. +-------------------------- +Type: Apparel +Position: Middle +Weight: 0 +-------------------------- +Requirements: None +# +1570066# +Lunar New Year Celebrate the Chinese New Year. +-------------------------- +When worn, you will receive 10% experience bonus for defeating monsters. +-------------------------- +The qualification will expire on February 26, 2025 +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1570067# +A tiny angel spreading love to everyone. +But it seems there's a secret story this little angel can't share... +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box 2. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570068# +A powerful helmet that has been passed through the generations. +-------------------------- +All Status +1 +Hit +5 +Flee +5 +Crit +5 +-------------------------- +Increases physical/magical damage on Boss targets by 5% +-------------------------- +Increases physical/magical damage on Fire element monster 3%. +-------------------------- +Increases physical/magical damage on Earth element monster 3%. +-------------------------- +Increases physical/magical damage on Shadow element monster 3%. +-------------------------- +Increases physical/magical damage on Undead element monster 3%. +-------------------------- +Increases physical/magical damage on Insect monster 3%. +-------------------------- +Increases physical/magical damage on Demon monster 3%. +-------------------------- +Increases physical/magical damage on Brute monster 3%. +-------------------------- +Increases physical/magical damage on Undead monster 3%. +-------------------------- +Class: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570073# +Spread the joy while wearing this headband. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570074# +Ears for a happy day! +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1570075# +Happy wings for a happy mood! +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1570076# +A beautiful headgear that looks just like the wings of a Golden Angel in flight. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570077# +A pair of white wings from an Golden Angel. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1570078# +Shiny Golden Wings. A symbol of the Elite. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1570079# +A golden cloak that drapes from the collar down to the shoulders, adorned with luxurious feathers. It serves as a protective armor for the shoulders. +Imbued with strength from its adornments and the graceful flow of the fabric. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570082# +Northern European legends say that runes have the ability to stabilize magic. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570084# +A hat brings happy feeling as much to hold a parade unconsciously. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570086# +A powerful helmet that has been passed through the generations. +-------------------------- +All Status +1 +Hit +5 +Flee +5 +Crit +5 +-------------------------- +Increases physical/magical damage on Boss targets by 5% +-------------------------- +Increases physical/magical damage on Fire element monster 3%. +-------------------------- +Increases physical/magical damage on Earth element monster 3%. +-------------------------- +Increases physical/magical damage on Shadow element monster 3%. +-------------------------- +Increases physical/magical damage on Undead element monster 3%. +-------------------------- +Increases physical/magical damage on Insect monster 3%. +-------------------------- +Increases physical/magical damage on Demon monster 3%. +-------------------------- +Increases physical/magical damage on Brute monster 3%. +-------------------------- +Increases physical/magical damage on Undead monster 3%. +-------------------------- +Class: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570089# +The sacred ring forged in the sun’s heart, imbued with the magic of the cosmos. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1570099# +A cloak radiating the searing heat of a supernova +shimmering like fragments of a galaxy flung forth at the birth of the universe. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1570100# +A donut mockup made cute by gluing cat ears to a round donut. +The cat's face and tail are also detailed. +-------------------------- +[Designer Heidam]mal_in01,20,124,0,100,0,0 can exchange it with Landverse Enchant Stone Box. +-------------------------- +Type: Costume +Position: Garment +Weight: 0 +-------------------------- +Requirement: None +# +1570105# +A cutting-edge robot from the future with a bright and adorable smile. +-------------------------- +ATK +5 +MATK+5 +Adds a 1% chance of restoring 1% of damage as SP when performing a physical attack. +Allstatus +1 +EXP +7%, DROP +7% +-------------------------- +Every effect will be remove on 16 October 2025. +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1570106# +A cutting-edge robot from the future that perfectly reflects its identity. +-------------------------- +ATK +5 +MATK +5 +Adds a 1% chance of restoring 1% of damage as HP when performing a physical attack. +EXP +7% +-------------------------- +Every effect will be remove on 16 October 2025. +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570110# +A costume that embodies the colors of the evening sky in autumn. +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570114# +A hairpin once worn by Kafra NOVA. When you wear it, you’ll find yourself looking 100% cuter. +-------------------------- +VCT -5% +CRIT +5 +FLEE +5 +-------------------------- +Set Bonus: +Costume NOVA Hairpin +Costume NOVA Hologram +Costume Kafra NOVA Chibi +FCT -0.1 +-------------------------- +Expiration Date: 03-12-2025 +-------------------------- +Type: Costume +Position: Upper +Weight: 0 +-------------------------- +Requirement: None +# +1570115# +Mini Kafra NOVA She will follow you everywhere, even into battle. Whenever you need assistance, just call upon her. +-------------------------- +ATK +10 +MATK +10 +ASPD +1 +-------------------------- +Set Bonus: +Costume NOVA Hairpin +Costume NOVA Hologram +Costume Kafra NOVA Chibi +FCT -0.1 +-------------------------- +Expiration Date: 03-12-2025 +-------------------------- +Type: Costume +Position: Lower +Weight: 0 +-------------------------- +Requirement: None +# +1570116# +This hologram will make your life easier, for it calculates everything with perfect accuracy. +-------------------------- +Movement Speed +5% +HP Recovery +10% +SP Recovery +10% +-------------------------- +Set Bonus: +Costume NOVA Hairpin +Costume NOVA Hologram +Costume Kafra NOVA Chibi +FCT -0.1 +-------------------------- +Expiration Date: 03-12-2025 +-------------------------- +Type: Costume +Position: Middle +Weight: 0 +-------------------------- +Requirement: None +# +1600000# +A simple Mining Pickaxe. +Use for Mining System at +Yggdrasil +-------------------------- +Type: Dagger +Attack: 1 +Weight: 1 +Weapon Level: 1 +-------------------------- +Requirement: +All classes +# +1600001# +TmV2ZXIgZ29ubmEgZ2l2ZSB5b3UgdXA= +TmV2ZXIgZ29ubmEgbGV0IHlvdSBkb3du +# +1600003# +The sturdy Phracon axe is perfect for chopping Tree of Life. +-------------------------- +Type: Logging Tools +Weight: 0 +-------------------------- +Requirement: +All classes +# +1600004# +The Emveretarcon axe, while not exceedingly strong at first glance +is still durable enough for cutting down the +-------------------------- +Tree Of Life +Enchanted Tree +-------------------------- +Type: Logging Tools +Weight: 0 +-------------------------- +Requirement: +All classes +# +1600005# +The pure Gold-forged axe, known for its exceptional strength and durability, +is perfect for cutting through the branches of the +-------------------------- +Tree Of Life +Enchanted Tree +Ancient Tree +-------------------------- +Type: Logging Tools +Weight: 0 +-------------------------- +Requirement: +All classes +# +1600006# +The Oridecon-forged axe, renowned for its exceptional strength +and durability, is perfect for cutting down the +-------------------------- +Tree Of Life +Enchanted Tree +Ancient Tree +Tree of Umbala +-------------------------- +Type: Logging Tools +Weight: 0 +-------------------------- +Requirement: +All classes +# +1600007# +The rare Adamantine-forged axe, renowned for its unparalleled strength and durability, +can withstand any challenge thrown its way.Ideal for felling the +-------------------------- +Tree Of Life +Enchanted Tree +Ancient Tree +Tree of Umbala +Elder Tree +-------------------------- +Type: Logging Tools +Weight: 0 +-------------------------- +Requirement: +All classes +# +1600008# +The Phracon pickaxe, appearing modest in strength, is suitable for mining +-------------------------- +Phracon Vein +-------------------------- +Type: Minning Tools +Weight: 0 +-------------------------- +Requirement: +All classes +# +1600009# +The Emveretarcon pickaxe, though modest in appearance, is strong enough for mining both +-------------------------- +Phracon Vein +Emveretarcon Vein +-------------------------- +Type: Minning Tools +Weight: 0 +-------------------------- +Requirement: +All classes +# +1600010# +The pure Gold pickaxe, known for its strength and durability, is perfect for mining +-------------------------- +Phracon Vein +Emveretarcon Vein +Gold Vein +-------------------------- +Type: Minning Tools +Weight: 0 +-------------------------- +Requirement: +All classes +# +1600011# +The Oridecon pickaxe, renowned for its exceptional strength and durability, is ideal for mining. +-------------------------- +Phracon Vein +Emveretarcon Vein +Gold Vein +Oridecon Ore +-------------------------- +Type: Minning Tools +Weight: 0 +-------------------------- +Requirement: +All classes +# +1600012# +The Adamantine pickaxe, crafted from the toughest Adamantine ore, +is virtually indestructible and perfect for mining +-------------------------- +Phracon Vein +Emveretarcon Vein +Gold Vein +Oridecon Ore +Adamantine Ore +-------------------------- +Type: Minning Tools +Weight: 0 +-------------------------- +Requirement: +All classes +# +1600013# +A box that contains. +-------------------------- +Phracon Axe 30ea +-------------------------- +Weight: 0 +# +1600014# +A box that contains. +-------------------------- +Emveretarcon Axe 30ea +-------------------------- +Weight: 0 +# +1600015# +A box that contains. +-------------------------- +Gold Axe 30ea +-------------------------- +Weight: 0 +# +1600016# +A box that contains. +-------------------------- +Oridecon Axe 30ea +-------------------------- +Weight: 0 +# +1600017# +A box that contains. +-------------------------- +Adamantine Axe 30ea +-------------------------- +Weight: 0 +# +1600018# +A box that contains. +-------------------------- +Phracon Pickaxe 30ea +-------------------------- +Weight: 0 +# +1600019# +A box that contains. +-------------------------- +Emveretarcon Pickaxe 30ea +-------------------------- +Weight: 0 +# +1600020# +A box that contains. +-------------------------- +Gold Pickaxe 30ea +-------------------------- +Weight: 0 +# +1600021# +A box that contains. +-------------------------- +Oridecon Pickaxe 30ea +-------------------------- +Weight: 0 +# +1600022# +A box that contains. +-------------------------- +Adamantine Pickaxe 30ea +-------------------------- +Weight: 0 +# +1600023# +A rare Golden Mining Pickaxe. +It is used for mining by professional miners. +-------------------------- +Mining Speed +30% +If refine+5 or above, Mining Speed +5% +If refine+7 or above, Mining Speed +5% +If refine+9 or above, Mining Speed +10% +-------------------------- +Type: Dagger +Attack: 1 +Weight: 1 +Weapon Level: 4 +-------------------------- +Requirement: +All classes +# +1600024# +Rental item +A simple Mining Pickaxe. +Use for Mining System at +Yggdrasil +-------------------------- +Mining Speed +20% +-------------------------- +Type: Dagger +Attack: 1 +Weight: 1 +Weapon Level: 1 +-------------------------- +Requirement: +All classes +# +1700057# +Revenge Tickets are used to seek revenge in the event of a system-declared war +-------------------------- +Weight: 0 +# +1702000# +Extremely hard exotic mineral. +-------------------------- +Weight: 0 +# +1702001# +A box containing 1000 Adamantine Fragments. +-------------------------- +Adamantine Fragment - Extremely hard exotic mineral. +-------------------------- +Cannot be used if the amount of Adamantine Fragment in your inventory would exceed 30,000 +-------------------------- +Weight: 0 +# +1702002# +Can convert to Adamantine Token. +-------------------------- +Weight: 0 +# +1702003# +Dust collected from dying monster before it can scatter into the air. +Can be given to Lyraizlude,128,212,0,100,0,0 in Izlude for rewards. +-------------------------- +Weight: 0 +# +1702004# +Ancient scroll with major tear on it. +It emits eerie aura when multiple scrolls are stacked on each other. +Can be traded with Universal Exchange Alexa for Limit Break books. +-------------------------- +Weight: 0 +# +1702005# +A tome crafted from damaged limit break scrolls. +Enhances the player's spiritual energy and increases their skill power. +-------------------------- +Weight: 0 +# +1702006# +Powder that gives a blessing by putting adamantine dust in a bottle. +-------------------------- +Weight: 0 +# +1702007# +A box that contains Adamantine Blessing 100 ea +Adamantine Blessing cannot be traded +-------------------------- +Type: Item Giver +Weight: 0 +# +1702008# +In the crispy cookie with a scent of butter +a strong, sweet chocolate is found inside.Caution: It might fly away +(This item will be deleted when the event ends.) +-------------------------- +Weight: 3 +# +1702009# +Spirit Candy is a rare and mystical treat that drops from malevolent Evil Spirits +lurking in the haunting world of Halloween. +(This item will be deleted when the event ends.) +-------------------------- +Weight: 1 +# +1702010# +Rotten Pumpkin is a rare and mystical treat that drops from malevolent Evil Spirits +lurking in the haunting world of Halloween Quests +(This item will be deleted when the event ends.) +-------------------------- +Weight: 3 +# +1702011# +A box that contains Adamantine Blessing 100 ea +Adamantine Blessing cannot be traded +-------------------------- +Type: Item Giver +Weight: 0 +# +1702012# +This Token for compensate shop +-------------------------- +Type: Misc +Weight: 1 +# +1702013# +Ticket for adjusting difficulty in Tower of Tides. +-------------------------- +Type: Misc +Weight: 0 +# +1702014# +Can be given to Lyra to skip a daily quest. +-------------------------- +Type: Misc +Weight: 0 +# +1702015# +Heart of a strong monster with Adamantine power flowing inside. +-------------------------- +Type: Misc +Weight: 0 +# +1702016# +Heart of a monster that contains cold aura. +-------------------------- +Type: Misc +Weight: 0 +# +1702017# +Chisel used by Santa to carve a snowman. +-------------------------- +Type: Misc +Weight: 0 +# +1702018# +Otherworldly flower that shines brilliantly. +Legend says that someone brought this back from far north. +-------------------------- +Type: Misc +Weight: 0 +# +1702019# +A large piece of cloth, usually polka dotted, that is wrapped around goods. +-------------------------- +Weight: 0 +# +1702020# +A stolen red decorated box containing some gifts. The owner probably misses it. +-------------------------- +Weight: 0 +# +1702021# +A stolen blue decorated box containing some gifts. The owner probably misses it. +-------------------------- +Weight: 0 +# +1702022# +A well rounded snow ball, can be quite painful if you get hit by it. +Can be given to Santa of Snowlandgeffen,112,150,0,100,0,0 in Geffen to build a snowman. +-------------------------- +Weight: 0 +# +1702023# +A frozen carrot. +Can be given to Santa of Snowlandgeffen,112,150,0,100,0,0 in Geffen to decorate the snowman. +-------------------------- +Weight: 0 +# +1702024# +A not-so-ordinary scarf. Just looking at it makes you feel warm. +Can be given to Santa of Snowlandgeffen,112,150,0,100,0,0 in Geffen to decorate the snowman. +-------------------------- +Weight: 0 +# +1702025# +A twig that fell off from a tree in winter. +Can be given to Santa of Snowlandgeffen,112,150,0,100,0,0 in Geffen to decorate the snowman. +-------------------------- +Weight: 0 +# +1702026# +A top hat with ribbon. +Can be given to Santa of Snowlandgeffen,112,150,0,100,0,0 in Geffen to decorate the snowman. +-------------------------- +Weight: 0 +# +1702027# +Chemical used for polishing gold. +-------------------------- +Weight: 0 +# +1702028# +This Token for Path shop +-------------------------- +Type: Misc +Weight: 0 +# +1702029# +Use this item to combine 3 BP Love Fragment into a BP Enchanted Heart. +-------------------------- +Weight: 0 +# +1702030# +Bottled apple juice that's easy to digest. +-------------------------- +Weight: 0 +# +1702031# +A sweet desert filled with Ice Cream, Cream, Syrup and Fruits. +The sweetness of this desert is the taste of evil. +-------------------------- +Weight: 0 +# +1702032# +A thorned tree fruit with fresh scent. +-------------------------- +Weight: 0 +# +1702033# +Bottled banana juice that's easy to digest. +-------------------------- +Weight: 0 +# +1702034# +Bottled carrot juice that's easy to digest. +-------------------------- +Weight: 0 +# +1702035# +White flowers with a fragrant scent. +-------------------------- +Weight: 0 +# +1702036# +A flower that suppresses the hunger of a Succubus. +-------------------------- +Weight: 0 +# +1702037# +A little flower leaf. The whole world seems pretty and happy. +-------------------------- +Weight: 0 +# +1702038# +An ordinary, thornless wildflower that doesn't have any particular scent. +-------------------------- +Weight: 0 +# +1702039# +A symbol of eternal love, this enchanted rose will never wither. However, it is rare and expensive. +-------------------------- +Weight: 0 +# +1702040# +A pink jewel that is the birthstone for people born in June. +-------------------------- +Weight: 0 +# +1702041# +A purple jewel that is the birthstone for people born in February. +-------------------------- +Weight: 0 +# +1702042# +A gem with blue color. +-------------------------- +Weight: 0 +# +1702043# +A brilliant, green jewel that is the birthstone for people born in May. +-------------------------- +Weight: 0 +# +1702044# +A dark red jewel that is the birthstone for people born in January. +-------------------------- +Weight: 0 +# +1702045# +A present given by Mr.Taeum. A tool used to dry and increase the sugar capacity of fruits. +-------------------------- +Weight: 0 +# +1702046# +A lunch box filled with lunch foods that boost power. +-------------------------- +Weight: 0 +# +1702047# +It seems has been treasured for a long time. This leather case contain some needles, thread and buttons. +-------------------------- +Weight: 0 +# +1702048# +The joyful color of yellow makes you feel strangely happy. +-------------------------- +Weight: 0 +# +1702049# +A box full of Bradium mined in Manuk. It is made to look plain so that one can't tell what's inside by looking at it. +-------------------------- +Weight: 0 +# +1702050# +Manifestation of love. +Can be exchanged for items at Valentine Shop before the event ends. +-------------------------- +Weight: 0 +# +1702051# +Collect this rare and valuable energy from another dimension. +Use it to power your devices or trade it for special items. +-------------------------- +Weight: 0 +# +1702052# +Use this ticket to gain access to a special dungeon. +Battle powerful enemies and earn exclusive rewards. +-------------------------- +Weight: 0 +# +1702053# +This gooey slime is a replica of Gomora's powerful skin. +-------------------------- +Weight: 0 +# +1702054# +This sticky slime is a replica of Balton's powerful skin. +-------------------------- +Weight: 0 +# +1702055# +A mystical, ornate artifact designed for unlocking instance dungeons. +-------------------------- +Weight: 0 +# +1702056# +This Token for OX shop +-------------------------- +Type: Misc +Weight: 0 +# +1702057# +Shards of metal salvaged. +-------------------------- +Weight: 0 +# +1702058# +Rusted fragments left behind by ancient automatons. +-------------------------- +Weight: 0 +# +1702059# +The essence of a defeated mechanical creature. +-------------------------- +Weight: 0 +# +1702060# +The corroded soul of an ancient automaton. +-------------------------- +Weight: 0 +# +1702061# +A powerful soulforged from the fusion of a Robot Soul and a Rusty Soul. +-------------------------- +Weight: 0 +# +1702062# +Special currency used in the KD Dungeon. It can be obtained by completing the Weekly Quest associated with the dungeon. +-------------------------- +Type: Misc +Weight: 0 +# +1702063# +Special currency used in the Moscovia Dungeon. It can be obtained by completing the Weekly Quest associated with the dungeon. +-------------------------- +Type: Misc +Weight: 0 +# +1702064# +A large special currency used in the KD Dungeon. It can be obtained by fusing 1 Robot Fragment with 200 Kiel Coin. +-------------------------- +Type: Misc +Weight: 0 +# +1702065# +A large special currency used in the Moscovia Dungeon. It can be obtained by fusing 1 Rusty Fragment with 200 Mos Coin. +-------------------------- +Type: Misc +Weight: 0 +# +1702066# +Symbol that shows that the winner deserves it. +-------------------------- +Type: Etc +Class: General Etc +Weight: 0 +# +1702067# +Symbols for heroes of emperium. +-------------------------- +Type: Etc +Class: General Etc +Weight: 0 +# +1702068# +The ancient flame offers adventurers the power to re-roll legendary pet into a new one +-------------------------- +Type: Etc +Class: Exclusive +Weight: 0 +# +1702069# +A highly valuable coin that can be used to purchase exceptionally special items in the NOVA Coin Shop. +-------------------------- +Type: Etc +Weight: 0 +# +1702070# +A superior coin that can be used to purchase exceptionally special items in the NOVA Premium Coin Shop. +-------------------------- +Type: Etc +Weight: 0 +# +1702071# +The Life Wood Log, commonly found in field. +-------------------------- +Weight: 0 +# +1702072# +The Life Wood Plank obtained from processing Life Wood Log that found in forests. +-------------------------- +Weight: 0 +# +1702073# +The Enchanted Wood Log commonly found in mysterious deep forests +-------------------------- +Weight: 0 +# +1702074# +The Enchanted Wood plank obtained from processing wood found in mysterious deep forests. +-------------------------- +Weight: 0 +# +1702075# +The Ancient Wood Log from a forest far away. +-------------------------- +Weight: 0 +# +1702076# +The processed wood made from ancient trees in the vast forest. +-------------------------- +Weight: 0 +# +1702077# +The rare Umbala Wood Log from the town of Umbala. +-------------------------- +Weight: 0 +# +1702078# +The Umbala Wood Plank obtained from processing Umbala Wood Log. +-------------------------- +Weight: 0 +# +1702079# +The Elder Wood Log found in Tropical Rain Forest +-------------------------- +Weight: 0 +# +1702080# +The wood processed from combining Elder Wood Logs found in the Tropical Rain +Forest transforms into Elder Wood Plank +-------------------------- +Weight: 0 +# +1702081# +The Phracon Ore fragment obtained from mining. +-------------------------- +Weight: 0 +# +1702082# +The Phracon Ingot obtained from melting together Phracon Ore fragments. +-------------------------- +Weight: 0 +# +1702083# +The Emveretarcon Ore fragment obtained from mining. +-------------------------- +Weight: 0 +# +1702084# +The Emveretarcon Ingot obtained from melting together Emveretarcon Ore fragments. +-------------------------- +Weight: 0 +# +1702085# +The valuable Gold Ore fragment obtained from mining. +-------------------------- +Weight: 0 +# +1702086# +The Gold Ingot obtained from melting together Gold Ore fragments. +-------------------------- +Weight: 0 +# +1702087# +The Oridecon Ore fragment obtained from mining. +-------------------------- +Weight: 0 +# +1702088# +The Oridecon Ingot obtained from melting together fragments of Oridecon Ore. +-------------------------- +Weight: 0 +# +1702089# +The Adamantine Ore fragment obtained from mining. +-------------------------- +Weight: 0 +# +1702090# +The Adamantine Ingot obtained from melting together fragments of Adamantine Ore. +-------------------------- +Weight: 0 +# +1702091# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702092# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702093# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702094# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702095# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702096# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702097# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702098# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702099# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702100# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702101# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702102# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702103# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702104# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702105# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702106# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702107# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702108# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702109# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702110# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702111# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702112# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702113# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702114# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702115# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702116# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702117# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702118# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702119# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702120# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702121# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702122# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702123# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702124# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702125# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702126# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702127# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702128# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702129# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702130# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702131# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702132# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702133# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702134# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702135# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702136# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702137# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702138# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702139# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702140# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702141# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702142# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702143# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702144# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702145# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702146# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702147# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702148# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702149# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702150# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702151# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702152# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702153# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702154# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702155# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702156# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702157# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702158# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702159# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702160# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702161# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702162# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702163# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702164# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702165# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702166# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702167# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702168# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702169# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702170# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702171# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702172# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702173# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702174# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702175# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702176# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702177# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702178# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702179# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702180# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702181# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702182# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702183# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702184# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702185# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702186# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702187# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702188# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702189# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702190# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702191# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702192# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702193# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702194# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702195# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702196# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702197# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702198# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702199# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702200# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702201# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702202# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702203# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702204# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702205# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702206# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702207# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702208# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702209# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702210# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702211# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702212# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702213# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702214# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702215# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702216# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702217# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702218# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702219# +a dark and mysterious piece gathered from the essence-rich ore of powerful creatures +It is infused with potent energies marked by intricate voids on its surface, whispering secrets of vast arcane power. +origins are shrouded in enigma, embodying an ancient force that defies comprehension. +-------------------------- +Weight: 0 +# +1702220# +a dread-inducing shard extracted from the essence of chilling creatures It is a stone imbued with energies that enhance damage and alter the user's state. +Its description teems with ominous life forms and their ability to transform those who wield them.. +-------------------------- +Weight: 0 +# +1702221# +A fragment of a soul steeped in mystery, it may hold dormant energies. +-------------------------- +Weight: 0 +# +1702222# +an amalgamation of spite and ferocity, devoid of smiles, awakening death cautiously with its breath of devastation. +-------------------------- +Weight: 0 +# +1702223# +An item with the power to enhance equipment, forged from the forces of intensity, brutality, mystery, and fear, requiring formidable challenges to obtain. +-------------------------- +Weight: 0 +# +1702224# +a special currency obtained through adventures in the city of Dewata, +the ultimate destination for adventurers seeking legendary challenges and exploits. Adventurers can exchange Dewata Coins for +cutting-edge equipment and energy to enhance their adventuring capabilities +-------------------------- +Weight: 0 +# +1702225# +a special coin originating from the city of Brasilis, known for its enchanting wildlife and charming airships +It serves as a token collected and redeemed by residents who seek to embrace a natural way of life. +-------------------------- +Weight: 0 +# +1702226# +the dark reflection of the fearful world, forged from hidden powers lurking in the darkest nights. +Use this coin to exchange for ominous items and valuable rewards in the realm ruled by the Mark of Darkness. +-------------------------- +Weight: 0 +# +1702227# +symbolizes intensity and brutality, forged from the power of aggression that must traverse challenging paths to obtain. +Use this coin to exchange for items that evoke awe and valuable rewards in the legendary world. +-------------------------- +Weight: 0 +# +1702228# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702229# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702230# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702231# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702232# +A potion of potent magic, the Dragon Suppression Elixir is crafted from rare ingredients and ancient spells. +It is designed to subdue the power and control the dark dragon, Aurathor. This elixir can weaken the dragon, +rendering it unable to unleash its destructive powers. Use it with caution, as the dragon's strength may return over time. +-------------------------- +Weight: 0 +# +1702233# +A mysterious fragment obtained from the decomposition. +of monster cards. It can reveal its true power +when collected in large quantities +-------------------------- +Weight: 0 +# +1702234# +A mysterious card album that hides monster cards within. +-------------------------- +Weight: 0 +# +1702235# +A mysterious card album that hides monster cards within. +-------------------------- +Weight: 0 +# +1702236# +A mysterious card album that hides monster cards within. +-------------------------- +Weight: 0 +# +1702237# +A mysterious card album that hides monster cards within. +-------------------------- +Weight: 0 +# +1702238# +A mysterious card album that hides monster cards within. +-------------------------- +Weight: 0 +# +1702239# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702240# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702241# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702242# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702243# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702244# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702245# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702246# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702247# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702248# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702249# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702250# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702251# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702252# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1702253# +A relic that was lost from Rune Midgard. +It seems to possess some magical power, allowing adventurers to rediscover it once again. +-------------------------- +Type: Collectible +Weight: 0 +# +1703000# +Lower gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703001# +High gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703011# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703012# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703013# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703014# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703015# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703021# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703022# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703023# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703024# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703025# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703031# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703032# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703033# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703034# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703035# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703041# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703042# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703043# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703044# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703045# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703051# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703052# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703053# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703054# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703055# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703061# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703062# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703063# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703064# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703065# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703071# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703072# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703073# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703074# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703075# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703081# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703082# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703083# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703084# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703085# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703091# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703092# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703093# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703094# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703095# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703101# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703102# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703103# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703104# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703105# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703111# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703112# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703113# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703114# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703115# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703121# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703122# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703123# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703124# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703125# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703131# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703132# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703133# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703134# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703135# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703141# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703142# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703143# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703144# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703145# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703151# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703152# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703153# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703154# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703155# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703161# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703162# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703163# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703164# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703165# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703171# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703172# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703173# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703174# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703175# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703181# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703182# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703183# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703184# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703185# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703191# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703192# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703193# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703194# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703195# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703201# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703202# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703203# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703204# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703205# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703211# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703212# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703213# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703214# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703215# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703221# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703222# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703223# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703224# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703225# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703231# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703232# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703233# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703234# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703235# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703241# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703242# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703243# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703244# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703245# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703251# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703252# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703253# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703254# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703255# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703261# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703262# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703263# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703264# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703265# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703271# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703272# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703273# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703274# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703275# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703281# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703282# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703283# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703284# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703285# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703291# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703292# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703293# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703294# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703295# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703301# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703302# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703303# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703304# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703305# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703311# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703312# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703313# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703314# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703315# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703321# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703322# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703323# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703324# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703325# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703331# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703332# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703333# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703334# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703335# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703341# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703342# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703343# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703344# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703345# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703351# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703352# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703353# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703354# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703355# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703361# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703362# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703363# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703364# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703365# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703371# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703372# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703373# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703374# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703375# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703381# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703382# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703383# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703384# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703385# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703391# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703392# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703393# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703394# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703395# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703401# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703402# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703403# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703404# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703405# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703411# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703412# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703413# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703414# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703415# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703421# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703422# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703423# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703424# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703425# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703431# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703432# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703433# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703434# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703435# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703441# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703442# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703443# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703444# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703445# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703451# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703452# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703453# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703454# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703455# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703461# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703462# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703463# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703464# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703465# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703471# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703472# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703473# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703474# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703475# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703481# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703482# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703483# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703484# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703485# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703491# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703492# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703493# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703494# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703495# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703501# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703502# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703503# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703504# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703505# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703511# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703512# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703513# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703514# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703515# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703521# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703522# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703523# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703524# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703525# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703531# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703532# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703533# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703534# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703535# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703541# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703542# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703543# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703544# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703545# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703551# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703552# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703553# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703554# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703555# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703561# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703562# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703563# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703564# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703565# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703571# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703572# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703573# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703574# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703575# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703581# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703582# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703583# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703584# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703585# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703591# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703592# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703593# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703594# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703595# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703601# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703602# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703603# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703604# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703605# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703611# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703612# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703613# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703614# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703615# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703621# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703622# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703623# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703624# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703625# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703631# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703632# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703633# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703634# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703635# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703641# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703642# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703643# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703644# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703645# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703651# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703652# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703653# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703654# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703655# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703661# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703662# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703663# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703664# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703665# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703671# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703672# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703673# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703674# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703675# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703681# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703682# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703683# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703684# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703685# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703691# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703692# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703693# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703694# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703695# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703701# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703702# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703703# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703704# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703705# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703711# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703712# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703713# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703714# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703715# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703721# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703722# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703723# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703724# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703725# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703731# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703732# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703733# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703734# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703735# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703741# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703742# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703743# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703744# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703745# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703751# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703752# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703753# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703754# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703755# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703761# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703762# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703763# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703764# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703765# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703771# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703772# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703773# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703774# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703775# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703781# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703782# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703783# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703784# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703785# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703791# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703792# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703793# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703794# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703795# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703801# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703802# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703803# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703804# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703805# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703811# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703812# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703813# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703814# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703815# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703821# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703822# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703823# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703824# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703825# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703831# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703832# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703833# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703834# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703835# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703841# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703842# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703843# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703844# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703845# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703851# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703852# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703853# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703854# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703855# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703861# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703862# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703863# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703864# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703865# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703871# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703872# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703873# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703874# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703875# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703881# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703882# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703883# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703884# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703885# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703891# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703892# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703893# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703894# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703895# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703901# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703902# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703903# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703904# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703905# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703911# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703912# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703913# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703914# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703915# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703921# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703922# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703923# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703924# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703925# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703931# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703932# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703933# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703934# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703935# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703941# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703942# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703943# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703944# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703945# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703951# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703952# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703953# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703954# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703955# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703961# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703962# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703963# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703964# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703965# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703971# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703972# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703973# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703974# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703975# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703981# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703982# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703983# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703984# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703985# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703991# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703992# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703993# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703994# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1703995# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704001# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704002# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704003# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704004# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704005# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704011# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704012# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704013# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704014# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704015# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704021# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704022# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704023# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704024# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704025# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704031# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704032# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704033# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704034# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704035# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704041# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704042# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704043# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704044# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704045# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704051# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704052# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704053# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704054# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704055# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704061# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704062# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704063# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704064# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704065# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704071# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704072# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704073# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704074# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704075# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704081# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704082# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704083# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704084# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704085# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704091# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704092# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704093# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704094# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704095# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704101# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704102# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704103# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704104# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704105# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704111# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704112# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704113# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704114# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704115# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704131# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704132# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704133# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704134# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704135# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704141# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704142# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704143# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704144# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704145# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704151# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704152# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704153# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704154# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704155# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704161# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704162# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704163# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704164# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704165# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704171# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704172# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704173# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704174# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704175# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704181# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704182# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704183# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704184# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704185# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704191# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704192# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704193# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704194# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704195# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704201# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704202# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704203# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704204# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704205# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704211# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704212# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704213# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704214# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704215# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704221# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704222# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704223# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704224# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704225# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704231# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704232# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704233# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704234# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704235# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704241# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704242# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704243# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704244# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704245# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704251# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704252# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704253# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704254# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704255# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704261# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704262# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704263# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704264# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704265# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704271# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704272# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704273# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704274# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704275# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704281# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704282# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704283# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704284# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704285# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704291# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704292# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704293# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704294# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704295# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704301# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704302# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704303# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704304# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704305# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704311# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704312# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704313# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704314# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704315# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704321# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704322# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704323# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704324# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704325# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704331# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704332# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704333# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704334# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704335# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704341# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704342# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704343# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704344# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704345# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704351# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704352# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704353# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704354# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704355# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704361# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704362# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704363# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704364# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704365# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704371# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704372# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704373# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704374# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704375# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704381# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704382# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704383# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704384# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704385# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704391# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704392# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704393# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704394# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704395# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704401# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704402# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704403# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704404# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704405# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704411# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704412# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704413# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704414# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704415# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704421# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704422# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704423# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704424# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704425# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704431# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704432# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704433# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704434# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704435# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704441# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704442# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704443# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704444# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704445# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704451# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704452# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704453# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704454# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704455# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704461# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704462# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704463# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704464# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704465# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704471# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704472# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704473# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704474# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704475# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704481# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704482# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704483# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704484# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704485# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704491# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704492# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704493# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704494# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704495# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704501# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704502# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704503# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704504# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704505# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704511# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704512# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704513# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704514# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704515# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704521# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704522# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704523# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704524# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704525# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704531# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704532# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704533# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704534# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704535# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704541# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704542# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704543# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704544# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704545# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704551# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704552# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704553# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704554# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704555# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704561# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704562# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704563# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704564# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704565# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704571# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704572# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704573# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704574# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704575# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704581# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704582# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704583# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704584# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704585# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704591# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704592# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704593# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704594# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704595# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704601# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704602# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704603# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704604# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704605# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704611# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704612# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704613# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704614# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704615# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704621# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704622# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704623# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704624# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704625# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704631# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704632# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704633# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704634# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704635# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704641# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704642# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704643# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704644# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704645# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704651# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704652# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704653# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704654# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704655# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704661# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704662# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704663# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704664# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1704665# +Superior gemstone used to Grade-Up weapon equipment. +-------------------------- +Weight: 0 +# +1800000# +Collection Effect +Atk + 5 +Max HP + 1% +Increases the recovery rate of recovery skills by 1% +Earth resistance 2% +-------------------------- +This collection include +Andre Card 2 ea +Andre Egg Card 3 ea +Vitata Card 2 ea +Giearth Card 1 ea +Familiar Card 2 ea +-------------------------- +Type: Collection +Weight: 1 +# +1800001# +Collection Effect +Critical Rate + 1% +Ranged Attack Damage + 1%. +DEF + 1 +HP Recovery + 2% +-------------------------- +This collection include +Zombie Card 2 ea +Skeleton Card 2 ea +Soldier Skeleton Card 2 ea +Archer Skeleton Card 2 ea +Munak Card 2 ea +-------------------------- +Type: Collection +Weight: 1 +# +1800002# +Collection Effect +Earth resistance 4% +HP Recovery + 6% +ATK + 3 +Confusion resistance 4% +Gain 1 SP each time a Dragon monster is killed by a Physical Melee Damage. +-------------------------- +This collection include +Dryad Card 2 ea +Wooden Golem Card 2 ea +Stone Shooter Card 3 ea +Wootan Shooter Card 2 ea +Driller Card 1 ea +-------------------------- +Type: Collection +Weight: 1 +# +1800003# +Collection Effect +Reduce damage from Demon monster by 3% +Gain 1 SP each time a Brute monster is killed by a Physical Melee Damage. +Gain 1 SP each time a Formless monster is killed by a Physical Melee Damage. +Reduce damage from DemiHuman monster by 2%. +Increase resistance to the Stun status by 2% +-------------------------- +This collection include +Medusa Card 3 ea +Nereid Card 2 ea +Tri Joint Card 1 ea +Megalodon Card 2 ea +Stalactic Golem Card 2 ea +-------------------------- +Type: Collection +Weight: 1 +# +1900000# +Enchant Effect +-------------------------- +STR + 2 +-------------------------- +Weight: 10 +# +1900001# +Enchant Effect +-------------------------- +INT + 2 +-------------------------- +Weight: 10 +# +1900002# +Enchant Effect +-------------------------- +AGI + 2 +-------------------------- +Weight: 10 +# +1900003# +Enchant Effect +-------------------------- +DEX + 2 +-------------------------- +Weight: 10 +# +1900004# +Enchant Effect +-------------------------- +VIT + 2 +-------------------------- +Weight: 10 +# +1900005# +Enchant Effect +-------------------------- +LUK + 2 +-------------------------- +Weight: 10 +# +1900006# +Enchant Effect +-------------------------- +Increases the recovery rate of recovery skills and recovery items 3%. +-------------------------- +Weight: 10 +# +1900007# +Enchant Effect +-------------------------- +increases the recovery rate of recovery skills by 4%. +-------------------------- +Weight: 10 +# +1900008# +Enchant Effect +-------------------------- +Increases physical damage on Large size targets by 2%. +-------------------------- +Weight: 10 +# +1900009# +Enchant Effect +-------------------------- +Increases physical damage on Medium size targets by 2%. +-------------------------- +Weight: 10 +# +1900010# +Enchant Effect +-------------------------- +Increases physical damage on Small size targets by 2%. +-------------------------- +Weight: 10 +# +1900011# +Enchant Effect +-------------------------- +ATK +2% +-------------------------- +Weight: 10 +# +1900012# +Enchant Effect +-------------------------- +MATK +2% +-------------------------- +Weight: 10 +# +1900013# +Enchant Effect +-------------------------- +ATK + 2% +-------------------------- +Weight: 10 +# +1900014# +Enchant Effect +-------------------------- +MATK + 2% +-------------------------- +Weight: 10 +# +1900015# +Enchant Effect +-------------------------- +Restores 15 HP to the user every 10 seconds. +-------------------------- +Weight: 10 +# +1900016# +Enchant Effect +-------------------------- +MaxHP + 2% +-------------------------- +Weight: 10 +# +1900017# +Enchant Effect +-------------------------- +MaxSP + 2% +-------------------------- +Weight: 10 +# +1900018# +Enchant Effect +-------------------------- +HIT + 2 +-------------------------- +Weight: 10 +# +1900019# +Enchant Effect +-------------------------- +FLEE + 2 +-------------------------- +Weight: 10 +# +1900020# +Enchant Effect +-------------------------- +Restores 1 SP to the user when a monster is killed by a physical or a magical attack. +-------------------------- +Weight: 10 +# +1900021# +Enchant Effect +-------------------------- +ATK +2% +-------------------------- +Weight: 10 +# +1900022# +Enchant Effect +-------------------------- +MATK +2% +-------------------------- +Weight: 10 +# +1900023# +Enchant Effect +-------------------------- +ASPD +2 +-------------------------- +Weight: 10 +# +1900024# +Enchant Effect +-------------------------- +2% chance to absorb 2% physical damage into HP. +-------------------------- +Weight: 10 +# +1900025# +Enchant Effect +-------------------------- +2% chance to absorb 2% physical damage into SP. +-------------------------- +Weight: 10 +# +1900026# +Increases recovery amount gained from Restorative items by 3%. +# +1900027# +Increases Healing skills effectiveness by 4%. +# +1900028# +Increases Physical Damage against enemies of Large size by 2%. +# +1900029# +Increases Physical Damage against enemies of Medium size by 2%. +# +1900030# +Increases Physical Damage against enemies of Small size by 2%. +# +1900031# +ATK +2% +# +1900032# +MATK +2% +# +1900033# +Restores 15 HP every 10 seconds. +# +1900034# +MaxHP +2% +# +1900035# +MaxSP +2% +# +1900036# +ASPD +2 +# +1900037# +2% chance to absorb 2% physical damage into HP. +# +1900038# +2% chance to absorb 2% physical damage into SP. +# +1900039# +HIT +2 +# +1900040# +FLEE +2 +# +1900041# +Enhance abilities +-------------------------- +EXP +5% +DROPS +5% +-------------------------- +Expiration Date 31-8-2024 +-------------------------- +Weight: 10 +# +1900042# +EXP +5% +DROPS +5% +-------------------------- +Expiration Date 31-8-2024 +# +1900043# +Enhance abilities +-------------------------- +EXP +5% +DROPS +5% +-------------------------- +Expiration Date 30-9-2024 +-------------------------- +Weight: 10 +# +1900044# +EXP +5% +DROPS +5% +-------------------------- +Expiration Date 30-9-2024 +# +1900045# +A stone that slightly reduces fixed casting time +Used to install the following ability at the Costume Garment slot +[Spending Enchant]mal_in01,17,107,0,100,0,0 +-------------------------- +All Status +1 +Reduces Fixed Cast Time by -0.2 seconds +EXP +5% +DROPS +5% +-------------------------- +Expiration Date 31-10-2024 +-------------------------- +Weight: 10 +# +1900046# +All Status +1 +Reduces Fixed Cast Time by -0.2 seconds +EXP +5% +DROPS +5% +-------------------------- +Expiration Date 31-10-2024 +# +2000000# +The Box that contains +-------------------------- +Moonstone 5000 +Automatic Player Box (7Days) 1 ea +Zeny Box 10 ea +Nova Space (7Days) 1 ea +Vip Coupon (30Days) 1 ea +Kafra Buff Box (7Days) 1 ea +Premium Service Box 1 ea +Silvervine 100 ea +-------------------------- +Weight: 0 +# +2000001# +The Box that contains +-------------------------- +Moonstone 2000 +Eluminum Box 5 ea +Oridecon Box 5 ea +Zeny Box 10 ea +Vibranium Blessing 100 ea +-------------------------- +Weight: 0 +# +2000002# +The Box that contains +-------------------------- +Moonstone 2000 +Banana 100 ea +Apple 100 ea +Grape 100 ea +Strawberry 100 ea +[R] Pet Spirit Guarantee Scroll 1 ea +Rare Pet Spirit Fragment 100 ea +-------------------------- +Weight: 0 +# +2000003# +The Box that contains +-------------------------- +Moonstone 2000 +Small Life Potion 100 ea +Small Medium Potion 100 ea +Mysterious Life Potion 100 ea +Small Mana Potion 100 ea +-------------------------- +Weight: 0 +# +2000004# +The Box that contains +-------------------------- +Moonstone 2000 +Battle Manual 50 ea +Bubble Gum 50 ea +Increase Agility Scroll Box(10) 10 ea +Blessing Scroll Box(10) 10 ea +-------------------------- +Weight: 0 +# +2000005# +The Box that contains +-------------------------- +Moonstone 2000 +Elite Siege Supply Box 20 ea +HE Battle Manual 5 ea +HE Bubble Gum 5 ea +-------------------------- +Weight: 0 +# +2000006# +The Box that contains +-------------------------- +Moonstone 10000 +[E] Pet Spirit Guarantee Scroll 1 ea +Epic Pet Spirit Fragment 100 ea +-------------------------- +Weight: 0 +# +2000007# +A box containing +-------------------------- +[Event] Automatic Player Box (14Days) 1ea +[Event] VIP Coupon (30Days) 1ea +-------------------------- +Weight: 0 +# +2000008# +A box containing 1 Automatic Player Box that can be used for 30 days. +-------------------------- +Rental Item. +-------------------------- +For use in Autoattack System. +-------------------------- +Weight: 1 +# +2000009# +A box containing 1 Automatic Player Box that can be used for 30 days. +-------------------------- +Rental Item. +-------------------------- +For use in Autoattack System. +-------------------------- +Weight: 1 +# +2000010# +A box containing 1 Automatic Player Box that can be used for 3 days. +-------------------------- +Rental Item. +-------------------------- +For use in Autoattack System. +-------------------------- +Weight: 1 +# +2000011# +The Box that contains +-------------------------- +[Event] Comp Battle Bubble 3 ea +Small Life Potion 10 ea +Small Mana Potion 5 ea +Mental Potion 5 ea +-------------------------- +Weight: 0 +# +2000012# +The Box that contains. +-------------------------- +Strawberry In Mouth Box (30Day) 1 ea +-------------------------- +Weight: 0 +# +2000013# +The sweet aroma and flavor of strawberries will make you want to take a bite! +-------------------------- +When the wearer defeats monsters, there is a small chance to receive a Strawberry +-------------------------- +Increases the recovery rate of Strawberry by 30% +-------------------------- +Gain 3 SP each time a monster is defeated +-------------------------- +Type: Headgear +Defense: 0 +Position Lower +Weight: 0 +Armor Level: 1 +-------------------------- +Requirements: None +# +2000014# +The Box containing 1 Strawberry In Mouth inside, with a 30-day rental duration +-------------------------- +Rental item +-------------------------- +The sweet aroma and flavor of strawberries make you want to take a bite! +When the wearer defeats monsters, there is a small chance to receive a Strawberry +-------------------------- +Weight: 0 +# +2000015# +The Box that contains +-------------------------- +Blessing Scroll 10 ea +Increase Agility Scroll 10 ea +Boarding Halter Box 3D 1 ea +New Pet Scroll 3 ea +-------------------------- +Weight: 0 +# +2000016# +The Box that contains +-------------------------- +Blessing Ore Mirror 10 ea +[R] Pet Spirit Guarantee Scroll 3 ea +Elite Siege Supply Box 3 ea +-------------------------- +Weight: 0 +# +2000017# +The Box that contains +-------------------------- +Small Mana Potion 15 ea +Mental Potion 10 ea +Full SwingK 10 ea +Mana Plus 10 ea +-------------------------- +Weight: 0 +# +2000018# +The Box that contains +-------------------------- +Enriched Elunium 1 ea +Enriched Oridecon 1 ea +Costume Protect Cloth 1 ea +-------------------------- +Weight: 0 +# +2000019# +The Box that contains +-------------------------- +Character Slot Expansion Coupon 1 ea +-------------------------- +Weight: 0 +# +2000020# +The Box that contains +-------------------------- +[Event] Automatic Player 30d Box 1 ea +[Event] HE Battle Manual 2 ea +[Event] Blue Potion 100 ea +-------------------------- +Weight: 0 +# +2000021# +The Box containing +-------------------------- +[Event] White Potion Box 2 ea +[Event] Blue Potion Box 2 ea +[Event] HE Battle Manual 5 ea +[Event] Unlimited Fly Wing (1Day) 3 ea +[Event] Token of Siegfried 3 ea +For survival +-------------------------- +Weight: 1 +# +2000022# +The reward of the winner, Angeling, which symbolizes +Wealth and a symbol of victory +-------------------------- +All stats +2 +Atk +3 +Matk +3 +-------------------------- +Increases the experience gained from defeating monsters by 5% +Increases the item drop rate from all monsters by 5% +-------------------------- +Type: Hat +Defense: 5 +Position: Lower +Weight: 5 +Armor Level: 1 +-------------------------- +Requirements: None +# +2000023# +The Box containing +-------------------------- +Automatic Player Box 1 Day 2 ea +[Event] Adventure Scroll 3 ea +[Event] Basic Pet Scroll (Uncommon - Rare) 3 ea +[Event] Elite Siege Supply Box 2 ea +Battle Manual 10 ea +Bubble Gum 10 ea +For survival +-------------------------- +Weight: 1 +# +2000024# +A box containing 1 Automatic Player Box that can be used for 30 days. +-------------------------- +Rental Item. +-------------------------- +For use in Autoattack System. +-------------------------- +Weight: 1 +# +2000025# +The Box containing +-------------------------- +Chilly Breath 1 ea +Elite Siege Supply Box 5 ea +Small Mana Potion 15 ea +For survival +-------------------------- +Weight: 0 +# +2000026# +The Box containing +-------------------------- +Unlimited Fly Wing Box (1 Day) 3 ea +Enriched Elunium 1 ea +Enriched Oridecon 1 ea +Flapping Angel Wing 1 ea +Archangel Wings [1] 1 ea +For survival +-------------------------- +Weight: 0 +# +2000027# +The Box containing +-------------------------- +[Event] Small Mana Potion 15 ea +[Event] Mental Potion 30 ea +[Event] Red booster 4 ea +For survival +-------------------------- +Weight: 0 +# +2000028# +Rental Items for 7 days +A box contains +-------------------------- +Unlimited Arrow 7Days 1ea +-------------------------- +Type: Arrow +Attack: 25 +Weight: 0 +Element: Neutral +-------------------------- +Weight: 0 +# +2000029# +Rental Items for 7 days +A box contains +-------------------------- +Unlimited Silver Arrow 7Days 1ea +-------------------------- +Type: Arrow +Attack: 30 +Weight: 0 +Element: Holy +-------------------------- +Weight: 0 +# +2000030# +Rental Items for 7 days +A box contains +-------------------------- +Unlimited Fire Arrow 7Days 1ea +-------------------------- +Type: Arrow +Attack: 30 +Weight: 0 +Element: Fire +-------------------------- +Weight: 0 +# +2000031# +A box containing +-------------------------- +[Event] Small Life Potion Box(10) 10ea +-------------------------- +Weight: 0 +# +2000032# +A box containing +-------------------------- +[Event] Medium Life Potion Box(10) 10ea +-------------------------- +Weight: 0 +# +2000033# +A box containing +-------------------------- +[Event] Mysterious Life Potion Box(10) 10ea +-------------------------- +Weight: 0 +# +2000034# +Awaken the power of mystery and uncover the fortune and secrets hidden in the shadows +-------------------------- +Type: Item Giver +Weight: 1 +# +2000035# +A fragment of strange Elunium. When combined, it can be used to craft a special item. +-------------------------- +Weight: 0 +# +2000036# +A fragment of strange Oridecon. When combined, it can be used to craft a special item. +-------------------------- +Weight: 0 +# +2000037# +Magic hat with hidden powers If you upgrade it +-------------------------- +Type: Headgear Challenge +Defense: 0 +Weight: 10 +-------------------------- +Requirement: +All classes +# +2000038# +A magical weapon with hidden powers. If you upgrade it. +-------------------------- +Type: Weapons Challenge +Defense: 0 +Weight: 10 +-------------------------- +Requirement: +All classes +# +2000039# +Beautiful jewelry storage box. +-------------------------- +Type: Container +Effect: Random Accessory 1 ea +Weight: 0 +# +2000040# +The Box that contains +-------------------------- +[Event] Comp Battle Bubble 3 ea +Life Insurance 5 ea +Small Mana Potion 5 ea +Mental Potion 5 ea +-------------------------- +Weight: 0 +# +2000041# +The Box that contains. +-------------------------- +[Event] HE Battle Manual 3 ea +[Event] HE Bubble Gum 3 ea +[Event] Medium Life Potion 10 ea +-------------------------- +Weight: 0 +# +2000042# +The Box contains +-------------------------- +Siege Blue Potions 50 ea +Siege Blue Potion - Restore 50-70 SP +-------------------------- +Weight: 0 +# +2000043# +The Box that contains +-------------------------- +Blessing Scroll 10 ea +Increase Agility Scroll 10 ea +Boarding Halter Box 3D 1 ea +New Pet Scroll 3 ea +-------------------------- +Weight: 0 +# +2000044# +The Box that contains +-------------------------- +Blessing Ore Mirror 10 ea +[R] Pet Spirit Guarantee Scroll 3 ea +Elite Siege Supply Box 3 ea +-------------------------- +Weight: 0 +# +2000045# +The Box that contains +-------------------------- +Small Mana Potion 15 ea +Mental Potion 10 ea +HP Increase Potion(Large) 10 ea +SP Increase Potion(Large) 10 ea +Kafra Buff(7 Days) 2 ea +-------------------------- +Weight: 0 +# +2000046# +The Box that contains +-------------------------- +Enriched Elunium 1 ea +Enriched Oridecon 1 ea +Special Enchant Stone (Exp 5% Drop 5%) 1 ea +-------------------------- +Weight: 0 +# +2000047# +The Box that contains +-------------------------- +Character Slot Expansion Coupon 1 ea +-------------------------- +Weight: 0 +# +2000048# +The Box containing 1 [Event] Baby Deviling Inside, with a rental duration of 30 days +Rental item +-------------------------- +Item expire within 30 Day after open box. +-------------------------- +Weight: 0 +# +2000049# +Baby Deviling, always following its master wherever they go +-------------------------- +When performing a physical attack, there is a chance to cast Blessing Lv. 5 or Increase Agility Lv. 5 on the wearer +-------------------------- +Rental item with a 30-day duration +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 10 +-------------------------- +Requirements: None +# +2000050# +A box containing some Adamantine Blessing. +-------------------------- +Weight: 0 +# +2000051# +A box containing +-------------------------- +WoE White Potions 50ea +-------------------------- +Weight: 0 +# +2000052# +A box containing +-------------------------- +WoE Blue Potions 20ea +-------------------------- +Weight: 0 +# +2000053# +A radiant rainbow-colored egg that shines brightly +Packed with mystery and wonder inside +-------------------------- +Type: Item Giver +Weight: 1 +# +2000054# +The Box that contains +-------------------------- +[Event] Battle Manual 3 ea +[Event] Bubble Gum 3 ea +[Event] Small Life Potion 5 ea +[Event] Small Mana Potion 5 ea +-------------------------- +Weight: 0 +# +2000055# +The Box that contains +-------------------------- +[Event] Adventure Scroll 3 ea +[Event] Battle Manual & Bubble Gum 5 ea +[Event] Token of Siegfried 10 ea +[Event] Small Mana Potion 5 ea +-------------------------- +Weight: 0 +# +2000056# +The Box that contains +-------------------------- +Vybranium Blessing 60 ea +[Event] Adventure Scroll 5 ea +[Event] Basic Pet Scroll (Uncommon - Rare) 3 ea +[Event] HE Battle Manual 2 ea +[Event] HE Bubble Gum 2 ea +[Event] Token of Siegfried 10 ea +-------------------------- +Weight: 0 +# +2000057# +A blessing wishing for your safety and protection from all dangers. +When activated, you will receive the LOVEMOM buff with the following effects: +-------------------------- +Exp & Drop + 5% +Atk +10 Matk+10 +All Stats +3 +-------------------------- +Buff duration has ended +September 7, 2024 +-------------------------- +Type: Consumable +Weight: 0 +# +2000058# +Contains a rental coupon with a 30-day duration and a Kafra Buff for 7 days +-------------------------- +Unlock the convenience of NOVA Space with this membership coupon! Enjoy exclusive access to unique ground facilities +-------------------------- +Type: Cash Shop +Weight: 0 +# +2000059# +The Box containing Adamantine Blessing 30 ea +Adamantine Blessing Cannot be traded +-------------------------- +Type: Item Giver +Weight: 0 +# +2000060# +Contains Adamantine Fragment 250 ea +-------------------------- +When activated, you will receive Adamantine Fragment 250 ea +-------------------------- +Can be exchanged for Adamantine Blessing Or Adamantine Token Available at Npc Universal Exchange +-------------------------- +Warning: Please check your weight And the character's inventory space before use +-------------------------- +Weight: 0 +# +2000061# +Contains Adamantine Fragment 1250 ea +-------------------------- +When activated, you will receive Adamantine Fragment 1250 ea +-------------------------- +Can be exchanged for Adamantine Blessing Or Adamantine Token Available at Npc Universal Exchange +-------------------------- +Warning: Please check your weight And the character's inventory space before use +-------------------------- +Weight: 0 +# +2000062# +Contains Adamantine Fragment 2500 ea +-------------------------- +When activated, you will receive Adamantine Fragment 2500 ea +-------------------------- +Can be exchanged for Adamantine Blessing Or Adamantine Token Available at Npc Universal Exchange +-------------------------- +Warning: Please check your weight And the character's inventory space before use +-------------------------- +Weight: 0 +# +2000063# +Contains Adamantine Fragment 12500 ea +-------------------------- +When activated, you will receive Adamantine Fragment 12500 ea +-------------------------- +Can be exchanged for Adamantine Blessing Or Adamantine Token Available at Npc Universal Exchange +-------------------------- +Warning: Please check your weight And the character's inventory space before use +-------------------------- +Weight: 0 +# +2000064# +Contains Adamantine Fragment 25000 ea +-------------------------- +When activated, you will receive Adamantine Fragment 25000 ea +-------------------------- +Can be exchanged for Adamantine Blessing Or Adamantine Token Available at Npc Universal Exchange +-------------------------- +Warning: Please check your weight And the character's inventory space before use +-------------------------- +Weight: 0 +# +2000065# +The Box contains items that +Will make your adventure even more enjoyable +Consists of +-------------------------- +-New Pet Scroll 10 ea +-Jasmine 200 ea +-------------------------- +Weight: 0 +# +2000066# +The Box containing Balloon Various forms available +The Box contains a total of 6 types of Balloons +Each type has an equal chance of being received +-------------------------- +- Deviling Balloon +- Angeling Balloon +- Arch Angeling Balloon +- Poporing Balloon +- Marin Balloon +- Ghostring Balloon +-------------------------- +Weight: 0 +# +2000067# +The Box containing +-------------------------- +-[R] Pet Spirit Guarantee Scroll 3 ea +-Elite Siege Supply Box 5 ea +-Small Mana Potion 15 ea +-------------------------- +Weight: 0 +# +2000068# +The Box containing +-------------------------- +-Unlimited Fly Wing Box (1 Day) 3 ea +-Enriched Elunium 1 ea +-Enriched Oridecon 1 ea +-Monster Balloon Box 1 ea +-------------------------- +Weight: 0 +# +2000069# +A magical egg that contains the spirits of the elements: Earth, Water, Wind, and Fire +It is filled with mystery, and you will feel excitement when you open it. +-------------------------- +Type: Item Giver +Weight: 1 +# +2000071# +The Box that contains +-------------------------- +[Event] Battle Manual & Bubble Gum 3 ea +Life Insurance 5 ea +Small Mana Potion 5 ea +Mental Potion 5 ea +-------------------------- +Weight: 0 +# +2000072# +The Box that contains. +-------------------------- +[Event] HE Battle Manual 3 ea +[Event] HE Bubble Gum 3 ea +[Event] Medium Life Potion 10 ea +-------------------------- +Weight: 0 +# +2000073# +The Box containing 1 Grape Bubble Gum Inside +Rental duration: 30 days +-------------------------- +The sweet aroma and flavor of grapes make you want to take a bite! +When the wearer defeats monsters, there is a small chance to receive a Grape +-------------------------- +Type: Rental Item +The item is non-returnable +Weight: 0 +# +2000074# +The sweet aroma and flavor of grapes make you want to take a bite! +-------------------------- +When the wearer defeats monsters, there is a small chance to receive a Grape +-------------------------- +Increases the restore rate of Grape by 120% +-------------------------- +Gain 3 SP each time a monster is defeated +-------------------------- +Type: Headgear +Defense: 0 +Position Lower +Weight: 0 +Armor Level: 1 +The item is non-returnable +-------------------------- +Requirements: None +# +2000075# +The Box that contains +-------------------------- +Blessing Scroll 10 ea +Increase Agility Scroll 10 ea +Boarding Halter Box 3D 1 ea +[Event] New Pet Scroll 3 ea +-------------------------- +Weight: 0 +# +2000076# +The Box that contains +-------------------------- +Blessing Ore Mirror 10 ea +[R] Pet Spirit Guarantee Scroll 3 ea +Elite Siege Supply Box 3 ea +-------------------------- +Weight: 0 +# +2000077# +The Box that contains +-------------------------- +[Event] Kafra Buff(7 Days) 1 ea +[Event] HE Battle Manual 2 ea +[Event] HE Bubble Gum 2 ea +-------------------------- +Weight: 0 +# +2000078# +The Box that contains +-------------------------- +Convex Mirror Box(5) 1 ea +Enriched Elunium 1 ea +Enriched Oridecon 1 ea +Special September Scroll (30 Days) 1 ea +-------------------------- +Weight: 0 +# +2000079# +The Box that contains +-------------------------- +Character Slot Expansion Coupon 1 ea +-------------------------- +Weight: 0 +# +2000080# +ATK +5 +MATK +5 +Aspd +5% +Variable Cast Time -5% +-------------------------- +Increases experience gained from defeating all monsters by 5% +Increases drop rate gained from defeating all monsters by 5% +-------------------------- +(Expires after use 30 Days) +-------------------------- +(Monthly buffs cannot be stacked) +-------------------------- +Weight: 0 +# +2000081# +The Box contains +-------------------------- +- [Event] - Random Rental Ring Box 1 ea +- [Event] Small Life Potion 10 ea +- [Event] Small Mana Potion 10 ea +- [Event] Token of Siegfried 3 ea +-------------------------- +Weight: 0 +# +2000082# +The Box contains +-------------------------- +- [Event] Basic Pet Scroll (Uncommon - Rare) +- [Event] Battle Manual & Bubble Gum +- [Event] Abrasive +- Gym Membership Pass +-------------------------- +When Opened, The Box There is a small chance to obtain +-------------------------- +- [Event] Automatic Player Box 7 Days +-------------------------- +Weight: 0 +# +2000083# +Artificial eyes with a blazing, fiery glow. +-------------------------- +DEX +1 +-------------------------- +Increases ranged attack power by 3% +-------------------------- +Type: Headgear +Position: Middle +Defense: 0 +Weight: 100 +Armor Level: 1 +-------------------------- +Requirements: +Required level: 1 +All Jobs +# +2000084# +An egg that appears to be a token of joy from an angel. When opened, it reveals pure happiness +Prepare to receive an explosion of happiness +-------------------------- +Type: Item Giver +Weight: 1 +# +2000085# +A red garment that appears to be stained with blood, serving as a cloak to cover the body. +-------------------------- +Critical Damage Increases 3%. +-------------------------- + If refine level is +7 or above +Critical Damage Increases 3% additional. +-------------------------- + If refine level is +9 or above +Critical Damage Increases 4% additional. +-------------------------- +If equipped with [Critical Ring] +Critical Damage Increases 2% additional. +Critical +7 +-------------------------- +If equipped with [Critical Ring [1]] +Critical Damage Increases 5% additional. +Critical +10 +-------------------------- +Type: Garment +Defense: 20 +Weight: 70 +Armor Level: 1 +Tier Level: 6 +-------------------------- +Requirements: +Required level: 65 +All Jobs +# +2000086# +The Box that will randomly drop Shadow Equipment +-------------------------- +Use Shadow Equipment 5 ea +Randomly acquired Shadow Equipment 1 ea +-------------------------- +Weight: 0 +# +2000087# +A box that provides Premium Services for 30 days. +-------------------------- +When you open the box, you will receive a 30-days Premium Buff for all your characters in the server: +- Increases Experience by 15% +- Increases Item drop rate by 15% +-------------------------- +Includes one magic wand that calls up a Premium Service Staff who provides additional services. +-------------------------- +Weight: 1 +# +2000088# +The Box contains +-------------------------- +- [Event] Premium Ration Service Box 1 ea +- Silvervine 10 ea +-------------------------- +Weight: 1 +# +2000089# +A Gym Pass that can be given to a special NPC to learn a skill that will increase your Maximum Weight Capacity by 200 For each skill Level. +This special skill can only be learned up to Level 10. +Find Ripped Cabuspayon,173,141,0,100,0,0 in Payon. +-------------------------- +Weight: 1 +# +2000090# +The Box containing Battle Manual 75% amount 10 ea +-------------------------- +This detailed and well-written manual explains effective combat techniques. +-------------------------- +Type: Supportive +Effect: Increases experience gained by 75% +Duration: 30 Minute +Weight: 1 +-------------------------- +# +2000091# +The super cute shark that's ready to bite its owner's head at any moment. +-------------------------- +Type: Hat +Defense: 0 +Position: Upper +Weight: 0 +Armor Level: 1 +The item is non-returnable +-------------------------- +Requirements: None +# +2100001# +LUK +3 +Perfect Dodge +1 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100002# +VIT +1 +MaxHP +300 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100003# +MaxHP +1500 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100004# +DEX +1 +HIT +10 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100005# +Increases Physical Damage against enemies of Shadow elemental by 25%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100006# +LUK +2 +Critical +3 +Perfect Dodge +2 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100007# +Increases Physical Damage against enemies of Formless race by 25%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100008# +STR +1 +ATK +15 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100009# +AGI +2 +FLEE +5 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100010# +MaxSP +120 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100011# +VIT +2 +MaxHP +300 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100012# +MaxHP +800 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100013# +MaxHP +10% +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100014# +MaxHP +700 +MaxSP +100 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100015# +FLEE +15 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100016# +AGI +1 +FLEE +5 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100017# +Enable a 7% chanceof inflicting the Stun status on an enemy with each attack. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100018# +INT +1 +MaxSP +10 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100019# +STR +1 +ATK +10 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100020# +ATK +5 +-------------------------- +Enable a 7% chance of inflicting the Blind status on an enemy with each attack. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100021# +DEX +2 +ATK +7 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100022# +VIT +3 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100023# +INT +2 +SP +50 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100024# +ATK +5 +-------------------------- +Enable a 7% chance of inflicting the Sleep status on an enemy with each attack. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100025# +ATK +15 +-------------------------- +Enable a 3% chance of inflicting the Stun status on an enemy with each attack. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100026# +AGI +1 +FLEE +5 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100027# +AGI +3 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100028# +STR +3 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100029# +ATK +20 +Critical +3 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100030# +Increase damage inflicted upon Wind property monsters by 25%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100031# +MaxHP +15% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100032# +DEF +5 +HP +100 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100033# +Enable use of Level 1 Detoxify +Resist damage from poison property by 2% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100034# +DEX +3 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100035# +Increases Physical Damage against enemies of Demi-Human race by 25%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100036# +Increases HP Recovery Rate by 15%. +-------------------------- +Alchemist Card Set +Zipper Bear X Card +Baby Leopard X Card +Raggler X Card +Muka X Card +Holden X Card +-------------------------- +STR +5 +Increases damage of Mammonite by 25%. +MaxHP +10% +MaxSP +10% +Gains 2 SP on each physical attack. +-------------------------- +Alchemist Class Bonus: +A chance of auto casting level 1 Adrenaline Rush when attacking physically. +A low chance of obtaining Glistening Coat and/or Stem when defeating monsters. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100037# +ATK +10 +-------------------------- +Enable a 7% chance of inflicting the Poison status on an enemy with each attack. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100038# +Increases HP Recovery Rate by 25%. +HP +50 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100039# +Increases resistance against Silence status by 25%. +-------------------------- +Rogue Card Set +Wanderer X Card +Wild Rose X Card +Shinobi X Card +Stainer X Card +Wickebine Tres X Card +-------------------------- +STR +6 +AGI +4 +Increases damage of Backstab by 15%. +A chance of auto casting level 5 Strip Armor if level 5 Strip Armor is learned. +-------------------------- +Rogue Class Bonus: +Decreases SP Consumption by 25%. +Disables the Auto-Intimidate ability of the Wanderer X Card. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100040# +Enables the use of Level 1 Teleport. +SP +20 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100041# +DEF +3 +-------------------------- +Increases resistance against Sleep status by 25%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100042# +DEF +5 +-------------------------- +Decreases damage taken from Wind elemental attacks by 15%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100043# +ATK +25 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100044# +Perfect Dodge +1 +-------------------------- +Enables the use of Level 1 Hiding. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100045# +Decreases damage taken from Ranged Physical Damage by 40%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100046# +AGI +1 +-------------------------- +Increases resistance against Blind status by 25%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100047# +Enchants compounded Armor with Ghost elemental. +Decreases HP Recovery Rate by 25%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100048# +ATK +2 +-------------------------- +Enables the use of Level 5 Envenom. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100049# +Increases Physical Damage against enemies of Fire elemental by 25%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100050# +AGI +3 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100051# +AGI +2 +Perfect Dodge +5 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100052# +INT +3 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100053# +Enables the use of Level 1 Heal. +Increases SP Consumption by 15%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100054# +Blesses compounded Armor with the Holy elemental. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100055# +ATK +5 +-------------------------- +Enable a 7% chance of inflicting the Frozen status on an enemy with each attack. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100056# +FLEE +5 +-------------------------- +Decreases damage taken from Wind elemental attacks by 35%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100057# +ATK +5 +Enable a 7% chance of inflicting the Silence status on an enemy with each attack. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100058# +Decreases damage taken from Demi-Human race by 35%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100059# +Decreases damage taken from Plant race by 30%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100060# +Increase damage on Brute monsters by 25%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100061# +DEF +5 +-------------------------- +Makes an armor indestructible in battle. +Armor can still be destroyed during upgrade attempts. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100062# +Increases Physical Damage against enemies of Poison elemental by 25%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100063# +Increases Physical Damage against enemies of Insect race by 25%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100064# +DEX +4 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100065# +Increases Physical Damage against enemies of Earth elemental by 25%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100066# +Decreases damage taken from Brute race by 35%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100067# +DEF +3 +-------------------------- +Increases resistance against Frozen status by 25%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100068# +Increases Physical Damage against enemies of Plant race by 25%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100069# +Increases Physical Damage against enemies of Water elemental by 25%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100070# +Increases SP Recovery Rate by 20%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100071# +FLEE +5 +-------------------------- +Decreases damage taken from Undead elemental attacks by 35%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100072# +ATK +10 +-------------------------- +Makes a weapon indestructible in battle. +Weapon can still be destroyed during upgrade +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100073# +Enables Level 7 Discount. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100074# +Decreases damage taken from Insect race by 35%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100075# +DEF +3 +-------------------------- +Increases resistance against Stone Curse status by 25%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100076# +ATK +5 +-------------------------- +Enable a 7% chance of inflicting the Curse status on an enemy with each attack. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100077# +Protects from skill cast interruption. +Increases Variable Casting Time of all skills by 20%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100078# +VIT +3 +HP +200 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100079# +STR +4 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100080# +Increases Physical Damage against enemies of Fish race by 25%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100081# +FLEE +5 +-------------------------- +Decreases damage taken from Earth elemental attacks by 35%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100082# +ATK +5 +-------------------------- +Increases Physical Damage against enemies of Small size by 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100083# +Decreases damage taken from Fish race monsters by 35%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100084# +ATK +5 +-------------------------- +Enables the use of Level 5 Magnum Break. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100085# +Increases Physical Damage against enemies of Holy elemental by 25%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100086# +Critical +12 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100087# +Gain immunity to the Chaos status. +-------------------------- +Decreases damage taken from Earth elemental attacks by 20%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100088# +Enables the use of Level 2 Cloaking. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100089# +DEF +5 +-------------------------- +Enchants compounded Armor with Water elemental. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100090# +DEF +3 +-------------------------- +Increases resistance against Stone Curse status by 20%. +Decreases damage taken from Earth elemental attacks by 10%. +-------------------------- +Tragic Trio Card Set +Bongun X Card +Yao Jun X Card +Munak X Card +-------------------------- +All Stats +1 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100091# +STR +1 +Critical +6 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100092# +ATK +5 +-------------------------- +Increases Physical Damage against enemies of Medium size by 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100093# +VIT +1 +-------------------------- +Enables the use of Level 1 Cure. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100094# +Increases Ranged Physical Damage by 12%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100095# +FLEE +5 +-------------------------- +Decreases damage taken from Water elemental attacks by 35%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100096# +ATK +10 +-------------------------- +Enable a 7% chance of inflicting the Poison status on an enemy with each attack. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100097# +AGI +1 +MaxHP +15% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100098# +DEF +5 +-------------------------- +Enchants compounded Armor with Wind elemental. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100099# +DEF +5 +-------------------------- +Enchants compounded Armor with Fire elemental. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100100# +MaxSP +20% +SP Recovery +3% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100101# +DEF +5 +-------------------------- +Enchants compounded Armor with Earth elemental. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100102# +FLEE +30 +-------------------------- +Increases damage taken from Ghost elemental attacks by 50%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100103# +Enables the use of Level 1 Sight. +-------------------------- +Movement Speed +2% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100104# +Enable a 7% chance of inflicting the Chaos status on an enemy with each attack. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100105# +Prevents Frozen status. +Decreases damage taken from Water elemental attacks by 7%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100106# +HIT +25 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100107# +MaxHP +10% +MaxSP +10% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100108# +FLEE +5 +-------------------------- +Decreases damage taken from Poison elemental attacks by 35%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100109# +FLEE +5 +-------------------------- +Decreases damage taken from Fire elemental attacks by 35%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100110# +DEF +3 +-------------------------- +Increases resistance against Poison status by 25%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100111# +Increases Physical Damage against monsters of Demon race by 25%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100112# +Variable Casting Time by -1% +-------------------------- +Gain immunity to the Silence status. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100113# +FLEE +5 +-------------------------- +Decreases damage taken from Ghost elemental attacks by 35%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100114# +DEF +5 +-------------------------- +Enchants compounded Armor with Poison elemental. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100115# +Enable a 3% chance of gaining 20% of the damage inflicted on an enemy as HP with each attack +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100116# +FLEE +5 +-------------------------- +Decreases damage taken from Shadow elemental attacks by 35%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100117# +ATK +5 +-------------------------- +Enables Level 1 Double Attack on compounded weapon. +If character has learned Double Attack, that skill's Level affects this X Card's Level. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100118# +Increases Physical Damage against enemies of Dragon race by 25%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100119# +DEF +5 +-------------------------- +Enchants compounded Armor with Shadow elemental. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100120# +Decreases damage taken from Dragon race by 35%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100121# +HIT +100 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100122# +STR +2 +Gain immunity to the Blind status. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100123# +MaxHP -25% +Enables effect of the Endure skill so long as the Footgear to which this X Card is compounded is equipped. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100124# +Gain immunity to the Stone Curse status. +-------------------------- +Decreases damage taken from Demon race monsters by 20%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100125# +Increases Physical Damage against enemies of Demi-Human, Brute, Plant and Insect race by 10%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100126# +ATK +5 +-------------------------- +Increases Physical Damage against enemies of Large size by 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100127# +AGI +2 +-------------------------- +Gain immunity to the Sleep status. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100128# +Nullifies all magic attacks, including supportive skills, that target character. +Increases SP Consumption by 100%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100129# +AGI +3 +Critical +3 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100130# +Increases Physical Damage against enemies of Undead race by 20%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100131# +Enables faster movement speed so long as the Footgear to which this X Card is compounded is equipped. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100132# +Nullifies Gemstone requirement of certain skills. +Increases SP Consumption by 25%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100133# +Decreases damage taken from Neutral elemental attacks by 25%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100134# +Adds 10% chance of gaining 5% of the damage against target as SP when dealing physical damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100135# +Reflects 30% of all Melee Physical Damage back to the enemy which inflicted it. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100136# +Decreases damage taken from Demon race monsters by 35%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100137# +Nullifies reduction in damage against monsters resulting from monster's size. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100138# +Decreases damage taken from Angel race by 35%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100139# +SP +20 +-------------------------- +Enables the use of Level 2 Steal. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100140# +Increases Physical Damage against enemies of Boss class by 30%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100141# +INT +2 +DEF +5 +-------------------------- +Enchants compounded Armor with Undead elemental. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100142# +Enables faster attack speed so long as the weapon to which this X Card is compounded is equipped. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100143# +VIT +3 +-------------------------- +Prevents Stun status. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100144# +Restores HP and SP by 100% when resurrected. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100145# +Decreases Variable Casting Time by 30%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100146# +Adds 50% chance of reflecting Magical attacks, aside from skills which target the ground, cast on the character. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100147# +HIT -10 +-------------------------- +Endows compounded weapon with damage that will splash 3x3 cells around the character with each attack. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100148# +Decreases SP Consumption by 30%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100149# +Random chance a defeated Insect monster will drop Box of Thunder. +-------------------------- +Decrease damage from insect type by 5% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100150# +if the armor is upgraded no higher than +5: +DEF +5 +MDEF +7 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100151# +Increases experience gained from defeating Plant race monsters by 15%. +Increases Physical Damage taken from Plant race by 25%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100152# +Random chance a defeated Insect monster will drop Carrot Juice, Banana Juice or Apple Juice. +Increases recovery amount gained from Carrot Juice, Banana Juice and Apple Juice by 60%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100153# +ATK +7 +-------------------------- +Increases Physical Damage against enemies of Aster by 30%. +-------------------------- +Beach X Card Set +Shell X Fish Card +Crab X Card +Aster X Card +-------------------------- +30% chance of Gaining Raw Fish each time a Fish Monster is killed. +Increases Physical Damage against enemies of Water elemental by 35%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100154# +Random chance a defeated Demi-Human race monster will drop Candy or Candy Cane. +Increases recovery amount gained from Candy and Candy Cane by 60%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100155# +Increases Physical Damage against Goblin monsters by 35%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100156# +Increases Critical Damage by 15%. +Critical +8 when attacking Formless monster. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100157# +Increases Critical Damage by 15%. +Critical +8 when attacking Undead monster. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100158# +Disables HP Recovery Rate. +-------------------------- +Gains 200 HP each time a monster is killed by melee physical attacks. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100159# +AGI +3 +-------------------------- +Refine Level +9: +FLEE +25 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100160# +STR +2 +-------------------------- +Refine Level +9: +MaxHP +12% +MaxSP +12% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100161# +Random chance to auto-cast Level 2 Gloria when receiving physical damage. +-------------------------- +When equipped with Pecopeco X Card: +DEF +5 +VIT +4 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100162# +DEF +5 +-------------------------- +Random chance to inflict Blind status on attacker when receiving physical damage. +-------------------------- +When equipped with Bigfoot X Card: +Increases the rate inflicting Blind status. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100163# +FLEE +5 +Critical +10 +-------------------------- +When equipped by Swordman classes: +Random chance to auto-cast Level 7 Bowling Bash on the target when dealing physical damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100164# +Increases experience gained from defeating Fish race monsters by 15%. +Increases Physical Damage taken from Fish race monsters by 25%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100165# +Gains 10 SP each time an Insect monster is killed by melee physical attacks. +Drains 10 SP as the weapon is unequipped. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100166# +DEF +5 +-------------------------- +Random chance to inflict Curse status on attacker when receiving physical damage. +-------------------------- +When equipped with Nightmare X Card: +Increases the rate of inflicting Curse status. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100167# +Gains 10 SP each time a Brute monster is killed by melee physical attacks. +Drains 10 SP as the weapon is unequipped. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100168# +Random chance to auto-cast Level 5 Meteor Storm on attacker when receiving physical damage. +-------------------------- +When equipped with Dark Illusion X Card: +MaxHP +20% +MaxSP +20% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100169# +MaxHP -15% +MaxSP -15% +-------------------------- +Decreases Variable Casting Time by 15%. +-------------------------- +When equipped with Dark Lord X Card: +Decreases Variable Casting Time by 20%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100170# +DEF +5 +-------------------------- +Random chance to inflict Stone Curse status on attacker when receiving physical damage. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100171# +Adds 2% chance of decreasing target's SP amount by 5% when dealing physical damage. +-------------------------- +If worn by Sage or Scholar: +it gains 2 SP every time when doing Physical Attack on monsters. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100172# +Increases Critical Damage by 25%. +Drains 1 SP on each attack. +-------------------------- +Thief Card Set +Wanderer X Card +Wild Rose X Card +Shinobi X Card +Zhu Po Long X Card +The Paper X Card +-------------------------- +AGI +5 +STR +5 +ASPD +7% +Increases movement speed. +Restores SP by 2 on each attack. +Disable the Auto-Intimidate ability of the Wanderer X Card +-------------------------- +Thief Class Bonus: +No Gemstones required to use certain skills. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100173# +DEF +5 +-------------------------- +Random chance to inflict Sleep status on attacker when receiving physical damage. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100174# +Decreases damage taken from Neutral elemental attacks by 50%. +Increases damage taken from other elemental attacks by 50%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100175# +Random chance to auto-cast Level 3 Envenom on the target when dealing physical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100176# +Increases Critical Damage by 15%. +Critical +8 when attacking Dragon monster. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100177# +Random chance a defeated Plant monster will drop Green Live. +Decreases damage taken from Earth elemental attacks by 15%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100178# +AGI +1 +FLEE +10 +-------------------------- +Increases damage of Double Strafe and Arrow Shower by 5%. +-------------------------- +Hunter Card Set +Cruiser X Card +Anolian X Card +Alligator X Card +Dragon Tail X Card +Merman X Card +-------------------------- +AGI +5 +DEX +3 +Increases Ranged Physical Damage by 22%. +Perfect HIT +22% +-------------------------- +Archer Class Bonus: +Random chance to inflict Coma status on Brute monster when dealing physical damage. +Increases experience gained from defeating Brute race monsters by 5%. +-------------------------- +Bard/Dancer Card Set +Cruiser X Card +Anolian X Card +Alligator X Card +Dragon Tail X Card +Green Ferus X Card +-------------------------- +DEX +5 +Increases damage of Arrow Vulcan by 10%. +Increases damage of Musical Strike and Throw Arrow by 15%. +-------------------------- +Bard or Dancer Class Bonus: +Random chance to auto-cast Level 2 Tarot Card of Fate when wearer receiving melee physical attacks. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100179# +AGI +1 +-------------------------- +When equipped with Chonchon X Card: +FLEE +25 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100180# +Gains 10 SP each time a Dragon monster is killed by melee physical attacks. +Drains 10 SP as the weapon is unequipped. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100181# +VIT +1 +-------------------------- +Random chance to inflict Silence status on attacker when receiving physical damage. +-------------------------- +Base VIT at least 77: +Increases the rate of inflicting Silence status. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100182# +Gains 10 SP each time a Demon monster is killed by melee physical attacks. +Drains 10 SP as the weapon is unequipped. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100183# +STR +1 +-------------------------- +When equipped with Wolf X Card: +FLEE +25 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100184# +Increases Physical Damage against Golem monsters by 35%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100185# +INT +1 +-------------------------- +When equipped by Acolyte classes: +INT +1 +MDEF +1 +-------------------------- +Acolyte Card Set +Rideword X Card +Cookie X Card +Fur Seal X Card +Geographer X Card +Enchanted Peach Tree X Card +-------------------------- +VIT +10 +Decreases Variable Casting Time by 15%. +Decreases SP Consumption by 15%. +-------------------------- +Acolyte Class Bonus: +Decreases damage taken from Undead elemental and Demon race monsters by 35%. +Increases experience gained from defeating Undead elemental and Demon race monsters by 5%. +-------------------------- +Monk Card Set +Rideword X Card +Cookie X Card +Fur Seal X Card +Waste Stove X Card +-------------------------- +STR +4 +MaxSP +80 +ATK +25 +Random chance to auto-cast Level 5 Signum Crusis when dealing physical damage. +Increases damage of Asura Strike by 15%. +-------------------------- +Monk Class Bonus: +Uninterruptable Cast. +Decreases SP Consumption by 15%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100186# +STR +1 +VIT +1 +-------------------------- +Merchant Card Set +Zipper Bear X Card +Baby Leopard X Card +Raggler X Card +Myst Case X Card +Heirozoist X Card +-------------------------- +LUK +12 +Increases damage of Mammonite by 25%. +Gains 3 SP on each physical attack. +-------------------------- +Merchant Class Bonus: +Adds 25% chance of reflecting magical attack. +Random chance a defeated monster will drop Old Purple Box. +-------------------------- +Alchemist Card Set +Zipper Bear X Card +Baby Leopard X Card +Raggler X Card +Muka X Card +Holden X Card +-------------------------- +STR +5 +Increases damage of Mammonite by 25%. +MaxHP +10% +MaxSP +10% +Gains 2 SP on each physical attack. +-------------------------- +Alchemist Class Bonus: +A chance of auto casting level 1 Adrenaline Rush when attacking physically. +A low chance of obtaining Glistening Coat and/or Stem when defeating monsters. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100187# +Random chance a defeated Demon monster will drop Box of Resentment. +-------------------------- +Decrease damage from Demon monster by 5% +-------------------------- +Collection Effect +ATK +2 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100188# +Random chance a defeated Brute monster will drop Red Blood. +Decreases damage taken from Fire elemental attacks by 15%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100189# +Increased chance of auto casting Curse on an enemy when the user receives Physical Damage. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100190# +Random chance a defeated Undead monster will drop Giggling Box. +-------------------------- +Decrease damage from Undead monster by 5% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100191# +Random chance to auto-cast Level 3 Heal on wearer when receiving physical damage. +-------------------------- +Wizard Card Set +Parasite X Card +Miyabi Doll X Card +Evil Nymph X Card +Harpy X Card +Bloody Butterfly Card +-------------------------- +MaxHP +700 +DEF +7 +MDEF +7 +Increases damage of Cold Bolt, Fire Bolt and Lightning Bolt by 15%. +-------------------------- +Mage Class Bonus: +MATK +5% +Decreases Variable Casting Time by 20%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100192# +Increases Critical Damage by 15%. +Critical +9 when attacking Fish monster. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100193# +When equipped by Novice classes: +Has 25% chance of auto casting Level 1 Endure on Novice or Super Novice when receiving Physical Damage. +-------------------------- +When equipped with Quve X Card: +MaxHP +600 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100194# +DEF +5 +-------------------------- +Random chance to inflict Stun status on attacker when receiving physical damage. +-------------------------- +Base DEX at least 77: +Increases the rate of inflicting Stun status. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100195# +Random chance a defeated Fish monster will drop Crystal Blue. +Decreases damage taken from Water elemental attacks by 15%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100196# +Random chance a defeated monster will drop Large Jellopy or Jellopy. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100197# +LUK +1 +-------------------------- +When equipped with Poring X Card: +FLEE +25 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100198# +Enables its user to detect hidden enemies. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100199# +Increases HP and SP Recovery Rate by 10%. +-------------------------- +Hunter Card Set +Cruiser X Card +Anolian X Card +Alligator X Card +Dragon Tail X Card +Merman X Card +-------------------------- +AGI +5 +DEX +3 +Increases Ranged Physical Damage by 22%. +Perfect HIT +22% +-------------------------- +Archer Class Bonus: +Random chance to inflict Coma status on Brute monster when dealing physical damage. +Increases experience gained from defeating Brute race monsters by 5%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100200# +if the shoes is upgraded no higher than +5: +MDEF +10 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100201# +DEF +5 +-------------------------- +Increased chance of auto casting Stun on an enemy when the user receives Physical Attack. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100202# +Increases Physical Damage against enemies of Ghost elemental by 25%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100203# +ATK +20 +-------------------------- +Random chance to auto-cast Level 5 Fire Ball on the target when dealing physical damage. +-------------------------- +If the user has mastered the skill at Level 10, it will cast Level 10 Fire Ball. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100204# +Increases experience gained from defeating Brute race monsters by 15%. +Increases Physical Damage taken from Brute race by 25%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100205# +Add a 0.3% chance of gaining Old Blue Box item each time a monster is killed. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100206# +Random chance a defeated monster will drop Gift Box. +-------------------------- +Merchant Card Set +Zipper Bear X Card +Baby Leopard X Card +Raggler X Card +Myst Case X Card +Heirozoist X Card +-------------------------- +LUK +12 +Increases damage of Mammonite by 25%. +Gains 3 SP on each physical attack. +-------------------------- +Merchant Class Bonus: +Adds 25% chance of reflecting magical attack. +Random chance a defeated monster will drop Old Purple Box. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100207# +DEF +1 +-------------------------- +Decreases damage taken from Small size by 30%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100208# +MaxSP +15% +-------------------------- +Increases damage of Frost Diver by 7%. +-------------------------- +Sage Card Set +Yellow Novus X Card +Evil Nymph X Card +Miyabi Doll X Card +Bloody Butterfly X Card +Harpy X Card +-------------------------- +INT +3 +Increases damage of Thunderstorm and Heaven Drive by 15%. +-------------------------- +Sage Class Bonus: +Adds 25% chance of reflecting magical attack. +Decreases Variable Casting Time by 25%. +Random chance a defeated monster will drop Red Gemstone or Yellow Gemstone. +-------------------------- +Wizard Card Set +Parasite X Card +Miyabi Doll X Card +Evil Nymph X Card +Harpy X Card +Bloody Butterfly Card +-------------------------- +MaxHP +700 +DEF +7 +MDEF +7 +Increases damage of Cold Bolt, Fire Bolt and Lightning Bolt by 15%. +-------------------------- +Mage Class Bonus: +MATK +5% +Decreases Variable Casting Time by 20%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100209# +Random chance to auto-cast Level 2 Frost Joke on the target when dealing physical damage. +If the user has mastered the skill at Level 5, it will cast Level 5 Frost Joke. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100210# +Random chance to auto-cast Level 1 Intimidate on the target when dealing physical damage. +-------------------------- +When equipped by Thief classes: +FLEE +25 +-------------------------- +Thief Card Set +Wanderer X Card +Wild Rose X Card +Shinobi X Card +Zhu Po Long X Card +The Paper X Card +-------------------------- +AGI +5 +STR +5 +ASPD +7% +Increases movement speed. +Restores SP by 2 on each attack. +Disable the Auto-Intimidate ability of the Wanderer X Card +-------------------------- +Thief Class Bonus: +No Gemstones required to use certain skills. +-------------------------- +Rogue Card Set +Wanderer X Card +Wild Rose X Card +Shinobi X Card +Stainer X Card +Wickebine Tres X Card +-------------------------- +STR +6 +AGI +4 +Increases damage of Backstab by 15%. +A chance of auto casting level 5 Strip Armor if level 5 Strip Armor is learned. +-------------------------- +Rogue Class Bonus: +Decreases SP Consumption by 25%. +Disables the Auto-Intimidate ability of the Wanderer X Card. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100211# +MDEF +3 +-------------------------- +When equipped with Rocker X Card: +FLEE +25 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100212# +Random chance to auto-cast Level 3 Bash on the target when dealing physical damage. +The Bash skill shoves the enemy 5 cells back. +Increases damage taken from Munak monsters by 100%. +-------------------------- +Tragic Trio Card Set +Bongun X Card +Yao Jun X Card +Munak X Card +-------------------------- +All Stats +1 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100213# +DEF +5 +-------------------------- +Increased chance of auto casting Silence on an enemy when the user receives Physical Damage. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100214# +Increases Critical Damage by 15%. +Critical +9 when attacking Insect monster. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100215# +Add the chance of gaining a Food items each time a monster is killed. +Resist fire property by 3% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100216# +DEF +5 +-------------------------- +Increased chance of auto casting Frozen an enemy when the user receives Physical Damage. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100217# +Random chance to auto-cast Level 1 Heal on the user when dealing physical damage. +If the user has mastered the skill at Level 10, it will cast Level 10 Heal. +-------------------------- +Acolyte Card Set +Rideword X Card +Cookie X Card +Fur Seal X Card +Geographer X Card +Enchanted Peach Tree X Card +-------------------------- +VIT +10 +Decreases Variable Casting Time by 15%. +Decreases SP Consumption by 15%. +-------------------------- +Acolyte Class Bonus: +Decreases damage taken from Undead elemental and Demon race monsters by 35%. +Increases experience gained from defeating Undead elemental and Demon race monsters by 5%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100218# +VIT -4 +MaxHP +1500 +-------------------------- +Decreases HP Recovery Rate by 25%. +-------------------------- +When equipped with Incubus X Card: +VIT +5 +Increases HP Recovery Rate by 35%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100219# +ATK +5 +MATK +5 +-------------------------- +Random chance a defeated monster will drop Gemstones. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100220# +DEF +2 +MDEF +2 +-------------------------- +Swordman Card Set +Assaulter Card +Permeter Card +Solider Card +Freezer Card +Heater Card +-------------------------- +STR +10 +MaxHP +25% +Increases HP Recovery Rate by 55%. +Random chance to auto-cast Level 1 Weapon Perfection when dealing physical attacks. +Random chance a defeated monster will drop Red Potion. +-------------------------- +Swordman Class Bonus: +Increases recovery amount gained from Red Potion, Yellow Potion and White Potion by 55%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100221# +Increases experience gained from defeating Insect race monsters by 15%. +Increases Physical Damage taken from Insect race by 25%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100222# +DEF +5 +-------------------------- +Increased chance of auto casting Sleep on an enemy when the user receives Physical Damage. +-------------------------- +When equipped with Skeleton X Card: +The chance of casting Sleep is increased if the user is equipped with an item compounded to the Skeleton +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100223# +DEF +1 +-------------------------- +Increases resistance against Stun status by 25%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100224# +Random chance a defeated Brute monster will drop Box of Storms. +Decrease damage from Brute monster by 5% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100225# +HIT +15 +ATK +15 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100226# +Refine Level +9: +DEF +5 +MDEF +7 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100227# +Random chance a defeated Brute monster will drop Monster's Feed or Meat. +Increases recovery amount gained from Meat and Monster's Feed by 60%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100228# +Random chance a defeated Fish monster will drop Box of Drowsiness. +-------------------------- +Decrease damage from Fish or Shellfish monster by 5% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100229# +INT +1 +-------------------------- +Decreases Variable Casting Time by 10%. +-------------------------- +Clocktower Card Set +Clock Tower Manager X Card +Punk X Card +Alarm X Card +Clock X Card +-------------------------- +DEF +3 +MDEF +3 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100230# +AGI +1 +-------------------------- +Random chance to auto-cast Level 5 Cloaking on the user when receiving physical damage. +If the user has not learned Level 3 or higher Cloaking skill or if the user is not an Assassin, this X Card allows the user to use the skill only when being near to a wall. +-------------------------- +Thief Card Set +Wanderer X Card +Wild Rose X Card +Shinobi X Card +Zhu Po Long X Card +The Paper X Card +-------------------------- +AGI +5 +STR +5 +ASPD +7% +Increases movement speed. +Restores SP by 2 on each attack. +Disable the Auto-Intimidate ability of the Wanderer X Card +-------------------------- +Thief Class Bonus: +No Gemstones required to use certain skills. +-------------------------- +Thief Class Bonus: +No Gemstones required to use certain skills. +-------------------------- +Rogue Card Set +Wanderer X Card +Wild Rose X Card +Shinobi X Card +Stainer X Card +Wickebine Tres X Card +-------------------------- +STR +6 +AGI +4 +Increases damage of Backstab by 15%. +A chance of auto casting level 5 Strip Armor if level 5 Strip Armor is learned. +-------------------------- +Rogue Class Bonus: +Decreases SP Consumption by 25%. +Disables the Auto-Intimidate ability of the Wanderer X Card. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100231# +Decreases damage taken from Guardian by 60% during War of Emperium hours. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100232# +Random chance a defeated Plant monster will drop Red Herb, Yellow Herb or White Herb. +Increases recovery amount gained from Red Herb, Yellow Herb and White Herb by 60%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100233# +LUK +3 +-------------------------- +Merchant Card Set +Zipper Bear X Card +Baby Leopard X Card +Raggler X Card +Myst Case X Card +Heirozoist X Card +-------------------------- +LUK +12 +Increases damage of Mammonite by 25%. +Gains 3 SP on each physical attack. +-------------------------- +Merchant Class Bonus: +Adds 25% chance of reflecting magical attack. +Random chance a defeated monster will drop Old Purple Box. +-------------------------- +Alchemist Card Set +Zipper Bear X Card +Baby Leopard X Card +Raggler X Card +Muka X Card +Holden X Card +-------------------------- +STR +5 +Increases damage of Mammonite by 25%. +MaxHP +10% +MaxSP +10% +Gains 2 SP on each physical attack. +-------------------------- +Alchemist Class Bonus: +A chance of auto casting level 1 Adrenaline Rush when attacking physically. +A low chance of obtaining Glistening Coat and/or Stem when defeating monsters. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100234# +Random chance to auto-cast Level 2 Improve Concentration on the user when receiving physical damage. +If the user has mastered the skill at Level 10, it will cast Level 10 Improve Concentration. +-------------------------- +Hunter Card Set +Cruiser X Card +Anolian X Card +Alligator X Card +Dragon Tail X Card +Merman X Card +-------------------------- +AGI +5 +DEX +3 +Increases Ranged Physical Damage by 22%. +Perfect HIT +22% +-------------------------- +Archer Class Bonus: +Random chance to inflict Coma status on Brute monster when dealing physical damage. +Increases experience gained from defeating Brute race monsters by 5%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100235# +Increases experience gained from defeating Angel race monsters by 15%. +Increases Physical Damage taken from Angel race by 25%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100236# +All Stats +1 +-------------------------- +Random chance to auto-cast Level 10 Kyrie Eleison when receiving physical damage. +The chance of casting the skill is increased if the user has 99 INT points. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100237# +Random chance to auto-cast Level 5 Impositio Manus on the user when dealing physical damage. +-------------------------- +When equipped with Owl Baron X Card: +Random chance to auto-cast Level 5 Lightning Bolt on the target when dealing physical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100238# +Increase the chance of auto casting level 1 Lex Aeterna on an enemy when doing Physical Attack. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100239# +Increases experience gained from defeating Formless race monsters by 15%. +Increases Physical Damage taken from Formless race by 25%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100240# +if the shield is upgraded no higher than +5: +DEF +5 +MDEF +5 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100241# +MaxHP +300 +-------------------------- +Base LUK at least 77: +Increases HP and SP Recovery Rate by 100%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100242# +VIT +2 +-------------------------- +Refine Level +9: +MaxHP +1500 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100243# +FLEE +10 +-------------------------- +Random chance to auto-cast Level 1 Teleport when receiving physical damage. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100244# +VIT +1 +MaxHP +500 +-------------------------- +Clocktower Card Set +Clock Tower Manager X Card +Punk X Card +Alarm X Card +Clock X Card +-------------------------- +DEF +3 +MDEF +3 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100245# +Increases experience gained from defeating Demi-Human race monsters by 15%. +Increases Physical Damage taken from Demi-Human race by 25%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100246# +Increases Critical Damage by 15%. +Critical +9 when attacking Demi-Human race. +-------------------------- +Swordman Card Set +Assaulter Card +Permeter Card +Solider Card +Freezer Card +Heater Card +-------------------------- +STR +10 +MaxHP +25% +Increases HP Recovery Rate by 55%. +Random chance to auto-cast Level 1 Weapon Perfection when dealing physical attacks. +Random chance a defeated monster will drop Red Potion. +-------------------------- +Swordman Class Bonus: +Increases recovery amount gained from Red Potion, Yellow Potion and White Potion by 55%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100247# +ATK +5 +-------------------------- +Inflict 35% more damage on Shell Fish. +-------------------------- +Beach Card Set +Shell X Fish Card +Crab X Card +Aster X Card +-------------------------- +Increases Physical Damage against enemies of Water elemental by 35%. +Random chance a defeated Fish monster will drop Raw Fish. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100248# +Random chance to auto-cast Level 5 Signum Crucis on the target when receiving physical damage. +-------------------------- +When equipped with Mummy X Card: +Perfect HIT +25. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100249# +Increases experience gained from defeating Demon race monsters by 15%. +Increases Physical Damage taken from Demon race monsters by 25%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100250# +DEF +1 +-------------------------- +Decreases damage taken from Large size by 30%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100251# +Inflict 50% more damage on Guardians during War of Emperium hours. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100252# +Decreases damage taken from Ranged Physical Damage by 7%. +-------------------------- +Hunter Card Set +Cruiser X Card +Anolian X Card +Alligator X Card +Dragon Tail X Card +Merman X Card +-------------------------- +AGI +5 +DEX +3 +Increases Ranged Physical Damage by 22%. +Perfect HIT +22% +-------------------------- +Archer Class Bonus: +Random chance to inflict Coma status on Brute monster when dealing physical damage. +Increases experience gained from defeating Brute race monsters by 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100253# +Decreases damage taken from Boss class by 45%. +Increases damage taken from monsters of Normal class by 45%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100254# +DEF +1 +-------------------------- +Decreases damage taken from Medium size by 30%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100255# +Inflict 35% more damage on every Orc except Orc Lord and Orc Hero. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100256# +Random chance a defeated Demi-Human race monster will drop Box of Panting. +-------------------------- +Decrease damage from Demi-Human monster by 5% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100257# +AGI +2 +-------------------------- +When equipped by Thief classes: +Perfect Dodge +5 +-------------------------- +Thief Card Set +Wanderer X Card +Wild Rose X Card +Shinobi X Card +Zhu Po Long X Card +The Paper X Card +-------------------------- +AGI +5 +STR +5 +ASPD +7% +Increases movement speed. +Restores SP by 2 on each attack. +Disable the Auto-Intimidate ability of the Wanderer X Card +-------------------------- +Thief Class Bonus: +No Gemstones required to use certain skills. +-------------------------- +Rogue Card Set +Wanderer X Card +Wild Rose X Card +Shinobi X Card +Stainer X Card +Wickebine Tres X Card +-------------------------- +STR +6 +AGI +4 +Increases damage of Backstab by 15%. +A chance of auto casting level 5 Strip Armor if level 5 Strip Armor is learned. +-------------------------- +Rogue Class Bonus: +Decreases SP Consumption by 25%. +Disables the Auto-Intimidate ability of the Wanderer X Card. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100258# +INT +1 +MaxSP +100 +-------------------------- +Sage Card Set +Yellow Novus X Card +Evil Nymph X Card +Miyabi Doll X Card +Bloody Butterfly X Card +Harpy X Card +-------------------------- +INT +3 +Increases damage of Thunderstorm and Heaven Drive by 15%. +-------------------------- +Sage Class Bonus: +Adds 25% chance of reflecting magical attack. +Decreases Variable Casting Time by 25%. +Random chance a defeated monster will drop Red Gemstone or Yellow Gemstone. +-------------------------- +Wizard Card Set +Parasite X Card +Miyabi Doll X Card +Evil Nymph X Card +Harpy X Card +Bloody Butterfly Card +-------------------------- +MaxHP +700 +DEF +7 +MDEF +7 +Increases damage of Cold Bolt, Fire Bolt and Lightning Bolt by 15%. +-------------------------- +Mage Class Bonus: +MATK +5% +Decreases Variable Casting Time by 20%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100259# +DEF +3 +-------------------------- +Increases HP Recovery Rate by 35%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100260# +DEF +3 +-------------------------- +Add 25% more tolerance against Confuse. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100261# +DEF +3 +-------------------------- +Add 25% more tolerance against Bleeding. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100262# +Random chance a defeated Plant monster will drop Box of Gloom. +-------------------------- +Decrease damage from Plant monster by 5% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100263# +Ignores physical defense of Normal class by 100%. +Disables HP Recovery Rate. +Drains 666 HP every 10 seconds. +Drains 999 HP as the weapon is unequipped. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100264# +Random chance to auto-cast Level 5 Jupitel Thunder on the target when dealing physical damage. +If the user has mastered the skill at Level 10, it will cast Level 10 Jupitel Thunder. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100265# +Random chance a defeated Angel monster will drop Box of Sunlight. +-------------------------- +Decrease damage from Angel monster by 5% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100266# +VIT +1 +-------------------------- +When equipped with Lunatic X Card: +FLEE +25 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100267# +Increases experience gained from defeating Dragon race monsters by 15%. +Increases Physical Damage taken from Dragon race by 25%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100268# +Add the chance of auto casting level Sonic Blow on an enemy when doing Physical Attack. +-------------------------- +If the user is equipped with an item compounded to the Zealotus X Card: +LUK +4 +ATK +25 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100269# +INT -3 +MaxSP +300 +-------------------------- +Decreases SP Recovery Rate by 25%. +-------------------------- +When equipped with Succubus X Card: +INT +4 +Increases SP Recovery Rate by 35%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100270# +DEF +5 +-------------------------- +Increased the chance of Poisoning an enemy when the user receives Physical Damage. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100271# +Random chance a defeated Insect monster will drop Wind of Verdure. +Decreases damage taken from Wind elemental attacks by 15%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100272# +AGI +2 +Critical +5 +-------------------------- +Thief Card Set +Wanderer X Card +Wild Rose X Card +Shinobi X Card +Zhu Po Long X Card +The Paper X Card +-------------------------- +AGI +5 +STR +5 +ASPD +7% +Increases movement speed. +Restores SP by 2 on each attack. +Disable the Auto-Intimidate ability of the Wanderer X Card +-------------------------- +Thief Class Bonus: +No Gemstones required to use certain skills. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100273# +ATK +5 +-------------------------- +Inflict 35% more damage on Crab. +-------------------------- +Beach Card Set +Shell X Fish Card +Crab X Card +Aster X Card +-------------------------- +Increases Physical Damage against enemies of Water elemental by 35%. +Random chance a defeated Fish monster will drop Raw Fish. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100274# +Gain 10 SP each time an Undead monster is killed by melee physical attacks. +Drain 10 SP as the weapon is unequipped. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100275# +Increases experience gained from defeating Undead race monsters by 15%. +Increases Physical Damage taken from Undead race by 25%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100276# +Random chance to inflict Coma on the target when dealing physical damage. +Random chance to inflict Stun, Curse, Silence, Poison or Bleeding on the target when dealing Melee Physical Damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100277# +LUK +2 +-------------------------- +Increases damage of Throw Arrow and Musical Strike by 15%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100278# +if the headgear to which the: +MDEF +7 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100279# +Disables SP Recovery Rate. +Gains 15 SP each time a monster is killed by melee physical attacks. +Drains 200 SP as the Armor is unequipped. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100280# +Random chance to auto-cast Level 2 Blessing on the user when receiving physical damage. +Auto cast Level 10 Blessing instead, if Blessing is mastered. +-------------------------- +Acolyte Card Set +Rideword X Card +Cookie X Card +Fur Seal X Card +Geographer X Card +Enchanted Peach Tree X Card +-------------------------- +VIT +10 +Decreases Variable Casting Time by 15%. +Decreases SP Consumption by 15%. +-------------------------- +Acolyte Class Bonus: +Decreases damage taken from Undead elemental and Demon race monsters by 35%. +Increases experience gained from defeating Undead elemental and Demon race monsters by 5%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100281# +ATK +35 +-------------------------- +Drain 1 SP each time the user is attacking. +-------------------------- +When equipped by Merchant classes: +Make weapon indestructible. +-------------------------- +Merchant Card Set +Zipper Bear X Card +Baby Leopard X Card +Raggler X Card +Myst Case X Card +Heirozoist X Card +-------------------------- +LUK +12 +Increases damage of Mammonite by 25%. +Gains 3 SP on each physical attack. +-------------------------- +Merchant Class Bonus: +Adds 25% chance of reflecting magical attack. +Random chance a defeated monster will drop Old Purple Box. +-------------------------- +Alchemist Card Set +Zipper Bear X Card +Baby Leopard X Card +Raggler X Card +Muka X Card +Holden X Card +-------------------------- +STR +5 +Increases damage of Mammonite by 25%. +MaxHP +10% +MaxSP +10% +Gains 2 SP on each physical attack. +-------------------------- +Alchemist Class Bonus: +A chance of auto casting level 1 Adrenaline Rush when attacking physically. +A low chance of obtaining Glistening Coat and/or Stem when defeating monsters. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100282# +ATK +5 +MATK +5 +-------------------------- +Random chance a defeated monster will drop Restorative item. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100283# +Increased the chance of gaining Spirit Sphere or Coin when doing Physical Attack. +-------------------------- +When equipped by Acolyte classes: +The chance is increased. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100284# +Random chance to auto-cast Level 7 Heal on the target when dealing physical damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100285# +FLEE +15 +Perfect Dodge +7 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100286# +DEF +5 +-------------------------- +Increased the chance of auto casting Chaos on an enemy when the user receives Physical Damage. +-------------------------- +Base STR at least 77: +The chance is increased. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100287# +if the garment is upgraded no higher than +5: +MDEF +10 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100288# +INT +2 +-------------------------- +Refine Level +9: +MaxSP +250 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100289# +Gain 10 SP each time a Plant monster is killed by melee physical attacks. +Drain 10 SP as the weapon is unequipped. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100290# +MDEF +5 +-------------------------- +Adds 7% chance of reflecting magic damage. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100291# +Increases Physical Damage against Kobold monsters by 35%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100292# +Increases Critical Damage by 15%. +Critical +9 when attacking Plant monster. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100293# +LUK +3 +-------------------------- +Increases damage of Holy Light by 15%. +-------------------------- +Acolyte Card Set +Rideword X Card +Cookie X Card +Fur Seal X Card +Geographer X Card +Enchanted Peach Tree X Card +-------------------------- +VIT +10 +Decreases Variable Casting Time by 15%. +Decreases SP Consumption by 15%. +-------------------------- +Acolyte Class Bonus: +Decreases damage taken from Undead elemental and Demon race monsters by 35%. +Increases experience gained from defeating Undead elemental and Demon race monsters by 5%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100294# +When equipped by Novice classes: +Random chance to auto-cast Level 3 Increase AGI when receiving physical damage. +-------------------------- +When equipped with Lude X Card: +MaxSP +80 +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100295# +DEF +5 +-------------------------- +Random chance to inflict Blind status on attacker when receiving physical damage. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100296# +When equipped with Tarou X Card: +STR +7 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100297# +Increases Critical Damage by 15%. +Critical +9 when attacking Brute monster. +-------------------------- +Hunter Card Set +Cruiser X Card +Anolian X Card +Alligator X Card +Dragon Tail X Card +Merman X Card +-------------------------- +AGI +5 +DEX +3 +Increases Ranged Physical Damage by 22%. +Perfect HIT +22% +-------------------------- +Archer Class Bonus: +Random chance to inflict Coma status on Brute monster when dealing physical damage. +Increases experience gained from defeating Brute race monsters by 5%. +-------------------------- +Bard/Dancer Card Set +Cruiser X Card +Anolian X Card +Alligator X Card +Dragon Tail X Card +Green Ferus X Card +-------------------------- +DEX +5 +Increases damage of Arrow Vulcan by 10%. +Increases damage of Musical Strike and Throw Arrow by 15%. +-------------------------- +Bard or Dancer Class Bonus: +Random chance to auto-cast Level 2 Tarot Card of Fate when wearer receiving melee physical attacks. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100298# +Increased the chance of casting Chaos on an enemy when the user receives Physical Damage. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100299# +Chance to cast Level 5 Auto Guard on the user when receiving melee attack. +If the user has mastered the skill at Level 10, it will cast Level 10 Auto Guard +-------------------------- +Clocktower Card Set +Clock Tower Manager X Card +Punk X Card +Alarm X Card +Clock X Card +-------------------------- +DEF +3 +MDEF +3 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100300# +DEF +5 +-------------------------- +Increased the chance of Poisoning an enemy when the user receives Physical Damage. +-------------------------- +When equipped by Assassin classes: +The chance is increased. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100301# +DEF +5 +-------------------------- +Increased the chance of auto casting Bleeding on an enemy when the user receives Physical Damage. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100302# +MaxHP +100% +-------------------------- +Decreases physical and magical defense by 50%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100303# +FLEE +15 +-------------------------- +Base STR at least 80: +ATK +25 +-------------------------- +Base VIT at least 80: +MaxHP +6% +-------------------------- +Base LUK at least 80: +Critical +6 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100304# +DEF +2 +-------------------------- +Increases damage of Shield Charge and Shield Boomerang by 15%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100305# +ATK +20% +-------------------------- +Random chance to auto-cast Level 10 Magnum Break on the enemy when dealing physical damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100306# +Perfect Dodge +1 +-------------------------- +When equipped with an Roda Frog X Card: +FLEE +25 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100307# +Gain 10 SP each time a Fish monster is killed by melee physical attacks. +Drain 10 SP as the weapon is unequipped. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100308# +Gain 10 SP each time a Formless monster is killed by melee physical attacks. +Drain 10 SP as the weapon is unequipped. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100309# +DEF +3 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 7%. +-------------------------- +Wizard Card Set +Parasite X Card +Miyabi Doll X Card +Evil Nymph X Card +Harpy X Card +Bloody Butterfly Card +-------------------------- +MaxHP +700 +DEF +7 +MDEF +7 +Increases damage of Cold Bolt, Fire Bolt and Lightning Bolt by 15%. +-------------------------- +Mage Class Bonus: +MATK +5% +Decreases Variable Casting Time by 20%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100310# +Increases Critical Damage by 15%. +Critical +9 when attacking Demon monster. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100311# +Decreases damage taken from Shadow and Undead elemental attacks by 20%. +-------------------------- +Swordman Card Set +Assaulter Card +Permeter Card +Solider Card +Freezer Card +Heater Card +-------------------------- +STR +10 +MaxHP +25% +Increases HP Recovery Rate by 55%. +Random chance to auto-cast Level 1 Weapon Perfection when dealing physical attacks. +Random chance a defeated monster will drop Red Potion. +-------------------------- +Swordman Class Bonus: +Increases recovery amount gained from Red Potion, Yellow Potion and White Potion by 55%. +-------------------------- +Crusader Card Set +Archdam X Card +Permeter X Card +Freezer X Card +Heater X Card +-------------------------- +Int +1 +Str +1 +DEF +5 +SP Recovery +15% +Reduce variable cast time by 15% +Inflict 15% more damage with Shield Chain and Sacrifice. +-------------------------- +Crusader Class Bonus: +Armor becomes Holy Property. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100312# +HIT +15 +FLEE +7 +-------------------------- +When equipped by Acolyte classes: +Critical +11 when attacking Demon and Undead race. +-------------------------- +Acolyte Card Set +Rideword X Card +Cookie X Card +Fur Seal X Card +Geographer X Card +Enchanted Peach Tree X Card +-------------------------- +VIT +10 +Decreases Variable Casting Time by 15%. +Decreases SP Consumption by 15%. +-------------------------- +Acolyte Class Bonus: +Decreases damage taken from Undead elemental and Demon race monsters by 35%. +Increases experience gained from defeating Undead elemental and Demon race monsters by 5%. +-------------------------- +Monk Card Set +Rideword X Card +Cookie X Card +Fur Seal X Card +Waste Stove X Card +-------------------------- +STR +4 +MaxSP +80 +ATK +25 +Random chance to auto-cast Level 5 Signum Crusis when dealing physical damage. +Increases damage of Asura Strike by 15%. +-------------------------- +Monk Class Bonus: +Uninterruptable Cast. +Decreases SP Consumption by 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100313# +Automatically cast Level 2 Quagmire around the user when receiving physical damage. +If the user has mastered the skill, it will cast Level 5 Quagmire. +-------------------------- +Clocktower Card Set +Clock Tower Manager X Card +Punk X Card +Alarm X Card +Clock X Card +-------------------------- +DEF +3 +MDEF +3 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100314# +Decreases damage taken from Formless race by 35%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100315# +DEF +5 +-------------------------- +Increased the chance of auto casting Stone Curse on an enemy when the user receives Physical Damage. +The chance is increased if the user has 77 or more INT points. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100316# +Gains 10 SP each time an Angel monster is killed by melee physical attacks. +Drains 10 SP as the weapon is unequipped. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100317# +Increases Critical Damage by 20%. +-------------------------- +When equipped by Thief classes: +Critical +5 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100318# +Random chance to auto-cast Level 1 Storm Gust on the enemy when dealing physical damage. +Has 20% chance of Frozen an enemy when attacking. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100319# +MaxHP +700 +-------------------------- +Refine Level +9: +Increases damage of Bash by 15%. +-------------------------- +Swordman Card Set +Assaulter Card +Permeter Card +Solider Card +Freezer Card +Heater Card +-------------------------- +STR +10 +MaxHP +25% +Increases HP Recovery Rate by 55%. +Random chance to auto-cast Level 1 Weapon Perfection when dealing physical attacks. +Random chance a defeated monster will drop Red Potion. +-------------------------- +Swordman Class Bonus: +Increases recovery amount gained from Red Potion, Yellow Potion and White Potion by 55%. +-------------------------- +Crusader Card Set +Archdam X Card +Permeter X Card +Freezer X Card +Heater X Card +-------------------------- +Int +1 +Str +1 +DEF +5 +SP Recovery +15% +Reduce variable cast time by 15% +Inflict 15% more damage with Shield Chain and Sacrifice. +-------------------------- +Crusader Class Bonus: +Armor becomes Holy Property. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100320# +Increased the chance of casting level 2 Meteor Storm on an enemy when doing Physical Attack. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100321# +Add the chance of transforming a monster while fighting. +-------------------------- +Merchant Card Set +Zipper Bear X Card +Baby Leopard X Card +Raggler X Card +Myst Case X Card +Heirozoist X Card +-------------------------- +LUK +12 +Increases damage of Mammonite by 25%. +Gains 3 SP on each physical attack. +-------------------------- +Merchant Class Bonus: +Adds 25% chance of reflecting magical attack. +Random chance a defeated monster will drop Old Purple Box. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100322# +DEF +1 +-------------------------- +Reflects 10% physical damage. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100323# +ATK +5 +-------------------------- +Random chance to auto-cast Level 5 Frost Diver on the target when dealing physical damage. +-------------------------- +When equipped with Hatii X Card: +The chance is greatly increased. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100324# +Adds 50% chance of inflicting Frozen status on attacker when receiving physical damage. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100325# +Decreases damage taken from Neutral elemental attacks by 20%. +Increases damage of Napalm Beat by 10%. +-------------------------- +Sage Card Set +Yellow Novus X Card +Evil Nymph X Card +Miyabi Doll X Card +Bloody Butterfly X Card +Harpy X Card +-------------------------- +INT +3 +Increases damage of Thunderstorm and Heaven Drive by 15%. +-------------------------- +Sage Class Bonus: +Adds 25% chance of reflecting magical attack. +Decreases Variable Casting Time by 25%. +Random chance a defeated monster will drop Red Gemstone or Yellow Gemstone. +-------------------------- +Wizard Card Set +Parasite X Card +Miyabi Doll X Card +Evil Nymph X Card +Harpy X Card +Bloody Butterfly Card +-------------------------- +MaxHP +700 +DEF +7 +MDEF +7 +Increases damage of Cold Bolt, Fire Bolt and Lightning Bolt by 15%. +-------------------------- +Mage Class Bonus: +MATK +5% +Decreases Variable Casting Time by 20%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100326# +Add the chance of gaining Sushi or Raw Fish each time a Fish monster is killed. +Increases recovery amount gained from Sushi and Raw Fish by 60%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100327# +Protects from skill cast interruption. +Increases Variable Casting Time of all skills by 35%. +Increases damage of Fire Wall by 10%. +-------------------------- +Sage Card Set +Yellow Novus X Card +Evil Nymph X Card +Miyabi Doll X Card +Bloody Butterfly X Card +Harpy X Card +-------------------------- +INT +3 +Increases damage of Thunderstorm and Heaven Drive by 15%. +-------------------------- +Sage Class Bonus: +Adds 25% chance of reflecting magical attack. +Decreases Variable Casting Time by 25%. +Random chance a defeated monster will drop Red Gemstone or Yellow Gemstone. +-------------------------- +Wizard Card Set +Parasite X Card +Miyabi Doll X Card +Evil Nymph X Card +Harpy X Card +Bloody Butterfly Card +-------------------------- +MaxHP +700 +DEF +7 +MDEF +7 +Increases damage of Cold Bolt, Fire Bolt and Lightning Bolt by 15%. +-------------------------- +Mage Class Bonus: +MATK +5% +Decreases Variable Casting Time by 20%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100328# +FLEE +20 +Critical +3 +-------------------------- +Tragic Trio Card Set +Bongun X Card +Yao Jun X Card +Munak X Card +-------------------------- +All Stats +1 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100329# +Gain 10 SP each time a Demi-Human race monster is killed by melee physical attacks. +Drain 10 SP as the weapon is unequipped. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100330# +INT +3 +-------------------------- +Prevents Blind and Curse status. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100331# +Critical +5 +-------------------------- +When equipped by SSwordman classes: +Perfect Dodge +5 +-------------------------- +Swordman Card Set +Assaulter Card +Permeter Card +Solider Card +Freezer Card +Heater Card +-------------------------- +STR +10 +MaxHP +25% +Increases HP Recovery Rate by 55%. +Random chance to auto-cast Level 1 Weapon Perfection when dealing physical attacks. +Random chance a defeated monster will drop Red Potion. +-------------------------- +Swordman Class Bonus: +Increases recovery amount gained from Red Potion, Yellow Potion and White Potion by 55%. +-------------------------- +Crusader Card Set +Archdam X Card +Permeter X Card +Freezer X Card +Heater X Card +-------------------------- +Int +1 +Str +1 +DEF +5 +SP Recovery +15% +Reduce variable cast time by 15% +Inflict 15% more damage with Shield Chain and Sacrifice. +-------------------------- +Crusader Class Bonus: +Armor becomes Holy Property. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100332# +INT +1 +ATK +10 +-------------------------- +Monk Card Set +Rideword X Card +Cookie X Card +Fur Seal X Card +Waste Stove X Card +-------------------------- +STR +4 +MaxSP +80 +ATK +25 +Random chance to auto-cast Level 5 Signum Crusis when dealing physical damage. +Increases damage of Asura Strike by 15%. +-------------------------- +Monk Class Bonus: +Uninterruptable Cast. +Decreases SP Consumption by 15%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100333# +Random chance to inflict Poison status on attacker and wearer when receiving physical damage. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100334# +Decreases damage taken from Ranged Physical Damage by 15%. +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100335# +Increases damage of Earth Spike and Heaven's Drive by 10%. +Drains 50 SP when compounded weapon is unequipped. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100336# +Prevents Bleeding status. +Increases HP Recovery Rate by 15%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100337# +ATK +30 +DEF -10 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100338# +For each 15 base DEX: +VIT +1 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100339# +ATK -20 +DEF +5 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100340# +Decreases damage taken from Undead race by 35%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100341# +Random chance to auto-cast Level 2 Strip Weapon each time the wearer dealing physical attack. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100342# +VIT +3 +-------------------------- +Prevents knock-back effect. +Compounded Armor become indestructible, but it can still be destroyed by failed upgrade attempts. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100343# +LUK +2 +-------------------------- +Alchemist Card Set +Zipper Bear X Card +Baby Leopard X Card +Raggler X Card +Muka X Card +Holden X Card +-------------------------- +STR +5 +Increases damage of Mammonite by 25%. +MaxHP +10% +MaxSP +10% +Gains 2 SP on each physical attack. +-------------------------- +Alchemist Class Bonus: +A chance of auto casting level 1 Adrenaline Rush when attacking physically. +A low chance of obtaining Glistening Coat and/or Stem when defeating monsters. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100344# +Random chance a defeated Insect monster will drop Tentacle Cheese Gratin. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100345# +Increases damage of Thunderstorm, Jupitel Thunder and Lord of Vermilion by 10%. +Drains 60 SP when the compounded weapon is unequipped. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100346# +For each 15 base INT: +STR +1 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100347# +Random chance a defeated Fish monster will drop Clam Soup. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100348# +Random chance to auto-cast Level 2 Strip Armor each time the wearer dealing physical attack. +-------------------------- +Rogue Card Set +Wanderer X Card +Wild Rose X Card +Shinobi X Card +Stainer X Card +Wickebine Tres X Card +-------------------------- +STR +6 +AGI +4 +Increases damage of Backstab by 15%. +A chance of auto casting level 5 Strip Armor if level 5 Strip Armor is learned. +-------------------------- +Rogue Class Bonus: +Decreases SP Consumption by 25%. +Disables the Auto-Intimidate ability of the Wanderer X Card. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100349# +DEF +5 +-------------------------- +Random chance to auto-cast Level 1 Pneuma when receiving physical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100350# +Increases damage of Frost Nova and Storm Gust by 5%. +Drains 60 SP when compounded weapon is unequipped. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100351# +FLEE +20 +-------------------------- +upgrade level is lower than 5: +Perfect Dodge +1 +FLEE +20 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100352# +MaxHP +10% +MaxSP +10% +-------------------------- +Restores 50 HP and 10 SP every 10 seconds +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100353# +Increases HP Recovery Rate by 15%. +-------------------------- +MaxHP +1500 + +For each Refine Level: +Decreases the MaxHP bonus. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100354# +Adds 35% resistance to the Stun and Silence if base AGI is 90 or higher. +adds 55% resistance to the Stone Curse and Sleep if base VIT is 80 or higher. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100355# +Random chance a defeated Brute monster will drop Bomber Steak. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100356# +Enables the use of Level 2 Cast Cancel. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100357# +MaxHP -50% +-------------------------- +Enables the use of Level 1 Berserk. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100358# +STR -4 +-------------------------- +For each Refine Level: +STR +1 +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100359# +Enables the use of Level 3 Cloaking. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100360# +Critical +15 when attacking Demi-Human race monster. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100361# +Adds a 10% chance of destroying an enemy's weapon and a 7% chance of destroying its Armor each time the wearer dealing physical attack. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100362# +HIT +50 +-------------------------- +Reduces Attack Speed by 6% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100363# +Random chance to auto-cast Level 5 Assumptio on the wearer when wearer receiving physical or magical attack. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100364# +INT +1 +-------------------------- +Random chance to auto-cast Level 5 Lex Divina on attacker when receiving magical attack. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100365# +Ignores magical defense of Normal class by 100%. +Increases Variable Casting Time of all skills by 100%. +Disables SP Recovery Rate. +Drains 2,000 SP when the compounded headgear is unequipped. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100366# +MATK +3% +-------------------------- +For each Refine Level: +Decreases Variable Casting Time by 1%. +-------------------------- +Refine Level +9: +MATK +2% +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100367# +Adds 5% chance of absorbing 20% of the physical damage against target by the wearer as HP. +Disables HP Recovery Rate. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100368# +HIT -20 +-------------------------- +Increases Attack Speed by 6% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100369# +For each 15 base AGI: +LUK +1 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100370# +VIT -4 +-------------------------- +For each Refine Level: +VIT +1 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100371# +ATK +15 +-------------------------- +Increases Variable Casting Time of all skills by 25%. +-------------------------- +Crusader Card Set +Archdam X Card +Permeter X Card +Freezer X Card +Heater X Card +-------------------------- +Int +1 +Str +1 +DEF +5 +SP Recovery +15% +Reduce variable cast time by 15% +Inflict 15% more damage with Shield Chain and Sacrifice. +-------------------------- +Crusader Class Bonus: +Armor becomes Holy Property. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100372# +Increases Healing skills effectiveness by 30%. +Increases SP Consumption by 15%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100373# +LUK -4 +-------------------------- +For each Refine Level: +LUK +1 +Critical +1 +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100374# +DEX +2 +-------------------------- +Ignores magical defense of Boss class by 30%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100375# +FLEE +15 +-------------------------- +Decreases damage taken from Neutral elemental attacks by 15%. +-------------------------- +Refine Level +9: +FLEE +5 +Decreases damage taken from Neutral elemental attacks by 5%. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100376# +MaxSP +50% +MaxHP -40% +-------------------------- +Random chance a defeated monster will drop Banana. +Increases recovery amount gained from Banana by 100%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100377# +Increased a chance of dropping Fruit Mix when defeating Formless monsters. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100378# +MaxHP +8% +MaxSP +8% +-------------------------- +upgrade level is no greater than 4: +MaxHP +15% +MaxSP +15% +Increases HP and SP Recovery Rate by 10%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100379# +MaxSP +80 +-------------------------- +upgrade level is no greater than 4: +MaxSP +120 +Increases SP Recovery Rate by 10%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100380# +Increases damage of Fire Pillar and Meteor Storm by 7%. +Drains 60 SP when the compounded weapon is unequipped. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100381# +VIT +1 +MaxHP +12% +-------------------------- +Bard/Dancer Card Set +Cruiser X Card +Anolian X Card +Alligator X Card +Dragon Tail X Card +Green Ferus X Card +-------------------------- +DEX +5 +Increases damage of Arrow Vulcan by 10%. +Increases damage of Musical Strike and Throw Arrow by 15%. +-------------------------- +Bard or Dancer Class Bonus: +Random chance to auto-cast Level 2 Tarot Card of Fate when wearer receiving melee physical attacks. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100382# +MaxHP +1000 +-------------------------- +Increases HP Recovery Rate by 15%. +-------------------------- +Sage Card Set +Yellow Novus X Card +Evil Nymph X Card +Miyabi Doll X Card +Bloody Butterfly X Card +Harpy X Card +-------------------------- +INT +3 +Increases damage of Thunderstorm and Heaven Drive by 15%. +-------------------------- +Sage Class Bonus: +Adds 25% chance of reflecting magical attack. +Decreases Variable Casting Time by 25%. +Random chance a defeated monster will drop Red Gemstone or Yellow Gemstone. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100383# +DEF +5 +-------------------------- +Random chance to inflict Confuse status on attacker and wearer when receiving physical damage. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100384# +Random chance to auto-cast Level 3 Spell Breaker each time the wearer dealing physical attack. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100385# +Increased a chance of dropping Honey Herbal Tea when defeating Dragon type monsters. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100386# +MDEF -20 +-------------------------- +Prevents Frozen status. +Random chance to auto-cast Level 1 Land Protector when receiving magical attack. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100387# +For each 15 base LUK: +AGI +1 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100388# +Increases damage of Napalm Beat, Soul Strike and Napalm Vulcan by 10%. +Drains 60 SP when the compounded weapon is unequipped. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100389# +Increased a chance of dropping Fireproof Potion, Coldproof Potion, Earthproof Potion or Thunderproof Potion when defeating monsters. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100390# +ATK +10 +-------------------------- +chance of inflicting the Bleeding status each time the wearer physically attacks. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100391# +Increased a chance of dropping Fried Sweet Potatoes when defeating Angel type monsters. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100392# +For each 15 base VIT: +DEX +1 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100393# +For each 15 base STR: +INT +1 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100394# +When equipped by Priest classes: +Random chance to auto-cast Level 7 Grand Cross when dealing physical damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100395# +ATK +10 +-------------------------- +Random chance to auto-cast Level 5 Decrease AGI when dealing physical damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100396# +AGI -2 +-------------------------- +For each Refine Level: +AGI +1 +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100397# +INT -4 +-------------------------- +For each Refine Level: +INT +1 +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100398# +Increases Magical Damage against monsters of Angel race by 15%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100399# +DEF -30 +FLEE -30 +-------------------------- +Enchants compounded weapon with the Investigate skill effect. +Each attack drains 1 SP. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100400# +Random chance to auto-cast Charming Wink when dealing physical damage. +When worn by Dancer, this chance increases to 15%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100401# +FLEE +20 +DEF -10 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100402# +When equipped by Swordman, Merchant or Thief classes: +STR +2 +MaxHP +10% +-------------------------- +When equipped by Archer, Acolyte or Mage classes: +INT +2 +MaxSP +10% +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100403# +Decreases After Skill Delay by 30%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100404# +Increased a high chance of inflicting the Bleeding status to the user as well as the attacking enemy each time the wearer is physically attacked. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100405# +For each Refine Level: +Adds 2% chance to reflect magic attacks. +-------------------------- +When equipped by Mage classes: +MDEF +5 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100406# +Increases Magical Damage against monsters of Demon race by 5%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100407# +ATK +10% +-------------------------- +Random chance to auto-cast Level 1 Dispell when dealing physical damage. +-------------------------- +Compounded weapon becomes indestructible in battle +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100408# +Increases Physical Damage against enemies of Holy and Shadow elemental by 40%. +Increases Physical Damage against enemies of Angel and Demon race by 40%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100409# +MATK +10% +DEF -15 +-------------------------- +When equipped by Mage classes: +MaxSP +100 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100410# +ATK +20 +-------------------------- +When equipped by Swordman classes: +MaxHP +700 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100411# +STR +2 +-------------------------- +Each attack Increased a chance of adding a CRI +100 bonus for 5 seconds. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100412# +INT +2 +-------------------------- +Random chance to Decreases Variable Casting Time by 55% and increases FLEE by 35 for 5 seconds when dealing magical damage. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2100413# +Decreases damage taken from Small, Medium and Large size by 20%. +Random chance to increase Perfect Dodge by 30 for 10 seconds when receiving physical or magical attack. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100414# +MDEF +10 +-------------------------- +Enables the use of Level 3 Stone Curse. +Increases resistance against Stone Curse status by 30%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100415# +Random chance a defeated monster will drop Ice Cream. +Increases recovery amount gained from Ice Cream by 100%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100416# +Decreases Variable Casting Time of Cold Bolt by 30%. +Increases damage of Cold Bolt by 30%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100417# +VIT +3 +-------------------------- +Random chance to increase DEF by 15 for 10 seconds when receiving physical or magical attack. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2100418# +Random chance to auto-cast Level 5 Cold Bolt when dealing physical damage. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100419# +Increases Physical Damage against enemies of Fire elemental by 50%, +Random chance to auto-cast Level 10 Frost Nova when receiving physical or magical attack. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2100420# +Random chance to auto-cast Level 3 Heal and/or Level 3 Increase AGI to the wearereach time the wearer receives melee physical attacks. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2100421# +Increases Critical by 20 when dealing Ranged Physical Damage. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2100422# +FLEE +10 +Perfect Dodge +3 +-------------------------- +Increases Physical Damage against enemies of Water elemental by 15%. +Critical +20 when attacking Fish monster. +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2100423# +HIT +10 +-------------------------- +Increases Physical Damage against enemies of Water elemental by 10%. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2100424# +SP +50 +-------------------------- +Enables use of Find Stone and Throw Stone skills. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2200000# +Anniversary gift When opened +grants you a chance to receive valuable rewards +-------------------------- +Type: Item Giver +Weight: 1 +# +2200001# +-------------------------- +A scroll containing the Fang of Darkness +capable of unleashing dark power. +-------------------------- +Type: Item Giver +Weight: 1 +# +2200002# +An egg in the shape of a tiger's face that conceals various creatures' inventions inside +Adorable and intriguing at the same time, when opened, you'll feel excited and amazed by the various inventions hidden within +-------------------------- +Type: Item Giver +Weight: 1 +# +2200003# +The Box containing +-------------------------- +-[R] Pet Spirit Guarantee Scroll 3 ea +-Elite Siege Supply Box 5 ea +-Small Mana Potion 15 ea +-------------------------- +Weight: 0 +# +2200004# +The Box containing +-------------------------- +-Unlimited Fly Wing Box (1 Day) 3 ea +-Enriched Elunium 1 ea +-Enriched Oridecon 1 ea +-Amistr Box 1 ea +-------------------------- +Weight: 0 +# +2200005# +The Box containing +-------------------------- +-Minor Fixed Cast Stone 1 ea +-------------------------- +Weight: 0 +# +2200006# +The Box contains the following items +The 4-colored potions that will make your adventure easier +Consists of +-------------------------- +- [Event] Small Mana Potion 15 ea +- [Event] Small Life Potion 20 ea +- [Event] Medium Life Potion 10 ea +- [Event] [Event] Mysterious Water 15 ea +- [Event] Regeneration Potion 15 ea +- [Event] Mental potion 20 ea +-------------------------- +Type: Cash Shop +Weight: 0 +# +2200007# +The Box containing stones that can enhance the power of Apparel equipment +-------------------------- +Opening this will grant you one of the following enhancement stones: +This Box consists of +STR Stone (Upper) +INT Stone (Upper) +AGI Stone (Upper) +DEX Stone (Upper) +VIT Stone (Upper) +LUK Stone (Upper) +SP Absorb Stone(Upper) +HP Absorption Stone (Upper) +Change AGI (Middle) +Change DEX (Middle) +Change INT (Middle) +Change LUK (Middle) +Change STR (Middle) +Change VIT (Middle) +ATK Stone (Middle) +MATK Stone (Middle) +Change AGI (Lower) +Change DEX (Lower) +Change INT (Lower) +Change LUK (Lower) +Change STR (Lower) +Change VIT (Lower) +Recovery Stone (Lower) +ATK Stone (Lower) +MATK Stone (Lower) +HP Drain Stone (Garment) +SP Drain Stone (Garment) +ASPD Stone (Garment) +Double Attack Stone (Garment) +-------------------------- +Weight: 0 +# +2200008# +A box that contains stones that can be enchanted on an Costume equipment. +-------------------------- +Opening this will give you one of the following enchantment stones: +A Box containing +STR Stone (Upper) +INT Stone (Upper) +AGI Stone (Upper) +DEX Stone (Upper) +VIT Stone (Upper) +LUK Stone (Upper) +Large Stone (Upper) +Medium Stone (Upper) +Small Stone (Upper) +ATK Stone (Upper) +MATK Stone (Upper) +SP Absorb Stone(Upper) +HP Absorption Stone (Upper) +Change AGI (Middle) +Change DEX (Middle) +Change INT (Middle) +Change LUK (Middle) +Change STR (Middle) +Change VIT (Middle) +ATK Stone (Middle) +MATK Stone (Middle) +Change AGI (Lower) +Change DEX (Lower) +Change INT (Lower) +Change LUK (Lower) +Change STR (Lower) +Change VIT (Lower) +Recovery Stone (Lower) +ATK Stone (Lower) +MATK Stone (Lower) +HP Absorption Stone (Garment) +SP Absorption Stone (Garment) +Minor Casting Stone (Garment) +ASPD Stone (Garment) +Double Attack Stone(Garment) +-------------------------- +Weight: 0 +# +2200009# +A box which contains +-------------------------- +[Event] Annivesary Scroll 100ea +-------------------------- +Weight: 0 +# +2200010# +A box which contains +-------------------------- +Adamantine Blessing 500ea +-------------------------- +Weight: 0 +# +2200011# +The Box containing +-------------------------- +-[Event] Automatic Player Box 3 Days 1 ea +-[Event] Kafra Buff (3 Days) 1 ea +-------------------------- +Weight: 0 +# +2200012# +The Box containing +-------------------------- +Boarding Halter Box 3D 1 ea +Free Ticket for Kafra Transportation 10 ea +Free Ticket for Kafra Storage 10 ea +-------------------------- +Additional +2 Vybr Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +2200013# +The Box containing +-------------------------- +[Event] Regeneration Potion 2 ea +[Event] Yellow Potion Box (50) 2 ea +[Event] Blue Potion Box(10) 3 ea +[Event] Awakening Potion 5 ea +-------------------------- +Weight: 0 +# +2200014# +The Box containing +-------------------------- +Big Defense Potion 2 ea +Big Magic Defense Potion 2 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200015# +The Box containing +-------------------------- +Stamina Elixir 1 ea +Token of Siegfried 1 ea +Life Insurance 1 ea +Blessing Ore Mirror 2 ea +-------------------------- +Weight: 0 +# +2200016# +The Box containing +-------------------------- +Vybranium Blessing 20 ea +Elunium 2 ea +Oridecon 2 ea +-------------------------- +Weight: 0 +# +2200017# +The Box containing +-------------------------- +Unlimited Fly Wing 2hrs 2 ea +Mental Potion 3 ea +Small Mana Potion 3 ea +[Event] Level 10 Agility Scroll 10 ea +[Event] Level 10 Blessing Scroll 10 ea +-------------------------- +Weight: 0 +# +2200018# +The Box containing +-------------------------- +Energizing Potion 3 ea +[Event] Small Almighty 1 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200019# +The Box containing +-------------------------- +[R] Pet's Spirit Fragment 5 ea +Free Ticket for Kafra Transportation 10 ea +Free Ticket for Kafra Storage 10 ea +-------------------------- +Weight: 0 +# +2200020# +The Box containing +-------------------------- +[Event] Regeneration Potion 2 ea +[Event] Yellow Potion Box (50) 2 ea +[Event] Blue Potion Box(10) 3 ea +[Event] Awakening Potion 5 ea +-------------------------- +Weight: 0 +# +2200021# +The Box containing +-------------------------- +Big Defense Potion 2 ea +Big Magic Defense Potion 2 ea +Advanced WoE Supply Box 2 ea +[Event] Zephyr Crystal 10 ea +-------------------------- +Weight: 0 +# +2200022# +The Box containing +-------------------------- +Stamina Elixir 1 ea +Token of Siegfried 1 ea +Life Insurance 1 ea +Blessing Ore Mirror 2 ea +-------------------------- +Weight: 0 +# +2200023# +The Box containing +-------------------------- +Vybranium Blessing 20 ea +Elunium 2 ea +Oridecon 2 ea +-------------------------- +Weight: 0 +# +2200024# +The Box containing +-------------------------- +Unlimited Fly Wing 2hrs 2 ea +Mental Potion 3 ea +Small Mana Potion 3 ea +[Event] Level 10 Agility Scroll 10 ea +[Event] Level 10 Blessing Scroll 10 ea +-------------------------- +Weight: 0 +# +2200025# +The Box containing +-------------------------- +Energizing Potion 3 ea +[Event] Small Almighty 1 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200026# +The Box containing +-------------------------- +[R] Pet's Spirit Fragment 5 ea +Boarding Halter Box 3D 1 ea +[R] Pet Guaranteed Scroll 1 ea +-------------------------- +Weight: 0 +# +2200027# +The Box containing +-------------------------- +[Event] Regeneration Potion 2 ea +[Event] Yellow Potion Box (50) 2 ea +[Event] Blue Potion Box(10) 3 ea +[Event] Awakening Potion 5 ea +-------------------------- +Weight: 0 +# +2200028# +The Box containing +-------------------------- +Big Defense Potion 2 ea +Big Magic Defense Potion 2 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200029# +The Box containing +-------------------------- +Stamina Elixir 1 ea +Token of Siegfried 1 ea +Life Insurance 1 ea +Blessing Ore Mirror 2 ea +-------------------------- +Weight: 0 +# +2200030# +The Box containing +-------------------------- +Vybranium Blessing 20 ea +Elunium 2 ea +Oridecon 2 ea +-------------------------- +Weight: 0 +# +2200031# +The Box containing +-------------------------- +Unlimited Fly Wing 2hrs 2 ea +Mental Potion 3 ea +Small Mana Potion 3 ea +[Event] Level 10 Agility Scroll 10 ea +[Event] Level 10 Blessing Scroll 10 ea +[Event] Zephyr Crystal 10 ea +-------------------------- +Weight: 0 +# +2200032# +The Box containing +-------------------------- +Energizing Potion 3 ea +[Event] Small Almighty 1 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200033# +The Box containing +-------------------------- +[R] Pet's Spirit Fragment 5 ea +Free Ticket for Kafra Transportation 10 ea +Free Ticket for Kafra Storage 10 ea +-------------------------- +Weight: 0 +# +2200034# +The Box containing +-------------------------- +[Event] Regeneration Potion 2 ea +[Event] Yellow Potion Box (50) 2 ea +[Event] Blue Potion Box(10) 3 ea +[Event] Awakening Potion 5 ea +-------------------------- +Weight: 0 +# +2200035# +The Box containing +-------------------------- +Big Defense Potion 2 ea +Big Magic Defense Potion 2 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200036# +The Box containing +-------------------------- +Stamina Elixir 1 ea +Token of Siegfried 1 ea +Life Insurance 1 ea +Blessing Ore Mirror 2 ea +-------------------------- +Weight: 0 +# +2200037# +The Box containing +-------------------------- +Vybranium Blessing 20 ea +Elunium 2 ea +Oridecon 2 ea +-------------------------- +Weight: 0 +# +2200038# +The Box containing +-------------------------- +Unlimited Fly Wing 2hrs 2 ea +Mental Potion 3 ea +Small Mana Potion 3 ea +[Event] Level 10 Agility Scroll 10 ea +[Event] Level 10 Blessing Scroll 10 ea +-------------------------- +Weight: 0 +# +2200039# +The Box containing +-------------------------- +Energizing Potion 3 ea +[Event] Small Almighty 1 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200040# +The Box containing +-------------------------- +[R] Pet's Spirit Fragment 5 ea +Boarding Halter Box 3D 1 ea +-------------------------- +Weight: 0 +# +2200041# +The Box containing +-------------------------- +[Event] Regeneration Potion 2 ea +[Event] Yellow Potion Box (50) 2 ea +[Event] Blue Potion Box(10) 3 ea +[Event] Awakening Potion 5 ea +[Event] Zephyr Crystal 10 ea +-------------------------- +Weight: 0 +# +2200042# +The Box containing +-------------------------- +Big Defense Potion 2 ea +Big Magic Defense Potion 2 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200043# +The Box containing +-------------------------- +Stamina Elixir 1 ea +Token of Siegfried 1 ea +Life Insurance 1 ea +Blessing Ore Mirror 2 ea +-------------------------- +Weight: 0 +# +2200044# +The Box containing +-------------------------- +Vybranium Blessing 30 ea +Elunium 2 ea +Oridecon 2 ea +-------------------------- +Weight: 0 +# +2200045# +The Box containing +-------------------------- +Unlimited Fly Wing 2hrs 2 ea +Mental Potion 3 ea +Small Mana Potion 3 ea +[Event] Level 10 Agility Scroll 10 ea +[Event] Level 10 Blessing Scroll 10 ea +-------------------------- +Weight: 0 +# +2200046# +The Box containing +-------------------------- +Energizing Potion 3 ea +[Event] Small Almighty 1 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200047# +The Box containing +-------------------------- +[R] Pet's Spirit Fragment 5 ea +Free Ticket for Kafra Transportation 10 ea +Free Ticket for Kafra Storage 10 ea +-------------------------- +Weight: 0 +# +2200048# +The Box containing +-------------------------- +[Event] Regeneration Potion 2 ea +[Event] Yellow Potion Box (50) 2 ea +[Event] Blue Potion Box(10) 3 ea +[Event] Awakening Potion 5 ea +-------------------------- +Weight: 0 +# +2200049# +The Box containing +-------------------------- +Big Defense Potion 2 ea +Big Magic Defense Potion 2 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200050# +The Box containing +-------------------------- +Stamina Elixir 1 ea +Token of Siegfried 1 ea +Life Insurance 1 ea +Blessing Ore Mirror 2 ea +-------------------------- +Weight: 0 +# +2200051# +The Box containing +-------------------------- +Vybranium Blessing 30 ea +Elunium 2 ea +Oridecon 2 ea +[Event] Zephyr Crystal 10 ea +-------------------------- +Weight: 0 +# +2200052# +The Box containing +-------------------------- +Unlimited Fly Wing 2hrs 2 ea +Mental Potion 3 ea +Small Mana Potion 3 ea +[Event] Level 10 Agility Scroll 10 ea +[Event] Level 10 Blessing Scroll 10 ea +-------------------------- +Weight: 0 +# +2200053# +The Box containing +-------------------------- +Energizing Potion 3 ea +[Event] Small Almighty 1 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200054# +The Box containing +-------------------------- +[R] Pet's Spirit Fragment 5 ea +Boarding Halter Box 3D 1 ea +-------------------------- +Weight: 0 +# +2200055# +The Box containing +-------------------------- +[Event] Regeneration Potion 2 ea +[Event] Yellow Potion Box (50) 2 ea +[Event] Blue Potion Box(10) 3 ea +[Event] Awakening Potion 5 ea +-------------------------- +Weight: 0 +# +2200056# +The Box containing +-------------------------- +Big Defense Potion 2 ea +Big Magic Defense Potion 2 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200057# +The Box containing +-------------------------- +Stamina Elixir 1 ea +Token of Siegfried 1 ea +Life Insurance 1 ea +Blessing Ore Mirror 2 ea +-------------------------- +Weight: 0 +# +2200058# +The Box containing +-------------------------- +Vybranium Blessing 30 ea +Elunium 2 ea +Oridecon 2 ea +-------------------------- +Weight: 0 +# +2200059# +The Box containing +-------------------------- +Unlimited Fly Wing 2hrs 2 ea +Mental Potion 3 ea +Small Mana Potion 3 ea +[Event] Level 10 Agility Scroll 10 ea +[Event] Level 10 Blessing Scroll 10 ea +-------------------------- +Weight: 0 +# +2200060# +The Box containing +-------------------------- +Energizing Potion 3 ea +[Event] Small Almighty 1 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200061# +The Box containing +-------------------------- +Costume Wind Prairie 1 ea +[R] Pet Guaranteed Scroll 2 ea +Vybranium Blessing 50 ea +Nightmare Coin 1 ea +Fierce Coin 1 ea +Soul of Abyss 10 ea +Robot Coin 1 ea +Rusty Coin 1 ea +[Event] Zephyr Crystal 10 ea +-------------------------- +Weight: 0 +# +2200062# +The Box containing +-------------------------- +[R] Pet Guaranteed Scroll 1 ea +[Event] Kafra Buff(1 Day) 2 ea +[Event] Mental Potion 5 ea +[Event] Small Mana Potion 10 ea +[Event] Increase Agility Scroll Box (10) 1 ea +[Event] Blessing Scroll Box (10) 1 ea +Vybranium Blessing 30 ea +-------------------------- +Additional +2 Vybr Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +2200063# +The Box containing +-------------------------- +[Event] Small Life Potion 10 ea +[Event] Medium Life Potion 10 ea +[Event] Mysterious Life Potion 10 ea +-------------------------- +Weight: 0 +# +2200064# +The Box containing +-------------------------- +Blessing Ore Convex Mirror 10 ea +Vybranium Blessing 30 ea +[Event] Unlimited Fly Wing Box (2Hrs) 2 ea +-------------------------- +Weight: 0 +# +2200065# +The Box containing +-------------------------- +[Event] HE Battle Manual 1 ea +[Event] Battle Manual 3 ea +Rare Pet Spirit Fragment 5 ea +-------------------------- +Weight: 0 +# +2200066# +The Box containing +-------------------------- +[Event] HE Bubble Gum 2 ea +[Event] Bubble Gum 5 ea +White Shirt [1] 1 ea +-------------------------- +Weight: 0 +# +2200067# +The Box containing +-------------------------- +Advanced WoE Supply Box 2 ea +[Event] Mental Potion 5 ea +[Event] Small Mana Potion 10 ea +-------------------------- +Weight: 0 +# +2200068# +The Box containing +-------------------------- +[Event] Small Life Potion 15 ea +[Event] Medium Life Potion 15 ea +[Event] Mysterious Life Potion 15 ea +[Event] Unlimited Fly Wing Box (2Hrs) 2 ea +[R] Pet Guaranteed Scroll 3 ea +-------------------------- +Weight: 0 +# +2200069# +The Box containing +-------------------------- +[R] Pet Guaranteed Scroll 3 ea +Rare Pet Spirit Fragment 10 ea +-------------------------- +Weight: 0 +# +2200070# +The Box containing +-------------------------- +[Event] Red Booster 5 ea +[Event] Mystic Powder 5 ea +[Event] Tyr's Blessing 5 ea +-------------------------- +Weight: 0 +# +2200071# +The Box containing +-------------------------- +Blessing Ore Convex Mirror 20 ea +Vybranium Blessing 30 ea +[Event] Unlimited Fly Wing Box (2Hrs) 2 ea +-------------------------- +Weight: 0 +# +2200072# +The Box containing +-------------------------- +Enriched Elunium 1 ea +Enriched Oridecon 1 ea +Eluminum Box 2 ea +Oridecon Box 2 ea +-------------------------- +Weight: 0 +# +2200073# +The Box containing +-------------------------- +[Event] HE Battle Manual 1 ea +[Event] HE Bubble Gum 2 ea +[Event] Battle Manual 3 ea +[Event] Bubble Gum 5 ea +-------------------------- +Weight: 0 +# +2200074# +The Box containing +-------------------------- +[Event] Limit Power Booster 2 ea +[Event] Infinity Drink 2 ea +[Event] Mental Potion 5 ea +[Event] Small Mana Potion 10 ea +-------------------------- +Weight: 0 +# +2200075# +The Box containing +-------------------------- +[Event] Small Life Potion 15 ea +[Event] Medium Life Potion 15 ea +[Event] Mysterious Life Potion 15 ea +[Event] Unlimited Fly Wing Box (2Hrs) 2 ea +[R] Pet Guaranteed Scroll 1 ea +-------------------------- +Weight: 0 +# +2200076# +The Box containing +-------------------------- +Costume Ancient Civil Man Hat 1 ea +Enriched Elunium 1 ea +Enriched Oridecon 1 ea +[Event] Boarding Halter Box 7D 1 ea +Vybranium Blessing 60 ea +-------------------------- +Additional +3 Vybr Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +2200077# +The Box containing +-------------------------- +[Event] Infinity Drink 5 ea +[Event] Limit Power Booster 3 ea +[Event] Red Booster 5 ea +[Event] Mystic Powder 3 ea +[Event] Tyr's Blessing 3 ea +Rare Pet Spirit Fragment 10 ea +-------------------------- +Weight: 0 +# +2200078# +The Box containing +-------------------------- +Blessing Ore Convex Mirror 20 ea +Vybranium Blessing 30 ea +[Event] Unlimited Fly Wing Box (2Hrs) 2 ea +Eluminum Box 2 ea +Oridecon Box 2 ea +-------------------------- +Weight: 0 +# +2200079# +The Box containing +-------------------------- +[Event] Small Life Potion 50 ea +[Event] Medium Life Potion 50 ea +[Event] Mysterious Life Potion 50 ea +[Event] Unlimited Fly Wing Box (2Hrs) 3 ea +[R] Pet Guaranteed Scroll 3 ea +-------------------------- +Weight: 0 +# +2200080# +The Box containing +-------------------------- +[Event] HE Battle Manual 1 ea +[Event] HE Bubble Gum 2 ea +[Event] Battle Manual 3 ea +[Event] Bubble Gum 5 ea +-------------------------- +Weight: 0 +# +2200081# +The Box containing +-------------------------- +[Event] Mental Potion 5 ea +[Event] Small Mana Potion 10 ea +Advanced WoE Supply Box 5 ea +Rare Pet Spirit Fragment 10 ea +[R] Pet Guaranteed Scroll 1 ea +-------------------------- +Weight: 0 +# +2200082# +The Box containing +-------------------------- +Costume Valhalla Idol 1 ea +[Event] Infinity Drink 10 ea +[Event] Limit Power Booster 4 ea +[Event] Red Booster 10 ea +[Event] Mystic Powder 4 ea +[Event] Tyr's Blessing 4 ea +Rare Pet Spirit Fragment 5 ea +-------------------------- +Weight: 0 +# +2200083# +The Box containing +-------------------------- +[R] Pet Guaranteed Scroll 1 ea +[Event] Mental Potion 15 ea +[Event] Small Mana Potion 30 ea +-------------------------- +Weight: 0 +# +2200084# +The Box containing +-------------------------- +[Event] Infinity Drink 5 ea +[Event] Limit Power Booster 3 ea +[Event] Red Booster 5 ea +[Event] Mystic Powder 3 ea +[Event] Tyr's Blessing 3 ea +-------------------------- +Weight: 0 +# +2200085# +The Box containing +-------------------------- +Blessing Ore Convex Mirror 20 ea +Vybranium Blessing 30 ea +[Event] Unlimited Fly Wing Box (2Hrs) 3 ea +-------------------------- +Weight: 0 +# +2200086# +The Box containing +-------------------------- +Enriched Elunium 2 ea +Enriched Oridecon 2 ea +Eluminum Box 2 ea +Oridecon Box 2 ea +[R] Pet Guaranteed Scroll 3 ea +-------------------------- +Weight: 0 +# +2200087# +The Box containing +-------------------------- +[Event] HE Battle Manual 1 ea +[Event] HE Bubble Gum 2 ea +[Event] Battle Manual 3 ea +[Event] Bubble Gum 5 ea +Advanced WoE Supply Box 5 ea +-------------------------- +Weight: 0 +# +2200088# +The Box containing +-------------------------- +[Event] Mental Potion 15 ea +[Event] Small Mana Potion 30 ea +Rare Pet Spirit Fragment 5 ea +-------------------------- +Weight: 0 +# +2200089# +The Box containing +-------------------------- +[Event] Small Life Potion 20 ea +[Event] Medium Life Potion 20 ea +[Event] Mysterious Life Potion 20 ea +Rare Pet Spirit Fragment 10 ea +-------------------------- +Weight: 0 +# +2200090# +The Box containing +-------------------------- +Automatic Battle Box 30 Day 1 ea +[Event] Infinity Drink 10 ea +[Event] Limit Power Booster 4 ea +[Event] Red Booster 10 ea +[Event] Mystic Powder 4 ea +[Event] Tyr's Blessing 4 ea +-------------------------- +Weight: 0 +# +2200091# +The Box containing +-------------------------- +Title - Wind of Heaven (Allstats+3) 1 ea +Gym pass 1 ea +Inventory Extension Coupon 1 ea +[Event] Battle Manual 5 ea +[Event] Bubble Gum 5 ea +Terra Nova Box 2 ea +Soul of Abyss 20 ea +-------------------------- +Additional +3 Vybr Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +2200092# +The Box containing +-------------------------- +Blessing Ore Convex Mirror 20 ea +Vybranium Blessing 30 ea +[Event] Unlimited Fly Wing Box (2Hrs) 3 ea +HD Bradium 3 ea +HD Carnium 3 ea +-------------------------- +Weight: 0 +# +2200093# +The Box containing +-------------------------- +Enriched Elunium 1 ea +Enriched Oridecon 1 ea +Eluminum Box 2 ea +Oridecon Box 2 ea +-------------------------- +Weight: 0 +# +2200094# +The Box containing +-------------------------- +[Event] HE Battle Manual 1 ea +[Event] HE Bubble Gum 2 ea +[Event] Battle Manual 3 ea +[Event] Bubble Gum 5 ea +Advanced WoE Supply Box 5 ea +-------------------------- +Weight: 0 +# +2200095# +The Box containing +-------------------------- +[Event] Mental Potion 15 ea +[Event] Small Mana Potion 30 ea +Advanced WoE Supply Box 5 ea +-------------------------- +Weight: 0 +# +2200096# +The Box containing +-------------------------- +[Event] New Pet Scroll 10 ea +[Event] Small Life Potion 30 ea +[Event] Medium Life Potion 30 ea +[Event] Mysterious Life Potion 30 ea +-------------------------- +Weight: 0 +# +2200097# +The Box containing +-------------------------- +[Event] Automatic Play Box 7 Days 1 ea +[Event] Increase Agility Scroll Box (10) 5 ea +[Event] Blessing Scroll Box (10) 5 ea +[Event] Guyak Pudding 5 ea +[Event] Big Bun 50 ea +[Event] Pill 50 ea +-------------------------- +Weight: 0 +# +2200098# +The Box containing +-------------------------- +[Event] Infinity Drink 5 ea +[Event] Limit Power Booster 3 ea +[Event] Red Booster 5 ea +[Event] Mystic Powder 3 ea +[Event] Tyr's Blessing 3 ea +Terra Nova Box 4 ea +Soul of Abyss 25 ea +-------------------------- +Weight: 0 +# +2200099# +The Box containing +-------------------------- +Blessing Ore Convex Mirror 20 ea +Vybranium Blessing 30 ea +[Event] Unlimited Fly Wing Box (2Hrs) 3 ea +HD Bradium 3 ea +HD Carnium 3 ea +-------------------------- +Weight: 0 +# +2200100# +The Box containing +-------------------------- +Vybranium Blessing 30 ea +New Pet Scroll 10 ea +[Event] Battle Manual 3 ea +[Event] Bubble Gum 10 ea +-------------------------- +Weight: 0 +# +2200101# +The Box containing +-------------------------- +True Red Booster 1 ea +[Event] Red Booster 10 ea +[Event] Guyak Pudding 5 ea +[Event] Big Bun 50 ea +[Event] Pill 50 ea +-------------------------- +Weight: 0 +# +2200102# +The Box containing +-------------------------- +True Tyr's Blessing 1 ea +Tyr's Blessing 5 ea +[Event] Guyak Pudding 5 ea +[Event] Big Bun 50 ea +[Event] Pill 50 ea +-------------------------- +Weight: 0 +# +2200103# +The Box containing +-------------------------- +True Infinity Drink 1 ea +Infinity Drink 10 ea +[Event] Guyak Pudding 5 ea +[Event] Big Bun 50 ea +[Event] Pill 50 ea +-------------------------- +Weight: 0 +# +2200104# +The Box containing +-------------------------- +True Limit Power Booster 2 ea +Limit Power Booster 2 ea +[Event] Guyak Pudding 5 ea +[Event] Big Bun 50 ea +[Event] Pill 50 ea +-------------------------- +Weight: 0 +# +2200105# +The Box containing +-------------------------- +Holy Elemental Scroll 5 ea +Undead Elemental Scroll 5 ea +Concentration Scroll 10 ea +[Event] Guyak Pudding 5 ea +[Event] Big Bun 50 ea +[Event] Pill 50 ea +-------------------------- +Weight: 0 +# +2200106# +The Box containing +-------------------------- +Enriched Elunium 1 ea +Enriched Oridecon 1 ea +Eluminum Box 2 ea +Oridecon Box 2 ea +Epic Pet Spirit Fragment 5 ea +Worn Out Limit Break Scroll 5 ea +-------------------------- +Weight: 0 +# +2200107# +The Box containing +-------------------------- +Vybranium Blessing 50 ea +Epic Pet Spirit Fragment 5 ea +-------------------------- +Weight: 0 +# +2200108# +The Box containing +-------------------------- +Vybranium Blessing 50 ea +Epic Pet Spirit Fragment 5 ea +Blessed Vybranium Dust 10 ea +-------------------------- +Weight: 0 +# +2200109# +The Box containing +-------------------------- +Vybranium Blessing 50 ea +Epic Pet Spirit Fragment 5 ea +Legendary Pet Spirit Fragment 3 ea +-------------------------- +Weight: 0 +# +2200110# +The Box containing +-------------------------- +Vybranium Blessing 50 ea +Epic Pet Spirit Fragment 5 ea +Blessed Vybranium Dust 10 ea +-------------------------- +Weight: 0 +# +2200111# +The Box containing +-------------------------- +Costume: Aura of Tornado 1 ea +Epic Pet Spirit Fragment 25 ea +Vybranium Blessing 299 ea +BP Choose 1 ea +-------------------------- +Weight: 0 +# +2200112# +Use it for activate title Title : Wind of Heaven +-------------------------- +All Stats +3 +-------------------------- +Type: Title Giver +Weight: 1 +# +2200113# +Use this crystal to earn 1 Season 6 Premium Battlepass point. +-------------------------- +Weight: 0 +# +2200114# +Use this crystal to earn 1 Season 6 Premium Battlepass point. +-------------------------- +Weight: 0 +# +2200115# +Use this item to combine 3 BP Air Fragment into a BP Fresh Air. +-------------------------- +Weight: 0 +# +2200116# +Use this heart to earn 1 Season 3 Battlepass - Quest point. +-------------------------- +Weight: 0 +# +2200117# +Invitation Book to Unlock Premium Pass Season 6, created for everyone to have fun and receive various rewards +Use it to activate the Premium Battle Pass. +-------------------------- +Weight: 0 +# +2200118# +Invitation Book to Join Battle Pass Season 6, created for everyone to have fun and receive various rewards. +Use it to activate the Quest Battle Pass. +-------------------------- +Weight: 0 +# +2200119# +A box which contains +-------------------------- +Boarding Halter Box 3D 1ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Additional +2 Adam Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +2200120# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Yellow Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +2200121# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200122# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +2200123# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +2200124# +A box which contains +-------------------------- +Unlimited Fly Wing Box (2Hrs) 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +2200125# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200126# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Weight: 0 +# +2200127# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Yellow Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +2200128# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +[Event] Zephyr Crystal 10ea +-------------------------- +Weight: 0 +# +2200129# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +2200130# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +2200131# +A box which contains +-------------------------- +Unlimited Fly Wing Box (2Hrs) 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +2200132# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200133# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Boarding Halter Box 3D 1ea +[R] Pet Guaranteed Scroll 1ea +-------------------------- +Weight: 0 +# +2200134# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Yellow Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +2200135# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200136# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +2200137# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +2200138# +A box which contains +-------------------------- +Unlimited Fly Wing Box (2Hrs) 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +[Event] Zephyr Crystal 10ea +-------------------------- +Weight: 0 +# +2200139# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200140# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Weight: 0 +# +2200141# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Yellow Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +2200142# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200143# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +2200144# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +2200145# +A box which contains +-------------------------- +Unlimited Fly Wing Box (2Hrs) 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +2200146# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200147# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Boarding Halter Box 3D 1ea +-------------------------- +Weight: 0 +# +2200148# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Yellow Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +[Event] Zephyr Crystal 10ea +-------------------------- +Weight: 0 +# +2200149# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200150# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +2200151# +A box which contains +-------------------------- +Adamantine Blessing 30ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +2200152# +A box which contains +-------------------------- +Unlimited Fly Wing Box (2Hrs) 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +2200153# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200154# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Weight: 0 +# +2200155# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Yellow Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +2200156# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200157# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +2200158# +A box which contains +-------------------------- +Adamantine Blessing 30ea +Elunium 2ea +Oridecon 2ea +[Event] Zephyr Crystal 10ea +-------------------------- +Weight: 0 +# +2200159# +A box which contains +-------------------------- +Unlimited Fly Wing Box (2Hrs) 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +2200160# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200161# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Boarding Halter Box 3D 1ea +-------------------------- +Weight: 0 +# +2200162# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Yellow Potion Box(50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +2200163# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200164# +A box which contains +-------------------------- +Stamina Elixir 1ea +Token of Siegfried 1ea +Life Insurance 1ea +Blessing Ore Mirror 2ea +-------------------------- +Weight: 0 +# +2200165# +A box which contains +-------------------------- +Adamantine Blessing 30ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +2200166# +A box which contains +-------------------------- +Unlimited Fly Wing Box (2Hrs) 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +2200167# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200168# +A box which contains +-------------------------- +Costume Wind Prairie 1ea +[R] Pet Guaranteed Scroll 2ea +Adamantine Blessing 50ea +Nightmare Coin 1ea +Fierce Coin 1ea +Soul of Abyss 10ea +Robot Coin 1ea +Rusty Coin 1ea +[Event] Zephyr Crystal 10ea +-------------------------- +Weight: 0 +# +2200169# +A box which contains +-------------------------- +[R] Pet Guaranteed Scroll 1ea +Kafra Buff(1 Day) 2ea +Mental Potion 5ea +Small Mana Potion 10ea +[Event] Increase Agility Scroll Box (10) 1ea +[Event] Blessing Scroll Box (10) 1ea +Adamantine Blessing 30ea +-------------------------- +Weight: 0 +# +2200170# +A box which contains +-------------------------- +Small Life Potion 10ea +Medium Life Potion 10ea +Mysterious Life Potion 10ea +-------------------------- +Weight: 0 +# +2200171# +A box which contains +-------------------------- +Blessing Ore Convex Mirror 10ea +Adamantine Blessing 30ea +Unlimited Fly Wing Box (2Hrs) 2ea +-------------------------- +Weight: 0 +# +2200172# +A box which contains +-------------------------- +[Event] HE Battle Manual 2ea +[Event] Battle Manual 5ea +Rare Pet Spirit Fragment 5ea +-------------------------- +Weight: 0 +# +2200173# +A box which contains +-------------------------- +[Event] HE Bubble Gum 2ea +[Event] Bubble Gum 5ea +White Shirt [1] 1ea +-------------------------- +Weight: 0 +# +2200174# +A box which contains +-------------------------- +Advanced WoE Supply Box 2ea +Mental Potion 5ea +Small Mana Potion 10ea +-------------------------- +Weight: 0 +# +2200175# +A box which contains +-------------------------- +Small Life Potion 30ea +Medium Life Potion 30ea +Mysterious Life Potion 30ea +Unlimited Fly Wing Box (2Hrs) 1ea +[R] Pet Guaranteed Scroll 3ea +-------------------------- +Weight: 0 +# +2200176# +A box which contains +-------------------------- +[R] Pet Guaranteed Scroll 3ea +Rare Pet Spirit Fragment 10ea +-------------------------- +Weight: 0 +# +2200177# +A box which contains +-------------------------- +Red Booster 5ea +Mystic Powder 5ea +Tyr's Blessing 5ea +-------------------------- +Weight: 0 +# +2200178# +A box which contains +-------------------------- +Blessing Ore Convex Mirror 20ea +Adamantine Blessing 30ea +Unlimited Fly Wing Box (2Hrs) 2ea +-------------------------- +Weight: 0 +# +2200179# +A box which contains +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Eluminum Box 2ea +Oridecon Box 2ea +-------------------------- +Weight: 0 +# +2200180# +A box which contains +-------------------------- +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Battle Manual 3ea +[Event] Bubble Gum 5ea +-------------------------- +Weight: 0 +# +2200181# +A box which contains +-------------------------- +Limit Power Booster 2ea +Infinity Drink 2ea +Mental Potion 5ea +Small Mana Potion 10ea +-------------------------- +Weight: 0 +# +2200182# +A box which contains +-------------------------- +Small Life Potion 30ea +Medium Life Potion 30ea +Mysterious Life Potion 30ea +Unlimited Fly Wing Box (2Hrs) 2ea +[R] Pet Guaranteed Scroll 1ea +-------------------------- +Weight: 0 +# +2200183# +A box which contains +-------------------------- +Costume Ancient Civil Man Hat 1ea +Enriched Elunium 1ea +Enriched Oridecon 1ea +Boarding Halter Box 7D 1ea +Adamantine Blessing 60ea +-------------------------- +Additional +2 Adam Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +2200184# +A box which contains +-------------------------- +Infinity Drink 5ea +Limit Power Booster 3ea +Red Booster 5ea +Mystic Powder 3ea +Tyr's Blessing 3ea +Rare Pet Spirit Fragment 10ea +-------------------------- +Weight: 0 +# +2200185# +A box which contains +-------------------------- +Blessing Ore Convex Mirror 20ea +Adamantine Blessing 30ea +Unlimited Fly Wing Box (2Hrs) 2ea +Eluminum Box 2ea +Oridecon Box 2ea +-------------------------- +Weight: 0 +# +2200186# +A box which contains +-------------------------- +Small Life Potion 50ea +Medium Life Potion 50ea +Mysterious Life Potion 50ea +Unlimited Fly Wing Box (2Hrs) 3ea +[R] Pet Guaranteed Scroll 3ea +-------------------------- +Weight: 0 +# +2200187# +A box which contains +-------------------------- +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Battle Manual 3ea +[Event] Bubble Gum 5ea +-------------------------- +Weight: 0 +# +2200188# +A box which contains +-------------------------- +Mental Potion 5ea +Small Mana Potion 10ea +Advanced WoE Supply Box 5ea +Rare Pet Spirit Fragment 10ea +[R] Pet Guaranteed Scroll 1ea +-------------------------- +Weight: 0 +# +2200189# +A box which contains +-------------------------- +Costume Valhalla Idol 1ea +Infinity Drink 10ea +Limit Power Booster 4ea +Red Booster 10ea +Mystic Powder 4ea +Tyr's Blessing 4ea +Rare Pet Spirit Fragment 5ea +-------------------------- +Weight: 0 +# +2200190# +A box which contains +-------------------------- +[R] Pet Guaranteed Scroll 1ea +Mental Potion 15ea +Small Mana Potion 30ea +-------------------------- +Weight: 0 +# +2200191# +A box which contains +-------------------------- +Infinity Drink 5ea +Limit Power Booster 3ea +Red Booster 5ea +Mystic Powder 3ea +Tyr's Blessing 3ea +-------------------------- +Weight: 0 +# +2200192# +A box which contains +-------------------------- +Blessing Ore Convex Mirror 20ea +Adamantine Blessing 30ea +Unlimited Fly Wing Box (2Hrs) 3ea +-------------------------- +Weight: 0 +# +2200193# +A box which contains +-------------------------- +Enriched Elunium 2ea +Enriched Oridecon 2ea +Eluminum Box 2ea +Oridecon Box 2ea +[R] Pet Guaranteed Scroll 3ea +Terra Nova Box 3ea +Soul of Abyss 20ea +-------------------------- +Additional +3 Adam Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +2200194# +A box which contains +-------------------------- +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Battle Manual 3ea +[Event] Bubble Gum 5ea +Advanced WoE Supply Box 5ea +-------------------------- +Weight: 0 +# +2200195# +A box which contains +-------------------------- +Mental Potion 15ea +Small Mana Potion 30ea +Rare Pet Spirit Fragment 5ea +Epic Pet Spirit Fragment 5ea +-------------------------- +Weight: 0 +# +2200196# +A box which contains +-------------------------- +Small Life Potion 20ea +Medium Life Potion 20ea +Mysterious Life Potion 20ea +Rare Pet Spirit Fragment 10ea +Epic Pet Spirit Fragment 5ea +-------------------------- +Weight: 0 +# +2200197# +A box which contains +-------------------------- +Automatic Battle Box 30 Day 1ea +Infinity Drink 10ea +Limit Power Booster 4ea +Red Booster 10ea +Mystic Powder 4ea +Tyr's Blessing 4ea +Epic Pet Spirit Fragment 5ea +-------------------------- +Weight: 0 +# +2200198# +A box which contains +-------------------------- +Title - Wind of Heaven (Allstats+3) 1ea +Gym pass 1ea +Inventory Extension Coupon 1ea +[Event] Battle Manual 5ea +[Event] Bubble Gum 5ea +Epic Pet Spirit Fragment 10ea +Terra Nova Box 4ea +Soul of Abyss 30ea +-------------------------- +Additional +3 Adam Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +2200199# +A box which contains +-------------------------- +Blessing Ore Convex Mirror 20ea +Adamantine Blessing 30ea +Unlimited Fly Wing Box (2Hrs) 3ea +HD Bradium 3ea +HD Carnium 3ea +-------------------------- +Weight: 0 +# +2200200# +A box which contains +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Eluminum Box 2ea +Oridecon Box 2ea +-------------------------- +Weight: 0 +# +2200201# +A box which contains +-------------------------- +[Event] HE Battle Manual 2ea +[Event] HE Bubble Gum 2ea +[Event] Battle Manual 3ea +[Event] Bubble Gum 5ea +Advanced WoE Supply Box 5ea +-------------------------- +Weight: 0 +# +2200202# +A box which contains +-------------------------- +Mental Potion 15ea +Small Mana Potion 30ea +Advanced WoE Supply Box 5ea +-------------------------- +Weight: 0 +# +2200203# +A box which contains +-------------------------- +New Pet Scroll 10ea +Small Life Potion 40ea +Medium Life Potion 40ea +Mysterious Life Potion 40ea +-------------------------- +Weight: 0 +# +2200204# +A box which contains +-------------------------- +[Event] Automatic Play Box 7 Days 1ea +[Event] Increase Agility Scroll Box (10) 5ea +[Event] Blessing Scroll Box (10) 5ea +[Event] Guyak Pudding 5ea +[Event] Big Bun 50ea +[Event] Pill 50ea +-------------------------- +Weight: 0 +# +2200205# +A box which contains +-------------------------- +Infinity Drink 5ea +Limit Power Booster 3ea +Red Booster 5ea +Mystic Powder 3ea +Tyr's Blessing 3ea +-------------------------- +Weight: 0 +# +2200206# +A box which contains +-------------------------- +Blessing Ore Convex Mirror 20ea +Adamantine Blessing 30ea +Unlimited Fly Wing Box (2Hrs) 3ea +HD Bradium 3ea +HD Carnium 3ea +-------------------------- +Weight: 0 +# +2200207# +A box which contains +-------------------------- +Adamantine Blessing 30ea +New Pet Scroll 10ea +[Event] Battle Manual 3ea +[Event] Bubble Gum 10ea +-------------------------- +Weight: 0 +# +2200208# +A box which contains +-------------------------- +True Red Booster 1ea +Red Booster 10ea +[Event] Guyak Pudding 5ea +[Event] Big Bun 50ea +[Event] Pill 50ea +-------------------------- +Weight: 0 +# +2200209# +A box which contains +-------------------------- +True Tyr's Blessing 1ea +Tyr's Blessing 5ea +[Event] Guyak Pudding 5ea +[Event] Big Bun 50ea +[Event] Pill 50ea +-------------------------- +Weight: 0 +# +2200210# +A box which contains +-------------------------- +True Infinity Drink 1ea +Infinity Drink 10ea +[Event] Guyak Pudding 5ea +[Event] Big Bun 50ea +[Event] Pill 50ea +-------------------------- +Weight: 0 +# +2200211# +A box which contains +-------------------------- +True Limit Power Booster 2ea +Limit Power Booster 2ea +[Event] Guyak Pudding 5ea +[Event] Big Bun 50ea +[Event] Pill 50ea +-------------------------- +Weight: 0 +# +2200212# +A box which contains +-------------------------- +Holy Elemental Scroll 5ea +Undead Elemental Scroll 5ea +Concentration Scroll 10ea +[Event] Guyak Pudding 5ea +[Event] Big Bun 50ea +[Event] Pill 50ea +Terra Nova Box 4ea +Soul of Abyss 25ea +-------------------------- +Weight: 0 +# +2200213# +A box which contains +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Eluminum Box 2ea +Oridecon Box 2ea +Epic Pet Spirit Fragment 5ea +Worn Out Limit Break Scroll 5ea +-------------------------- +Weight: 0 +# +2200214# +A box which contains +-------------------------- +Adamantine Blessing 50ea +Epic Pet Spirit Fragment 5ea +-------------------------- +Weight: 0 +# +2200215# +A box which contains +-------------------------- +Adamantine Blessing 50ea +Epic Pet Spirit Fragment 5ea +Blessed Adamantine Dust 10ea +-------------------------- +Weight: 0 +# +2200216# +A box which contains +-------------------------- +Adamantine Blessing 50ea +Epic Pet Spirit Fragment 5ea +Legendary Pet Spirit Fragment 3ea +-------------------------- +Weight: 0 +# +2200217# +A box which contains +-------------------------- +Adamantine Blessing 50ea +Epic Pet Spirit Fragment 5ea +Blessed Adamantine Dust 10ea +-------------------------- +Weight: 0 +# +2200218# +A box which contains +-------------------------- +Costume Aura of Tornado 1ea +Epic Pet Spirit Fragment 25ea +Adamantine Blessing 299ea +BP Choose 1ea +-------------------------- +Weight: 0 +# +2200219# +When used, you can Choose +-------------------------- +[Obtainable Items] +Nightmare Coin 1ea +Fierce Coin 1ea +-------------------------- +Type: Usable +Weight: 0 +# +2200220# +Bronze treasure chest that contains various of items +-------------------------- +Will receive item to exchange in BP Shop once opened +-------------------------- +Type: Item Giver +Weight: 0 +# +2200221# +Silver treasure chest that contains various of items. Might get something good once opened +-------------------------- +Will receive item to exchange in BP Shop once opened +-------------------------- +Type: Item Giver +Weight: 0 +# +2200222# +Gold treasure chest that contains plenty of luxury items +-------------------------- +Will receive item to exchange in BP Shop once opened +-------------------------- +Type: Item Giver +Weight: 0 +# +2200223# +An egg adorned with beautiful pink floral patterns +Try opening it—you might discover something good for your life +-------------------------- +Warning: Not salt, give it a try!!!!!!!! +Type: Item Giver +Weight: 1 +# +2200224# +[October] First Refill Box 10ION +A box that contains. +-------------------------- +Mental Potion 5 ea +[Event] Small Mana Potion 10 ea +[Event] Battle Manual & Bubble Gum 3 ea +[Event] Token of Siegfried 3 ea +-------------------------- +Weight:0 +# +2200225# +[October] First Refill Box 30ION +A box that contains. +-------------------------- +[Event] Automatic Player Box 30 Days 1ea +Kafra Buff (1 Day) 1ea +[Event] HE Battle Manual 3ea +[Event] Happy Balloon (30 Days) Box 1ea +-------------------------- +Weight: 0 +# +2200226# +Rental +[Event] Happy Balloon (30Days) +-------------------------- +A box that contains. +-------------------------- +[Event] Happy Balloon (30Days) 1ea +-------------------------- +All Stats +3 +MATK +30 +ATK +30 +EXP +50% +DROP +15% +-------------------------- +Increses Movement Speed by 15% +-------------------------- +Weight: 0 +# +2200227# +A box that contains. +-------------------------- +Level 10 Blessing Scroll 10ea +Level 10 Increase Agility Scroll 10ea +[Event] Mysterious Life Potion 10ea +-------------------------- +Weight: 0 +# +2200228# +A box that contains. +-------------------------- +New Pet Scroll 10ea +Boarding Halter Box 7D 1ea +[Event] HE Bubble Gum 3ea +Combat Pill 10ea +-------------------------- +Weight: 0 +# +2200229# +A box that contains. +-------------------------- +[R] Pet Spirit Guarantee Scroll 6ea +Cold Medicine 10ea +[Event] Token of Siegfried 7ea +-------------------------- +Weight: 0 +# +2200230# +A box that contains. +-------------------------- +[Event] Guyak Pudding 15ea +True Mental Potion 2ea +True Infinity Drink 2ea +True Red Booster 2ea +Kafra Buff (1 Day) 2ea +Adamantine Blessing 150ea +-------------------------- +Weight: 0 +# +2200231# +A box that contains. +-------------------------- +Adamantine Blessing 300ea +Enriched Elunium 2ea +Enriched Oridecon 2ea +[Event] Supply Big Bun& Pill Box 2ea +1st ROL Aniversary Scroll 1ea +-------------------------- +Weight: 0 +# +2200232# +To Transcendent Class Coming ! +-------------------------- +All Stats +3 +HIT +10 +FLEE +10 +-------------------------- +Physical & Magical damage to all class enemies +3% +-------------------------- +Increases experience gained from defeating all monsters by 15% +Increases drop rate gained from defeating all monsters by 15% +-------------------------- +(Period expired 30 Days after use Scroll) +-------------------------- +Weight: 0 +# +2200233# +A box that contains. +-------------------------- +[Event] Yellow Potion 50ea +-------------------------- +Weight: 0 +# +2200234# +The Box that contains +-------------------------- +Blessing Scroll 10 ea +Increase Agility Scroll 10 ea +Boarding Halter Box 3D 1 ea +New Pet Scroll 3 ea +-------------------------- +Weight: 0 +# +2200235# +The Box that contains +-------------------------- +[Event] Red Booster 5 ea +[R] Pet Spirit Guarantee Scroll 3 ea +Elite Siege Supply Box 3 ea +-------------------------- +Weight: 0 +# +2200236# +The Box that contains +[Event] Power Booster 3 ea +[Event] Guyak Pudding 15 ea +[Event] Kafra Buff(7 Days) 1 ea +[Event] HE Bubble Gum 2 ea +-------------------------- +Weight: 0 +# +2200237# +The Box that contains +-------------------------- +Enriched Elunium 1 ea +Enriched Oridecon 1 ea +Special October Scroll (30 Days) 1 ea +-------------------------- +Weight: 0 +# +2200238# +The Box that contains +-------------------------- +Character Slot Expansion Coupon 1 ea +-------------------------- +Weight: 0 +# +2200239# +ATK +5 +MATK +5 +Aspd +1 +Restores 50 HP every 10 seconds +-------------------------- +Increases experience gained from defeating all monsters by 5% +Increases drop rate gained from defeating all monsters by 5% +-------------------------- +(Expires after use 30 Days) +-------------------------- +(Monthly buffs cannot be stacked) +-------------------------- +Weight: 0 +# +2200240# +A box that contains +Adamantine Blessing 30 ea +-------------------------- +Adamantine Blessing cannot be traded +-------------------------- +Weight: 0 +# +2200241# +A scroll imbued with the blessings of the goddess Freya. +Unveil it to receive divine power that +enhances the user's strength. +-------------------------- +Type: Item Giver +Weight: 1 +# +2200244# +A box containing +-------------------------- +Infinity Drink 5ea +Red Booster 5ea +[Event] Mystic Powder 5ea +[Event] Elite Siege Supply Box 5ea +-------------------------- +Weight: 0 +# +2200245# +A box containing +-------------------------- +[R] Pet Spirit Guarantee Scroll 4ea +[Event] HE Battle Manual 3ea +[Event] HE Bubble Gum 3ea +True Tyr's Blessing 2ea +-------------------------- +Weight: 0 +# +2200246# +A box containing +-------------------------- +Enriched Elunium 2ea +Enriched Oridecon 2ea +Adamantine Blessing 300ea +Holgren's Shadow Smelting Hammer 3ea +Weapon +7 Refine Ticket 1ea +Armor +7 Refine Ticket 1ea +-------------------------- +Weight: 0 +# +2200247# +A box containing +-------------------------- +- [Event] Rare Lucky Pet Spirit Scroll 25% 1 ea +- [Event] New Pet Scroll 8 ea +-------------------------- +Weight: 0 +# +2200248# +Random +-------------------------- +[R] Pet Spirit Guaranteed Scroll 1ea +Or +[Event] Pet Scroll 2ea +-------------------------- +Weight: 0 +# +2200249# +The Box containing +-------------------------- +[Event] HE Battle Manual 5 ea +Battle Manual 75% 10 ea +-------------------------- +Weight: 0 +# +2200252# +Mandarin Orange Tea with Cream Cheese! Increases refreshment with high-quality oranges paired with famous cream cheese! +Helps restore 3% HP & 1% SP. +Every 20 seconds +For a duration of 5 minutes +Warning! Consume in moderation—it's so delicious, you might get addicted! +-------------------------- +The item will be removed after December 31, 2024. +-------------------------- +Cannot be traded. +Weight: 3 +# +2200253# +The Box that contains +[Event] Rare Lucky Pet Scroll 25% 1ea +[Event] Battle Manual & Bubble Gum 5ea +[Event] Increase Agility Scroll 10ea +[Event] Blessing Scroll 10ea +[Event] Token of Siegfried 5ea +-------------------------- +Weight: 0 +# +2200254# +The Box that contains +Costume Nose Tea Cap 1ea +Nose Tea Pet Egg 1ea +Vybranium blessing 50ea +[Event] Adventure Scroll 1ea +[Event] Small Mana Potion 5ea +-------------------------- +Weight: 0 +# +2200255# +The Box containing +Elite Siege Supply Box 5ea +-------------------------- +Weight: 0 +# +2200256# +The Box contains the following items +Life Potion Package 5ea +-------------------------- +Weight: 0 +# +2200257# +The Box contains the following items +[Event] Adventure ROL Scroll 5ea +-------------------------- +Weight: 0 +# +2200258# +The Box contains the following items +[Event] Small Life Potion Box 10ea +[Event] Medium Life Potion Box 10ea +[Event] Mysterious Life Potion 10ea +-------------------------- +Weight: 0 +# +2200259# +An egg with the knight's cross symbol +Give it a try! You might find something good inside +-------------------------- +Type: Item Giver +Weight: 1 +# +2200260# +The Box containing +-------------------------- +-[R] Pet Spirit Guarantee Scroll 3 ea +-Elite Siege Supply Box 5 ea +-Small Mana Potion 15 ea +-Hollgrehenn's Shadow Refine Hammer 3 ea +-------------------------- +Weight: 0 +# +2200261# +The Box containing +-------------------------- +-Enriched Elunium 1 ea +-Enriched Oridecon 1 ea +-Archangel Wings [1] 1 ea +-Monster Balloon Box 2 1 ea +-------------------------- +Weight: 0 +# +2200262# +The Box containing Balloon Various forms available +The Box contains a total of 6 types of Balloons +-------------------------- +- Odacious Angeling Balloon +- Deviruchi Balloon +- Drops Balloon +- Metalring Balloon +- Santa Poring Balloon +- Poring Balloon +-------------------------- +Weight: 0 +# +2200263# +The Box containing Unlimited Fly Wing 1 ea, Which can be used for 14 days +-------------------------- +Rental item +Wings cut from a fly, used to create a magic-casting item You can teleport anywhere on the map using this item +-------------------------- +Weight: 1 +# +2200264# +A scroll which a single use of +Level 3 Document of Sun Moon and Star +has been recorded. +-------------------------- +Resets the maps and monsters selected for Solar, Lunar, and Stellar Feeling/Hatred. +Subject to 60 seconds cooldown. +-------------------------- +Weight: 0 +# +2200265# +A scroll which instructions on how to use +Level 3 Document of Sun Moon and Star +has been recorded. +-------------------------- +Resets the maps and monsters selected for Solar, Lunar, and Stellar Feeling/Hatred. +Subject to 60 seconds cooldown. +-------------------------- +Weight: 0 +# +2200266# +A box containing +-------------------------- +Unlimited Document of Sun Moon and Star Scroll +with a rental duration of 30 days. +-------------------------- +Weight: 0 +# +2200267# +Use it for activate title Title : Ragnarok Festa +-------------------------- +All Stats +1 +HIT +2 +FLEE +2 +ATK +2 +MATK +2 +-------------------------- +Type: Title Giver +Weight: 1 +# +2200268# +A box containing +-------------------------- +- RoFes Balloon 1 ea +- [Event] Scholar's Ring Box (7Day) 1 ea +- Title: Ragnarok Festa 1 ea +- [Event] Unlimited Fly Wing Box (7 Days) 1 ea +- [Event] Automatic Player Box 7 Day 1 ea +- [R] Pet Spirit Guarantee Scroll 1 ea +-------------------------- +Weight: 0 +# +2200269# +Unlock superior hunting experiences +with a chance to acquire legendary gear! +-------------------------- +Type: Item Giver +Weight: 1 +# +2200270# +Use it for activate title Title: (*>_>) +-------------------------- +All Stats +3 +HP + 1% SP + 1% +-------------------------- +Type: Title Giver +Weight: 1 +# +2200271# +Use it for activate title Title: (๐^_^๐) +-------------------------- +All Stats +5 +HP + 1% SP + 1% +-------------------------- +Type: Title Giver +Weight: 1 +# +2200272# +ROLC2024 Costume Select Box Tier A +-------------------------- +Costume ROL Championship Sword +Costume ROL Championship Crown +Costume ROL Luna Championship +-------------------------- +Type: Usable +Weight: 0 +# +2200273# +ROLC2024 Costume Select Box Tier S +-------------------------- +Costume ROL Championship Sword + +Costume ROL Championship Crown + +Costume ROL Luna Championship + +-------------------------- +Type: Usable +Weight: 0 +# +2200274# +A box containing +-------------------------- +- ROLC2024 Costume Select Box Tier A 1ea +- [Event] Premium Ration Service Box 1ea +- [Event] Unlimited Fly Wing Box (7 Days) 1ea +- [Event] Kafra Buff (7Day) 2ea +- [Event] Boarding Halter (14 Days) 1ea +- [R] Pet Spirit Guarantee Scroll 1ea +- New Pet Box 1ea +- [Event] HE Battle Manual 3ea +- Silvervine 10ea +-------------------------- +Weight: 0 +# +2200275# +A box containing +-------------------------- +- ROLC2024 Costume Select Box Tier S 1ea +- [Event] Unlimited Fly Wing Box (14 Days) 2ea +- [R] Pet Spirit Guarantee Scroll 4ea +- Refine Pack 2ea +- [Event] Kafra Buff (7Day) 2ea +- [Event] HE Battle Manual 10ea +- [Event] Kafra Buff (7Day) 3ea +- New Pet Box 1ea +-------------------------- +Weight: 0 +# +2200276# +A box containing +-------------------------- +- Title: (*>_>) 1ea +- [Event] Mental Potion 10ea +- [Event] Small Mana potion 15ea +- [Event] Elite Siege Supply Box 10ea +- [R] Pet Spirit Guarantee Scroll 2ea +- Refine Pack 1ea +-------------------------- +Weight: 0 +# +2200277# +A box containing +-------------------------- +- Title: (๐^_^๐) 1ea +- Adamamntine Blessing 300ea +- Refine Pack 3ea +- [R] Pet Spirit Guarantee Scroll 6ea +- [Event] Kafra Buff (7Day) 2ea +- [Event] Scholar's Ring Box (30 Day) 1ea +-------------------------- +Weight: 0 +# +2200278# +A box containing +-------------------------- +- [Event] Character Slot Expansion Coupon 1ea +- [Event] Gym Pass 1ea +- [Event] Inventory Expansion Voucher 1ea +-------------------------- +Weight: 0 +# +2200279# +A box containing 1 Boarding Halter. Available for 14 days. +-------------------------- +A mysterious halter that can be used to summon a creature to ride on it. +The type of creature depends on the Class. +-------------------------- +Weight: 0 +# +2200280# +A box containing one Unlimited Fly Wing, which can be used for 14 day. +-------------------------- +Rental Item +The wings cut from fly to be made into enchanted item. You can warp anywhere on the map using this item. +-------------------------- +Weight: 0 +# +2200281# +Box containing special snacks +When opened You will receive delicious snacks. +(Random Biscuit stick STR, AGI, INT, DEX, LUK, VIT, = 1 Type, 5 ea) +-------------------------- +Weight: 0 +# +2200282# +When opened, you will receive 1 random Zodiac Headgear +-------------------------- +- Aquarius Crown +- Pisces Crown +- Aries Crown [1] +- Taurus Crown +- Gemini Crown [1] +- Cancer Crown +- Leo Crown +- Virgo Crown +- Libra Crown +- Scorpio Crown +- Sagittarius Crown [1] +- Capricorn Crown [1] +-------------------------- +Weight: 0 +# +2200283# +When opened, you will randomly receive a beautiful and rare Costume, which includes the following +-------------------------- +- Costume Blessing Of Angels +- Costume Sword of Thanatos +- Costume Rudra's Majestic Goat +- Costume Rudra's Wings +- Costume Master of Light and Darkness +- Costume Fallen Angel Wings +- Costume: Choco Chip Cookies +- Costume Ancient Resonance +- Costume Giant Shuriken +- Costume Digital Space +-------------------------- +Weight: 0 +# +2200284# +When opened, you will randomly receive +- Wind Armor Scroll +- Water Armor Scroll +- Fire Armor Scroll +- Earth Armor Scroll +-------------------------- +Weight: 0 +# +2200285# +When used, it will activate the title: ROLC 2024 +-------------------------- +All Stats +3 +HP + 1% SP + 1% +-------------------------- +Type: Title Giver +Weight: 1 +# +2200286# +When used, it will activate the title: The King ROLC 2024 +-------------------------- +All Stats +5 +HP + 1% SP + 1% +-------------------------- +Type: Title Giver +Weight: 1 +# +2200287# +A box containing +-------------------------- +- [Event] Battle Manual & Bubble Gum 5ea +- [Event] Medium Life Potion 5ea +- [Event] Basic Pet Scroll (Uncommon - Rare) 1ea +- Adamantine Blessing 50ea +-------------------------- +Weight: 0 +# +2200288# +A box containing +-------------------------- +- Gym Pass 1ea +- [R] Pet Spirit Guarantee Scroll 1ea +- [Event] Inventory Expansion Voucher 1ea +- Adamantine Blessing 100ea +-------------------------- +Weight: 0 +# +2200289# +A box containing +-------------------------- +- Character Slot Expansion Coupon 1ea +- Enriched Elunium 1ea +- Enriched Oridecon 1ea +- Adamantine Blessing 300ea +-------------------------- +Weight: 0 +# +2200290# +A scroll infused with the power of the moonlight on a full moon night for millennia. It’s time to open it +The power of the moon, manifest your might now! +-------------------------- +Type: Item Giver +Weight: 1 +# +2200291# +Rental +[Event] Romantic Flower (30Days) +-------------------------- +A box that contains. +-------------------------- +[Event] Romantic Flower (30Days) 1ea +-------------------------- +All Stats +3 +MATK +10 +ATK +10 +Reduces the cast delay of skills by 10%. +Exp +50%, Drop 10% +Increses Movement Speed by 15% +-------------------------- +Weight: 0 +# +2200292# +[November] First Refill Box 10ION +A box that contains. +-------------------------- +Mental Potion 5ea +[Event] Small Mana Potion 10ea +[Event] Battle Manual & Bubble Gum 3ea +[Event] Token of Siegfried 3ea +-------------------------- +Weight: 0 +# +2200293# +[November] First Refill Box 30ION +A box that contains. +-------------------------- +[Event] Automatic Player Box 30 Days 1ea +Kafra Buff (1 Day) 1ea +[Event] HE Battle Manual 3ea +[Event] Romantic Flower (30 Days) Box 1ea +-------------------------- +Weight: 0 +# +2200294# +A box that contains. +-------------------------- +Level 10 Blessing Scroll 10ea +Level 10 Increase Agility Scroll 10ea +[Event] Mysterious Life Potion 10ea +-------------------------- +Weight: 0 +# +2200295# +A box that contains. +-------------------------- +New Pet Scroll 10ea +Boarding Halter Box 7D 1ea +[Event] HE Bubble Gum 3ea +Combat Pill 10ea +-------------------------- +Weight: 0 +# +2200296# +A box that contains. +-------------------------- +[R] Pet Spirit Guarantee Scroll 6ea +Cold Medicine 10ea +[Event] Token of Siegfried 7ea +-------------------------- +Weight: 0 +# +2200297# +A box that contains. +-------------------------- +[Event] Guyak Pudding 15ea +True Mental Potion 2ea +True Infinity Drink 2ea +True Red Booster 2ea +Kafra Buff (7 Day) 1ea +Adamantine Blessing 150ea +-------------------------- +Weight: 0 +# +2200298# +A box that contains. +-------------------------- +Adamantine Blessing 300ea +Enriched Elunium 2ea +Enriched Oridecon 2ea +Biscuit Stick Random Box 3ea +Halloween Scroll 1ea +-------------------------- +Weight: 0 +# +2200299# +Halloween Scroll ! +-------------------------- +All Stats +3 +HIT +10 +FLEE +10 +Reduces the cast delay of skills by 10%. +Physical & Magical damage to all class enemies +3% +Increases experience gained from defeating all monsters by 15% +Increases drop rate gained from defeating all monsters by 15% +-------------------------- +(Period expired 30 Days after use Scroll) +-------------------------- +Weight: 0 +# +2200300# +The Box contains +-------------------------- +- Title: Yggdrasil Rift 1ea +- [Event] Scholar's Ring Box (7Day) 1ea +- [Event] NOVA Space Coupon 7 Days 1ea +- [R] Pet Spirit Guarantee Scroll 1ea +- Vybranium Blessing 100ea +- New Pet Box 1ea +-------------------------- +Weight: 0 +# +2200301# +The Box contains +-------------------------- +- Title: ROLC2024 1ea +- [R] Pet Spirit Guarantee Scroll 3ea +- [Event] Supply Big Bun& Pill Box 1ea +- Vybranium Blessing 300ea +-------------------------- +Weight: 0 +# +2200302# +A box containing +-------------------------- +- Title: Yggdrasil Rift 1ea +- [Event] Mental Potion 10ea +- [Event] Small Mana potion 15ea +- [Event] Elite Siege Supply Box 10ea +- [R] Pet Spirit Guarantee Scroll 2ea +- Refine Pack 1ea +-------------------------- +Weight: 0 +# +2200303# +A box containing +-------------------------- +- Title: ROLC2024 1ea +- Adamamntine Blessing 300ea +- Refine Pack 3ea +- [R] Pet Spirit Guarantee Scroll 6ea +- [Event] Kafra Buff (7Day) 2ea +- [Event] Scholar's Ring Box (30 Day) 1ea +-------------------------- +Weight: 0 +# +2200304# +Use it for activate Title: Yggdrasil Rift +-------------------------- +All Stats +3 +HP + 1% SP + 1% +-------------------------- +Type: Title Giver +Weight: 1 +# +2200305# +Use it for activate Title: ROLC2024 +-------------------------- +All Stats +5 +HP + 1% SP + 1% +-------------------------- +Type: Title Giver +Weight: 1 +# +2200306# +Ayutthaya-style fried banana, crispy on the outside +soft and sweet on the inside, just the right amount of richness +But where did they get the bananas to fry, I wonder... +-------------------------- +Increases HP/SP by 25% when consumed +-------------------------- +Weight: 10 +# +2200307# +Chewy candy filled with sweet banana jam. When kept in your mouth, it refreshes and invigorates your body +-------------------------- +ATK,MATK +15 +HIT, FLEE + 20 +For a duration of 5 minutes +-------------------------- +Weight: 1 +# +2200308# +Dried bananas made from high-quality bananas, packed with vitamins +Helps keep your body fit and energized +All Stat +7 +For a duration of 20 minutes +-------------------------- +This item will be removed after November 26th +-------------------------- +Weight: 10 +# +2200309# +Luk Chup is a traditional Thai dessert made from mashed mung beans, which are then molded into various shapes, colored, and coated with a glossy layer of agar jelly to create a beautiful, vibrant appearance +-------------------------- +Increases ATK & MATK by 10 for a duration of 1 minute +-------------------------- +This item will be removed after November 26th +-------------------------- +Weight: 3 +# +2200310# +Foy Thong – A delicate, golden thread-like sweet made from egg yolks of duck eggs, simmered in boiling water and sugar syrup. It has a rich, sweet flavor that melts in your mouth +-------------------------- +Increases DEF by 20 and MDEF by 10 for a duration of 1 minute +-------------------------- +This item will be removed after November 26th +-------------------------- +Weight: 3 +# +2200311# +Khanom Tan – A traditional Thai dessert made from ripe palm fruit (tala), with a dense, soft, and fluffy texture. The dough has a rich golden yellow color and a sweet, fragrant palm sugar aroma. It is often steamed and enjoyed as a snack or dessert +Khanom Tan – Made from a mixture of rice flour, coconut milk, and sugar, following a traditional method, and served in small banana leaf cups (krathong). The combination of ingredients gives it a soft, aromatic texture with a naturally sweet flavor. +-------------------------- +Increases HP restore power by 10% +(Cooldown 1 Seconds) +-------------------------- +This item will be removed after November 26th +-------------------------- +Weight: 3 +# +2200312# +Krathong Thong is a traditional Thai snack with an appealing shape and vibrant color +It's bite-sized and suitable for both children and adults due to its balanced, mild flavo +-------------------------- +Increases SP restore power by 5% +(Cooldown 1 Seconds) +-------------------------- +^This item will be removed after November 26th +-------------------------- +Weight: 3 +# +2200313# +The Box contains +-[Event] Zephyr Crystal 20ea +-[Event] Rare Lucky Pet Scroll 25% 2ea +-------------------------- +Weight: 0 +# +2200314# +The Box that contains +-------------------------- +- [Event] Battle Manual & Bubble Gum 3 ea +- [Event] Token of Siegfried 5 ea +- Small Mana Potion 5 ea +- Mental Potion 3 ea +-------------------------- +Weight: 0 +# +2200315# +The Box that contains. +-------------------------- +- [Event] HE Battle Manual 3 ea +- [Event] HE Bubble Gum 3 ea +- [Event] JOB Battle Manual 10 ea +- [Event] Medium Life Potion 10 ea +-------------------------- +Weight: 0 +# +2200316# +The Box containing 1 Gentle Marlin Balloon Inside +Rental duration: 30 days +-------------------------- +Type: Rental Item +Weight: 0 +# +2200317# +An ancient prophecy states this scroll +grants its holder an iron heart, +enduring all battles and hardships +-------------------------- +Type: Item Giver +Weight: 1 +# +2200318# +The Box that contains +-------------------------- +Blessing Scroll 10 ea +Increase Agility Scroll 10 ea +Boarding Halter Box 3D 1 ea +New Pet Scroll 3 ea +-------------------------- +Weight: 0 +# +2200319# +The Box that contains +-------------------------- +[Event] Red Booster 5 ea +[R] Pet Spirit Guarantee Scroll 3 ea +Elite Siege Supply Box 3 ea +-------------------------- +Weight: 0 +# +2200320# +The Box that contains +[Event] Power Booster 3 ea +[Event] Guyak Pudding 15 ea +[Event] Almighty 4 ea +[Event] Kafra Buff(7 Days) 1 ea +[Event] HE Bubble Gum 4 ea +-------------------------- +Weight: 0 +# +2200321# +The Box that contains +-------------------------- +Enriched Elunium 1 ea +Enriched Oridecon 1 ea +Special November Scroll (30 Days) 1 ea +-------------------------- +Weight: 0 +# +2200322# +The Box that contains +-------------------------- +Character Slot Expansion Coupon 1 ea +-------------------------- +Weight: 0 +# +2200323# +ATK +5 +MATK +5 +Increases Movement Speed by 5% +Each time you defeat a monster with physical or magical attacks, you will receive 3 SP +-------------------------- +Increases experience gained from defeating all monsters by 5% +Increases drop rate gained from defeating all monsters by 5% +-------------------------- +(Expires after use 30 Days) +-------------------------- +(Monthly buffs cannot be stacked) +-------------------------- +Weight: 0 +# +2200325# +The Box containing +Vybranium Blessing 100 ea +Advanced WoE Supply Box 2 ea +And a 50% chance to receive +Magic Treasure Branch 1ea +-------------------------- +Weight: 0 +# +2200326# +A magic wand that can summon +The Box of Mysterious Treasures, now available for you +-------------------------- +Type: Supportive +Weight: 0 +# +2200327# +When used, it will activate the title: ROLC2024 CHAMPION +-------------------------- +All Stats +5 +ATK +5 +MATK +5 +HIT +5 +Flee +5 +-------------------------- +Type: Title Giver +Weight: 1 +# +2200328# +Powerful spirits are sealed within this album. +What will happen if the seal is undone? +-------------------------- +Weight: 5 +# +2200329# +The Box containing +-------------------------- +-[R] Pet Spirit Guarantee Scroll 3 ea +-Elite Siege Supply Box 5 ea +-Small Mana Potion 15 ea +-Hollgrehenn's Shadow Refine Hammer 3 ea +-------------------------- +Weight: 0 +# +2200330# +The Box containing +-------------------------- +-Enriched Elunium 1 ea +-Enriched Oridecon 1 ea +-[Event] Premium Service Box (30 Days) 1 ea +-Lex Aeterna Special Stone 1 ea +-------------------------- +Weight: 0 +# +2200331# +The Box containing +-------------------------- +-Small Life Potion 100 ea +-Mysterious Potion 100 ea +-Medium Life Potion 100 ea +-Battle Manual 10 ea +-[Event] Kafra Buff(3 Day) 1 ea +-Unlimited Fly Wing Box (7 Days) 1 ea +-------------------------- +Weight: 0 +# +2200332# +The Box containing +-------------------------- +-[Event] Token of Siegfried 50 ea +-[Event] True Tyr's Blessing 3 ea +-------------------------- +Weight: 0 +# +2200333# +The Scroll of Darkness that absorbs all the colors of this world, but do not fear, +for darkness is not the evil that humans claim, +but a force for the preservation of light. For without darkness, how could there be light? +-------------------------- +Type: Item Giver +Weight: 1 +# +2200334# +A cloth pouch belonging to Srinual, filled with various stolen items and wandering around +Besides trash, I wonder if there are any valuables inside? +Cannot be traded. +-------------------------- +Type: Misc +Weight: 0 +# +2200335# +When used, it will activate the title:Loy Krathong Day +-------------------------- +All Stats +2 +-------------------------- +Type: Title Giver +Weight: 1 +# +2200336# +A coin made of copper. When used, it grants 1000 Zeny +-------------------------- +Weight: 1 +# +2200337# +A coin made of copper. When used, it grants 3000 Zeny +-------------------------- +Weight: 1 +# +2200338# +A coin made of copper. When used, it grants 5000 Zeny +-------------------------- +Weight: 1 +# +2200339# +A box containing +-------------------------- +Infinity Drink 5ea +Red Booster 5ea +[Event] Mystic Powder 5ea +[Event] Elite Siege Supply Box 5ea +-------------------------- +Weight: 0 +# +2200340# +A box containing +-------------------------- +[R] Pet Spirit Guarantee Scroll 4ea +[Event] HE Battle Manual 3ea +[Event] HE Bubble Gum 3ea +True Tyr's Blessing 2ea +-------------------------- +Weight: 0 +# +2200341# +A box containing +-------------------------- +Enriched Elunium 2ea +Enriched Oridecon 2ea +Adamantine Blessing 300ea +Holgren's Shadow Smelting Hammer 3ea +Auger Of Spirit 3ea +Weapon +7 Refine Ticket 1ea +Armor +7 Refine Ticket 1ea +-------------------------- +Weight: 0 +# +2200343# +The Box of Gifts for the winning team of Tower Defense +When used, grants a Buff that increases EXP & Drop rate by 100% for 30 minutes +And receive the following items +-------------------------- +Vybranium Blessing 100ea +[Event] Battle Manual & Bubble Gum 2ea +[Event] Token of Siegfried 2ea +-------------------------- +Weight: 5 +# +2200344# +The Box of Gifts for the losing team !! Tower Defense +When used, grants a Buff that increases EXP & Drop rate by 50% for 30 minutes +And receive the following items +-------------------------- +Vybranium Blessing 50ea +[Event] Battle Manual & Bubble Gum 1ea +[Event] Token of Siegfried 1ea +-------------------------- +Weight: 5 +# +2200345# +The Box for the strong and resilient!! +For the player who has killed the highest number of enemies, the following items will be received +-------------------------- +Vybranium Blessing 100ea +[Event] HE Battle Manual 1ea +-------------------------- +Weight: 5 +# +2200346# +Mystery box, try opening it You will find a valuable thing inside. +-------------------------- +Weight: 0 +# +2200347# +The Box requires 1 Stamina to open, with a chance to receive +a special item hidden inside +-------------------------- +Type: Container +Weight: 1 +# +2200348# +Kraken's Egg Contains many valuable treasures hidden inside, waiting to be opened. +-------------------------- +Weight: 0 +# +2200349# +The Mystery Box that contains various Enchant Stones inside +-------------------------- +Weight: 0 +# +2200350# +The Mystery Box that hides various Enchant Stones inside +-------------------------- +Weight: 0 +# +2200351# +A scroll that helps to increase the survival rate by greatly increasing the physical and magical defense for a certain period of time. +-------------------------- +Effect: +MDEF +100 for 5 minutes. +-------------------------- +Weight: 1 +# +2200352# +A scroll of the Fallen Knight +granting the mysterious power +of a once-heroic warrior. +-------------------------- +Type: Item Giver +Weight: 1 +# +2200353# +Effect: Grants the user a 20% resistance to Wind, Earth, Water, and Fire elements. However, it increases damage taken from Neutral element attacks by 20% +Duration: 10 minutes +-------------------------- +Weight: 0 +# +2200354# +The Box containing +-[Event] Power Booster 1 ea +-[Event] Red Booster 5 ea +-[Event] Prismatic Potion 10 ea +-------------------------- +Weight: 0 +# +2200355# +A box containing +-------------------------- +Infinity Drink 5ea +Red Booster 5ea +[Event] Mystic Powder 5ea +[Event] Elite Siege Supply Box 5ea +-------------------------- +Weight: 0 +# +2200356# +A box containing +-------------------------- +[R] Pet Spirit Guarantee Scroll 4ea +[Event] HE Battle Manual 3ea +[Event] HE Bubble Gum 3ea +True Tyr's Blessing 2ea +-------------------------- +Weight: 0 +# +2200357# +A box containing +-------------------------- +Enriched Elunium 2ea +Enriched Oridecon 2ea +Adamantine Blessing 300ea +Holgren's Shadow Smelting Hammer 3ea +Impositio Manus Special Stone 1ea +Weapon +7 Refine Ticket 1ea +Armor +7 Refine Ticket 1ea +-------------------------- +Weight: 0 +# +2200358# +[December] First Refill Box 10ION +A box that contains. +-------------------------- +Mental Potion 5ea +[Event] Small Mana Potion 10ea +[Event] Battle Manual & Bubble Gum 3ea +[Event] Token of Siegfried 3ea +-------------------------- +Weight: 0 +# +2200359# +[December] First Refill Box 30ION +A box that contains. +-------------------------- +[Event] Automatic Player Box 30 Days 1ea +Kafra Buff (1 Day) 1ea +[Event] HE Battle Manual 3ea +Marin Earring Box 1ea +-------------------------- +Weight: 0 +# +2200360# +Rental Items for 30 days +-------------------------- +A box contains +[Event] Marin Earring(30Days) 1ea +-------------------------- +Weight: 0 +# +2200361# +A box that contains. +-------------------------- +Level 10 Blessing Scroll 10ea +Level 10 Increase Agility Scroll 10ea +[Event] Mysterious Life Potion 10ea +-------------------------- +Weight: 0 +# +2200362# +A box that contains. +-------------------------- +New Pet Scroll 10ea +Boarding Halter Box 7D 1ea +[Event] HE Bubble Gum 3ea +Combat Pill 10ea +-------------------------- +Weight: 0 +# +2200363# +A box that contains. +-------------------------- +[R] Pet Spirit Guarantee Scroll 6ea +Cold Medicine 10ea +[Event] Token of Siegfried 7ea +-------------------------- +Weight: 0 +# +2200364# +A box that contains. +-------------------------- +[Event] Guyak Pudding 15ea +True Mental Potion 2ea +True Infinity Drink 2ea +True Red Booster 2ea +Kafra Buff (7 Day) 1ea +Adamantine Blessing 150ea +-------------------------- +Weight: 0 +# +2200365# +A box that contains. +-------------------------- +Adamantine Blessing 300ea +Enriched Elunium 2ea +Enriched Oridecon 2ea +Biscuit Stick Random Box 3ea +Special December Scroll 1ea +-------------------------- +Weight: 0 +# +2200366# +Special December Scroll +-------------------------- +All Stats +2 +Reduces the cast delay of skills by 10%. +Physical & Magical damage to all class enemies +3% +Increases experience gained from defeating all monsters by 15% +Increases drop rate gained from defeating all monsters by 15% +Ignores Mdef & Def 5% +-------------------------- +(Period expired 30 Days after use Scroll) +-------------------------- +Weight: 0 +# +2200367# +The Box that contains +-------------------------- +- [Event] Battle Manual & Bubble Gum 3 ea +- [Event] Token of Siegfried 5 ea +- Small Mana Potion 5 ea +- Mental Potion 5 ea +-------------------------- +Weight: 0 +# +2200368# +The Box that contains. +-------------------------- +- [Event] HE Battle Manual 3 ea +- [Event] HE Bubble Gum 3 ea +- [Event] JOB Battle Manual 5 ea +- [Event] Medium Life Potion 10 ea +-------------------------- +Weight: 0 +# +2200369# +The Box containing 1 [Event] Marin Earring Inside +Rental duration: 30 days +-------------------------- +Weight: 0 +The item is non-returnable +# +2200370# +Scroll of the Furious Evil Rabbit, +Contains numerous valuable items, +When you open it, you will feel a certain energy, +Filled with rage and resentment. But believe me, the valuable items you receive, +Will make you forget all about that anger +-------------------------- +Type: Item Giver +Weight: 1 +# +2200371# +The Box containing +-------------------------- +Boarding Halter Box 3D 1 ea +Free Ticket for Kafra Transportation 10 ea +Free Ticket for Kafra Storage 10 ea +-------------------------- +Additional +2 Vybr Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +2200372# +The Box containing +-------------------------- +[Event] Regeneration Potion 2 ea +[Event] Yellow Potion Box (50) 2 ea +[Event] Blue Potion Box(10) 3 ea +[Event] Awakening Potion 5 ea +-------------------------- +Weight: 0 +# +2200373# +The Box containing +-------------------------- +Big Defense Potion 2 ea +Big Magic Defense Potion 2 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200374# +The Box containing +-------------------------- +[Event] Stamina Elixir 1 ea +[Event] Token of Siegfried 1 ea +Life Insurance 1 ea +Prismatic Potion 2 ea +-------------------------- +Weight: 0 +# +2200375# +The Box containing +-------------------------- +Vybranium Blessing 20 ea +Elunium 2 ea +Oridecon 2 ea +-------------------------- +Weight: 0 +# +2200376# +The Box containing +-------------------------- +Unlimited Fly Wing 2hrs 2 ea +Mental Potion 3 ea +Small Mana Potion 3 ea +[Event] Level 10 Agility Scroll 10 ea +[Event] Level 10 Blessing Scroll 10 ea +-------------------------- +Weight: 0 +# +2200377# +The Box containing +-------------------------- +Energizing Potion 3 ea +[Event] Small Almighty 1 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200378# +The Box containing +-------------------------- +[R] Pet's Spirit Fragment 5 ea +Free Ticket for Kafra Transportation 10 ea +Free Ticket for Kafra Storage 10 ea +-------------------------- +Weight: 0 +# +2200379# +The Box containing +-------------------------- +[Event] Regeneration Potion 2 ea +[Event] Yellow Potion Box (50) 2 ea +[Event] Blue Potion Box(10) 3 ea +[Event] Awakening Potion 5 ea +-------------------------- +Weight: 0 +# +2200380# +The Box containing +-------------------------- +Big Defense Potion 2 ea +Big Magic Defense Potion 2 ea +Advanced WoE Supply Box 2 ea +[Event] Bleeding Crystal 10 ea +-------------------------- +Weight: 0 +# +2200381# +The Box containing +-------------------------- +[Event] Stamina Elixir 1 ea +[Event] Token of Siegfried 1 ea +Life Insurance 1 ea +Prismatic Potion 2 ea +-------------------------- +Weight: 0 +# +2200382# +The Box containing +-------------------------- +Vybranium Blessing 20 ea +Elunium 2 ea +Oridecon 2 ea +-------------------------- +Weight: 0 +# +2200383# +The Box containing +-------------------------- +Unlimited Fly Wing 2hrs 2 ea +Mental Potion 3 ea +Small Mana Potion 3 ea +[Event] Level 10 Agility Scroll 10 ea +[Event] Level 10 Blessing Scroll 10 ea +-------------------------- +Weight: 0 +# +2200384# +The Box containing +-------------------------- +Energizing Potion 3 ea +[Event] Small Almighty 1 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200385# +The Box containing +-------------------------- +[R] Pet's Spirit Fragment 5 ea +Boarding Halter Box 3D 1 ea +[R] Pet Guaranteed Scroll 1 ea +-------------------------- +Weight: 0 +# +2200386# +The Box containing +-------------------------- +[Event] Regeneration Potion 2 ea +[Event] Yellow Potion Box (50) 2 ea +[Event] Blue Potion Box(10) 3 ea +[Event] Awakening Potion 5 ea +-------------------------- +Weight: 0 +# +2200387# +The Box containing +-------------------------- +Big Defense Potion 2 ea +Big Magic Defense Potion 2 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200388# +The Box containing +-------------------------- +[Event] Stamina Elixir 1 ea +[Event] Token of Siegfried 1 ea +Life Insurance 1 ea +Prismatic Potion 2 ea +-------------------------- +Weight: 0 +# +2200389# +The Box containing +-------------------------- +Vybranium Blessing 20 ea +Elunium 2 ea +Oridecon 2 ea +-------------------------- +Weight: 0 +# +2200390# +The Box containing +-------------------------- +Unlimited Fly Wing 2hrs 2 ea +Mental Potion 3 ea +Small Mana Potion 3 ea +[Event] Level 10 Agility Scroll 10 ea +[Event] Level 10 Blessing Scroll 10 ea +[Event] Bleeding Crystal 10 ea +-------------------------- +Weight: 0 +# +2200391# +The Box containing +-------------------------- +Energizing Potion 3 ea +[Event] Small Almighty 1 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200392# +The Box containing +-------------------------- +[R] Pet's Spirit Fragment 5 ea +Free Ticket for Kafra Transportation 10 ea +Free Ticket for Kafra Storage 10 ea +-------------------------- +Weight: 0 +# +2200393# +The Box containing +-------------------------- +[Event] Regeneration Potion 2 ea +[Event] Yellow Potion Box (50) 2 ea +[Event] Blue Potion Box(10) 3 ea +[Event] Awakening Potion 5 ea +-------------------------- +Weight: 0 +# +2200394# +The Box containing +-------------------------- +Big Defense Potion 2 ea +Big Magic Defense Potion 2 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200395# +The Box containing +-------------------------- +[Event] Stamina Elixir 1 ea +[Event] Token of Siegfried 1 ea +Life Insurance 1 ea +Prismatic Potion 2 ea +-------------------------- +Weight: 0 +# +2200396# +The Box containing +-------------------------- +Vybranium Blessing 20 ea +Elunium 2 ea +Oridecon 2 ea +-------------------------- +Weight: 0 +# +2200397# +The Box containing +-------------------------- +Unlimited Fly Wing 2hrs 2 ea +Mental Potion 3 ea +Small Mana Potion 3 ea +[Event] Level 10 Agility Scroll 10 ea +[Event] Level 10 Blessing Scroll 10 ea +-------------------------- +Weight: 0 +# +2200398# +The Box containing +-------------------------- +Energizing Potion 3 ea +[Event] Small Almighty 1 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200399# +The Box containing +-------------------------- +[R] Pet's Spirit Fragment 5 ea +Boarding Halter Box 3D 1 ea +-------------------------- +Weight: 0 +# +2200400# +The Box containing +-------------------------- +[Event] Regeneration Potion 2 ea +[Event] Yellow Potion Box (50) 2 ea +[Event] Blue Potion Box(10) 3 ea +[Event] Awakening Potion 5 ea +[Event] Bleeding Crystal 10 ea +-------------------------- +Weight: 0 +# +2200401# +The Box containing +-------------------------- +Big Defense Potion 2 ea +Big Magic Defense Potion 2 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200402# +The Box containing +-------------------------- +[Event] Stamina Elixir 1 ea +[Event] Token of Siegfried 1 ea +Life Insurance 1 ea +Prismatic Potion 2 ea +-------------------------- +Weight: 0 +# +2200403# +The Box containing +-------------------------- +Vybranium Blessing 30 ea +Elunium 2 ea +Oridecon 2 ea +-------------------------- +Weight: 0 +# +2200404# +The Box containing +-------------------------- +Unlimited Fly Wing 2hrs 2 ea +Mental Potion 3 ea +Small Mana Potion 3 ea +[Event] Level 10 Agility Scroll 10 ea +[Event] Level 10 Blessing Scroll 10 ea +-------------------------- +Weight: 0 +# +2200405# +The Box containing +-------------------------- +Energizing Potion 3 ea +[Event] Small Almighty 1 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200406# +The Box containing +-------------------------- +[R] Pet's Spirit Fragment 5 ea +Free Ticket for Kafra Transportation 10 ea +Free Ticket for Kafra Storage 10 ea +-------------------------- +Weight: 0 +# +2200407# +The Box containing +-------------------------- +[Event] Regeneration Potion 2 ea +[Event] Yellow Potion Box (50) 2 ea +[Event] Blue Potion Box(10) 3 ea +[Event] Awakening Potion 5 ea +-------------------------- +Weight: 0 +# +2200408# +The Box containing +-------------------------- +Big Defense Potion 2 ea +Big Magic Defense Potion 2 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200409# +The Box containing +-------------------------- +[Event] Stamina Elixir 1 ea +[Event] Token of Siegfried 1 ea +Life Insurance 1 ea +Prismatic Potion 2 ea +-------------------------- +Weight: 0 +# +2200410# +The Box containing +-------------------------- +Vybranium Blessing 30 ea +Elunium 2 ea +Oridecon 2 ea +[Event] Bleeding Crystal 10 ea +-------------------------- +Weight: 0 +# +2200411# +The Box containing +-------------------------- +Unlimited Fly Wing 2hrs 2 ea +Mental Potion 3 ea +Small Mana Potion 3 ea +[Event] Level 10 Agility Scroll 10 ea +[Event] Level 10 Blessing Scroll 10 ea +-------------------------- +Weight: 0 +# +2200412# +The Box containing +-------------------------- +Energizing Potion 3 ea +[Event] Small Almighty 1 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200413# +The Box containing +-------------------------- +[R] Pet's Spirit Fragment 5 ea +Boarding Halter Box 3D 1 ea +-------------------------- +Weight: 0 +# +2200414# +The Box containing +-------------------------- +[Event] Regeneration Potion 2 ea +[Event] Yellow Potion Box (50) 2 ea +[Event] Blue Potion Box(10) 3 ea +[Event] Awakening Potion 5 ea +-------------------------- +Weight: 0 +# +2200415# +The Box containing +-------------------------- +Big Defense Potion 2 ea +Big Magic Defense Potion 2 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200416# +The Box containing +-------------------------- +[Event] Stamina Elixir 1 ea +[Event] Token of Siegfried 1 ea +Life Insurance 1 ea +Prismatic Potion 2 ea +-------------------------- +Weight: 0 +# +2200417# +The Box containing +-------------------------- +Vybranium Blessing 30 ea +Elunium 2 ea +Oridecon 2 ea +-------------------------- +Weight: 0 +# +2200418# +The Box containing +-------------------------- +Unlimited Fly Wing 2hrs 2 ea +Mental Potion 3 ea +Small Mana Potion 3 ea +[Event] Level 10 Agility Scroll 10 ea +[Event] Level 10 Blessing Scroll 10 ea +-------------------------- +Weight: 0 +# +2200419# +The Box containing +-------------------------- +Energizing Potion 3 ea +[Event] Small Almighty 1 ea +Advanced WoE Supply Box 2 ea +-------------------------- +Weight: 0 +# +2200420# +The Box containing +-------------------------- +Costume Katarina von Blood 60 1 ea +[R] Pet Guaranteed Scroll 2 ea +Vybranium Blessing 50 ea +Nightmare Coin 1 ea +Fierce Coin 1 ea +Divine Dragonic Coin Box 1 ea +Divine Dragonic Fragment Box 1 ea +[Event] Bleeding Crystal 10 ea +-------------------------- +Weight: 0 +# +2200421# +The Box containing +-------------------------- +[R] Pet Guaranteed Scroll 1 ea +[Event] Kafra Buff(1 Day) 2 ea +[Event] Mental Potion 5 ea +[Event] Small Mana Potion 10 ea +[Event] Increase Agility Scroll Box (10) 1 ea +[Event] Blessing Scroll Box (10) 1 ea +Vybranium Blessing 30 ea +-------------------------- +Additional +2 Vybr Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +2200422# +The Box containing +-------------------------- +[Event] Small Life Potion 10 ea +[Event] Medium Life Potion 10 ea +[Event] Mysterious Life Potion 10 ea +-------------------------- +Weight: 0 +# +2200423# +The Box containing +-------------------------- +Prismatic Potion 5 ea +Vybranium Blessing 30 ea +[Event] Unlimited Fly Wing Box (1 Day) 1 ea +-------------------------- +Weight: 0 +# +2200424# +The Box containing +-------------------------- +[Event] HE Battle Manual 1 ea +[Event] Battle Manual 3 ea +Rare Pet Spirit Fragment 5 ea +-------------------------- +Weight: 0 +# +2200425# +The Box containing +-------------------------- +[Event] HE Bubble Gum 2 ea +[Event] Bubble Gum 5 ea +White Robe [1] 1 ea +-------------------------- +Weight: 0 +# +2200426# +The Box containing +-------------------------- +Advanced WoE Supply Box 2 ea +[Event] Mental Potion 5 ea +[Event] Small Mana Potion 10 ea +-------------------------- +Weight: 0 +# +2200427# +The Box containing +-------------------------- +[Event] Small Life Potion 15 ea +[Event] Medium Life Potion 15 ea +[Event] Mysterious Life Potion 15 ea +[Event] Unlimited Fly Wing Box (1 Day) 1 ea +[R] Pet Guaranteed Scroll 3 ea +-------------------------- +Weight: 0 +# +2200428# +The Box containing +-------------------------- +[R] Pet Guaranteed Scroll 3 ea +Rare Pet Spirit Fragment 10 ea +-------------------------- +Weight: 0 +# +2200429# +The Box containing +-------------------------- +[Event] Red Booster 5 ea +[Event] Mystic Powder 5 ea +[Event] Tyr's Blessing 5 ea +-------------------------- +Weight: 0 +# +2200430# +The Box containing +-------------------------- +Prismatic Potion 10 ea +Vybranium Blessing 30 ea +[Event] Unlimited Fly Wing Box (1 Day) 1 ea +Divine Scale 5 ea +-------------------------- +Weight: 0 +# +2200431# +The Box containing +-------------------------- +Enriched Elunium 1 ea +Enriched Oridecon 1 ea +Eluminum Box 2 ea +Oridecon Box 2 ea +-------------------------- +Weight: 0 +# +2200432# +The Box containing +-------------------------- +[Event] HE Battle Manual 1 ea +[Event] HE Bubble Gum 2 ea +[Event] Battle Manual 3 ea +[Event] Bubble Gum 5 ea +-------------------------- +Weight: 0 +# +2200433# +The Box containing +-------------------------- +[Event] Limit Power Booster 2 ea +[Event] Infinity Drink 2 ea +[Event] Mental Potion 5 ea +[Event] Small Mana Potion 10 ea +-------------------------- +Weight: 0 +# +2200434# +The Box containing +-------------------------- +[Event] Small Life Potion 15 ea +[Event] Medium Life Potion 15 ea +[Event] Mysterious Life Potion 15 ea +[Event] Unlimited Fly Wing Box (1 Day) 1 ea +[R] Pet Guaranteed Scroll 1 ea +-------------------------- +Weight: 0 +# +2200435# +The Box containing +-------------------------- +Costume Crimson Essence 1 ea +Enriched Elunium 1 ea +Enriched Oridecon 1 ea +[Event] Boarding Halter Box 7D 1 ea +Vybranium Blessing 60 ea +Divine Scale 5 ea +-------------------------- +Additional +3 Vybr Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +2200436# +The Box containing +-------------------------- +[Event] Infinity Drink 5 ea +[Event] Limit Power Booster 3 ea +[Event] Red Booster 5 ea +[Event] Mystic Powder 3 ea +[Event] Tyr's Blessing 3 ea +Rare Pet Spirit Fragment 10 ea +-------------------------- +Weight: 0 +# +2200437# +The Box containing +-------------------------- +Prismatic Potion 10 ea +Vybranium Blessing 30 ea +[Event] Unlimited Fly Wing Box (1 Day) 1 ea +Eluminum Box 2 ea +Oridecon Box 2 ea +-------------------------- +Weight: 0 +# +2200438# +The Box containing +-------------------------- +[Event] Small Life Potion 50 ea +[Event] Medium Life Potion 50 ea +[Event] Mysterious Life Potion 50 ea +[Event] Unlimited Fly Wing Box (1 Day) 1 ea +[R] Pet Guaranteed Scroll 3 ea +-------------------------- +Weight: 0 +# +2200439# +The Box containing +-------------------------- +[Event] HE Battle Manual 1 ea +[Event] HE Bubble Gum 2 ea +[Event] Battle Manual 3 ea +[Event] Bubble Gum 5 ea +-------------------------- +Weight: 0 +# +2200440# +The Box containing +-------------------------- +[Event] Mental Potion 5 ea +[Event] Small Mana Potion 10 ea +Advanced WoE Supply Box 5 ea +Rare Pet Spirit Fragment 10 ea +[R] Pet Guaranteed Scroll 1 ea +Divine Scale 5 ea +-------------------------- +Weight: 0 +# +2200441# +The Box containing +-------------------------- +Costume Scarlet Ears 1 ea +[Event] Infinity Drink 10 ea +[Event] Limit Power Booster 4 ea +[Event] Red Booster 10 ea +[Event] Mystic Powder 4 ea +[Event] Tyr's Blessing 4 ea +Rare Pet Spirit Fragment 5 ea +-------------------------- +Weight: 0 +# +2200442# +The Box containing +-------------------------- +[R] Pet Guaranteed Scroll 1 ea +[Event] Mental Potion 15 ea +[Event] Small Mana Potion 30 ea +-------------------------- +Weight: 0 +# +2200443# +The Box containing +-------------------------- +[Event] Infinity Drink 5 ea +[Event] Limit Power Booster 3 ea +[Event] Red Booster 5 ea +[Event] Mystic Powder 3 ea +[Event] Tyr's Blessing 3 ea +-------------------------- +Weight: 0 +# +2200444# +The Box containing +-------------------------- +Prismatic Potion 10 ea +Vybranium Blessing 30 ea +[Event] Unlimited Fly Wing Box (1 Day) 2 ea +-------------------------- +Weight: 0 +# +2200445# +The Box containing +-------------------------- +Enriched Elunium 2 ea +Enriched Oridecon 2 ea +Eluminum Box 2 ea +Oridecon Box 2 ea +[R] Pet Guaranteed Scroll 3 ea +Divine Scale 5 ea +-------------------------- +Weight: 0 +# +2200446# +The Box containing +-------------------------- +[Event] HE Battle Manual 1 ea +[Event] HE Bubble Gum 2 ea +[Event] Battle Manual 3 ea +[Event] Bubble Gum 5 ea +Advanced WoE Supply Box 5 ea +-------------------------- +Weight: 0 +# +2200447# +The Box containing +-------------------------- +[Event] Mental Potion 15 ea +[Event] Small Mana Potion 30 ea +Rare Pet Spirit Fragment 5 ea +-------------------------- +Weight: 0 +# +2200448# +The Box containing +-------------------------- +[Event] Small Life Potion 20 ea +[Event] Medium Life Potion 20 ea +[Event] Mysterious Life Potion 20 ea +Rare Pet Spirit Fragment 10 ea +-------------------------- +Weight: 0 +# +2200449# +The Box containing +-------------------------- +Automatic Battle Box 30 Day 1 ea +[Event] Infinity Drink 10 ea +[Event] Limit Power Booster 4 ea +[Event] Red Booster 10 ea +[Event] Mystic Powder 4 ea +[Event] Tyr's Blessing 4 ea +-------------------------- +Weight: 0 +# +2200450# +The Box containing +-------------------------- +Title - Blood of Witch (Allstats+3) 1 ea +Gym pass 1 ea +Inventory Extension Coupon 1 ea +[Event] Battle Manual 5 ea +[Event] Bubble Gum 5 ea +Divine Scale 5 ea +-------------------------- +Additional +3 Vybr Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +2200451# +The Box containing +-------------------------- +Prismatic Potion 10 ea +Vybranium Blessing 30 ea +[Event] Unlimited Fly Wing Box (1 Day) 5 ea +HD Bradium 3 ea +HD Carnium 3 ea +-------------------------- +Weight: 0 +# +2200452# +The Box containing +-------------------------- +Enriched Elunium 1 ea +Enriched Oridecon 1 ea +Eluminum Box 2 ea +Oridecon Box 2 ea +-------------------------- +Weight: 0 +# +2200453# +The Box containing +-------------------------- +[Event] HE Battle Manual 1 ea +[Event] HE Bubble Gum 2 ea +[Event] Battle Manual 3 ea +[Event] Bubble Gum 5 ea +Advanced WoE Supply Box 5 ea +-------------------------- +Weight: 0 +# +2200454# +The Box containing +-------------------------- +[Event] Mental Potion 15 ea +[Event] Small Mana Potion 30 ea +Advanced WoE Supply Box 5 ea +-------------------------- +Weight: 0 +# +2200455# +The Box containing +-------------------------- +[Event] [Event] New Pet Scroll 10 ea +[Event] Small Life Potion 30 ea +[Event] Medium Life Potion 30 ea +[Event] Mysterious Life Potion 30 ea +Divine Scale 5 ea +-------------------------- +Weight: 0 +# +2200456# +The Box containing +-------------------------- +[Event] Automatic Play Box 7 Days 1 ea +[Event] Increase Agility Scroll Box (10) 5 ea +[Event] Blessing Scroll Box (10) 5 ea +[Event] Guyak Pudding 5 ea +[Event] Big Bun 50 ea +[Event] Pill 50 ea +-------------------------- +Weight: 0 +# +2200457# +The Box containing +-------------------------- +[Event] Infinity Drink 5 ea +[Event] Limit Power Booster 3 ea +[Event] Red Booster 5 ea +[Event] Mystic Powder 3 ea +[Event] Tyr's Blessing 3 ea +-------------------------- +Weight: 0 +# +2200458# +The Box containing +-------------------------- +Prismatic Potion 10 ea +Vybranium Blessing 30 ea +[Event] Unlimited Fly Wing Box (14 Day) 1 ea +HD Bradium 3 ea +HD Carnium 3 ea +-------------------------- +Weight: 0 +# +2200459# +The Box containing +-------------------------- +Vybranium Blessing 30 ea +[Event] New Pet Scroll 10 ea +[Event] Battle Manual 3 ea +[Event] Bubble Gum 10 ea +-------------------------- +Weight: 0 +# +2200460# +The Box containing +-------------------------- +True Red Booster 1 ea +[Event] Red Booster 10 ea +[Event] Guyak Pudding 5 ea +[Event] Big Bun 50 ea +[Event] Pill 50 ea +Divine Scale 5 ea +-------------------------- +Weight: 0 +# +2200461# +The Box containing +-------------------------- +True Tyr's Blessing 1 ea +Tyr's Blessing 5 ea +[Event] Guyak Pudding 5 ea +[Event] Big Bun 50 ea +[Event] Pill 50 ea +-------------------------- +Weight: 0 +# +2200462# +The Box containing +-------------------------- +True Infinity Drink 1 ea +Infinity Drink 10 ea +[Event] Guyak Pudding 5 ea +[Event] Big Bun 50 ea +[Event] Pill 50 ea +-------------------------- +Weight: 0 +# +2200463# +The Box containing +-------------------------- +True Limit Power Booster 2 ea +Limit Power Booster 2 ea +[Event] Guyak Pudding 5 ea +[Event] Big Bun 50 ea +[Event] Pill 50 ea +-------------------------- +Weight: 0 +# +2200464# +The Box containing +-------------------------- +Holy Elemental Scroll 5 ea +Undead Elemental Scroll 5 ea +Concentration Scroll 10 ea +[Event] Guyak Pudding 5 ea +[Event] Big Bun 50 ea +[Event] Pill 50 ea +-------------------------- +Weight: 0 +# +2200465# +The Box containing +-------------------------- +Enriched Elunium 1 ea +Enriched Oridecon 1 ea +Eluminum Box 2 ea +Oridecon Box 2 ea +Epic Pet Spirit Fragment 5 ea +Worn Out Limit Break Scroll 5 ea +Divine Scale 5 ea +-------------------------- +Weight: 0 +# +2200466# +The Box containing +-------------------------- +Vybranium Blessing 50 ea +Epic Pet Spirit Fragment 5 ea +-------------------------- +Weight: 0 +# +2200467# +The Box containing +-------------------------- +Vybranium Blessing 50 ea +Epic Pet Spirit Fragment 5 ea +Blessed Vybranium Dust 10 ea +-------------------------- +Weight: 0 +# +2200468# +The Box containing +-------------------------- +Vybranium Blessing 50 ea +Epic Pet Spirit Fragment 5 ea +Legendary Pet Spirit Fragment 3 ea +-------------------------- +Weight: 0 +# +2200469# +The Box containing +-------------------------- +Vybranium Blessing 50 ea +Epic Pet Spirit Fragment 5 ea +Blessed Vybranium Dust 10 ea +-------------------------- +Weight: 0 +# +2200470# +The Box containing +-------------------------- +Costume Scarlet Omen 1 ea +Epic Pet Spirit Fragment 25 ea +Vybranium Blessing 299 ea +BP Choose 1 ea +Divine Scale 5 ea +-------------------------- +Weight: 0 +# +2200471# +Use this crystal to earn 1 Season 7 Premium Battlepass point. +-------------------------- +Weight: 0 +# +2200472# +Use this crystal to earn 1 Season 7 Premium Battlepass point. +-------------------------- +Weight: 0 +# +2200473# +Use this item to combine 3 BP Anemia Fragment into a BP Anemia. +-------------------------- +Weight: 0 +# +2200474# +Use BP Anemia to earn 1 Season 3 Battlepass - Quest point. +-------------------------- +Weight: 0 +# +2200475# +Invitation Book to Unlock Premium Pass Season 7, created for everyone to have fun and receive various rewards +Use it to activate the Premium Battle Pass. +-------------------------- +Weight: 0 +# +2200476# +Invitation Book to Join Battle Pass Season 7, created for everyone to have fun and receive various rewards. +Use it to activate the Quest Battle Pass. +-------------------------- +Weight: 0 +# +2200477# +Choose +Wyrm's Coin or Wings Coin +200 ea +-------------------------- +Type: Item Select +Weight: 0 +# +2200478# +Choose +Wyrm's Scale Fragment +or Wings Scale Fragment +5 ea +-------------------------- +Type: Item Select +Weight: 0 +# +2200479# +Use it for activate Title : Blood of Witch +-------------------------- +All Stats +3 +-------------------------- +Type: Title Giver +Weight: 1 +# +2200480# +The Box that contains +-------------------------- +Blessing Scroll 10 ea +Increase Agility Scroll 10 ea +Boarding Halter Box 3D 1 ea +New Pet Scroll 3 ea +-------------------------- +Weight: 0 +# +2200481# +The Box that contains +-------------------------- +[Event] Red Booster 5 ea +[R] Pet Spirit Guarantee Scroll 3 ea +Elite Siege Supply Box 3 ea +-------------------------- +Weight: 0 +# +2200482# +The Box that contains +[Event] Infinity Drink 3 ea +[Event] Guyak Pudding 15 ea +[Event] Supply Big Bun & Pill Box 1 ea +[Event] Kafra Buff(7 Days) 1 ea +[Event] HE Bubble Gum 4 ea +-------------------------- +Weight: 0 +# +2200483# +The Box that contains +-------------------------- +Enriched Elunium 1 ea +Enriched Oridecon 1 ea +Special December Scroll (30 Days) 1 ea +-------------------------- +Weight: 0 +# +2200484# +The Box that contains +-------------------------- +Character Surpassing Ticket 1 ea +-------------------------- +Weight: 0 +# +2200485# +The Box that contains +-------------------------- +Character Slot Expansion Coupon 1 ea +-------------------------- +Weight: 0 +# +2200486# +Ignores Mdef All of the enemy's items 5% +Igorees Def All of the enemy's items 5% +Increases Movement Speed by 5% +Atk+5 Matk+5 +Exp+5% Drop+5% +-------------------------- +(Expires after use 30 Days) +-------------------------- +(Monthly buffs cannot be stacked) +-------------------------- +Weight: 0 +# +2200487# +A box which contains +-------------------------- +Boarding Halter Box 3D 1ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Additional +2 Adamantine Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +2200488# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Yellow Potion Box (50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +2200489# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200490# +A box which contains +-------------------------- +[Event] Stamina Elixir 1ea +[Event] Token of Siegfried 1ea +Life Insurance 1ea +Prismatic Potion 2ea +-------------------------- +Weight: 0 +# +2200491# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +2200492# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +2200493# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200494# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Weight: 0 +# +2200495# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Yellow Potion Box (50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +2200496# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +[Event] Bleeding Crystal 10ea +-------------------------- +Weight: 0 +# +2200497# +A box which contains +-------------------------- +[Event] Stamina Elixir 1ea +[Event] Token of Siegfried 1ea +Life Insurance 1ea +Prismatic Potion 2ea +-------------------------- +Weight: 0 +# +2200498# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +2200499# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +2200500# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200501# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Boarding Halter Box 3D 1ea +[R] Pet Guaranteed Scroll 1ea +-------------------------- +Weight: 0 +# +2200502# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Yellow Potion Box (50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +2200503# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200504# +A box which contains +-------------------------- +[Event] Stamina Elixir 1ea +[Event] Token of Siegfried 1ea +Life Insurance 1ea +Prismatic Potion 2ea +-------------------------- +Weight: 0 +# +2200505# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +2200506# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +[Event] Bleeding Crystal 10ea +-------------------------- +Weight: 0 +# +2200507# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200508# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Weight: 0 +# +2200509# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Yellow Potion Box (50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +2200510# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200511# +A box which contains +-------------------------- +[Event] Stamina Elixir 1ea +[Event] Token of Siegfried 1ea +Life Insurance 1ea +Prismatic Potion 2ea +-------------------------- +Weight: 0 +# +2200512# +A box which contains +-------------------------- +Adamantine Blessing 20ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +2200513# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +2200514# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200515# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Boarding Halter Box 3D 1ea +-------------------------- +Weight: 0 +# +2200516# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Yellow Potion Box (50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +[Event] Bleeding Crystal 10ea +-------------------------- +Weight: 0 +# +2200517# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200518# +A box which contains +-------------------------- +[Event] Stamina Elixir 1ea +[Event] Token of Siegfried 1ea +Life Insurance 1ea +Prismatic Potion 2ea +-------------------------- +Weight: 0 +# +2200519# +A box which contains +-------------------------- +Adamantine Blessing 30ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +2200520# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +2200521# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200522# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Free Ticket for Kafra Transportation 10ea +Free Ticket for Kafra Storage 10ea +-------------------------- +Weight: 0 +# +2200523# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Yellow Potion Box (50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +2200524# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200525# +A box which contains +-------------------------- +[Event] Stamina Elixir 1ea +[Event] Token of Siegfried 1ea +Life Insurance 1ea +Prismatic Potion 2ea +-------------------------- +Weight: 0 +# +2200526# +A box which contains +-------------------------- +Adamantine Blessing 30ea +Elunium 2ea +Oridecon 2ea +[Event] Bleeding Crystal 10ea +-------------------------- +Weight: 0 +# +2200527# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +2200528# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200529# +A box which contains +-------------------------- +[R] Pet's Spirit Fragment 5ea +Boarding Halter Box 3D 1ea +-------------------------- +Weight: 0 +# +2200530# +A box which contains +-------------------------- +[Event] Regeneration Potion 2ea +[Event] Yellow Potion Box (50) 2ea +[Event] Blue Potion Box(10) 3ea +[Event] Awakening Potion 5ea +-------------------------- +Weight: 0 +# +2200531# +A box which contains +-------------------------- +Big Defense Potion 2ea +Big Magic Defense Potion 2ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200532# +A box which contains +-------------------------- +[Event] Stamina Elixir 1ea +[Event] Token of Siegfried 1ea +Life Insurance 1ea +Prismatic Potion 2ea +-------------------------- +Weight: 0 +# +2200533# +A box which contains +-------------------------- +Adamantine Blessing 30ea +Elunium 2ea +Oridecon 2ea +-------------------------- +Weight: 0 +# +2200534# +A box which contains +-------------------------- +Unlimited Fly Wing 2hrs 2ea +Mental Potion 3ea +Small Mana Potion 3ea +[Event] Level 10 Agility Scroll 10ea +[Event] Level 10 Blessing Scroll 10ea +-------------------------- +Weight: 0 +# +2200535# +A box which contains +-------------------------- +Energizing Potion 3ea +[Event] Small Almighty 1ea +Advanced WoE Supply Box 2ea +-------------------------- +Weight: 0 +# +2200536# +A box which contains +-------------------------- +Costume: Katarina von Blood 60 1ea +[R] Pet Guaranteed Scroll 2ea +Adamantine Blessing 50ea +High Weapon Box 1ea +[Event] Bleeding Crystal 10ea +-------------------------- +Weight: 0 +# +2200537# +A box which contains +-------------------------- +[R] Pet Guaranteed Scroll 1ea +[Event] Kafra Buff(1 Day) 2ea +[Event] Mental Potion 5ea +[Event] Small Mana Potion 10ea +[Event] Increase Agility Scroll Box (10) 1ea +[Event] Blessing Scroll Box (10) 1ea +Adamantine Blessing 30ea +-------------------------- +Additional +2 Adamantine Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +2200538# +A box which contains +-------------------------- +[Event] Small Life Potion 10ea +[Event] Medium Life Potion 10ea +[Event] Mysterious Life Potion 10ea +-------------------------- +Weight: 0 +# +2200539# +A box which contains +-------------------------- +Prismatic Potion 5ea +Adamantine Blessing 30ea +[Event] Unlimited Fly Wing Box (1 Day) 1ea +-------------------------- +Weight: 0 +# +2200540# +A box which contains +-------------------------- +[Event] HE Battle Manual 1ea +[Event] Battle Manual 3ea +Rare Pet Spirit Fragment 5ea +-------------------------- +Weight: 0 +# +2200541# +A box which contains +-------------------------- +[Event] HE Bubble Gum 2ea +[Event] Bubble Gum 5ea +White Robe [1] 1ea +-------------------------- +Weight: 0 +# +2200542# +A box which contains +-------------------------- +Advanced WoE Supply Box 2ea +[Event] Mental Potion 5ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +# +2200543# +A box which contains +-------------------------- +[Event] Small Life Potion 15ea +[Event] Medium Life Potion 15ea +[Event] Mysterious Life Potion 15ea +[Event] Unlimited Fly Wing Box (1 Day) 1ea +[R] Pet Guaranteed Scroll 3ea +-------------------------- +Weight: 0 +# +2200544# +A box which contains +-------------------------- +[R] Pet Guaranteed Scroll 3ea +Rare Pet Spirit Fragment 10ea +-------------------------- +Weight: 0 +# +2200545# +A box which contains +-------------------------- +[Event] Red Booster 5ea +[Event] Mystic Powder 5ea +[Event] Tyr's Blessing 5ea +-------------------------- +Weight: 0 +# +2200546# +A box which contains +-------------------------- +Prismatic Potion 10ea +Adamantine Blessing 30ea +[Event] Unlimited Fly Wing Box (1 Day) 1ea +Divine Scale 5ea +-------------------------- +Weight: 0 +# +2200547# +A box which contains +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Eluminum Box 2ea +Oridecon Box 2ea +-------------------------- +Weight: 0 +# +2200548# +A box which contains +-------------------------- +[Event] HE Battle Manual 1ea +[Event] HE Bubble Gum 2ea +[Event] Battle Manual 3ea +[Event] Bubble Gum 5ea +-------------------------- +Weight: 0 +# +2200549# +A box which contains +-------------------------- +[Event] Limit Power Booster 2ea +[Event] Infinity Drink 2ea +[Event] Mental Potion 5ea +[Event] Small Mana Potion 10ea +-------------------------- +Weight: 0 +# +2200550# +A box which contains +-------------------------- +[Event] Small Life Potion 15ea +[Event] Medium Life Potion 15ea +[Event] Mysterious Life Potion 15ea +[Event] Unlimited Fly Wing Box (1 Day) 1ea +[R] Pet Guaranteed Scroll 1ea +-------------------------- +Weight: 0 +# +2200551# +A box which contains +-------------------------- +Costume Crimson Essence 1ea +Enriched Elunium 1ea +Enriched Oridecon 1ea +[Event] Boarding Halter Box 7D 1ea +Adamantine Blessing 60ea +Divine Scale 5ea +-------------------------- +Additional +3 Adamantine Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +2200552# +A box which contains +-------------------------- +[Event] Infinity Drink 5ea +[Event] Limit Power Booster 3ea +[Event] Red Booster 5ea +[Event] Mystic Powder 3ea +[Event] Tyr's Blessing 3ea +Rare Pet Spirit Fragment 10ea +-------------------------- +Weight: 0 +# +2200553# +A box which contains +-------------------------- +Prismatic Potion 10ea +Adamantine Blessing 30ea +[Event] Unlimited Fly Wing Box (1 Day) 1ea +Eluminum Box 2ea +Oridecon Box 2ea +-------------------------- +Weight: 0 +# +2200554# +A box which contains +-------------------------- +[Event] Small Life Potion 50ea +[Event] Medium Life Potion 50ea +[Event] Mysterious Life Potion 50ea +[Event] Unlimited Fly Wing Box (1 Day) 1ea +[R] Pet Guaranteed Scroll 3ea +-------------------------- +Weight: 0 +# +2200555# +A box which contains +-------------------------- +[Event] HE Battle Manual 1ea +[Event] HE Bubble Gum 2ea +[Event] Battle Manual 3ea +[Event] Bubble Gum 5ea +-------------------------- +Weight: 0 +# +2200556# +A box which contains +-------------------------- +[Event] Mental Potion 5ea +[Event] Small Mana Potion 10ea +Advanced WoE Supply Box 5ea +Rare Pet Spirit Fragment 10ea +[R] Pet Guaranteed Scroll 1ea +Divine Scale 5ea +-------------------------- +Weight: 0 +# +2200557# +A box which contains +-------------------------- +Costume Scarlet Ears 1ea +[Event] Infinity Drink 10ea +[Event] Limit Power Booster 4ea +[Event] Red Booster 10ea +[Event] Mystic Powder 4ea +[Event] Tyr's Blessing 4ea +Rare Pet Spirit Fragment 5ea +-------------------------- +Weight: 0 +# +2200558# +A box which contains +-------------------------- +[R] Pet Guaranteed Scroll 1ea +[Event] Mental Potion 15ea +[Event] Small Mana Potion 30ea +-------------------------- +Weight: 0 +# +2200559# +A box which contains +-------------------------- +[Event] Infinity Drink 5ea +[Event] Limit Power Booster 3ea +[Event] Red Booster 5ea +[Event] Mystic Powder 3ea +[Event] Tyr's Blessing 3ea +-------------------------- +Weight: 0 +# +2200560# +A box which contains +-------------------------- +Prismatic Potion 10ea +Adamantine Blessing 30ea +[Event] Unlimited Fly Wing Box (1 Day) 2ea +-------------------------- +Weight: 0 +# +2200561# +A box which contains +-------------------------- +Enriched Elunium 2ea +Enriched Oridecon 2ea +Eluminum Box 2ea +Oridecon Box 2ea +[R] Pet Guaranteed Scroll 3ea +Divine Scale 5ea +-------------------------- +Weight: 0 +# +2200562# +A box which contains +-------------------------- +[Event] HE Battle Manual 1ea +[Event] HE Bubble Gum 2ea +[Event] Battle Manual 3ea +[Event] Bubble Gum 5ea +Advanced WoE Supply Box 5ea +-------------------------- +Weight: 0 +# +2200563# +A box which contains +-------------------------- +[Event] Mental Potion 15ea +[Event] Small Mana Potion 30ea +Rare Pet Spirit Fragment 5ea +-------------------------- +Weight: 0 +# +2200564# +A box which contains +-------------------------- +[Event] Small Life Potion 20ea +[Event] Medium Life Potion 20ea +[Event] Mysterious Life Potion 20ea +Rare Pet Spirit Fragment 10ea +-------------------------- +Weight: 0 +# +2200565# +A box which contains +-------------------------- +Automatic Battle Box 30 Day 1ea +[Event] Infinity Drink 10ea +[Event] Limit Power Booster 4ea +[Event] Red Booster 10ea +[Event] Mystic Powder 4ea +[Event] Tyr's Blessing 4ea +-------------------------- +Weight: 0 +# +2200566# +A box which contains +-------------------------- +Title - Blood of Witch (Allstats+3) 1ea +Gym pass 1ea +Inventory Extension Coupon 1ea +[Event] Battle Manual 5ea +[Event] Bubble Gum 5ea +Divine Scale 5ea +-------------------------- +Additional +3 Adamantine Blessing for each quest completed from the Daily Board +-------------------------- +Weight: 0 +# +2200567# +A box which contains +-------------------------- +Prismatic Potion 10ea +Adamantine Blessing 30ea +[Event] Unlimited Fly Wing Box (1 Day) 5ea +HD Bradium 3ea +HD Carnium 3ea +-------------------------- +Weight: 0 +# +2200568# +A box which contains +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Eluminum Box 2ea +Oridecon Box 2ea +-------------------------- +Weight: 0 +# +2200569# +A box which contains +-------------------------- +[Event] HE Battle Manual 1ea +[Event] HE Bubble Gum 2ea +[Event] Battle Manual 3ea +[Event] Bubble Gum 5ea +Advanced WoE Supply Box 5ea +-------------------------- +Weight: 0 +# +2200570# +A box which contains +-------------------------- +[Event] Mental Potion 15ea +[Event] Small Mana Potion 30ea +Advanced WoE Supply Box 5ea +-------------------------- +Weight: 0 +# +2200571# +A box which contains +-------------------------- +[Event] New Pet Scroll 10ea +[Event] Small Life Potion 30ea +[Event] Medium Life Potion 30ea +[Event] Mysterious Life Potion 30ea +Divine Scale 5ea +-------------------------- +Weight: 0 +# +2200572# +A box which contains +-------------------------- +[Event] Automatic Play Box 7 Days 1ea +[Event] Increase Agility Scroll Box (10) 5ea +[Event] Blessing Scroll Box (10) 5ea +[Event] Guyak Pudding 5ea +[Event] Big Bun 50ea +[Event] Pill 50ea +-------------------------- +Weight: 0 +# +2200573# +A box which contains +-------------------------- +[Event] Infinity Drink 5ea +[Event] Limit Power Booster 3ea +[Event] Red Booster 5ea +[Event] Mystic Powder 3ea +[Event] Tyr's Blessing 3ea +-------------------------- +Weight: 0 +# +2200574# +A box which contains +-------------------------- +Prismatic Potion 10ea +Adamantine Blessing 30ea +[Event] Unlimited Fly Wing Box (14 Day) 1ea +HD Bradium 3ea +HD Carnium 3ea +-------------------------- +Weight: 0 +# +2200575# +A box which contains +-------------------------- +Adamantine Blessing 30ea +[Event] New Pet Scroll 10ea +[Event] Battle Manual 3ea +[Event] Bubble Gum 10ea +-------------------------- +Weight: 0 +# +2200576# +A box which contains +-------------------------- +True Red Booster 1ea +[Event] Red Booster 10ea +[Event] Guyak Pudding 5ea +[Event] Big Bun 50ea +[Event] Pill 50ea +Divine Scale 5ea +-------------------------- +Weight: 0 +# +2200577# +A box which contains +-------------------------- +True Tyr's Blessing 1ea +Tyr's Blessing 5ea +[Event] Guyak Pudding 5ea +[Event] Big Bun 50ea +[Event] Pill 50ea +-------------------------- +Weight: 0 +# +2200578# +A box which contains +-------------------------- +True Infinity Drink 1ea +Infinity Drink 10ea +[Event] Guyak Pudding 5ea +[Event] Big Bun 50ea +[Event] Pill 50ea +-------------------------- +Weight: 0 +# +2200579# +A box which contains +-------------------------- +True Limit Power Booster 2ea +Limit Power Booster 2ea +[Event] Guyak Pudding 5ea +[Event] Big Bun 50ea +[Event] Pill 50ea +-------------------------- +Weight: 0 +# +2200580# +A box which contains +-------------------------- +Holy Elemental Scroll 5ea +Undead Elemental Scroll 5ea +Concentration Scroll 10ea +[Event] Guyak Pudding 5ea +[Event] Big Bun 50ea +[Event] Pill 50ea +-------------------------- +Weight: 0 +# +2200581# +A box which contains +-------------------------- +Enriched Elunium 1ea +Enriched Oridecon 1ea +Eluminum Box 2ea +Oridecon Box 2ea +Epic Pet Spirit Fragment 5ea +Worn Out Limit Break Scroll 5ea +Divine Scale 5ea +-------------------------- +Weight: 0 +# +2200582# +A box which contains +-------------------------- +Adamantine Blessing 50ea +Epic Pet Spirit Fragment 5ea +-------------------------- +Weight: 0 +# +2200583# +A box which contains +-------------------------- +Adamantine Blessing 50ea +Epic Pet Spirit Fragment 5ea +Blessed Adamantine Dust 10ea +-------------------------- +Weight: 0 +# +2200584# +A box which contains +-------------------------- +Adamantine Blessing 50ea +Epic Pet Spirit Fragment 5ea +Legendary Pet Spirit Fragment 3ea +-------------------------- +Weight: 0 +# +2200585# +A box which contains +-------------------------- +Adamantine Blessing 50ea +Epic Pet Spirit Fragment 5ea +Blessed Adamantine Dust 10ea +-------------------------- +Weight: 0 +# +2200586# +A box which contains +-------------------------- +Costume Scarlet Omen 1ea +Epic Pet Spirit Fragment 25ea +Adamantine Blessing 299ea +BP Choose 1ea +Divine Scale 5ea +-------------------------- +Weight: 0 +# +2200587# +Scroll of the Furious Evil Rabbit, +Contains many valuable items, +When you open it, you will sense a certain energy, +Filled with rage and resentment. But trust me, the valuable items you acquire, +Will make you forget that anger completely. +-------------------------- +Type: Item Giver +Weight: 1 +# +2200588# +When opened, you will receive. +-[Event] Mad Bunny Scroll 100 ea +And there is a chance to receive. +-[Event] Mad Bunny Scroll 3-10 ea +-------------------------- +Weight: 1 +# +2200589# +When opened, you will receive. +-[Event] Mad Bunny Scroll 50 ea +And there is a chance to receive. +-[Event] Mad Bunny Scroll 2-5 ea +-------------------------- +Weight: 1 +# +2200590# +When opened, you will receive. +-[Event] Mad Bunny Scroll 30 ea +And there is a chance to receive. +-[Event] Mad Bunny Scroll 1-3 ea +-------------------------- +Weight: 1 +# +2200591# +A scroll protected by the spirits of the forest, +offering treasures to the brave. +-------------------------- +Weight: 1 +# +2200592# +A hard box with beautiful details. there are many high-end equipments. +-------------------------- +Weight: 1 +# +2200593# +The Box contains [Event] HE Bubble Gum x10 +[Event] HE Bubble Gum cannot be traded +-------------------------- +Type: Cash Shop +Weight: 0 +# +2200594# +The Box contains the following items +The Box cannot be traded +-------------------------- +- [Event] Power Booster 1 ea +- [Event] Infinity Drink 2 ea +- [Event] Red Booster 4 ea +- [Event] Mysterious Water 10 ea +- [Event] Guyak Pudding 5 ea +-------------------------- +Type: Cash Shop +Weight: 0 +# +2200595# +The Egg of the Moonlight Boss, hiding the power of moonlight within. Awaiting the hatching that will unleash unimaginable power. +-------------------------- +Type: Item Giver +Weight: 1 +# +2200596# +The Box containing +-------------------------- +-[R] Pet Spirit Guarantee Scroll 3 ea +-Elite Siege Supply Box 5 ea +-Small Mana Potion 15 ea +-Hollgrehenn's Shadow Refine Hammer 3 ea +-------------------------- +Weight: 0 +# +2200597# +The Box containing +-------------------------- +-[Event] Rare Lucky Pet Scroll 25% 2 ea +-Enriched Elunium 1 ea +-Enriched Oridecon 1 ea +-Impositio Manus Special Stone 1 ea +-------------------------- +Weight: 0 +# +2200598# +The Box containing +-------------------------- +-[R] Pet Spirit Guarantee Scroll 3 ea +-Elite Siege Supply Box 5 ea +-Small Mana Potion 15 ea +-Hollgrehenn's Shadow Refine Hammer 3 ea +-------------------------- +Weight: 0 +# +2200599# +The Box containing +-------------------------- +-Enriched Elunium 1 ea +-Enriched Oridecon 1 ea +-Biscuit Stick Random Box 3 ea +-January Enchant Stone 1 ea +-------------------------- +Weight: 0 +# +2200600# +The rare egg of the Hardrock Mammoth, a prehistoric creature that wandered into the +new world, contains ancient items hidden inside. +-------------------------- +Weight: 0 +# +2200601# +A special gift box distributed by an anonymous sponsor +(This item will be deleted once the event ends.) +-------------------------- +Weight: 0 +# +2200602# +A scroll filled with gifts, helping to create a warm atmosphere during this winter season. +-------------------------- +Type: Item Giver +Weight: 1 +# +2200603# +Rental item with a 30-day duration +-------------------------- +Mini Nova – You can receive the Mini Nova status for 30 days, allowing you to access almost all services within NOVA, except for claiming Stamina +-------------------------- +Weight: 0 +# +2200604# +Rental Item, 7-day duration +-------------------------- +Mini Nova – You can receive the Mini Nova status for 7 days, granting access to almost all services within NOVA, except for claiming Stamina. +-------------------------- +Weight: 0 +# +2200605# +Rental Item, 2-hour duration +-------------------------- +Mini Nova – You can receive the Mini Nova status for 2 hours, allowing you to access almost all services within NOVA, except for claiming Stamin +-------------------------- +Weight: 0 +# +2200606# +Rental item with a 30-day duration +-------------------------- +Mini Nova – You can receive the Mini Nova status for 30 days, granting access to almost all services within NOVA, except for claiming Stamina +-------------------------- +Weight: 0 +# +2200607# +Rental Item, 7-day duration +-------------------------- +Mini Nova – You can receive the Mini Nova status for 7 days, granting access to almost all services within NOVA, except for claiming Stamina. +-------------------------- +Weight: 0 +# +2200608# +Rental Item Duration: 2 hours +-------------------------- +Mini Nova – You can receive the Mini Nova status for 2 hours, granting access to almost all services within NOVA, except for claiming Stamina +-------------------------- +Weight: 0 +# +2200609# +A box which contains +-------------------------- +[Event] Level 10 Blessing Scroll 50 ea +[Event] Level 10 Increase Agility Scroll 50 ea +[Event] Rare Lucky Pet Scroll 25% 1 ea +[Event] Medium Life Potion 20 ea +[Event] Mysterious Life Potion 20 ea +[Event] Small Mana Potion 10 ea +[Event] Almighty 5 ea +[Event] HE Battle Manual 3 ea +Vybranim Blessing 300 ea +-------------------------- +Weight: 1 +# +2200610# +A box which contains Reprinted Egg Sticker 1 ea +-------------------------- +A gift box straight from Santa's factory, so mysterious that even the packers dont know whats inside +-------------------------- +Type: Giver +Weight: 0 +# +2200611# +Adventurer's Appreciation Gift Box Open to receive a variety of gifts. +-------------------------- +Type: Giver +Weight: 0 +# +2200612# +Imbued with holy energy, this scroll grants access to +the pure power with in the Sacred Sanctum. +-------------------------- +Type: Item Giver +Weight: 1 +# +2200613# +The Box contains +-------------------------- +[Event] Guyak Pudding 15 ea +[Event] Token of Siegfried 10 ea +Guyak Candy 30 ea +-------------------------- +Type: Cash Shop +Weight: 0 +# +2200614# +A box which contains +[Event] Transformation Scroll(Rudolph) 7 Days +-------------------------- +Transforms the user into Rudolph +-------------------------- +Weight: 0 +# +2200615# +A scroll with hidden transformation powers. +Transforms the user into Rudolph +-------------------------- +Weight: 1 +# +2200616# +Welcome to RO Landverse +The Special Box for New Players +Containing numerous starter items inside +-------------------------- +Weight: 0 +# +2200617# +Welcome to RO Landverse +The Special Box welcoming the return of friends +Inside, many items are waiting +-------------------------- +Weight: 0 +# +2200618# +Welcome to RO Landverse +The Special Box for our beloved current players +Inside, many items are waiting +-------------------------- +Weight: 0 +# +2200619# +Welcome to RO Landverse +-------------------------- +The Special Box with many items inside for everyone. +New players can open it at the designated level +You can check the rewards available at rolth.maxion.gg. +-------------------------- +Weight: 1 +# +2200620# +Welcome to RO Landverse +-------------------------- +The Special Box that contains numerous items for everyone +New players can open it at the designated level +You can check the rewards available at rolth.maxion.gg +-------------------------- +Weight: 1 +# +2200621# +Welcome to RO Landverse +-------------------------- +The Special Box that contains numerous items for everyone +New players can open it at the designated level +You can check the rewards available at rolth.maxion.gg +-------------------------- +Weight: 1 +# +2200622# +Welcome to RO Landverse +-------------------------- +The Special Box that contains numerous items for everyone +New players can open it at the designated level +You can check the rewards available at rolth.maxion.gg +-------------------------- +Weight: 1 +# +2200623# +Welcome to RO Landverse +-------------------------- +The Special Box that contains numerous items for everyone +New players can open it at the designated level +You can check the rewards available at rolth.maxion.gg +-------------------------- +Weight: 1 +# +2200624# +Welcome to RO Landverse +-------------------------- +The Special Box that contains numerous items for everyone +New players can open it at the designated level +You can check the rewards available at rolth.maxion.gg +-------------------------- +Weight: 1 +# +2200625# +Welcome to RO Landverse +-------------------------- +The Special Box that contains numerous items for everyone +New players can open it at the designated level +You can check the rewards available at rolth.maxion.gg +-------------------------- +Weight: 1 +# +2200626# +Welcome to RO Landverse +-------------------------- +The Special Box that contains numerous items for everyone +New players can open it at the designated level +You can check the rewards available at rolth.maxion.gg +-------------------------- +Weight: 1 +# +2200627# +Welcome to RO Landverse +-------------------------- +The Special Box that contains numerous items for everyone +New players can open it at the designated level +You can check the rewards available at rolth.maxion.gg +-------------------------- +Weight: 1 +# +2200628# +Welcome to RO Landverse +-------------------------- +The Special Box that contains numerous items for everyone +New players can open it at the designated level +You can check the rewards available at rolth.maxion.gg +-------------------------- +Weight: 1 +# +2200629# +When used, it will be activated Title - Welcome New Player +-------------------------- +All Stats +1 +-------------------------- +Type: Title Giver +Weight: 1 +# +2200630# +When used, it will be activated Title - Surprise New Player +-------------------------- +All Stats +2 +-------------------------- +Type: Title Giver +Weight: 1 +# +2200631# +Simply open it and you'll receive it +Temporal Transcendent Shadow Set +Inside, it consists of +-------------------------- +[Event] Temporal Transcendent Shadow Armor +[Event] Temporal Transcendent Shadow Shoes +[Event] Temporal Transcendent Shadow Shield +[Event] Temporal Transcendent Shadow Weapon +[Event] Temporal Transcendent Shadow Earring +[Event] Temporal Transcendent Shadow Pendent +-------------------------- +Weight: 0 +# +2200632# +This Box consists of +-------------------------- +[R] Pet Spirit Guarantee Scroll 1 ea +Kafra Buff(1 Day) 1 ea +[Event] Battle Manual & Bubble Gum 3 ea +[Event] Medium Life Potion 5 ea +Gym Pass 1 ea +[Event] C Golden Tabby Tiger 1 ea +-------------------------- +Weight: 0 +# +2200633# +The Box that contains +-------------------------- +- [Event] Battle Manual & Bubble Gum 3 ea +- [Event] Token of Siegfried 5 ea +- Small Mana Potion 5 ea +- Mental Potion 5 ea +-------------------------- +Weight: 0 +# +2200634# +The Box that contains. +-------------------------- +- [Event] HE Battle Manual 3 ea +- [Event] HE Bubble Gum 3 ea +- Angeling Potion 10 ea +- [Event] Medium Life Potion 10 ea +-------------------------- +Weight: 0 +# +2200635# +Rental Items for 30 days +A box contains 1 [Event] Snake Sachet (30 Day) +-------------------------- +Atk+5 Matk+5 +All status +3 +Enable Teleport Level 1 +Exp +10% +Drop 5% +-------------------------- +Weight: 0 +# +2200636# +Contains. +-------------------------- +- [Event] NOVA Space Subscription Coupon 30 Days 1 ea +- [Event] Premium Service Box (30 Days) 1 ea +- [Event] Token of Siegfried 20 ea +-------------------------- +Weight: 0 +# +2200637# +The Box that contains +-------------------------- +Blessing Scroll 10 ea +Increase Agility Scroll 10 ea +Boarding Halter Box 3D 1 ea +New Pet Scroll 3 ea +-------------------------- +Weight: 0 +# +2200638# +The Box that contains +-------------------------- +[Event] Red Booster 5 ea +[R] Pet Spirit Guarantee Scroll 3 ea +Elite Siege Supply Box 3 ea +-------------------------- +Weight: 0 +# +2200639# +The Box that contains +[Event] Power Booster 2 ea +[Event] Guyak Pudding 15 ea +[Event] Supply Big Bun & Pill Box 1 ea +[Event] Kafra Buff(7 Days) 1 ea +[Event] HE Bubble Gum 4 ea +-------------------------- +Weight: 0 +# +2200640# +The Box that contains +-------------------------- +Enriched Elunium 1 ea +Enriched Oridecon 1 ea +Special January 2025 Scroll (30 Days) 1 ea +-------------------------- +Weight: 0 +# +2200641# +The Box that contains +-------------------------- +Character Surpassing Ticket 1 ea +-------------------------- +Weight: 0 +# +2200642# +The Box that contains +-------------------------- +Character Slot Expansion Coupon 1 ea +-------------------------- +Weight: 0 +# +2200643# +When you defeat a monster with physical or magical attacks, you receive 150 HP +Increases Movement Speed by 10% +Atk+5 Matk+5 +Exp+5% Drop+5% +-------------------------- +(Expires after use 30 Days) +-------------------------- +(Monthly buffs cannot be stacked) +-------------------------- +Weight: 0 +# +2200644# +[January] First Refill Box 10ION +A box that contains. +-------------------------- +Mental Potion 5ea +Angeling Potion 10ea +[Event] Battle Manual & Bubble Gum 3ea +[Event] Token of Siegfried 3ea +-------------------------- +Weight: 0 +# +2200645# +A box that contains. +-------------------------- +Level 10 Blessing Scroll 10ea +Level 10 Increase Agility Scroll 10ea +[Event] Mysterious Life Potion 10ea +-------------------------- +Weight: 0 +# +2200646# +A box that contains. +-------------------------- +New Pet Scroll 10ea +Boarding Halter Box 7D 1ea +[Event] HE Bubble Gum 3ea +Combat Pill 10ea +-------------------------- +Weight: 0 +# +2200647# +A box that contains. +-------------------------- +[R] Pet Spirit Guarantee Scroll 6ea +Cold Medicine 10ea +[Event] Token of Siegfried 7ea +-------------------------- +Weight: 0 +# +2200648# +A box that contains. +-------------------------- +[Event] Guyak Pudding 15ea +True Mental Potion 2ea +True Infinity Drink 2ea +True Red Booster 2ea +Kafra Buff (7 Day) 1ea +Adamantine Blessing 150ea +-------------------------- +Weight: 0 +# +2200649# +A box that contains. +-------------------------- +Adamantine Blessing 300ea +Enriched Elunium 2ea +Enriched Oridecon 2ea +Biscuit Stick Random Box 3ea +Special January Scroll 1ea +-------------------------- +Weight: 0 +# +2200650# +Special January Scroll +-------------------------- +All Stats +2 +Reduces the cast delay of skills by 10%. +Increases Movement Speed by 10% +Increases experience gained from defeating all monsters by 15% +Increases drop rate gained from defeating all monsters by 15% +-------------------------- +(Period expired 30 Days after use Scroll) +-------------------------- +Weight: 0 +# +2200651# +[January] First Refill Box 30ION +A box that contains. +-------------------------- +[Event] Automatic Player Box 30 Days 1ea +Kafra Buff (1 Day) 1ea +[Event] HE Battle Manual 3ea +Snake Sachet Box 1ea +-------------------------- +Weight: 0 +# +2200652# +The Holy Defender Scroll grants unmatched protective power, +perfect for heroes ready to face any danger. +-------------------------- +Type: Item Giver +Weight: 1 +# +2200653# +Happy New Year 2025 +The New Year's Celebration Box +That contains items inside +-------------------------- +Weight: 0 +# +2200654# +A special potion extracted from the mystical flower. +When used, it instantly advances the user to the next level.!! +-------------------------- +Weight: 0 +# +2200655# +Blue Fox Scroll, one of the rarest scrolls in the world +If you encounter it, consider yourself very lucky +-------------------------- +(Warning : Open it carefully, or you might get bitten) +Weight: 0 +# +2200656# +Contains +-------------------------- +[Event] MINI NOVA Space Subscription Coupon 30 Days 1 ea +[Event] Unlimited Fly Wing Box (14 Day) 1 ea +[Event] Kafra Buff(7 Days) 1 ea +[Event] Token of Siegfried 20 ea +-------------------------- +Weight: 0 +# +2200657# +The Box containing Kafra Buff that increases experience and item drop rate for 7 days. +-------------------------- +The character using this item will receive the following effects for 7 days. +- Increases received EXP 50% +- Increases item drop rate 50% +-------------------------- +Weight: 0 +# +2200658# +Contains +-------------------------- +[Event] Automatic Player Box 14 Days 1 The Box +[Event] Job Battle Manual Box(10) 1 The Box +[Event] 75% Battle Manual Box(10) 1 The Box +Medium Life Potion Box(30) 1 The Box +[Event] Small Mana Potion 15 ea +-------------------------- +Cash Shop: 0 +Weight: 0 +# +2200659# +The Box containing 1 [Golden] Automatic Player that can be used for 30 days +-------------------------- +Rental Item +-------------------------- +For use in the automatic attack system +-------------------------- +Item can be stored +Weight: 0 +# +2200660# +Contains +-------------------------- +[Event] VIP Coupon 30 Day 1 ea +[Event] Mini NOVA Space Subscription Coupon 30 Days 1 ea +[Event] Automatic Player Box 30 day 1 ea +-------------------------- +Weight: 0 +# +2200661# +Equipment specifically designed for the automatic attack system. +-------------------------- +Can be stored in the Storage +Weight: 1 +# +2200662# +The Crimson Stalker Scroll holds a chance to reward +you with rare and powerful treasures, +making you an unstoppable force. +-------------------------- +Type: Item Giver +Weight: 1 +# +2200663# +A box containing +-------------------------- +Infinity Drink 5ea +Red Booster 5ea +[Event] Mystic Powder 5ea +[Event] Elite Siege Supply Box 5ea +-------------------------- +Weight: 0 +# +2200664# +A box containing +-------------------------- +[R] Pet Spirit Guarantee Scroll 4ea +[Event] HE Battle Manual 3ea +[Event] HE Bubble Gum 3ea +True Tyr's Blessing 2ea +-------------------------- +Weight: 0 +# +2200665# +A box containing +-------------------------- +Enriched Elunium 2ea +Enriched Oridecon 2ea +Adamantine Blessing 300ea +Holgren's Shadow Smelting Hammer 3ea +Gloria Enchant Stone 1ea +Weapon +7 Refine Ticket 1ea +Armor +7 Refine Ticket 1ea +-------------------------- +Weight: 0 +# +2200666# +The Box contains Prismatic Potion 5 ea +And Shining MDef Scroll 5 ea +-------------------------- +Type: Cash Shop +Weight: 0 +# +2200667# +The box that contains +-------------------------- +[Event] Battle Manual 2ea +[Event] Bubble Gum 2ea +Adamantine Blessing 10ea +[Event] Red Booster 2ea +[Event] Token of Siegfried 2ea +[Event] Megaphone 2ea +[Event] Regeneration Potion 2ea +[Event] Pet Scroll 2ea +-------------------------- +Weight: 0 +# +2200668# +The rare egg of Satan Morroc, with burning flames, and hidden rare items inside +-------------------------- +Weight: 0 +# +2200669# +The Scroll of Slaughter, filled with deep resentment. +-------------------------- +(Warning!! : Be careful when opening, as blood may spill out) +Weight: 0 +# +2200670# +The Box of Lava Treasures +When opened, you have a chance to randomly receive [SSR] Landstone 1 ea +-------------------------- +Weight: 0 +# +2200671# +The Box of Lava Treasures +When opened, you have a chance to randomly receive [SR] Landstone 1 ea +-------------------------- +Weight: 0 +# +2200672# +The Box of Lava Treasures +When opened, you have a chance to randomly receive [R] Landstone 1 ea +-------------------------- +Weight: 0 +# +2200673# +The Box of Mystery – When opened, there is a chance to receive. +-------------------------- +[SSR] Landstone Random Box (VI) 1 ea +[SR] Landstone Random Box (VI) 1 ea +[R] Landstone Random Box (VI) 1 ea +-------------------------- +Weight: 0 +# +2200674# +A Box Contain +-------------------------- +New Year Dumplings 15ea +Adamantine Blessing 10ea +Small Life Potion 2ea +Small Mana Potion 1ea +[Event] Kafra Card 2ea +-------------------------- +Weight: 0 +# +2200675# +Large firecrackers received from the caretaker, used to scare away Zhu Po Long. +-------------------------- +This item will disappear after the event period ends. +-------------------------- +Weight: 0 +# +2200676# +Awakens the power of the Sacred Fist, +allowing the user to overcome all obstacles with the spirit of light. +-------------------------- +Type: Item Giver +Weight: 1 +# +2200677# +Contains a Sealed MVP Card. +-------------------------- +Sealed Gloom Under Night, +Sealed Pharaoh, +Sealed Lady Tanee, +Sealed Eddga, +Sealed Dracula, +Sealed Orc Hero, +Sealed Stormy Knight, +Sealed Dark Lord, +Sealed Orc Lord, +Sealed Baphomet, +Sealed Maya, +Sealed White Lady, +Sealed Tao Gunka Card, +Sealed Fallen Bishop Card +-------------------------- +Weight: 1 +# +2200678# +A box containing +-------------------------- +[Event] Bleeding Crystal 10ea +Silvervine 10ea +-------------------------- +Weight: 0 +# +2200679# +Rental Items for 30 days +-------------------------- +A box contains +[Event] Lover in Mouth(30Days) 1ea +-------------------------- +Weight: 0 +# +2200680# +[FEB] First Refill Box 10ION +A box that contains. +-------------------------- +Mental Potion 5ea +Angeling Potion 10ea +[Event] Battle Manual & Bubble Gum 3ea +[Event] Token of Siegfried 3ea +-------------------------- +Weight: 0 +# +2200681# +[FEB] First Refill Box 30ION +A box that contains. +-------------------------- +[Event] Automatic Player Box 30 Days 1ea +Kafra Buff (1 Day) 1ea +[Event] HE Battle Manual 3ea +Lover in Mouth Box 1ea +-------------------------- +Weight: 0 +# +2200682# +A box that contains. +-------------------------- +Level 10 Blessing Scroll 10ea +Level 10 Increase Agility Scroll 10ea +[Event] Mysterious Life Potion 10ea +-------------------------- +Weight: 0 +# +2200683# +A box that contains. +-------------------------- +New Pet Scroll 10ea +Boarding Halter Box 7D 1ea +[Event] HE Bubble Gum 3ea +Combat Pill 10ea +-------------------------- +Weight: 0 +# +2200684# +A box that contains. +-------------------------- +[R] Pet Spirit Guarantee Scroll 6ea +Cold Medicine 10ea +[Event] Token of Siegfried 7ea +-------------------------- +Weight: 0 +# +2200685# +A box that contains. +-------------------------- +[Event] Guyak Pudding 15ea +True Mental Potion 2ea +True Infinity Drink 2ea +True Red Booster 2ea +Kafra Buff (7 Day) 1ea +Adamantine Blessing 150ea +-------------------------- +Weight: 0 +# +2200686# +A box that contains. +-------------------------- +Adamantine Blessing 300ea +Enriched Elunium 2ea +Enriched Oridecon 2ea +Biscuit Stick Random Box 3ea +Special Febuary Scroll 1ea +-------------------------- +Weight: 0 +# +2200688# +A very heavy looking bag that contains +5 Land Crystal +-------------------------- +Class: Item Giver +Weight: 1 +# +2200689# +When opened gives one of the following at random +-------------------------- +STR Landstone Armor II +STR Landstone Garment II +STR Landstone Footgear II +-------------------------- +Weight: 0 +# +2200690# +When opened gives one of the following at random +-------------------------- +AGI Landstone Armor II +AGI Landstone Garment II +AGI Landstone Footgear II +-------------------------- +Weight: 1 +# +2200691# +When opened gives one of the following at random +-------------------------- +VIT Landstone Armor II +VIT Landstone Garment II +VIT Landstone Footgear II +-------------------------- +Weight: 1 +# +2200692# +When opened gives one of the following at random +-------------------------- +INT Landstone Armor II +INT Landstone Garment II +INT Landstone Footgear II +-------------------------- +Weight: 1 +# +2200693# +When opened gives one of the following at random +-------------------------- +DEX Landstone Armor II +DEX Landstone Garment II +DEX Landstone Footgear II +-------------------------- +Weight: 1 +# +2200694# +When opened gives one of the following at random +-------------------------- +LUK Landstone Armor II +LUK Landstone Garment II +LUK Landstone Footgear II +-------------------------- +Weight: 1 +# +2200695# +When opened gives one of the following at random +-------------------------- +ATK Landstone Armor II +ATK Landstone Garment II +ATK Landstone Footgear II +-------------------------- +Weight: 1 +# +2200696# +When opened gives one of the following at random +-------------------------- +SPEED Landstone Armor II +SPEED Landstone Garment II +SPEED Landstone Footgear II +-------------------------- +Weight: 1 +# +2200697# +When opened gives one of the following at random +-------------------------- +STR Landstone Armor I +STR Landstone Garment I +STR Landstone Footgear I +-------------------------- +Weight: 0 +# +2200698# +When opened gives one of the following at random +-------------------------- +AGI Landstone Armor I +AGI Landstone Garment I +AGI Landstone Footgear I +-------------------------- +Weight: 1 +# +2200699# +When opened gives one of the following at random +-------------------------- +VIT Landstone Armor I +VIT Landstone Garment I +VIT Landstone Footgear I +-------------------------- +Weight: 1 +# +2200700# +When opened gives one of the following at random +-------------------------- +INT Landstone Armor I +INT Landstone Garment I +INT Landstone Footgear I +-------------------------- +Weight: 1 +# +2200701# +When opened gives one of the following at random +-------------------------- +DEX Landstone Armor I +DEX Landstone Garment I +DEX Landstone Footgear I +-------------------------- +Weight: 1 +# +2200702# +When opened gives one of the following at random +-------------------------- +LUK Landstone Armor I +LUK Landstone Garment I +LUK Landstone Footgear I +-------------------------- +Weight: 1 +# +2200703# +When opened gives one of the following at random +-------------------------- +ATK Landstone Armor I +ATK Landstone Garment I +ATK Landstone Footgear I +-------------------------- +Weight: 1 +# +2200704# +When opened gives one of the following at random +-------------------------- +SPEED Landstone Armor I +SPEED Landstone Garment I +SPEED Landstone Footgear I +-------------------------- +Weight: 1 +# +2200714# +Nameless Quest Pass grants exclusive access to bypass the quest Nameless Island Entrance +allowing direct entry into the Nameless Island. +-------------------------- +This item cannot be used if you have already completed this quest. +-------------------------- +Weight: 0 +# +2200715# +Bio Laboratory Quest Pass grants exclusive access to bypass the quest Bio Lab Entrance Quest +allowing direct entry into the Bio Laboratory. +-------------------------- +This item cannot be used if you have already completed this quest. +-------------------------- +Weight: 0 +# +2200718# +A box containing +-------------------------- +Infinity Drink 5ea +Red Booster 5ea +[Event] Mystic Powder 5ea +[Event] Elite Siege Supply Box 5ea +-------------------------- +Weight: 0 +# +2200719# +A box containing +-------------------------- +[R] Pet Spirit Guarantee Scroll 4ea +[Event] HE Battle Manual 3ea +[Event] HE Bubble Gum 3ea +True Tyr's Blessing 2ea +-------------------------- +Weight: 0 +# +2200720# +A box containing +-------------------------- +Enriched Elunium 2ea +Enriched Oridecon 2ea +Adamantine Blessing 300ea +Holgren's Shadow Smelting Hammer 3ea +Zen Enchant Stone 1ea +Weapon +7 Refine Ticket 1ea +Armor +7 Refine Ticket 1ea +-------------------------- +Weight: 0 +# +2200721# +A scroll imbued with the power of the moonlight on a full moon night for thousands of years. +The time has come to unveil it Power of the Moon, reveal your might now! +-------------------------- +Type: Item Giver +Weight: 1 +# +2200723# +Pre-Sale Bronze Package +-------------------------- +Moonstone Point (2000) +Title: The Beginner (Allstatus + 1) +-------------------------- +Costume Angel Random box 1ea +[Event] Battle Manual 10ea +[Event] Job Manual 10ea +New pet scroll 3ea +[Event] Unlimited Fly Wing Box (1 Day) 3ea +[Event] Level 10 Increase Agility Scroll 50ea +[Event] Level 10 Blessing Scroll 50ea +Free Ticket for Kafra Storage 15ea +Free Ticket for Kafra Transportation 15ea +Presale Premium Random Box 1ea +Max Points 3ea +-------------------------- +Weight: 1 +# +2200724# +Pre-Sale Silver Package +-------------------------- +Moonstone Point (7000) +Title: The Protector (Allstatus + 3) +-------------------------- +Costume Golden Angel Random box 1ea +[R] Pet Spirit Guarantee Scroll 1ea +Premium Exp/Drop Box I 1ea +Zeny Box 5ea +Adamantine Blessing 10ea +Elunium-Oridecon Random Box 1ea +Presale Premium Random Box 3ea +Max Points 10ea +-------------------------- +Weight: 1 +# +2200725# +Pre-Sale Gold Package +-------------------------- +Moonstone Point (20000) +Title: Guardian of Midgard (Allstatus + 5) +-------------------------- +Costume Rainbow Angel Random box 1ea +[R] Pet Spirit Guarantee Scroll 4ea +Premium Exp/Drop Box II 1ea +Zeny Box 10ea +Adamantine Blessing 30ea +Enrich Elunium-Oridecon Random Box 1ea +Presale Premium Random Box 5ea +Max Points 30ea +-------------------------- +Weight: 1 +# +2200726# +Welcome to Ragnarok Landverse. Wish you lucky for the first gacha! +-------------------------- +Class: Item Giver +Weight: 1 +# +2200727# +A box containing Premium EXP&DROP items: +-------------------------- +- [Event] Premium Ration Server Box 1 ea +- [Event] Kafra Buff Box (7 Day) 1ea +- [Event] Unlimited Fly Wing Box (1Day) 7 ea +-------------------------- +Class: Item Giver +Weight: 1 +# +2200728# +A box containing Premium EXP&DROP items: +-------------------------- +- [Event] Premium Ration Server Box 1 ea +- [Event] Kafra Buff Box (7 Day) 2ea +- Unlimited Fly Wing Box (3Day) 7 ea +-------------------------- +Class: Item Giver +Weight: 1 +# +2200729# +Open to obtain 1 random item below: +-------------------------- +- Elunium 1 ea +- Oridecon 1 ea +-------------------------- +Class: Item Giver +Weight: 1 +# +2200730# +Open to obtain 1 random item below: +-------------------------- +- Enrich Elunium 1 ea +- Enrich Oridecon 1 ea +-------------------------- +Class: Item Giver +Weight: 1 +# +2200731# +Costume Angel Random box +-------------------------- +A box containing +Golden Angel Stone 1ea +Random Item +Costume Golden Angel Wing +Costume Golden Angel Wing Ears +Costume Golden Archangel Wing +-------------------------- +Weight: 1 +# +2200732# +Costume Rainbow Angel Random box +-------------------------- +A box containing +Rainbow Angel Stone 1ea +Random Item +Costume Angel of Happiness +Costume Happiness Wings +Costume Happiness Ears +-------------------------- +Weight: 1 +# +2200733# +Costume Angel Random box +-------------------------- +A box containing +Angel Stone 1ea +Random Item +Costume Archangel Wing +Costume Moving Angel Wing +Costume Angel Wing Ears +-------------------------- +Weight: 1 +# +2200734# +Random to obtain 1 item below: +-------------------------- +Uncommon Egg +Rare Egg +-------------------------- +Class: Item Giver +Weight: 0 +# +2200735# +A small, shimmering crystal infused with lunar energy. When activated, it grants the bearer 2000 Moonstone Point +# +2200736# +A small, shimmering crystal infused with lunar energy. When activated, it grants the bearer 7000 Moonstone Point +# +2200737# +A small, shimmering crystal infused with lunar energy. When activated, it grants the bearer 20000 Moonstone Point +# +2200738# +Contains VIP Stamina Elixir 10 ea +-------------------------- +Type: Cash +Weight: 0 +# +2200740# +A box containing 1 Automatic Player Box that can be used for 12 Hr. +-------------------------- +Rental Item. +-------------------------- +For use in Autoattack System. +-------------------------- +Weight: 1 +# +2200851# +Box containing 40 Silvervine Fruits. A small amount of canned food is included as a bonus. +Sunkissed Silvervine Fruit. Human think that is normal and tastes bad but it is valuable in Malangdo. +-------------------------- +Weight: 1 +# +2200854# +Active Title - ROLG CBT +-------------------------- +All Stats +5 +ATK +5 +MATK +5 +VCT -5% +FCT -0.1 +Hit+5 +Flee+5 +-------------------------- +Type: Title +Weight: 1 +# +2200888# +A bag that looks old but it is filled with many valuable minerals. +-------------------------- +Use 1 Stamina to open +Class: Item Giver +Weight: 1 +# +2200902# +A gift for beginner adventurer. +-------------------------- +Type: Item Giver +Weight: 1 +# +2200913# +Pre-Sale [Event] Silver Package +-------------------------- +[Event] Costume Golden Angel Random box 1ea +[R] Pet Spirit Guarantee Scroll 1ea +Premium Exp/Drop Box I 1ea +Zeny Box 5ea +Adamantine Blessing 10ea +Elunium-Oridecon Random Box 1ea +-------------------------- +Weight: 1 +# +2200914# +Pre-Sale [Event] Gold Package +-------------------------- +[Event] Costume Rainbow Angel Random box 1ea +[R] Pet Spirit Guarantee Scroll 4ea +Premium Exp/Drop Box II 1ea +Zeny Box 10ea +Adamantine Blessing 30ea +Enrich Elunium-Oridecon Random Box 1ea +-------------------------- +Weight: 1 +# +2200915# +Costume Angel Random box +-------------------------- +A box containing +Golden Angel Stone 1ea +Random Item +[Event] Costume Golden Angel Wing +[Event] Costume Golden Angel Wing Ears +[Event] Costume Golden Archangel Wing +-------------------------- +Weight: 1 +# +2200916# +Costume Rainbow Angel Random box +-------------------------- +A box containing +Rainbow Angel Stone 1ea +Random Item +[Event] Costume Angel of Happiness +[Event] Costume Happiness Wings +[Event] Costume Happiness Ears +-------------------------- +Weight: 1 +# +2200917# +A box that contains. +-------------------------- +[Event] Level 10 Blessing Scroll 10ea +[Event] Level 10 Increase Agility Scroll 10ea +[Event] Battle Manual 3ea +Blessing Ore Mirror 10ea +-------------------------- +Weight: 0 +# +2200918# +A box that contains. +-------------------------- +[Event] JOB Battle Manual 5ea +[Event] Unlimited Fly Wing Box (2Hrs) 1ea +[Event] Small Mana Potion 3ea +[Event] Medium Life Potion 3ea +-------------------------- +Weight: 0 +# +2200919# +This box contains [Event] Angelring Bubble 1 ea Rent for 30 days +-------------------------- +Effect Expire 30 Day after open box +-------------------------- +Type: Rent item +Weight: 0 +# +2200920# +A mutated egg from a forbidden laboratory. +Countless items are hidden inside. +-------------------------- +Weight: 0 +# +2200922# +A box that contains. +-------------------------- +[Event] Small Life Potion 5ea +[Event] Medium Life Potion 5ea +[Event] Boarding Halter 7D Box 1ea +Angelring Potion 5ea +-------------------------- +Weight: 0 +# +2200923# +A box that contains. +-------------------------- +[Event] Medium Life Potion 3ea +Pet Scroll 4ea +[Event] Battle Manual & Bubble Gum 3ea +-------------------------- +Weight: 0 +# +2200924# +A box that contains. +-------------------------- +[Event] Unlimited Fly Wing Box (1 Day) 2ea +Kafra Buff(1 Day) 2ea +[Event] HE Battle Manual 3ea +[R] Pet Spirit Guarantee Scroll 1ea +-------------------------- +Weight: 0 +# +2200925# +A box that contains. +-------------------------- +Enriched Oridecon 1ea +Enriched Elunium 1ea +Special March 2025 Scroll 1ea +-------------------------- +Weight: 0 +# +2200926# +A box that contains. +-------------------------- +[R] Pet Guaranteed Scroll 2ea +-------------------------- +Weight: 0 +# +2200927# +Special March 2025 Scroll +-------------------------- +Atk+5 Matk+5 +Exp+5% Drop+5% +-------------------------- +(Buff Effect Account) +(After 30 days of use) +(Monthly buff can be overlaid) +-------------------------- +Weight: 0 +# +2200928# +A box containing 10 mental potion. +A potion that increases Maximum SP by 10% and decreases SP consumption by 10% for 30 minutes. +-------------------------- +Weight: 1 +# +2200929# +A box containing 10 small mana potion. +Restores 5% of MaxSP every 5 second for 10 minutes. +-------------------------- +Can't be used in Berserk state. +Effect disappear when character KO'ed. +-------------------------- +Weight: 1 +# +2200930# +A box containing stones that can be enchanted to each part of the costume. +-------------------------- +Class: Item Giver +Weight: 0 +# +2200931# +A box designed to retain the sterling condition of the +5 Elunium that is contained inside it. +-------------------------- +Weight: 1 +# +2200932# +A box designed to retain the sterling condition of the +10 Elunium that is contained inside it. +-------------------------- +Weight: 1 +# +2200933# +A box designed to retain the sterling condition of the +20 Elunium that is contained inside it. +-------------------------- +Weight: 1 +# +2200934# +A box designed to retain the sterling condition of the +30 Elunium that is contained inside it. +-------------------------- +Weight: 1 +# +2200935# +A box designed to retain the sterling condition of the +5 Oridecon that is contained inside it. +-------------------------- +Weight: 1 +# +2200936# +A box designed to retain the sterling condition of the +10 Oridecon that is contained inside it. +-------------------------- +Weight: 1 +# +2200937# +A box designed to retain the sterling condition of the +20 Oridecon that is contained inside it. +-------------------------- +Weight: 1 +# +2200938# +A box designed to retain the sterling condition of the +30 Oridecon that is contained inside it. +-------------------------- +Weight: 1 +# +2200965# +Active Title - Bug Hunter +-------------------------- +EXP +2% +DROP +2% +-------------------------- +Type: Title +Weight: 1 +# +2200966# +The Box containing 1 Automatic Player that can be used for 30 days +-------------------------- +Rental Item +-------------------------- +For use in the automatic attack system +-------------------------- +Item can be stored +Weight: 0 +# +2200967# +Random to obtain 1 item below: +-------------------------- +Uncommon Egg +Rare Egg +-------------------------- +Class: Item Giver +Weight: 0 +# +2200969# +Prepare to embark on an epic gaming odyssey like no other! +-------------------------- +A chest that seems to contain something extremely valuable. +Let's see what's inside. +-------------------------- +Weight: 0 +# +2200971# +You can feel the dark fallen surpent energy surrounding you. +-------------------------- +Class: Item Giver +Weight: 1 +# +2200972# +When opened gives one of the following at random: +-------------------------- +STR Landstone Box II +AGI Landstone Box II +VIT Landstone Box II +INT Landstone Box II +DEX Landstone Box II +LUK Landstone Box II +-------------------------- +Class: Item Giver +Weight: 1 +# +2200979# +A box contain all of Landstone I +-------------------------- +Weight: 1 +# +2200980# +A box containing +-------------------------- +Chilly Breath +Pet Scroll 3ea +[Event] Unlimited Fly Wing Box (1 Day) 2ea +-------------------------- +Weight: 0 +# +2200981# +A box containing +-------------------------- +[Event] Elite Siege Supply Box 3ea +[Event] Mental Potion 10ea +[Event] Small Mana Potion 15ea +Flapping Angel Wing 1ea +Archangel Wings [1] 1ea +-------------------------- +Weight: 0 +# +2200985# +A box containing 100 AGI Scrolls. (Level 10 Increase AGI) +-------------------------- +Weight: 1 +# +2200986# +A box containing 100 Blessing Scrolls. (Level 10 Blessing) +-------------------------- +Weight: 1 +# +2200987# +A box contain all of Ex-Landstone II +-------------------------- +Weight: 1 +# +2200993# +The Ancient Flame grants adventurers the power to combine Epic pets and create a new Epic pet. +-------------------------- +Type: Etc +Class: Special +Weight: 0 +# +2200996# +Employment voucher that you can use to hire a top-notch part-time vendor. +Cannot be used after the voucher expires. +Allows the user to vend up to 5 item stacks. +-------------------------- +Weight: 0 +# +2200997# +Employment voucher that you can use to hire a top-notch part-time vendor. +Cannot be used after the voucher expires. +Allows the user to vend up to 10 item stacks. +-------------------------- +Weight: 0 +# +2200998# +When opened gives one of the following at random +-------------------------- +MATK Landstone Armor I +MATK Landstone Garment I +MATK Landstone Footgear I +-------------------------- +Weight: 1 +# +2200999# +When opened gives one of the following at random +-------------------------- +MDEF Landstone Armor I +MDEF Landstone Garment I +MDEF Landstone Footgear I +-------------------------- +Weight: 1 +# +2201000# +When opened gives one of the following at random +-------------------------- +MATK Landstone Armor II +MATK Landstone Garment II +MATK Landstone Footgear II +-------------------------- +Weight: 1 +# +2201001# +When opened gives one of the following at random +-------------------------- +MDEF Landstone Armor II +MDEF Landstone Garment II +MDEF Landstone Footgear II +-------------------------- +Weight: 1 +# +2201006# +When opened gives one of the following at random: +-------------------------- +ATK Landstone Box II +Speed Landstone Box II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201007# +An object used to store magical power. You can sense the magical power far away. +-------------------------- +Class: Item Giver +Weight: 1 +# +2201008# +A box containing stones that can be enchanted to each part of the costume. +-------------------------- +Class: Item Giver +Weight: 1 +# +2201009# +A weak medicinal flame which heals wounds. +Recovers a little HP. +-------------------------- +Weight: 1 +# +2201155# +Use this item to earn 1 Battle Pass points. +-------------------------- +Weight: 0 +# +2201156# +A box that contains. +-------------------------- +[Event] Small Life Potion 5ea +[Event] Small Mana Potion 5ea +[Event] Bubble Gum 3ea +[Event] Battle Manual 3ea +-------------------------- +Weight: 0 +# +2201157# +A box that contains. +-------------------------- +[Event] Pet Scroll 1ea +Blessing Ore Mirror 2ea +[Event] Unlimited Fly Wing Box (2Hrs) 2ea + [Event] Battle Manual & Bubble Gum 3ea +-------------------------- +Weight: 0 +# +2201158# +This box contains [Event] Chewing Gum 1 ea Rent for 30 days +Item expire within 30 Day after open box +-------------------------- +Weight: 0 +# +2201159# +A box that contains. +-------------------------- +[Event] Level 10 Blessing Scroll 15ea +[Event] Level 10 Increase Agility Scroll 15ea +Blessing Ore Mirror 3ea +[Event] Pet Scroll 1ea +-------------------------- +Weight: 0 +# +2201160# +A box that contains. +-------------------------- +[Event] Battle Manual & Bubble Gum 3ea +[Event] Unlimited Fly Wing Box (1 Day) 1ea +[R] Pet Guaranteed Scroll 1ea +-------------------------- +Weight: 0 +# +2201161# +A box that contains. +-------------------------- +[Event] Token of Siegfried 2ea +[Event] Unlimited Fly Wing Box (1 Day) 2ea +[Event] Advanced Battle Manual 3ea +[Event] Pet Scroll 3ea +-------------------------- +Weight: 0 +# +2201162# +A box that contains. +-------------------------- +Enriched Oridecon 1ea +Enriched Elunium 1ea +Special May 2025 Scroll 1ea +-------------------------- +Weight: 0 +# +2201163# +A box that contains. +-------------------------- +[R] Pet Guaranteed Scroll 2ea +-------------------------- +Weight: 0 +# +2201164# +Special May 2025 Scroll +-------------------------- +Hp+500 Sp+100 +Hp/Sp recovery 10% +Exp+5% Drop+5% +-------------------------- +(Buff Effect Account) +(After 30 days of use) +(Monthly buff can be overlaid) +-------------------------- +Weight: 0 +# +2201166# +This well written, detailed manual explains High Efficiency battle methods. +EXP rate increases to 200% for 15 minutes. +-------------------------- +Weight: 1 +# +2201167# +This well written, detailed manual explains effective battle methods. +-------------------------- +Type: Supportive +Effect: Experience gained +50% +Effect duration: 30 minutes +Weight: 1 +# +2201168# +A High Efficiency bubble gum that packs double the punch. +Item drop rate increases by 200% for 15 minutes. +-------------------------- +Weight: 1 +# +2201169# +Sweet, tasty bubble gum. +-------------------------- +Type: Supportive +Effect: Item Droprate +100% +Duration: 30 minutes +Weight: 1 +# +2201170# +A scroll in which a single use of Level 10 Increase Agility has been recorded. +-------------------------- +This item will not work while your character is casting a skill or has less than 16 HP. +-------------------------- +Type: Magic scroll +Cast: Level 10 Increase Agility +Weight: 1 +# +2201171# +A scroll in which a single use of Level 10 Blessing has been recorded. +Caution!- Casts Level 10 Blessing on the user when used. +-------------------------- +Weight: 1 +# +2201172# +A Magical booster which activates the body energy in order to combat better. +-------------------------- +Increases ATK/MATK by 30, +Increases Attack Speed (Decreases After Attack Delay by 5%), +Decreases Variable Casting Time by 5% +and MaxHP/MaxSP by -10% for 10 minutes. +When attacking, Concentration Level 3 will be casted with a certain chance. +(If the character has the skill higher than Lv 3, the skill will be casted with the reached Level) +When player's character KO'd, the buff effect will wear off. +-------------------------- +Weight: 1 +# +2201173# +Scroll that has the record of using Level 1 Repair Weapon. It has some mysterious letters written on the scroll. +-------------------------- +Weight: 1 +# +2201181# +A box that contains Adamantine Blessing 100 ea +Adamantine Blessing cannot be traded +-------------------------- +Type: Item Giver +Weight: 0 +# +2201182# +A box that contains Adamantine Blessing 100 ea +Adamantine Blessing cannot be traded +-------------------------- +Type: Item Giver +Weight: 0 +# +2201183# +A box that contains Adamantine Blessing 100 ea +Adamantine Blessing cannot be traded +-------------------------- +Type: Item Giver +Weight: 0 +# +2201184# +A box that contains Adamantine Blessing 100 ea +Adamantine Blessing cannot be traded +-------------------------- +Type: Item Giver +Weight: 0 +# +2201185# +A box that contains Adamantine Blessing 100 ea +Adamantine Blessing cannot be traded +-------------------------- +Type: Item Giver +Weight: 0 +# +2201186# +Rental Item, 1Day duration +-------------------------- +Mini Nova – You can receive the Mini Nova status for 1 Day, allowing you to access almost all services within NOVA, except for claiming Stamin +-------------------------- +Weight: 0 +# +2201187# +Use this item to earn 20 Battle Pass points. +-------------------------- +Weight: 0 +# +2201188# +Contains +-------------------------- +Premium Ration Service Box 1 ea +Kafra Buff Box (7 Days) 2 ea +NOVA Space Subsciption Coupon (30 Days) 1 ea +Silvervine Box (10) 1 ea +-------------------------- +Weight: 0 +# +2201194# +When opened gives one of the following at random: +-------------------------- +Critical Hit Landstone Armor II +Critical Hit Landstone Garment II +Critical Hit Landstone Footgear II +-------------------------- +Weight: 1 +# +2201195# +When opened gives one of the following at random: +-------------------------- +DEF Landstone Armor II +DEF Landstone Garment II +DEF Landstone Footgear II +-------------------------- +Weight: 1 +# +2201196# +When opened gives one of the following at random: +-------------------------- +MATK Landstone Box II +MDEF Landstone Box II +-------------------------- +Weight: 1 +# +2201197# +When opened gives one of the following at random: +-------------------------- +Critical Hit Landstone Armor I +Critical Hit Landstone Garment I +Critical Hit Landstone Footgear I +-------------------------- +Weight: 1 +# +2201198# +When opened gives one of the following at random: +-------------------------- +DEF Landstone Armor I +DEF Landstone Garment I +DEF Landstone Footgear I +-------------------------- +Weight: 1 +# +2201199# +A scroll filled with the power of the land. +-------------------------- +EXP +5% +Drop +5% +ATK +3 +MATK +3 +HIT +3 +-------------------------- +Expire in 7 days when used. +-------------------------- +Weight: 0 +# +2201203# +An elegant object with the appearance of a black cat. +-------------------------- +Type: Item Giver +Weight: 1 +# +2201207# +When opened gives one of the following at random: +-------------------------- +Unfrozen Landstone Armor +Unfrozen Landstone Garment +Unfrozen Landstone Footgear +-------------------------- +Class: Item Giver +Weight: 1 +# +2201208# +A potion that increases ATK a little. +-------------------------- +ATK+ 25 +-------------------------- +Duration: 500 seconds. +Weight: 5 +# +2201209# +A potion that increases MATK a little. +-------------------------- +MATK+ 25 +-------------------------- +Duration: 500 seconds. +Weight: 5 +# +2201210# +A scroll shaped like a sword and shield, evoking a sense of strength and victory. +-------------------------- +Type: Item Giver +Weight: 1 +# +2201211# +A box containing +-------------------------- +[Event] Elite Siege Supply Box 3ea +[Event] Small Mana Potion 10ea +[R] Pet Guaranteed Scroll 1ea +-------------------------- +Weight: 0 +# +2201212# +A box containing +Enriched Oridecon 1ea +Enriched Elunium 1ea +May Enchant Stone 1ea +Hollgrehenn's Shadow Refine Hammer 2ea +-------------------------- +Weight: 0 +# +2201213# +A box contain with unable to access a price reward. +-------------------------- +Weight: 1 +# +2201214# +A box contain with unable to access a price reward. +-------------------------- +Weight: 1 +# +2201215# +A box contain with unable to access a price reward. +-------------------------- +Weight: 1 +# +2201216# +Active Title - Transcendent Path +-------------------------- +All status +5 +Atk+5 Matk+5 +Weight limit +100 +-------------------------- +Type: Title +Weight: 1 +# +2201217# +Active Title - The Elevation +-------------------------- +All status +5 +Atk+2 Matk+2 +Weight limit +50 +-------------------------- +Type: Title +Weight: 1 +# +2201218# +Active Title - Summitrax Rise +-------------------------- +All status +5 +-------------------------- +Type: Title +Weight: 1 +# +2201230# +Researchers use this candy when working around the Juno Field and a pit of lava to protect themselves from any dangers in the area +-------------------------- +Increase damage to monsters in Juno field and Magma dungeon by 5% +Decrease damage taken from monsters in Juno field and Magma dungeon by 5% +Reduces damage taken from Fire property attacks by 5% +-------------------------- +Duration: 2 Hr +Weight: 1 +# +2201231# +The scroll that contains the belongings of the legendary hunter. It is said that this hunter never misses his mark. +-------------------------- +Type: Item Giver +Weight: 1 +# +2201232# +When opened gives one of the following at random: +-------------------------- +FLEE Landstone Armor II +FLEE Landstone Garment II +FLEE Landstone Footgear II +-------------------------- +Weight: 1 +# +2201233# +When opened gives one of the following at random: +-------------------------- +HIT Landstone Armor II +HIT Landstone Garment II +HIT Landstone Footgear II +-------------------------- +Weight: 1 +# +2201234# +When opened gives one of the following at random: +-------------------------- +Critical Hit Landstone Box II +DEF Landstone Box II +-------------------------- +Weight: 1 +# +2201235# +When opened gives one of the following at random: +-------------------------- +FLEE Landstone Armor I +FLEE Landstone Garment I +FLEE Landstone Footgear I +-------------------------- +Weight: 1 +# +2201236# +When opened gives one of the following at random: +-------------------------- +HIT Landstone Armor I +HIT Landstone Garment I +HIT Landstone Footgear I +-------------------------- +Weight: 1 +# +2201237# +A box containing stones that can be enchanted to each part of the costume. +-------------------------- +Class: Item Giver +Weight: 1 +# +2201238# +Use this item to earn 1 Battle Pass points. +-------------------------- +Weight: 0 +# +2201239# +Use this item to earn 20 Battle Pass points. +-------------------------- +Weight: 0 +# +2201246# +A box that contains. +-------------------------- +[Event] Small Life Potion 2ea +[Event] Small Mana Potion 2ea +[Event] Bubble Gum 2ea +[Event] Battle Manual 2ea +-------------------------- +Weight: 0 +# +2201247# +A box that contains. +-------------------------- +[Event] Small Life Potion 5ea +[Event] Small Mana Potion 5ea +Blessing Ore Mirror 3ea +[Event] Pet Scroll 1ea +-------------------------- +Weight: 0 +# +2201248# +A box that contains. +-------------------------- +[Event] Battle Manual 3ea +[Event] Bubble Gum 3ea +[Event] Pet Scroll 2ea +-------------------------- +Weight: 0 +# +2201249# +A box that contains. +-------------------------- +[Event] Battle Manual & Bubble Gum 3ea +[Event] Unlimited Fly Wing Box (1 Day) 1ea +[Event] Red Booster 3ea +[R] Pet Guaranteed Scroll 1ea +-------------------------- +Weight: 0 +# +2201250# +A box that contains. +-------------------------- +Enriched Oridecon 1ea +Enriched Elunium 1ea +Special June 2025 Scroll 1ea +-------------------------- +Weight: 0 +# +2201251# +A box that contains. +-------------------------- +[R] Pet Guaranteed Scroll 2ea +-------------------------- +Weight: 0 +# +2201252# +Special June 2025 Scroll +-------------------------- +ATK+ 3%, MATK +3% +Exp+5% Drop+5% +-------------------------- +(Buff Effect Account) +(After 30 days of use) +(Monthly buff can be overlaid) +-------------------------- +Weight: 0 +# +2201253# +The box contains items, +-------------------------- +Meta Elunium 1 ea +Meta Oridecon 1 ea +-------------------------- +Weight: 0 +# +2201254# +A box containing various kinds of advanced equipment. +-------------------------- +Weight: 0 +# +2201255# +A box containing various kinds of advanced equipment. +-------------------------- +Weight: 0 +# +2201289# +Undead relics from the depths of hell, shrouded in an ominous aura of death. +-------------------------- +Type: Item Giver +Weight: 1 +# +2201290# +When opened gives one of the following at random: +-------------------------- +VCT Landstone Armor II +VCT Landstone Garment II +VCT Landstone Footgear II +-------------------------- +Weight: 1 +# +2201291# +When opened gives one of the following at random: +-------------------------- +Physical Landstone Armor II +Physical Landstone Garment II +Physical Landstone Footgear II +-------------------------- +Weight: 1 +# +2201292# +When opened gives one of the following at random: +-------------------------- +FLEE Landstone Box II +HIT Landstone Box II +-------------------------- +Weight: 1 +# +2201293# +When opened gives one of the following at random: +-------------------------- +VCT Landstone Armor I +VCT Landstone Garment I +VCT Landstone Footgear I +-------------------------- +Weight: 1 +# +2201294# +When opened gives one of the following at random: +-------------------------- +Physical Landstone Armor I +Physical Landstone Garment I +Physical Landstone Footgear I +-------------------------- +Weight: 1 +# +2201320# +A scroll shaped like a sword and shield, evoking a sense of strength and victory. +-------------------------- +Type: Item Giver +Weight: 1 +# +2201321# +When opened gives one of the following at random: +-------------------------- +Resilient Landstone Armor +Resilient Landstone Garment +Resilient Landstone Footgear +-------------------------- +Class: Item Giver +Weight: 1 +# +2201322# +The bag contains max point coin 1 ea. + +Special coins, 'Max Points,' are used for collecting points. +1 coin is equivalent to 10 points. +-------------------------- +Weight: 1 +# +2201323# +The bag contains max point coin 3 ea. + +Special coins, 'Max Points,' are used for collecting points. +1 coin is equivalent to 10 points. +-------------------------- +Weight: 1 +# +2201324# +The bag contains max point coin 5 ea. + +Special coins, 'Max Points,' are used for collecting points. +1 coin is equivalent to 10 points. +-------------------------- +Weight: 1 +# +2201325# +The bag contains max point coin 10 ea. + +Special coins, 'Max Points,' are used for collecting points. +1 coin is equivalent to 10 points. +-------------------------- +Weight: 1 +# +2201326# +The bag contains max point coin 100 ea. + +Special coins, 'Max Points,' are used for collecting points. +1 coin is equivalent to 10 points. +-------------------------- +Weight: 1 +# +2201327# +A box containing +-------------------------- +[Event] Battle Manual 3ea +[Event] Bubble Gum 3ea +[R] Pet Guaranteed Scroll 1ea +-------------------------- +Weight: 0 +# +2201328# +A box containing +-------------------------- +Enriched Oridecon 1ea +Enriched Elunium 1ea +June Enchant Stone 1ea +Hollgrehenn's Shadow Refine Hammer 2ea +-------------------------- +Weight: 0 +# +2201338# +A box contain +-------------------------- +- [Event] Pet Scroll 10 ea +- [R] Pet's Spirit Fragment 5 ea +-------------------------- +Weight: 0 +# +2201339# +A box containing stones that can be enchanted to each part of the costume. +-------------------------- +Class: Item Giver +Weight: 1 +# +2201351# +Check out that Galápagos bird! Enjoys a refreshing drink and watch the sunset. +-------------------------- +Type: Item Giver +Weight: 1 +# +2201352# +When opened gives one of the following at random: +-------------------------- +Dual AGI-LUK Landstone Armor +Dual AGI-LUK Landstone Garment +Dual AGI-LUK Landstone Footgear +-------------------------- +Weight: 1 +# +2201353# +When opened gives one of the following at random: +-------------------------- +Magical Landstone Armor II +Magical Landstone Garment II +Magical Landstone Footgear II +-------------------------- +Weight: 1 +# +2201354# +When opened gives one of the following at random: +-------------------------- +VCT Landstone Box II +Physical Landstone Box II +-------------------------- +Weight: 1 +# +2201355# +When opened gives one of the following at random: +-------------------------- +Magical Landstone Armor I +Magical Landstone Garment I +Magical Landstone Footgear I +-------------------------- +Weight: 1 +# +2201356# +Use this item to earn 20 Battle Pass points. +-------------------------- +Weight: 0 +# +2201357# +Use this item to earn 1 Battle Pass points. +-------------------------- +Weight: 0 +# +2201364# +The Kraken's egg contains many valuable treasures hidden inside if you open it. +-------------------------- +Weight: 0 +# +2201365# +A rare box buried deep beneath the sea, only to be excavated during special events. When opened, it randomly contains an accessory landstone. +-------------------------- +Type: Item Giver +Weight: 0 +# +2201366# +A box containing colorful Ponytail costumes. +-------------------------- +When opened gives one of the following at random: +-------------------------- +Costume Twin Ponytail (Black) +Costume Twin Ponytail (Blue) +Costume Twin Ponytail (Green) +Costume Twin Ponytail (Orange) +Costume Twin Ponytail (Purple) +Costume Twin Ponytail (Red) +Costume Twin Ponytail (White) +Costume Twin Ponytail (Yellow) +-------------------------- +Type: Item Giver +Weight: 0 +# +2201367# +When opened, you'll randomly receive 1 item. +-------------------------- +- Skull Ring [1] 1ea +- Ring [1] 1ea +- Necklace [1] 1ea +- Rosary [1] 1ea +- Glove [1] 1ea +- Earring [1] 1ea +- Brooch [1] 1ea +- Clip [1] 1ea +-------------------------- +Weight: 0 +# +2201368# +When opened, you'll randomly receive 1 item. +-------------------------- +- Silk Robe [1] 1ea +- Chain Mail [1] 1ea +- Puente Robe [1] 1ea +- Glittering Jacket [1] 1ea +- Full Plate [1] 1ea +- Thief Clothes [1] 1ea +- Coat [1] 1ea +- Mantle [1] 1ea +- Jacket [1] 1ea +- Adventurer's Suit [1] 1ea +- Cotton Shirt [1] 1ea +- Tights [1] 1ea +- Silver Robe [1] 1ea +- Saint's Robe [1] 1ea +- Lord's Clothes [1] 1ea +- Padded Armor [1] 1ea +-------------------------- +Weight: 0 +# +2201369# +When opened, you'll randomly receive 1 item. +-------------------------- +- Bunny Slipper [1] 1ea +- High Fashion Sandals [1] 1ea +- Sandals [1] 1ea +- Shoes [1] 1ea +- Boots [1] 1ea +- High Heels [1] 1ea +- Crystal Pumps 1ea +-------------------------- +Weight: 0 +# +2201370# +When opened, you'll randomly receive 1 item. +-------------------------- +- Ancient Cape [1] 1ea +- Ancient Cape 1ea +- Ragamuffin Manteau 1ea +- Hood [1] 1ea +- Muffler [1] 1ea +- Manteau [1] 1ea +-------------------------- +Weight: 0 +# +2201371# +The bag contains max point coin 25 ea. + +Special coins, 'Max Points,' are used for collecting points. +1 coin is equivalent to 10 points. +-------------------------- +Weight: 1 +# +2201372# +The bag contains max point coin 50 ea. + +Special coins, 'Max Points,' are used for collecting points. +1 coin is equivalent to 10 points. +-------------------------- +Weight: 1 +# +2201377# +A box that contains. +-------------------------- +[Event] Small Life Potion 5ea +[Event] Medium Life Potion 5ea +Blessing Ore Mirror 3ea +[Event] Pet Scroll 1ea +-------------------------- +Weight: 0 +# +2201378# +A box that contains. +-------------------------- +[Event] Unlimited Fly Wing Box (1 Day) 1ea +[Event] Battle Manual & Bubble Gum 3ea +Elite Siege Supply Box 2ea +-------------------------- +Weight: 0 +# +2201379# +A box that contains. +-------------------------- +[Event] Battle Manual & Bubble Gum 3ea +[Event] Unlimited Fly Wing Box (1 Day) 1ea +[Event] Red Booster 3ea +[Event] Pet Scroll 3ea +[Event] Advanced Battle Manual 4ea +-------------------------- +Weight: 0 +# +2201380# +A box that contains. +-------------------------- +Enriched Oridecon 1ea +Enriched Elunium 1ea +Special July 2025 Scroll 1ea +-------------------------- +Weight: 0 +# +2201381# +A box that contains. +-------------------------- +[R] Pet Guaranteed Scroll 2ea +-------------------------- +Weight: 0 +# +2201382# +Special July 2025 Scroll +-------------------------- +Aspd +1 +Critical +5 +ATK +10, MATK +10 +Exp+5% Drop+5% +-------------------------- +(Buff Effect Account) +(After 30 days of use) +(Monthly buff can be overlaid) +-------------------------- +Weight: 0 +# +2201400# +When opened gives one of the following at random: +-------------------------- +Melee Landstone Armor I +Melee Landstone Garment I +Melee Landstone Footgear I +-------------------------- +Class: Item Giver +Weight: 1 +# +2201401# +When opened gives one of the following at random: +-------------------------- +Melee Landstone Armor II +Melee Landstone Garment II +Melee Landstone Footgear II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201402# +When opened gives one of the following at random: +-------------------------- +Dual STR-VIT Landstone Armor +Dual STR-VIT Landstone Garment +Dual STR-VIT Landstone Footgear +-------------------------- +Class: Item Giver +Weight: 1 +# +2201403# +Scroll of Massacre Brimming with Hatred +Warning!! Before opening, be careful of the blood that may flow out. +-------------------------- +Class: Item Giver +Weight: 1 +# +2201404# +When opened gives one of the following at random: +-------------------------- +Dual AGI-LUK Landstone Box +Magical Landstone Box II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201405# +Tastes like the ocean... because it is the ocean! +Popular among sailors who need a kick stronger than rum. +-------------------------- +ASPD +5% +HIT +5 +CRIT +5 +Increased Movement Speed +-------------------------- +Weight: 7 +# +2201407# +When opened, you will receive. +-------------------------- +Headgear Challenge 4 ea +-------------------------- +Weight: 0 +# +2201408# +When opened, you will receive. +-------------------------- +Weapons Challenge 4 ea +-------------------------- +Weight: 0 +# +2201409# +Active Title - The Challenge +-------------------------- +All status +2 +-------------------------- +Type: Title +Weight: 1 +# +2201410# +A box which contains +-------------------------- +Adamantine Blessing 5000ea +Adamantine Blessing cannot be traded +-------------------------- +Type: Item Giver +Weight: 0 +# +2201414# +A box that contains. +-------------------------- +[Event] Pet Scroll 1ea +Blessing Ore Mirror 2ea +[Event] Unlimited Fly Wing Box (2Hrs) 2ea +[Event] JOB Battle Manual 5ea +-------------------------- +Weight: 0 +# +2201415# +Rewards for consistent top-up players. +-------------------------- +Weight: 0 +# +2201420# +You can exchange this item back to Moonstone +at Token Exchange NPC +-------------------------- +น้ำหนัก: 1 +# +2201429# +Boss Meow's rare eggs appear in the hidden rare list. +-------------------------- +Weight: 0 +# +2201538# +An antique album in which the power of a mysterious Card item is contained... +-------------------------- +Type: Container +Effect: Gives 1 random card +Weight: 5 +# +2201541# +A scroll shaped like a sword and shield, evoking a sense of strength and victory. +-------------------------- +Type: Item Giver +Weight: 1 +# +2201542# +When opened gives one of the following at random: +-------------------------- +True Vision Landstone Armor +True Vision Landstone Garment +True Vision Landstone Footgear +-------------------------- +Class: Item Giver +Weight: 1 +# +2201543# +When opened, you will receive. +-------------------------- +[E] Pet's Spirit Fragment 10 ea +-------------------------- +Weight: 0 +# +2201547# +When opened, you can pick 1 item from the following list. +-------------------------- +[GENESIS] One-Handed Sword 1 ea +[GENESIS] Two-Handed Sword 1 ea +[GENESIS] Lance 1 ea +[GENESIS] Dagger 1 ea +[GENESIS] Katar 1 ea +[GENESIS] Staff 1 ea +[GENESIS] Book 1 ea +[GENESIS] Bow 1 ea +[GENESIS] One-Handed Axe 1 ea +[GENESIS] Two-Handed Axe 1 ea +[GENESIS] Knuckle 1 ea +[GENESIS] Rope 1 ea +[GENESIS] Musical 1 ea +-------------------------- +Weight: 1 +# +2201560# +Decreases base STR by 1 and give status points. +Cannot be used when STR is 1. +-------------------------- +Weight: 0 +# +2201561# +Decreases base AGI by 1 and give status points. +Cannot be used when AGI is 1. +-------------------------- +Weight: 0 +# +2201562# +Decreases base VIT by 1 and give status points. +Cannot be used when VIT is 1. +-------------------------- +Weight: 0 +# +2201563# +Decreases base INT by 1 and give status points. +Cannot be used when INT is 1. +-------------------------- +Weight: 0 +# +2201564# +Decreases base DEX by 1 and give status points. +Cannot be used when DEX is 1. +-------------------------- +Weight: 0 +# +2201565# +Decreases base LUK by 1 and give status points. +Cannot be used when LUK is 1. +-------------------------- +Weight: 0 +# +2201566# +A box containing +-------------------------- +[Event] Small Mana Potion 10 ea +-------------------------- +Weight: 1 +# +2201567# +A box containing +-------------------------- +[Event] Condensed Speed Potion 10 ea +-------------------------- +Weight: 1 +# +2201568# +A special Pet Scroll imbued with mysterious power. Boosted rate of obtaining [R] Pet Spirit Guarantee Scroll. +-------------------------- +Weight: 0 +# +2201569# +A condensed potion which increases the moving speed and strengthen of a character for a set duration. +-------------------------- +Effect:: +Increases movement speed +DEF+ 100 +MDEF + 10 + +Effect duration:: 5 seconds +-------------------------- +Type: Supportive +Weight: 10 +# +2201570# +A scroll imbued with the power of a great mage, passed down to the next generation of apprentice mages. +-------------------------- +Class: Item Giver +Weight: 1 +# +2201571# +When opened gives one of the following at random: +-------------------------- +Dual INT-DEX Landstone Armor +Dual INT-DEX Landstone Garment +Dual INT-DEX Landstone Footgear +-------------------------- +Class: Item Giver +Weight: 1 +# +2201572# +When opened gives one of the following at random: +-------------------------- +Sage Landstone Armor II +Sage Landstone Garment II +Sage Landstone Footgear II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201573# +When opened gives one of the following at random: +-------------------------- +Dual STR-VIT Landstone Box +Melee Landstone Box II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201574# +When opened gives one of the following at random: +-------------------------- +Sage Landstone Armor I +Sage Landstone Garment I +Sage Landstone Footgear I +-------------------------- +Class: Item Giver +Weight: 1 +# +2201575# +When opened gives one of the following at random: +-------------------------- +Blood Demon Ring [1] +Mystic Demon Ring [1] +Silver Demon Ring [1] +Sylvan Demon Ring [1] +Gold Demon Ring [1] +Violet Demon Ring [1] +-------------------------- +Weight: 1 +# +2201576# +A potion that possesses the spirit of Tyr, the god of battle. +Increases ATK & 10 MATK for 5 minutes. HIT +15, FLEE +15 +Caution!- Item's active duration and ability will not work properly when it is being used with Honey Pastry, Sesame Pastry and Rainbow Cake. +Item option disappears when its owner has drained all energy. +-------------------------- +Weight: 1 +# +2201579# +The Box containing +-------------------------- +-Scholar's Ring Box (7Day) 1 ea +-[Event] Pet Scroll 3 ea +-[Event] Battle Manual & Bubble Gum 5 ea +-------------------------- +Weight: 0 +# +2201580# +The Box containing +-------------------------- +-[R] Pet Spirit Guarantee Scroll 2 ea +-Enriched Elunium 1 ea +-Enriched Oridecon 1 ea +-July Enchant Stone 1 ea +-------------------------- +Weight: 0 +# +2201581# +The Box containing +-------------------------- +-Monster Balloon Box 1 ea +-------------------------- +Weight: 0 +# +2201582# +A box containing stones that can be enchanted to each part of the costume. +-------------------------- +Class: Item Giver +Weight: 1 +# +2201583# +A Costume Enchant Stone Synthesis Box. +-------------------------- +Using 3 Costume Enchant Stones as material, you receive 1 Random Enchant Stone. +-------------------------- +Weight: 1 +# +2201584# +Use this item to earn 20 Battle Pass points. +-------------------------- +Weight: 0 +# +2201585# +Use this item to earn 1 Battle Pass points. +-------------------------- +Weight: 0 +# +2201587# +Scroll that is exclusive to the PGDX 2025 event. +-------------------------- +Class: Item Giver +Weight: 0 +# +2201589# +The rare egg of Satan Morroc, with burning flames, and hidden rare items inside +-------------------------- +Weight: 0 +# +2201593# +Use it for activate title Title : PGDX 2025 No.1 +-------------------------- +All Stats +5 +Increase physical and magical on medium size monsters by 2% +Reduce physical and magical taken by medium size monsters 2% +-------------------------- +Type: Title Giver +Weight: 1 +# +2201594# +Use it for activate title Title : PGDX 2025 Top3 +-------------------------- +All Stats +5 +Increase physical and magical on medium size monsters by 1% +Reduce physical and magical taken by medium size monsters 1% +-------------------------- +Type: Title Giver +Weight: 1 +# +2201595# +Use it for activate title Title : PGDX 2025 +-------------------------- +All Stats +5 +-------------------------- +Type: Title Giver +Weight: 1 +# +2201596# +When opened gives one of the following at random: +-------------------------- +All Status Landstone Armor +All Status Landstone Garment +All Status Landstone Footgear +-------------------------- +Class: Item Giver +Weight: 1 +# +2201597# +When opened gives one of the following at random: +-------------------------- +Breach Landstone Armor +Breach Landstone Garment +Breach Landstone Footgear +-------------------------- +Class: Item Giver +Weight: 1 +# +2201629# +When opened gives one of the following at random: +-------------------------- +Lost Orc Hero Card +Lost Orc Lord Card +Lost Lady Tanee Card +Lost Dark Lord Card +Lost Moonlight Flower Card +Lost Phreeoni Card +Lost Mistress Card +Lost Eddga Card +Lost White Lady Card +Lost Vesper Card +Lost Turtle General Card +Lost Pharaoh Card +Lost Berzebub Card +Lost Maya Card +Lost Dracula Card +Lost Baphomet Card +Lost Samurai Card +Lost Evil Snake Lord Card +Lost Amon Ra Card +Lost Kiel Card +Lost Gloom Card +Lost Ifrit Card +Lost Stormy Knight Card +Lost Fallen Bishop Card +Lost B Ygnizem Card +Lost Randgris Card +-------------------------- +Class: Item Giver +Weight: 1 +# +2201630# +When opened gives one of the following at random: +-------------------------- +Boy Cap +Golden Gear +Cosair +Tiara +Grand Circlet +Crown +Magestic Goat +Headgear of Orc Hero +Jewel Crown +Sphinx Hat +Tiger's Footskin +Gold +Drake's Bone +Queen's Hair Ornament +Heroic Emblem +Hand of God +Emperium +Broken Pharoah Emblem +Fragment of Rossata Stone +-------------------------- +Class: Item Giver +Weight: 1 +# +2201631# +EXP +5% +-------------------------- +Effect duration:: 5 Days +Weight: 1 +# +2201632# +DROP +5% +-------------------------- +Effect duration:: 5 Days +Weight: 1 +# +2201633# +DEF +50 +-------------------------- +Effect duration:: 5 Days +Weight: 1 +# +2201634# +MDEF +5 +-------------------------- +Effect duration:: 5 Days +Weight: 1 +# +2201635# +ATK +10 +MATK +10 +-------------------------- +Effect duration:: 5 Days +Weight: 1 +# +2201636# +ASPD +5% +VCT -5% +-------------------------- +Effect duration:: 5 Days +Weight: 1 +# +2201637# +A box that contains. +-------------------------- +[Event] Small Life Potion 2ea +[Event] Small Mana Potion 2ea +[Event] Bubble Gum 2ea +[Event] Battle Manual 2ea +-------------------------- +Weight: 0 +# +2201638# +A box that contains. +-------------------------- +[Event] Pet Scroll 1ea +[Event] Medium Life potion 2ea +[Event] Amighty 3ea +[Event] Battle Manual & Bubble Gum 3ea +-------------------------- +Weight: 0 +# +2201639# +This box contains [Event] Blooding Injector 1 ea Rent for 30 days +Item expire within 30 Day after open box. +-------------------------- +Weight: 0 +# +2201644# +A scroll that constantly emits a poisonous mist. It's best not to get too close. +-------------------------- +Class: Item Giver +Weight: 1 +# +2201647# +When opened gives one of the following at random: +-------------------------- +Assassin Landstone Armor II +Assassin Landstone Garment II +Assassin Landstone Footgear II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201648# +When opened gives one of the following at random: +-------------------------- +Dual INT-DEX Landstone Box +Sage Landstone Box II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201649# +When opened gives one of the following at random: +-------------------------- +Assassin Landstone Armor I +Assassin Landstone Garment I +Assassin Landstone Footgear I +-------------------------- +Class: Item Giver +Weight: 1 +# +2201650# +The bag contains RON Coin 1 ea. +-------------------------- +Weight: 1 +# +2201651# +The bag contains RON Coin 3 ea. +-------------------------- +Weight: 1 +# +2201652# +The bag contains RON Coin 5 ea. +-------------------------- +Weight: 1 +# +2201653# +The bag contains RON Coin 10 ea. +-------------------------- +Weight: 1 +# +2201654# +The bag contains RON Coin 20 ea. +-------------------------- +Weight: 1 +# +2201655# +The bag contains RON Coin 30 ea. +-------------------------- +Weight: 1 +# +2201656# +The bag contains RON Coin 50 ea. +-------------------------- +Weight: 1 +# +2201657# +A box that contains. +-------------------------- +[Event] Small Life Potion 5ea +[Event] Medium Life Potion 5ea +[Event] Small Mana Potion 3ea +[Event] Pet Scroll 1ea +-------------------------- +Weight: 0 +# +2201658# +A box that contains. +-------------------------- +[Event] Unlimited Fly Wing Box (1 Day) 1ea +[Event] Almighty 3ea +[Event] Pet Scroll 1ea +-------------------------- +Weight: 0 +# +2201659# +A box that contains. +-------------------------- +[Event] Unlimited Fly Wing Box (1 Day) 1ea +[Event] Red Booster 3ea +[Event] Tyr's Blessing 5ea +[Event] Pet Scroll 3ea +[Event] Advanced Battle Manual 4ea +-------------------------- +Weight: 0 +# +2201660# +A box that contains. +-------------------------- +Enriched Oridecon 1ea +Enriched Elunium 1ea +Special Aug 2025 Scroll 1ea +-------------------------- +Weight: 0 +# +2201661# +A box that contains. +-------------------------- +[R] Pet Guaranteed Scroll 2ea +-------------------------- +Weight: 0 +# +2201662# +Special Aug 2025 Scroll +-------------------------- +ATK +10, MATK +10 +ASPD +3% +VCT -3% +Exp+5% Drop+5% +-------------------------- +(Buff Effect Account) +(After 30 days of use) +(Monthly buff can be overlaid) +-------------------------- +Weight: 0 +# +2201666# +Shadow Upgrade Thump Box. +-------------------------- +If a non class shadow item is refined to +7 or higher and placed within this box it will be enhanced with random options. +-------------------------- +Weight: 1 +# +2201667# +Shadow Upgrade Thump Box. +-------------------------- +If a non class shadow item is refined to +7 or higher and placed within this box it will be enhanced with random options. +-------------------------- +Weight: 1 +# +2201668# +A box containing +[Rental] Pickaxe (1 Hr) +A pickaxe has special power +for mining speed 20% in yggdrasil +-------------------------- +Weight: 0 +# +2201669# +A box containing +[Rental] Pickaxe (1 Day) +A pickaxe has special power +for mining speed 20% in yggdrasil +-------------------------- +Weight: 0 +# +2201670# +A box containing Mystical Ore Mirror (10) +-------------------------- +A clean convex mirror that can be used to detect the presence of Rare ores and Legendary ores +Position of legendary ores will be showed as Red markers in your minimap. +Position of rare ores will be showed as Yellow markers in your minimap. +-------------------------- +Weight: 1 +# +2201671# +A scroll shaped like a sword and shield, evoking a sense of strength and victory. +-------------------------- +Type: Item Giver +Weight: 1 +# +2201672# +When opened gives one of the following at random: +-------------------------- +Silence Immunity Landstone Armor +Silence Immunity Landstone Garment +Silence Immunity Landstone Footgear +-------------------------- +Class: Item Giver +Weight: 1 +# +2201675# +A box containing stones that can be enchanted to each part of the costume. +-------------------------- +Class: Item Giver +Weight: 1 +# +2201680# +A box with a chance to obtain Costume: Key of the World +-------------------------- +Weight: 1 +# +2201682# +A bottle of potion made from grinded White Herbs. +-------------------------- +Type: Restorative +Heal: 325 ~ 405 HP +Weight: 0 +# +2201683# +A bottle of potion made from grinded Blue Herbs. +-------------------------- +Type: Restorative +Heal: 40 ~ 60 SP +Weight: 0 +# +2201684# +When used, grants 1 Battleground Point. +-------------------------- +Weight: 0 +# +2201685# +Use this item to earn 20 Battle Pass points. +-------------------------- +Weight: 0 +# +2201686# +Use this item to earn 1 Battle Pass points. +-------------------------- +Weight: 0 +# +2201694# +The Box containing +-------------------------- +-[R] Pet Spirit Guarantee Scroll 1 ea +-Elite Siege Supply Box 5 ea +-Small Mana Potion 15 ea +-------------------------- +Weight: 0 +# +2201695# +The Box containing +-------------------------- +-[Event] Advanced Battle Manual 5 ea +-Enriched Elunium 1 ea +-Enriched Oridecon 1 ea +-AUG Enchant Stone 1 ea +-------------------------- +Weight: 0 +# +2201696# +The Box containing +-------------------------- +-Amistr Landstone Random Box 1 ea +-------------------------- +Weight: 0 +# +2201697# +When opened gives one of the following at random: + +Teleport Amistr Landstone 3ea +Greed Amistr Landstone 3ea +Maximize Amistr Landstone 3ea +Improve Amistr Landstone 3ea +-------------------------- +Weight: 1 +# +2201698# +The origin of the young man from the pink flower field. A twist of fate turned him into a warrior. +-------------------------- +Class: Item Giver +Weight: 1 +# +2201699# +When opened gives one of the following at random: +-------------------------- +Monk Landstone Armor II +Monk Landstone Garment II +Monk Landstone Footgear II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201700# +When opened gives one of the following at random: +-------------------------- +Long Range Landstone Armor II +Long Range Landstone Garment II +Long Range Landstone Footgear II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201701# +When opened gives one of the following at random: +-------------------------- +Medium Protection Landstone Shield II +Assassin Landstone Box II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201702# +When opened gives one of the following at random: +-------------------------- +Long Range Landstone Armor I +Long Range Landstone Garment I +Long Range Landstone Footgear I +-------------------------- +Class: Item Giver +Weight: 1 +# +2201703# +When opened gives one of the following at random: +-------------------------- +Monk Landstone Armor I +Monk Landstone Garment I +Monk Landstone Footgear I +-------------------------- +Class: Item Giver +Weight: 1 +# +2201712# +A box that contains. +-------------------------- +[Event] Small Life Potion 5ea +[Event] Medium Life Potion 5ea +[Event] Small Mana Potion 3ea +[Event] Pet Scroll 1ea +-------------------------- +Weight: 0 +# +2201713# +A box that contains. +-------------------------- +[Event] Unlimited Fly Wing Box (1 Day) 1ea +[Event] Almighty 3ea +[Event] Pet Scroll 1ea +-------------------------- +Weight: 0 +# +2201714# +A box that contains. +-------------------------- +[Event] Unlimited Fly Wing Box (1 Day) 1ea +[Event] Red Booster 3ea +[Event] Tyr's Blessing 5ea +[Event] Pet Scroll 3ea +[Event] Advanced Battle Manual 4ea +-------------------------- +Weight: 0 +# +2201715# +A box that contains. +-------------------------- +Enriched Oridecon 1ea +Enriched Elunium 1ea +Special SEP 2025 Scroll 1ea +-------------------------- +Weight: 0 +# +2201716# +A box that contains. +-------------------------- +[R] Pet Guaranteed Scroll 2ea +-------------------------- +Weight: 0 +# +2201717# +Special SEP 2025 Scroll +-------------------------- +All Status +2 +Flee+15 Hit+15 +Exp+5% Drop+5% +-------------------------- +(Buff Effect Account) +(After 30 days of use) +(Monthly buff can be overlaid) +-------------------------- +Weight: 0 +# +2201718# +Active Title - Mythseeker +-------------------------- +All status +5 +Atk+5 Matk+5 +Increases physical and magical damage against boss monster by 5% +-------------------------- +Type: Title +Weight: 1 +# +2201719# +Active Title - Trailblazer +-------------------------- +All status +5 +Atk+2 Matk+2 +Increases physical and magical damage against boss monster by 3% +-------------------------- +Type: Title +Weight: 1 +# +2201720# +Active Title - Windrunner +-------------------------- +All status +5 +Increases physical and magical damage against boss monster by 2% +-------------------------- +Type: Title +Weight: 1 +# +2201721# +A box contain with unable to access a price reward. +-------------------------- +Weight: 1 +# +2201722# +A box contain with unable to access a price reward. +-------------------------- +Weight: 1 +# +2201723# +A box contain with unable to access a price reward. +-------------------------- +Weight: 1 +# +2201735# +A scroll radiating the noble aura of knights sworn to defend Prontera, the capital. +-------------------------- +Class: Item Giver +Weight: 1 +# +2201736# +When opened gives one of the following at random: +-------------------------- +Knight Landstone Armor II +Knight Landstone Garment II +Knight Landstone Footgear II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201737# +When opened gives one of the following at random: +-------------------------- +Knight Landstone Armor I +Knight Landstone Garment I +Knight Landstone Footgear I +-------------------------- +Class: Item Giver +Weight: 1 +# +2201738# +When opened gives one of the following at random: +-------------------------- +Fatal Landstone Armor II +Fatal Landstone Garment II +Fatal Landstone Footgear II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201739# +When opened gives one of the following at random: +-------------------------- +Fatal Landstone Armor I +Fatal Landstone Garment I +Fatal Landstone Footgear I +-------------------------- +Class: Item Giver +Weight: 1 +# +2201740# +When opened gives one of the following at random: +-------------------------- +Monk Landstone Box II +Long Range Landstone Box II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201753# +A box containing 100 [Event] Siege White Potions and 50 [Event] Siege Blue Potions. +Siege White Potion - Heals 400~500 Hit Point. HP Affected by Regeneration Potion. +Siege Blue Potion - Restores 50-70 SP. +-------------------------- +Weight: 0 +# +2201756# +Using this scroll grants you a Level 1,200 Union Buff for a limited duration. +-------------------------- +All Status +5 +MaxHP +10% +ASPD +3 +ATK & MATK +30 +FCT -0.1 sec +(Effect lasts for 30 days.) +-------------------------- +If your Union Level is higher than 1,200, using the item will have no additional effect. +-------------------------- +Type: Buff Item +Weight: 0 +# +2201758# +DEF +20 MDEF +2 +Increases damage against Players by 5%. +Reduces damage taken from Players by 5%. +Rental item with a 7-day duration. (Cut-Off MA) +-------------------------- +Weight: 0 +# +2201759# +DEF +20 MDEF +2 +Reduces damage taken from Players by 5%. +Rental item with a 7-day duration. (Cut-Off MA) +-------------------------- +Weight: 0 +# +2201760# +DEF +15 MDEF +1 +Reduces damage taken from Players by 4%. +Rental item with a 7-day duration. (Cut-Off MA) +-------------------------- +Weight: 0 +# +2201761# +DEF +10 MDEF +1 +Reduces damage taken from Players by 3%. +Rental item with a 7-day duration. (Cut-Off MA) +-------------------------- +Weight: 0 +# +2201764# +A scroll shaped like a sword and shield, evoking a sense of strength and victory. +-------------------------- +Type: Item Giver +Weight: 1 +# +2201765# +When opened gives one of the following at random: +-------------------------- +Bloodthirst Landstone Armor II +Bloodthirst Landstone Garment II +Bloodthirst Landstone Footgear II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201766# +When opened gives one of the following at random: +-------------------------- +Curse Ward Landstone Armor +Curse Ward Landstone Garment +Curse Ward Landstone Footgear +-------------------------- +Class: Item Giver +Weight: 1 +# +2201768# +Use this item to earn 20 Battle Pass points. +-------------------------- +Weight: 0 +# +2201769# +Use this item to earn 1 Battle Pass points. +-------------------------- +Weight: 0 +# +2201778# +The Box containing +[Event] Small Life Potion 10 ea +[Event] Medium Life Potion 10 ea +[Event] Mysterious Life Potion 10 ea +-------------------------- +Weight: 0 +# +2201782# +A box containing stones that can be enchanted to each part of the costume. +-------------------------- +Class: Item Giver +Weight: 1 +# +2201783# +A scroll infused with the power of the moonlight on a full moon night for millennia. It’s time to open it +The power of the moon, manifest your might now! +-------------------------- +Type: Item Giver +Weight: 1 +# +2201784# +When opened gives one of the following at random: +-------------------------- +Blacksmith Landstone Armor II +Blacksmith Landstone Garment II +Blacksmith Landstone Footgear II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201785# +When opened gives one of the following at random: +-------------------------- +HIT Physical Landstone Armor II +HIT Physical Landstone Garment II +HIT Physical Landstone Footgear II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201786# +When opened gives one of the following at random: +-------------------------- +Knight Landstone Box II +Fatal Landstone Box II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201787# +When opened gives one of the following at random: +-------------------------- +Blacksmith Landstone Armor I +Blacksmith Landstone Garment I +Blacksmith Landstone Footgear I +-------------------------- +Class: Item Giver +Weight: 1 +# +2201788# +When opened gives one of the following at random: +-------------------------- +HIT Physical Landstone Armor I +HIT Physical Landstone Garment I +HIT Physical Landstone Footgear I +-------------------------- +Class: Item Giver +Weight: 1 +# +2201797# +A box that contains. +-------------------------- +[Event] Small Life Potion 5ea +[Event] Medium Life Potion 5ea +[Event] Small Mana Potion 3ea +[Event] Pet Scroll 1ea +-------------------------- +Weight: 0 +# +2201798# +A box that contains. +-------------------------- +[Event] Unlimited Fly Wing Box (1 Day) 1ea +[Event] Almighty 3ea +[Event] Pet Scroll 1ea +-------------------------- +Weight: 0 +# +2201799# +A box that contains. +-------------------------- +[Event] Unlimited Fly Wing Box (1 Day) 1ea +[Event] Red Booster 3ea +[Event] Tyr's Blessing 5ea +[Event] Battle Manual & Bubble Gum 3ea +[Event] Advanced Battle Manual 4ea +-------------------------- +Weight: 0 +# +2201800# +A box that contains. +-------------------------- +Enriched Oridecon 1ea +Enriched Elunium 1ea +Special October 2025 Scroll 1ea +-------------------------- +Weight: 0 +# +2201801# +A box that contains. +-------------------------- +[R] Pet Guaranteed Scroll 2ea +-------------------------- +Weight: 0 +# +2201802# +Special October 2025 Scroll +-------------------------- +ATK +10 MATK +10 +Hp +1000 +Exp+5% Drop+5% +-------------------------- +(Buff Effect Account) +(After 30 days of use) +(Monthly buff can be overlaid) +-------------------------- +Weight: 0 +# +2201810# +Ayothaya Quest Pass grants special access to skip the Ayothaya Quest, allowing direct entry to Ayothaya Dungeon. +In addition, the holder will receive Holy Threads. +-------------------------- +users of the pass will receive a Holy Threads and Holier Threads +This item cannot be used if you have already completed the quest. +-------------------------- +Weight: 0 +# +2201803# +As you draw near, a faint melody drifts into your ears, whispering tales of adventures long left behind by wandering bards. +-------------------------- +Type: Item Giver +Weight: 1 +# +2201804# +When opened gives one of the following at random: +-------------------------- +Bard Landstone Armor II +Bard Landstone Garment II +Bard Landstone Footgear II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201805# +When opened gives one of the following at random: +-------------------------- +Powerful Landstone Armor II +Powerful Landstone Garment II +Powerful Landstone Footgear II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201806# +When opened gives one of the following at random: +-------------------------- +Blacksmith Landstone Box II +HIT Physical Landstone Box II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201807# +When opened gives one of the following at random: +-------------------------- +Bard Landstone Armor I +Bard Landstone Garment I +Bard Landstone Footgear I +-------------------------- +Class: Item Giver +Weight: 1 +# +2201808# +When opened gives one of the following at random: +-------------------------- +Powerful Landstone Armor I +Powerful Landstone Garment I +Powerful Landstone Footgear I +-------------------------- +Class: Item Giver +Weight: 1 +# +2201814# +Major Scroll +-------------------------- +Type: Item Giver +Weight: 1 +# +2201926# +A box designed to retain the sterling condition of the 12 Elunium that is contained inside it. +-------------------------- +Weight: 0 +# +2201927# +A box designed to retain the sterling condition of the 12 Oridecon that is contained inside it. +-------------------------- +Weight: 0 +# +2201933# +A scroll shaped like a sword and shield, evoking a sense of strength and victory. +-------------------------- +Type: Item Giver +Weight: 1 +# +2201949# +When opened gives one of the following at random: +-------------------------- +Unpetrified Landstone Armor +Unpetrified Landstone Garment +Unpetrified Landstone Footgear +-------------------------- +Class: Item Giver +Weight: 1 +# +2201950# +An antique album in which the power of a mysterious Card item is containedThere is a chance to randomly obtain 1 item from this. +-------------------------- +Owl Viscount Card 1ea +Gemini-S58 Card 1ea +Byorgue Card 1ea +Infinite Vagabond Wolf Card 1ea +Weakened Fenrir Card 1ea +-------------------------- +Type: Item Giver +Weight: 0 +# +2201952# +A bottle of potion made from grinded White Herbs. +-------------------------- +Type: Restorative +Heal: 325 ~ 405 HP +Weight: 0 +# +2201953# +A bottle of potion made from grinded Blue Herbs. +-------------------------- +Type: Restorative +Heal: 40 ~ 60 SP +Weight: 0 +# +2201958# +Use this item to earn 20 Battle Pass points. +-------------------------- +Weight: 0 +# +2201959# +Use this item to earn 1 Battle Pass points. +-------------------------- +Weight: 0 +# +2201960# +When opened gives one of the following at random: +-------------------------- +Costume Invisible Cap +Costume Invisible Sunglasses +Costume Invisible Mask +-------------------------- +Class: Item Giver +Weight: 1 +# +2201961# +A holy scroll radiating divine light. Those who draw too near may be blinded by its sacred brilliance. +-------------------------- +Type: Item Giver +Weight: 1 +# +2201966# +When opened gives one of the following at random: +-------------------------- +Priest Landstone Armor II +Priest Landstone Garment II +Priest Landstone Footgear II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201967# +When opened gives one of the following at random: +-------------------------- +Mystical Landstone Armor II +Mystical Landstone Garment II +Mystical Landstone Footgear II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201968# +When opened gives one of the following at random: +-------------------------- +Priest Landstone Armor I +Priest Landstone Garment I +Priest Landstone Footgear I +-------------------------- +Class: Item Giver +Weight: 1 +# +2201969# +When opened gives one of the following at random: +-------------------------- +Mystical Landstone Armor I +Mystical Landstone Garment I +Mystical Landstone Footgear I +-------------------------- +Class: Item Giver +Weight: 1 +# +2201970# +When opened gives one of the following at random: +-------------------------- +Bard Landstone Box II +Powerful Landstone Box II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201971# +A box containing stones that can be enchanted to each part of the costume. +-------------------------- +Class: Item Giver +Weight: 1 +# +2201973# +When opened gives one of the following at random +STR Landstone Armor II +STR Landstone Garment II +STR Landstone Footgear II +AGI Landstone Armor II +AGI Landstone Garment II +AGI Landstone Footgear II +VIT Landstone Armor II +VIT Landstone Garment II +VIT Landstone Footgear II +INT Landstone Armor II +INT Landstone Garment II +INT Landstone Footgear II +DEX Landstone Armor II +DEX Landstone Garment II +DEX Landstone Footgear II +LUK Landstone Armor II +LUK Landstone Garment II +LUK Landstone Footgear II +-------------------------- +Class: Item Giver +Weight: 1 +# +2201975# +A very heavy looking bag that contains +5 Land Crystal +-------------------------- +Class: Item Giver +Weight: 1 +# +2201983# +A box containing a meta refining material. +When opened, you'll randomly receive one of the following. + +Meta Elunium 1ea +Meta Oridecon 1ea + +-------------------------- +Weight: 0 +# +2201984# +Reduces damage taken from Storm Gust by 30%. +Reduces damage taken from Meteor Storm by 30%. +Reduces damage taken from Lord of Vermillion by 30%. +Reduces damage taken from Heaven's Drive by 30%. + +Increases damage taken from physical damage by 10%. + +Duration: 1 hour +Cancels other Anti-Scroll effects if one is already active. +-------------------------- +Weight: 0 +# +2201985# +Reduces damage taken from Fire Bolt by 30%. +Reduces damage taken from Cold Bolt by 30%. +Reduces damage taken from Lightning Bolt by 30%. +Reduces damage taken from Heaven's Drive by 30%. + +Increases damage taken from physical damage by 10%. + +Duration: 1 hour +Cancels other Anti-Scroll effects if one is already active. +-------------------------- +Weight: 0 +# +2201986# +Reduces damage taken from Holy Cross by 30%. +Reduces damage taken from Grand Cross by 50%. +Reduces damage taken from Shield Boomerang by 30%. + +Increases damage taken from magical damage by 10%. + +Duration: 1 hour +Cancels other Anti-Scroll effects if one is already active. +-------------------------- +Weight: 0 +# +2201987# +Reduces damage taken from Bash by 30%. +Reduces damage taken from Bowling Bash by 30%. +Reduces damage taken from Pierce by 30%. +Reduces damage taken from Brandish Spear by 30%. + +Increases damage taken from magical damage by 10%. + +Duration: 1 hour +Cancels other Anti-Scroll effects if one is already active. +-------------------------- +Weight: 0 +# +2201988# +Reduces damage taken from Double Strafe by 30%. +Reduces damage taken from Arrow Shower by 30%. +Reduces damage taken from Land Mine by 30%. +Reduces damage taken from Blast Mine by 30%. +Reduces damage taken from Claymore Trap by 30%. + +Increases damage taken from magical damage by 10%. + +Duration: 1 hour +Cancels other Anti-Scroll effects if one is already active. +-------------------------- +Weight: 0 +# +2201989# +Reduces damage taken from Double Strafe by 30%. +Reduces damage taken from Arrow Shower by 30%. +Reduces damage taken from Melody Strike by 30%. + +Increases damage taken from magical damage by 10%. + +Duration: 1 hour +Cancels other Anti-Scroll effects if one is already active. +-------------------------- +Weight: 0 +# +2201990# +Reduces damage taken from Sonic Blow by 30%. +Reduces damage taken from Grimtooth by 30%. +Reduces damage taken from Venom Splasher by 30%. + +Increases damage taken from magical damage by 10%. + +Duration: 1 hour +Cancels other Anti-Scroll effects if one is already active. +-------------------------- +Weight: 0 +# +2201991# +Reduces damage taken from Raid by 30%. +Reduces damage taken from Back Stab by 30%. + +Increases damage taken from magical damage by 10%. + +Duration: 1 hour +Cancels other Anti-Scroll effects if one is already active. +-------------------------- +Weight: 0 +# +2201992# +Reduces damage taken from Holy Light by 30%. + +Increases damage taken from physical damage by 10%. + +Duration: 1 hour +Cancels other Anti-Scroll effects if one is already active. +-------------------------- +Weight: 0 +# +2201993# +Reduces damage taken from Triple Attack by 30%. +Reduces damage taken from Chain Combo by 30%. +Reduces damage taken from Combo Finish by 30%. + +Increases damage taken from magical damage by 10%. + +Duration: 1 hour +Cancels other Anti-Scroll effects if one is already active. +-------------------------- +Weight: 0 +# +2201994# +Reduces damage taken from Mammonite by 30%. +Reduces damage taken from Cart Revolution by 30%. + +Increases damage taken from magical damage by 10%. + +Duration: 1 hour +Cancels other Anti-Scroll effects if one is already active. +-------------------------- +Weight: 0 +# +2201995# +Reduces damage taken from Acid Terror by 30%. +Reduces damage taken from Demonstration by 30%. + +Increases damage taken from magical damage by 10%. + +Duration: 1 hour +Cancels other Anti-Scroll effects if one is already active. +-------------------------- +Weight: 0 +# +2201997# +The Box containing +Golden Automatic Player Box (30 Days) 1ea +VIP Coupon (30 Days) 1ea +-------------------------- +Weight: 1 +# +2201998# +When opened gives one of the following at random: +-------------------------- +- Power Gem Landstone Garment 3 ea +- Ability Gem Landstone Garment 3 ea +- Vital Gem Landstone Garment 3 ea +- Mind Gem Landstone Garment 3 ea +- Focus Gem Landstone Garment 3 ea +- Lucky Gem Landstone Garment 3 ea +-------------------------- +Class: Item Giver +Weight: 1 +# +2201999# +The Box containing +-------------------------- +-[R] Pet Spirit Guarantee Scroll 1 ea +-Elite Siege Supply Box 5 ea +-Small Mana Potion 15 ea +-------------------------- +Weight: 0 +# +2202000# +The Box containing +-------------------------- +-[Event] HE Bubble Gum 5 ea +-Enriched Elunium 1 ea +-Enriched Oridecon 1 ea +-Sep Enchant Stone 1 ea +-------------------------- +Weight: 0 +# +2202001# +The Box containing +-------------------------- +-Gem Landstone Box 1 ea +-------------------------- +Weight: 0 +# +2202002# +A green gem that glows like acid, its center forged to seal away something... dangerous. Whatever lies within seems to radiate a sense of peril. +-------------------------- +Type: Item Giver +Weight: 1 +# +2202003# +A green gem that glows like acid, its center forged to seal away something... dangerous. Whatever lies within seems to radiate a sense of peril. +-------------------------- +Type: Item Giver +Weight: 1 +# +2202004# +When opened gives one of the following at random: +-------------------------- +Alchemist Landstone Armor II +Alchemist Landstone Garment II +Alchemist Landstone Footgear II +-------------------------- +Class: Item Giver +Weight: 1 +# +2202005# +When opened gives one of the following at random: +-------------------------- +Strong Landstone Armor II +Strong Landstone Garment II +Strong Landstone Footgear II +-------------------------- +Class: Item Giver +Weight: 1 +# +2202006# +When opened gives one of the following at random: +-------------------------- +Alchemist Landstone Armor I +Alchemist Landstone Garment I +Alchemist Landstone Footgear I +-------------------------- +Class: Item Giver +Weight: 1 +# +2202007# +When opened gives one of the following at random: +-------------------------- +Strong Landstone Armor I +Strong Landstone Garment I +Strong Landstone Footgear I +-------------------------- +Class: Item Giver +Weight: 1 +# +2202008# +When opened gives one of the following at random: +-------------------------- +Priest Landstone Box II +Mystical Landstone Box II +-------------------------- +Class: Item Giver +Weight: 1 +# +2202009# +When opened, you will receive the following items: +-------------------------- +- ROLG Major 2025 Scroll 300 ea +- Costume Kafra NOVA Chibi 1 ea +-------------------------- +Weight: 0 +# +2202010# +When opened, you will receive the following items: +-------------------------- +- ROLG Major 2025 Scroll 200 ea +- Costume NOVA Hologram 1 ea +-------------------------- +Weight: 0 +# +2202011# +When opened, you will receive the following items: +-------------------------- +- ROLG Major 2025 Scroll 100 ea +- Costume NOVA Hairpin 1 ea +-------------------------- +Weight: 0 +# +2202012# +Active Title - ROLG Elite Scroll +-------------------------- +All status +5 +-------------------------- +Type: Title +Weight: 1 +# +2202013# +Active Title - Trooper Scroll +-------------------------- +All status +3 +-------------------------- +Type: Title +Weight: 1 +# +2202014# +When opened, you will receive the following items: +-------------------------- +- ROLG Elite Scroll 1 ea +- ROLG Major 2025 Scroll 5 ea +-------------------------- +Weight: 0 +# +2202015# +When opened, you will receive the following items: +-------------------------- +- ROLG Trooper Scroll 1 ea +- ROLG Major 2025 Scroll 2 ea +-------------------------- +Weight: 0 +# +2202016# +Active Title - ROLG MAJOR 2025 No.1 +-------------------------- +All status +5 +Increase physical and magical on medium size monsters by 2%. +Reduce physical and magical taken by medium size monsters 2%. +-------------------------- +Type: Title +Weight: 1 +# +2202017# +Active Title - ROLG MAJOR 2025 TOP3 +-------------------------- +All status +5 +Increase physical and magical on medium size monsters by 1%. +Reduce physical and magical taken by medium size monsters 1%. +-------------------------- +Type: Title +Weight: 1 +# +2202018# +Active Title - ROLG MAJOR 2025 +-------------------------- +All status +5 +-------------------------- +Type: Title +Weight: 1 +# +2202019# +When opened gives one of the following at random: +-------------------------- +Final Boss Landstone Armor +Final Boss Landstone Garment +Final Boss Landstone Footgear +-------------------------- +Class: Item Giver +Weight: 1 +# +2202040# +Welcome to RO Landverse Genesis + +A Special Gift for new players. +Contains various support items for beginner. +-------------------------- +Require Level: 10 +Weight: 1 +# +2202041# +Welcome to RO Landverse Genesis + +A Special Gift for new players. +Contains various support items for beginner. +-------------------------- +Require Level: 30 +Weight: 1 +# +2202042# +Welcome to RO Landverse Genesis + +A Special Gift for new players. +Contains various support items for beginner. +-------------------------- +Require Level: 50 +Weight: 1 +# +2202043# +Welcome to RO Landverse Genesis + +A Special Gift for new players. +Contains various support items for beginner. +-------------------------- +Require Level: 70 +Weight: 1 +# +2202044# +Welcome to RO Landverse Genesis + +A Special Gift for new players. +Contains various support items for beginner. +-------------------------- +Require Level: 80 +Weight: 1 +# +2202045# +Welcome to RO Landverse Genesis + +A Special Gift for new players. +Contains various support items for beginner. +-------------------------- +Require Level: 90 +Weight: 1 +# +2202046# +Welcome to RO Landverse Genesis + +A Special Gift for new players. +Contains various support items for beginner. +-------------------------- +Require Level: 100 +Weight: 1 +# +2202047# +Active Title - Genesis Journey +-------------------------- +All status +2 +-------------------------- +Type: Title +Weight: 1 +# +2202048# +This box contains: +[Event] Genesis Hat I +[Event] Genesis Armor I +[Event] Genesis Manteau I +[Event] Genesis Boots I +[Event] Genesis Necklace I +[Event] Genesis Ring I +-------------------------- +Type: Item Giver +Weight: 0 +# +2202056# +The Box containing + +Premium Ration Service Box 1 ea +NOVA Space Subsciption Coupon (30 Days) 1ea +Golden Automatic Player Box (30 Days) 1ea +VIP Coupon (30 Days) 1ea +-------------------------- +Weight: 0 +# +2202057# +A box that contains. +-------------------------- +First Refill Genesis Box [Nov] 1ea +-------------------------- +Weight: 0 +# +2202058# +When opened choose one item from the box contents. +[Event] Poring Balloon In Mount (30 Days) +[Event] Grape Bubble Gum (30 Days) +[Event] Blooding Injector (30 Days) +-------------------------- +Item expire within 30 Day after open box. +-------------------------- +Type: Rent item +Weight: 0 +# +2202059# +A box contain with unable to access a price reward. +-------------------------- +Weight: 1 +# +2202060# +A box contain with unable to access a price reward. +-------------------------- +Weight: 1 +# +2202061# +A box contain with unable to access a price reward. +-------------------------- +Weight: 1 +# +2202062# +Active Title - Mythseeker +-------------------------- +All status +5 +Atk +10, Matk +10 +Ignores physical and magical defense against all race monster by 15%. +-------------------------- +Type: Title +Weight: 0 +# +2202063# +Active Title - The Magician +-------------------------- +All status +4 +Atk +4, Matk +4 +Ignores physical and magical defense against all race monster by 10%. +-------------------------- +Type: Title +Weight: 0 +# +2202064# +Active Title - The Fool +-------------------------- +All status +2 +Atk +2, Matk +2 +Ignores physical and magical defense against all race monster by 5% +-------------------------- +Type: Title +Weight: 0 +# +2202065# +A box that contains. +-------------------------- +[Event] Small Life Potion 5ea +[Event] Medium Life Potion 5ea +[Event] Small Mana Potion 5ea +[Event] Pet Scroll 1ea +-------------------------- +Weight: 0 +# +2202066# +A box that contains. +-------------------------- +[Event] Unlimited Fly Wing Box (1 Day) 1ea +[Event] Almighty 3ea +[Event] Pet Scroll 1ea +-------------------------- +Weight: 0 +# +2202067# +A box that contains. +-------------------------- +[Event] Unlimited Fly Wing Box (1 Day) 2ea +[Event] Red Booster 3ea +[Event] Tyr's Blessing 5ea +[Event] Battle Manual & Bubble Gum 3ea +[Event] Advanced Battle Manual 4ea +-------------------------- +Weight: 0 +# +2202068# +A box that contains. +-------------------------- +Enriched Oridecon 2ea +Enriched Elunium 2ea +Special November 2025 Scroll 1ea +-------------------------- +Weight: 0 +# +2202069# +A box that contains. +-------------------------- +Hollgrehenn's Shadow Refine Hammer 3ea +-------------------------- +Weight: 0 +# +2202070# +Special November 2025 Scroll +-------------------------- +ATK +10 MATK +10 +All Status +3 +Increases physical and magical damage against all class monster by 5%. +Exp+5% Drop+5% +-------------------------- +(Buff Effect Account) +(After 30 days of use) +(Monthly buff can be overlaid) +-------------------------- +Weight: 0 +# +2202071# +A scroll shaped like a sword and shield, evoking a sense of strength and victory. +-------------------------- +Type: Item Giver +Weight: 1 +# +2202072# +When opened gives one of the following at random: +-------------------------- +Steadfast Landstone Armor +Steadfast Landstone Garment +Steadfast Landstone Footgear +-------------------------- +Class: Item Giver +Weight: 1 +# +2202076# +Welcome to RO Landverse Genesis + +A Special Gift for Returning Players. +Contains various support items for everyone. +-------------------------- +Require Level: 30 +Weight: 1 +# +2202077# +Welcome to RO Landverse Genesis + +A Special Gift for Current Players. +Contains various support items for everyone. +-------------------------- +Require Level: 30 +Weight: 1 +# +2202078# +Become a VIP member with many benefits. +Duration 7 Days +-------------------------- +Weight: 0 +# +2202079# +A box that contains. +-------------------------- +[Event] Small Life Potion 2ea +[Event] Medium Life potion 2ea +[Event] Bubble Gum 2ea +[Event] Battle Manual 2ea +-------------------------- +Weight: 0 +# +2202080# +A box that contains. +-------------------------- +[Event] Pet Scroll 1ea +[Event] Small Mana Potion 5ea +[Event] Amighty 3ea +[Event] Battle Manual & Bubble Gum 3ea +-------------------------- +Weight: 0 +# +2202081# +The Box contains [Event] HE Bubble Gum x10 +[Event] HE Bubble Gum cannot be traded +-------------------------- +Type: Cash Shop +Weight: 0 +# +2202084# +Use this item to earn 20 Battle Pass points. +-------------------------- +Weight: 0 +# +2202085# +Use this item to earn 1 Battle Pass points. +-------------------------- +Weight: 0 +# +2202086# +A box containing stones that can be enchanted to each part of the costume. +-------------------------- +Class: Item Giver +Weight: 1 +# +2202088# +When opened gives one of the following at random: +-------------------------- +Universal Landstone Armor II +Universal Landstone Garment II +Universal Landstone Footgear II +-------------------------- +Class: Item Giver +Weight: 1 +# +2202089# +When opened gives one of the following at random: +-------------------------- +Potentia Landstone Armor II +Potentia Landstone Garment II +Potentia Landstone Footgear II +-------------------------- +Class: Item Giver +Weight: 1 +# +2202090# +When opened gives one of the following at random: +-------------------------- +Alchemist Landstone Box II +Strong Landstone Box II +-------------------------- +Class: Item Giver +Weight: 1 +# +2202091# +When opened gives one of the following at random: +-------------------------- +Universal Landstone Armor I +Universal Landstone Garment I +Universal Landstone Footgear I +-------------------------- +Class: Item Giver +Weight: 1 +# +2202092# +When opened gives one of the following at random: +-------------------------- +Potentia Landstone Armor I +Potentia Landstone Garment I +Potentia Landstone Footgear I +-------------------------- +Class: Item Giver +Weight: 1 +# +2202093# +Welcome to the realm, young adventurer! +May your courage shine brighter than any blade. +-------------------------- +Class: Item Giver +Weight: 1 +# +2202094# +Welcome to the realm, young adventurer! +May your courage shine brighter than any blade. +-------------------------- +Class: Item Giver +Weight: 1 +# +2202096# +The Box contains. +Character Slot Expansion Coupon 1ea +Character Surpassing Ticket 1ea +-------------------------- +Weight: 0 +# +2202098# +Use it for activate title Path Extreme I +All Status +3 +Atk +5 +Matk +5 +Hit +5 +Flee +5 +VCT -5% +-------------------------- +Type: Title Giver +Weight: 1 +# +2202099# +Use it for activate title Path Extreme II +All Status +3 +Atk +10 +Matk +10 +Hit +10 +Flee +10 +VCT -10% +-------------------------- +Type: Title Giver +Weight: 1 +# +2202325# +Traveller Package +-------------------------- +-2,300 Moonstone +-Title: The Traveller(All+1) 1ea +-[Event] Battle Manual 10 ea +-[Event] Job Manual 10 ea +-[Event] Pet Scroll 2 ea +-[Event] Unlimited Fly Wing Box (1Day) 3 ea +-[Event] Level 10 Increase Agility Scroll 30 ea +-[Event] Level 10 Blessing Scroll 30 ea +-------------------------- +Class: Item GIver +Weight: 0 +# +2202326# +Explorer Package +-------------------------- +-6,600 Moonstone +-Title : The Explorer (All+3) 1 ea +-[R] Pet Spirit Guarantee Scroll 1 ea +-Premium Exp/Drop Box I 1 ea +-Zeny Box 2 ea +-Adamantine Blessing 50 ea +-Elunium-Oridecon Random Box 3 ea +-------------------------- +Class: Item GIver +Weight: 0 +# +2202327# +Pioneer Package +-------------------------- +-19,000 Moonstone +-Title : The Pioneer (All+5) 1 ea +-[R] Pet Spirit Guarantee Scroll 2 ea +-Premium Exp/Drop Box II 2 ea +-Zeny Box 5 ea +-Adamantine Blessing 100 +-Enrich Elunium-Oridecon Random Box 3 ea +-------------------------- +Class: Item GIver +Weight: 0 +# +2202328# +Use it for activate title The Traveller +-------------------------- +All Status +1 +-------------------------- +Type: Title Giver +Weight: 1 +# +2202329# +Use it for activate title The Explorer +-------------------------- +All Status +3 +-------------------------- +Type: Title Giver +Weight: 1 +# +2202330# +Use it for activate title The Pioneer +-------------------------- +All Status +5 +-------------------------- +Type: Title Giver +Weight: 1 +# +2202335# +A box that, when opened, grants 1 random Landstone I from Expansion I. +-------------------------- +Weight: 0 +# +2202336# +A pet capture cage specially designed for trapping the Shining Chimera. +-------------------------- +Weight: 0 +# +2202337# +A pouch containing a Rare Pet's Emblem. When opened, it grants one random emblem. +-------------------------- +Weight: 0 +# +2202338# +A pouch containing a Rare and Epic Pet's Emblem. When opened, it grants one random emblem. + +Rare 95% +Epic 5% +-------------------------- +Weight: 0 +# +2202356# +Reward for Contributor +-------------------------- +A box which contains +[Event] VIP Coupon 30 Days 1 ea +[Event] Golden Automatic Player Box 30 Days 1 ea +[Event] Premium Service Box (30 Days) 1 ea +Battle Manual Box(10) 1 ea +Blessing Scroll Box(100) 1 ea +Increase Agility Scroll Box(100) 1 ea +[Event] Orange Potion Box(20) 50 ea +-------------------------- +Weight: 0 +# +2202357# +Reward for Advance Contributor +-------------------------- +A box which contains +Adamantine Blessing 1500 ea +Land Crsytal 500 ea +Enriched Elunium 2 ea +Enriched Oridecon 2 ea +[Event] Rare Lucky Pet Scroll 25% 1 ea +-------------------------- +Weight: 0 +# +2300000# +Atk +10 +Matk +10 +Increases movement speed + 1% +-------------------------- + When upgraded +7 Or higher: +Atk +5 +Matk +5 +Increases movement speed + 2% +-------------------------- + When upgraded +9 Or higher: +Atk +5 +Matk +5 +Increases movement speed + 3% +-------------------------- + When upgraded +10 Or higher: +Can be used to cast Increase Agility Level 1 +-------------------------- +Type: Headgear +Defense: 17 +Position: Upper +Weight: 80 +Armor Level: 1 +Tier Level: 4 +-------------------------- +Requirement: +Base Level 90 +# +2300001# +MAX HP + 1% +MAX SP + 1% +Reduces physical/magical damage received from all enemy sizes by 1% +-------------------------- + When upgraded +7 Or higher: +MAX HP + 2% +MAX SP + 2% +Reduces physical/magical damage received from all enemy sizes by 1% +-------------------------- + When upgraded +9 Or higher: +MAX HP + 2% +MAX SP + 2% +Reduces physical/magical damage received from all enemy sizes by 1% +-------------------------- + When upgraded +10 Or higher: +Maximum HP + 800 +Maximum SP + 100 +-------------------------- +Type: Armor +Defense: 70 +Weight: 80 +Armor Level: 1 +Tier Level: 4 +-------------------------- +Requirement: +Base Level 90 +# +2300002# +All Status + 1 +Defense + 10 +Reduces SP cost for using all skills 2% +-------------------------- + When upgraded +7 Or higher: +All Status + 1 +Defense + 15 +Reduces SP cost for using all skills 3% +-------------------------- + When upgraded +9 Or higher: +All Status + 1 +Defense + 20 +Reduces SP cost for using all skills 4% +-------------------------- + When upgraded +10 Or higher: +Gain 1 SP when defeating monsters with physical attacks, either melee or ranged +-------------------------- +Type: Garment +Defense: 24 +Weight: 80 +Armor Level: 1 +Tier Level: 4 +-------------------------- +Requirement: +Base Level 90 +# +2300003# +Str + 2 +Physical/magical attacks against the Demi-Human race +1% (monsters/players) +Resist Stone Curse Status 5% +Resist Sleeping Status 5% +-------------------------- + When upgraded +7 Or higher: +Str + 3 +Physical/magical attacks against the Demi-Human race +2% (monsters/players) +Resist Stone Curse Status 5% +Resist Sleeping Status 5% +-------------------------- + When upgraded +9 Or higher: +Str + 5 +Physical/magical attacks against the Demi-Human race +3% (monsters/players) +Resist Stone Curse Status 5% +Resist Sleeping Status 5% +-------------------------- + When upgraded +10 Or higher: +Fixed Cast Time - 0.1 Seconds +-------------------------- +Type: Shoes +Defense: 13 +Weight: 80 +Armor Level: 1 +Tier Level: 4 +-------------------------- +Requirement: +Base Level 90 +# +2300004# +Atk +5 +-------------------------- +Ignores 3% of the physical defense of normal enemies +-------------------------- +Type: Accessory (Right) +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +2300005# +Matk +5 +-------------------------- +Ignores 3% of the magical defense of normal enemies +-------------------------- +Type: Accessory (Left) +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +2300006# +A black hat adorned with a skull +-------------------------- +MATK +2% +-------------------------- +If refined to +5 and above: +MATK increases by an additional 3% +-------------------------- +If refined to +7 and above: +MATK increases by an additional 3% +-------------------------- +Set Bonus +Skull Cap L +Elven Ears +Reduces SP consumption when using skills 3% +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 20 +Armor Level: 1 +Tier Level: 5 +-------------------------- +Requirements: +Base Level 10 +# +2300007# +Cute Porings decorate these festive balloons! +Help you reach the Transcendent Class quickly. +-------------------------- +All Stats +3 +MATK +30 +ATK +30 +EXP +50% +DROP +15% +-------------------------- +Increses Movement Speed by 15% +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Second Classes, Expanded Classes +Base Level 1-100 +# +2300008# +A white shirt fulfilled with magical energy +The fantastical power awaited to unleashed +-------------------------- +HP+500, SP+50 +-------------------------- +Type: Armor +Defense: 20 +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +# +2300009# +A crimson cloak with enduring strenght +grants the unrival power to the wearer +-------------------------- +AllStats +1 +-------------------------- +receive more experiences from defeating monsters 5% +-------------------------- +decrease incoming physical damage from monsters 10% +-------------------------- +refinement lv. 5: +additional Exp&Drop 5% +-------------------------- +refinement lv. 7: +increase wearer physical damage 7% +-------------------------- +refinement lv. 9: +Increase physical damage to all monster 10% +-------------------------- +Account bond +-------------------------- +Type: Armor +Defense: 20 +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +# +2300010# +An azure cloak fulfilled with magical power +grants the beyond imagination power to the wearer +-------------------------- +AllStats +1 +-------------------------- +receive more experiences from defeating monsters 5% +-------------------------- +decrease incoming physical damage from monsters 10% +-------------------------- +refinement lv. 5: +additional Exp&Drop 5% +-------------------------- +refinement lv. 7: +reduce Variable Cast Time 10% +-------------------------- +refinement lv. 9: +increase wearer magical damage 10% +-------------------------- +Account bond +-------------------------- +Type: Armor +Defense: 20 +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +# +2300011# +A hat worn by honorable knights +CRI +3 +Increases Critical Damage 5% +-------------------------- +When upgraded to 7 and above: +Increases CRI + 7 +Increases Critical Damage 3% +-------------------------- +When upgraded to 9 and above: +Increases ASPD + 1 +Critical Damage Increases 5% additional +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 70 +Armor Level: 1 +Tier Level: 5 +-------------------------- +Requirement: +Base Level 85 +# +2300012# +A balloon shaped like a small demon that embodies fear +-------------------------- +Allstats +1 +Increases magic and physical damage dealt to Demon race monsters +1% +-------------------------- +Set Bonus +Archangel Wings [1] +7 Or Above +Deviruchi Balloon +MATK +5 +Increases magic and physical damage dealt to Demon race monsters +4% +Gain +5% EXP when defeating monsters +-------------------------- +Type: Headgear +Defense: 5 +Position: Lower +Weight: 5 +Armor Level: 1 +Customizable: No +-------------------------- +Requirements: None +# +2300013# +Atk +3% +Matk +3% +Reduce Damage from All Element +1% +-------------------------- +When refined to +7 or higher: +Atk +3% +Matk +3% +Reduce Damage from All Element +2% +-------------------------- +When refined to +9 or higher: +Atk +4% +Matk +4% +Reduce Damage from All Element +2% +-------------------------- +Type: Headgear +Defense: 17 +Position: Upper +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +2300014# +HIT + 3 +FLEE + 3 +Long Range Attack +1% +-------------------------- +When refined to +7 or higher: +HIT + 3 +FLEE + 3 +Long Range Attack +2% +-------------------------- +When refined to +9 or higher: +HIT + 4 +FLEE + 4 +Long Range Attack +2% +-------------------------- +Type: Armor +Defense: 70 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +2300015# +All Status + 1 +Defense + 10 +Decrease damage from small monster by 5% +-------------------------- +When refined to +7 or higher: +All Status + 2 +Defense + 10 +Decrease damage from large monster by 5% +-------------------------- +When refined to +9 or higher: +All Status + 2 +Defense + 10 +Decrease damage from medium monster by 5% +-------------------------- +Type: Garment +Defense: 24 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +2300016# +Max Hp +3% +Max Sp +1% +Variable Cas Time -1% +Resist Confusion Status +5% +Resist Blind Status +5% +-------------------------- +When refined to +7 or higher: +Max Hp +3% +Max Sp +2% +Variable Cas Time -2% +Resist Confusion Status +5% +Resist Blind Status +5% +-------------------------- +When refined to +9 or higher: +Max Hp +4% +Max Sp +2% +Variable Cas Time -3% +Resist Confusion Status +5% +Resist Blind Status +5% +-------------------------- +Type: Shoes +Defense: 13 +Weight: 80 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +2300017# +Atk +10 +Aspd +5% +-------------------------- +Type: Accessory (Right) +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +2300018# +Matk +10 +Variable Cast Time - 2% +-------------------------- +Type: Accessory (Left) +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 90 +# +2300019# +The center of discovery of Ragnarok's important work +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 1-110 +# +2300020# +A hat with a simple color tone. Accented with gold decorations. +-------------------------- +When using Double Strafing, there is a 20% chance of casting Phantasmic Arrow +-------------------------- +every 2 levels of upgrade: +ATK +5 +-------------------------- +Refine Level +5: +ATK +5% +-------------------------- +Refine Level +7: +has a 5% chance to ignore the enemy's physical defense for 4 seconds. +-------------------------- +Refine Level +9: +has a 5% chance to ignore the enemy's physical defense for 4 seconds. +-------------------------- +When wearing a Double Badge, Increases damage of Double Strafing skill by 50%, +Every 1 upgrade level when using Double Strafing, the chance to cast Phantasmic Arrow increases by 5%. +-------------------------- +If worn by a Stalker, +When performing a ranged physical attack, every level of the helmet upgrades. Chance to cast Double Strafing increases by 5%. +-------------------------- +Banned guild wars & PVP +-------------------------- +Type: Headgear +Defense: 35 +Position: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Archer Class, Rogue Class. +# +2300023# +A scarf that once belonged to someone +-------------------------- +AGI + 1, HIT + 1. +-------------------------- +If equipped with Wanderer's Sakkat, ATK + 30 +For every 2 upgrade levels of Wanderer's Sakkat, HIT + 1 +-------------------------- +When Wanderer's Sakkat is upgraded to level 10 or higher, increases Critical Damage by 7%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Lower +Weight: 10 +-------------------------- +Requirements: None +# +2300024# +A radiant full moon, just as the legend say at its largest and brightest on the 15th night of the eighth lunar month +-------------------------- +Str +3 +HP+ 100 +Increases melee physical damage by 5%. +-------------------------- +If upgrade level is +5 or higher, +ATK + 10 +Adds a 1% chance of restoring 1% of damage as SP when performing a physical attack. +-------------------------- +If upgrade level is +7 or higher, +Increases melee physical damage by 5%. +-------------------------- +If upgrade level is +9 or higher, +Increases melee physical damage by an additional 10%. +-------------------------- +Class: Headgear +Position: Upper +Defense: 10 +Weight: 50 +Tier: 6 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +2300025# +A delicate flower that is placed in the mouth for romantic seduction. +-------------------------- +All Stats +3 +MATK +10 +ATK +10 +Reduces the cast delay of skills by 10%. +Exp +50%, Drop 10% +Increses Movement Speed by 15% +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 1 +# +2300026# +A goddess's Loy Krathong headdress with exquisite beauty +-------------------------- +All Status +2 +EXP +10%, Drop rate 5% +Increases Movement speed 10% +-------------------------- +This effect will expire on November 27, 2024 +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 1 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +# +2300027# +Balloon Marlin, the gentle one who sways softly and gracefully. +-------------------------- +EXP + 5% Drop + 5% Atk+5 Matk+5 +Can be used Increase SP Recovery Lv.4 +-------------------------- +Rental item with a 30-day duration +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +The item is non-returnable +-------------------------- +Requirements: None +# +2300028# +Bright Blue Eyeshadow, quite conspicuous appearance. +-------------------------- +DEX +1, +VIT +1 +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 70 +# +2300029# +The Box of delicious Thai desserts, carefully preserved by the master Thai dessert chef +When equipped, there is a chance to receive various Thai desserts during festivals +-------------------------- +Players have a 1% chance to drop Thai desserts. +BP Quest players have an additional 3% increased chance to drop Thai desserts +BP Premium players have an additional 3% increased chance to drop Thai desserts +VIP players have an additional 3% increased chance to drop Thai desserts +-------------------------- +Type: Accessory +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirements: +Base Level 1 +# +2300030# +Large black wings of a fallen dark angel +-------------------------- +All Stats + 1. +ATK + 1 for every 20 base Str, +MATK + 1 for every 20 base Int, +Reduces damage taken from Neutral property attacks by 1% for every 20 base Vit, +Aspd + 1% for every 20 base Agi, +Increases long-ranged damage on targets by 1% for every 20 base Dex +Increases critical damage on targets by 1% for every 20 base Luk +-------------------------- +Type: Garment +Defense: 10 +Weight: 20 +Armor Level: 1 +Tier Level: 5 +-------------------------- +Requirements: None +# +2300031# +Fierce gaze. +-------------------------- +ATK +5, MATK + 5 +Increases damage when attacking Player enemies by + 5% (Does not affect Monsters.) +-------------------------- +Type: Hat +Defense: 1 +Position: Middle +Weight: 0 +Armor Level: 1 +Customizable: No +-------------------------- +Requirements: +Base Level 50 +# +2300032# +Ancient Gloves +MHP +3% +DEX +2 +VCT -2% +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirements: +Base Level 90 +All Jobs except Novice +# +2300033# +Ancient Necklace +-------------------------- +DEF +5 +MHP +3% +VIT +2 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirements: +Base Level 90 +All Jobs except Novice +# +2300034# +Ancient Accessory +-------------------------- +MHP +3% +AGI +2 +FLEE +5 +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirements: +Base Level 90 +All Jobs except Novice +# +2300035# +Ancient Ring +-------------------------- +MHP +3% +STR +2 +Increases physical attack power against all sizes by +2% +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirements: +Base Level 90 +All Jobs except Novice +# +2300036# +Finger protection for Archers, making it easier to draw the bowstring. Increases damage when using a Bow +-------------------------- +MHP +3% +ATK +5 +Increases ranged physical damage by 2% +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirements: +Base Level 90 +Archer +# +2300037# +Ancient Rosary +-------------------------- +MHP +3% +MDEF +7 +Increases magic defense against all sizes by +2% +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirements: +Base Level 90 +All Jobs except Novice +# +2300038# +Ancient Earring +-------------------------- +MHP +3% +INT +2 +Increases magic attack power against all sizes by +2% +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirements: +Base Level 90 +All Jobs except Novice +# +2300039# +Enables Crazy Uproar Skill +-------------------------- +All Stats +1 +ATK +5 MATK +5 +Reduces the cast delay of skills by 10%. +Exp +5% Drop +5% +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 1 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 1 +# +2300040# +ATK +10 +MATK +10 +Mdef + 2 / Def + 3 +-------------------------- + When upgraded +7 Or above: +ATK +10 +MATK +10 +Mdef + 3 / Def + 3 +-------------------------- + When upgraded +9 Or Above: +ATK +10 +MATK +10 +Mdef + 5 / Def + 4 +-------------------------- + When upgraded +10 Or Above: +Increases movement speed + 5% +-------------------------- +Type: Headgear +Defense: 17 +Position: Upper +Weight: 80 +Armor Level: 1 +Tier Level: 4 +-------------------------- +Requirement: +Base Level 90 +# +2300041# +MAX HP + 2% +MAX SP + 2% +Hit + 4 +Flee + 4 +-------------------------- + When upgraded +7 Or Above: +MAX HP + 2% +MAX SP + 2% +Hit + 5 +Flee + 5 +-------------------------- + When upgraded +9 Or Above: +MAX HP + 3% +MAX SP + 3% +Hit + 6 +Flee + 6 +-------------------------- + When upgraded +10 Or Above: +ASPD +1 +-------------------------- +Type: Armor +Defense: 70 +Weight: 80 +Armor Level: 1 +Tier Level: 4 +-------------------------- +Requirement: +Base Level 90 +# +2300042# +All Status + 1 +Def + 10 +Mdef + 1 +Weight Limit +200 +-------------------------- + When upgraded +7 Or Above: +All Status + 1 +Def + 10 +Mdef + 2 +Weight Limit +200 +-------------------------- + When upgraded +9 Or Above: +All Status + 2 +Def + 10 +Mdef + 2 +Weight Limit +300 +-------------------------- + When upgraded +10 Or Above: +Has a 5% chance to cast Kyrie Eleison Lv.3 on yourself when receiving physical attacks +-------------------------- +Type: Garment +Defense: 24 +Weight: 80 +Armor Level: 1 +Tier Level: 4 +-------------------------- +Requirement: +Base Level 90 +# +2300043# +Critical + 3 +Critical Damage + 4% +VCT -2% +Resists Frozen 7% +Resists Stun 7% +-------------------------- + When upgraded +7 Or Above: +Critical + 3 +Critical Damage + 5% +VCT -2% +Resists Frozen 7% +Resists Stun 7% +-------------------------- + When upgraded +9 Or Above: +Critical + 4 +Critical Damage + 6% +VCT -3% +Resists Frozen 7% +Resists Stun 7% +-------------------------- + When upgraded +10 Or Above: +Fix Cast Time -0.1s +-------------------------- +Type: Shoes +Defense: 13 +Weight: 80 +Armor Level: 1 +Tier Level: 4 +-------------------------- +Requirement: +Base Level 90 +# +2300044# +Can be used skill Crazy Uproar Lv. 1 +When defeating a monster with physical or magic attacks, recover 1 SP +SP Recovery + 10% +HP Recovery + 10% +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 1 +Armor Level: 1 +-------------------------- +Requirements: +Base Level 1 +# +2300045# +A rabbit doll made from soft orange fur, so well-crafted that it could be mistaken for a real rabbit. +Carrying it around feels like spending a day with a little rabbit! +-------------------------- +STR +1 +INT +1 +Increases physical/magical damage against all enemy types by 3% +-------------------------- +Type: Headgear +Defense: 0 +Position: Middle +Weight: 0 +Armor Level: 1 +-------------------------- +Requirements: None +# +2300046# +White Cloak +Unsealing it grants special abilities +-------------------------- +HP+500 SP+50 +-------------------------- +Account bound +-------------------------- +Type: Garment +Defense: 20 +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: None +# +2300047# +Emerald Green Accessory +An accessory crafted from a radiant emerald, imbued with magic, created by the High Magician's Guild. +-------------------------- +Enable to use Kyrie Eleison Lv.1 +Max HP/Max SP +3% +-------------------------- +Equip with Nymph Green Sapphire: +Reduces the Variable Cast Time of the following skills by 25%: +Lightning Bolt +Thunder Storm +Jupitel Thunder +Lord of Vermilion +-------------------------- +Type: Accessory (Left) +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Hi-Magician Class +Base Level 80 +# +2300048# +A clover with four leaves, concealing intriguing magical power within. +-------------------------- +Increases Wind elemental magic damage by 10% +-------------------------- +Equip with Nymph Green Sapphire: +Increase damage Jupitel Thunder skill by 10% +-------------------------- +Cannot be used in Guild War or PVP areas. +-------------------------- +Type: Headgear +Position: Lower +Weight: 20 +-------------------------- +Requirement: +Hi-Magician Class +Base Level 50 +# +2300049# +A bell once held by Moonlight Flower. When worn, it gives the feeling that Moonlight Flower is walking nearby +-------------------------- +All Status +2, increases ranged physical attack power by 3% +Can be used [Teleport] Lv.1 +When upgraded to level 7 or higher, for every additional upgrade level +Increases physical damage against all monster sizes by 1% (up to a maximum of 10%) +-------------------------- +If equipped with Fox Ear Bell Ribbon [1] +Increases Critical +5 increases ranged physical attack power by 5% +-------------------------- +Type: Garment +Defense: 15 +Weight: 120 +Armor Level: 1 +Tier Level: 6 +-------------------------- +Requirements: +Base Level 50 +# +2300050# +A Baby Angeling that always follows its master. +-------------------------- +All State + 1 +When performing a physical attack, there is a chance to activate Increase AGI Lv. 7 on yourself. +-------------------------- +Cannot be upgraded or destroyed. +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2300051# +A magical cloak that grants hope and courage to its wearer. +-------------------------- +Increases EXP from defeating monsters by 5%. +Reduces Variable Cast Time by 5% +-------------------------- +When upgraded to +5: EXP & Drop rates +5% +When upgraded to +7: For every +1 refinement, Matk +1 and Variable Cast Time -1%. +When using magical attacks, has a 5% chance to restore 200 HP per second for 5 seconds +When upgraded to +9: For every +1 refinement, Matk +1% and MaxSP +30. +-------------------------- +Account bound +-------------------------- +Type: Garment +Defense: 20 +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: None +# +2300052# +A cloak of power that grants hope and courage to its wearer. +-------------------------- +Increases EXP from defeating monsters by 5%. +Flee +5. +-------------------------- +When upgraded to +5: EXP & Drop rates +5%. +When upgraded to +7: For every +1 refinement, Atk +1 and Flee +1. +When using physical attacks, has a 2% chance to restore 10 SP per second for 5 seconds. +When upgraded to +9: For every +1 refinement, Atk +1% and Critical Damage +1%. +-------------------------- +Account bound +-------------------------- +Type: Garment +Defense: 20 +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: None +# +2300053# +A hat decorated with an adorable little snowman doll that moves around charmingly +-------------------------- +MDEF+5 +For every 1 upgrade level: Reduces damage taken from Water element attacks by 1%. +For every 2 upgrade levels: Gain Max HP +1% and Max SP +1%. + When upgraded to +7: For every additional upgrade level, increases physical attack power by 1% against Demi-Human monsters and Players, up to a maximum of 10% + When upgraded to +9: Reduces damage received from Demi-Human monsters by 7% +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 30 +Armor Level: 1 +Tier Level: 6 +-------------------------- +Requirements: None +# +2300054# +Usable only in WOE +-------------------------- +Type: 1H-Sword +Attack: 150 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirements: +Knight, Crusader +Base Level 85 +# +2300055# +Usable only in WOE +-------------------------- +Type: 2H-Sword +Attack: 180 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirements: +Knight, Crusader +Base Level 85 +# +2300056# +Usable only in WOE +-------------------------- +Type: 1H-Spear +Attack: 150 +Weight: 250 +Weapon Level: 4 +-------------------------- +Requirements: +Knight, Crusader +Base Level 85 +# +2300057# +Usable only in WOE +-------------------------- +Type: 2H-Spear +Attack: 170 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirements: +Knight, Crusader +Base Level 85 +# +2300058# +Usable only in WOE +-------------------------- +Type: 1H-Axe +Attack: 160 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirements: +Blacksmith, Alchemist +Base Level 85 +# +2300059# +Usable only in WOE +-------------------------- +Type: 2H-Axe +Attack: 180 +Weight: 230 +Weapon Level: 4 +-------------------------- +Requirements: +Blacksmith, Alchemist +Base Level 85 +# +2300060# +Usable only in WOE +-------------------------- +Type: Dagger +Attack: 180 +Weight: 80 +Weapon Level: 4 +-------------------------- +Requirements: +Assassin, Rogue +Base Level 85 +# +2300061# +Usable only in WOE +-------------------------- +Type: Katar +Attack: 140 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirements: +Assassin +Base Level 85 +# +2300062# +Usable only in WOE +-------------------------- +Type: Bow +Attack: 145 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirements: +Hunter, Rogue +Base Level 85 +# +2300063# +Usable only in WOE +-------------------------- +Type: Whip +Attack: 150 +Weight: 110 +Weapon Level: 4 +-------------------------- +Requirements: +Dancer +Base Level 85 +# +2300064# +Usable only in WOE +-------------------------- +Type: Musical Instrument +Attack: 150 +Weight: 120 +Weapon Level: 4 +-------------------------- +Requirements: +Bard +Base Level 85 +# +2300065# +Usable only in WOE +-------------------------- +Type: Book +Attack: 130 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirements: +Priest, Monk, Taekwon, StarGladiator, SoulLinker +Base Level 85 +# +2300066# +Usable only in WOE +-------------------------- +Type: Mace +Attack: 170 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirements: +Priest, Monk +Base Level 85 +# +2300067# +MATK +125 +-------------------------- +Usable only in WOE +-------------------------- +Type: Staff +Attack: 40 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirements: +Priest, Wizard +Base Level 85 +# +2300068# +MATK +220 +-------------------------- +Usable only in WOE +-------------------------- +Type: 2H-Staff +Attack: 40 +Weight: 50 +Weapon Level: 4 +-------------------------- +Requirements: +Priest, Wizard +Base Level 85 +# +2300069# +Usable only in WOE +-------------------------- +Type: Knuckle +Attack: 160 +Weight: 65 +Weapon Level: 4 +-------------------------- +Requirements: +Monk +Base Level 85 +# +2300070# +Usable only in WOE +-------------------------- +Type: Huuma Shuriken +Attack: 175 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirements: +Ninja +Base Level 85 +# +2300071# +Usable only in WOE +-------------------------- +Type: Revolver +Attack: 180 +Weight: 150 +Weapon Level: 4 +-------------------------- +Requirements: +Gunslinger +Base Level 85 +# +2300072# +Usable only in WOE +-------------------------- +Type: Rifle +Attack: 220 +Weight: 100 +Weapon Level: 4 +-------------------------- +Requirements: +Gunslinger +Base Level 85 +# +2300073# +Usable only in WOE +-------------------------- +Type: Gatling Gun +Attack: 210 +Weight: 200 +Weapon Level: 4 +-------------------------- +Requirements: +Gunslinger +Base Level 85 +# +2300074# +Usable only in WOE +-------------------------- +Type: Gatling Gun +Attack: 200 +Weight: 130 +Weapon Level: 4 +-------------------------- +Requirements: +Gunslinger +Base Level 85 +# +2300075# +These shoes look very old, yet they show no signs of wear and tear +-------------------------- +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 upgrade levels: +MaxHP +50 +MaxSP +5 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 60 +Armor Level: 1 +Tier Level: 2 +-------------------------- +Requirement: +Base Level 10 +# +2300076# +These shoes look very old, yet they show no signs of wear and tear +-------------------------- +STR +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 upgrade levels: +MaxHP +50 +MaxSP +5 +ATK +5 +-------------------------- +If the user base STR is 99 or higher, +ATK +30 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Tier Level: 4 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Second Class only +# +2300077# +These shoes look very old, yet they show no signs of wear and tear +-------------------------- +INT +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 upgrade levels: +MaxHP +50 +MaxSP +5 +MATK +5 +-------------------------- +If the user base INT is 99 Or higher, +MATK +30 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Tier Level: 4 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Second Class only +# +2300078# +These shoes look very old, yet they show no signs of wear and tear +-------------------------- +AGI +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 upgrade levels: +MaxHP +50 +MaxSP +5 +Aspd +2% +-------------------------- +If the user base AGI is 99 Or higher, +ASPD +1 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Tier Level: 4 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Second Class only +# +2300079# +These shoes look very old, yet they show no signs of wear and tear +-------------------------- +VIT +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 upgrade levels: +MaxHP +50 +MaxSP +5 +-------------------------- +If the user base VIT is 99 Or higher, +MaxHP +5% +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Tier Level: 4 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Second Class only +# +2300080# +These shoes look very old, yet they show no signs of wear and tear +-------------------------- +DEX +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 upgrade levels: +MaxHP +50 +MaxSP +5 +DEX +3 +-------------------------- +If the user base DEX is 99 Or higher, +Fixed cast time is reduced by 0.3 seconds +Increases ranged attack power by 3% +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Tier Level: 4 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Second Class only +# +2300081# +These shoes look very old, yet they show no signs of wear and tear +-------------------------- +LUK +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 upgrade levels: +MaxHP +50 +MaxSP +5 +Increases Critical Damage by 1%. +-------------------------- +If the user base LUK is 99 Or higher, +Increases Critical Damage by 20%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Tier Level: 4 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Second Class only +# +2300082# +These shoes look very old, yet they show no signs of wear and tear +-------------------------- +STR +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 upgrade levels: +MaxHP +50 +MaxSP +5 +ATK +5 +-------------------------- +If the user base STR is 99 Or higher, +ATK +30 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Tier Level: 5 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Second Class only +# +2300083# +These shoes look very old, yet they show no signs of wear and tear +-------------------------- +VIT +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 upgrade levels: +MaxHP +50 +MaxSP +5 +-------------------------- +If the user base VIT is 99 Or higher, +MaxHP +5% +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Tier Level: 5 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Second Class only +# +2300084# +These shoes look very old, yet they show no signs of wear and tear +-------------------------- +DEX +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 upgrade levels: +MaxHP +50 +MaxSP +5 +DEX +3 +-------------------------- +If the user base DEX is 99 Or higher, +Fixed cast time is reduced by 0.3 seconds +Increases ranged attack power by 3% +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Tier Level: 5 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Second Class only +# +2300085# +These shoes look very old, yet they show no signs of wear and tear +-------------------------- +INT +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 upgrade levels: +MaxHP +50 +MaxSP +5 +MATK +5 +-------------------------- +If the user base INT is 99 Or higher, +MATK +30 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Tier Level: 5 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Second Class only +# +2300086# +These shoes look very old, yet they show no signs of wear and tear +-------------------------- +AGI +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 upgrade levels: +MaxHP +50 +MaxSP +5 +Aspd +2% +-------------------------- +If the user base AGI is 99 Or higher, +ASPD +1 +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Tier Level: 5 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Second Class only +# +2300087# +These shoes look very old, yet they show no signs of wear and tear +-------------------------- +LUK +3 +MDEF +5 +MaxHP +200 +MaxSP +20 +-------------------------- +For every 3 upgrade levels: +MaxHP +50 +MaxSP +5 +Increases Critical Damage by 1%. +-------------------------- +If the user base LUK is 99 Or higher, +Increases Critical Damage by 20%. +-------------------------- +Type: Shoes +Defense: 20 +Weight: 50 +Armor Level: 1 +Tier Level: 5 +Can be enchanted by: +Hugin's Magicianglast_01,212,273,0,100,0,0 +-------------------------- +Requirement: +Base Level 70 +Second Class only +# +2300088# +A sacred statue crafted through ancient arts and knowledge. +-------------------------- +Mdef + 15 +Int + 3, Vit + 3 +-------------------------- +When equipped by a Priest class, grants the ability to use Soul Exhale Lv.1. +-------------------------- +If player Base Level is 80 or higher: +SP consumption for Heal Skill and Sanctuary Skill increases by 50%. +Reduces the Variable Cast Time of Sanctuary Skill is reduced by 30%. +For every Base Level, Heal HP recovery amount increases by 1%. +-------------------------- +Cannot be used in Guild War or PVP areas. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 50 +Acolyte Cls +# +2300089# +A large hat worn by the famous pirate. Due to his cruelty, it is always red with blood. +-------------------------- +STR +5 +Increase physical damage to all class monsters by +6% (No effect on the player) +-------------------------- +When refined to +5 or higher: +increase physical damage to all class monsters by additional +1% (No effect on the player) +-------------------------- +When refined to +7 or higher: +increase physical damage to all class monsters by additional +2% (No effect on the player) +-------------------------- +When refined to +9 or higher: +increase physical damage to all class monsters by additional +3% (No effect on the player) +Ignores weapon's size penalties against all monsters. +-------------------------- +Type: Headgear +Defense: 7 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 100 +# +2300090# +A ribbon infused with the power of an Exorcist, wearable only by high-ranking priests. +-------------------------- +Reduces the Variable Cast Time of Magnus Exorcismus Skill by 50% +Increases Magnus Exorcismus Skill damage by 20% +-------------------------- +When refine to +7 or higher: +Reduces the Variable Cast Time of Magnus Exorcismus Skill by an additional 50%. +Increases Magnus Exorcismus Skill damage by an additional 30% +Add the chance of auto casting level 1 Heal on the user when receiving physical or magically damage +(If the player has learned Heal Skill , it will use the highest learned level automatically) +-------------------------- +Type: Headgear +Defense: 30 +Position: Upper +Weight: 2 +-------------------------- +Requirement: +Base Level 55 +# +2300091# +Cannot be traded with other players +Character-bound +-------------------------- +Gloves equipped with weapons that enhance the wearer's hidden potential +-------------------------- +Increases EXP gain by 1% for every 2 upgrade levels +-------------------------- +When equipping [Event] Rookies's Shadow Weapon together with [Event] Rookies's Shadow Armor: +Increases experience gained from monsters by 5% +-------------------------- +When upgraded beyond level 15, increases EXP gained from monsters by an additional 5% +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirements: +Base Level 1 +Maximum Base Level 99 +# +2300092# +Cannot be used in PVP and GVG +Cannot be traded with other players +Character-bound +Armor that increases defense when equipped. If worn as a single piece, the defensive capability will be reduced +-------------------------- +ASPD +5% +-------------------------- +If equipped with [Event] Temporal Transcendent Weapon, [Event] Temporal Transcendent Shield, [Event] Temporal Transcendent Shoes, [Event] Temporal Transcendent Earring And [Event] Temporal Transcendent Pendant: +ASPD +1 +VCT -10% +Recover 50 HP and 5 SP when defeating a monster +-------------------------- +Type: Shadow Armor +-------------------------- +Requirements: +Base Level 1 +Maximum Base Level 100 +# +2300093# +Cannot be used in PVP and GVG +Cannot be traded with other players +Character-bound +Shoes that can be worn in addition to regular footwear. Can be used as a single piece but with only minor effects +-------------------------- +ASPD +3% +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirements: +Base Level 1 +Maximum Base Level 100 +# +2300094# +Cannot be used in PVP and GVG +Cannot be traded with other players +Character-bound +Grants a defensive effect that can be enhanced with a small shield attached to the arm. Can be used as a single piece but provides only minor defense +-------------------------- +FLEE +10 +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirements: +Base Level 1 +Maximum Base Level 100 +# +2300095# +Cannot be used in PVP and GVG +Cannot be traded with other players +Character-bound +Gloves that unlock the wearer's hidden potential +-------------------------- +Increases Critical Damage 3% +-------------------------- +Type: Shadow Weapon +-------------------------- +Requirements: +Base Level 1 +Maximum Base Level 100 +# +2300096# +Cannot be used in PVP and GVG +Cannot be traded with other players +Character-bound +Blessed earrings said to protect the wearer, unleashing their hidden potential. +-------------------------- +MATK + 7 +-------------------------- +Type: Shadow Earring +-------------------------- +Requirements: +Base Level 1 +Maximum Base Level 100 +# +2300097# +Cannot be used in PVP and GVG +Cannot be traded with other players +Character-bound +A sacred necklace said to protect the wearer, unleashing their hidden potential +-------------------------- +ATK + 7 +-------------------------- +Type: Shadow Pendant +-------------------------- +Requirements: +Base Level 1 +Maximum Base Level 100 +# +2300098# +Atk+5 Matk+5 +All status +3 +Enable Teleport Level 1 +Exp +10% +Drop +5% +-------------------------- +Type: Accessory +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: +# +2300099# +Cannot be traded with other players +Character-bound +-------------------------- +A small shield that can be worn to enhance defense. It can be equipped as a single piece, but its defensive effect will be reduced +-------------------------- +Increases EXP gain by 1% for every 2 upgrade levels +-------------------------- +When equipping [Event] Rookies's Shadow Shield together with [Event] Rookies's Shadow Shoes: +Increases experience gained from monsters by 5% +-------------------------- +When upgraded beyond level 15, increases EXP gained from monsters by an additional 5% +-------------------------- +Type: Shadow Shield +-------------------------- +Requirements: +Base Level 1 +Maximum Base Level 99 +# +2300100# +Cannot be traded with other players +Character-bound +-------------------------- +Shoes that enhance effects when stacked. Can be worn as a single piece, but the effect will be reduced +-------------------------- +Increases EXP gain by 1% for every 2 upgrade levels +-------------------------- +When equipping [Event] Rookies's Shadow Shield together with [Event] Rookies's Shadow Shoes: +Increases Experience gained from monsters by +5% +-------------------------- +When upgraded beyond level 15, increases EXP gained from monsters by an additional 5% +-------------------------- +Type: Shadow Shoes +-------------------------- +Requirements: +Base Level 1 +Maximum Base Level 99 +# +2300101# +Cannot be traded with other players +Character-bound +-------------------------- +Armor that increases defense when worn. When stacked with additional armor, the effect is further enhanced. It can be worn as a single piece, but its defensive capability will be reduced +-------------------------- +Increases EXP gain by 1% for every 2 upgrade levels +-------------------------- +When equipping [Event] Rookies's Shadow Weapon together with [Event] Rookies's Shadow Armor: +Increases Experience gained from monsters by 5% +-------------------------- +When upgraded beyond level 15, increases EXP gained from monsters by an additional 5% +-------------------------- +Type: Shadow Armor +-------------------------- +Requirements: +Base Level 1 +Maximum Base Level 99 +# +2300102# +Ring of Honor of the Knight Who Protects Prontera. +-------------------------- +Mdef + 10 +Increases HP recovery rate by 100%. +For every 1 Base Level: +Increases damage of Shield Chain skill by 1%. +When performing a physical attack, there is a chance to invoke the power of the Royal Knight, granting: +All Stats +10 +HIT +20 ++10% ATK +ATK +25 +For 7 seconds. However, DEF will be reduced by 100 during this time. +-------------------------- +When equipped with Dark Shield: +For every 1 Base Level: +Increases damage of Grand Cross skill by 2%. +Reduces casting time of Grand Cross skill by 50%. +-------------------------- +Cannot be used in Guild War or PvP areas +-------------------------- +Type: Accessory +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +Paladin Class +# +2300103# +Shield Forged by the Lord of the Dead +-------------------------- +MHP+500, MSP+150 +When performing a physical attack, there is a small chance to cast Coma on the target. +When performing physical or magical attacks, every second there is a chance to recover 500 HP for 5 seconds. +The chance to recover HP increases with the shield's upgrade level. +-------------------------- +Increases resistance to Shadow element attacks by 10%. +Reduces resistance to Holy element attacks by 10%. +-------------------------- +Type: Shield +Defense: 80 +Weight: 180 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 60 +# +2300104# +Specially crafted shoes exclusively for Landverse Group members +-------------------------- +Increases experience by 5% +Increases SP restoration rate by 2% +Base Lv.20 or higher MSP +5 Additional +Base Lv.40 or higher MSP +10 Additional +Base Lv.70 or higher MSP +15 Additional +-------------------------- +Type: Shoes +Defense: 4 +Weight: 0 +Armor Level: 1 +Customizable: No +-------------------------- +Requirements: +Base Level 12 +# +2300105# +A hat specially crafted exclusively for Landverse Group members +-------------------------- +Increases experience by 5% +ATK/MATK +3 +Base Lv.20 or higher ATK/MATK +2 Additional +Base Lv.40 or higher ATK/MATK +3 Additional +Base Lv.70 or higher ATK/MATK +5 Additional +-------------------------- +Type: Hat +Defense: 1 +Position: Upper +Weight: 0 +Customizable: No +Armor Level: 1 +-------------------------- +Requirements: +Base Level 12 +# +2300106# +A cloak specially crafted exclusively for Landverse Group members +-------------------------- +Increases experience by 5% +Increases resistance to all elements by 5% +Base Lv.20 or higher ASPD +1% +Base Lv.40 or higher ASPD +1% Additional +Base Lv.70 or higher ASPD +2% Additional +-------------------------- +Type: Garment +Defense: 5 +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirements: +Base Level 12 +# +2300107# +A Suit specially crafted exclusively for Landverse Group members +-------------------------- +Increases experience by 5% +Increases HP restoration rate by 5% +Base Lv.20 or higher MHP+50 Additional +Base Lv.40 or higher MHP+70 Additional +Base Lv.70 or higher MHP+100 Additional +-------------------------- +Type: Armor +Defense: 10 +Weight: 0 +Armor Level: 1 +Customizable: No +-------------------------- +Requirements: +Base Level 12 +# +2300108# +A shoulder cloak made from the fur of a night wolf, crafted to enhance the agility of hunters +-------------------------- +Dex + 2 +Increases ranged attack damage by 2 % + When upgraded to +5 or higher: ATK +10 +-------------------------- + When upgraded to +7 or higher +Additional Dex + 3 And Increases ranged attack damage by 3% +-------------------------- + When upgraded to +9 or higher +Additional Dex + 5 And Increases ranged attack damage by 5% +-------------------------- + When upgraded to +10 or higher +Increases physical damage against all enemy types by 5% +-------------------------- +Type: Armor +Defense: 50 +Weight: 70 +Armor Level: 1 +Tier Level: 6 +-------------------------- +Requirement: +Base Level 70 +# +2300109# +A rare red panda that only wants to stay with its owner +-------------------------- +Reduces damage taken from Demi-Human monsters by 5% +Increases damage dealt to medium-sized monsters by 5% +-------------------------- +Type: Headgear +Defense: 8 +Position: Upper +Weight: 20 +-------------------------- +Requirements: None +# +2300110# +An elegant ribbon trimmed with gold that has been with Kimi since the beginning of her journey. +-------------------------- +DEX +3 +MATK +20 +Additional MATK +1 for every refinement level. +-------------------------- +Restores 200 HP when defeating a monster with magic. +-------------------------- +Reduces 50 HP every 5 seconds. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2300111# +Rose of Eternity +An exquisite rose with no trace of when it was plucked. Yet, its beauty remains as timeless as ever. +-------------------------- +MATK +10 +Additional MATK +1 for every refinement level. +-------------------------- +Restores 100 HP each time a monster is defeated using magic. +Consumes 50 HP every 5 seconds. +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2300113# +A pigeon perched on his master's shoulder. +-------------------------- +All Stats +1 +-------------------------- +Randomly auto-casts Ruwach Lv.1 when physically attacked. +-------------------------- +When equipped with Angel Wings: +Increases experience gained from defeating monsters by 5%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2300114# +A bright red demon hat dyed with blood. The deep crimson color symbolizes the demonic power flowing within +-------------------------- +Hit +10, Increases Melee attack by 3% +-------------------------- +When upgraded to +7, Increases Melee Attack by 4% and reduces skill cast delay by 4% +If equipped with Scarlet Ring [1], reduce Cooldown Skill Back Stab 0.15 Seconds +-------------------------- +When upgraded to +9, Increases Melee Attack by 6% and reduces skill cast delay by 6% +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 50 +Armor Level: 1 +Tier Level: 6 +-------------------------- +Requirements: None +# +2300115# +A demon ring that once belonged to a legendary assassin. It contains the souls of the deceased that the assassin had accumulated from their kills +-------------------------- +Hit+3 +Increases Back Stab skill attack by 1% for each level of Back Stab skill learned +Reduces delay by 1% for each level of Steal Coin skill learned +-------------------------- +Type: Accessory +Defense: 5 +Weight: 5 +Armor Level: 1 +-------------------------- +Requirements: +Base Level 70 +# +2300116# +Auspicious Red Suit. +Prepared by the townsfolk for tourists. +They really put in a lot of effort! +-------------------------- +Increases resistance to damage from event monsters by 50%. +-------------------------- +This item will disappear after the event period ends. +-------------------------- +Requirement: +Base Level 1 +# +2300117# +ATK+5 MATK+5 +EXP+5% DROP RATE+5% +Recovery HP 5% and SP 3% every 10 second +Enables Level 1 Kyrie Eleison +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 30 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2300121# +Earrings made from angel feathers. +You will feel like you are hearing an angel's laughter. +-------------------------- +Reduces variable casting time by 5%. +-------------------------- +Type: Headgear +Defense: 5 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 85 +# +2300124# +The pure white hat worn by a group of defenders who fight bravely without fear of bullets. +-------------------------- +MDEF+3 +Reduces damage taken from Demi-human monster by 7% +-------------------------- +If upgrade is +7 or higher, +Adds 3% chance of casting Critical Wound Lv.1 when receiving a physical or magical attack. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 20 +Armor Level: 1 +Tier: 6 +-------------------------- +Requirement: +None +# +2300134# +A ring that empowers the essences of the Demon. +-------------------------- +STR +2 +ATK +2% +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +All Jobs +# +2300135# +A ring that empowers the essences of the Demon. +-------------------------- +INT+2 +MATK +2% +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +All Jobs +# +2300139# +We shall fly far higher in the sky flapping big Angel ring. +-------------------------- +DEX +1 +-------------------------- +EXP+5% JOBEXP+5% +Increases White/Yellow/Orange/Red Potion restoration by 30% +-------------------------- +Type: Headgear +Defense: 5 +Position: Lower +Weight: 5 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2300140# +One-handed sword made of metal with enhanced abilities by adding Phracon and Emveretarcon to Steel. +-------------------------- +Type: One-Handed Sword +Attack: 150 +Weight: 150 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Knight +# +2300141# +Two-handed sword made of metal with enhanced abilities by adding Phracon and Emveretarcon to Steel. +-------------------------- +Type: Two-Handed Sword +Attack: 180 +Weight: 250 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Knight +# +2300142# +Lance made of metal with enhanced abilities by adding Phracon and Emveretarcon to Steel. +-------------------------- +Type: Two-Handed Spear +Attack: 185 +Weight: 250 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Knight, Crusader +# +2300144# +Katar made of metal with enhanced abilities by adding Phracon and Emveretarcon to Steel. +-------------------------- +Type: Katar +Attack: 165 +Weight: 150 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Assassin +# +2300145# +Staff made of metal with enhanced abilities by adding Phracon and Emveretarcon to Steel. +-------------------------- +MATK +90 +-------------------------- +Type: One-Handed Staff +Attack: 60 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Wizard, Priest +# +2300146# +Two-handed axe made of metal with enhanced abilities by adding Phracon and Emveretarcon to Steel. +-------------------------- +Type: Two-Handed Axe +Attack: 185 +Weight: 250 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Blacksmith +# +2300147# +Book made of metal with enhanced abilities by adding Phracon and Emveretarcon to Steel. +-------------------------- +Type: Book +Attack: 115 +Weight: 100 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Priest, Sage +# +2300148# +Bow made of metal with enhanced abilities by adding Phracon and Emveretarcon to Steel. +-------------------------- +Type: Bow +Attack: 125 +Weight: 0 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Hunter +# +2300149# +The reward of the winner, Angeling, which symbolizes +Wealth and a symbol of victory +-------------------------- +All stats +2 +Atk +3 +Matk +3 +-------------------------- +Increases the experience gained from defeating monsters by 5% +Increases the item drop rate from all monsters by 5% +-------------------------- +Type: Hat +Defense: 5 +Position: Lower +Weight: 5 +Armor Level: 1 +-------------------------- +Requirements: None +# +2300153# +A small backpack perfect for adventurers, containing various items inside +-------------------------- +Can be used [Greed] Lv.1 +-------------------------- +If upgraded from level + 5: +-------------------------- +STR Base level 70 or higher , Increases ATK +5 +-------------------------- +INT Base level 70 or higher , Increases MATK +5 +-------------------------- +VIT Base level 70 or higher , Increases defense Neutral Property + 2% +-------------------------- +AGI Base level 70 or higher , Increases ASPD 3% +-------------------------- +DEX Base level 70 or higher , Increases Long ranged attack power 2% +-------------------------- +LUK Base level 70 or higher , Increases Critical Damage + 3% +-------------------------- +Type: Garment +Defense: 20 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: All Jobs +# +2300154# +A replica bag Homunculus Amistr +-------------------------- +All Stats +1 +-------------------------- +Can be used [Teleport] Lv.1 +-------------------------- +For every 2 upgrades, EXP from monsters +1%, Item drop rate +1%. +-------------------------- +When upgraded to 7 +When performing a physical or magical attack, there is a 1% chance to restore 10 SP per second for 5 seconds. +-------------------------- +Type: Garment +Defense: 30 +Weight: 20 +Armor Level: 1 +Tier Level: 6 +-------------------------- +Requirement: None +# +2300156# +A ring that empowers the essences of the Demon. +-------------------------- +LUK +2 +CRI +2 +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +All Jobs +# +2300157# +A ring that empowers the essences of the Demon. +-------------------------- +VIT +2 +Variable Cast Time -2% +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +All Jobs +# +2300166# +A fragment of the divine power of the archangel Uriel. +Those who possess it are granted immense power. +-------------------------- +Global Cooldown -3% +Increases magic damage of all elements by 5% +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 60 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 1 +# +2300167# +A fragment of the divine power of the archangel Raphael. +Those who possess it are granted immense power. +-------------------------- +Global Cooldown -3% +Increases melee physical damage by 5% +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 60 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 1 +# +2300168# +A fragment of the divine power of the archangel Gabriel. +Those who possess it are granted immense power. +-------------------------- +Global Cooldown -3% +Increases ranged physical damage by 5% +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 60 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: +Base Level 1 +# +2300170# +A ring that empowers the essences of the Demon. +-------------------------- +DEX+1 +Long Range Dmg+2% +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +All Jobs +# +2300171# +A ring that empowers the essences of the Demon. +-------------------------- +AGI+1 +ASPD+2% +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +All Jobs +# +2300178# +Rental Item +Huge balloon looking bubble gum. You can even blow it much bigger! +Caution: May seem ghetto to others. +-------------------------- +ATK +5 +MATK +5 +Aspd +3% +EXP+5% Drop+5% +-------------------------- +Type: Headgear +Defense: 2 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2300179# +The magic basket that could produce Easter Egg and Chocolate Egg +by defeating monster. How? Peter said don't mention about it. +-------------------------- +All Status +2 +Atk +2% / Matk +2% +Increase received EXP and Drop rate for 5% +-------------------------- +Upon Equip +Have a chance to drop [Event] Easter Egg +after defeating monster +-------------------------- +The item will disappear after 24 hours. +-------------------------- +Type: Accessory +Defense: 0 +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +# +2300184# +The unblinking gaze of the sable cat made me feel uneasy. +-------------------------- +AGI +2 +Increase physical damage to Neutral monster 2% +-------------------------- +Type: Headgear +Defense: 1 +Position: Middle +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2300185# +A sable cat's tail that makes you really want to pet it when you see it. +-------------------------- +Luk +3 +-------------------------- +Set Bonus: +When equip with Sable Cat Eye +AGI +1 +Increase physical damage to Neutral monster 1% +-------------------------- +Type: Accessory +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +# +2300187# +The vibrant red hat often worn by the renowned adventurer. +-------------------------- +Critical +5 +Increase recovery rate from recovery HP potion by 10%. +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +If refine +7 or higher, +Decreases damage taken from Demi-Human race by 5%. +-------------------------- +Type: Headgear +Defense: 6 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2300188# +Gemstone discovered in a freezing land, it is believed that carrying it with you can help protect against the cold.. +-------------------------- +Reduces damage taken from Water property attacks by 2%. +Adds 5% resistance to the Frozen. +-------------------------- +Type: Accessory +Defense: 5 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2300195# +A hat favored by forest hunters. +Wearing it makes you feel like your archery accuracy increases by 100%. +-------------------------- +DEX +1 +MaxHP +100 +Increase long-range physical damage by 7% +-------------------------- +Set Bonus: +When equiped with Hawkeye and Sharpshooter's Glove +HIT +2 per 2 refine rate. +ATK +2 per 2 refine rate. +-------------------------- +When equiped with Hawkeye and Sharpshooter's Glove. +And Sharpshooter's Hat [1] is upgrade 7 or higher, +Increase long-range physical damage by 3% +ASPD +3% +-------------------------- +When equiped with Hawkeye and Sharpshooter's Glove. +And Sharpshooter's Hat [1] is upgrade 9 or higher, +ASPD +1 +Adds chance 3% to Increase long-range physical damage by 10% for 3 seconds when dealing physical attack. +-------------------------- +Type: Headgear +Defense: 3 +Location: Upper +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +# +2300196# +A lovely nightcap. It is cute and you will feel sleepy when you wear it. +-------------------------- +MATK +5% +ATK +5% +-------------------------- +If upgrade is +7 or higher, +MATK +1% +ATK +1% +-------------------------- +If upgrade is +9 or higher, +MATK +2% +ATK +2% +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement: None +# +2300197# +An ancient mitten. +-------------------------- +DEX +1 +Hit +5 +-------------------------- +Type: Accessory +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +# +2300203# +A driver's cap with a menacing skull on the band. +-------------------------- +MATK +2% +-------------------------- +If upgrade level is +5 or higher: +Additional MATK + 3% +-------------------------- +If upgrade level is +7 or higher: +Additional MATK + 3% +-------------------------- +Set Bonus: +When equiped Evil Bone Wand, Unleash Evil Bone Wand +MATK +4 per refine rate of Evil Bone Wand +VCT -1% per refine rate of Evil Bone Wand +-------------------------- +When equiped Evil Bone Wand, Unleash Evil Bone Wand +And Evil Bone Wand upgrade level is +7 or higher, +Increase magical damage on all size monster by 3% +VCT -3% +-------------------------- +When equiped Evil Bone Wand, Unleash Evil Bone Wand +And Evil Bone Wand upgrade level is +9 or higher, +FCT -10% +Adds chance 2% to Increase magical damage on all size monster by 10% for 4 seconds when dealing magical attack. +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +# +2300217# +The belt that X typically wears helps them feel more agile during training sessions. +-------------------------- +If base AGI is 50 or higher, +LUK +1 +-------------------------- +If base AGI is 70 or higher, +additional LUK +1 +-------------------------- +If base AGI is 90 or higher, +additional LUK +2 +-------------------------- +If base LUK is 50 or higher, +AGI +1 +-------------------------- +If base LUK is 70 or higher, +additional AGI +1 +-------------------------- +If base LUK is 90 or higher, +additional AGI +2 +-------------------------- +Type: Accessory (Left) +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +# +2300220# +Wings of the mythical beast, Kirin. +-------------------------- +Set Bonus +When equipped with Costume Kirin Wings +All Status +1 +-------------------------- +Type: Garment +Defense: 18 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: None +# +2300223# +A bright red demon hat dyed with blood. +The crimson blood symbolizes the demonic power that courses through the wearer. +-------------------------- +HIT +10 +Increase Melee physical damage by 3% +-------------------------- +If upgrade level is +7 or higher, +Increase Melee physical damage by additional 4% +Global Cooldown -4% +-------------------------- +If upgrade level is +9 or higher, +Negates Size Penalty. +-------------------------- +Set Bonus: +When equipped with Thief Scarf [1] +Decrease cooldown of Back Stab skill by 0.15 second. + +If upgrade level is +9 or higher, +Increase Melee physical damage by additional 6% +Global Cooldown -6% +-------------------------- +Type: Headgear +Defense: 0 +Position: Upper +Weight: 50 +Armor Level: 1 +Tier: 6 +-------------------------- +Requirement: None +# +2300224# +A demon ring that once belonged to a legendary assassin. +It contains the souls of those whom the assassin killed and collected. +-------------------------- +HIT +3 +Increases the damage of Back Stab by 1% for each level of the Back Stab learned. +Global Cooldown -1% for each level of the Steal Coin learned. +-------------------------- +Type: Accessory +Defense: 5 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +All Jobs +# +2300227# +Musical made of metal with enhanced abilities by adding Phracon and Emveretarcon to Steel. +-------------------------- +Type: Musical Instrument +Attack: 142 +Weight: 90 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 1 +Bard classes +# +2300228# +One-handed axe made of metal with enhanced abilities by adding Phracon and Emveretarcon to Steel. +-------------------------- +Type: One-Handed Axe +Attack: 115 +Weight: 150 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 1 +Alchemist +# +2300229# +Knuckle made of metal with enhanced abilities by adding Phracon and Emveretarcon to Steel. +-------------------------- +Type: Claw +Attack: 115 +Weight: 65 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 1 +Monk classes +# +2300230# +Rope made of metal with enhanced abilities by adding Phracon and Emveretarcon to Steel. +-------------------------- +Type: Whip +Attack: 120 +Weight: 70 +Weapon Level: 3 +Refineable: No +-------------------------- +Requirement: +Base Level 1 +Dancer +# +2300239# +A baby red dragon who has been trained to help its master. +-------------------------- +VIT +2 +MDEF +5 +Increases physical damage on Demi-Human race targets by 5% +-------------------------- +If upgrade level is +7 or higher: +Increases physical damage on Demi-Human race targets by 5% +Adds 3% chance to cast Dragon Fear Lv.1 when performing a melee physical attack. +-------------------------- +If upgrade level is +9 or higher: +ASPD +1 +Adds a 1% additional chance to cast Dragon Fear Lv.1 when performing a melee physical attack. +-------------------------- +Type: Headgear +Defense: 10 +Position: Upper +Weight: 50 +Armor Level: 1 +Tier: 6 +-------------------------- +Requirement: +Base Level 1 +# +2300241# +A bright red demon hat dyed with blood. +The crimson blood symbolizes the demonic power that courses through the wearer. +-------------------------- +INT +2 +DEX +2 +VCT -1% per refine rate. + +Adds 100% chance to increase Wind properties magical damage 5% for 5 seconds. when using Storm Gust, Frost Nova and Cold Bolt. + +Adds 100% chance to increase Water properties magical damage 5% for 5 seconds. when using Lord of Vermilion, Jupitel Thunder and Lightning Bolt. + +Adds 100% chance to increase Fire properties magical damage 5% for 5 seconds. when using Heaven's Drive, Stone Curse and Earth Spike. +-------------------------- +If upgrade level is +5 or higher, +MATK +1% per 2 refine rate. +-------------------------- +If upgrade level is +7 or higher, +Adds 100% chance to additional increase Wind properties magical damage 5% when using Storm Gust, Frost Nova and Cold Bolt. + +Adds 100% chance to additional increase Water properties magical damage 5% when using Lord of Vermilion, Jupitel Thunder and Lightning Bolt. + +Adds 100% chance to additional increase Fire properties magical damage 5% when using Heaven's Drive, Stone Curse and Earth Spike. +-------------------------- +If upgrade level is +9 or higher, +Adds 100% chance to additional increase Wind properties magical damage 5% when using Storm Gust, Frost Nova and Cold Bolt. + +Adds 100% chance to additional increase Water properties magical damage 5% when using Lord of Vermilion, Jupitel Thunder and Lightning Bolt. + +Adds 100% chance to additional increase Fire properties magical damage 5% when using Heaven's Drive, Stone Curse and Earth Spike. +-------------------------- +If upgrade level is +10 +Enable to use Recognized Spell Lv.1 +-------------------------- +Type: Headgear +Defense: 5 +Position: Upper +Weight: 50 +Armor Level: 1 +Tier: 6 +-------------------------- +Requirement: +Base Level 1 +# +2300242# +A ring that every apprentice mage must wear; it helps store magical energy and reduces fatigue from magic training. +-------------------------- +INT +1 +MaxHP +50 +Adds 3% chance to restore 100 HP for 5 seconds when performing magical attack. +-------------------------- +Type: Accessory +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +None +# +2300282# +Vanargand is a another name of Fenrir: the God Biter, which inspired the design of this helmet. +-------------------------- +All Status +1 +ASPD +5% +Increase physical and magical damage on all class monsters by 3% +-------------------------- +If upgrade level is +5 or higher, +ATK +1 per refine level. +MTK +1 per refine level. +Increase physical and magical damage on all class monsters by 3% +-------------------------- +If upgrade level is +7 or higher, +All Status +1 +ASPD +5% +Increase physical and magical damage on all class monsters by 4% +-------------------------- +If upgrade level is +9 or higher, +Adds 7% chance to transform to Valkyrie for 5 seconds when performing physical and magical attack. + +Valkyrie form: +Increase melee physical damage by 10% +Increase long range physical damage by 10% +MATK +10% +-------------------------- +If upgrade level is +10 +FCT -15% +Adds 3% chance to use Dispell Lv.1 when performing a normal physical attack. +-------------------------- +Type: Headgear +Defense: 30 +Position: Upper +Weight: 100 +Armor Level: 1 +Tier: 6 +-------------------------- +Requirement: +Base Level 50 +# +2300283# +Lightweight armor made from 100% real cotton that is actually quite durable. +-------------------------- +MDEF +1 +-------------------------- +When equipped with Pantie: +AGI +2 +FLEE +5 +-------------------------- +Type: Garment +Defense: 5 +Weight: 15 +Armor Level: 1 +-------------------------- +Requirement: None +# +2300286# +A syringe held in the mouth makes it look dangerous. +-------------------------- +Gains 50 HP each time a monster is killed by melee attacks, ranged attacks, and magic attacks. + +Increases experience gained from defeating monsters by 5%. +-------------------------- +Rental item with a 30-day duration +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2300288# +A hat that resembles the head of a Poison Spore. Be careful not to touch it, you might get poisoned. +-------------------------- +HIT +10 + +Adds a 1% chance of restoring 1% of damage as SP when performing a physical attack. + +Adds a 50% chance of inflicting Poison on the target when performing a physical attack. + +Adds a 30% chance to use Grimtooth Lv.5 on the target when using Envenom. +-------------------------- +If upgrade level is +5 or higher: +Reduce Envenom SP consumtion by 4 + +Increases Grimtooth damage by 10% on poisoned target. + +ATK +2 per upgrade level. +-------------------------- +When equiped with Assassin Class +If upgrade level is +7 or higher: +Increases physical damage against all class monster by 5%. + +Increases Grimtooth damage by 1% per 2 base level. + +Adds an additional 50% chance to inflict Poison on the target when performing a physical attack. + +Adds a 60% chance to use Grimtooth Lv.5 on the target when using Envenom, instead of the previous effect. +-------------------------- +If upgrade level is +9 or higher: +Increases physical damage against all class monster by 5%. + +Increases Grimtooth damage by 10% on poisoned target. + +Adds a 8% chance to using Evenom Lv.10 on the target when performing a normal physical attack. + +Adds a 100% chance to use Grimtooth Lv. 5 on the target when using Envenom, instead of the previous effect. +-------------------------- +Type: Headgear +Defense: 15 +Position: Upper +Weight: 50 +Armor Level: 1 +Tier: 6 +-------------------------- +Requirement: +Base Level 1 +# +2300289# +Accessory for Falcon that can Increases Blizz Beat damage. +-------------------------- +DEX +1 +AGI +1 +-------------------------- +Increase Blitz Beat damage by 4% per level of Steel Crow learned. +Increase 1% chance to cast Blit Beat per level of Blitz Beat learned. +-------------------------- +When euiped with Flying Galapago, +Increase Blitz Beat damage by 2% per level of Steel Crow learned. +-------------------------- +When euiped with Avian Trainer Belt [1], +Blitz Beat has 5% chance to inflict Confusion. +-------------------------- +Type: Accessory (Right) +Weight: 10 +Armor Level: 1 +Defense: 2 +-------------------------- +Requirement: +Base Level 1 +All Job +# +2300298# +Colorful hat that was very popular during 2025, loved by Jejemons. +-------------------------- +INT +3 +STR +2 +Reduces damage taken from Demi-Human monsters by 5% +-------------------------- +If upgrade is +5 or higher, +Increases the recovery effect from Mastela Fruit, [Gift] Mastela Fruit by 20%. +-------------------------- +If upgrade is +7 or higher, +Reduces damage taken from Demi-Human monsters by 5% +Increases the recovery effect from Mastela Fruit, [Gift] Mastela Fruit by 30%. +-------------------------- +If upgrade is +9 or higher, +Increases physical and magical damage against Demi-human monsters by 5% +-------------------------- +Type: Headgear +Defense: 30 +Position: Upper +Weight: 10 +Armor Level: 1 +Tier: 6 +-------------------------- +Requirement: +Base Level 70 +# +2300299# +The pure red hat worn by a group of defenders who fight bravely without fear of bullets. +-------------------------- +MDEF+3 +Reduces damage taken from Demi-human monster by 7% +-------------------------- +If upgrade is +5 or higher, +Reduces damage taken from Demi-human monster by 3% +-------------------------- +If upgrade is +7 or higher, +Adds a 3% chance of casting Cursed Fate Lv.2 when receiving a physical or magical attack. +-------------------------- +Type: Headgear +Defense: 1 +Position: Upper +Weight: 20 +Armor Level: 1 +Tier: 6 +-------------------------- +Requirement: +None +# +2300300# +Toy made of a syringe. The liquid inside seems to be syrup. +-------------------------- +VIT +1 +-------------------------- +Increases HP Recovery of White Slim Potion by 50%. +-------------------------- +Type: Headgear +Defense: 3 +Position: Lower +Weight: 10 +Armor Level: 1 +Refineable: No +-------------------------- +Requirement: None +# +2300301# +A warrior's headband, but why are the colors so sweet and vibrant? +-------------------------- +STR +2 +Increases Triple Attack damage by 10% +Adds a 1% chance of restoring 1% of damage as SP when performing a physical attack. +-------------------------- +If upgrade is +5 or higher, +STR +3 +HIT +1 per upgrade level. +-------------------------- +If upgrade is +7 or higher, +Reduce SP consumption of Chain Combo by 10% +Adds a 50% chance to cast Combo Finish Lv.3 when using Chain Combo. +Adds a 100% chance to cast Call Spirits Lv.5 when using Combo Finish. + +(Adds a 100% chance to cast Call Spirits Lv.5 when using Combo Finish. This effect does not apply in WoE or PvP.) +-------------------------- +If upgrade is +9 or higher, +ASPD +1 +Adds a 100% chance to cast Combo Finish Lv.3 when using Chain Combo, instead of the previous effect. +-------------------------- +Can use Combo Finish without comsuming Spirit Spere if upgrade level is +7 or higher. +-------------------------- +Type: Headgear +Defense: 20 +Position: Upper +Weight: 50 +Armor Level: 1 +Tier: 6 +-------------------------- +Requirement: +None +# +2300302# +An assassin's accessory, carried to signify the intent of the assassin. +-------------------------- +HIT +5 +Adds a 6% chance to using Envenom Lv.5 on the target when performing a normal physical attack. +Reduce SP consumption of Envenom by 4 +-------------------------- +When equipped with Poison Spore Hat [1], +Increases Long Range physical damage by 3% + +If Poison Spore Hat [1] upgrade level is +7 or higher, +Increases Long Range physical damage by 3% + +If Poison Spore Hat [1] upgrade level is +9 or higher, +Increases Long Range physical damage by 4% +-------------------------- +Type: Accessory (Left) +Defense: 5 +Weight: 5 +Armor Level: 1 +-------------------------- +Requirement: None +# +2300311# +A warrior's headband, but why are the colors so sweet and vibrant? +-------------------------- +ATK +5 +Reduce SP consumption of Bash by 4 +Adds a 1% chance of restoring 1% of damage as SP when performing a physical attack. +-------------------------- +If upgrade level is +5 or higher, +ATK +1% per upgrade level. +HIT +1 per upgrade level. +-------------------------- +If upgrade level is +7 or higher, +Increases physical damage against all size monsters by 10%. + +When equipped with Knight Class, +Adds a 15% chance to cast Bowling Bash Lv.10 when using Bash. +-------------------------- +If upgrade level is +9 or higher, +ASPD +1 +Increases Bash damage by 10%. + +When equipped with Knight Class, +Adds a 20% chance to cast Bowling Bash Lv.10 when using Bash, instead of the previous effect. +-------------------------- +Class: Headgear +Position: Upper +Defense: 30 +Weight: 50 +Tier: 6 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +2300312# +A ring that makes a striking sound when shaken. +I feel that the attack has become stronger. +-------------------------- +STR +2 +AGI +1 +Increases Bash damage by 1% for every 25 base level. +Increases Mammonite damage by 1% for every 25 base level. +-------------------------- +Class: Accessory +Defense: 5 +Weight: 5 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +2300313# +A headpiece made to resemble a water lily, lends a sense of quiet and stability to the wearer. +-------------------------- +CRI +5 +-------------------------- +If upgrade level is +5 or higher, +Perfect Dodge +5 +-------------------------- +Class: Headgear +Position: Upper +Defense: 4 +Weight: 60 +Tier: 4 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +2300330# +An armored helmet created from melting down battle worn armors donated by powerful gladiators of times past. Only the most distinguished duelists can wear this helmet. +-------------------------- +VIT +2 +Reduces damage taken from Player by 5%. +-------------------------- +If upgrade is +5 or higher, +MaxHP +50 per upgrade level. +-------------------------- +If upgrade is +7 or higher, +Reduces damage taken from Player by 5%. +Adds a 5% chance to reflect 10% of melee physical damage taken back to the attacker. +-------------------------- +If upgrade is +9 or higher, +Increases physical damage to Demi-human monsters by 1% per 2 upgrade level. +Adds a 10% chance to reflect 20% of melee physical damage taken back to the attacker, instead of the previous effect. +-------------------------- +Class: Headgear +Position: Upper +Defense: 30 +Weight: 50 +Tier: 6 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +2300331# +The pure green hat worn by a group of defenders who fight bravely without fear of bullets. +-------------------------- +MDEF+3 +Reduces damage taken from Demi-human monster by 7% +-------------------------- +If upgrade is +5 or higher, +Reduces damage taken from Demi-human monster by 3% +-------------------------- +If upgrade is +7 or higher, +Adds a 3% chance of casting Morpheus Slumber Lv.1 when receiving a physical or magical attack. +-------------------------- +Class: Headgear +Position: Upper +Defense: 1 +Weight: 20 +Tier: 6 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +2201779# +The Box containing +-------------------------- +-[R] Pet Spirit Guarantee Scroll 1 ea +-Elite Siege Supply Box 5 ea +-Small Mana Potion 15 ea +-------------------------- +Weight: 0 +# +2201780# +The Box containing +-------------------------- +-[Event] HE Bubble Gum 5 ea +-Enriched Elunium 1 ea +-Enriched Oridecon 1 ea +-Sep Enchant Stone 1 ea +-------------------------- +Weight: 0 +# +2201781# +The Box containing +-------------------------- +-Costume Lord of Death 1 ea +-------------------------- +Weight: 0 +# +2300336# +A cast iron mask, radiating with formidable strength. +-------------------------- +STR +3 +Reduces cost of zeny to cast Mammonite by 95%. +Increases Mammonite damage by 1% per level of Axe Mastery. +Increases Mammonite damage by 1% per level of Weapon Research. +Increases Mammonite SP consumption by 5. +-------------------------- +Class: Headgear +Position: Middle +Defense: 0 +Weight: 50 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +2300337# +It radiates an aura of antiquity, brimming with stories long gone. +-------------------------- +ASPD +1% for every sum of 40 base AGI and VIT. +Increases physical damage against all race monster by 1% for every sum of 40 base AGI and VIT. +-------------------------- +Class: Headgear +Position: Lower +Defense: 0 +Weight: 30 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +2300353# +A hairband with PecoPeco wings that lends you a PecoPeco's speed. +-------------------------- +ASPD +5%. +VCT -5% +Increases movement speed. +-------------------------- +If upgrade level is +5 or higher, +FLEE +5 +ATK +5 +MATK +5 +-------------------------- +If upgrade level is +7 or higher, +ASPD +5%. +ATK +5 +MATK +5 +FLEE +5 +-------------------------- +Note: Item can be upgraded. +-------------------------- +Class: Headgear +Position: Upper +Defense: 6 +Weight: 0 +Tier: 6 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +2300354# +A pair of cute black cat ears used by Wickebine. +-------------------------- +FLEE +10 +Crit Dmg +10% +Adds a 5% chance to bypass 60% of magical defense on normal monsters and players for 5 seconds when performing a magical attack. +-------------------------- +If upgrade level is +5 or higher, +ASPD +3% +CRIT +5 +-------------------------- +If upgrade level is +7 or higher, +CRIT +5 +Crit Dmg +5% +-------------------------- +If upgrade level is +9 or higher, +ATK +20 +Crit Dmg +5% +Adds a 3% chance to cast Gloria Lv.5 when performing a physical attack. +-------------------------- +Set Bonus +When equipped with Whikebain's Black Tail: +Crit Dmg +5%. +-------------------------- +When equipped with Whikebain's Black Tail and this item refined to +7 or higher: +CRIT +5 +-------------------------- +When equipped with Whikebain's Black Tail, Sable Cat Eye and Sable Cat Tail and this item refined to +7 or higher: +ATK +5 +ASPD +3% +-------------------------- +When equipped with Whikebain's Black Tail, Sable Cat Eye and Sable Cat Tail and this item refined to +9 or higher: +ASPD +1 +Adds a 3% chance to increase Crit Dmg by 10% for 3 seconds when dealing physical attack. +-------------------------- +Class: Headgear +Position: Upper +Defense: 20 +Weight: 20 +Tier: 6 +-------------------------- +Requires Level: 45 +Usable By: All Jobs +# +2300355# +DEX +2 +INT +2 +Increases Musical Strike damage by 5%. +Adds a 1% chance of restoring 1% of damage as SP when performing a physical attack. +-------------------------- +If upgrade level is +5 or higher, +VCT -1% per upgrade level. +ATK +1% per upgrade level. +-------------------------- +If upgrade level is +7 or higher, +ATK +5 +Increases Musical Strike cooldown by 0.2. +Increases Musical Strike damage by 5%. +Adds a 4% chance to cast Battle Theme Lv.2 when casting Musical Strike. +-------------------------- +If upgrade level is +9 or higher, +ATK +10 +Increases Musical Strike cooldown by 0.1. +Increases Musical Strike damage by 10%. +Adds a 4% chance to cast Battle Theme Lv.5 when casting Musical Strike, instead of the previous effect. +-------------------------- +Class: Headgear +Position: Upper +Defense: 10 +Weight: 50 +Tier: 6 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +2300356# +A mysterious force, carrying the power of foretelling. +-------------------------- +VCT -1% for every sum of 40 base INT and VIT. +Increases magical damage against all race monster by 1% for every sum of 40 base INT and VIT. +-------------------------- +Class: Headgear +Position: Lower +Defense: 0 +Weight: 30 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +2300357# +Wear shoes in addition to shoes. Also available as a single, but the effect is small. +-------------------------- +Increases magical damage on Boss targets by 2%. +-------------------------- +If upgrade level is +7 or higher, +Increases magical damage on Boss targets by an additional 1%. +-------------------------- +If upgrade level is +9 or higher, +Increases magical damage on Boss targets by an additional 2%. +-------------------------- +When equipped with Release Shadow Shield, +Increases magical damage on Boss targets by 5%. +-------------------------- +Class: Shadow Shoes +Weight: 0 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +2300358# +A small shield that can be mounted on the arm. Also available as a single, but the effect is small. +-------------------------- +Reduces damage taken from Boss enemies by 1%. +-------------------------- +If upgrade level is +7 or higher, +Reduces damage taken from Boss enemies by an additional 1%. +-------------------------- +If upgrade level is +9 or higher, +Reduces damage taken from Boss enemies by an additional 1%. +-------------------------- +When equipped with Release Shadow Shoes, +Increases magical damage on Boss targets by 5%. +-------------------------- +Class: Shadow Shield +Weight: 0 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +2300362# +The fabled witch hunter’s cherished hat. +-------------------------- +MDEF +1 +Reduces damage taken from Player by 5%. +-------------------------- +If upgrade level is +5 or higher, +MDEF +2 +MaxHP +50 per upgrade level. +-------------------------- +If upgrade level is +7 or higher, +Reduces damage taken from Player by 5%. +Adds a 3% chance to cast Magic Mirror Lv.6 when receiving magical damage. +-------------------------- +If upgrade level is +9 or higher, +Increases physical damage against Demi-Human monsters by 1% per 2 upgrade levels. +Adds a 5% chance to cast Magic Mirror Lv.6 when receiving magical damage, instead of the previous effect. +-------------------------- +Type: Headgear +Defense: 30 +Position: Upper +Weight: 50 +Armor Level: 1 +Tier: 6 +-------------------------- +Requirement: +Base Level 1 +# +2300372# +The pure brown hat worn by a group of defenders who fight bravely without fear of bullets. +-------------------------- +MDEF+3 +Reduces damage taken from Demi-human monster by 7% +-------------------------- +If upgrade is +5 or higher, +Reduces damage taken from Demi-human monster by 3% +-------------------------- +If upgrade is +7 or higher, +Adds a 3% chance of casting Medusa's Stare Lv.1 when receiving a physical or magical attack. +-------------------------- +Class: Headgear +Position: Upper +Defense: 1 +Weight: 20 +Tier: 6 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +2300373# +Enhanced version of Zoro Mask from the Midgard Crowd Control event. +-------------------------- +ATK +5 +Increases physical damage against Demi-Human race monster by 5%. +-------------------------- +Type: Headgear +Defense: 2 +Position: Middle +Weight: 10 +Armor Level: 1 +-------------------------- +Requires Level: 1 +Usable By: All Jobs +# +2300374# +A simple, two-handed sword adorned with a cross shaped hilt. +-------------------------- +If upgrade level is +5 or higher: +ATK +2 per upgrade level. + +If upgrade level is +7 or higher: +ASPD +1% per upgrade level. + +If upgrade level is +9 or higher: +Increases physical damage against all class monster by 5%. +-------------------------- +Class: Two-handed Sword +Attack Strength: 180 +Weight: 250 +Weapon Level: 3 +Required Level: 33 +Usable By: Knight, Crusader +# +2300375# +A heavy one-handed cavalry sword with a slightly curved blade. +-------------------------- +If upgrade level is +5 or higher: +ATK +2 per upgrade level. + +If upgrade level is +7 or higher: +ASPD +1% per upgrade level. + +If upgrade level is +9 or higher: +Increases physical damage against all class monster by 5%. +-------------------------- +Class: Sword +Attack Strength: 115 +Weight: 100 +Weapon Level: 3 +Required Level: 27 +Usable By: Swordsman, Merchant, Thief +# +2300376# +A triple pronged spear that can also be used for fishing. +-------------------------- +If upgrade level is +5 or higher: +ATK +2 per upgrade level. + +If upgrade level is +7 or higher: +ASPD +1% per upgrade level. + +If upgrade level is +9 or higher: +Increases physical damage against all class monster by 5%. +-------------------------- +Class: Spear +Attack Strength: 150 +Weight: 120 +Weapon Level: 3 +Required Level: 33 +Usable By: Swordman +# +2300377# +A long spear that is generally issued to foot soldiers. +-------------------------- +If upgrade level is +5 or higher: +ATK +2 per upgrade level. + +If upgrade level is +7 or higher: +ASPD +1% per upgrade level. + +If upgrade level is +9 or higher: +Increases physical damage against all class monster by 5%. +-------------------------- +Class: Spear +Attack Strength: 60 +Weight: 100 +Weapon Level: 1 +Required Level: 4 +Usable By: Swordman +# +2300378# +A two-handed, double bladed axe. +-------------------------- +If upgrade level is +5 or higher: +ATK +2 per upgrade level. + +If upgrade level is +7 or higher: +ASPD +1% per upgrade level. + +If upgrade level is +9 or higher: +Increases physical damage against all class monster by 5%. +-------------------------- +Class: Axe +Attack Strength: 185 +Weight: 250 +Weapon Level: 3 +Required Level: 30 +Usable By: Swordman, Merchant +# +2300379# +An axe crafted by Orcish smiths for Orcish warriors. +-------------------------- +If upgrade level is +5 or higher: +ATK +2 per upgrade level. + +If upgrade level is +7 or higher: +ASPD +1% per upgrade level. + +If upgrade level is +9 or higher: +Increases physical damage against all class monster by 5%. +-------------------------- +Class: Axe +Attack Strength: 75 +Weight: 150 +Weapon Level: 3 +Required Level: 3 +Usable By: Novice, Swordman, Merchant, Assassin +# +2300380# +A high quality, two-handed staff that amplifies psychic power. +-------------------------- +INT +5 +AGI +2 +MATK +200 +-------------------------- +If upgrade level is +5 or higher: +MATK +2 per upgrade level. + +If upgrade level is +7 or higher: +VCT -1% per upgrade level. + +If upgrade level is +9 or higher: +Increases magical damage against all class monster by 5%. +-------------------------- +Class: Two-Handed Staff +Attack Strength: 25 +Weight: 140 +Weapon Level: 3 +Required Level: 73 +Usable By: Mage, Soul Linker +# +2300381# +Since evil spirits possess this wand of human bone, its suffocatingly accursed aura can be sensed by those who wield it. +-------------------------- +INT +4 +MATK +110 +-------------------------- +If upgrade level is +5 or higher: +MATK +2 per upgrade level. + +If upgrade level is +7 or higher: +VCT -1% per upgrade level. + +If upgrade level is +9 or higher: +Increases magical damage against all class monster by 5%. +-------------------------- +Class: Rod +Attack Strength: 40 +Weight: 70 +Property: Undead +Weapon Level: 3 +Required Level: 24 +Usable By: Mage, Acolyte, Soul Linker +# +2300382# +A blow from this hefty mace can cause someone to black out. Each strike has a 10% chance to inflict the Stun effect. +-------------------------- +Chance: 10% to inflict Stun on physical attack. +-------------------------- +If upgrade level is +5 or higher: +ATK +2 per upgrade level. + +If upgrade level is +7 or higher: +ASPD +1% per upgrade level. + +If upgrade level is +9 or higher: +Increases physical damage against all class monster by 5%. +-------------------------- +Class: Mace +Attack Strength: 140 +Weight: 200 +Weapon Level: 3 +Required Level: 27 +Usable By: Acolyte +# +2300383# +A book containing a compilation of ancient and sacred writings. +-------------------------- +INT +2 +-------------------------- +If upgrade level is +5 or higher: +MATK +2 per upgrade level. + +If upgrade level is +7 or higher: +VCT -1% per upgrade level. + +If upgrade level is +9 or higher: +Increases magical damage against all class monster by 5%. +-------------------------- +Class: Book +Attack Strength: 115 +Weight: 100 +Weapon Level: 3 +Required Level: 27 +Usable By: Priest, Sage, Taekwon Master +# +2300384# +Claws shaped like human fingers with long, sharp nails. +-------------------------- +If upgrade level is +5 or higher: +ATK +2 per upgrade level. + +If upgrade level is +7 or higher: +ASPD +1% per upgrade level. + +If upgrade level is +9 or higher: +Increases physical damage against all class monster by 5%. +-------------------------- +Class: Claw +Attack Strength: 97 +Weight: 50 +Weapon Level: 3 +Required Level: 24 +Usable By: Priest, Monk +# +2300385# +A bow made famous by its use by Goongso, a legendary Korean archer that used this bow's power to smite his enemies. +-------------------------- +If upgrade level is +5 or higher: +ATK +2 per upgrade level. + +If upgrade level is +7 or higher: +ASPD +1% per upgrade level. + +If upgrade level is +9 or higher: +Increases physical damage against all class monster by 5%. +-------------------------- +Class: Bow +Attack Strength: 100 +Weight: 110 +Weapon Level: 3 +Required Level: 33 +Usable By: Archer; Thief, Rogue +# +2300386# +A six-stringed musical instrument that is played by plucking the strings with fingers or a pick. +-------------------------- +If upgrade level is +5 or higher: +ATK +2 per upgrade level. + +If upgrade level is +7 or higher: +ASPD +1% per upgrade level. + +If upgrade level is +9 or higher: +Increases physical damage against all class monster by 5%. +-------------------------- +Class: Musical Instrument +Attack Strength: 142 +Weight: 90 +Weapon Level: 3 +Required Level: 27 +Usable By: Bard +# +2300387# +A whip with a spiked ball attached at the end. +-------------------------- +If upgrade level is +5 or higher: +ATK +2 per upgrade level. + +If upgrade level is +7 or higher: +ASPD +1% per upgrade level. + +If upgrade level is +9 or higher: +Increases physical damage against all class monster by 5%. +-------------------------- +Class: Whip +Attack Strength: 135 +Weight: 90 +Weapon Level: 3 +Required Level: 30 +Usable By: Dancer +# +2300388# +A set of daggers in which the blades are positioned above the knuckles for use in close range combat. +-------------------------- +DEX +1 +-------------------------- +If upgrade level is +5 or higher: +ATK +2 per upgrade level. + +If upgrade level is +7 or higher: +ASPD +1% per upgrade level. + +If upgrade level is +9 or higher: +Increases physical damage against all class monster by 5%. +-------------------------- +Class: Katar +Attack Strength: 148 +Weight: 120 +Weapon Level: 3 +Required Level: 33 +Usable By: Assassin +# +2300389# +A lethal knife made of a special metal that can easily cut straight into the heart of an enemy. +The blade cannot be damaged in battle. +-------------------------- +Indestructible in battle +-------------------------- +If upgrade level is +5 or higher: +ATK +2 per upgrade level. + +If upgrade level is +7 or higher: +ASPD +1% per upgrade level. + +If upgrade level is +9 or higher: +Increases physical damage against all class monster by 5%. +-------------------------- +Class: Dagger +Attack Strength: 118 +Weight: 80 +Weapon Level: 3 +Required Level: 24 +Usable By: Swordsman, Magician, Archer, Merchant, Thief, Soul Linker and Ninja +# +2300390# +A winged hairband worn by priests who fought demons. +Increases the attack and defense power against specific element. +-------------------------- +INT +2 +AGI +2 +Reduces Holy Light VCT by 20%. +Adds an 8% chance to autocast Holy Light Lv.1 when performing a normal physical attack. +-------------------------- +Refine Level +5: +VCT -1% per refine level. +MATK +1% per refine level. +-------------------------- +When equipped by Priest: +Refine Level +7: +Reduces Holy Light VCT by 30%. +Increases damage of Holy Light by 1% per Base Level (up to 100%). +Adds a 15% chance to autocast Holy Light Lv.1 when performing a normal physical attack. +-------------------------- +When equipped by Priest: +Refine Level +9: +CRIT +20 +Adds a 25% chance to autocast Holy Light Lv.1 when performing a normal physical attack. +-------------------------- +Type: Headgear +Defense: 20 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 1 +All Jobs +# +2300404# +Hood radiating with endless energy. +-------------------------- +INT +1 +-------------------------- +If upgrade level is +5 or higher,: +VCT -1% +MATK +2% +-------------------------- +If upgrade level is +7 or higher,: +VCT -2% +MATK +3% +-------------------------- +Type: Garment +Defense: 4 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +All Jobs +# +2300405# +Muffler radiating with endless energy. +-------------------------- +STR +1 +-------------------------- +If upgrade level is +5 or higher,: +ASPD +1% +ATK +2% +-------------------------- +If upgrade level is +7 or higher,: +ASPD +1% +ATK +3% +-------------------------- +Type: Garment +Defense: 8 +Weight: 40 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +All Jobs +# +2300406# +Manteau radiating with endless energy. +-------------------------- +VIT +1 +-------------------------- +If upgrade level is +5 or higher,: +DEF+3, MDEF+1 +MHP +2%, MHP +150 +-------------------------- +If upgrade level is +7 or higher,: +DEF+6, MDEF+1 +MHP +3%, MHP +250 +-------------------------- +Type: Garment +Defense: 13 +Weight: 60 +Armor Level: 1 +-------------------------- +Requirement: +Base Level 70 +All Jobs +# +2300407# +This cute animated Boa will keep you company as you meander around on your adventures. +-------------------------- +Enables Double Attack Lv.5. +-------------------------- +If upgrade level is +5 or higher, +ASPD +1% per 2 upgrade level. +Increases Melee physical damage by 1% per 2 upgrade level. +Increases Range physical damage by 1% per 2 upgrade level. +-------------------------- +If upgrade level is +7 or higher, +Increases Melee physical damage by 5%. +Increases Range physical damage by 5%. +Enables Double Attack Lv.7. +-------------------------- +If upgrade level is +9 or higher, +ATK +20 +ASPD +1 +Adds a 6% chance to cast Lex Aeterna Lv.1 when performing a normal physical attack. +-------------------------- +If upgrade level is +10 or higher, +Enables Double Attack Lv.10. +-------------------------- +Type: Headgear +Defense: 20 +Position: Upper +Weight: 20 +Armor Level: 1 +Tier: 6 +-------------------------- +Requires Level: 45 +Usable By: All Jobs +# +2300420# +Though cacti bear no poison, this one is unlike any other. Drops of strange liquid hang from its thorns. Best keep your distance, adventurer. +-------------------------- +INT +2 +DEX +2 +Reduces Acid Terror VCT by 15%. +Adds a 1% chance of restoring 1% of damage as SP when performing a physical attack. + +If upgrade level is +5 or higher, +Global Cooldown -1% per upgrade level. +ATK +1% per upgrade level. + +If upgrade level is +7 or higher, +Reduces Acid Terror VCT by 15%. +Increases Acid Terror damage by 5% +Adds a 50% chance to not consume Acid Bottle when casting Acid Terror. + +If upgrade level is +9 or higher, +FCT -0.1 second. +Increases Acid Terror damage by 5%. +Adds a 80% chance to not consume Acid Bottle when casting Acid Terror, instead of the previous effect. +-------------------------- +Class: Headgear +Position: Upper +Defense: 20 +Weight: 50 +Tier: 6 +Requires Level: 1 +Usable By: All Jobs +# +2300421# +The Eye of Loki, when your eyes meet it, a seductive force seems to draw you in. +-------------------------- +ATK +10 +MATK +10 + +If sum of base STR and DEX is 100 or higher, +HIT +7 +Increase physical damage against all race monster by 3% +Ignore Defense against all race monster by 10% + +If sum of base AGI and LUK is 100 or higher, +CRIT +7 +Crit Dmg +3% +Ignore Defense against all race monster by 10% + +If sum of base INT and VIT is 100 or higher, +VCT -7% +Increase magical damage against all race monster by 3% +Ignore Magic Defense against all race monster by 10% +-------------------------- +Class: Headgear +Position: Middle +Defense: 1 +Weight: 10 +Requires Level: 50 +Usable By: All Jobs +# +2300422# +The cloak of the fallen valkyrie radiates a sinister aura. A single glance feels as though the darkness itself is devouring your very soul. +-------------------------- +MaxHP +100 +Hit Physical damage +4% +Crit Dmg +4% +Increases all elemental magic damage by 4% + +When equipped with Violet Valkyrie Helm [1], +If upgrade level is +7 or higher, +ATK +10 +MATK +10 + +If upgrade level is +9 or higher, +Valkyrie form: +Adds a 5% chance to cast Holy Attack Lv.3 when performing a physical attack. + +Adds a 5% chance to cast Dark Strike Lv.10 when performing a magical attack that do not target the ground. +-------------------------- +Class: Headgear +Position: Lower +Defense: 5 +Weight: 5 +Requires Level: 1 +Usable By: All Jobs +# +2300423# +The war helm of the Flame Demon King. Wearing it grants you his blazing power. +But beware, its heat is so intense that some have been burned to ashes. +-------------------------- +All Status +1 +Increases Fire property damage by 1% per upgrade level. +Increases physical and magical damage against Normal monsters by 10%. +-------------------------- +If upgrade level is +5 or higher: +ATK +1 per upgrade level. +MATK +1 per upgrade level. +-------------------------- +If upgrade level is +7 or higher: +ASPD +5% +Variable Cast Time -5% +Increases physical and magical damage against Boss monsters by 10%. +Adds a 6% chance to cast Meteor Storm Lv.5 when performing a normal physical attack. +-------------------------- +If upgrade level is +9 or higher: +Adds a 7% chance to transform into Ifrit for 5 seconds when performing a physical or magical attack. + +Ifrit Form: +CRIT +10 +Increases Meteor Storm damage by 10%. +Increases physical and magical damage against Boss monsters by 10%. +-------------------------- +If upgrade level is +10: +Fixed Cast Time -15% +Adds a 6% chance to cast Meteor Storm Lv.8 when performing a normal physical attack, instead of the previous effect. +-------------------------- +Class: Headgear +Position: Upper +Defense: 30 +Weight: 100 +Tier: 6 +Required Level: 50 +Usable By: All Jobs +# +2300440# +The book once carried by the pirate captain. It is shrouded in the spirits of those who perished at sea. +-------------------------- +Every 30 base levels: +Flee +2. +Increases physical and magical damage against all size monsters by 1%. +-------------------------- +When equipped with Queen Anne's Revenge [1]: +Enables the use of Power Thrust Lv.1. +ATK +1 per refine level. +-------------------------- +If Queen Anne's Revenge [1] refine level is +7 or higher: +Enables the use of Power Thrust Lv.3. +-------------------------- +If Queen Anne's Revenge [1] refine level is +9 or higher: +Enables the use of Power Thrust Lv.5. +-------------------------- +Type: Headgear +Position: Lower +Defense: 0 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement: Base Level 1 +Usable By: All Jobs +# +2300441# +A mischievous mini succubus resting on your head. +-------------------------- +MaxHP +300 +MaxSP +50 +-------------------------- +If refine level is +5 or higher: +Recovers HP +20 when monsters are killed using a physical or magical attack. +-------------------------- +If refine level is +7 or higher: +Recovers an additional HP +40 when monsters are killed using a physical or magical attack. +-------------------------- +Type: Headgear +Position: Upper +Defense: 0 +Weight: 30 +Armor Level: 1 +Tier: 5 +-------------------------- +Requirement: Base Level 50 +Usable By: All Jobs +# +2300520# +This cute animated Boa will keep you company as you meander around on your adventures. +-------------------------- +This item has no effect in WOE and PVP. +Enables Double Attack Lv.5. +Enables Double Attack Lv.5. + +if refine to +7 or higher, Aspd +5%. + +if refine to +9 or higher, Enables Double Attack Lv.8. +-------------------------- +Collection +ATK +10. +-------------------------- +Grade Bonus +[Grade D] +ATK +5 +[Grade C] +adds an additional ATK +10. +[Grade B] +if refine to +9 or higher, Enables Double Attack Lv.10 +[Grade A] +Increase physical damage to all size monsters by 3%. +-------------------------- +Type: Headgear +Position: Upper +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement Level: 1 +Usable By: All Jobs +# +2300521# +A hairband with PecoPeco wings that lends you a PecoPeco's speed. +-------------------------- +This item has no effect in WOE and PVP. +ASPD +5%. +Variable Casting Time -5%. +Increases movement speed. + +If upgrade level is +5 or higher, ATK/MATK/FLEE +5. + +If upgrade level is +7 or higher, ATK/MATK/FLEE +5 and ASPD +5% +-------------------------- +Collection +MaxHP +100. +-------------------------- +Grade Bonus +[Grade D] +ATK +5 +[Grade C] +adds an additional ATK +10. +[Grade B] +if refine to +7 or higher, Increases movement speed 5% +[Grade A] +Increase physical damage to all size monsters by 3%. +-------------------------- +Type: Headgear +Position: Upper +Defense: 6 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement Level: 1 +Usable By: All Jobs +# +2300522# +A pair of cute black cat ears used by Wickebine. +-------------------------- +This item has no effect in WOE and PVP. +Flee +10 +Critical damage +7%. +Adds a 5% chance to bypass 25% of magical defense on normal monsters and players for 5 seconds when performing a magical attack. + +If upgrade level is +7 or higher, ASPD +3% and Variable Cast Time -5%. + +If upgrade level is +9 or higher, Critical damage +5% and adds an additional 5 seconds to the duration of the triggered effect that bypass 25% of magical defense. +-------------------------- +Collection +MATK +10. +-------------------------- +Grade Bonus +[Grade D] +ATK/MATK +4 +[Grade C] +Critical damage +5%. +[Grade B] +adds an additional 5 seconds to the duration of the triggered effect that bypass 25% of magical defense. +[Grade A] +Increase physical/magical damage against all Size monsters by 3%. +-------------------------- +Type: Headgear +Position: Upper +Defense: 4 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement Level: 45 +Usable By: All Jobs +# +2300523# +Hip hip hooray! A Poring Beret! +-------------------------- +This item has no effect in WOE and PVP. +Experienced gained +3%. + +Every refine level, MaxHP +50, MaxSP +5. +Every 2 refine level, ATK +5, MATK +5. + +If upgrade level is +7 or higher, Experienced gained +1%, Item drop rate +1%. + +If upgrade level is +9 or higher, Experienced gained +2%, Item drop rate +2%. +-------------------------- +Collection +Max Weight +100 +-------------------------- +Grade Bonus +[Grade D] +HIT +10. +[Grade C] +Experienced gained +1%, Item drop rate +1%. +[Grade B] +MaxHP +250, MaxSP +25. +[Grade A] +Increase physical/magical damage against all Size monsters by 3%. +-------------------------- +Type: Headgear +Position: Upper +Defense: 10 +Weight: 30 +Armor Level: 1 +-------------------------- +Requirement Level: 1 +Usable By: All Jobs +# +2300524# +An ancient knight’s helmet, lost for ages, imbued with a terrifying power. +-------------------------- +This item has no effect in WOE and PVP. +ATK +5 +Reduces SP consumption of Bash by 4 +Adds a 1% chance of restoring 1% of damage as SP when performing a physical attack. + +If upgrade level is +5 or higher, ATK + 3%, HIT + 5 + +If upgrade level is +7 or higher, when equipped with Knight Class: adds a 25% chance to cast Bowling Bash Lv.10 when using Bash. + +If upgrade level is +9 or higher, increases physical damage against all Size monster by 5%. + +When equipped with Knight Class: adds a 35% chance to cast Bowling Bash Lv.10 when using Bash, instead of the previous effect. +-------------------------- +Collection +Increases Pierce damage by 10% +-------------------------- +Grade Bonus +[Grade D] +Increases Bowling Bash damage by 5% +[Grade C] +Reduces SP consumption of Bash by 3 +[Grade B] +ncreases Bowling Bash damage by 5% +[Grade A] +Increase physical damage against all Size monsters by 3%. +-------------------------- +Type: Headgear +Position: Upper +Defense: 30 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement Level: 1 +Usable By: All Jobs +# +2300525# +A helm that once belonged to an ancient giant. +-------------------------- +This item has no effect in WOE and PVP. +ATK +5 +Reduces cost of zeny to cast Mammonite by 95% +Adds a 1% chance of restoring 1% of damage as SP when performing a physical attack. + +If upgrade level is +5 or higher, ATK + 3%, HIT + 5. + +If upgrade level is +7 or higher, when equipped with Blacksmith Class: adds a 25% chance to cast Hammer Fall Lv.3 when using Mammonite. + +If upgrade level is +9 or higher, increases physical damage against all Size monster by 5%. + +When equipped with Blacksmith Class: adds a 35% chance to cast Hammer Fall Lv.3 when using Mammonite, instead of the previous effect. +-------------------------- +Collection +Increases Tomahawk Throwing damage by 10% +-------------------------- +Grade Bonus +[Grade D] +Increases Mammonite damage by 5% +[Grade C] +HIT +5. +[Grade B] +Increases Mammonite damage by 5% +[Grade A] +Increase physical damage against all Size monsters by 3%. +-------------------------- +Type: Headgear +Position: Upper +Defense: 30 +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement Level: 1 +Usable By: All Jobs +# +2300526# +Sunglasses made of Poring shaped lenses. +Must have if wanting everyones attention. +-------------------------- +Experienced gained +1%. + +Every refine level, MaxHP +15. +When equip with Poring Beret, +If upgrade of Poring Sunglasses +7 or higher, Experienced gained +1%, Item drop rate +1%. +-------------------------- +Collection +MaxHP +50 +-------------------------- +Grade Bonus +[Grade D] +ATK +5. +[Grade C] +Experienced gained +1%. +[Grade B] +MaxHP +150, MaxSP +15. +[Grade A] +Increase physical/magical damage against all Size monsters by 1%. +-------------------------- +Type: Headgear +Position: Middle +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement Level: 1 +Usable By: All Jobs +# +2300527# +A fish that can bite inside your mouth. It smells bad, but a special process won't let it rot. +-------------------------- +When the wearer kills a monster, they will get a low chance to drop Fresh Fish. +Increases 25% of recover rate of Fresh Fish. +Every refine level, Increases 3% of recover rate of Fresh Fish. +-------------------------- +Collection +FLEE +3. +-------------------------- +Grade Bonus +[Grade D] +Increases 15% of recover rate of Fresh Fish. +[Grade C] +FLEE +3. +[Grade B] +Add an additional increases 30% of recover rate of Fresh Fish. +[Grade A] +ATK +5. +-------------------------- +Type: Headgear +Position: Lower +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement Level: 30 +Usable By: All Jobs +# +2300528# +A golden mask rumored to have been worn by a goddess. +-------------------------- +HIT + 15, STR + 2 +-------------------------- +Collection +HIT +3. +-------------------------- +Grade Bonus +[Grade D] +ATK +5. +[Grade C] +HIT +5. +[Grade B] +STR +2. +[Grade A] +Increase physical/magical damage against all Size monsters by 1%. +-------------------------- +Type: Headgear +Position: Lower +Defense: 0 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement Level: 1 +Usable By: All Jobs +# +2300529# +A hat made after pretty mocking bird. +-------------------------- +Adds a 1% chance of restoring 1% of damage as HP when performing a physical attack. +-------------------------- +Collection +MaxSP +10. +-------------------------- +Grade Bonus +[Grade D] +SP Recovery +5%. +[Grade C] +Add an additional SP Recovery +5%. +[Grade B] +MaxHP +200 +[Grade A] +ASPD +1 +-------------------------- +Type: Headgear +Position: Lower +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement Level: 1 +Usable By: All Jobs +# +2300530# +The pure white hat worn by a group of defenders who fight bravely without fear of bullets. +-------------------------- +MDEF +3 +Reduces damage taken from Demi-human monster by 7% +-------------------------- +Collection +MATK +5. +-------------------------- +Grade Bonus +[Grade D] +MDEF +2 +[Grade C] +DEF +20 +[Grade B] +Add an additional reduces damage taken from Demi-human monster by 2%. +[Grade A] +if upgrade is +7 or higher, Trigger effect casting Critical Wound Lv.2 Instead. +-------------------------- +Type: Headgear +Position: Upper +Defense: 1 +Weight: 20 +Armor Level: 1 +-------------------------- +Requirement Level: 1 +Usable By: All Jobs +# +2300531# +Rock fashion face mask. +-------------------------- +VIT + 2. +Reduces damage taken from Demi-Huma monsters by 1%. +If upgrade level is +7 or higher, Increases physical and magical damage to Demi-Human monsters by 1%. +-------------------------- +Collection +ATK +5. +-------------------------- +Grade Bonus +[Grade D] +DEF +5. +[Grade C] +Increases physical and magical damage to Demi-Human monsters by 1%. +[Grade B] +Max Weight +100. +[Grade A] +Reduces damage taken from Demi-Huma monsters by 1%. +-------------------------- +Type: Headgear +Position: Lower +Defense: 0 +Weight: 10 +Armor Level: 1 +-------------------------- +Requirement Level: 1 +Usable By: All Jobs +# +2300532# +A wing hairband for a priest who is fighting with evils. +This item has no effect in WoE and PvP. +-------------------------- +MATK +5 +Reduces Fixed Casting Time of Holy Light by 0.1 sec. +VCT -10%. +-------------------------- +If upgrade level is +5 or higher: +Increases Holy Light damage by 25%. +-------------------------- +If upgrade level is +7 or higher: +Has 22% chance to auto-cast Holy Light Lv.1 when dealing physical damage. +-------------------------- +If upgrade level is +9 or higher: +Increases Holy Light damage by 50%. +Has 35% chance to auto-cast Holy Light Lv.1 when dealing physical damage, instead of the previous effect. +-------------------------- +Collection +Increases Magnus Exorcismus damage by 10%. +-------------------------- +Grade Bonus +Grade D Increases Holy Light damage by 50%. +Grade C Enable Soul Attack Lv.1 (Basic attacks become Long-ranged attacks). +Grade B Increases Holy Light damage by 75%. +Grade A Increases magical damage against all Size monsters by 3%. +-------------------------- +Type: Headgear +Defense: 30 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement Level: 1 +Usable By: All Jobs +# +2300533# +Look just like Galapago the penguin. +This item has no effect in WoE and PvP. +-------------------------- +ATK +5 +ASPD +1 +-------------------------- +If upgrade level is +5 or higher: +Increases Blitz Beat damage by 25%. +-------------------------- +If upgrade level is +7 or higher: +Has 6% chance to auto-cast Blitz Beat Lv.5 when dealing physical damage. +-------------------------- +If upgrade level is +9 or higher: +Increases Blitz Beat damage by 45%. +Has 9% chance to auto-cast Blitz Beat Lv.5 when dealing physical damage, instead of the previous effect. +-------------------------- +[Collection] +Increases Arrow Shower damage by 10%. +-------------------------- +[Grade Bonus] +[Grade D] Increases Blitz Beat damage by 30%. +[Grade C] CRI +10 +[Grade B] If upgrade level is +9 or higher, increases Blitz Beat damage by 45%. +Has 15% chance to auto-cast Blitz Beat Lv.5 when dealing physical damage, instead of the previous effect. +[Grade A] Increases physical damage against all Size monsters by 3%. +-------------------------- +Type: Headgear +Defense: 30 +Position: Upper +Weight: 50 +Armor Level: 1 +-------------------------- +Requirement Level: 1 +Usable By: All Jobs +# +2300534# +A pickaxe forged from iron. It works efficiently inside the NOVA Landstone Instant. +-------------------------- +Type: Mining Tool +Weight: 0 +-------------------------- +Requirement Level: 1 +Usable By: All Jobs +# +2300535# +A pickaxe forged from steel. It works efficiently inside the NOVA Landstone Instant. +-------------------------- +Type: Mining Tool +Weight: 0 +-------------------------- +Requirement Level: 1 +Usable By: All Jobs +# +2300536# +A pickaxe forged from crystal. It works efficiently inside the NOVA Landstone Instant. +-------------------------- +Type: Mining Tool +Weight: 0 +-------------------------- +Requirement Level: 1 +Usable By: All Jobs +# +2300537# +A pickaxe forged from aetherium. It works efficiently inside the NOVA Landstone Instant. +-------------------------- +Type: Mining Tool +Weight: 0 +-------------------------- +Requirement Level: 1 +Usable By: All Jobs +# +2400000# +Coins used to exchange for items in the +1st Anniversary event of Ragnarok Landverse +-------------------------- +item will be removed date 29-10-2024 +-------------------------- +Weight: 0 +# +2400001# +Items used to exchange for rewards in the +1st Anniversary event of Ragnarok Landverse +-------------------------- +item will be removed date 29-10-2024 +-------------------------- +Weight: 0 +# +2400002# +Tickets used to exchange for items in the +1st Anniversary event of Ragnarok Landverse +-------------------------- +item will be removed date 29-10-2024 +-------------------------- +Weight: 0 +# +2300424# +This cute Sloth must think you look like a tree. +At least it warms the top of your head. +-------------------------- +AGI +2 +Adds a 5% chance to cast Sonic Blow Lv.5 when performing a melee physical attack. +-------------------------- +If upgrade level is +5 or higher: +Increases melee physical damage by 1% per 2 upgrade level. +HIT +1 per upgrade level. +-------------------------- +If upgrade level is +7 or higher: +Increases melee physical damage by 5%. +Adds a 5% chance to cast Sonic Blow Lv.6 when performing a melee physical attack. +-------------------------- +If upgrade level is +9 or higher: +ATK +20 +ASPD +1 +Adds a 7% chance to cast Sonic Blow Lv.7 when performing a melee physical attack. +-------------------------- +If upgrade level is +10 or higher: +Adds a 10% chance to cast Sonic Blow Lv.8 when performing a melee physical attack. +-------------------------- +Class: Headgear +Position: Upper +Defense: 3 +Weight: 80 +Tier: 6 +Required Level: 1 +Usable By: All Jobs +# +2300430# +Everyone loves these adorable balloons! +-------------------------- +When performing a physical attack, there is a chance to cast Blessing Lv.5 or Increase Agility Lv.5 on the wearer. +-------------------------- +Rental item with a 30-day duration. +-------------------------- +Type: Headgear +Defense: 0 +Position: Lower +Weight: 0 +Armor Level: 1 +-------------------------- +Requirement: None +Base Level: 1 +# +2300431# +A beanie that appears to be made of ordinary yarn, yet beneath its humble look lies a structure forged from copper. +-------------------------- +DEF +10 +Reduces damage taken from Demi-Human monsters by 5%. +-------------------------- +If refine level is +5 or higher: +DEF +5 per refine level. +Adds a 3% chance to cast Quagmire Lv.1 when receiving physical or magical damage. +-------------------------- +If refine level is +7 or higher: +Reduces damage taken from Demi-Human monsters by 5%. +Adds a 6% chance to cast Quagmire Lv.3 when receiving physical or magical damage. +-------------------------- +If refine level is +9 or higher: +Reduces damage taken from Demi-Human monsters by 5%. +Adds a 10% chance to cast Quagmire Lv.5 when receiving physical or magical damage. +-------------------------- +Type: Headgear +Defense: 30 +Position: Upper +Weight: 50 +Armor Level: 1 +Tier: 6 +-------------------------- +Requirement: Base Level 1 +Usable By: All Jobs +# +2300432# +The pure brown hat worn by a group of defenders who fight bravely without fear of bullets. +-------------------------- +MDEF +3 +Reduces damage taken from Demi-Human monsters by 7%. +-------------------------- +If refine level is +5 or higher: +Reduces damage taken from Demi-Human monsters by an additional 3%. +-------------------------- +If refine level is +7 or higher: +Adds a 3% chance of casting Confusion Rule Lv.2 when receiving physical or magical damage. +-------------------------- +Type: Headgear +Position: Upper +Defense: 1 +Weight: 20 +Tier: 6 +-------------------------- +Requirement: Base Level 1 +Usable By: All Jobs +# +2400003# +A dessert made to commemorate the harvest festival. The shapes of everyone sitting around the campfire and sharing food are depicted as snacks +-------------------------- +Weight: 0 +Cannot be traded. +(The item will be removed on October 2nd after the weekly maintenance.) +# +2400004# +It is baked with a fragrant, appetizing honey scent +-------------------------- +Weight: 0 +Cannot be traded. +(The item will be removed on October 2nd after the weekly maintenance.) +# +2400005# +A dessert made as a gift for the Chuseok festival. +-------------------------- +Weight: 0 +Cannot be traded. +(The item will be removed on October 2nd after the weekly maintenance.) +# +2400006# +Raw potato +-------------------------- +Weight: 0 +Cannot be traded. +(The item will be removed on October 2nd after the weekly maintenance.) +# +2400007# +Plain flour, suitable for use in cooking +-------------------------- +Weight: 0 +Cannot be traded. +(The item will be removed on October 2nd after the weekly maintenance.) +# +2400008# +High-quality twig. Can be used as fuel. +-------------------------- +Weight: 0 +Cannot be traded. +(The item will be removed on October 2nd after the weekly maintenance.) +# +2400009# +The box contains a meticulously tailored Hanbok set +-------------------------- +Weight: 0 +Cannot be traded. +(The item will be removed on October 2nd after the weekly maintenance.) +# +2400010# +ASPD +1% +# +2400011# +ASPD +2% +# +2400012# +ASPD +3% +# +2400013# +ATK +3 +# +2400014# +ATK +5 +# +2400015# +ATK +7 +# +2400016# +ATK +10 +# +2400017# +A special coin used for voting on what you desire. +Who knows? Those desires might just come true. +-------------------------- +Weight: 0 +# +2400021# +A coin made with Copper +A Symbol of Beauty +use to exchange for items +-------------------------- +Tradable +Weight: 0 +# +2400022# +Use to enhance Heaven Equipment +-------------------------- +Tradable +Weight: 0 +# +2400023# +Grape Cream Cheese Tea! A refreshing flavor perfect for tasting +Made from rare ingredients that are not easily found +-------------------------- +The item will be removed after December 31, 2024. +-------------------------- +Cannot be traded. +Weight: 0 +# +2400024# +A stone that helps awaken power. +If equipped with +Costume: Cap of Tea (Upper) +Or +Costume Malangdo (Upper) with a rarity level of SR and above. +Or +Costume Championship (Upper) +Or +Costume Legacy Golden Majestic Goat +Costume Legacy Golden Crown +Costume Legacy Golden Corsair +Costume Legacy Golden Spiky Band +Costume Legacy Golden Grand Circlet +-------------------------- +All status +1 +Atk +10 +Aspd +10% +Exp Rate Increases by 5% +Drop Rate Increases by 5% +-------------------------- +This ability will expire on December 31, 2024 +-------------------------- +Weight: 10 +# +2400025# +A stone that helps awaken power +If equipped with +Costume: Cap of Tea (Upper) +Or +Costume Malangdo (Upper) with a rarity level of SR and above +Or +Costume Championship (Upper) +Or +Costume Legacy Golden Majestic Goat +Costume Legacy Golden Crown +Costume Legacy Golden Corsair +Costume Legacy Golden Spiky Band +Costume Legacy Golden Grand Circlet +-------------------------- +All status +1 +Matk +10 +VCT -10% +Exp Rate Increases by 5% +Drop Rate Increases by 5% +-------------------------- +This ability will expire on December 31, 2024 +-------------------------- +Weight: 10 +# +2400026# +Enhance abilities +If equipped with +Costume: Cap of Tea (Upper) +Or +Costume Malangdo (Upper) with a rarity level of SR and above +Or +Costume Championship (Upper) +Or +Costume Legacy Golden Majestic Goat +Costume Legacy Golden Crown +Costume Legacy Golden Corsair +Costume Legacy Golden Spiky Band +Costume Legacy Golden Grand Circlet +-------------------------- +All status +1 +Atk +10 +Aspd +10% +Exp Rate Increases by 5% +Drop Rate Increases by 5% +-------------------------- +This ability will expire on December 31, 2024 +-------------------------- +Weight: 10 +# +2400027# +Enhance abilities +If equipped with +Costume: Cap of Tea (Upper) +Or +Costume Malangdo (Upper) with a rarity level of SR and above +Or +Costume Championship (Upper) +Or +Costume Legacy Golden Majestic Goat +Costume Legacy Golden Crown +Costume Legacy Golden Corsair +Costume Legacy Golden Spiky Band +Costume Legacy Golden Grand Circlet +-------------------------- +All status +1 +Matk +10 +VCT -10% +Exp Rate Increases by 5% +Drop Rate Increases by 5% +-------------------------- +This ability will expire on December 31, 2024 +-------------------------- +Weight: 10 +# +2400028# +The soul that represent the virtues you have done. +There may be value in exchange for something +-------------------------- +Type: Misc +Weight: 0 +# +2400029# +A divine scale made of heavenly dragon that won't melt for some reason. +-------------------------- +Weight: 1 +# +2400030# +If upgrade level is +7 or higher: +STR +1 +# +2400031# +If upgrade level is +7 or higher: +STR +2 +-------------------------- +If upgrade level is +9 or higher: +Additional STR +1, All Race damage +2% +-------------------------- +# +2400032# +If upgrade level is +7 or higher: +STR +3 +-------------------------- +If upgrade level is +9 or higher: +Additional STR +1, All Race damage +3% +-------------------------- +If upgrade level is +10 or higher: +Additional STR +1, All Race damage +3% +# +2400033# +If upgrade level is +7 or higher: +AGI +1 +# +2400034# +If upgrade level is +7 or higher: +AGI +2 +-------------------------- +If upgrade level is +9 or higher: +Additional AGI +1, Perfect Dodge +2 +# +2400035# +If upgrade level is +7 or higher: +AGI +3 +-------------------------- +If upgrade level is +9 or higher: +Additional AGI +1, Perfect Dodge +3 +-------------------------- +If upgrade level is +10 or higher: +Additional AGI +1, Perfect Dodge +2 +# +2400036# +If upgrade level is +7 or higher: +VIT +1 +# +2400037# +If upgrade level is +7 or higher: +VIT +2 +-------------------------- +If upgrade level is +9 or higher: +Additional VIT +1, Max HP +2% +# +2400038# +If upgrade level is +7 or higher: +VIT +3 +-------------------------- +If upgrade level is +9 or higher: +Additional VIT +1, Max HP +3% +-------------------------- +If upgrade level is +10 or higher: +Additional VIT +1, Additional Max HP +2% +# +2400039# +If upgrade level is +7 or higher: +INT +1 +# +2400040# +If upgrade level is +7 or higher: +INT +2 +-------------------------- +If upgrade level is +9 or higher: +Additional INT +1, MAtk +2% +# +2400041# +If upgrade level is +7 or higher: +INT +3 +-------------------------- +If upgrade level is +9 or higher: +Additional INT +1, MAtk +3% +-------------------------- +If upgrade level is +10 or higher: +Additional INT +1, MAtk +2% +# +2400042# +If upgrade level is +7 or higher: +DEX +1 +# +2400043# +If upgrade level is +7 or higher: +DEX +2 +-------------------------- +If upgrade level is +9 or higher: +Additional DEX +1, Increases long-ranged damage on targets by 2% +# +2400044# +If upgrade level is +7 or higher: +DEX +3 +-------------------------- +If upgrade level is +9 or higher: +Additional DEX +1, Increases long-ranged damage on targets by 3% +-------------------------- +If upgrade level is +10 or higher: +Additional DEX +1, Increases long-ranged damage on targets by 2% +# +2400045# +If upgrade level is +7 or higher: +LUK +1 +# +2400046# +If upgrade level is +7 or higher: +LUK +2 +-------------------------- +If upgrade level is +9 or higher: +Additional LUK +1, Increases critical damage on targets by 2% +# +2400047# +If upgrade level is +7 or higher: +LUK +3 +-------------------------- +If upgrade level is +9 or higher: +Additional LUK +1, Increases critical damage on targets by 3% +-------------------------- +If upgrade level is +10 or higher: +Additional LUK +1, Increases critical damage on targets by an additional 2% +# +2400048# +This coin, given to the valued customers of Nose Tea, can be exchanged for rewards +-------------------------- +Type: Valuable +Weight: 0 +# +2400049# +The Surpassing Card has special properties +It will help you grow in leaps and bounds. +-------------------------- +Weight: 0 +# +2400050# +Knight's Soul + +This soul is the root of a valiant knight, ready to confront any foe and protect their comrades. Its wielder will feel a surge of limitless power and courage. + +This soul can be brought to the Dark Wizard to exchange for strength. +-------------------------- +Type: Soul Root +Weight: 0 +# +2400051# +Wizard's Soul + +The soul of a wizard who commands arcane mysteries. Its wielder will be filled with profound magical power and enigmatic knowledge + +This soul can be brought to the Dark Wizard to exchange for strength. +-------------------------- +Type: Soul Root +Weight: 0 +# +2400052# +Blacksmith's Soul + +The soul of a master blacksmith, an expert in the art of crafting weapons and armor. This soul imbues its wielder with the confidence and immense skill of a master creator. + +This soul can be brought to the Dark Wizard to exchange for strength. +-------------------------- +Type: Soul Root +Weight: 0 +# +2400053# +Priest's Soul + +The soul of a holy priest dedicated to healing and protecting others. This power grants its wielder exceptional restorative and defensive abilities. + +This soul can be brought to the Dark Wizard to exchange for strength. +-------------------------- +Type: Soul Root +Weight: 0 +# +2400054# +Assassin's Soul + +The soul of an assassin, a master in the art of assassination and moving through the shadows. This soul grants stealth and the power for swift, lethal strikes + +This soul can be brought to the Dark Wizard to exchange for strength. +-------------------------- +Type: Soul Root +Weight: 0 +# +2400055# +Hunter's Soul + +The soul of a hunter skilled in the arts of archery and tracking. This soul enhances hunting prowess and grants excellent control over pets. + +This soul can be brought to the Dark Wizard to exchange for strength. +-------------------------- +Type: Soul Root +Weight: 0 +# +2400056# +Crusader's Soul + +The soul of a faithful Crusader, bound by a sacred oath to protect justice. This soul enhances both holy attacks and divine protection. + +This soul can be brought to the Dark Wizard to exchange for strength. +-------------------------- +Type: Soul Root +Weight: 0 +# +2400057# +Sage's Soul + +The soul of a sage, brimming with profound knowledge and wisdom. This soul grants its wielder the ability to command magic born from pure intellect. + +This soul can be brought to the Dark Wizard to exchange for strength. +-------------------------- +Type: Soul Root +Weight: 0 +# +2400058# +Alchemist's Soul + +The soul of an alchemist, a master in the science of creating wondrous potions. This soul grants its wielder greater expertise in brewing potions and crafting special items. + +This soul can be brought to the Dark Wizard to exchange for strength. +-------------------------- +Type: Soul Root +Weight: 0 +# +2400059# +Monk's Soul + +The soul of a monk who has trained both mind and body to achieve a state of ultimate peace. This soul enhances combat and defensive power through inner tranquility. + +This soul can be brought to the Dark Wizard to exchange for strength. +-------------------------- +Type: Soul Root +Weight: 0 +# +2400060# +Rogue's Soul + +The soul of a rogue, skilled in stealth and striking from the shadows. This soul allows its wielder to evade and attack with great efficiency. + +This soul can be brought to the Dark Wizard to exchange for strength. +-------------------------- +Type: Soul Root +Weight: 0 +# +2400061# +Bard's Soul + +The soul of a bard who wields music as a weapon. This soul enhances the power to support teammates with beautiful melodies. + +This soul can be brought to the Dark Wizard to exchange for strength. +-------------------------- +Type: Soul Root +Weight: 0 +# +2400062# +Dancer's Soul + +The soul of a dancer who uses movements as beautiful as starlight in battle. This soul empowers its wielder to control the battlefield with elegance. + +This soul can be brought to the Dark Wizard to exchange for strength. +-------------------------- +Type: Soul Root +Weight: 0 +# +2400063# +The soul of the Star Gladiator class + +The soul of a fighter skilled in sky-based combat techniques. This soul increases powerful attack strength derived from the fury of the heavens + +This soul can be brought to the Dark Wizard to exchange for strength. +-------------------------- +Type: Soul Root +Weight: 0 +# +2400064# +The soul of the Soul Linker class + +The soul of one who channels the spiritual power of others. This soul enhances the ability to support and empower teammates + +This soul can be brought to the Dark Wizard to exchange for strength. +-------------------------- +Type: Soul Root +Weight: 0 +# +2400065# +The soul of the Ninja class + +The soul of a silent ninja, skilled in fast-paced combat. This soul increases attack power and movement speed that no one can match + +This soul can be brought to the Dark Wizard to exchange for strength. +-------------------------- +Type: Soul Root +Weight: 0 +# +2400066# +The soul of the Gunslinger class + +The soul of a gunslinger, with precision and relentless fury. This soul increases rapid and powerful shooting strength + +This soul can be brought to the Dark Wizard to exchange for strength. +-------------------------- +Type: Soul Root +Weight: 0 +# +2400067# +The soul of the Super Novice class + +The soul of a beginner, filled with versatile abilities. This soul grants unlimited potential and flexibility in development + +This soul can be brought to the Dark Wizard to exchange for strength. +-------------------------- +Type: Soul Root +Weight: 0 +# +2400068# +A layer cake that is dusty because it was stolen from its owner +If you look closely, you'll see a few small fingerprints. +-------------------------- +This item will be removed after November 26th +-------------------------- +Weight: 1 +# +2400069# +A high-quality layer cake that's incredibly delicious +It would be great if it could be shared with friends +-------------------------- +This item will be removed after November 26th +-------------------------- +Weight: 1 +# +2400070# +A simple krathong, full of cultural and traditional value +Cannot be traded. +-------------------------- +Type: Misc +Weight: 0 +# +2400072# +A special-scented incense that was stolen by Leaf Cat +It is said that the scent of this incense helps to relax the mind +-------------------------- +Type: Misc +Weight: 0 +# +2400073# +A specially made scented candle that was stolen +It is said that the scent of this candle helps promote a deep sleep +-------------------------- +Type: Misc +Weight: 0 +# +2400074# +A blooming lotus flower +Leaf Cat must really like beautiful things, which is why it collects them. +-------------------------- +Type: Misc +Weight: 0 +# +2400075# +A large local banana leaf +It is considered a biodegradable natural material +-------------------------- +Type: Misc +Weight: 0 +# +2400076# +Specially baked bread to be used as fish food +It can be repurposed as a krathong +-------------------------- +Type: Misc +Weight: 0 +# +2400077# +A stone that helps enhance special abilities for costumes +Can be used to install abilities into any slot of the costume +All status+2 +Exp&Drop+5% +There is a 3% chance to cast Level 1 Lex Aeterna on the opponent when attacking with Physical Damage +-------------------------- +Expiration Date 11-12-2024 +-------------------------- +Weight: 0 +# +2400078# +All status+2 +Exp&Drop+5% +There is a 3% chance to cast Level 1 Lex Aeterna on the opponent when attacking with Physical Damage +-------------------------- +Expiration Date 11-12-2024 +# +2400079# +Mysterious coins with great value If you collect them to a certain amount You can exchange them for rewards. +-------------------------- +Weight: 0 +# +2400080# +A magical scripture that increases the success rate +In researching various items to provide for you +-------------------------- +Weight: 0 +# +2400081# +A gold-plated diamond is believed to be a rare item. If you collect enough of them, you can exchange them for various valuable items. +-------------------------- +Weight: 0 +# +2400082# +Fixed Cast Time Reduction Stone +A stone that slightly reduces fixed cast time. +Used to install the following effect into the slot of a Costume Garment +-------------------------- +Reduces Fixed Cast Time by 0.1 seconds. +-------------------------- +Weight: 0 +# +2400083# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Max Hp +200 +-------------------------- +Using With: Armor +Weight: 10 +# +2400084# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Max Hp +300 +-------------------------- +Using With: Armor +Weight: 10 +# +2400085# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Max Hp +1% +-------------------------- +Using With: Armor +Weight: 10 +# +2400086# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Max Hp +2% +-------------------------- +Using With: Armor +Weight: 10 +# +2400087# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Max Sp +10 +-------------------------- +Using With: Shoes +Weight: 10 +# +2400088# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Max Sp +20 +-------------------------- +Using With: Shoes +Weight: 10 +# +2400089# +A type of magic stone. When fused with equipment, it increases +-------------------------- +VCT -1% +-------------------------- +Using With: Upper-Headgear +Weight: 10 +# +2400090# +A type of magic stone. When fused with equipment, it increases +-------------------------- +VCT -2% +-------------------------- +Using With: Upper-Headgear +Weight: 10 +# +2400091# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Flee +3 +-------------------------- +Using With: Accessory +Weight: 10 +# +2400092# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Flee +5 +-------------------------- +Using With: Accessory +Weight: 10 +# +2400093# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Increases maximum weight capacity +300 +-------------------------- +Using With: Garment +Weight: 10 +# +2400094# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Increases maximum weight capacity +400 +-------------------------- +Using With: Garment +Weight: 10 +# +2400095# +A type of magic stone. When fused with equipment, it increases +-------------------------- +IncreasesExperience gained from monsters +3% +-------------------------- +Using With: Upper-Headgear, Armor +Weight: 10 +# +2400096# +A type of magic stone. When fused with equipment, it increases +-------------------------- +IncreasesExperience gained from monsters +4% +-------------------------- +Using With: Upper-Headgear, Armor +Weight: 10 +# +2400097# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Increases the monster drop rate by +3% +-------------------------- +Using With: Guard, Shoes +Weight: 10 +# +2400098# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Increases the monster drop rate by +4% +-------------------------- +Using With: Guard, Shoes +Weight: 10 +# +2400099# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Reduces damage from Water and Earth elements by 3% +-------------------------- +Using With: Guard +Weight: 10 +# +2400100# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Reduces damage from Wind and Fire elements by 3% +-------------------------- +Using With: Guard +Weight: 10 +# +2400101# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Mdef +3 +-------------------------- +Using With: Armor +Weight: 10 +# +2400102# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Mdef +5 +-------------------------- +Using With: Armor +Weight: 10 +# +2400103# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Aspd +1% +-------------------------- +Using With: Garment +Weight: 10 +# +2400104# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Aspd +2% +-------------------------- +Using With: Garment +Weight: 10 +# +2400105# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Increases ranged attack power by +1% +-------------------------- +Using With: Accessory +Weight: 10 +# +2400106# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Increases ranged attack power by +2% +-------------------------- +Using With: Accessory +Weight: 10 +# +2400107# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Increase ranged attack defense by +1% +-------------------------- +Using With: Accessory +Weight: 10 +# +2400108# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Increase ranged attack defense by +2% +-------------------------- +Using With: Accessory +Weight: 10 +# +2400109# +A type of magic stone. When fused with equipment, it increases +-------------------------- +When attacked by magic, there is a 3% chance to resist 20% of the magic damage for 10 seconds +-------------------------- +Using With: Upper-Headgear Costume +Weight: 10 +# +2400110# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Max Hp +400 +-------------------------- +Using With: Armor +Weight: 10 +# +2400111# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Max Hp +3% +-------------------------- +Using With: Armor +Weight: 10 +# +2400112# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Max Sp +30 +-------------------------- +Using With: Shoes +Weight: 10 +# +2400113# +A type of magic stone. When fused with equipment, it increases +-------------------------- +VCT -3% +-------------------------- +Using With: Upper-Headgear +Weight: 10 +# +2400114# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Flee +7 +-------------------------- +Using With: Accessory +Weight: 10 +# +2400115# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Increases weight capacity +600 +-------------------------- +Using With: Garment +Weight: 10 +# +2400116# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Exp +5% +-------------------------- +Using With: Upper-Headgear, Armor +Weight: 10 +# +2400117# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Drop +5% +-------------------------- +Using With: Guard, Shoes +Weight: 10 +# +2400118# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Reduces Water and Earth elemental attack damage by +5% +-------------------------- +Using With: Guard +Weight: 10 +# +2400119# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Reduces Wind and Fire elemental attack damage by +5% +-------------------------- +Using With: Guard +Weight: 10 +# +2400120# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Mdef +7 +-------------------------- +Using With: Armor +Weight: 10 +# +2400121# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Aspd +3% +-------------------------- +Using With: Garment +Weight: 10 +# +2400122# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Increase ranged attack defense by +3% +-------------------------- +Using With: Accessory +Weight: 10 +# +2400123# +A type of magic stone. When fused with equipment, it increases +-------------------------- +When attacked by magic, there is a 5% chance to resist 20% of the magic damage for 10 seconds +-------------------------- +Using With: Upper-Headgear Costume +Weight: 10 +# +2400124# +A type of magic stone. When fused with equipment, it increases +-------------------------- +HIT +3 +-------------------------- +Using With: Accessory +Weight: 10 +# +2400125# +A type of magic stone. When fused with equipment, it increases +-------------------------- +HIT +5 +-------------------------- +Using With: Accessory +Weight: 10 +# +2400126# +A type of magic stone. When fused with equipment, it increases +-------------------------- +HIT +7 +-------------------------- +Using With: Accessory +Weight: 10 +# +2400127# +A type of magic stone. When fused with equipment, it increases +-------------------------- +Increases ranged attack power by +3% +-------------------------- +Using With: Accessory +Weight: 10 +# +2400128# +Max Hp +200 +# +2400129# +Max Hp +300 +# +2400130# +Max Hp +1% +# +2400131# +Max Hp +2% +# +2400132# +Max Sp +10 +# +2400133# +Max Sp +20 +# +2400134# +VCT -1% +# +2400135# +VCT -2% +# +2400136# +Flee +3 +# +2400137# +Flee +5 +# +2400138# +Reduces Fixed Cast Time by 0.1 seconds. +# +2400139# +Increases maximum weight capacity +300 +# +2400140# +Increases maximum weight capacity +400 +# +2400141# +IncreasesExperience gained from monsters +3% +# +2400142# +IncreasesExperience gained from monsters +4% +# +2400143# +Increases the monster drop rate by +3% +# +2400144# +Increases the monster drop rate by +4% +# +2400145# +Reduces Water and Earth elemental attack damage by +3% +# +2400146# +Reduces Wind and Fire elemental attack damage by +3% +# +2400147# +Mdef +3 +# +2400148# +Mdef +5 +# +2400149# +Aspd +1% +# +2400150# +Aspd +2% +# +2400151# +Increases ranged attack power by +1% +# +2400152# +Increases ranged attack power by +2% +# +2400153# +Increase ranged attack defense by +1% +# +2400154# +Increase ranged attack defense by +2% +# +2400155# +When attacked by magic, there is a 3% chance to resist 20% of the magic damage for 10 seconds. +# +2400156# +Max Hp +400 +# +2400157# +Max Hp +3% +# +2400158# +Max Sp +30 +# +2400159# +VCT -3% +# +2400160# +Flee +7 +# +2400161# +Increases weight capacity +600 +# +2400162# +Exp +5% +# +2400163# +Drop +5% +# +2400164# +Reduces Water and Earth elemental attack damage by +5% +# +2400165# +Reduces Wind and Fire elemental attack damage by +5% +# +2400166# +Mdef +7% +# +2400167# +Aspd +3% +# +2400168# +Increase ranged attack defense by +3% +# +2400169# +When attacked by magic, there is a 5% chance to resist 20% of the magic damage for 10 seconds +# +2400170# +HIT +3 +# +2400171# +HIT +5 +# +2400172# +HIT +7 +# +2400173# +Increases ranged attack power by +3% +# +2400174# +A talisman forged from the scales of an ancient dragon. Those who possess it will receive an eternal blessing +Grants the ability to soar to victory in every adventure +-------------------------- +Weight: 0 +# +2400175# +A sacred talisman imbued with the power of the protecting deity from the heavenly realm +This coin is a symbol of infinite power and protection +-------------------------- +Weight: 0 +# +2400176# +A rare and powerful fragment, a shard from the scales of the most powerful dragon god +It is believed that this shard holds the power of protection and enlightenment. +-------------------------- +Weight: 0 +# +2400177# +A fragment of an ancient artifact filled with sacred power from the realm of the gods +It is believed that this fragment was once part of the precious treasure of the guardian deity. +-------------------------- +Weight: 0 +# +2400178# +A fragment of spiritual power from the realm of the gods +It has a translucent appearance, floats gracefully, and radiates a shimmering glow +-------------------------- +Weight: 0 +# +2400179# +The treasure vault of dragon spirits. Inside, it contains the powerful energy and soul of an ancient dragon +-------------------------- +Weight: 0 +# +2400180# +A fragment broken off from a hat, an essential material for crafting equipment +Divine Dragonic +-------------------------- +Weight: 0 +# +2400181# +A fragment broken off from armor, an essential material for crafting equipment. +Divine Dragonic +-------------------------- +Weight: 0 +# +2400182# +A fragment broken off from a cloak, an essential material for crafting equipment. +Divine Dragonic +-------------------------- +Weight: 0 +# +2400183# +A fragment broken off from shoes, an essential material for crafting equipment. +Divine Dragonic +-------------------------- +Weight: 0 +# +2400184# +A fragment broken off from an accessory, an essential material for crafting equipment +Divine Dragonic +-------------------------- +Weight: 0 +# +2400185# +Check reward amount 45 ION. You can request the reward now +Please attach this proof to the Facebook page +-------------------------- +Weight: 0 +# +2400186# +Check reward amount 45 ION. You can request the reward now +Please attach this proof to the Facebook page +-------------------------- +Weight: 0 +# +2400187# +A premium coin of fortune. +Collect enough of them to unlock exclusive privileges and rewards +-------------------------- +Weight: 0 +# +2400188# +Chip used for various games in. +Comodo Royale +-------------------------- +Weight: 0 +# +2400189# +Special Enchancement Stone +-------------------------- +(The item's effects will expire 28 days after being equipped.) +-------------------------- +Weight: 10 +# +2400190# +(The item's effects will expire 28 days after being equipped.) +# +2400191# +A special ticket that you +Can be used to receive buffs in every city +-------------------------- +Weight: 0 +# +2400192# +A special ticket used to receive the buffs in +the city of Prontera only. +-------------------------- +Weight: 0 +# +2400193# +A special ticket used to receive the buffs in +the city Izlude only +-------------------------- +Weight: 0 +# +2400194# +A special ticket used to receive the buffs in +the city Geffen only +-------------------------- +Weight: 0 +# +2400195# +A special ticket used to receive the buffs in +the city Payon only +-------------------------- +Weight: 0 +# +2400196# +A special ticket used to receive the buffs in +the city Alberta only +-------------------------- +Weight: 0 +# +2400197# +A special ticket used to receive the buffs in +the city Aldebaran only +-------------------------- +Weight: 0 +# +2400198# +A special ticket used to receive the buffs in +the city Yuno only +-------------------------- +Weight: 0 +# +2400199# +A special ticket used to receive the buffs in +the city Lighthalzen only +-------------------------- +Weight: 0 +# +2400200# +A special ticket used to receive the buffs in +the city Einbroch only +-------------------------- +Weight: 0 +# +2400201# +A special ticket used to receive the buffs in +the city Einbech only +-------------------------- +Weight: 0 +# +2400202# +A special ticket used to receive the buffs in +the city Comodo only +-------------------------- +Weight: 0 +# +2400203# +A special ticket used to receive the buffs in +the city Umbala only +-------------------------- +Weight: 0 +# +2400204# +A special ticket used to receive the buffs in +the city Amatsu only +-------------------------- +Weight: 0 +# +2400205# +A special ticket used to receive the buffs in +the city Gonryun only +-------------------------- +Weight: 0 +# +2400206# +A special ticket used to receive the buffs in +the city Ayothaya only +-------------------------- +Weight: 0 +# +2400207# +A special ticket used to receive the buffs in +the city Louyang only +-------------------------- +Weight: 0 +# +2400208# +A special ticket used to receive the buffs in +the city Hugel only +-------------------------- +Weight: 0 +# +2400209# +A special ticket used to receive the buffs in +the city Rachel only +-------------------------- +Weight: 0 +# +2400210# +Option stone for the month of January, can be equipped in any slot +-------------------------- +All status+3 +Experience gained from monsters Increases by 5% +Increases Item drop rate by 5% +-------------------------- +This ability will expire on February 19, 2025, after MA +-------------------------- +Weight: 0 +# +2400211# +All status+3 +Exp&Drop+5% +-------------------------- +Expiration Date 19-2-2025 +# +2400212# +The ice crystal with a golden flower hidden within is believed to be a rare item. If you collect +enough of them, you will be able to exchange them for various valuable treasures. +-------------------------- +Weight: 0 +# +2400213# +Stamp Card from Santa's Workshop +Can be exchanged for interesting gifts. +-------------------------- +Type: Misc +Weight: 0 +# +2400214# +Cookie Sack +...Yes, the sack used to catch Cookies. +-------------------------- +Type: Taming Item +Weight: 0 +# +2400215# +Captured Cookie in Sack +Hurry and return it to the workshop! +-------------------------- +Type: Misc +Weight: 0 +# +2400216# +A coin made with Sliver +A Symbol of Beauty +use to exchange for items +-------------------------- +Tradable +Weight: 0 +# +2400217# +Once selected, your weapon will be usable for 7 days. After that, the item you selected will disappear +The weapon selection ticket for WOE can be used with this ticket Available at NPC WOE Weapons Selectorprontera,147,169,0,100,0,0 +-------------------------- +Weight: 0 +# +2400218# +The bright and radiant golden crystal shards are obtained from the Golden Poring. +According to the legend told by the priest... Wait, did I just see it move? +-------------------------- +Type: Misc +Weight: 0 +# +2400219# +A rare crystal formed from the distortion of time +-------------------------- +Type: Valuable +Weight: 1 +# +2400220# +A spellstone that has mysteriously turned into a solid form +-------------------------- +Type: Valuable +Weight: 1 +# +2400221# +Coin of Fate, the numbers, used to exchange for rewards at NPC +[Lucky Number]cmd_in02,181,126,0,100,0,0 +-------------------------- +Weight: 0 +# +2400222# +Newly created characters can participate in the event if they are level 70 or higher only +Only then can you exchange for the Temporal Transcendent Shadow Set. +-------------------------- +Weight: 0 +# +2400223# +Happy New Year 2025 +A card for the New Year event +Alphabet letter H to collect and exchange for rewards +-------------------------- +Weight: 0 +# +2400224# +Happy New Year 2025 +A card for the New Year event +Alphabet letter A to collect and exchange for rewards +-------------------------- +Weight: 0 +# +2400225# +Happy New Year 2025 +A card for the New Year event +Alphabet letter A to collect and exchange for rewards +-------------------------- +Weight: 0 +# +2400226# +Happy New Year 2025 +A card for the New Year event +Alphabet letter Y to collect and exchange for rewards +-------------------------- +Weight: 0 +# +2400227# +Happy New Year 2025 +A card for the New Year event +Alphabet letter N to collect and exchange for rewards +-------------------------- +Weight: 0 +# +2400228# +Happy New Year 2025 +A card for the New Year event +Alphabet letter E to collect and exchange for rewards +-------------------------- +Weight: 0 +# +2400229# +Happy New Year 2025 +A card for the New Year event +Alphabet letter W to collect and exchange for rewards +-------------------------- +Weight: 0 +# +2400230# +Happy New Year 2025 +A card for the New Year event +Alphabet letter R to collect and exchange for rewards +-------------------------- +Weight: 0 +# +2400231# +Happy New Year 2025 +A card for the New Year event +Alphabet letter 2 to collect and exchange for rewards +-------------------------- +Weight: 0 +# +2400232# +Happy New Year 2025 +A card for the New Year event +Alphabet letter 0 to collect and exchange for rewards +-------------------------- +Weight: 0 +# +2400233# +Happy New Year 2025 +A card for the New Year event +Alphabet letter 5 to collect and exchange for rewards +-------------------------- +Weight: 0 +# +2400234# +A special gem exclusively for members of the Landverse Group. +-------------------------- +Weight: 0 +# +2400235# +A special coin exclusively for members of the Landverse Group. +When collected in sufficient quantity, it can be exchanged for Miracle Medicine. +-------------------------- +Weight: 0 +# +2400236# +Special Enchancement Stone +-------------------------- +All status+2 +Exp&Drop +5% +2% chance to cast Gloria Level 5 on yourself when dealing Physical or Magic Damage +-------------------------- +(The item's effects will expire 28 days after being equipped.) +-------------------------- +Weight: 10 +# +2400237# +All status+2 +Exp&Drop +5% +2% chance to cast Gloria Level 5 on yourself when dealing Physical or Magic Damage +-------------------------- +(The item's effects will expire 28 days after being equipped.) +# +2400238# +Sacred Fireball +-------------------------- +Weight: 0 +# +2400239# +A crystal imbued with the energy of the stalwart earth. +Increase success rate of enhancing Landstone by 1%. +-------------------------- +Class: Etc +Weight: 0 +# +2400240# +The skeleton of the ancient pirate king +Once accumulated to the specified amount, it will unlock the hidden power within +-------------------------- +Weight: 0 +# +2400241# +MVP Fragment +A material that can be collected to craft rare items +-------------------------- +Weight: 0 +# +2400242# +Crit +1, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +7 or above +Crit +2, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +9 or above +Crit +2, Crit Dmg +3% +-------------------------- + When the equipment is upgraded to +10 or above +Ignores enemy's physical defense by 3% +-------------------------- +When equipped [ Fatal Rock Landstone Type R ] 3 pieces +Increases movement speed by 1% +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases physical ranged attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Increases movement speed by 2% +Increases physical ranged attack by 5% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces fixed casting time duration by 0.1 seconds +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400243# +ASPD +1% +-------------------------- + When the equipment is upgraded to +7 or above +ASPD +1% +-------------------------- + When the equipment is upgraded to +9 or above +ASPD +1% +-------------------------- + When the equipment is upgraded to +10 or above +When performing a physical attack, there is a 2% chance to gain +100% ASPD for 3 seconds. +(Effect does not stack with the same type of effect.) +-------------------------- +When equipped [ Rush Rock Landstone Type R ] 3 pieces +Increases movement speed by 1% +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases physical ranged attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Increases movement speed by 2% +Increases physical ranged attack by 5% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces fixed casting time duration by 0.1 seconds +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400244# +DEX+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +7 or above +DEX+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +DEX+2, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +10 or above +Ignores physical defense against demi-human monsters by 3% +-------------------------- +When equipped [ Bloody Rock Landstone Type R ] 3 pieces +Increases movement speed by 1% +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases physical ranged attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Increases movement speed by 2% +Increases physical ranged attack by 5% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces fixed casting time duration by 0.1 seconds +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400245# +DEF +4 +-------------------------- + When the equipment is upgraded to +7 or above +DEF +6 +-------------------------- + When the equipment is upgraded to +9 or above +DEF +7 +-------------------------- +When equipped [ DEF Lava Landstone Type R ] 3 pieces +Max HP +2%, Max SP +2%, Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP +3%, Max SP +3%, Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400246# +MDEF +1 +-------------------------- + When the equipment is upgraded to +7 or above +MDEF +2 +-------------------------- + When the equipment is upgraded to +9 or above +MDEF +2 +-------------------------- +When equipped [ MDEF Lava Landstone Type R ] 3 pieces +Max HP+2%, Max SP+2%, Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+3%, Max SP+3%, Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400247# +FLEE +2 +-------------------------- + When the equipment is upgraded to +7 or above +FLEE +2 +-------------------------- + When the equipment is upgraded to +9 or above +FLEE +3 +-------------------------- +When equipped [ Flee Lava Landstone Type R ] 3 pieces +Max HP +2%, Max SP +2%, Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP +3%, Max SP +3%, Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400248# +DEX +1 +LUK +1 +-------------------------- + When the equipment is upgraded to +7 or above +All Status +1 +-------------------------- + When the equipment is upgraded to +9 or above +All Status +1 +-------------------------- +When equipped [ All Stat Lava Landstone Type R ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400249# +ATK +3 +-------------------------- + When the equipment is upgraded to +7 or above +ATK +4 +-------------------------- + When the equipment is upgraded to +9 or above +ATK +5 +-------------------------- +When equipped [ ATK Lava Landstone Type R ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400250# +Vit +2 +-------------------------- + When the equipment is upgraded to +7 or above +Reduces damage from demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +Reduces damage from demi-human monsters by 1% +-------------------------- +When equipped [ Cranial Lava Landstone Type R ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400251# +Crit +1, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +7 or above +Crit +2, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +9 or above +Crit +2, Crit Dmg +3% +-------------------------- +When equipped [ Fatal Rock Landstone Type R ] 3 pieces +Increases movement speed by 1% +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400252# +ASPD +1% +-------------------------- + When the equipment is upgraded to +7 or above +ASPD +1% +-------------------------- + When the equipment is upgraded to +9 or above +ASPD +1% +-------------------------- +When equipped [ Rush Rock Landstone Type R ] 3 pieces +Increases movement speed by 1% +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400253# +DEX+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +7 or above +DEX+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +DEX+2, Increases physical attack against demi-human monsters by 1% +-------------------------- +When equipped [ Bloody Rock Landstone Type R ] 3 pieces +Increases movement speed by 1% +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400254# +Reduces attack received from Fire elemental attributes by 2% +-------------------------- +Type: Etc +Position: Accessory +Weight: 1 +# +2400255# +Reduces attack received from Earth elemental attributes by 2% +-------------------------- +Type: Etc +Position: Accessory +Weight: 1 +# +2400256# +Reduces damage received from ranged attacks by 2% +-------------------------- +Type: Etc +Position: Accessory +Weight: 1 +# +2400257# +DEF +4 +-------------------------- + When the equipment is upgraded to +7 or above +DEF +6 +-------------------------- +When equipped [ DEF Lava Landstone Type R ] 3 pieces +Max HP +1%, Max SP +1% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+2%, Max SP+2%, Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400258# +MDEF +1 +-------------------------- + When the equipment is upgraded to +7 or above +MDEF +2 +-------------------------- +When equipped [ MDEF Lava Landstone Type R ] 3 pieces +Max HP +1%, Max SP +1% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+2%, Max SP+2%, Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400259# +FLEE +2 +-------------------------- + When the equipment is upgraded to +7 or above +FLEE +2 +-------------------------- +When equipped [ Flee Lava Landstone Type R ] 3 pieces +Max HP +1%, Max SP +1% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+2%, Max SP+2%, Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400260# +DEX +1 +LUK +1 +-------------------------- + When the equipment is upgraded to +7 or above +All Status +1 +-------------------------- +When equipped [ All Stat Lava Landstone Type R ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400261# +ATK +3 +-------------------------- + When the equipment is upgraded to +7 or above +ATK +4 +-------------------------- +When equipped [ ATK Lava Landstone Type R ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400262# +Vit +2 +-------------------------- + When the equipment is upgraded to +7 or above +Reduces damage from demi-human monsters by 1% +-------------------------- +When equipped [ Cranial Lava Landstone Type R ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400263# +Crit +1, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +7 or above +Crit +2, Crit Dmg +2% +-------------------------- +When equipped [ Fatal Rock Landstone Type R ] 3 pieces +Increases movement speed by 1% +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400264# +ASPD +1% +-------------------------- + When the equipment is upgraded to +7 or above +ASPD +1% +-------------------------- +When equipped [ Rush Rock Landstone Type R ] 3 pieces +Increases movement speed by 1% +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400265# +DEX+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +7 or above +DEX+1, Increases physical attack against demi-human monsters by 1% +-------------------------- +When equipped [ Bloody Rock Landstone Type R ] 3 pieces +Increases movement speed by 1% +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400266# +Reduces attack received from Fire elemental attributes by 1% +-------------------------- +Type: Etc +Position: Accessory +Weight: 1 +# +2400267# +Reduces attack received from Earth elemental attributes by 1% +-------------------------- +Type: Etc +Position: Accessory +Weight: 1 +# +2400268# +Reduces damage received from ranged attacks by 1% +-------------------------- +Type: Etc +Position: Accessory +Weight: 1 +# +2400269# +DEF +4 +-------------------------- + When the equipment is upgraded to +7 or above +DEF +6 +-------------------------- + When the equipment is upgraded to +9 or above +DEF +7 +-------------------------- + When the equipment is upgraded to +10 or above +Prevents 10% of the Curse status +-------------------------- +When equipped [ DEF Lava Landstone Type P ] 3 pieces +Max HP +3%, Max SP +3%, Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP +4%, Max SP +4%, Increases melee physical attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Max HP +5%, Max SP +5%, Increases melee physical attack by 5% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400270# +MDEF +1 +-------------------------- + When the equipment is upgraded to +7 or above +MDEF +2 +-------------------------- + When the equipment is upgraded to +9 or above +MDEF +2 +-------------------------- + When the equipment is upgraded to +10 or above +Add a 10% resistance against Stone Curse +-------------------------- +When equipped [ MDEF Lava Landstone Type P ] 3 pieces +Max HP+3%, Max SP+3%, Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+4%, Max SP+4%, Increases melee physical attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Max HP+5%, Max SP+5%, Increases melee physical attack by 5% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400271# +FLEE +2 +-------------------------- + When the equipment is upgraded to +7 or above +FLEE +2 +-------------------------- + When the equipment is upgraded to +9 or above +FLEE +3 +-------------------------- + When the equipment is upgraded to +10 or above +Add a 10% resistance against Confusion +-------------------------- +When equipped [ Flee Lava Landstone Type P ] 3 pieces +Max HP+3%, Max SP+3%, Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+4%, Max SP+4%, Increases melee physical attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Max HP+5%, Max SP+5%, Increases melee physical attack by 5% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400272# +STR +1 +LUK +1 +-------------------------- + When the equipment is upgraded to +7 or above +All Status +1 +-------------------------- + When the equipment is upgraded to +9 or above +All Status +1 +-------------------------- + When the equipment is upgraded to +10 or above +All Status+1 +-------------------------- +When equipped [ All Stat Lava Landstone Type P ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 5% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400273# +ATK +3 +-------------------------- + When the equipment is upgraded to +7 or above +ATK +4 +-------------------------- + When the equipment is upgraded to +9 or above +ATK +5 +-------------------------- + When the equipment is upgraded to +10 or above +Increases physical attack against all types of monsters by 2% +-------------------------- +When equipped [ ATK Lava Landstone Type P ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 5% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400274# +Vit +2 +-------------------------- + When the equipment is upgraded to +7 or above +Reduces damage from demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +Reduces damage from demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +10 or above +When receiving a physical or magical attack +There is a 1% chance to reduce damage from demi-human monsters by 2% for 3 seconds +-------------------------- +When equipped [ Cranial Lava Landstone Type P ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 5% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400275# +Crit +1, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +7 or above +Crit +2, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +9 or above +Crit +2, Crit Dmg +3% +-------------------------- + When the equipment is upgraded to +10 or above +Ignores enemy's physical defense by 3% +-------------------------- +When equipped [ Fatal Rock Landstone Type P ] 3 pieces +Increases movement speed by 1% +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases melee physical attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Increases movement speed by 2% +Increases melee physical attack by 5% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces fixed casting time duration by 0.1 seconds +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400276# +ASPD +1% +-------------------------- + When the equipment is upgraded to +7 or above +ASPD +1% +-------------------------- + When the equipment is upgraded to +9 or above +ASPD +1% +-------------------------- + When the equipment is upgraded to +10 or above +When performing a physical attack, there is a 2% chance to gain +100% ASPD for 3 seconds. +(Effect does not stack with the same type of effect.) +-------------------------- +When equipped [ Rush Rock Landstone Type P ] 3 pieces +Increases movement speed by 1% +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases melee physical attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Increases movement speed by 2% +Increases melee physical attack by 5% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces fixed casting time duration by 0.1 seconds +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400277# +DEX+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +7 or above +DEX+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +DEX+2, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +10 or above +Ignores physical defense against demi-human monsters by 3% +-------------------------- +When equipped [ Bloody Rock Landstone Type P ] 3 pieces +Increases movement speed by 1% +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases melee physical attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Increases movement speed by 2% +Increases melee physical attack by 5% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces fixed casting time duration by 0.1 seconds +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400278# +DEF +4 +-------------------------- + When the equipment is upgraded to +7 or above +DEF +6 +-------------------------- + When the equipment is upgraded to +9 or above +DEF +7 +-------------------------- +When equipped [ DEF Lava Landstone Type P ] 3 pieces +Max HP +2%, Max SP +2%, Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP +3%, Max SP +3%, Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400279# +MDEF +1 +-------------------------- + When the equipment is upgraded to +7 or above +MDEF +2 +-------------------------- + When the equipment is upgraded to +9 or above +MDEF +2 +-------------------------- +When equipped [ MDEF Lava Landstone Type P ] 3 pieces +Max HP+2%, Max SP+2%, Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+3%, Max SP+3%, Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400280# +FLEE +2 +-------------------------- + When the equipment is upgraded to +7 or above +FLEE +2 +-------------------------- + When the equipment is upgraded to +9 or above +FLEE +3 +-------------------------- +When equipped [ Flee Lava Landstone Type P ] 3 pieces +Max HP +2%, Max SP +2%, Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP +3%, Max SP +3%, Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400281# +DEX +1 +LUK +1 +-------------------------- + When the equipment is upgraded to +7 or above +All Status +1 +-------------------------- + When the equipment is upgraded to +9 or above +All Status +1 +-------------------------- +When equipped [ All Stat Lava Landstone Type P ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400282# +ATK +3 +-------------------------- + When the equipment is upgraded to +7 or above +ATK +4 +-------------------------- + When the equipment is upgraded to +9 or above +ATK +5 +-------------------------- +When equipped [ ATK Lava Landstone Type P ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400283# +Vit +2 +-------------------------- + When the equipment is upgraded to +7 or above +Reduces damage from demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +Reduces damage from demi-human monsters by 1% +-------------------------- +When equipped [ Cranial Lava Landstone Type P ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400284# +Crit +1, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +7 or above +Crit +2, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +9 or above +Crit +2, Crit Dmg +3% +-------------------------- +When equipped [ Fatal Rock Landstone Type P ] 3 pieces +Increases movement speed by 1% +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400285# +ASPD +1% +-------------------------- + When the equipment is upgraded to +7 or above +ASPD +1% +-------------------------- + When the equipment is upgraded to +9 or above +ASPD +1% +-------------------------- +When equipped [ Rush Rock Landstone Type P ] 3 pieces +Increases movement speed by 1% +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400286# +STR+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +7 or above +STR+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +STR+2, Increases physical attack against demi-human monsters by 1% +-------------------------- +When equipped [ Bloody Rock Landstone Type P ] 3 pieces +Increases movement speed by 1% +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400287# +There is a 2% chance to restore HP equal to 5% of the damage dealt to the enemy with each attack +-------------------------- +Can be used in only 1 slot +-------------------------- +Type: Etc +Position: Headgear +Weight: 1 +# +2400288# +There is a 1% chance to restore SP equal to 1% of the damage dealt to the enemy with each attack +-------------------------- +Can be used in only 1 slot +-------------------------- +Type: Etc +Position: Headgear +Weight: 1 +# +2400289# +DEF +4 +-------------------------- + When the equipment is upgraded to +7 or above +DEF +6 +-------------------------- +When equipped [ DEF Lava Landstone Type P ] 3 pieces +Max HP +1%, Max SP +1% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+2%, Max SP+2%, Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400290# +MDEF +1 +-------------------------- + When the equipment is upgraded to +7 or above +MDEF +2 +-------------------------- +When equipped [ MDEF Lava Landstone Type P ] 3 pieces +Max HP +1%, Max SP +1% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+2%, Max SP+2%, Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400291# +FLEE +2 +-------------------------- + When the equipment is upgraded to +7 or above +FLEE +2 +-------------------------- +When equipped [ Flee Lava Landstone Type P ] 3 pieces +Max HP +1%, Max SP +1% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+2%, Max SP+2%, Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400292# +STR +1 +LUK +1 +-------------------------- + When the equipment is upgraded to +7 or above +All Status +1 +-------------------------- +When equipped [ All Stat Lava Landstone Type P ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400293# +ATK +3 +-------------------------- + When the equipment is upgraded to +7 or above +ATK +4 +-------------------------- +When equipped [ ATK Lava Landstone Type P ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400294# +Vit +2 +-------------------------- + When the equipment is upgraded to +7 or above +Reduces damage from demi-human monsters by 1% +-------------------------- +When equipped [ Cranial Lava Landstone Type P ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400295# +Crit +1, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +7 or above +Crit +2, Crit Dmg +2% +-------------------------- +When equipped [ Fatal Rock Landstone Type P ] 3 pieces +Increases movement speed by 1% +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400296# +ASPD +1% +-------------------------- + When the equipment is upgraded to +7 or above +ASPD +1% +-------------------------- +When equipped [ Rush Rock Landstone Type P ] 3 pieces +Increases movement speed by 1% +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400297# +STR+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +7 or above +STR+1, Increases physical attack against demi-human monsters by 1% +-------------------------- +When equipped [ Bloody Rock Landstone Type P ] 3 pieces +Increases movement speed by 1% +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400298# +DEF +4 +-------------------------- + When the equipment is upgraded to +7 or above +DEF +6 +-------------------------- + When the equipment is upgraded to +9 or above +DEF +7 +-------------------------- + When the equipment is upgraded to +10 or above +Add a 10% resistance against Curse +-------------------------- +When equipped [ DEF Lava Landstone Type R ] 3 pieces +Max HP +3%, Max SP +3%, Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP +4%, Max SP +4%, Increases physical ranged attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Max HP +5%, Max SP +5%, Increases physical ranged attack by 5% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400299# +MDEF +1 +-------------------------- + When the equipment is upgraded to +7 or above +MDEF +2 +-------------------------- + When the equipment is upgraded to +9 or above +MDEF +2 +-------------------------- + When the equipment is upgraded to +10 or above +Add a 10% resistance against Stone Curse +-------------------------- +When equipped [ MDEF Lava Landstone Type R ] 3 pieces +Max HP+3%, Max SP+3%, Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+4%, Max SP+4%, Increases physical ranged attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Max HP+5%, Max SP+5%, Increases physical ranged attack by 5% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400300# +FLEE +2 +-------------------------- + When the equipment is upgraded to +7 or above +FLEE +2 +-------------------------- + When the equipment is upgraded to +9 or above +FLEE +3 +-------------------------- + When the equipment is upgraded to +10 or above +Add a 10% resistance against Confusion +-------------------------- +When equipped [ Flee Lava Landstone Type R ] 3 pieces +Max HP+3%, Max SP+3%, Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+4%, Max SP+4%, Increases physical ranged attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Max HP+5%, Max SP+5%, Increases physical ranged attack by 5% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400301# +DEX +1 +LUK +1 +-------------------------- + When the equipment is upgraded to +7 or above +All Status +1 +-------------------------- + When the equipment is upgraded to +9 or above +All Status +1 +-------------------------- + When the equipment is upgraded to +10 or above +All Status+1 +-------------------------- +When equipped [ All Stat Lava Landstone Type R ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 5% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400302# +ATK +3 +-------------------------- + When the equipment is upgraded to +7 or above +ATK +4 +-------------------------- + When the equipment is upgraded to +9 or above +ATK +5 +-------------------------- + When the equipment is upgraded to +10 or above +Increases physical attack against all types of monsters by 2% +-------------------------- +When equipped [ ATK Lava Landstone Type R ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 5% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400303# +Vit +2 +-------------------------- + When the equipment is upgraded to +7 or above +Reduces damage from demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +Reduces damage from demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +10 or above +When receiving a physical or magical attack +There is a 1% chance to reduce damage from demi-human monsters by 2% for 3 seconds. +-------------------------- +When equipped [ Cranial Lava Landstone Type R ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 5% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400304# +DEF +4 +-------------------------- + When the equipment is upgraded to +7 or above +DEF +6 +-------------------------- + When the equipment is upgraded to +9 or above +DEF +7 +-------------------------- + When the equipment is upgraded to +10 or above +Add a 10% resistance against Curse +-------------------------- +When equipped [ DEF Lava Landstone Type M ] 3 pieces +Max HP +3%, Max SP +3%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP +4%, Max SP +4%, MATK+4%, Reduces variable casting time duration by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Max HP +5%, Max SP +5%, MATK+5%, Reduces variable casting time duration by 5% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400305# +MDEF +1 +-------------------------- + When the equipment is upgraded to +7 or above +MDEF +2 +-------------------------- + When the equipment is upgraded to +9 or above +MDEF +2 +-------------------------- + When the equipment is upgraded to +10 or above +Add a 10% resistance against Stone Curse +-------------------------- +When equipped [ MDEF Lava Landstone Type M ] 3 pieces +Max HP+3%, Max SP+3%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+4%, Max SP+4%, MATK+4%, Reduces variable casting time duration by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Max HP+5%, Max SP+5%, MATK+5%, Reduces variable casting time duration by 5% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400306# +FLEE +2 +-------------------------- + When the equipment is upgraded to +7 or above +FLEE +2 +-------------------------- + When the equipment is upgraded to +9 or above +FLEE +3 +-------------------------- + When the equipment is upgraded to +10 or above +Add a 10% resistance against Confusion +-------------------------- +When equipped [ Flee Lava Landstone Type M ] 3 pieces +Max HP+3%, Max SP+3%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+4%, Max SP+4%, MATK+4%, Reduces variable casting time duration by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Max HP+5%, Max SP+5%, MATK+5%, Reduces variable casting time duration by 5% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400307# +DEX +1 +INT +1 +-------------------------- + When the equipment is upgraded to +7 or above +All Status +1 +-------------------------- + When the equipment is upgraded to +9 or above +All Status +1 +-------------------------- + When the equipment is upgraded to +10 or above +All Status+1 +-------------------------- +When equipped [ All Stat Lava Landstone Type M ] 3 pieces +You gain 20 HP when defeating a monster with a magical attack +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +You gain 20 HP when defeating a monster with a magical attack +MATK+4%, Reduces variable casting time duration by 4% +-------------------------- + When the equipment is upgraded to +9 or above +You gain 30 HP when defeating a monster with a magical attack +MATK+5%, Reduces variable casting time duration by 5% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400308# +MATK +3 +-------------------------- + When the equipment is upgraded to +7 or above +MATK +4 +-------------------------- + When the equipment is upgraded to +9 or above +MATK +5 +-------------------------- + When the equipment is upgraded to +10 or above +Increases magic attack against all monster types by 3% +-------------------------- +When equipped [ MATK Lava Landstone Type M ] 3 pieces +You gain 20 HP when defeating a monster with a magical attack +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +You gain 20 HP when defeating a monster with a magical attack +MATK+4%, Reduces variable casting time duration by 4% +-------------------------- + When the equipment is upgraded to +9 or above +You gain 30 HP when defeating a monster with a magical attack +MATK+5%, Reduces variable casting time duration by 5% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400309# +Vit +2 +-------------------------- + When the equipment is upgraded to +7 or above +Reduces damage from demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +Reduces damage from demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +10 or above +When receiving a physical or magical attack +There is a 1% chance to reduce damage from demi-human monsters by 2% for 3 seconds. +-------------------------- +When equipped [ Cranial Lava Landstone Type M ] 3 pieces +You gain 20 HP when defeating a monster with a magical attack +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +You gain 20 HP when defeating a monster with a magical attack +MATK+4%, Reduces variable casting time duration by 4% +-------------------------- + When the equipment is upgraded to +9 or above +You gain 30 HP when defeating a monster with a magical attack +MATK+5%, Reduces variable casting time duration by 5% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400310# +Reduces the casting time of variable skills by 1% +-------------------------- + When the equipment is upgraded to +7 or above +Reduces the casting time of variable skills by 1% +-------------------------- + When the equipment is upgraded to +9 or above +Reduces the casting time of variable skills by 1% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces the casting time of fixed skills by 10% +-------------------------- +When equipped [ Spell Rock Landstone Type M ] 3 pieces +Increases movement speed by 1% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +MATK+4%, Reduces variable casting time duration by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Increases movement speed by 2% +MATK+5%, Reduces variable casting time duration by 5% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces fixed casting time duration by 0.1 seconds +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400311# +ASPD +1% +-------------------------- + When the equipment is upgraded to +7 or above +ASPD +1% +-------------------------- + When the equipment is upgraded to +9 or above +ASPD +1% +-------------------------- + When the equipment is upgraded to +10 or above +When using magical attacks there is a 1% chance to gain +100% ASPD for 3 seconds. +(Effect does not stack with the same type of effect.) +-------------------------- +When equipped [ Rush Rock Landstone Type M ] 3 pieces +Increases movement speed by 1% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +MATK+4%, Reduces variable casting time duration by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Increases movement speed by 2% +MATK+5%, Reduces variable casting time duration by 5% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces fixed casting time duration by 0.1 seconds +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400312# +INT+1, Increases magic attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +7 or above +INT+1, Increases magic attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +INT+2, Increases magic attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +10 or above +Ignores the magic defense of demi-human monsters by 3% +-------------------------- +When equipped [ Bloody Rock Landstone Type M ] 3 pieces +Increases movement speed by 1% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +MATK+4%, Reduces variable casting time duration by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Increases movement speed by 2% +MATK+5%, Reduces variable casting time duration by 5% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces fixed casting time duration by 0.1 seconds +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400313# +DEF +4 +-------------------------- + When the equipment is upgraded to +7 or above +DEF +6 +-------------------------- + When the equipment is upgraded to +9 or above +DEF +7 +-------------------------- +When equipped [ DEF Lava Landstone Type M ] 3 pieces +Max HP +2%, Max SP +2%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP +3%, Max SP +3%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400314# +MDEF +1 +-------------------------- + When the equipment is upgraded to +7 or above +MDEF +2 +-------------------------- + When the equipment is upgraded to +9 or above +MDEF +2 +-------------------------- +When equipped [ MDEF Lava Landstone Type M ] 3 pieces +Max HP+2%, Max SP+2%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+3%, Max SP+3%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400315# +FLEE +2 +-------------------------- + When the equipment is upgraded to +7 or above +FLEE +2 +-------------------------- + When the equipment is upgraded to +9 or above +FLEE +3 +-------------------------- +When equipped [ Flee Lava Landstone Type M ] 3 pieces +Max HP +2%, Max SP +2%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP +3%, Max SP +3%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400316# +DEX +1 +INT +1 +-------------------------- + When the equipment is upgraded to +7 or above +All Status +1 +-------------------------- + When the equipment is upgraded to +9 or above +All Status +1 +-------------------------- +When equipped [ All Stat Lava Landstone Type M ] 3 pieces +You gain 15 HP when defeating a monster with a magical attack +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +You gain 15 HP when defeating a monster with a magical attack +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400317# +MATK +3 +-------------------------- + When the equipment is upgraded to +7 or above +MATK +4 +-------------------------- + When the equipment is upgraded to +9 or above +MATK +5 +-------------------------- +When equipped [ MATK Lava Landstone Type M ] 3 pieces +You gain 15 HP when defeating a monster with a magical attack +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +You gain 15 HP when defeating a monster with a magical attack +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400318# +Vit +2 +-------------------------- + When the equipment is upgraded to +7 or above +Reduces damage from demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +Reduces damage from demi-human monsters by 1% +-------------------------- +When equipped [ Cranial Lava Landstone Type M ] 3 pieces +You gain 15 HP when defeating a monster with a magical attack +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +You gain 15 HP when defeating a monster with a magical attack +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400319# +Reduces the casting time of variable skills by 1% +-------------------------- + When the equipment is upgraded to +7 or above +Reduces the casting time of variable skills by 1% +-------------------------- + When the equipment is upgraded to +9 or above +Reduces the casting time of variable skills by 1% +-------------------------- +When equipped [ Spell Rock Landstone Type M ] 3 pieces +Increases movement speed by 1% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400320# +ASPD +1% +-------------------------- + When the equipment is upgraded to +7 or above +ASPD +1% +-------------------------- + When the equipment is upgraded to +9 or above +ASPD +1% +-------------------------- +When equipped [ Rush Rock Landstone Type M ] 3 pieces +Increases movement speed by 1% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400321# +INT+1, Increases magic attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +7 or above +INT+1, Increases magic attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +INT+2, Increases magic attack against demi-human monsters by 1% +-------------------------- +When equipped [ Bloody Rock Landstone Type M ] 3 pieces +Increases movement speed by 1% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400322# +DEF +4 +-------------------------- + When the equipment is upgraded to +7 or above +DEF +6 +-------------------------- +When equipped [ DEF Lava Landstone Type M ] 3 pieces +Max HP+1%, Max SP+1% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+2%, Max SP+2%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400323# +MDEF +1 +-------------------------- + When the equipment is upgraded to +7 or above +MDEF +2 +-------------------------- +When equipped [ MDEF Lava Landstone Type M ] 3 pieces +Max HP+1%, Max SP+1% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+2%, Max SP+2%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400324# +FLEE +2 +-------------------------- + When the equipment is upgraded to +7 or above +FLEE +2 +-------------------------- +When equipped [ Flee Lava Landstone Type M ] 3 pieces +Max HP+1%, Max SP+1% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+2%, Max SP+2%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400325# +DEX +1 +INT +1 +-------------------------- + When the equipment is upgraded to +7 or above +All Status +1 +-------------------------- +When equipped [ All Stat Lava Landstone Type M ] 3 pieces +You gain 10 HP when defeating a monster with a magical attack +-------------------------- + When the equipment is upgraded to +7 or above +You gain 10 HP when defeating a monster with a magical attack, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400326# +MATK +3 +-------------------------- + When the equipment is upgraded to +7 or above +MATK +4 +-------------------------- +When equipped [ MATK Lava Landstone Type M ] 3 pieces +You gain 10 HP when defeating a monster with a magical attack +-------------------------- + When the equipment is upgraded to +7 or above +You gain 10 HP when defeating a monster with a magical attack, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400327# +Vit +2 +-------------------------- + When the equipment is upgraded to +7 or above +Reduces damage from demi-human monsters by 1% +-------------------------- +When equipped [ Cranial Lava Landstone Type M ] 3 pieces +You gain 10 HP when defeating a monster with a magical attack +-------------------------- + When the equipment is upgraded to +7 or above +You gain 10 HP when defeating a monster with a magical attack, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400328# +Reduces the casting time of variable skills by 1% +-------------------------- + When the equipment is upgraded to +7 or above +Reduces the casting time of variable skills by 1% +-------------------------- +When equipped [ Spell Rock Landstone Type M ] 3 pieces +Increases movement speed by 1% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400329# +ASPD +1% +-------------------------- + When the equipment is upgraded to +7 or above +ASPD +1% +-------------------------- +When equipped [ Rush Rock Landstone Type M ] 3 pieces +Increases movement speed by 1% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400330# +INT+1, Increases magic attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +7 or above +INT+1, Increases magic attack against demi-human monsters by 1% +-------------------------- +When equipped [ Bloody Rock Landstone Type M ] 3 pieces +Increases movement speed by 1% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400331# +DEF +4 +-------------------------- + When the equipment is upgraded to +7 or above +DEF +6 +-------------------------- + When the equipment is upgraded to +9 or above +DEF +7 +-------------------------- + When the equipment is upgraded to +10 or above +Add a 10% resistance against Curse +-------------------------- +When equipped [ DEF Lava Landstone Type R ] 3 pieces +Max HP +3%, Max SP +3%, Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP +4%, Max SP +4%, Increases physical ranged attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Max HP +5%, Max SP +5%, Increases physical ranged attack by 5% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400332# +MDEF +1 +-------------------------- + When the equipment is upgraded to +7 or above +MDEF +2 +-------------------------- + When the equipment is upgraded to +9 or above +MDEF +2 +-------------------------- + When the equipment is upgraded to +10 or above +Add a 10% resistance against Stone Curse +-------------------------- +When equipped [ MDEF Lava Landstone Type R ] 3 pieces +Max HP+3%, Max SP+3%, Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+4%, Max SP+4%, Increases physical ranged attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Max HP+5%, Max SP+5%, Increases physical ranged attack by 5% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400333# +FLEE +2 +-------------------------- + When the equipment is upgraded to +7 or above +FLEE +2 +-------------------------- + When the equipment is upgraded to +9 or above +FLEE +3 +-------------------------- + When the equipment is upgraded to +10 or above +Add a 10% resistance against Confusion +-------------------------- +When equipped [ Flee Lava Landstone Type R ] 3 pieces +Max HP+3%, Max SP+3%, Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+4%, Max SP+4%, Increases physical ranged attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Max HP+5%, Max SP+5%, Increases physical ranged attack by 5% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400334# +DEX +1 +LUK +1 +-------------------------- + When the equipment is upgraded to +7 or above +All Status +1 +-------------------------- + When the equipment is upgraded to +9 or above +All Status +1 +-------------------------- + When the equipment is upgraded to +10 or above +All Status+1 +-------------------------- +When equipped [ All Stat Lava Landstone Type R ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 5% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400335# +ATK +3 +-------------------------- + When the equipment is upgraded to +7 or above +ATK +4 +-------------------------- + When the equipment is upgraded to +9 or above +ATK +5 +-------------------------- + When the equipment is upgraded to +10 or above +Increases physical attack against all types of monsters by 2% +-------------------------- +When equipped [ ATK Lava Landstone Type R ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 5% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400336# +Vit +2 +-------------------------- + When the equipment is upgraded to +7 or above +Reduces damage from demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +Reduces damage from demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +10 or above +When receiving a physical or magical attack +There is a 1% chance to reduce damage from demi-human monsters by 2% for 3 seconds. +-------------------------- +When equipped [ Cranial Lava Landstone Type R ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 5% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400337# +Crit +1, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +7 or above +Crit +2, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +9 or above +Crit +2, Crit Dmg +3% +-------------------------- + When the equipment is upgraded to +10 or above +Ignores enemy's physical defense by 3% +-------------------------- +When equipped [ Fatal Rock Landstone Type R ] 3 pieces +Increases movement speed by 1% +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 1% +Increases physical ranged attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Increases movement speed by 1% +Increases physical ranged attack by 5% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces fixed casting time duration by 0.1 seconds +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400338# +ASPD +1% +-------------------------- + When the equipment is upgraded to +7 or above +ASPD +1% +-------------------------- + When the equipment is upgraded to +9 or above +ASPD +1% +-------------------------- + When the equipment is upgraded to +10 or above +When performing physical attacks, there is a 2% chance to gain +100% ASPD for 3 seconds. +(Effect does not stack with the same type of effect.) +-------------------------- +When equipped [ Rush Rock Landstone Type R ] 3 pieces +Increases movement speed by 1% +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 1% +Increases physical ranged attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Increases movement speed by 1% +Increases physical ranged attack by 5% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces fixed casting time duration by 0.1 seconds +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400339# +DEX+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +7 or above +DEX+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +DEX+2, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +10 or above +Ignores physical defense against demi-human monsters by 3% +-------------------------- +When equipped [ Bloody Rock Landstone Type R ] 3 pieces +Increases movement speed by 1% +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 1% +Increases physical ranged attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Increases movement speed by 1% +Increases physical ranged attack by 5% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces fixed casting time duration by 0.1 seconds +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400340# +DEF +4 +-------------------------- + When the equipment is upgraded to +7 or above +DEF +6 +-------------------------- + When the equipment is upgraded to +9 or above +DEF +7 +-------------------------- +When equipped [ DEF Lava Landstone Type R ] 3 pieces +Max HP +2%, Max SP +2%, Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP +3%, Max SP +3%, Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400341# +MDEF +1 +-------------------------- + When the equipment is upgraded to +7 or above +MDEF +2 +-------------------------- + When the equipment is upgraded to +9 or above +MDEF +2 +-------------------------- +When equipped [ MDEF Lava Landstone Type R ] 3 pieces +Max HP+2%, Max SP+2%, Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+3%, Max SP+3%, Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400342# +FLEE +2 +-------------------------- + When the equipment is upgraded to +7 or above +FLEE +2 +-------------------------- + When the equipment is upgraded to +9 or above +FLEE +3 +-------------------------- +When equipped [ Flee Lava Landstone Type R ] 3 pieces +Max HP +2%, Max SP +2%, Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP +3%, Max SP +3%, Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400343# +DEX +1 +LUK +1 +-------------------------- + When the equipment is upgraded to +7 or above +All Status +1 +-------------------------- + When the equipment is upgraded to +9 or above +All Status +1 +-------------------------- +When equipped [ All Stat Lava Landstone Type R ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400344# +ATK +3 +-------------------------- + When the equipment is upgraded to +7 or above +ATK +4 +-------------------------- + When the equipment is upgraded to +9 or above +ATK +5 +-------------------------- +When equipped [ ATK Lava Landstone Type R ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400345# +Vit +2 +-------------------------- + When the equipment is upgraded to +7 or above +Reduces damage from demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +Reduces damage from demi-human monsters by 1% +-------------------------- +When equipped [ Cranial Lava Landstone Type R ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400346# +Crit +1, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +7 or above +Crit +2, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +9 or above +Crit +2, Crit Dmg +3% +-------------------------- +When equipped [ Fatal Rock Landstone Type R ] 3 pieces +Increases movement speed by 1% +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400347# +ASPD +1% +-------------------------- + When the equipment is upgraded to +7 or above +ASPD +1% +-------------------------- + When the equipment is upgraded to +9 or above +ASPD +1% +-------------------------- +When equipped [ Rush Rock Landstone Type R ] 3 pieces +Increases movement speed by 1% +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400348# +DEX+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +7 or above +DEX+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +DEX+2, Increases physical attack against demi-human monsters by 1% +-------------------------- +When equipped [ Bloody Rock Landstone Type R ] 3 pieces +Increases movement speed by 1% +Increases physical ranged attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400349# +Reduces attack received from fire elemental attributes by 2% +-------------------------- +Type: Etc +Position: Accessory +Weight: 1 +# +2400350# +Reduces attack received from earth elemental attributes by 2% +-------------------------- +Type: Etc +Position: Accessory +Weight: 1 +# +2400351# +Reduces damage received from ranged attacks by 2% +-------------------------- +Type: Etc +Position: Accessory +Weight: 1 +# +2400352# +DEF +4 +-------------------------- + When the equipment is upgraded to +7 or above +DEF +6 +-------------------------- +When equipped [ DEF Lava Landstone Type R ] 3 pieces +Max HP +1%, Max SP +1% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+2%, Max SP+2%, Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400353# +MDEF +1 +-------------------------- + When the equipment is upgraded to +7 or above +MDEF +2 +-------------------------- +When equipped [ MDEF Lava Landstone Type R ] 3 pieces +Max HP +1%, Max SP +1% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+2%, Max SP+2%, Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400354# +FLEE +2 +-------------------------- + When the equipment is upgraded to +7 or above +FLEE +2 +-------------------------- +When equipped [ Flee Lava Landstone Type R ] 3 pieces +Max HP +1%, Max SP +1% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+2%, Max SP+2%, Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400355# +DEX +1 +LUK +1 +-------------------------- + When the equipment is upgraded to +7 or above +All Status +1 +-------------------------- +When equipped [ All Stat Lava Landstone Type R ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400356# +ATK +3 +-------------------------- + When the equipment is upgraded to +7 or above +ATK +4 +-------------------------- +When equipped [ ATK Lava Landstone Type R ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400357# +Vit +2 +-------------------------- + When the equipment is upgraded to +7 or above +Reduces damage from demi-human monsters by 1% +-------------------------- +When equipped [ Cranial Lava Landstone Type R ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400358# +Crit +1, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +7 or above +Crit +2, Crit Dmg +2% +-------------------------- +When equipped [ Fatal Rock Landstone Type R ] 3 pieces +Increases movement speed by 1% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400359# +ASPD +1% +-------------------------- + When the equipment is upgraded to +7 or above +ASPD +1% +-------------------------- +When equipped [ Rush Rock Landstone Type R ] 3 pieces +Increases movement speed by 1% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400360# +DEX+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +7 or above +DEX+1, Increases physical attack against demi-human monsters by 1% +-------------------------- +When equipped [ Bloody Rock Landstone Type R ] 3 pieces +Increases movement speed by 1% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases physical ranged attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400361# +Reduces attack received from fire elemental attributes by 1% +-------------------------- +Type: Etc +Position: Accessory +Weight: 1 +# +2400362# +Reduces attack received from earth elemental attributes by 1% +-------------------------- +Type: Etc +Position: Accessory +Weight: 1 +# +2400363# +Reduces damage received from ranged attacks by 1% +-------------------------- +Type: Etc +Position: Accessory +Weight: 1 +# +2400364# +DEF +4 +-------------------------- + When the equipment is upgraded to +7 or above +DEF +6 +-------------------------- + When the equipment is upgraded to +9 or above +DEF +7 +-------------------------- + When the equipment is upgraded to +10 or above +Add a 10% resistance against Curse +-------------------------- +When equipped [ DEF Lava Landstone Type P ] 3 pieces +Max HP +3%, Max SP +3%, Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP +4%, Max SP +4%, Increases melee physical attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Max HP +5%, Max SP +5%, Increases melee physical attack by 5% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400365# +MDEF +1 +-------------------------- + When the equipment is upgraded to +7 or above +MDEF +2 +-------------------------- + When the equipment is upgraded to +9 or above +MDEF +2 +-------------------------- + When the equipment is upgraded to +10 or above +Add a 10% resistance against Stone Curse +-------------------------- +When equipped [ MDEF Lava Landstone Type P ] 3 pieces +Max HP+3%, Max SP+3%, Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+4%, Max SP+4%, Increases melee physical attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Max HP+5%, Max SP+5%, Increases melee physical attack by 5% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400366# +FLEE +2 +-------------------------- + When the equipment is upgraded to +7 or above +FLEE +2 +-------------------------- + When the equipment is upgraded to +9 or above +FLEE +3 +-------------------------- + When the equipment is upgraded to +10 or above +Add a 10% resistance against Confusion +-------------------------- +When equipped [ Flee Lava Landstone Type P ] 3 pieces +Max HP+3%, Max SP+3%, Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+4%, Max SP+4%, Increases melee physical attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Max HP+5%, Max SP+5%, Increases melee physical attack by 5% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400367# +STR +1 +LUK +1 +-------------------------- + When the equipment is upgraded to +7 or above +All Status +1 +-------------------------- + When the equipment is upgraded to +9 or above +All Status +1 +-------------------------- + When the equipment is upgraded to +10 or above +All Status+1 +-------------------------- +When equipped [ All Stat Lava Landstone Type P ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 5% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400368# +ATK +3 +-------------------------- + When the equipment is upgraded to +7 or above +ATK +4 +-------------------------- + When the equipment is upgraded to +9 or above +ATK +5 +-------------------------- + When the equipment is upgraded to +10 or above +Increases physical attack against all types of monsters by 2% +-------------------------- +When equipped [ ATK Lava Landstone Type P ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 5% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400369# +Vit +2 +-------------------------- + When the equipment is upgraded to +7 or above +Reduces damage from demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +Reduces damage from demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +10 or above +When receiving a physical or magical attack +There is a 1% chance to reduce damage from demi-human monsters by 2% for 3 seconds. +-------------------------- +When equipped [ Cranial Lava Landstone Type P ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 5% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400370# +Crit +1, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +7 or above +Crit +2, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +9 or above +Crit +2, Crit Dmg +3% +-------------------------- + When the equipment is upgraded to +10 or above +Ignores enemy's physical defense by 3% +-------------------------- +When equipped [ Fatal Rock Landstone Type P ] 3 pieces +Increases movement speed by 1% +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 1% +Increases melee physical attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Increases movement speed by 1% +Increases melee physical attack by 5% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces fixed casting time duration by 0.1 seconds +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400371# +ASPD +1% +-------------------------- + When the equipment is upgraded to +7 or above +ASPD +1% +-------------------------- + When the equipment is upgraded to +9 or above +ASPD +1% +-------------------------- + When the equipment is upgraded to +10 or above +When performing physical attacks, there is a 2% chance to gain +100% ASPD for 3 seconds +(Effect does not stack with the same type of effect.) +-------------------------- +When equipped [ Rush Rock Landstone Type P ] 3 pieces +Increases movement speed by 1% +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 1% +Increases melee physical attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Increases movement speed by 1% +Increases melee physical attack by 5% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces fixed casting time duration by 0.1 seconds +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400372# +STR+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +7 or above +STR+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +STR+2, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +10 or above +Ignores physical defense against demi-human monsters by 3% +-------------------------- +When equipped [ Bloody Rock Landstone Type P ] 3 pieces +Increases movement speed by 1% +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases melee physical attack by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Increases movement speed by 2% +Increases melee physical attack by 5% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces fixed casting time duration by 0.1 seconds +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400373# +DEF +4 +-------------------------- + When the equipment is upgraded to +7 or above +DEF +6 +-------------------------- + When the equipment is upgraded to +9 or above +DEF +7 +-------------------------- +When equipped [ DEF Lava Landstone Type P ] 3 pieces +Max HP +2%, Max SP +2%, Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP +3%, Max SP +3%, Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400374# +MDEF +1 +-------------------------- + When the equipment is upgraded to +7 or above +MDEF +2 +-------------------------- + When the equipment is upgraded to +9 or above +MDEF +2 +-------------------------- +When equipped [ MDEF Lava Landstone Type P ] 3 pieces +Max HP+2%, Max SP+2%, Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+3%, Max SP+3%, Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400375# +FLEE +2 +-------------------------- + When the equipment is upgraded to +7 or above +FLEE +2 +-------------------------- + When the equipment is upgraded to +9 or above +FLEE +3 +-------------------------- +When equipped [ Flee Lava Landstone Type P ] 3 pieces +Max HP +2%, Max SP +2%, Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP +3%, Max SP +3%, Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400376# +STR +1 +LUK +1 +-------------------------- + When the equipment is upgraded to +7 or above +All Status +1 +-------------------------- + When the equipment is upgraded to +9 or above +All Status +1 +-------------------------- +When equipped [ All Stat Lava Landstone Type P ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400377# +ATK +3 +-------------------------- + When the equipment is upgraded to +7 or above +ATK +4 +-------------------------- + When the equipment is upgraded to +9 or above +ATK +5 +-------------------------- +When equipped [ ATK Lava Landstone Type P ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400378# +Vit +2 +-------------------------- + When the equipment is upgraded to +7 or above +Reduces damage from demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +Reduces damage from demi-human monsters by 1% +-------------------------- +When equipped [ Cranial Lava Landstone Type P ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400379# +Crit +1, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +7 or above +Crit +2, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +9 or above +Crit +2, Crit Dmg +3% +-------------------------- +When equipped [ Fatal Rock Landstone Type P ] 3 pieces +Increases movement speed by 1% +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400380# +ASPD +1% +-------------------------- + When the equipment is upgraded to +7 or above +ASPD +1% +-------------------------- + When the equipment is upgraded to +9 or above +ASPD +1% +-------------------------- +When equipped [ Rush Rock Landstone Type P ] 3 pieces +Increases movement speed by 1% +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400381# +STR+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +7 or above +STR+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +STR+2, Increases physical attack against demi-human monsters by 1% +-------------------------- +When equipped [ Bloody Rock Landstone Type P ] 3 pieces +Increases movement speed by 1% +Increases melee physical attack by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400382# +There is a 2% chance to gain HP equal to 5% of the damage dealt to the enemy per attack +-------------------------- +Can be used in only 1 slot +-------------------------- +Type: Etc +Position: Headgear +Weight: 1 +# +2400383# +There is a 1% chance to gain SP equal to 1% of the damage dealt to the enemy per attack +-------------------------- +Can be used in only 1 slot +-------------------------- +Type: Etc +Position: Headgear +Weight: 1 +# +2400384# +DEF +4 +-------------------------- + When the equipment is upgraded to +7 or above +DEF +6 +-------------------------- +When equipped [ DEF Lava Landstone Type P ] 3 pieces +Max HP +1%, Max SP +1% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+2%, Max SP+2%, Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400385# +MDEF +1 +-------------------------- + When the equipment is upgraded to +7 or above +MDEF +2 +-------------------------- +When equipped [ MDEF Lava Landstone Type P ] 3 pieces +Max HP +1%, Max SP +1% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+2%, Max SP+2%, Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400386# +FLEE +2 +-------------------------- + When the equipment is upgraded to +7 or above +FLEE +2 +-------------------------- +When equipped [ Flee Lava Landstone Type P ] 3 pieces +Max HP +1%, Max SP +1% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+2%, Max SP+2%, Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400387# +STR +1 +LUK +1 +-------------------------- + When the equipment is upgraded to +7 or above +All Status +1 +-------------------------- +When equipped [ All Stat Lava Landstone Type P ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400388# +ATK +3 +-------------------------- + When the equipment is upgraded to +7 or above +ATK +4 +-------------------------- +When equipped [ ATK Lava Landstone Type P ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400389# +Vit +2 +-------------------------- + When the equipment is upgraded to +7 or above +Reduces damage from demi-human monsters by 1% +-------------------------- +When equipped [ Cranial Lava Landstone Type P ] 3 pieces +Gain 1 SP when defeating a monster with a physical attack +-------------------------- + When the equipment is upgraded to +7 or above +Gain 1 SP when defeating a monster with a physical attack +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400390# +Crit +1, Crit Dmg +2% +-------------------------- + When the equipment is upgraded to +7 or above +Crit +2, Crit Dmg +2% +-------------------------- +When equipped [ Fatal Rock Landstone Type P ] 3 pieces +Increases movement speed by 1% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400391# +ASPD +1% +-------------------------- + When the equipment is upgraded to +7 or above +ASPD +1% +-------------------------- +When equipped [ Rush Rock Landstone Type P ] 3 pieces +Increases movement speed by 1% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400392# +STR+1, Increases physical attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +7 or above +STR+1, Increases physical attack against demi-human monsters by 1% +-------------------------- +When equipped [ Bloody Rock Landstone Type P ] 3 pieces +Increases movement speed by 1% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +Increases melee physical attack by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400393# +DEF +4 +-------------------------- + When the equipment is upgraded to +7 or above +DEF +6 +-------------------------- + When the equipment is upgraded to +9 or above +DEF +7 +-------------------------- + When the equipment is upgraded to +10 or above +Add a 10% resistance against Curse +-------------------------- +When equipped [ DEF Lava Landstone Type M ] 3 pieces +Max HP +3%, Max SP +3%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP +4%, Max SP +4%, MATK+4%, Reduces variable casting time duration by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Max HP +5%, Max SP +5%, MATK+5%, Reduces variable casting time duration by 5% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400394# +MDEF +1 +-------------------------- + When the equipment is upgraded to +7 or above +MDEF +2 +-------------------------- + When the equipment is upgraded to +9 or above +MDEF +2 +-------------------------- + When the equipment is upgraded to +10 or above +Add a 10% resistance against Stone Curse +-------------------------- +When equipped [ MDEF Lava Landstone Type M ] 3 pieces +Max HP+3%, Max SP+3%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+4%, Max SP+4%, MATK+4%, Reduces variable casting time duration by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Max HP+5%, Max SP+5%, MATK+5%, Reduces variable casting time duration by 5% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400395# +FLEE +2 +-------------------------- + When the equipment is upgraded to +7 or above +FLEE +2 +-------------------------- + When the equipment is upgraded to +9 or above +FLEE +3 +-------------------------- + When the equipment is upgraded to +10 or above +Add a 10% resistance against Confusion +-------------------------- +When equipped [ Flee Lava Landstone Type M ] 3 pieces +Max HP+3%, Max SP+3%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+4%, Max SP+4%, MATK+4%, Reduces variable casting time duration by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Max HP+5%, Max SP+5%, MATK+5%, Reduces variable casting time duration by 5% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400396# +DEX +1 +INT +1 +-------------------------- + When the equipment is upgraded to +7 or above +All Status +1 +-------------------------- + When the equipment is upgraded to +9 or above +All Status +1 +-------------------------- + When the equipment is upgraded to +10 or above +All Status+1 +-------------------------- +When equipped [ All Stat Lava Landstone Type M ] 3 pieces +You gain 20 HP when defeating a monster with a magical attack +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +You gain 20 HP when defeating a monster with a magical attack +MATK+4%, Reduces variable casting time duration by 4% +-------------------------- + When the equipment is upgraded to +9 or above +You gain 30 HP when defeating a monster with a magical attack +MATK+5%, Reduces variable casting time duration by 5% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400397# +MATK +3 +-------------------------- + When the equipment is upgraded to +7 or above +MATK +4 +-------------------------- + When the equipment is upgraded to +9 or above +MATK +5 +-------------------------- + When the equipment is upgraded to +10 or above +Increases magic attack against all monster types by 3% +-------------------------- +When equipped [ MATK Lava Landstone Type M ] 3 pieces +You gain 20 HP when defeating a monster with a magical attack +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +You gain 20 HP when defeating a monster with a magical attack +MATK+4%, Reduces variable casting time duration by 4% +-------------------------- + When the equipment is upgraded to +9 or above +You gain 30 HP when defeating a monster with a magical attack +MATK+5%, Reduces variable casting time duration by 5% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400398# +Vit +2 +-------------------------- + When the equipment is upgraded to +7 or above +Reduces damage from demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +Reduces damage from demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +10 or above +When receiving a physical or magical attack +There is a 1% chance to reduce damage from demi-human monsters by 2% for 3 seconds. +-------------------------- +When equipped [ Cranial Lava Landstone Type M ] 3 pieces +You gain 20 HP when defeating a monster with a magical attack +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +You gain 20 HP when defeating a monster with a magical attack +MATK+4%, Reduces variable casting time duration by 4% +-------------------------- + When the equipment is upgraded to +9 or above +You gain 20 HP when defeating a monster with a magical attack +MATK+5%, Reduces variable casting time duration by 5% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400399# +Reduces the casting time of variable skills by 1% +-------------------------- + When the equipment is upgraded to +7 or above +Reduces the casting time of variable skills by 1% +-------------------------- + When the equipment is upgraded to +9 or above +Reduces the casting time of variable skills by 1% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces the casting time of fixed skills by 10% +-------------------------- +When equipped [ Spell Rock Landstone Type M ] 3 pieces +Increases movement speed by 1% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +MATK+4%, Reduces variable casting time duration by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Increases movement speed by 2% +MATK+5%, Reduces variable casting time duration by 5% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces fixed casting time duration by 0.1 seconds +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400400# +ASPD +1% +-------------------------- + When the equipment is upgraded to +7 or above +ASPD +1% +-------------------------- + When the equipment is upgraded to +9 or above +ASPD +1% +-------------------------- + When the equipment is upgraded to +10 or above +When using magical attacks, there is a 1% chance to gain +100% ASPD for 3 seconds +(Effect does not stack with the same type of effect.) +-------------------------- +When equipped [ Rush Rock Landstone Type M ] 3 pieces +Increases movement speed by 1% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +MATK+4%, Reduces variable casting time duration by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Increases movement speed by 2% +MATK+5%, Reduces variable casting time duration by 5% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces fixed casting time duration by 0.1 seconds +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400401# +INT+1, Increases magic attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +7 or above +INT+1, Increases magic attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +INT+2, Increases magic attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +10 or above +Ignores the magic defense of demi-human monsters by 3% +-------------------------- +When equipped [ Bloody Rock Landstone Type M ] 3 pieces +Increases movement speed by 1% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +MATK+4%, Reduces variable casting time duration by 4% +-------------------------- + When the equipment is upgraded to +9 or above +Increases movement speed by 2% +MATK+5%, Reduces variable casting time duration by 5% +-------------------------- + When the equipment is upgraded to +10 or above +Reduces fixed casting time duration by 0.1 seconds +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400402# +DEF +4 +-------------------------- + When the equipment is upgraded to +7 or above +DEF +6 +-------------------------- + When the equipment is upgraded to +9 or above +DEF +7 +-------------------------- +When equipped [ DEF Lava Landstone Type M ] 3 pieces +Max HP +2%, Max SP +2%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP +3%, Max SP +3%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400403# +MDEF +1 +-------------------------- + When the equipment is upgraded to +7 or above +MDEF +2 +-------------------------- + When the equipment is upgraded to +9 or above +MDEF +2 +-------------------------- +When equipped [ MDEF Lava Landstone Type M ] 3 pieces +Max HP+2%, Max SP+2%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+3%, Max SP+3%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400404# +FLEE +2 +-------------------------- + When the equipment is upgraded to +7 or above +FLEE +2 +-------------------------- + When the equipment is upgraded to +9 or above +FLEE +3 +-------------------------- +When equipped [ Flee Lava Landstone Type M ] 3 pieces +Max HP +2%, Max SP +2%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP +3%, Max SP +3%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400405# +DEX +1 +INT +1 +-------------------------- + When the equipment is upgraded to +7 or above +All Status +1 +-------------------------- + When the equipment is upgraded to +9 or above +All Status +1 +-------------------------- +When equipped [ All Stat Lava Landstone Type M ] 3 pieces +You gain 15 HP when defeating a monster with a magical attack +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +You gain 15 HP when defeating a monster with a magical attack +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400406# +MATK +3 +-------------------------- + When the equipment is upgraded to +7 or above +MATK +4 +-------------------------- + When the equipment is upgraded to +9 or above +MATK +5 +-------------------------- +When equipped [ MATK Lava Landstone Type M ] 3 pieces +You gain 15 HP when defeating a monster with a magical attack +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +You gain 15 HP when defeating a monster with a magical attack +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400407# +Vit +2 +-------------------------- + When the equipment is upgraded to +7 or above +Reduces damage from demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +Reduces damage from demi-human monsters by 1% +-------------------------- +When equipped [ Cranial Lava Landstone Type M ] 3 pieces +You gain 15 HP when defeating a monster with a magical attack +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +You gain 15 HP when defeating a monster with a magical attack +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400408# +Reduces the casting time of variable skills by 1% +-------------------------- + When the equipment is upgraded to +7 or above +Reduces the casting time of variable skills by 1% +-------------------------- + When the equipment is upgraded to +9 or above +Reduces the casting time of variable skills by 1% +-------------------------- +When equipped [ Spell Rock Landstone Type M ] 3 pieces +Increases movement speed by 1% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400409# +ASPD +1% +-------------------------- + When the equipment is upgraded to +7 or above +ASPD +1% +-------------------------- + When the equipment is upgraded to +9 or above +ASPD +1% +-------------------------- +When equipped [ Rush Rock Landstone Type M ] 3 pieces +Increases movement speed by 1% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400410# +INT+1, Increases magic attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +7 or above +INT+1, Increases magic attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +9 or above +INT+2, Increases magic attack against demi-human monsters by 1% +-------------------------- +When equipped [ Bloody Rock Landstone Type M ] 3 pieces +Increases movement speed by 1% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400411# +DEF +4 +-------------------------- + When the equipment is upgraded to +7 or above +DEF +6 +-------------------------- +When equipped [ DEF Lava Landstone Type M ] 3 pieces +Max HP+1%, Max SP+1% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+2%, Max SP+2%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400412# +MDEF +1 +-------------------------- + When the equipment is upgraded to +7 or above +MDEF +2 +-------------------------- +When equipped [ MDEF Lava Landstone Type M ] 3 pieces +Max HP+1%, Max SP+1% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+2%, Max SP+2%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400413# +FLEE +2 +-------------------------- + When the equipment is upgraded to +7 or above +FLEE +2 +-------------------------- +When equipped [ Flee Lava Landstone Type M ] 3 pieces +Max HP+1%, Max SP+1% +-------------------------- + When the equipment is upgraded to +7 or above +Max HP+2%, Max SP+2%, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Armor +Weight: 1 +# +2400414# +DEX +1 +INT +1 +-------------------------- + When the equipment is upgraded to +7 or above +All Status +1 +-------------------------- +When equipped [ All Stat Lava Landstone Type M ] 3 pieces +You gain 10 HP when defeating a monster with a magical attack +-------------------------- + When the equipment is upgraded to +7 or above +You gain 10 HP when defeating a monster with a magical attack, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400415# +MATK +3 +-------------------------- + When the equipment is upgraded to +7 or above +MATK +4 +-------------------------- +When equipped [ MATK Lava Landstone Type M ] 3 pieces +You gain 10 HP when defeating a monster with a magical attack +-------------------------- + When the equipment is upgraded to +7 or above +You gain 10 HP when defeating a monster with a magical attack, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400416# +Vit +2 +-------------------------- + When the equipment is upgraded to +7 or above +Reduces damage from demi-human monsters by 1% +-------------------------- +When equipped [ Cranial Lava Landstone Type M ] 3 pieces +You gain 10 HP when defeating a monster with a magical attack +-------------------------- + When the equipment is upgraded to +7 or above +You gain 10 HP when defeating a monster with a magical attack, MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Garment +Weight: 1 +# +2400417# +Reduces the casting time of variable skills by 1% +-------------------------- + When the equipment is upgraded to +7 or above +Reduces the casting time of variable skills by 1% +-------------------------- +When equipped [ Spell Rock Landstone Type M ] 3 pieces +Increases movement speed by 1% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400418# +ASPD +1% +-------------------------- + When the equipment is upgraded to +7 or above +ASPD +1% +-------------------------- +When equipped [ Rush Rock Landstone Type M ] 3 pieces +Increases movement speed by 1% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400419# +INT+1, Increases magic attack against demi-human monsters by 1% +-------------------------- + When the equipment is upgraded to +7 or above +INT+1, Increases magic attack against demi-human monsters by 1% +-------------------------- +When equipped [ Bloody Rock Landstone Type M ] 3 pieces +Increases movement speed by 1% +-------------------------- + When the equipment is upgraded to +7 or above +Increases movement speed by 2% +MATK+3%, Reduces variable casting time duration by 3% +-------------------------- +Type: Etc +Position: Footgear +Weight: 1 +# +2400420# +An ancient artifact discovered near Thor Volcano, covered in ash from a volcanic eruption +It is believed that this EA object fuses the power of fire with the mystery of the land's veins. +It may be the key to unlocking the dormant power within the volcano +-------------------------- +Weight: 1 +# +2400421# +The rare fur of the tiger, the king of the great jungle +When collected in the specified amount, it will unlock the power hidden within. +-------------------------- +Weight: 0 +# +2400422# +The golden whiskers of the leader of the Thief Bug tribe +When collected in the specified amount, it will unlock the power hidden within. +-------------------------- +Weight: 0 +# +2400423# +The precious egg of Mother Maya, before it hatches her offspring +When collected in the specified amount, it will unlock the power hidden within. +-------------------------- +Weight: 0 +# +2400424# +The tusk of the mighty King of the Giant Orcs +When collected in the specified amount, it will unlock the power hidden within. +-------------------------- +Weight: 0 +# +2400425# +The mysterious bandages of the controller of the deepest pyramid level. +When collected in the specified amount, it will unlock the power hidden within. +-------------------------- +Weight: 0 +# +2400426# +A cute toy resembling the Baphomet +When collected in the specified amount, it will unlock the power hidden within. +-------------------------- +Weight: 0 +# +2400427# +A gold pendant, one of the accessories of the Orc Hero +When collected in the specified amount, it will unlock the power hidden within. +-------------------------- +Weight: 0 +# +2400428# +Auspicious oranges Symbolize wealth, prosperity, and good fortune. +-------------------------- +This item will disappear after the event period ends. +-------------------------- +Weight: 0 +# +2400429# +Auspicious apples In addition to their auspicious color, they symbolize perfect health and freedom from illness +-------------------------- +This item will disappear after the event period ends. +-------------------------- +Weight: 0 +# +2400430# +Auspicious bananas symbolize a flourishing family, while their golden color represents wealth +-------------------------- +This item will disappear after the event period ends. +-------------------------- +Weight: 0 +# +2400431# +Auspicious grapes Clustered in form, it represents a thriving family and continuous good fortune throughout the year. +-------------------------- +This item will disappear after the event period ends. +-------------------------- +Weight: 0 +# +2400432# +Auspicious fragrant coconut symbolizes prosperity and abundant fortune. +-------------------------- +This item will disappear after the event period ends. +-------------------------- +Weight: 0 +# +2400433# +The worship set includes fruits and various auspicious items that symbolize the good fortune and prosperity one wishes to encounter. +-------------------------- +This item will disappear after the event period ends. +-------------------------- +Weight: 0 +# +2400434# +The red envelopes received from Grandma can be collected in large quantities and exchanged for various items during the Chinese New Year period. +-------------------------- +This item will disappear after the event period ends. +-------------------------- +Weight: 0 +# +2400435# +Incense for worshipping deities or ancestors +-------------------------- +This item will disappear after the event period ends. +-------------------------- +Weight: 0 +# +2400436# +Candles for providing light symbolize good fortune, brightness, and prosperity. +-------------------------- +This item will disappear after the event period ends. +-------------------------- +Weight: 0 +# +2400437# +STR +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ STR Landstone Armor II ] +[ STR Landstone II Combo ] +STR +5 +# +2400438# +STR +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ STR Landstone Garment II ] +[ STR Landstone II Combo ] +STR +5 +# +2400439# +STR +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ STR Landstone Footgear II ] +[ STR Landstone II Combo ] +STR +5 +# +2400440# +AGI +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ AGI Landstone Armor II ] +[ AGI Landstone II Combo ] +AGI +5 +# +2400441# +AGI +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ AGI Landstone Garment II ] +[ AGI Landstone II Combo ] +AGI +5 +# +2400442# +AGI +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ AGI Landstone Footgear II ] +[ AGI Landstone II Combo ] +AGI +5 +# +2400443# +VIT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ VIT Landstone Armor II ] +[ VIT Landstone II Combo ] +VIT +5 +# +2400444# +VIT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ VIT Landstone Garment II ] +[ VIT Landstone II Combo ] +VIT +5 +# +2400445# +VIT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ VIT Landstone Footgear II ] +[ VIT Landstone II Combo ] +VIT +5 +# +2400446# +INT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ INT Landstone Armor II ] +[ INT Landstone II Combo ] +INT +5 +# +2400447# +INT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ INT Landstone Garment II ] +[ INT Landstone II Combo ] +INT +5 +# +2400448# +INT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ INT Landstone Footgear II ] +[ INT Landstone II Combo ] +INT +5 +# +2400449# +DEX +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEX Landstone Armor II ] +[ DEX Landstone II Combo ] +DEX +5 +# +2400450# +DEX +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEX Landstone Garment II ] +[ DEX Landstone II Combo ] +DEX +5 +# +2400451# +DEX +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEX Landstone Footgear II ] +[ DEX Landstone II Combo ] +DEX +5 +# +2400452# +LUK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ LUK Landstone Armor II ] +[ LUK Landstone II Combo ] +LUK +5 +# +2400453# +LUK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ LUK Landstone Garment II ] +[ LUK Landstone II Combo ] +LUK +5 +# +2400454# +LUK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ LUK Landstone Footgear II ] +[ LUK Landstone II Combo ] +LUK +5 +# +2400455# +ATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ ATK Landstone Armor II ] +[ ATK Landstone II Combo ] +ATK +7 +# +2400456# +ATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ ATK Landstone Garment II ] +[ ATK Landstone II Combo ] +ATK +7 +# +2400457# +ATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ ATK Landstone Footgear II ] +[ ATK Landstone II Combo ] +ATK +7 +# +2400458# +ASPD +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of [ SPEED Landstone Armor II ] +[ SPEED Landstone II Combo ] +ASPD +5% +# +2400459# +ASPD +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of [ SPEED Landstone Garment II ] +[ SPEED Landstone II Combo ] +ASPD +5% +# +2400460# +ASPD +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of [ SPEED Landstone Footgear II ] +[ SPEED Landstone II Combo ] +ASPD +5% +# +2400461# +STR +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ STR Landstone Armor I ] +[ STR Landstone I Combo ] +STR +1 +# +2400462# +STR +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ STR Landstone Garment I ] +[ STR Landstone I Combo ] +STR +1 +# +2400463# +STR +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ STR Landstone Footgear I ] +[ STR Landstone I Combo ] +STR +1 +# +2400464# +AGI +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ AGI Landstone Armor I ] +[ AGI Landstone I Combo ] +AGI +1 +# +2400465# +AGI +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ AGI Landstone Garment I ] +[ AGI Landstone I Combo ] +AGI +1 +# +2400466# +AGI +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ AGI Landstone Footgear I ] +[ AGI Landstone I Combo ] +AGI +1 +# +2400467# +VIT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ VIT Landstone Armor I ] +[ VIT Landstone I Combo ] +VIT +1 +# +2400468# +VIT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ VIT Landstone Garment I ] +[ VIT Landstone I Combo ] +VIT +1 +# +2400469# +VIT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ VIT Landstone Footgear I ] +[ VIT Landstone I Combo ] +VIT +1 +# +2400470# +INT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ INT Landstone Armor I ] +[ INT Landstone I Combo ] +INT +1 +# +2400471# +INT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ INT Landstone Garment I ] +[ INT Landstone I Combo ] +INT +1 +# +2400472# +INT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ INT Landstone Footgear I ] +[ INT Landstone I Combo ] +INT +1 +# +2400473# +DEX +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEX Landstone Armor I ] +[ DEX Landstone I Combo ] +DEX +1 +# +2400474# +DEX +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEX Landstone Garment I ] +[ DEX Landstone I Combo ] +DEX +1 +# +2400475# +DEX +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEX Landstone Footgear I ] +[ DEX Landstone I Combo ] +DEX +1 +# +2400476# +LUK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ LUK Landstone Armor I ] +[ LUK Landstone I Combo ] +LUK +1 +# +2400477# +LUK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ LUK Landstone Garment I ] +[ LUK Landstone I Combo ] +LUK +1 +# +2400478# +LUK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ LUK Landstone Footgear I ] +[ LUK Landstone I Combo ] +LUK +1 +# +2400479# +ATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ ATK Landstone Armor I ] +[ ATK Landstone I Combo ] +ATK +2 +# +2400480# +ATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ ATK Landstone Garment I ] +[ ATK Landstone I Combo ] +ATK +2 +# +2400481# +ATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ ATK Landstone Footgear I ] +[ ATK Landstone I Combo ] +ATK +2 +# +2400482# +ASPD +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of [ SPEED Landstone Armor I ] +[ SPEED Landstone I Combo ] +ASPD +1% +# +2400483# +ASPD +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of [ SPEED Landstone Garment I ] +[ SPEED Landstone I Combo ] +ASPD +1% +# +2400484# +ASPD +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of [ SPEED Landstone Footgear I ] +[ SPEED Landstone I Combo ] +ASPD +1% +# +2400485# +Collect 10 coins to create Costume MVP Ancestors Crown. +-------------------------- +Class: Etc +Weight: 1 +# +2400489# +Special Enchancement Stone +-------------------------- +All status+2 +Exp&Drop +5% +2% chance to cast Zen Level 1 on yourself when dealing Physical or Magic Damage +-------------------------- +Expiration date 19-03-2025 +-------------------------- +Weight: 10 +# +2400490# +All status+2 +Exp&Drop +5% +2% chance to cast Zen Level 1 on yourself when dealing Physical or Magic Damage +-------------------------- +Expiration date 19-03-2025 +# +2400491# +Collect 10 Shards of Love to exchange for a Heart of Memories. +-------------------------- +Weight: 0 +# +2400492# +Heart of Memories can be exchanged for daily rewards. +Complete 14 days to receive the Event Costume: Lovely Feeling. +-------------------------- +Weight: 0 +# +2400493# +Exp +2% +Drop +2% +-------------------------- +Expiration Date 14-05-2025 +-------------------------- +Weight: 1 +Position: Garment +# +2400494# +Exp +2% +Drop +2% +-------------------------- +when equip 3 pieces of Golden Angel Stone: +EXP+5%, DROP+5% +All Status+1 +Movement Speed+5% +-------------------------- +Expiration Date 14-05-2025 +-------------------------- +Position: Garment +Weight: 1 +# +2400495# +Exp +5% +Drop +5% +-------------------------- +when equip 3 pieces of Rainbow Angel Stone: +EXP+10%, DROP+10% +All Status+2 +Aspd +1 +Fixed Cast Time -30% +Movement Speed+5% +-------------------------- +Expiration Date 14-05-2025 +-------------------------- +Position: Garment +Weight: 1 +# +2400496# +Exp +2% +Drop +2% +-------------------------- +Expiration Date 14-05-2025 +-------------------------- +Position: Garment +Weight: 1 +# +2400497# +Exp +2% +Drop +2% +-------------------------- +when equip 3 pieces of Golden Angel Stone: +EXP+5%, DROP+5% +All Status+1 +Movement Speed+5% +-------------------------- +Expiration Date 14-05-2025 +-------------------------- +Position: Garment +Weight: 1 +# +2400498# +Exp +5% +Drop +5% +-------------------------- +when equip 3 pieces of Rainbow Angel Stone: +EXP+10%, DROP+10% +All Status+2 +Aspd +1 +Fixed Cast Time -30% +Movement Speed+5% +-------------------------- +Expiration Date 14-05-2025 +-------------------------- +Position: Garment +Weight: 1 +# +2400499# +STR +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ STR Landstone Armor II ] +[ STR Landstone II Combo ] +STR +5 +# +2400500# +STR +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ STR Landstone Armor II ] +[ STR Landstone II Combo ] +STR +5 +# +2400501# +STR +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ STR Landstone Armor II ] +[ STR Landstone II Combo ] +STR +5 +# +2400502# +AGI +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ AGI Landstone Armor II ] +[ AGI Landstone II Combo ] +AGI +5 +# +2400503# +AGI +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ AGI Landstone Armor II ] +[ AGI Landstone II Combo ] +AGI +5 +# +2400504# +AGI +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ AGI Landstone Armor II ] +[ AGI Landstone II Combo ] +AGI +5 +# +2400505# +VIT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ VIT Landstone Armor II ] +[ VIT Landstone II Combo ] +VIT +5 +# +2400506# +VIT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ VIT Landstone Armor II ] +[ VIT Landstone II Combo ] +VIT +5 +# +2400507# +VIT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ VIT Landstone Armor II ] +[ VIT Landstone II Combo ] +VIT +5 +# +2400508# +INT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ INT Landstone Armor II ] +[ INT Landstone II Combo ] +INT +5 +# +2400509# +INT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ INT Landstone Armor II ] +[ INT Landstone II Combo ] +INT +5 +# +2400510# +INT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ INT Landstone Armor II ] +[ INT Landstone II Combo ] +INT +5 +# +2400511# +DEX +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEX Landstone Armor II ] +[ DEX Landstone II Combo ] +DEX +5 +# +2400512# +DEX +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEX Landstone Armor II ] +[ DEX Landstone II Combo ] +DEX +5 +# +2400513# +DEX +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEX Landstone Armor II ] +[ DEX Landstone II Combo ] +DEX +5 +# +2400514# +LUK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ LUK Landstone Armor II ] +[ LUK Landstone II Combo ] +LUK +5 +# +2400515# +LUK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ LUK Landstone Armor II ] +[ LUK Landstone II Combo ] +LUK +5 +# +2400516# +LUK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ LUK Landstone Armor II ] +[ LUK Landstone II Combo ] +LUK +5 +# +2400517# +ATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ ATK Landstone Armor II ] +[ ATK Landstone II Combo ] +ATK +7 +# +2400518# +ATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ ATK Landstone Armor II ] +[ ATK Landstone II Combo ] +ATK +7 +# +2400519# +ATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ ATK Landstone Armor II ] +[ ATK Landstone II Combo ] +ATK +7 +# +2400520# +ASPD +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of [ SPEED Landstone Armor II ] +[ SPEED Landstone II Combo ] +ASPD +5% +# +2400521# +ASPD +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of [ SPEED Landstone Armor II ] +[ SPEED Landstone II Combo ] +ASPD +5% +# +2400522# +ASPD +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of [ SPEED Landstone Armor II ] +[ SPEED Landstone II Combo ] +ASPD +5% +# +2400523# +STR +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ STR Landstone Armor I ] +[ STR Landstone I Combo ] +STR +1 +# +2400524# +STR +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ STR Landstone Armor I ] +[ STR Landstone I Combo ] +STR +1 +# +2400525# +STR +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ STR Landstone Armor I ] +[ STR Landstone I Combo ] +STR +1 +# +2400526# +AGI +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ AGI Landstone Armor I ] +[ AGI Landstone I Combo ] +AGI +1 +# +2400527# +AGI +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ AGI Landstone Armor I ] +[ AGI Landstone I Combo ] +AGI +1 +# +2400528# +AGI +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ AGI Landstone Armor I ] +[ AGI Landstone I Combo ] +AGI +1 +# +2400529# +VIT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ VIT Landstone Armor I ] +[ VIT Landstone I Combo ] +VIT +1 +# +2400530# +VIT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ VIT Landstone Armor I ] +[ VIT Landstone I Combo ] +VIT +1 +# +2400531# +VIT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ VIT Landstone Armor I ] +[ VIT Landstone I Combo ] +VIT +1 +# +2400532# +INT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ INT Landstone Armor I ] +[ INT Landstone I Combo ] +INT +1 +# +2400533# +INT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ INT Landstone Armor I ] +[ INT Landstone I Combo ] +INT +1 +# +2400534# +INT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ INT Landstone Armor I ] +[ INT Landstone I Combo ] +INT +1 +# +2400535# +DEX +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEX Landstone Armor I ] +[ DEX Landstone I Combo ] +DEX +1 +# +2400536# +DEX +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEX Landstone Armor I ] +[ DEX Landstone I Combo ] +DEX +1 +# +2400537# +DEX +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEX Landstone Armor I ] +[ DEX Landstone I Combo ] +DEX +1 +# +2400538# +LUK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ LUK Landstone Armor I ] +[ LUK Landstone I Combo ] +LUK +1 +# +2400539# +LUK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ LUK Landstone Armor I ] +[ LUK Landstone I Combo ] +LUK +1 +# +2400540# +LUK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ LUK Landstone Armor I ] +[ LUK Landstone I Combo ] +LUK +1 +# +2400541# +ATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ ATK Landstone Armor I ] +[ ATK Landstone I Combo ] +ATK +2 +# +2400542# +ATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ ATK Landstone Armor I ] +[ ATK Landstone I Combo ] +ATK +2 +# +2400543# +ATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ ATK Landstone Armor I ] +[ ATK Landstone I Combo ] +ATK +2 +# +2400544# +ASPD +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of [ SPEED Landstone Armor I ] +[ SPEED Landstone I Combo ] +ASPD +1% +# +2400545# +ASPD +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of [ SPEED Landstone Armor I ] +[ SPEED Landstone I Combo ] +ASPD +1% +# +2400546# +ASPD +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of [ SPEED Landstone Armor I ] +[ SPEED Landstone I Combo ] +ASPD +1% +# +2400549# +Forest Fireball +-------------------------- +Weight: 0 +# +2400550# +Scented candles are items used specifically for ceremonies. +-------------------------- +Weight: 0 +# +2400551# +Fragrant incense is an item used specifically for ceremonies. +-------------------------- +Weight: 0 +# +2400552# +Fragrant flowers are used especially in ceremonies. +-------------------------- +Weight: 0 +# +2400553# +Lotus Leaf are used especially in ceremonies. +-------------------------- +Weight: 0 +# +2400554# +Holy water soaked in a silver bowl is suitable for exorcising ghosts. +-------------------------- +Weight: 0 +# +2400555# +Cigars that are specifically used in ceremonies. +-------------------------- +Weight: 0 +# +2400556# +A magical talisman necessary for subduing ghosts. +-------------------------- +Weight: 0 +# +2400557# +A red cloth scrap used to cover the pot to seal out ghosts. +-------------------------- +Weight: 0 +# +2400558# +A white cloth scrap used to cover the pot to seal out ghosts. +-------------------------- +Weight: 0 +# +2400559# +Magic rope, a necessity for exorcising ghosts. +-------------------------- +Weight: 0 +# +2400560# +Increases physical and magical damage against Maetaokumkaew by 20%. +-------------------------- +When upgrade level is +7 or higher, +Increases physical and magical damage against Maetaokumkaew by 10%. +-------------------------- +When upgrade level is +9 or higher, +Increases physical and magical damage against Maetaokumkaew by 5%. +-------------------------- +Collection Effect +Increases physical and magical damage against Maetaokumkaew by 5%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2400561# +Movement speed increased by 2%. +-------------------------- +Collection Effect +Movement speed increased by 1%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2400562# +Max HP +1200 +-------------------------- +Collection Effect +Max HP +50 +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2400563# +Reduces damage taken from Undead race enemies by 30%. +-------------------------- +When upgrade level is +7 or higher, +Reduces damage taken from Undead race monsters by an additional 10%. +-------------------------- +When upgrade level is +9 or higher, +Reduces damage taken from Undead race monsters by an additional 10%. +-------------------------- +Collection Effect +Reduces damage taken from Undead race enemies by 3%. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2400564# +ATK +5% +Increases physical damage against Demi-Human race monsters by 20%. +-------------------------- +When upgrade level is +8 or higher, +Increases physical damage against Demi-Human race monsters by additional 5%. +-------------------------- +When upgrade level is +10 or higher, +Increases physical damage against Demi-Human race monsters by additional 5%. +-------------------------- +Collection Effect +Increases physical damage against Demi-Human race monsters by 3%. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2400565# +The ghostly remains of the Abadoned Temple Ruin +-------------------------- +Weight: 0 +# +2400783# +Increases physical/magical damage on Boss targets by 10%. +-------------------------- +Set Bonus +-------------------------- +When equipped Costume Boy Cap +Increases physical/magical damage on Brute monster 10%. +-------------------------- +When equipped Costume Golden Gear +Increases physical/magical damage on Fire element monster 10%. +-------------------------- +When equipped Costume Cosair +Increases physical/magical damage on Undead monster 10%. +-------------------------- +When equipped Costume Tiara +Increases physical/magical damage on Insect monster 10%. +-------------------------- +When equipped Costume Grand Circlet +Increases physical/magical damage on Demi-human monster 5%. +-------------------------- +When equipped Costume Crown +Increases physical/magical damage on Undead element monster 10%. +-------------------------- +When equipped Magestic Goat +Increases physical/magical damage on Demon monster 10%. +-------------------------- +When equipped Headgear of Orc Hero +Increases physical/magical damage on Demi-human monster 10%. +-------------------------- +When equipped Headgear of Jewel Crown +Increases physical/magical damage on Earth element monster 10%. +-------------------------- +When equipped Headgear of Sphinx Hat +Increases physical/magical damage on Shadow element monster 10%. +-------------------------- +Weight: 10 +# +2400784# +Increases physical/magical damage on Boss targets by 10%. +-------------------------- +Set Bonus +-------------------------- +When equipped Costume Boy Cap +Increases physical/magical damage on Brute monster 10%. +-------------------------- +When equipped Costume Golden Gear +Increases physical/magical damage on Fire element monster 10%. +-------------------------- +When equipped Costume Cosair +Increases physical/magical damage on Undead monster 10%. +-------------------------- +When equipped Costume Tiara +Increases physical/magical damage on Insect monster 10%. +-------------------------- +When equipped Costume Grand Circlet +Increases physical/magical damage on Demi-human monster 5%. +-------------------------- +When equipped Costume Crown +Increases physical/magical damage on Undead element monster 10%. +-------------------------- +When equipped Magestic Goat +Increases physical/magical damage on Demon monster 10%. +-------------------------- +When equipped Headgear of Orc Hero +Increases physical/magical damage on Demi-human monster 10%. +-------------------------- +When equipped Headgear of Jewel Crown +Increases physical/magical damage on Earth element monster 10%. +-------------------------- +When equipped Headgear of Sphinx Hat +Increases physical/magical damage on Shadow element monster 10%. +# +2400786# +Special coins, 'Max Points,' are used for collecting points. +1 coin is equivalent to 10 points. +-------------------------- +Weight: 0 +# +2400801# +Mission Coin +Honor Medals obtained from dungeon completions. +Collect them to exchange for special rewards. +-------------------------- +Weight: 0 +# +2400812# +The Land of Izlude is a special item that grants ownership of a unique piece of land +-------------------------- +Collection Effect +All Status+1 +Grants access to a special restricted area in Izlude. +-------------------------- +Land Seasonal Buff +Special effects that will be active during the event period. +-------------------------- +Weight: 0 +# +2400813# +The Land of Morroc is a special item that grants ownership of a unique piece of land +-------------------------- +Collection Effect +All Status+1 +Grants access to a special restricted area in Morroc. +-------------------------- +Land Seasonal Buff +Special effects that will be active during the event period. +-------------------------- +Weight: 0 +# +2400814# +The Land of Prontera is a special item that grants ownership of a unique piece of land +-------------------------- +Collection Effect +All Status+1 +Grants access to a special restricted area in Prontera. +-------------------------- +Land Seasonal Buff +Special effects that will be active during the event period. +-------------------------- +Weight: 0 +# +2400815# +EXP +3% +DROP +3% +-------------------------- +Class: Etc +Weight: 1 +# +2400816# +EXP +5% +DROP +5% +Weight Limit +50 +-------------------------- +Class: Etc +Weight: 1 +# +2400817# +EXP +10% +DROP +10% +Weight Limit +100 +-------------------------- +Class: Etc +Weight: 1 +# +2400818# +EXP +3% +DROP +3% +# +2400819# +EXP +5% +DROP +5% +Weight Limit +50 +# +2400820# +EXP +10% +DROP +10% +Weight Limit +100 +# +2400821# +A powerful ore that will double the effect if successfully refined armor. +If refinement is successful, your equipment will get +2. +-------------------------- +The refinement result will be capped at +10. +-------------------------- +Class: Etc +Weight: 1 +# +2400822# +A powerful ore that will double the effect if successfully refined weapon. +If refinement is successful, your equipment will get +2. +-------------------------- +The refinement result will be capped at +10. +-------------------------- +Class: Etc +Weight: 1 +# +2400823# +MATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MATK Landstone Armor I ] +[ MATK Landstone I Combo ] +MATK +2 +# +2400824# +MATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MATK Landstone Garment I ] +[ MATK Landstone I Combo ] +MATK +2 +# +2400825# +MATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MATK Landstone Footgear I ] +[ MATK Landstone I Combo ] +MATK +2 +# +2400826# +MDEF +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MDEF Landstone Armor I ] +[ MDEF Landstone I Combo ] +MDEF +1 +# +2400827# +MDEF +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MDEF Landstone Garment I ] +[ MDEF Landstone I Combo ] +MDEF +1 +# +2400828# +MDEF +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MDEF Landstone Footgear I ] +[ MDEF Landstone I Combo ] +MDEF +1 +# +2400829# +MATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MATK Landstone Armor II ] +[ MATK Landstone II Combo ] +MATK +7 +# +2400830# +MATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MATK Landstone Garment II ] +[ MATK Landstone II Combo ] +MATK +7 +# +2400831# +MATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MATK Landstone Footgear II ] +[ MATK Landstone II Combo ] +MATK +7 +# +2400832# +MDEF +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MDEF Landstone Armor II ] +[ MDEF Landstone II Combo ] +MDEF +5 +# +2400833# +MDEF +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MDEF Landstone Garment II ] +[ MDEF Landstone II Combo ] +MDEF +5 +# +2400834# +MDEF +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MDEF Landstone Footgear II ] +[ MDEF Landstone II Combo ] +MDEF +5 +# +2400835# +MATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MATK Landstone Armor I ] +[ MATK Landstone I Combo ] +MATK +2 +# +2400836# +MATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MATK Landstone Garment I ] +[ MATK Landstone I Combo ] +MATK +2 +# +2400837# +MATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MATK Landstone Footgear I ] +[ MATK Landstone I Combo ] +MATK +2 +# +2400838# +MDEF +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MDEF Landstone Armor I ] +[ MDEF Landstone I Combo ] +MDEF +1 +# +2400839# +MDEF +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MDEF Landstone Garment I ] +[ MDEF Landstone I Combo ] +MDEF +1 +# +2400840# +MDEF +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MDEF Landstone Footgear I ] +[ MDEF Landstone I Combo ] +MDEF +1 +# +2400841# +MATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MATK Landstone Armor II ] +[ MATK Landstone II Combo ] +MATK +7 +# +2400842# +MATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MATK Landstone Garment II ] +[ MATK Landstone II Combo ] +MATK +7 +# +2400843# +MATK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MATK Landstone Footgear II ] +[ MATK Landstone II Combo ] +MATK +7 +# +2400844# +MDEF +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MDEF Landstone Armor II ] +[ MDEF Landstone II Combo ] +MDEF +5 +# +2400845# +MDEF +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MDEF Landstone Garment II ] +[ MDEF Landstone II Combo ] +MDEF +5 +# +2400846# +MDEF +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ MDEF Landstone Footgear II ] +[ MDEF Landstone II Combo ] +MDEF +5 +# +2400856# +Legendary Oridecon. Used as a material for weapon upgrades. +It possesses special properties that distinguish it from regular Oridecon. +When used to upgrade weapons, failed upgrade attempts will not damage the item, +and the item's upgrade level will not decrease. +-------------------------- +Type: Forging material +Weight: 20 +# +2400858# +Legendary Elunium. Used as a material for armor upgrades. +It possesses special properties that set it apart from regular Elunium. +When used to upgrade armor, failed upgrade attempts will not damage the item, +and the item's upgrade level will not decrease. +-------------------------- +Type: Forging material +Weight: 20 +# +2400884# +A lovely, well-painted Easter Egg. Collect and give to Peter, the more you give, the bigger festival are and the more +you give, the more you gain. +-------------------------- +Type: Misc +Weight: 0 +# +2400886# +A material used for fusion with rare minerals +such as Elunium and Oridecon. +-------------------------- +[The Wanderer]yuno,173,183,0,100,0,0 can exchange Glacium or Glacidecon +-------------------------- +Weight: 1 +# +2400887# +Concentrated Glacium that has been buried Power of Frost. +Used as a material to strengthen armor. +Enhances a chance of successful upgrade. +-------------------------- +Weight: 20 +# +2400888# +Concentrated Glacidecon that has been buried Power of Frost. +Used as a material to strengthen weapons. +Enhances a chance of successful upgrade. +-------------------------- +Weight: 20 +# +2400892# +Crit +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ Critical Hit Landstone Armor I ] +[ Critical Hit Landstone I Combo ] +Crit +1 +# +2400893# +Crit +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ Critical Hit Landstone Garment I ] +[ Critical Hit Landstone I Combo ] +Crit +1 +# +2400894# +Crit +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ Critical Hit Landstone Footgear I ] +[ Critical Hit Landstone I Combo ] +Crit +1 +# +2400895# +DEF +3 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEF Landstone Armor I ] +[ DEF Landstone I Combo ] +DEF +6 +# +2400896# +DEF +3 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEF Landstone Garment I ] +[ DEF Landstone I Combo ] +DEF +6 +# +2400897# +DEF +3 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEF Landstone Footgear I ] +[ DEF Landstone I Combo ] +DEF +6 +# +2400898# +Crit +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ Critical Hit Landstone Armor II ] +[ Critical Hit Landstone II Combo ] +Crit +5 +# +2400899# +Crit +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ Critical Hit Landstone Garment II ] +[ Critical Hit Landstone II Combo ] +Crit +5 +# +2400900# +Crit +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ Critical Hit Landstone Footgear II ] +[ Critical Hit Landstone II Combo ] +Crit +5 +# +2400901# +DEF +5 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEF Landstone Armor II ] +[ DEF Landstone II Combo ] +DEF +15 +# +2400902# +DEF +5 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEF Landstone Garment II ] +[ DEF Landstone II Combo ] +DEF +15 +# +2400903# +DEF +5 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEF Landstone Footgear II ] +[ DEF Landstone II Combo ] +DEF +15 +# +2400904# +Crit +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ Critical Hit Landstone Armor I ] +[ Critical Hit Landstone I Combo ] +Crit +1 +# +2400917# +It look like a green herb, but full of special nutrition. +-------------------------- +Item for enchant Poring Village Carrot and Poring Village Green Onion for an option. +-------------------------- +Weight: 0.1 +# +2400918# +DEF +5 +# +2400919# +ASPD +1% +# +2400920# +1% chance of recovering 5 SP per 1 sec for 5 secs when performing a physical attack. +# +2400921# +A special ticket used to receive the buffs in +the city Morocc only +-------------------------- +Weight: 0 +# +2400922# +Crit +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ Critical Hit Landstone Garment I ] +[ Critical Hit Landstone I Combo ] +Crit +1 +# +2400923# +Crit +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ Critical Hit Landstone Footgear I ] +[ Critical Hit Landstone I Combo ] +Crit +1 +# +2400924# +DEF +3 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEF Landstone Armor I ] +[ DEF Landstone I Combo ] +DEF +6 +# +2400925# +DEF +3 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEF Landstone Garment I ] +[ DEF Landstone I Combo ] +DEF +6 +# +2400926# +DEF +3 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEF Landstone Footgear I ] +[ DEF Landstone I Combo ] +DEF +6 +# +2400927# +Crit +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ Critical Hit Landstone Armor II ] +[ Critical Hit Landstone II Combo ] +Crit +5 +# +2400928# +Crit +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ Critical Hit Landstone Garment II ] +[ Critical Hit Landstone II Combo ] +Crit +5 +# +2400929# +Crit +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ Critical Hit Landstone Footgear II ] +[ Critical Hit Landstone II Combo ] +Crit +5 +# +2400930# +DEF +5 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEF Landstone Armor II ] +[ DEF Landstone II Combo ] +DEF +15 +# +2400931# +DEF +5 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEF Landstone Garment II ] +[ DEF Landstone II Combo ] +DEF +15 +# +2400932# +DEF +5 +-------------------------- +Set Bonus:: +When equip 3 pieces of [ DEF Landstone Footgear II ] +[ DEF Landstone II Combo ] +DEF +15 +# +2400944# +A mineral that awakens a bloodthirsty desire when equipped. +-------------------------- +ATK +4 +MATK +4 +-------------------------- +Set Bonus: +When equip 3 pieces of Bloodthirst Landstone Footgear +Increases physical and magical damage against Demi-Human monster 1% +-------------------------- +If upgrade is +5 or higher, +Increases physical and magical damage against Demi-Human monster 2% +-------------------------- +If upgrade is +7 or higher, +Increases physical and magical damage against Demi-Human monster 2% +-------------------------- +Class: Etc +Position: Footgear +Weight: 1 +# +2400945# +ATK +4 +MATK +4 +-------------------------- +Set Bonus: +When equip 3 pieces of Bloodthirst Landstone Footgear +Increases physical and magical damage against Demi-Human monster 1% +-------------------------- +If upgrade is +5 or higher, +Increases physical and magical damage against Demi-Human monster 2% +-------------------------- +If upgrade is +7 or higher, +Increases physical and magical damage against Demi-Human monster 2% +# +2400946# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of [ Unfrozen Landstone Armor ] +Adds 45% resistance to the Frozen if base VIT is 70 or higher. +-------------------------- +Class: Etc +Position: Armor +Weight: 1 +# +2400947# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of [ Unfrozen Landstone Garment ] +Adds 45% resistance to the Frozen if base VIT is 70 or higher. +-------------------------- +Class: Etc +Position: Garment +Weight: 1 +# +2400948# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of [ Unfrozen Landstone Footgear ] +Adds 45% resistance to the Frozen if base VIT is 70 or higher. +-------------------------- +Class: Etc +Position: Footgear +Weight: 1 +# +2400949# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of [ Unfrozen Landstone Armor ] +Adds 45% resistance to the Frozen if base VIT is 70 or higher. +# +2400950# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of [ Unfrozen Landstone Garment ] +Adds 45% resistance to the Frozen if base VIT is 70 or higher. +# +2400951# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of [ Unfrozen Landstone Footgear ] +Adds 45% resistance to the Frozen if base VIT is 70 or higher. +# +2400952# +The Enchant Stone for May. Avaiable for every equipment costume slot. +-------------------------- +All status+1 +Atk+5 Matk+5 +Increases Physical Damage against enemies of Medium size by 3%. +Flee +5 +-------------------------- +Every effect will be remove on 23th June 2025. +-------------------------- +Weight: 0 +# +2400953# +The Enchant Stone for May. Avaiable for every equipment costume slot. +-------------------------- +All status+1 +Atk+5 Matk+5 +Increases Physical Damage against enemies of Medium size by 3%. +Flee +5 +-------------------------- +Every effect will be remove on 23th June 2025. +# +2401143# +Special coins for use in Magma shop. +-------------------------- +Weight: 0 +# +2401144# +Increase physical and magical damage on Juno field and Magma dungeon monsters by 10% +Atk+10, Matk+10, ASPD+3% +-------------------------- +Collection Effect +Increase physical and magical damage on Juno field and Magma dungeon monsters by 3% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2401145# +Collection effects: + +Increase physical and magical damage on Juno field and Magma dungeon monsters by 2% +Reduce damage taken from Juno field and Magma dungeon monsters by 1% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Weight: 1 +# +2401146# +Collection effects: + +Increase physical and magical damage on Juno field and Magma dungeon monsters by 4% +Reduce damage taken from Juno field and Magma dungeon monsters by 2% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Weight: 1 +# +2401147# +Collection effects: + +Increase physical and magical damage on Juno field and Magma dungeon monsters by 6% +Reduce damage taken from Juno field and Magma dungeon monsters by 3% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Weight: 1 +# +2401148# +Collection effects: + +Increase physical and magical damage on Juno field and Magma dungeon monsters by 8% +Reduce damage taken from Juno field and Magma dungeon monsters by 4% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Weight: 1 +# +2401149# +Collection effects: + +Increase physical and magical damage on Juno field and Magma dungeon monsters by 10% +Reduce damage taken from Juno field and Magma dungeon monsters by 5% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Weight: 1 +# +2401150# +Collection effects: + +Increase physical and magical damage on Juno field and Magma dungeon monsters by 12% +Reduce damage taken from Juno field and Magma dungeon monsters by 6% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Weight: 1 +# +2401151# +Collection effects: + +Increase physical and magical damage on Juno field and Magma dungeon monsters by 14% +Reduce damage taken from Juno field and Magma dungeon monsters by 7% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Weight: 1 +# +2401152# +Collection effects: + +Increase physical and magical damage on Juno field and Magma dungeon monsters by 16% +Reduce damage taken from Juno field and Magma dungeon monsters by 8% +Increase Drop Rate of Juno field and Magma dungeon by 1% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Weight: 1 +# +2401153# +Collection effects: + +Increase physical and magical damage on Juno field and Magma dungeon monsters by 18% +Reduce damage taken from Juno field and Magma dungeon monsters by 9% +Increase Drop Rate of Juno field and Magma dungeon by 3% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Weight: 1 +# +2401154# +Collection effects: + +Increase physical and magical damage on Juno field and Magma dungeon monsters by 20% +Reduce damage taken from Juno field and Magma dungeon monsters by 10% +Increase Drop Rate of Juno field and Magma dungeon by 5% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Weight: 1 +# +2401155# +FLEE +2 +-------------------------- +Set Bonus:: +When equip 3 pieces of FLEE Landstone Armor II +FLEE Landstone II Combo +FLEE +6 +# +2401156# +FLEE +2 +-------------------------- +Set Bonus:: +When equip 3 pieces of FLEE Landstone Garment II +FLEE Landstone II Combo +FLEE +6 +# +2401157# +FLEE +2 +-------------------------- +Set Bonus:: +When equip 3 pieces of FLEE Landstone Footgear II +FLEE Landstone II Combo +FLEE +6 +# +2401158# +HIT +2 +-------------------------- +Set Bonus:: +When equip 3 pieces of HIT Landstone Armor II +HIT Landstone II Combo +HIT +6 +# +2401159# +HIT +2 +-------------------------- +Set Bonus:: +When equip 3 pieces of HIT Landstone Garment II +HIT Landstone II Combo +HIT +6 +# +2401160# +HIT +2 +-------------------------- +Set Bonus:: +When equip 3 pieces of HIT Landstone Footgear II +HIT Landstone II Combo +HIT +6 +# +2401161# +FLEE +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of FLEE Landstone Armor I +FLEE Landstone II Combo +FLEE +3 +# +2401162# +FLEE +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of FLEE Landstone Garment I +FLEE Landstone II Combo +FLEE +3 +# +2401163# +FLEE +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of FLEE Landstone Footgear I +FLEE Landstone II Combo +FLEE +3 +# +2401164# +HIT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of HIT Landstone Armor I +HIT Landstone II Combo +HIT +3 +# +2401165# +HIT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of HIT Landstone Garment I +HIT Landstone II Combo +HIT +3 +# +2401166# +HIT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of HIT Landstone Footgear I +HIT Landstone II Combo +HIT +3 +# +2401167# +FLEE +2 +-------------------------- +Set Bonus:: +When equip 3 pieces of FLEE Landstone Armor II +FLEE Landstone II Combo +FLEE +6 +# +2401168# +FLEE +2 +-------------------------- +Set Bonus:: +When equip 3 pieces of FLEE Landstone Garment II +FLEE Landstone II Combo +FLEE +6 +# +2401169# +FLEE +2 +-------------------------- +Set Bonus:: +When equip 3 pieces of FLEE Landstone Footgear II +FLEE Landstone II Combo +FLEE +6 +# +2401170# +HIT +2 +-------------------------- +Set Bonus:: +When equip 3 pieces of HIT Landstone Armor II +HIT Landstone II Combo +HIT +6 +# +2401171# +HIT +2 +-------------------------- +Set Bonus:: +When equip 3 pieces of HIT Landstone Garment II +HIT Landstone II Combo +HIT +6 +# +2401172# +HIT +2 +-------------------------- +Set Bonus:: +When equip 3 pieces of HIT Landstone Footgear II +HIT Landstone II Combo +HIT +6 +# +2401173# +FLEE +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of FLEE Landstone Armor I +FLEE Landstone II Combo +FLEE +3 +# +2401174# +FLEE +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of FLEE Landstone Garment I +FLEE Landstone II Combo +FLEE +3 +# +2401175# +FLEE +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of FLEE Landstone Footgear I +FLEE Landstone II Combo +FLEE +3 +# +2401176# +HIT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of HIT Landstone Armor I +HIT Landstone II Combo +HIT +3 +# +2401177# +HIT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of HIT Landstone Garment I +HIT Landstone II Combo +HIT +3 +# +2401178# +HIT +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of HIT Landstone Footgear I +HIT Landstone II Combo +HIT +3 +# +2401180# +Coins used to purchase items in the Battle Pass SS2 shop. +-------------------------- +Weight: 1 +# +2401181# +EXP +1% +ASPD +2% +-------------------------- +Class: Etc +Weight: 0 +# +2401182# +EXP +3% +ASPD +3% +Weight Limit +50 +-------------------------- +Class: Etc +Weight: 0 +# +2401183# +EXP +5% +ASPD +6% +Weight Limit +100 +-------------------------- +Class: Etc +Weight: 0 +# +2401184# +EXP +1% +ASPD +2% +# +2401185# +EXP +3% +ASPD +3% +Weight Limit +50 +# +2401186# +EXP +5% +ASPD +6% +Weight Limit +100 +# +2401191# +A soul of an infected monster. How did these monsters turn so aggressive? +-------------------------- +Weight: 0 +# +2401192# +Dark matter capable of Inversion high-tier gear abilities. +-------------------------- +Weight: 0 +# +2401193# +Blue matter capable of Inversion high-tier gear abilities. +Can only be used with Weapon-type equipment. +-------------------------- +Weight: 0 +# +2401194# +Purple matter capable of Inversion high-tier gear abilities. +Can only be used with Armor-type equipment. +-------------------------- +Weight: 0 +# +2401197# +RON Coins can be collected and exchanged for various special rewards. +-------------------------- +Weight: 0 +# +2401198# +ZENT Coins can be collected and exchanged for various special rewards. +-------------------------- +Weight: 0 +# +2401199# +ION Coins can be collected and exchanged for various special rewards. +-------------------------- +Weight: 0 +# +2401257# +VCT -1% +-------------------------- +Set Bonus:: +When equip 3 pieces of VCT Landstone Armor II +VCT Landstone II Combo +VCT -5% +-------------------------- +Class: Etc +Position: Armor +Weight: 1 +# +2401258# +VCT -1% +-------------------------- +Set Bonus:: +When equip 3 pieces of VCT Landstone Garment II +VCT Landstone II Combo +VCT -5% +-------------------------- +Class: Etc +Position: Garment +Weight: 1 +# +2401259# +VCT -1% +-------------------------- +Set Bonus:: +When equip 3 pieces of VCT Landstone Footgear II +VCT Landstone II Combo +VCT -5% +-------------------------- +Class: Etc +Position: Footgear +Weight: 1 +# +2401260# +ATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Physical Landstone Armor II +Physical Landstone II Combo +ATK +5% +-------------------------- +Class: Etc +Position: Armor +Weight: 1 +# +2401261# +ATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Physical Landstone Garment II +Physical Landstone II Combo +ATK +5% +-------------------------- +Class: Etc +Position: Garment +Weight: 1 +# +2401262# +ATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Physical Landstone Footgear II +Physical Landstone II Combo +ATK +5% +-------------------------- +Class: Etc +Position: Footgear +Weight: 1 +# +2401263# +VCT -1% +-------------------------- +Set Bonus:: +When equip 3 pieces of VCT Landstone Armor I +VCT Landstone I Combo +VCT -1% +-------------------------- +Class: Etc +Position: Armor +Weight: 1 +# +2401264# +VCT -1% +-------------------------- +Set Bonus:: +When equip 3 pieces of VCT Landstone Garment I +VCT Landstone I Combo +VCT -1% +-------------------------- +Class: Etc +Position: Garment +Weight: 1 +# +2401265# +VCT -1% +-------------------------- +Set Bonus:: +When equip 3 pieces of VCT Landstone Footgear I +VCT Landstone I Combo +VCT -1% +-------------------------- +Class: Etc +Position: Footgear +Weight: 1 +# +2401266# +ATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Physical Landstone Armor I +Physical Landstone I Combo +ATK +1% +-------------------------- +Class: Etc +Position: Armor +Weight: 1 +# +2401267# +ATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Physical Landstone Garment I +Physical Landstone I Combo +ATK +1% +-------------------------- +Class: Etc +Position: Garment +Weight: 1 +# +2401268# +ATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Physical Landstone Footgear I +Physical Landstone I Combo +ATK +1% +-------------------------- +Class: Etc +Position: Footgear +Weight: 1 +# +2401269# +VCT -1% +-------------------------- +Set Bonus:: +When equip 3 pieces of VCT Landstone Armor II +VCT Landstone II Combo +VCT -5% +# +2401270# +VCT -1% +-------------------------- +Set Bonus:: +When equip 3 pieces of VCT Landstone Garment II +VCT Landstone II Combo +VCT -5% +# +2401271# +VCT -1% +-------------------------- +Set Bonus:: +When equip 3 pieces of VCT Landstone Footgear II +VCT Landstone II Combo +VCT -5% +-------------------------- +Class: Etc +Position: Footgear +Weight: 1 +# +2401272# +ATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Physical Landstone Armor II +Physical Landstone II Combo +ATK +5% +# +2401273# +ATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Physical Landstone Garment II +Physical Landstone II Combo +ATK +5% +# +2401274# +ATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Physical Landstone Footgear II +Physical Landstone II Combo +ATK +5% +# +2401275# +VCT -1% +-------------------------- +Set Bonus:: +When equip 3 pieces of VCT Landstone Armor I +VCT Landstone I Combo +VCT -1% +# +2401276# +VCT -1% +-------------------------- +Set Bonus:: +When equip 3 pieces of VCT Landstone Garment I +VCT Landstone I Combo +VCT -1% +# +2401277# +VCT -1% +-------------------------- +Set Bonus:: +When equip 3 pieces of VCT Landstone Footgear I +VCT Landstone I Combo +VCT -1% +# +2401278# +ATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Physical Landstone Armor I +Physical Landstone I Combo +ATK +1% +# +2401279# +ATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Physical Landstone Garment I +Physical Landstone I Combo +ATK +1% +# +2401280# +ATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Physical Landstone Footgear I +Physical Landstone I Combo +ATK +1% +# +2401292# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Resilient Landstone Armor +Adds 100% resistance to the Chaos (Confusion) if base AGI is 70 or higher. +-------------------------- +Class: Etc +Position: Armor +Weight: 1 +# +2401293# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Resilient Landstone Garment +Adds 100% resistance to the Chaos (Confusion) if base AGI is 70 or higher. +-------------------------- +Class: Etc +Position: Garment +Weight: 1 +# +2401294# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Resilient Landstone Footgear +Adds 100% resistance to the Chaos (Confusion) if base AGI is 70 or higher. +-------------------------- +Class: Etc +Position: Footgear +Weight: 1 +# +2401295# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Resilient Landstone Armor +Adds 100% resistance to the Chaos (Confusion) if base AGI is 70 or higher. +# +2401296# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Resilient Landstone Garment +Adds 100% resistance to the Chaos (Confusion) if base AGI is 70 or higher. +# +2401297# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Resilient Landstone Footgear +Adds 100% resistance to the Chaos (Confusion) if base AGI is 70 or higher. +# +2401298# +A mineral that awakens a bloodthirsty desire when equipped. +-------------------------- +ATK +4 +MATK +4 +-------------------------- +Set Bonus: +When equip 3 pieces of Bloodthirst Landstone Armor +Increases physical and magical damage against Demi-Human monster 1% +-------------------------- +If upgrade is +5 or higher, +Increases physical and magical damage against Demi-Human monster 2% +-------------------------- +If upgrade is +7 or higher, +Increases physical and magical damage against Demi-Human monster 2% +-------------------------- +Class: Etc +Position: Armor +Weight: 1 +# +2401299# +ATK +4 +MATK +4 +-------------------------- +Set Bonus: +When equip 3 pieces of Bloodthirst Landstone Armor +Increases physical and magical damage against Demi-Human monster 1% +-------------------------- +If upgrade is +5 or higher, +Increases physical and magical damage against Demi-Human monster 2% +-------------------------- +If upgrade is +7 or higher, +Increases physical and magical damage against Demi-Human monster 2% +# +2401300# +The Enchant Stone for June. Avaiable for every equipment costume slot. +-------------------------- +All status+1 +Atk+5 Matk+5 +Increase physical and magical damage on DemiHuman monster by 2%. +VCT -3% +-------------------------- +Every effect will be remove on 16th July 2025.. +-------------------------- +Weight: 0 +# +2401301# +All status+1 +Atk+5 Matk+5 +Increase physical and magical damage on DemiHuman monster by 2%. +VCT -3% +-------------------------- +Every effect will be remove on 16th July 2025.. +# +2401309# +An ancient emblem, said to grant power to Epic Angeling pet. +-------------------------- +Note: The effect will not be activated unless equipped with Angeling pet.. +-------------------------- +Class: Pet Emblem +Weight: 0 +# +2401310# +An ancient emblem, said to grant power to Epic Cat o' Nine Tails pet. +-------------------------- +Note: The effect will not be activated unless equipped with Cat o' Nine Tails pet.. +-------------------------- +Class: Pet Emblem +Weight: 0 +# +2401311# +An ancient emblem, said to grant power to Epic Chimera pet. +-------------------------- +Note: The effect will not be activated unless equipped with Chimera pet.. +-------------------------- +Class: Pet Emblem +Weight: 0 +# +2401312# +An ancient emblem, said to grant power to Epic Dark Illusion pet. +-------------------------- +Note: The effect will not be activated unless equipped with Dark Illusion pet.. +-------------------------- +Class: Pet Emblem +Weight: 0 +# +2401313# +An ancient emblem, said to grant power to Epic Ghostring pet. +-------------------------- +Note: The effect will not be activated unless equipped with Ghostring pet.. +-------------------------- +Class: Pet Emblem +Weight: 0 +# +2401314# +An ancient emblem, said to grant power to Epic Gryphon pet. +-------------------------- +Note: The effect will not be activated unless equipped with Gryphon pet.. +-------------------------- +Class: Pet Emblem +Weight: 0 +# +2401315# +An ancient emblem, said to grant power to Epic Hydro pet. +-------------------------- +Note: The effect will not be activated unless equipped with Hydro pet.. +-------------------------- +Class: Pet Emblem +Weight: 0 +# +2401316# +An ancient emblem, said to grant power to Epic Maya Purple pet. +-------------------------- +Note: The effect will not be activated unless equipped with Maya Purple pet.. +-------------------------- +Class: Pet Emblem +Weight: 0 +# +2401317# +An ancient emblem, said to grant power to Epic Mutant Dragon pet. +-------------------------- +Note: The effect will not be activated unless equipped with Mutant Dragon pet.. +-------------------------- +Class: Pet Emblem +Weight: 0 +# +2401318# +An ancient emblem, said to grant power to Epic Owl Baron pet. +-------------------------- +Note: The effect will not be activated unless equipped with Owl Baron pet.. +-------------------------- +Class: Pet Emblem +Weight: 0 +# +2401319# +CRIT +1 +Crit Dmg +1% +-------------------------- +Class: Etc +Weight: 0 +# +2401320# +CRIT +2 +Crit Dmg +2% +Weight Limit +50 +-------------------------- +Class: Etc +Weight: 0 +# +2401321# +CRIT +3 +Crit Dmg +3% +Weight Limit +100 +-------------------------- +Class: Etc +Weight: 0 +# +2401322# +CRIT +1 +Crit Dmg +1% +# +2401323# +CRIT +2 +Crit Dmg +2% +Weight Limit +50 +# +2401324# +CRIT +3 +Crit Dmg +3% +Weight Limit +100 +# +2401325# +An orel, known for its exceptional durability, is believed to offer protection against potential damage to equipment. +-------------------------- +If refinement fails, your equipment will not break but still be downgraded. +-------------------------- +Weight: 1 +# +2401326# +An orel, known for its exceptional durability, is believed to offer protection against potential damage to weapon. +-------------------------- +If refinement fails, your equipment will not break but still be downgraded. +-------------------------- +Weight: 1 +# +2401327# +Coins used to purchase items in the Battle Pass SS3 shop. +-------------------------- +Weight: 1 +# +2401328# +MATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Magical Landstone Armor I +Magical Landstone I Combo +MATK +1% +# +2401328# +MATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Magical Landstone Armor I +Magical Landstone I Combo +MATK +1% +# +2401329# +MATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Magical Landstone Garment I +Magical Landstone I Combo +MATK +1% +# +2401330# +MATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Magical Landstone Footgear I +Magical Landstone I Combo +MATK +1% +# +2401331# +MATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Magical Landstone Armor II +Magical Landstone II Combo +MATK +5% +# +2401332# +MATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Magical Landstone Garment II +Magical Landstone II Combo +MATK +5% +# +2401333# +MATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Magical Landstone Footgear II +Magical Landstone II Combo +MATK +5% +# +2401334# +AGI +1 +LUK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of Dual AGI-LUK Landstone Armor +Dual AGI-LUK Landstone I Combo +AGI +1 +LUK +1 +# +2401335# +AGI +1 +LUK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of Dual AGI-LUK Landstone Garment +Dual AGI-LUK Landstone I Combo +AGI +1 +LUK +1 +# +2401336# +AGI +1 +LUK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of Dual AGI-LUK Landstone Footgear +Dual AGI-LUK Landstone I Combo +AGI +1 +LUK +1 +# +2401337# +MATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Magical Landstone Armor I +Magical Landstone I Combo +MATK +1% +# +2401338# +MATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Magical Landstone Garment I +Magical Landstone I Combo +MATK +1% +# +2401339# +MATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Magical Landstone Footgear I +Magical Landstone I Combo +MATK +1% +# +2401340# +MATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Magical Landstone Armor II +Magical Landstone II Combo +MATK +5% +# +2401341# +MATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Magical Landstone Garment II +Magical Landstone II Combo +MATK +5% +# +2401342# +MATK +1% +-------------------------- +Set Bonus:: +When equip 3 pieces of Magical Landstone Footgear II +Magical Landstone II Combo +MATK +5% +# +2401343# +AGI +1 +LUK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of Dual AGI-LUK Landstone Armor +Dual AGI-LUK Landstone I Combo +AGI +1 +LUK +1 +# +2401344# +AGI +1 +LUK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of Dual AGI-LUK Landstone Garment +Dual AGI-LUK Landstone I Combo +AGI +1 +LUK +1 +# +2401345# +AGI +1 +LUK +1 +-------------------------- +Set Bonus:: +When equip 3 pieces of Dual AGI-LUK Landstone Footgear +Dual AGI-LUK Landstone I Combo +AGI +1 +LUK +1 +# +2401346# +Weight Limit +100 +# +2401347# +Weight Limit +200 +# +2401348# +Weight Limit +300 +# +2401349# +ATK +3 +# +2401350# +ATK +6 +# +2401351# +ATK +9 +# +2401352# +DEF +5 +# +2401353# +DEF +10 +# +2401354# +DEF +15 +# +2401355# +DEF +20 +# +2401356# +DEF +30 +# +2401357# +FLEE +4 +# +2401358# +FLEE +5 +# +2401359# +FLEE +9 +# +2401360# +Weight Limit +30 +# +2401361# +Weight Limit +60 +# +2401362# +Weight Limit +90 +# +2401363# +Perfect Dodge +1 +# +2401364# +Perfect Dodge +2 +# +2401365# +Perfect Dodge +3 +# +2401366# +HIT +3 +# +2401367# +HIT +4 +# +2401368# +Increases Ranged Physical Damage by 1%. +# +2401369# +Increases Ranged Physical Damage by 2%. +# +2401370# +Increases Ranged Physical Damage by 3%. +# +2401371# +Aspd +1% +# +2401372# +Aspd +2% +# +2401373# +Aspd +3% +# +2401374# +Aspd +4% +# +2401375# +Aspd +5% +# +2401376# +Move Speed +1% +# +2401377# +Move Speed +2% +# +2401378# +Move Speed +3% +# +2401379# +HP Recovery 3% +# +2401380# +HP Recovery 4% +# +2401381# +HP Recovery 5% +# +2401382# +Increase HP recovery from HP potion +1% +# +2401383# +Increase HP recovery from HP potion +2% +# +2401384# +Increase HP recovery from HP potion +3% +# +2401385# +Increase HP recovery from HP potion +4% +# +2401386# +Increase HP recovery from HP potion +5% +# +2401387# +SP Recovery 3% +# +2401388# +SP Recovery 4% +# +2401389# +SP Recovery 5% +# +2401390# +Increase SP Recovery from SP potion +1% +# +2401391# +Increase SP Recovery from SP potion +2% +# +2401392# +Increase SP Recovery from SP potion +3% +# +2401393# +Increase SP Recovery from SP potion +4% +# +2401394# +Increase SP Recovery from SP potion +5% +# +2401395# +Critical Damage +1% +# +2401396# +Critical Damage +2% +# +2401397# +Critical Damage +3% +# +2401398# +Magic Attack 3 +# +2401399# +Magic Attack 6 +# +2401400# +Magic Attack 9 +# +2401401# +MaxSP +2% +# +2401402# +MaxSP +3% +# +2401403# +ATK +1% +# +2401404# +ATK +2% +# +2401405# +ATK +3% +# +2401406# +VCT -1% +# +2401407# +VCT -2% +# +2401408# +VCT -3% +# +2401409# +Ignore defense of all race monster +1% +# +2401410# +Ignore defense of all race monster +2% +# +2401411# +Ignore defense of all race monster +3% +# +2401412# +MaxSP +20 +# +2401413# +MaxSP +30 +# +2401414# +Increase resistance to Frozen 5% +# +2401415# +Increase resistance to Frozen 10% +# +2401416# +Increase resistance to Frozen 15% +# +2401417# +Critical +1. +# +2401418# +Critical +2. +# +2401419# +Critical +3. +# +2401420# +Critical +4. +# +2401421# +Reduces damage taken from Water property attacks by 1%. +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401422# +Reduces damage taken from Fire property attacks by 1%. +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401423# +Reduces damage taken from Wind property attacks by 1%. +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401424# +Reduces damage taken from Earth property attacks by 1%. +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401425# +Reduces damage taken from Holy property attacks by 1%. +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401426# +Adds 2% resistance to Frozen status. +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401427# +Adds 2% resistance to Stone Curse status. +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401428# +Adds 2% resistance to Stun status. +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401429# +Adds 2% resistance to Chaos status. +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401430# +Adds 2% resistance to Curse status. +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401431# +Increases Melee physical damage on targets by 1%. +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401432# +MATK +1% +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401433# +VCT -1% +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401434# +STR +1 +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401435# +AGI +1 +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401436# +INT +1 +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401437# +VIT +1 +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401438# +DEX +1 +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401439# +LUK +1 +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401440# +HP +50 +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401441# +SP +7 +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401442# +FLEE +1 +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401443# +HIT +1 +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401444# +CRITICAL +1 +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401445# +CRITICAL DAMAGE +1% +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401446# +ASPD +1% +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401447# +DEF +5 +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401448# +MDEF +1 +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401449# +Reduces damage taken from long-ranged attacks by 1%. +# +2401450# +Increases long-ranged damage on targets by 1%. +# +2401451# +Reduces damage taken from Water property attacks by 1%. +# +2401452# +Reduces damage taken from Fire property attacks by 1%. +# +2401453# +Reduces damage taken from Wind property attacks by 1%. +# +2401454# +Reduces damage taken from Earth property attacks by 1%. +# +2401455# +Reduces damage taken from Holy property attacks by 1%. +# +2401456# +Adds 2% resistance to Frozen status. +# +2401457# +Adds 2% resistance to Stone Curse status. +# +2401458# +Adds 2% resistance to Stun status. +# +2401459# +Adds 2% resistance to Chaos status. +# +2401460# +Adds 2% resistance to Curse status. +# +2401461# +Increases Melee physical damage on targets by 1%. +# +2401462# +MATK +1% +# +2401463# +VCT -1% +# +2401464# +STR +1 +# +2401465# +AGI +1 +# +2401466# +INT +1 +# +2401467# +VIT +1 +# +2401468# +DEX +1 +# +2401469# +LUK +1 +# +2401470# +HP +50 +# +2401471# +SP +7 +# +2401472# +FLEE +1 +# +2401473# +HIT +1 +# +2401474# +CRITICAL +1 +# +2401475# +CRITICAL DAMAGE +1% +# +2401476# +ASPD +1% +# +2401477# +DEF +5 +# +2401478# +MDEF +1 +# +2401492# +Reduces damage taken from long-ranged attacks by 1%. +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401493# +Increases long-ranged damage on targets by 1%. +-------------------------- +Class: Etc +Position: Accessory +Weight: 0 +# +2401494# +Increase Melee physical damage by 1% +-------------------------- +Weight: 1 +# +2401495# +Increase Melee physical damage by 1% +-------------------------- +Weight: 1 +# +2401496# +Increase Melee physical damage by 1% +-------------------------- +Weight: 1 +# +2401497# +Increase Melee physical damage by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Melee Landstone Armor II +Melee Landstone Armor II Combo +Increase Melee physical damage by 3% +-------------------------- +Weight: 1 +# +2401498# +Increase Melee physical damage by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Melee Landstone Garment II +Melee Landstone Garment II Combo +Increase Melee physical damage by 3% +-------------------------- +Weight: 1 +# +2401499# +Increase Melee physical damage by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Melee Landstone Footgear II +Melee Landstone Footgear II Combo +Increase Melee physical damage by 3% +-------------------------- +Weight: 1 +# +2401500# +STR +1 +VIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Dual STR-VIT Landstone Armor +Dual STR-VIT Landstone Armor Combo +STR +1 +VIT +1 +-------------------------- +Weight: 1 +# +2401501# +STR +1 +VIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Dual STR-VIT Landstone Garment +Dual STR-VIT Landstone Garment Combo +STR +1 +VIT +1 +-------------------------- +Weight: 1 +# +2401502# +STR +1 +VIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Dual STR-VIT Landstone Footgear +Dual STR-VIT Landstone Footgear Combo +STR +1 +VIT +1 +-------------------------- +Weight: 1 +# +2401503# +Increase Melee physical damage by 1% +# +2401504# +Increase Melee physical damage by 1% +# +2401505# +Increase Melee physical damage by 1% +# +2401506# +Increase Melee physical damage by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Melee Landstone Armor II +Melee Landstone Armor II Combo +Increase Melee physical damage by 3% +# +2401507# +Increase Melee physical damage by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Melee Landstone Garment II +Melee Landstone Garment II Combo +Increase Melee physical damage by 3% +# +2401508# +Increase Melee physical damage by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Melee Landstone Footgear II +Melee Landstone Footgear II Combo +Increase Melee physical damage by 3% +# +2401509# +STR +1 +VIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Dual STR-VIT Landstone Armor +Dual STR-VIT Landstone Armor Combo +STR +1 +VIT +1 +# +2401510# +STR +1 +VIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Dual STR-VIT Landstone Garment +Dual STR-VIT Landstone Garment Combo +STR +1 +VIT +1 +# +2401511# +STR +1 +VIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Dual STR-VIT Landstone Footgear +Dual STR-VIT Landstone Footgear Combo +STR +1 +VIT +1 +# +2401512# +Special coins for use in Boarding shop. +-------------------------- +Weight: 0 +# +2401513# +Atk+10, Matk+10 +MSP+20% +Increase physical and magical damage on Gonryun and Amatsu field and dungeon monsters by 10% +-------------------------- +Collection Effect +Increase physical and magical damage on Gonryun and Amatsu field and dungeon monsters by 3% +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2401514# +Collection effects: +Increase physical and magical damage on Gonryun and Amatsu field and dungeon monsters by 2% +Reduce damage taken from Gonryun and Amatsu field and dungeon monsters by 1% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Type: Collection +Weight: 1 +# +2401515# +Collection effects: +Increase physical and magical damage on Gonryun and Amatsu field and dungeon monsters by 4% +Reduce damage taken from Gonryun and Amatsu field and dungeon monsters by 2% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Type: Collection +Weight: 1 +# +2401516# +Collection effects: +Increase physical and magical damage on Gonryun and Amatsu field and dungeon monsters by 6% +Reduce damage taken from Gonryun and Amatsu field and dungeon monsters by 3% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Type: Collection +Weight: 1 +# +2401517# +Collection effects: +Increase physical and magical damage on Gonryun and Amatsu field and dungeon monsters by 8% +Reduce damage taken from Gonryun and Amatsu field and dungeon monsters by 4% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Type: Collection +Weight: 1 +# +2401518# +Collection effects: +Increase physical and magical damage on Gonryun and Amatsu field and dungeon monsters by 10% +Reduce damage taken from Gonryun and Amatsu field and dungeon monsters by 5% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Type: Collection +Weight: 1 +# +2401519# +Collection effects: +Increase physical and magical damage on Gonryun and Amatsu field and dungeon monsters by 12% +Reduce damage taken from Gonryun and Amatsu field and dungeon monsters by 6% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Type: Collection +Weight: 1 +# +2401520# +Collection effects: +Increase physical and magical damage on Gonryun and Amatsu field and dungeon monsters by 14% +Reduce damage taken from Gonryun and Amatsu field and dungeon monsters by 7% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Type: Collection +Weight: 1 +# +2401521# +Collection effects: +Increase physical and magical damage on Gonryun and Amatsu field and dungeon monsters by 16% +Reduce damage taken from Gonryun and Amatsu field and dungeon monsters by 8% +Increase Drop Rate of Gonryun and Amatsu field and dungeon monsters by 1% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Type: Collection +Weight: 1 +# +2401522# +Collection effects: +Increase physical and magical damage on Gonryun and Amatsu field and dungeon monsters by 18% +Reduce damage taken from Gonryun and Amatsu field and dungeon monsters by 9% +Increase Drop Rate of Gonryun and Amatsu field and dungeon monsters by 3% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Type: Collection +Weight: 1 +# +2401523# +Collection effects: +Increase physical and magical damage on Gonryun and Amatsu field and dungeon monsters by 20% +Reduce damage taken from Gonryun and Amatsu field and dungeon monsters by 10% +Increase Drop Rate of Gonryun and Amatsu field and dungeon monsters by 5% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Type: Collection +Weight: 1 +# +2401542# +A crystal shard reflects untaken paths. It holds the echo of possibilities. +-------------------------- +Type: Etc +Weight: 0 +# +2401543# +A record from the combat simulation. +It's valuable to the researcher. +-------------------------- +Type: Etc +Weight: 0 +# +2401544# +A mineral that awakens a bloodthirsty desire when equipped. +-------------------------- +ATK +4 +MATK +4 +-------------------------- +Set Bonus: +When equip 3 pieces of Bloodthirst Landstone Garment +Increases physical and magical damage against Demi-Human monster 1% +-------------------------- +If upgrade is +5 or higher, +Increases physical and magical damage against Demi-Human monster 2% +-------------------------- +If upgrade is +7 or higher, +Increases physical and magical damage against Demi-Human monster 2% +-------------------------- +Class: Etc +Position: Garment +Weight: 1 +# +2401545# +ATK +4 +MATK +4 +-------------------------- +Set Bonus: +When equip 3 pieces of Bloodthirst Landstone Garment +Increases physical and magical damage against Demi-Human monster 1% +-------------------------- +If upgrade is +5 or higher, +Increases physical and magical damage against Demi-Human monster 2% +-------------------------- +If upgrade is +7 or higher, +Increases physical and magical damage against Demi-Human monster 2% +# +2401546# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of True Vision Landstone Armor +Adds 100% resistance to the Blind if base AGI is 70 or higher. +-------------------------- +Class: Etc +Position: Armor +Weight: 1 +# +2401547# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of True Vision Landstone Garment +Adds 100% resistance to the Blind if base AGI is 70 or higher. +-------------------------- +Class: Etc +Position: Garment +Weight: 1 +# +2401548# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of True Vision Landstone Footgear +Adds 100% resistance to the Blind if base AGI is 70 or higher. +-------------------------- +Class: Etc +Position: Footgear +Weight: 1 +# +2401549# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of True Vision Landstone Armor +Adds 100% resistance to the Blind if base AGI is 70 or higher. +# +2401550# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of True Vision Landstone Garment +Adds 100% resistance to the Blind if base AGI is 70 or higher. +# +2401551# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of True Vision Landstone Footgear +Adds 100% resistance to the Blind if base AGI is 70 or higher. +# +2401564# +INT +1 +DEX +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Dual INT-DEX Landstone Armor +Dual INT-DEX Landstone Armor Combo +INT +1 +DEX +1 +-------------------------- +Weight: 1 +# +2401565# +INT +1 +DEX +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Dual INT-DEX Landstone Garment +Dual INT-DEX Landstone Garment Combo +INT +1 +DEX +1 +-------------------------- +Weight: 1 +# +2401566# +INT +1 +DEX +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Dual INT-DEX Landstone Footgear +Dual INT-DEX Landstone Footgear Combo +INT +1 +DEX +1 +-------------------------- +Weight: 1 +# +2401567# +ASPD +2% +Increase Water properties magical damage by 2% +-------------------------- +Set Bonus: +When equip 3 pieces of Sage Landstone Armor II +Sage Landstone Armor II Combo +Adds a 8% chance of buffing the user for 5 seconds when performing a physical attack; Adds a 100% chance of casting a random level 1 to 5 Cold Bolt. +-------------------------- +Weight: 1 +# +2401568# +ASPD +2% +Increase Fire properties magical damage by 2% +-------------------------- +Set Bonus: +When equip 3 pieces of Sage Landstone Garment II +Sage Landstone Garment II Combo +Adds a 8% chance of buffing the user for 5 seconds when performing a physical attack; Adds a 100% chance of casting a random level 1 to 5 Fire Bolt. +-------------------------- +Weight: 1 +# +2401569# +ASPD +2% +Increase Wind properties magical damage by 2% +-------------------------- +Set Bonus: +When equip 3 pieces of Sage Landstone Footgear II +Sage Landstone Footgear II Combo +Adds a 8% chance of buffing the user for 5 seconds when performing a physical attack; Adds a 100% chance of casting a random level 1 to 5 Lighting Bolt. +-------------------------- +Weight: 1 +# +2401570# +ASPD +1% +Increase Water properties magical damage by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Sage Landstone Armor I +Sage Landstone Armor I Combo +Adds a 5% chance of buffing the user for 5 seconds when performing a physical attack; Adds a 100% chance of casting a random level 1 to 3 Cold Bolt. +-------------------------- +Weight: 1 +# +2401571# +ASPD +1% +Increase Fire properties magical damage by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Sage Landstone Garment I +Sage Landstone Garment I Combo +Adds a 5% chance of buffing the user for 5 seconds when performing a physical attack; Adds a 100% chance of casting a random level 1 to 3 Fire Bolt. +-------------------------- +Weight: 1 +# +2401572# +ASPD +1% +Increase Wind properties magical damage by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Sage Landstone Footgear I +Sage Landstone Footgear I Combo +Adds a 5% chance of buffing the user for 5 seconds when performing a physical attack; Adds a 100% chance of casting a random level 1 to 3 Lighting Bolt. +-------------------------- +Weight: 1 +# +2401573# +INT +1 +DEX +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Dual INT-DEX Landstone Armor +Dual INT-DEX Landstone Armor Combo +INT +1 +DEX +1 +# +2401574# +INT +1 +DEX +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Dual INT-DEX Landstone Garment +Dual INT-DEX Landstone Garment Combo +INT +1 +DEX +1 +# +2401575# +INT +1 +DEX +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Dual INT-DEX Landstone Footgear +Dual INT-DEX Landstone Footgear Combo +INT +1 +DEX +1 +# +2401576# +ASPD +2% +Increase Water properties magical damage by 2% +-------------------------- +Set Bonus: +When equip 3 pieces of Sage Landstone Armor II +Sage Landstone Armor II Combo +Adds a 8% chance of buffing the user for 5 seconds when performing a physical attack; Adds a 100% chance of casting a random level 1 to 5 Cold Bolt. +# +2401577# +ASPD +2% +Increase Fire properties magical damage by 2% +-------------------------- +Set Bonus: +When equip 3 pieces of Sage Landstone Garment II +Sage Landstone Garment II Combo +Adds a 8% chance of buffing the user for 5 seconds when performing a physical attack; Adds a 100% chance of casting a random level 1 to 5 Fire Bolt. +# +2401578# +ASPD +2% +Increase Wind properties magical damage by 2% +-------------------------- +Set Bonus: +When equip 3 pieces of Sage Landstone Footgear II +Sage Landstone Footgear II Combo +Adds a 8% chance of buffing the user for 5 seconds when performing a physical attack; Adds a 100% chance of casting a random level 1 to 5 Lighting Bolt. +# +2401579# +ASPD +1% +Increase Water properties magical damage by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Sage Landstone Armor I +Sage Landstone Armor I Combo +Adds a 5% chance of buffing the user for 5 seconds when performing a physical attack; Adds a 100% chance of casting a random level 1 to 3 Cold Bolt. +# +2401580# +ASPD +1% +Increase Fire properties magical damage by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Sage Landstone Garment I +Sage Landstone Garment I Combo +Adds a 5% chance of buffing the user for 5 seconds when performing a physical attack; Adds a 100% chance of casting a random level 1 to 3 Fire Bolt. +# +2401581# +ASPD +1% +Increase Wind properties magical damage by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Sage Landstone Footgear I +Sage Landstone Footgear I Combo +Adds a 5% chance of buffing the user for 5 seconds when performing a physical attack; Adds a 100% chance of casting a random level 1 to 3 Lighting Bolt. +# +2401562# +The Enchant Stone for JULY. Avaiable for every equipment costume slot. +-------------------------- +Increase physical and magical damage on Demi-human monster by 2% +Decrease physical and magical damage taken by Demi-human monster 2% +Exp / Drop rate + 5% +-------------------------- +Every effect will be remove on 20th August 2025.. +-------------------------- +Weight: 0 +# +2401563# +Increase physical and magical damage on Demi-human monster by 2% +Decrease physical and magical damage taken by Demi-human monster 2% +Exp / Drop rate + 5% +-------------------------- +Every effect will be remove on 20th August 2025.. +# +2401582# +Coins used to purchase items in the Battle Pass SS4 shop. +-------------------------- +Weight: 1 +# +2401583# +VCT -2% +FCT -5% +-------------------------- +Class: Etc +Weight: 0 +# +2401584# +VCT -4% +FCT -5% +-------------------------- +Class: Etc +Weight: 0 +# +2401585# +VCT -6% +FCT -5% +-------------------------- +Class: Etc +Weight: 0 +# +2401586# +VCT -2% +FCT -5% +# +2401587# +VCT -4% +FCT -5% +# +2401588# +VCT -6% +FCT -5% +# +2401667# +All Status +1 +-------------------------- +Set Bonus: +When equip 3 pieces of All Status Landstone Armor +All Status Landstone Armor Combo +All Status +2 +MaxHP +500 +MaxSP +100 +-------------------------- +Weight: 1 +# +2401668# +All Status +1 +-------------------------- +Set Bonus: +When equip 3 pieces of All Status Landstone Garment +All Status Landstone Garment Combo +All Status +2 +MaxHP +500 +MaxSP +100 +-------------------------- +Weight: 1 +# +2401669# +All Status +1 +-------------------------- +Set Bonus: +When equip 3 pieces of All Status Landstone Footgear +All Status Landstone Footgear Combo +All Status +2 +MaxHP +500 +MaxSP +100 +-------------------------- +Weight: 1 +# +2401670# +Increases physical damage on all size monster by 1%. +Increases magical damage on all size monster by 1%. +-------------------------- +Set Bonus: +When equip 3 pieces of Breach Landstone Armor +Breach Landstone Armor Combo +Increases physical damage on all size monster by 1%. +Increases magical damage on all size monster by 1%. +Ignore Defense of all race monsters by 3%. +Ignore Magic Defense of all race monsters by 3%. +-------------------------- +Weight: 1 +# +2401671# +Increases physical damage on all size monster by 1%. +Increases magical damage on all size monster by 1%. +-------------------------- +Set Bonus: +When equip 3 pieces of Breach Landstone Garment +Breach Landstone Garment Combo +Increases physical damage on all size monster by 1%. +Increases magical damage on all size monster by 1%. +Ignore Defense of all race monsters by 3%. +Ignore Magic Defense of all race monsters by 3%. +-------------------------- +Weight: 1 +# +2401672# +Increases physical damage on all size monster by 1%. +Increases magical damage on all size monster by 1%. +-------------------------- +Set Bonus: +When equip 3 pieces of Breach Landstone Footgear +Breach Landstone Footgear Combo +Increases physical damage on all size monster by 1%. +Increases magical damage on all size monster by 1%. +Ignore Defense of all race monsters by 3%. +Ignore Magic Defense of all race monsters by 3%. +-------------------------- +Weight: 1 +# +2401673# +All Status +1 +-------------------------- +Set Bonus: +When equip 3 pieces of All Status Landstone Armor +All Status Landstone Armor Combo +All Status +2 +MaxHP +500 +MaxSP +100 +# +2401674# +All Status +1 +-------------------------- +Set Bonus: +When equip 3 pieces of All Status Landstone Garment +All Status Landstone Garment Combo +All Status +2 +MaxHP +500 +MaxSP +100 +# +2401675# +All Status +1 +-------------------------- +Set Bonus: +When equip 3 pieces of All Status Landstone Footgear +All Status Landstone Footgear Combo +All Status +2 +MaxHP +500 +MaxSP +100 +# +2401676# +Increases physical damage on all size monster by 1%. +Increases magical damage on all size monster by 1%. +-------------------------- +Set Bonus: +When equip 3 pieces of Breach Landstone Armor +Breach Landstone Armor Combo +Increases physical damage on all size monster by 1%. +Increases magical damage on all size monster by 1%. +Ignore Defense of all race monsters by 3%. +Ignore Magic Defense of all race monsters by 3%. +# +2401677# +Increases physical damage on all size monster by 1%. +Increases magical damage on all size monster by 1%. +-------------------------- +Set Bonus: +When equip 3 pieces of Breach Landstone Garment +Breach Landstone Garment Combo +Increases physical damage on all size monster by 1%. +Increases magical damage on all size monster by 1%. +Ignore Defense of all race monsters by 3%. +Ignore Magic Defense of all race monsters by 3%. +# +2401678# +Increases physical damage on all size monster by 1%. +Increases magical damage on all size monster by 1%. +-------------------------- +Set Bonus: +When equip 3 pieces of Breach Landstone Footgear +Breach Landstone Footgear Combo +Increases physical damage on all size monster by 1%. +Increases magical damage on all size monster by 1%. +Ignore Defense of all race monsters by 3%. +Ignore Magic Defense of all race monsters by 3%. +# +2401708# +VIT +3 +Adds 40% resistance to Stun status +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2401709# +Reflects 15% of the received short-ranged damage back to the attacker. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2401710# +MaxHP -60% +MaxSP +50%. +When hunting monster, can get banana and its recovery rate is 50%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2401711# +Adds 5% chance of casting Level 5 Meteor Storm on the attacker when receiving a a physical attack. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2401712# +Enables the use of Increase Agility Level 1. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2401713# +HIT +50 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2401714# +Increases SP Consumption by 50%. +Reduces the number of gems required for skills by 1. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2401715# +MaxHP -50% +Adds a permanent Level 1 Endure effect to the compounded item. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2401716# +Increases the effect of the Heal, Sanctuary and Potion Pitcher skills by 15% when they are cast by the wearer, but also increases SP Comsumption by 30%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2401717# +DEX +2 +Ignores magical defense of Boss class by 15%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2401718# +ATK +10% +Adds 1.5% chance of auto casting level 10 Magnum Break when performing a physical attack. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2401719# +Reduce SP Consumption by 15%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2401720# +VCT -15% +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2401721# +Adds a 15% chance to reflect magical attacks that do not target the ground back to the attacker. +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2401722# +Adds 5% chance of restoring 5% of damage as SP when performing a physical attack. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2401723# +Physical attacks deal splash damage in a 3x3 area around the target. +HIT -30 +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2401724# +Bypass 100% of Hard Defense of Normal monsters and players when performing a physical attack. +HP Recovery - 100% +Drains 888 HP from the user every 5 seconds. +Drains 999 HP from the user when the compounded item is equipped. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2401725# +INT +3. +Adds 50% resistance to Darkness status +Adds 50% resistance to Curse status +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2401726# +All Stats +1 +Adds 1.5% chance of autocasting Level 5 Kyrie Eleison each time the wearer is physically attacked. +-------------------------- +If base INT is 99 or higher, +Adds 3.5% additional chance of autocasting Level 5 Kyrie Eleison each time the wearer is physically attacked. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2401727# +Global Cooldown -15%. +-------------------------- +Type: Card +Compound on: Headgear +Weight: 1 +# +2401728# +Increases Physical Damage against enemies of Holy and Shadow elemental and Angel and Demon race monsters by 20%. +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2401729# +ATK + 1, CRIT + 1, and HIT +1 for every 20 job levels. +Adds 0.1% chance of casting Level 2 Earthquake when receiving a physical attack. +-------------------------- +Type: Card +Compound on: Accessory +Weight: 1 +# +2401730# +Adds 1% chance of casting Level 1 Storm Gust when performing a short-ranged physical attack. + +Adds 10% chance of inflicting Frozen on the target when performing a physical pttack. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2401731# +MATK +5%, MaxSP -50%. + +Increases magic damage on Demi-Human race monster by 25%. + +Increases magic damage on Angel race monster by 25%. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2401732# +MaxHP +5% +MaxSP +5% +Recover 50 HP and 10 SP every 15 seconds. +-------------------------- +Type: Card +Compound on: Shoes +Weight: 1 +# +2401733# +Increase physical damage on all class monster by 5%. +Adds 2.5% chance of autocasting Lv.1 Dispell when performing physical attack. +-------------------------- +Weapon is indestructible. +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2401734# +Skull of an Adventurer +-------------------------- +Class: ETC +Weight: 0 +# +2401736# +HIT +2 +ASPD +2% +-------------------------- +Set Bonus: +When equip 3 pieces of Assassin Landstone Armor II +Assassin Landstone Armor II Combo +Adds a 15% chance to inflict Poison on the target when performing a physical attack. +If upgrade level is +7 or higher: +Increases Grimtooth damage by 10%. +-------------------------- +Weight: 1 +# +2401737# +HIT +2 +ASPD +2% +-------------------------- +Set Bonus: +When equip 3 pieces of Assassin Landstone Garment II +Assassin Landstone Garment II Combo +Adds a 15% chance to inflict Poison on the target when performing a physical attack. +If upgrade level is +7 or higher: +Increases Grimtooth damage by 10%. +-------------------------- +Weight: 1 +# +2401738# +HIT +2 +ASPD +2% +-------------------------- +Set Bonus: +When equip 3 pieces of Assassin Landstone Footgear II +Assassin Landstone Footgear II Combo +Adds a 15% chance to inflict Poison on the target when performing a physical attack. +If upgrade level is +7 or higher: +Increases Grimtooth damage by 10%. +-------------------------- +Weight: 1 +# +2401739# +HIT +1 +ASPD +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Assassin Landstone Armor I +Assassin Landstone Armor I Combo +Adds a 7% chance to inflict Poison on the target when performing a physical attack. +If upgrade level is +7 or higher: +Increases Grimtooth damage by 5%. +-------------------------- +Weight: 1 +# +2401740# +HIT +1 +ASPD +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Assassin Landstone Garment I +Assassin Landstone Garment I Combo +Adds a 7% chance to inflict Poison on the target when performing a physical attack. +If upgrade level is +7 or higher: +Increases Grimtooth damage by 5%. +-------------------------- +Weight: 1 +# +2401741# +HIT +1 +ASPD +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Assassin Landstone Footgear I +Assassin Landstone Footgear I Combo +Adds a 7% chance to inflict Poison on the target when performing a physical attack. +If upgrade level is +7 or higher: +Increases Grimtooth damage by 5%. +-------------------------- +Weight: 1 +# +2401742# +Reduce damage taken from Medium size monster by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Medium Protection Landstone Shield II +Medium Protection Landstone Shield II Combo + +If upgrade level is +5 or higher: +Reduce damage taken from Medium size monster by 1% +-------------------------- +If upgrade level is +7 or higher: +Reduce damage taken from Medium size monster by 2% +-------------------------- +Class: Etc +Position: Shield +Weight: 1 +# +2401743# +Reduce damage taken from Medium size monster by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Medium Protection Landstone Shield I +Medium Protection Landstone Shield I Combo + +If upgrade level is +7 or higher: +DEF +15 +MDEF +1 +-------------------------- +Class: Etc +Position: Shield +Weight: 1 +# +2401744# +HIT +2 +ASPD +2% +-------------------------- +Set Bonus: +When equip 3 pieces of Assassin Landstone Armor II +Assassin Landstone Armor II Combo +Adds a 15% chance to inflict Poison on the target when performing a physical attack. +If upgrade level is +7 or higher: +Increases Grimtooth damage by 10%. +# +2401745# +HIT +2 +ASPD +2% +-------------------------- +Set Bonus: +When equip 3 pieces of Assassin Landstone Garment II +Assassin Landstone Garment II Combo +Adds a 15% chance to inflict Poison on the target when performing a physical attack. +If upgrade level is +7 or higher: +Increases Grimtooth damage by 10%. +# +2401746# +HIT +2 +ASPD +2% +-------------------------- +Set Bonus: +When equip 3 pieces of Assassin Landstone Footgear II +Assassin Landstone Footgear II Combo +Adds a 15% chance to inflict Poison on the target when performing a physical attack. +If upgrade level is +7 or higher: +Increases Grimtooth damage by 10%. +# +2401747# +HIT +1 +ASPD +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Assassin Landstone Armor I +Assassin Landstone Armor I Combo +Adds a 7% chance to inflict Poison on the target when performing a physical attack. +If upgrade level is +7 or higher: +Increases Grimtooth damage by 5%. +# +2401748# +HIT +1 +ASPD +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Assassin Landstone Garment I +Assassin Landstone Garment I Combo +Adds a 7% chance to inflict Poison on the target when performing a physical attack. +If upgrade level is +7 or higher: +Increases Grimtooth damage by 5%. +# +2401749# +HIT +1 +ASPD +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Assassin Landstone Footgear I +Assassin Landstone Footgear I Combo +Adds a 7% chance to inflict Poison on the target when performing a physical attack. +If upgrade level is +7 or higher: +Increases Grimtooth damage by 5%. +# +2401750# +Reduce damage taken from Medium size monster by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Medium Protection Landstone Shield II +Medium Protection Landstone Shield II Combo + +If upgrade level is +5 or higher: +Reduce damage taken from Medium size monster by 1% +-------------------------- +If upgrade level is +7 or higher: +Reduce damage taken from Medium size monster by 2% +# +2401751# +Reduce damage taken from Medium size monster by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Medium Protection Landstone Shield I +Medium Protection Landstone Shield I Combo + +If upgrade level is +7 or higher: +DEF +15 +MDEF +1 +# +2401752# +MDEF +1 +Reduces damage taken from Wind and Water element attack by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Rainstorm Landstone Shield +Rainstorm Landstone Shield Combo + +MDEF +2 +-------------------------- +If upgrade level is +7 or higher: +Adds a 4% chance to reduces damage taken from Wind and Water element attack by 5% for 5 seconds when receiving a magical attack. +-------------------------- +If upgrade level is +9 or higher: +Reduces damage taken from Demi-human monsters by 3% +-------------------------- +Class: Etc +Position: Shield +Weight: 1 +# +2401753# +MDEF +1 +Reduces damage taken from Fire and Earth element attack by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Molten Core Landstone Shield +Molten Core Landstone Shield Combo + +MDEF +2 +-------------------------- +If upgrade level is +7 or higher: +Adds a 4% chance to reduces damage taken from Fire and Earth element attack by 5% for 5 seconds when receiving a magical attack. +-------------------------- +If upgrade level is +9 or higher: +Reduces damage taken from Demi-human monsters by 3% +-------------------------- +Class: Etc +Position: Shield +Weight: 1 +# +2401754# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Silence Immunity Landstone Armor +Adds 100% resistance to the Silence if base VIT is 70 or higher. +-------------------------- +Class: Etc +Position: Armor +Weight: 1 +# +2401755# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Silence Immunity Landstone Garment +Adds 100% resistance to the Silence if base VIT is 70 or higher. +-------------------------- +Class: Etc +Position: Garment +Weight: 1 +# +2401756# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Silence Immunity Landstone Footgear +Adds 100% resistance to the Silence if base VIT is 70 or higher. +-------------------------- +Class: Etc +Position: Footgear +Weight: 1 +# +2401757# +MDEF +1 +Reduces damage taken from Wind and Water element attack by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Rainstorm Landstone Shield +Rainstorm Landstone Shield Combo + +MDEF +2 +-------------------------- +If upgrade level is +7 or higher: +Adds a 4% chance to reduces damage taken from Wind and Water element attack by 5% for 5 seconds when receiving a magical attack. +-------------------------- +If upgrade level is +9 or higher: +Reduces damage taken from Demi-human monsters by 3% +# +2401758# +MDEF +1 +Reduces damage taken from Fire and Earth element attack by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of Molten Core Landstone Shield +Molten Core Landstone Shield Combo + +MDEF +2 +-------------------------- +If upgrade level is +7 or higher: +Adds a 4% chance to reduces damage taken from Fire and Earth element attack by 5% for 5 seconds when receiving a magical attack. +-------------------------- +If upgrade level is +9 or higher: +Reduces damage taken from Demi-human monsters by 3% +# +2401759# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Silence Immunity Landstone Armor +Adds 100% resistance to the Silence if base VIT is 70 or higher. +# +2401760# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Silence Immunity Landstone Garment +Adds 100% resistance to the Silence if base VIT is 70 or higher. +# +2401761# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Silence Immunity Landstone Footgear +Adds 100% resistance to the Silence if base VIT is 70 or higher. +# +2401763# +Dwarven hammer, worn by time and use, capable of forging equipment fused with gold. +Materials for crafting gold equipment. (Rate Up 5%) +-------------------------- +Type: Collectible +Weight: 0 +# +2401764# +A brooch awarded to a warrior who distinguished himself in genesis battle ground. +-------------------------- +Type: Collectible +Weight: 0 +# +2401765# +Dwarven hammer, worn by time and use, capable of forging equipment fused with gold. +Materials for crafting gold equipment. +-------------------------- +Type: Collectible +Weight: 0 +# +2401766# +[GF] Jackpot Coin. +A coin that can be used to play the Golden Fortune Machine once +-------------------------- +Type: Etc +Weight: 0 +# +2401783# +The Enchant Stone for AUG. Avaiable for every equipment costume slot. +-------------------------- +Increase physical and magical damage on Demi-human monster by 2% +Decrease physical and magical damage taken by Demi-human monster 2% +Exp / Drop rate + 5% +-------------------------- +Every effect will be remove on 24th September 2025.. +-------------------------- +Weight: 0 +# +2401784# +Increase physical and magical damage on Demi-human monster by 2% +Decrease physical and magical damage taken by Demi-human monster 2% +Exp / Drop rate + 5% +-------------------------- +Every effect will be remove on 24th September 2025.. +# +2401785# +Coins used to purchase items in the Battle Pass SS5 shop. +-------------------------- +Weight: 1 +# +2401786# +Set Bonus: + +When equip 3 pieces of Teleport Amistr Landstone + +Enables Level 1 Teleport. +-------------------------- +Class: Etc +Position: Garment +Weight: 0 +# +2401787# +Set Bonus: + +When equip 3 pieces of Greed Amistr Landstone + +Enables Level 1 Greed. +-------------------------- +Class: Etc +Position: Garment +Weight: 0 +# +2401788# +Set Bonus: + +When equip 3 pieces of Maximize Amistr Landstone + +Enables Level 1 Maximize. +-------------------------- +Class: Etc +Position: Garment +Weight: 0 +# +2401789# +Set Bonus: + +When equip 3 pieces of Improve Amistr Landstone + +Enables Level 1 Improve Concentration. +-------------------------- +Class: Etc +Position: Garment +Weight: 0 +# +2401790# +Set Bonus: + +When equip 3 pieces of Teleport Amistr Landstone + +Enables Level 1 Teleport. +# +2401791# +Set Bonus: + +When equip 3 pieces of Greed Amistr Landstone + +Enables Level 1 Greed. +# +2401792# +Set Bonus: + +When equip 3 pieces of Maximize Amistr Landstone + +Enables Level 1 Maximize. +# +2401793# +Set Bonus: + +When equip 3 pieces of Improve Amistr Landstone + +Enables Level 1 Improve Concentration. +# +2401794# +A smelly fish from the pond nearby the village +smelly for human but might not for something else +-------------------------- +Weight: 0 +# +2401795# +Special coins for use in Shroud shop. +-------------------------- +Weight: 0 +# +2401796# +A famous banana that could be found only in Umbala, The villager might need them. +-------------------------- +Weight: 0 +# +2401797# +AGI +5 +FLEE +25 +Increase physical and magical damage against Umbala field and dungeon monsters by 10% +-------------------------- +Collection Effect +Increase physical and magical damage against Umbala field and dungeon monsters by 3% +-------------------------- +Type: Card +Compound on: Garment +Weight: 1 +# +2401798# +Collection Effect +Increases physical and magical damage on Umbala field and dungeon monsters by 2% +Reduce damage taken from Umbala field and dungeon monsters by 2% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Class: Etc +Weight: 1 +# +2401799# +Collection Effect +Increases physical and magical damage on Umbala field and dungeon monsters by 4% +Reduce damage taken from Umbala field and dungeon monsters by 4% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Class: Etc +Weight: 1 +# +2401800# +Collection Effect +Increases physical and magical damage on Umbala field and dungeon monsters by 8% +Reduce damage taken from Umbala field and dungeon monsters by 6% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Class: Etc +Weight: 1 +# +2401801# +Collection Effect +Increases physical and magical damage on Umbala field and dungeon monsters by 10% +Reduces damage taken from Umbala field and dungeon monsters by 8% +Increase Drop Rate of Umbala field and dungeon field and dungeon by 3% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Class: Etc +Weight: 1 +# +2401802# +Collection Effect +Increases physical and magical damage on Umbala field and dungeon monsters by 20% +Reduces damage taken from Umbala field and dungeon monsters by 10% +Increase Drop Rate of Umbala field and dungeon field and dungeon by 5% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Class: Etc +Weight: 1 +# +2401804# +HIT +2 +ATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Monk Landstone Armor II +Monk Landstone Armor II Combo +Enable to use Triple Attack Lv.7 +If upgrade level is +7 or higher: +Increases Triple Attack damage by 4%. +-------------------------- +Weight: 1 +# +2401805# +HIT +2 +ATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Monk Landstone Garment II +Monk Landstone Garment II Combo +Enable to use Triple Attack Lv.7 +If upgrade level is +7 or higher: +Increases Triple Attack damage by 4%. +-------------------------- +Weight: 1 +# +2401806# +HIT +2 +ATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Monk Landstone Footgear II +Monk Landstone Footgear II Combo +Enable to use Triple Attack Lv.7 +If upgrade level is +7 or higher: +Increases Triple Attack damage by 4%. +-------------------------- +Weight: 1 +# +2401807# +HIT +1 +ATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Monk Landstone Armor I +Monk Landstone Armor I Combo +Enable to use Triple Attack Lv.5 +If upgrade level is +7 or higher: +Increases Triple Attack damage by 2%. +-------------------------- +Weight: 1 +# +2401808# +HIT +1 +ATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Monk Landstone Garment I +Monk Landstone Garment I Combo +Enable to use Triple Attack Lv.5 +If upgrade level is +7 or higher: +Increases Triple Attack damage by 2%. +-------------------------- +Weight: 1 +# +2401809# +HIT +1 +ATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Monk Landstone Footgear I +Monk Landstone Footgear I Combo +Enable to use Triple Attack Lv.5 +If upgrade level is +7 or higher: +Increases Triple Attack damage by 2%. +-------------------------- +Weight: 1 +# +2401810# +Increases Long Range physical damage by 1%. +-------------------------- +Set Bonus: +When equip 3 pieces of Long Range Landstone Armor II +Long Range Landstone Armor II Combo +Increases Long Range physical damage by 3% +-------------------------- +Weight: 1 +# +2401811# +Increases Long Range physical damage by 1%. +-------------------------- +Set Bonus: +When equip 3 pieces of Long Range Landstone Garment II +Long Range Landstone Garment II Combo +Increases Long Range physical damage by 3% +-------------------------- +Weight: 1 +# +2401812# +Increases Long Range physical damage by 1%. +-------------------------- +Set Bonus: +When equip 3 pieces of Long Range Landstone Footgear II +Long Range Landstone Footgear II Combo +Increases Long Range physical damage by 3% +-------------------------- +Weight: 1 +# +2401813# +Increases Long Range physical damage by 1%. +-------------------------- +Weight: 1 +# +2401814# +Increases Long Range physical damage by 1%. +-------------------------- +Weight: 1 +# +2401815# +Increases Long Range physical damage by 1%. +-------------------------- +Weight: 1 +# +2401816# +HIT +2 +ATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Monk Landstone Armor II +Monk Landstone Armor II Combo +Enable to use Triple Attack Lv.7 +If upgrade level is +7 or higher: +Increases Triple Attack damage by 4%. +# +2401817# +HIT +2 +ATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Monk Landstone Garment II +Monk Landstone Garment II Combo +Enable to use Triple Attack Lv.7 +If upgrade level is +7 or higher: +Increases Triple Attack damage by 4%. +# +2401818# +HIT +2 +ATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Monk Landstone Footgear II +Monk Landstone Footgear II Combo +Enable to use Triple Attack Lv.7 +If upgrade level is +7 or higher: +Increases Triple Attack damage by 4%. +# +2401819# +HIT +1 +ATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Monk Landstone Armor I +Monk Landstone Armor I Combo +Enable to use Triple Attack Lv.5 +If upgrade level is +7 or higher: +Increases Triple Attack damage by 2%. +# +2401820# +HIT +1 +ATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Monk Landstone Garment I +Monk Landstone Garment I Combo +Enable to use Triple Attack Lv.5 +If upgrade level is +7 or higher: +Increases Triple Attack damage by 2%. +# +2401821# +HIT +1 +ATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Monk Landstone Footgear I +Monk Landstone Footgear I Combo +Enable to use Triple Attack Lv.5 +If upgrade level is +7 or higher: +Increases Triple Attack damage by 2%. +# +2401822# +Increases Long Range physical damage by 1%. +-------------------------- +Set Bonus: +When equip 3 pieces of Long Range Landstone Armor II +Long Range Landstone Armor II Combo +Increases Long Range physical damage by 3% +# +2401823# +Increases Long Range physical damage by 1%. +-------------------------- +Set Bonus: +When equip 3 pieces of Long Range Landstone Garment II +Long Range Landstone Garment II Combo +Increases Long Range physical damage by 3% +# +2401824# +Increases Long Range physical damage by 1%. +-------------------------- +Set Bonus: +When equip 3 pieces of Long Range Landstone Footgear II +Long Range Landstone Footgear II Combo +Increases Long Range physical damage by 3% +# +2401825# +Increases Long Range physical damage by 1%. +# +2401826# +Increases Long Range physical damage by 1%. +# +2401827# +Increases Long Range physical damage by 1%. +# +2401879# +HIT +2 +FLEE +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Knight Landstone Armor II +Knight Landstone Armor II Combo +Adds a 10% chance to cast Provoke Lv.2 on yourself when performing a physical attack. +If upgrade level is +7 or higher: +Increases Bash damage by 5%. +-------------------------- +Weight: 1 +# +2401880# +HIT +2 +FLEE +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Knight Landstone Garment II +Knight Landstone Garment II Combo +Adds a 10% chance to cast Provoke Lv.2 on yourself when performing a physical attack. +If upgrade level is +7 or higher: +Increases Bash damage by 5%. +-------------------------- +Weight: 1 +# +2401881# +HIT +2 +FLEE +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Knight Landstone Footgear II +Knight Landstone Footgear II Combo +Adds a 10% chance to cast Provoke Lv.2 on yourself when performing a physical attack. +If upgrade level is +7 or higher: +Increases Bash damage by 5%. +-------------------------- +Weight: 1 +# +2401882# +HIT +1 +FLEE +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Knight Landstone Armor I +Knight Landstone Armor I Combo +Adds a 5% chance to cast Provoke Lv.1 on yourself when performing a physical attack. +If upgrade level is +7 or higher: +Increases Bash damage by 2%. +-------------------------- +Weight: 1 +# +2401883# +HIT +1 +FLEE +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Knight Landstone Garment I +Knight Landstone Garment I Combo +Adds a 5% chance to cast Provoke Lv.1 on yourself when performing a physical attack. +If upgrade level is +7 or higher: +Increases Bash damage by 2%. +-------------------------- +Weight: 1 +# +2401884# +HIT +1 +FLEE +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Knight Landstone Footgear I +Knight Landstone Footgear I Combo +Adds a 5% chance to cast Provoke Lv.1 on yourself when performing a physical attack. +If upgrade level is +7 or higher: +Increases Bash damage by 2%. +-------------------------- +Weight: 1 +# +2401885# +Crit Dmg +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Fatal Landstone Armor II +Fatal Landstone Armor II Combo +Crit Dmg +5% +-------------------------- +Weight: 1 +# +2401886# +Crit Dmg +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Fatal Landstone Garment II +Fatal Landstone Garment II Combo +Crit Dmg +5% +-------------------------- +Weight: 1 +# +2401887# +Crit Dmg +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Fatal Landstone Footgear II +Fatal Landstone Footgear II Combo +Crit Dmg +5% +-------------------------- +Weight: 1 +# +2401888# +Crit Dmg +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Fatal Landstone Armor I +Fatal Landstone Armor I Combo +Crit Dmg +1% +-------------------------- +Weight: 1 +# +2401889# +Crit Dmg +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Fatal Landstone Garment I +Fatal Landstone Garment I Combo +Crit Dmg +1% +-------------------------- +Weight: 1 +# +2401890# +Crit Dmg +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Fatal Landstone Footgear I +Fatal Landstone Footgear I Combo +Crit Dmg +1% +-------------------------- +Weight: 1 +# +2401891# +HIT +2 +FLEE +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Knight Landstone Armor II +Knight Landstone Armor II Combo +Adds a 10% chance to cast Provoke Lv.2 on yourself when performing a physical attack. +If upgrade level is +7 or higher: +Increases Bash damage by 5%. +# +2401892# +HIT +2 +FLEE +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Knight Landstone Garment II +Knight Landstone Garment II Combo +Adds a 10% chance to cast Provoke Lv.2 on yourself when performing a physical attack. +If upgrade level is +7 or higher: +Increases Bash damage by 5%. +# +2401893# +HIT +2 +FLEE +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Knight Landstone Footgear II +Knight Landstone Footgear II Combo +Adds a 10% chance to cast Provoke Lv.2 on yourself when performing a physical attack. +If upgrade level is +7 or higher: +Increases Bash damage by 5%. +# +2401894# +HIT +1 +FLEE +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Knight Landstone Armor I +Knight Landstone Armor I Combo +Adds a 5% chance to cast Provoke Lv.1 on yourself when performing a physical attack. +If upgrade level is +7 or higher: +Increases Bash damage by 2%. +# +2401895# +HIT +1 +FLEE +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Knight Landstone Garment I +Knight Landstone Garment I Combo +Adds a 5% chance to cast Provoke Lv.1 on yourself when performing a physical attack. +If upgrade level is +7 or higher: +Increases Bash damage by 2%. +# +2401896# +HIT +1 +FLEE +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Knight Landstone Footgear I +Knight Landstone Footgear I Combo +Adds a 5% chance to cast Provoke Lv.1 on yourself when performing a physical attack. +If upgrade level is +7 or higher: +Increases Bash damage by 2%. +# +2401897# +Crit Dmg +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Fatal Landstone Armor II +Fatal Landstone Armor II Combo +Crit Dmg +5% +# +2401898# +Crit Dmg +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Fatal Landstone Garment II +Fatal Landstone Garment II Combo +Crit Dmg +5% +# +2401899# +Crit Dmg +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Fatal Landstone Footgear II +Fatal Landstone Footgear II Combo +Crit Dmg +5% +# +2401900# +Crit Dmg +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Fatal Landstone Armor I +Fatal Landstone Armor I Combo +Crit Dmg +1% +# +2401901# +Crit Dmg +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Fatal Landstone Garment I +Fatal Landstone Garment I Combo +Crit Dmg +1% +# +2401902# +Crit Dmg +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Fatal Landstone Footgear I +Fatal Landstone Footgear I Combo +Crit Dmg +1% +# +2401938# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Curse Ward Landstone Armor +Adds 50% resistance to the Curse if base VIT is 70 or higher. +-------------------------- +Class: Etc +Position: Armor +Weight: 1 +# +2401939# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Curse Ward Landstone Garment +Adds 50% resistance to the Curse if base VIT is 70 or higher. +-------------------------- +Class: Etc +Position: Garment +Weight: 1 +# +2401940# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Curse Ward Landstone Footgear +Adds 50% resistance to the Curse if base VIT is 70 or higher. +-------------------------- +Class: Etc +Position: Footgear +Weight: 1 +# +2401941# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Curse Ward Landstone Armor +Adds 50% resistance to the Curse if base VIT is 70 or higher. +# +2401942# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Curse Ward Landstone Garment +Adds 50% resistance to the Curse if base VIT is 70 or higher. +# +2401943# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Curse Ward Landstone Footgear +Adds 50% resistance to the Curse if base VIT is 70 or higher. +# +2401944# +Coins used to purchase items in the Battle Pass SS6 shop. +-------------------------- +Weight: 1 +# +2401945# +FLEE +2 +-------------------------- +Class: Etc +Position: Middle +Weight: 0 +# +2401946# +FLEE +4 +Weight Limit +50 +-------------------------- +Class: Etc +Position: Middle +Weight: 0 +# +2401947# +FLEE +6 +Weight Limit +100 +-------------------------- +Class: Etc +Position: Middle +Weight: 0 +# +2401948# +FLEE +2 +# +2401949# +FLEE +4 +Weight Limit +50 +# +2401950# +FLEE +6 +Weight Limit +100 +# +2401951# +The Enchant Stone for SEP. Avaiable for every equipment costume slot. +-------------------------- +Increase physical and magical damage on Demi-human monster by 2% +Decrease physical and magical damage taken by Demi-human monster 2% +Exp / Drop rate + 5% +-------------------------- +Every effect will be remove on 16 October 2025 Before MA.. +-------------------------- +Weight: 0 +# +2401952# +Increase physical and magical damage on Demi-human monster by 2% +Decrease physical and magical damage taken by Demi-human monster 2% +Exp / Drop rate + 5% +-------------------------- +Every effect will be remove on 16 October 2025 Before MA.. +# +2401954# +The Land of Izlude II is a special item that grants ownership of a unique piece of land +-------------------------- +Land of Izlude II upgraded buff: +- Fast complete daily quest system. +- New dungeon teleportation. +- Adds new NPC. +-------------------------- +Collection Effect +All Status+1 +Grants access to a special restricted area in Izlude. +-------------------------- +Land Seasonal Buff +Special effects that will be active during the event period. +-------------------------- +Weight: 0 +# +2401955# +The Land of Morroc II is a special item that grants ownership of a unique piece of land +-------------------------- +Land of Izlude II upgraded buff: +- Fast complete daily quest system. +- New dungeon teleportation. +- Adds new NPC. +-------------------------- +Collection Effect +All Status+1 +Grants access to a special restricted area in Morroc. +-------------------------- +Land Seasonal Buff +Special effects that will be active during the event period. +-------------------------- +Weight: 0 +# +2401956# +The Land of Prontera II is a special item that grants ownership of a unique piece of land +-------------------------- +Land of Izlude II upgraded buff: +- Fast complete daily quest system. +- New dungeon teleportation. +- Adds new NPC. +-------------------------- +Collection Effect +All Status+1 +Grants access to a special restricted area in Prontera. +-------------------------- +Land Seasonal Buff +Special effects that will be active during the event period. +-------------------------- +Weight: 0 +# +2401957# +STR +2 +HIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Blacksmith Landstone Armor II +Blacksmith Landstone Armor II Combo +Enable to use Weaponry Research Lv.10 + +If upgrade level is +7 or higher: +Increases Mammonite damage by 5% +-------------------------- +Weight: 1 +# +2401958# +STR +2 +HIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Blacksmith Landstone Garment II +Blacksmith Landstone Garment II Combo +Enable to use Weaponry Research Lv.10 + +If upgrade level is +7 or higher: +Increases Mammonite damage by 5% +-------------------------- +Weight: 1 +# +2401959# +STR +2 +HIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Blacksmith Landstone Footgear II +Blacksmith Landstone Footgear II Combo +Enable to use Weaponry Research Lv.10 + +If upgrade level is +7 or higher: +Increases Mammonite damage by 5% +-------------------------- +Weight: 1 +# +2401960# +STR +1 +HIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Blacksmith Landstone Armor I +Blacksmith Landstone Armor I Combo +Enable to use Weaponry Research Lv.5 + +If upgrade level is +7 or higher: +Increases Mammonite damage by 2% +-------------------------- +Weight: 1 +# +2401961# +STR +1 +HIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Blacksmith Landstone Garment I +Blacksmith Landstone Garment I Combo +Enable to use Weaponry Research Lv.5 + +If upgrade level is +7 or higher: +Increases Mammonite damage by 2% +-------------------------- +Weight: 1 +# +2401962# +STR +1 +HIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Blacksmith Landstone Footgear I +Blacksmith Landstone Footgear I Combo +Enable to use Weaponry Research Lv.5 + +If upgrade level is +7 or higher: +Increases Mammonite damage by 2% +-------------------------- +Weight: 1 +# +2401963# +HIT Physical Damage +1% +-------------------------- +Set Bonus: +When equip 3 pieces of HIT Physical Landstone Armor II +HIT Physical Landstone Armor II Combo +HIT Physical Damage +3% +-------------------------- +Weight: 1 +# +2401964# +HIT Physical Damage +1% +-------------------------- +Set Bonus: +When equip 3 pieces of HIT Physical Landstone Garment II +HIT Physical Landstone Garment II Combo +HIT Physical Damage +3% +-------------------------- +Weight: 1 +# +2401965# +HIT Physical Damage +1% +-------------------------- +Set Bonus: +When equip 3 pieces of HIT Physical Landstone Footgear II +HIT Physical Landstone Footgear II Combo +HIT Physical Damage +3% +-------------------------- +Weight: 1 +# +2401966# +HIT Physical Damage +1% +-------------------------- +Set Bonus: +When equip 3 pieces of HIT Physical Landstone Armor I +HIT Physical Landstone Armor I Combo +HIT Physical Damage +1% +-------------------------- +Weight: 1 +# +2401967# +HIT Physical Damage +1% +-------------------------- +Set Bonus: +When equip 3 pieces of HIT Physical Landstone Garment I +HIT Physical Landstone Garment I Combo +HIT Physical Damage +1% +-------------------------- +Weight: 1 +# +2401968# +HIT Physical Damage +1% +-------------------------- +Set Bonus: +When equip 3 pieces of HIT Physical Landstone Footgear I +HIT Physical Landstone Footgear I Combo +HIT Physical Damage +1% +-------------------------- +Weight: 1 +# +2401969# +STR +2 +HIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Blacksmith Landstone Armor II +Blacksmith Landstone Armor II Combo +Enable to use Weaponry Research Lv.10 + +If upgrade level is +7 or higher: +Increases Mammonite damage by 5% +# +2401970# +STR +2 +HIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Blacksmith Landstone Garment II +Blacksmith Landstone Garment II Combo +Enable to use Weaponry Research Lv.10 + +If upgrade level is +7 or higher: +Increases Mammonite damage by 5% +# +2401971# +STR +2 +HIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Blacksmith Landstone Footgear II +Blacksmith Landstone Footgear II Combo +Enable to use Weaponry Research Lv.10 + +If upgrade level is +7 or higher: +Increases Mammonite damage by 5% +# +2401972# +STR +1 +HIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Blacksmith Landstone Armor I +Blacksmith Landstone Armor I Combo +Enable to use Weaponry Research Lv.5 + +If upgrade level is +7 or higher: +Increases Mammonite damage by 2% +# +2401973# +STR +1 +HIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Blacksmith Landstone Garment I +Blacksmith Landstone Garment I Combo +Enable to use Weaponry Research Lv.5 + +If upgrade level is +7 or higher: +Increases Mammonite damage by 2% +# +2401974# +STR +1 +HIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Blacksmith Landstone Footgear I +Blacksmith Landstone Footgear I Combo +Enable to use Weaponry Research Lv.5 + +If upgrade level is +7 or higher: +Increases Mammonite damage by 2% +# +2401975# +HIT Physical Damage +1% +-------------------------- +Set Bonus: +When equip 3 pieces of HIT Physical Landstone Armor II +HIT Physical Landstone Armor II Combo +HIT Physical Damage +3% +# +2401976# +HIT Physical Damage +1% +-------------------------- +Set Bonus: +When equip 3 pieces of HIT Physical Landstone Garment II +HIT Physical Landstone Garment II Combo +HIT Physical Damage +3% +# +2401977# +HIT Physical Damage +1% +-------------------------- +Set Bonus: +When equip 3 pieces of HIT Physical Landstone Footgear II +HIT Physical Landstone Footgear II Combo +HIT Physical Damage +3% +# +2401978# +HIT Physical Damage +1% +-------------------------- +Set Bonus: +When equip 3 pieces of HIT Physical Landstone Armor I +HIT Physical Landstone Armor I Combo +HIT Physical Damage +1% +# +2401979# +HIT Physical Damage +1% +-------------------------- +Set Bonus: +When equip 3 pieces of HIT Physical Landstone Garment I +HIT Physical Landstone Garment I Combo +HIT Physical Damage +1% +# +2401980# +HIT Physical Damage +1% +-------------------------- +Set Bonus: +When equip 3 pieces of HIT Physical Landstone Footgear I +HIT Physical Landstone Footgear I Combo +HIT Physical Damage +1% +# +2401985# +Collection Effect +Increases physical and magical damage on Niflheim field monsters by 2% +Reduce damage taken from Niflheim field monsters by 2% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Class: Etc +Weight: 1 +# +2401986# +Collection Effect +Increases physical and magical damage on Niflheim field monsters by 4% +Reduce damage taken from Niflheim field monsters by 4% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Class: Etc +Weight: 1 +# +2401987# +Collection Effect +Increases physical and magical damage on Niflheim field monsters by 8% +Reduce damage taken from Niflheim field monsters by 6% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Class: Etc +Weight: 1 +# +2401988# +Collection Effect +Increases physical and magical damage on Niflheim field monsters by 10% +Reduces damage taken from Niflheim field monsters by 8% +Increase Drop Rate of Niflheim field by 3% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Class: Etc +Weight: 1 +# +2401989# +Collection Effect +Increases physical and magical damage on Niflheim field monsters by 20% +Reduces damage taken from Niflheim field monsters by 10% +Increase Drop Rate of Niflheim field by 5% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Class: Etc +Weight: 1 +# +2401990# +Special coins for use in Shroud shop. +-------------------------- +Weight: 0 +# +2401991# +Clotted blood can be used to create a certain kind of extract. +-------------------------- +Weight: 0 +# +2401992# +Adds a 30% chance to reflect magical attacks that do not target the ground back to the attacker. +-------------------------- +Reduces damage taken from Wind property attacks by 10%. +Immune to Frozen. +-------------------------- +Collection Effect +Increase physical and magical damage against Niflheim field and dungeon monsters by 3% +-------------------------- +Type: Card +Compound on: Armor +Weight: 1 +# +2401993# +A rare ticket that grants special powers to equipment. +-------------------------- +Class: Etc +Weight: 1 +# +2400785# +Debris from the remains of test subjects. +-------------------------- +Weight: 0 +# +2402020# +Collection Effect +Defeating monsters have a random chance to drop [Event] Rune Strawberry Cake, [Event] Schwartzwald Pine Jubilee and [Event] Arunafeltz Desert Sandwich. +-------------------------- +(This item will be deleted once the event ends.) +-------------------------- +Class: Etc +Weight: 0 +# +2201930# +A snack sent from the Rune-Midgarts Kingdom flavored with strawberries. +-------------------------- +Type: Stat booster +Effect: ATK & MATK +5 +Effect duration: 10 minutes +Weight: 0 +# +2201931# +A snack sent from Schwartzwalt. Ice cold fruit juice quenches your throat and cools your whole body. +-------------------------- +Type: Stat booster +Effect: HIT +10, FLEE +20 +Effect duration: 10 minutes +Weight: 0 +# +2201932# +A snack sent from Arunafeltz. This sandwich helps developing stamina with its spicy taste. +-------------------------- +Type: Stat booster +Effect: Critical +7 +Effect duration: 10 minutes +Weight: 0 +# +2201947# +A mystical scroll that grants a weapon the power to unleash its might. + +List of weapons that can unleash their power: +Claymore [2] +Saber [3] +Trident [3] +Pike [4] +Two-Handed Axe [2] +Orcish Axe [4] +Soul Staff +Evil Bone Wand +Stunner [2] +Bible [2] +Finger [2] +Gakkung [2] +Guitar [1] +Rante Whip [1] +Katar [2] +Damascus [2] +-------------------------- +Class: Etc +Weight: 0 +# +2201948# +When opened gives one of the following at random: + +Otherworld Landstone Armor +Otherworld Landstone Garment +Otherworld Landstone Footgear +-------------------------- +Class: Item Giver +Weight: 1 +# +2401994# +ATK +2 +HIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Bard Landstone Armor II +Bard Landstone Armor II Combo +Adds a 4% to cast Improve Concentration Lv.6 when casting Musical Strike. + +If upgrade level is +7 or higher: +Increases Musical Strike damage by 5%. +-------------------------- +Weight: 1 +# +2401995# +ATK +2 +HIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Bard Landstone Garment II +Bard Landstone Garment II Combo +Adds a 4% to cast Improve Concentration Lv.6 when casting Musical Strike. + +If upgrade level is +7 or higher: +Increases Musical Strike damage by 5%. +-------------------------- +Weight: 1 +# +2401996# +ATK +2 +HIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Bard Landstone Footgear II +Bard Landstone Footgear II Combo +Adds a 4% to cast Improve Concentration Lv.6 when casting Musical Strike. + +If upgrade level is +7 or higher: +Increases Musical Strike damage by 5%. +-------------------------- +Weight: 1 +# +2401997# +ATK +1 +HIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Bard Landstone Armor I +Bard Landstone Armor I Combo +Adds a 4% to cast Improve Concentration Lv.2 when casting Musical Strike. + +If upgrade level is +7 or higher: +Increases Musical Strike damage by 2%. +-------------------------- +Weight: 1 +# +2401998# +ATK +1 +HIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Bard Landstone Garment I +Bard Landstone Garment I Combo +Adds a 4% to cast Improve Concentration Lv.2 when casting Musical Strike. + +If upgrade level is +7 or higher: +Increases Musical Strike damage by 2%. +-------------------------- +Weight: 1 +# +2401999# +ATK +1 +HIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Bard Landstone Footgear I +Bard Landstone Footgear I Combo +Adds a 4% to cast Improve Concentration Lv.2 when casting Musical Strike. + +If upgrade level is +7 or higher: +Increases Musical Strike damage by 2%. +-------------------------- +Weight: 1 +# +2402000# +ATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Powerful Landstone Armor II +Powerful Landstone Armor II Combo +Increases physical damage against all class monster by 3%. + +If upgrade level is +7 or higher: +Increases physical damage against all class monster by 3%. +-------------------------- +Weight: 1 +# +2402001# +ATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Powerful Landstone Garment II +Powerful Landstone Garment II Combo +Increases physical damage against all class monster by 3%. + +If upgrade level is +7 or higher: +Increases physical damage against all class monster by 3%. +-------------------------- +Weight: 1 +# +2402002# +ATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Powerful Landstone Footgear II +Powerful Landstone Footgear II Combo +Increases physical damage against all class monster by 3%. + +If upgrade level is +7 or higher: +Increases physical damage against all class monster by 3%. +-------------------------- +Weight: 1 +# +2402003# +ATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Powerful Landstone Armor I +Powerful Landstone Armor I Combo +Increases physical damage against all class monster by 3%. +-------------------------- +Weight: 1 +# +2402004# +ATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Powerful Landstone Garment I +Powerful Landstone Garment I Combo +Increases physical damage against all class monster by 3%. +-------------------------- +Weight: 1 +# +2402005# +ATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Powerful Landstone Footgear I +Powerful Landstone Footgear I Combo +Increases physical damage against all class monster by 3%. +-------------------------- +Weight: 1 +# +2402018# +An ancient emblem, said to grant power to Epic Medusa pet. +-------------------------- +Note: The effect will not be activated unless equipped with Medusa pet.. +-------------------------- +Class: Pet Emblem +Weight: 0 +# +2402019# +An ancient emblem, said to grant power to Epic Mavka pet. +-------------------------- +Note: The effect will not be activated unless equipped with Mavka pet.. +-------------------------- +Class: Pet Emblem +Weight: 0 +# +2402021# +ATK +2 +HIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Bard Landstone Armor II +Bard Landstone Armor II Combo +Adds a 4% to cast Improve Concentration Lv.6 when casting Musical Strike. + +If upgrade level is +7 or higher: +Increases Musical Strike damage by 5%. +# +2402022# +ATK +2 +HIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Bard Landstone Garment II +Bard Landstone Garment II Combo +Adds a 4% to cast Improve Concentration Lv.6 when casting Musical Strike. + +If upgrade level is +7 or higher: +Increases Musical Strike damage by 5%. +# +2402023# +ATK +2 +HIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Bard Landstone Footgear II +Bard Landstone Footgear II Combo +Adds a 4% to cast Improve Concentration Lv.6 when casting Musical Strike. + +If upgrade level is +7 or higher: +Increases Musical Strike damage by 5%. +# +2402024# +ATK +1 +HIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Bard Landstone Armor I +Bard Landstone Armor I Combo +Adds a 4% to cast Improve Concentration Lv.2 when casting Musical Strike. + +If upgrade level is +7 or higher: +Increases Musical Strike damage by 2%. +# +2402025# +ATK +1 +HIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Bard Landstone Garment I +Bard Landstone Garment I Combo +Adds a 4% to cast Improve Concentration Lv.2 when casting Musical Strike. + +If upgrade level is +7 or higher: +Increases Musical Strike damage by 2%. +# +2402026# +ATK +1 +HIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Bard Landstone Footgear I +Bard Landstone Footgear I Combo +Adds a 4% to cast Improve Concentration Lv.2 when casting Musical Strike. + +If upgrade level is +7 or higher: +Increases Musical Strike damage by 2%. +# +2402027# +ATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Powerful Landstone Armor II +Powerful Landstone Armor II Combo +Increases physical damage against all class monster by 3%. + +If upgrade level is +7 or higher: +Increases physical damage against all class monster by 3%. +# +2402028# +ATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Powerful Landstone Garment II +Powerful Landstone Garment II Combo +Increases physical damage against all class monster by 3%. + +If upgrade level is +7 or higher: +Increases physical damage against all class monster by 3%. +# +2402029# +ATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Powerful Landstone Footgear II +Powerful Landstone Footgear II Combo +Increases physical damage against all class monster by 3%. + +If upgrade level is +7 or higher: +Increases physical damage against all class monster by 3%. +# +2402030# +ATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Powerful Landstone Armor I +Powerful Landstone Armor I Combo +Increases physical damage against all class monster by 3%. +# +2402031# +ATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Powerful Landstone Garment I +Powerful Landstone Garment I Combo +Increases physical damage against all class monster by 3%. +# +2402032# +ATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Powerful Landstone Footgear I +Powerful Landstone Footgear I Combo +Increases physical damage against all class monster by 3%. +# +2402051# +A stone that, merely by holding it, feels as though you are being protected by a mysterious power. +-------------------------- +DEF +10 +MDEF +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Cranial Landstone Footgear +Increases physical and magical damage against Demi-Human monster 1% +-------------------------- +If upgrade is +5 or higher, +Increases physical and magical damage against Demi-Human monster 1% +-------------------------- +If upgrade is +7 or higher, +Increases physical and magical damage against Demi-Human monster 1% +-------------------------- +If upgrade is +9 or higher, +Increases physical and magical damage against Demi-Human monster 2% +-------------------------- +Class: Etc +Position: Footgear +Weight: 1 +# +2402052# +DEF +10 +MDEF +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Cranial Landstone Footgear +Increases physical and magical damage against Demi-Human monster 1% +-------------------------- +If upgrade is +5 or higher, +Increases physical and magical damage against Demi-Human monster 1% +-------------------------- +If upgrade is +7 or higher, +Increases physical and magical damage against Demi-Human monster 1% +-------------------------- +If upgrade is +9 or higher, +Increases physical and magical damage against Demi-Human monster 2% +# +2402055# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Unpetrified Landstone Armor +Unpetrified Landstone Armor II Combo +Adds 10% resistance to the Stone Curse if base VIT is 70 or higher. +-------------------------- +Weight: 1 +# +2402056# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Unpetrified Landstone Garment +Unpetrified Landstone Garment II Combo +Adds 10% resistance to the Stone Curse if base VIT is 70 or higher. +-------------------------- +Weight: 1 +# +2402057# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Unpetrified Landstone Footgear +Unpetrified Landstone Footgear II Combo +Adds 10% resistance to the Stone Curse if base VIT is 70 or higher. +-------------------------- +Weight: 1 +# +2402058# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Unpetrified Landstone Armor +Unpetrified Landstone Armor II Combo +Adds 10% resistance to the Stone Curse if base VIT is 70 or higher. +# +2402059# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Unpetrified Landstone Garment +Unpetrified Landstone Garment II Combo +Adds 10% resistance to the Stone Curse if base VIT is 70 or higher. +# +2402060# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Unpetrified Landstone Footgear +Unpetrified Landstone Footgear II Combo +Adds 10% resistance to the Stone Curse if base VIT is 70 or higher. +# +2402041# +ATK +6 +# +2402042# +ATK +9 +# +2402043# +HP Recovery 1% +# +2402044# +HP Recovery 2% +# +2402045# +Increases Healing skills effectiveness by 3%. +# +2402046# +Increases Healing skills effectiveness by 4%. +# +2402047# +Increases Healing skills effectiveness by 5%. +# +2402048# +DEF +25 +# +2402049# +DEF +30 +# +2402050# +HIT +2 +# +2402054# +A pure cluster of energy. +it's hard to believe it was discovered in such a place of darkness. +Legend has it that it can be used to imbue weapons with greater power. +-------------------------- +Class: Etc +Weight: 0 +# +2402139# +Coins used to purchase items in the Battle Pass SS7 shop. +-------------------------- +Weight: 1 +# +2402140# +HIT +1 +HIT Physical Damage +1% +-------------------------- +Class: Etc +Weight: 1 +# +2402141# +HIT +2 +HIT Physical Damage +2% +-------------------------- +Class: Etc +Weight: 1 +# +2402142# +HIT +3 +HIT Physical Damage +3% +-------------------------- +Class: Etc +Weight: 1 +# +2402143# +HIT +1 +HIT Physical Damage +1% +# +2402144# +HIT +2 +HIT Physical Damage +2% +# +2402145# +HIT +3 +HIT Physical Damage +3% +# +2402146# +MATK +2 +CRIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Priest Landstone Armor II +Priest Landstone Armor II Combo +Adds a 8% to cast Holy Light Lv.1 when performing a normal physical attack. + +If upgrade level is +7 or higher: +Increases Holy Light damage by 5% +-------------------------- +Weight: 1 +# +2402147# +MATK +2 +CRIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Priest Landstone Garment II +Priest Landstone Garment II Combo +Adds a 8% to cast Holy Light Lv.1 when performing a normal physical attack. + +If upgrade level is +7 or higher: +Increases Holy Light damage by 5% +-------------------------- +Weight: 1 +# +2402148# +MATK +2 +CRIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Priest Landstone Footgear II +Priest Landstone Footgear II Combo +Adds a 8% to cast Holy Light Lv.1 when performing a normal physical attack. + +If upgrade level is +7 or higher: +Increases Holy Light damage by 5% +-------------------------- +Weight: 1 +# +2402149# +MATK +1 +CRIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Priest Landstone Armor I +Priest Landstone Armor I Combo +Adds a 6% to cast Holy Light Lv.1 when performing a normal physical attack. + +If upgrade level is +7 or higher: +Increases Holy Light damage by 2% +-------------------------- +Weight: 1 +# +2402150# +MATK +1 +CRIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Priest Landstone Garment I +Priest Landstone Garment I Combo +Adds a 6% to cast Holy Light Lv.1 when performing a normal physical attack. + +If upgrade level is +7 or higher: +Increases Holy Light damage by 2% +-------------------------- +Weight: 1 +# +2402151# +MATK +1 +CRIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Priest Landstone Footgear I +Priest Landstone Footgear I Combo +Adds a 6% to cast Holy Light Lv.1 when performing a normal physical attack. + +If upgrade level is +7 or higher: +Increases Holy Light damage by 2% +-------------------------- +Weight: 1 +# +2402152# +MATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Mystical Landstone Armor II +Mystical Landstone Armor II Combo +Increases magical damage against all class monster by 3%. + +If upgrade level is +7 or higher: +Increases magical damage against all class monster by 3%. +-------------------------- +Weight: 1 +# +2402153# +MATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Mystical Landstone Garment II +Mystical Landstone Garment II Combo +Increases magical damage against all class monster by 3%. + +If upgrade level is +7 or higher: +Increases magical damage against all class monster by 3%. +-------------------------- +Weight: 1 +# +2402154# +MATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Mystical Landstone Footgear II +Mystical Landstone Footgear II Combo +Increases magical damage against all class monster by 3%. + +If upgrade level is +7 or higher: +Increases magical damage against all class monster by 3%. +-------------------------- +Weight: 1 +# +2402155# +MATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Mystical Landstone Armor I +Mystical Landstone Armor I Combo +Increases magical damage against all class monster by 3%. +-------------------------- +Weight: 1 +# +2402156# +MATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Mystical Landstone Garment I +Mystical Landstone Garment I Combo +Increases magical damage against all class monster by 3%. +-------------------------- +Weight: 1 +# +2402157# +MATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Mystical Landstone Footgear I +Mystical Landstone Footgear I Combo +Increases magical damage against all class monster by 3%. +-------------------------- +Weight: 1 +# +2402158# +MATK +2 +CRIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Priest Landstone Armor II +Priest Landstone Armor II Combo +Adds a 8% to cast Holy Light Lv.1 when performing a normal physical attack. + +If upgrade level is +7 or higher: +Increases Holy Light damage by 5% +# +2402159# +MATK +2 +CRIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Priest Landstone Garment II +Priest Landstone Garment II Combo +Adds a 8% to cast Holy Light Lv.1 when performing a normal physical attack. + +If upgrade level is +7 or higher: +Increases Holy Light damage by 5% +# +2402160# +MATK +2 +CRIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Priest Landstone Footgear II +Priest Landstone Footgear II Combo +Adds a 8% to cast Holy Light Lv.1 when performing a normal physical attack. + +If upgrade level is +7 or higher: +Increases Holy Light damage by 5% +# +2402161# +MATK +1 +CRIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Priest Landstone Armor I +Priest Landstone Armor I Combo +Adds a 6% to cast Holy Light Lv.1 when performing a normal physical attack. + +If upgrade level is +7 or higher: +Increases Holy Light damage by 2% +# +2402162# +MATK +1 +CRIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Priest Landstone Garment I +Priest Landstone Garment I Combo +Adds a 6% to cast Holy Light Lv.1 when performing a normal physical attack. + +If upgrade level is +7 or higher: +Increases Holy Light damage by 2% +# +2402163# +MATK +1 +CRIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Priest Landstone Footgear I +Priest Landstone Footgear I Combo +Adds a 6% to cast Holy Light Lv.1 when performing a normal physical attack. + +If upgrade level is +7 or higher: +Increases Holy Light damage by 2% +# +2402164# +MATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Mystical Landstone Armor II +Mystical Landstone Armor II Combo +Increases magical damage against all class monster by 3%. + +If upgrade level is +7 or higher: +Increases magical damage against all class monster by 3%. +# +2402165# +MATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Mystical Landstone Garment II +Mystical Landstone Garment II Combo +Increases magical damage against all class monster by 3%. + +If upgrade level is +7 or higher: +Increases magical damage against all class monster by 3%. +# +2402166# +MATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Mystical Landstone Footgear II +Mystical Landstone Footgear II Combo +Increases magical damage against all class monster by 3%. + +If upgrade level is +7 or higher: +Increases magical damage against all class monster by 3%. +# +2402167# +MATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Mystical Landstone Armor I +Mystical Landstone Armor I Combo +Increases magical damage against all class monster by 3%. +# +2402168# +MATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Mystical Landstone Garment I +Mystical Landstone Garment I Combo +Increases magical damage against all class monster by 3%. +# +2402169# +MATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Mystical Landstone Footgear I +Mystical Landstone Footgear I Combo +Increases magical damage against all class monster by 3%. +# +2402170# +A crimson tear born from endless hatred, said to carry the curse of those who sought vengeance. +-------------------------- +Collect 1,000ea to exchange for a chance to obtain a Boss Card. +-------------------------- +Class: Etc +Weight: 0 +# +2402171# +A mysterious tear that never fades, shimmering with eternal sorrow as if time itself could not dry it. +-------------------------- +Can be used as a material to craft the Endless Garment. +-------------------------- +Class: Etc +Weight: 0 +# +2402172# +A boundless power condensed into a swirling core. +-------------------------- +Can be used as a material to craft the Endless Garment. +-------------------------- +Class: Etc +Weight: 0 +# +2402173# +Hit Physical Damage +3% +-------------------------- +Aver De Doshmal_in01,22,113,0,100,0,0 +-------------------------- +Class: Etc +Weight: 1 +# +2402174# +Hit Physical Damage +3% +# +2402175# +ATK +20 +Increases Long Range physical damage by 20% +-------------------------- +Class: Card +Position: Weapon +Weight: 1 +# +2402176# +MATK +20 +Increases magical damage against all class monster by 20% +-------------------------- +Class: Card +Position: Weapon +Weight: 1 +# +2402177# +ATK +20 +Increases Melee physical damage by 20% +-------------------------- +Class: Card +Position: Weapon +Weight: 1 +# +2402178# +A faint, murky mist, so dark it feels as though reaching into it would make your hand vanish. +-------------------------- +Class: Etc +Weight: 1 +# +2402179# +A rare key that serves as a gateway to the Otherworld. None can know what awaits at the far end. + +This key is used to access Endgame Content Part 2. +-------------------------- +Class: Etc +Weight: 1 +# +2402180# +An ancient coin, earned through a hidden quest. +-------------------------- +Class: Etc +Weight: 0 +# +2402181# +STR +1 +INT +1 +DEX +1 +Increases physical and magical damage against Otherworld monster by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of +[ Otherworld Landstone Armor ] + +[ Otherworld Landstone Combo ] +Increases physical and magical damage against Otherworld monster by 1% + +If upgrade level is +7 or higher, +Increases physical and magical damage against Otherworld monster by 3% + +If upgrade level is +9 or higher, +Increases physical and magical damage against Otherworld monster by 3% +-------------------------- +Class: Etc +Position: Armor +Weight: 1 +# +2402182# +FLEE +3 +DEF +5 +MDEF +1 +Reduces damage taken from Otherworld monster by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of +[ Otherworld Landstone Garment ] + +[ Otherworld Landstone Combo ] +Reduces damage taken from Otherworld monster by 1% + +If upgrade level is +7 or higher, +Reduces damage taken from Otherworld monster by 3% + +If upgrade level is +9 or higher, +Reduces damage taken from Otherworld monster by 3% +-------------------------- +Class: Etc +Position: Garment +Weight: 1 +# +2402183# +AGI +1 +VIT +1 +LUK +1 +Increases EXP in Otherworld Domain by 3% +-------------------------- +Set Bonus: +When equip 3 pieces of +[ Otherworld Landstone Footgear ] + +[ Otherworld Landstone Combo ] + +If upgrade level is +7 or higher, +Increases Drop Rate in Otherworld Domain by 3% + +If upgrade level is +9 or higher, +Increases Drop Rate in Otherworld Domain by 3% +-------------------------- +Class: Etc +Position: Footgear +Weight: 1 +# +2402184# +ATK +10 +Increases Long Range physical damage by 10% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2402185# +MATK +10 +Increases magical damage against all class monster by 10% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2402186# +ATK +10 +Increases Melee physical damage by 10% +-------------------------- +Type: Card +Compound on: Weapon +Weight: 1 +# +2402187# +A fragment of a rare key, said to unlock the sealed gates leading to the Otherworld. + +Note: This key fragment is used to access Endgame Content Part 2. +-------------------------- +Class: Etc +Weight: 1 +# +2402188# +A dirty coin, earned through a hidden quest. +-------------------------- +Class: Etc +Weight: 1 +# +2402189# +Special coins for use in Ruins shop. +-------------------------- +Weight: 0 +# +2402190# +An unfinished adventurer’s log, full of secrets about this place. +-------------------------- +Weight: 0 +# +2402191# +VIT +5 +DEF +25 +Reduce damage taken from Ayothaya and Louyang field and dungeon monsters by 10% +-------------------------- +Collection Effect +Increase physical and magical damage against Ayothaya Dungeon and Louyang Dungeon monsters by 3% +-------------------------- +Type: Card +Compound on: Shield +Weight: 1 +# +2402192# +Collection effects: + +Increases physical and magical damage on Ayothaya field and Ayothaya Dungeon monsters by 2% +Increases physical and magical damage on Louyang field and Louyang Dungeon monsters by 2% + +Increases damage taken from Ayothaya field and Ayothaya Dungeon monsters by 5% +Increases damage taken from Louyang field and Louyang Dungeon monsters by 5% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Weight: 1 +# +2402193# +Collection effects: + +Increases physical and magical damage on Ayothaya field and Ayothaya Dungeon monsters by 4% +Increases physical and magical damage on Louyang field and Louyang Dungeon monsters by 4% + +Increases damage taken from Ayothaya field and Ayothaya Dungeon monsters by 2% +Increases damage taken from Louyang field and Louyang Dungeon monsters by 2% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Weight: 1 +# +2402194# +Collection effects: + +Increases physical and magical damage on Ayothaya field and Ayothaya Dungeon monsters by 8% +Increases physical and magical damage on Louyang field and Louyang Dungeon monsters by 8% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Weight: 1 +# +2402195# +Collection effects: + +Increases physical and magical damage on Ayothaya field and Ayothaya Dungeon monsters by 10% +Increases physical and magical damage on Louyang field and Louyang Dungeon monsters by 10% + +Reduces damage taken from Ayothaya field and Ayothaya Dungeon monsters by 5% +Reduces damage taken from Louyang field and Louyang Dungeon monsters by 5% + +Increase Drop Rate of Ayothaya field and Ayothaya Dungeon by 3% +Increase Drop Rate of Louyang field and Louyang Dungeon by 3% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Weight: 1 +# +2402196# +Collection effects: + +Increases physical and magical damage on Ayothaya field and Ayothaya Dungeon monsters by 20% +Increases physical and magical damage on Louyang field and Louyang Dungeon monsters by 20% + +Reduces damage taken from Ayothaya field and Ayothaya Dungeon monsters by 10% +Reduces damage taken from Louyang field and Louyang Dungeon monsters by 10% + +Increase Drop Rate of Ayothaya field and Ayothaya Dungeon by 5% +Increase Drop Rate of Louyang field and Louyang Dungeon by 5% +-------------------------- +Collection effects apply to instance dungeons. +Activate only the highest-level effect of each episode collection item. +-------------------------- +Weight: 1 +# +2402201# +A glorious reward granted to the valiant hero who seizes the castle. +-------------------------- +Class: Etc +Weight: 0 +# +2402209# +A ticket for NOVA Premium users. +It can be exchanged for exclusive rewards. +-------------------------- +Class: Etc +Weight: 0 +# +2402198# +The Enchant Stone for September. Avaiable for every equipment costume slot. +-------------------------- +Increase physical and magical damage on Medium monster by 2% +Decrease physical and magical damage taken by Medium monster 2% +Exp / Drop rate + 5% +-------------------------- +Every effect will be remove on 20 November 2025 Before MA.. +-------------------------- +Weight: 0 +# +2402202# +Increase physical and magical damage on Medium monster by 2% +Decrease physical and magical damage taken by Medium monster 2% +Exp / Drop rate + 5% +-------------------------- +Every effect will be remove on 20 November 2025 Before MA.. +# +2402203# +ATK +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Power Gem Garment +Power Gem Garment Combo +Increases Melee physical damage by 3% + +If upgrade level is +7 or higher, +ATK +10 + +If upgrade level is +9 or higher, +ATK +10 +-------------------------- +Class: Etc +Position: Garment +Weight: 1 +# +2402204# +ASPD +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Ability Gem Garment +Ability Gem Garment Combo +ASPD +1 + +If upgrade level is +7 or higher, +FLEE +5 + +If upgrade level is +9 or higher, +FLEE +5 +-------------------------- +Class: Etc +Position: Garment +Weight: 1 +# +2402205# +Max HP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Vital Gem Garment +Vital Gem Garment Combo +DEF +30 + +If upgrade level is +7 or higher, +Reduces damage taken from Neutral property attacks by 3%. + +If upgrade level is +9 or higher, +Reduces damage taken from Neutral property attacks by 5%. +-------------------------- +Class: Etc +Position: Garment +Weight: 1 +# +2402206# +MATK +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Mind Gem Garment +Mind Gem Garment Combo +Increases magical damage against all race monster by 3% + +If upgrade level is +7 or higher, +MATK +10 + +If upgrade level is +9 or higher, +MATK +10 +-------------------------- +Class: Etc +Position: Garment +Weight: 1 +# +2402207# +ATK +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Focus Gem Garment +Focus Gem Garment Combo +Increases Long Range physical damage by 3% + +If upgrade level is +7 or higher, +ATK +10 + +If upgrade level is +9 or higher, +ATK +10 +-------------------------- +Class: Etc +Position: Garment +Weight: 1 +# +2402208# +ATK +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Lucky Gem Garment +Lucky Gem Garment Combo +Critical + 5 + +If upgrade level is +7 or higher, +Crit dmg 3%. + +If upgrade level is +9 or higher, +Crit dmg 3%. +-------------------------- +Class: Etc +Position: Garment +Weight: 1 +# +2402210# +ATK +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Power Gem Garment +Power Gem Garment Combo +Increases Melee physical damage by 3% + +If upgrade level is +7 or higher, +ATK +10 + +If upgrade level is +9 or higher, +ATK +10 +# +2402211# +ASPD +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Ability Gem Garment +Ability Gem Garment Combo +ASPD +1 + +If upgrade level is +7 or higher, +FLEE +5 + +If upgrade level is +9 or higher, +FLEE +5 +# +2402212# +Max HP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Vital Gem Garment +Vital Gem Garment Combo +DEF +30 + +If upgrade level is +7 or higher, +Reduces damage taken from Neutral property attacks by 3%. + +If upgrade level is +9 or higher, +Reduces damage taken from Neutral property attacks by 5%. +# +2402213# +MATK +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Mind Gem Garment +Mind Gem Garment Combo +Increases magical damage against all race monster by 3% + +If upgrade level is +7 or higher, +MATK +10 + +If upgrade level is +9 or higher, +MATK +10 +# +2402214# +ATK +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Focus Gem Garment +Focus Gem Garment Combo +Increases Long Range physical damage by 3% + +If upgrade level is +7 or higher, +ATK +10 + +If upgrade level is +9 or higher, +ATK +10 +# +2402215# +ATK +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Lucky Gem Garment +Lucky Gem Garment Combo +Critical + 5 + +If upgrade level is +7 or higher, +Crit dmg 3%. + +If upgrade level is +9 or higher, +Crit dmg 3%. +# +2402216# +STR +1 +INT +1 +DEX +1 +Increases physical and magical damage against Otherworld monster by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of +[ Otherworld Landstone Armor ] + +[ Otherworld Landstone Combo ] +Increases physical and magical damage against Otherworld monster by 1% + +If upgrade level is +7 or higher, +Increases physical and magical damage against Otherworld monster by 3% + +If upgrade level is +9 or higher, +Increases physical and magical damage against Otherworld monster by 3% +# +2402217# +FLEE +3 +DEF +5 +MDEF +1 +Reduces damage taken from Otherworld monster by 1% +-------------------------- +Set Bonus: +When equip 3 pieces of +[ Otherworld Landstone Garment ] + +[ Otherworld Landstone Combo ] +Reduces damage taken from Otherworld monster by 1% + +If upgrade level is +7 or higher, +Reduces damage taken from Otherworld monster by 3% + +If upgrade level is +9 or higher, +Reduces damage taken from Otherworld monster by 3% +# +2402218# +AGI +1 +VIT +1 +LUK +1 +Increases EXP in Otherworld Domain by 3% +-------------------------- +Set Bonus: +When equip 3 pieces of +[ Otherworld Landstone Footgear ] + +[ Otherworld Landstone Combo ] + +If upgrade level is +7 or higher, +Increases Drop Rate in Otherworld Domain by 3% + +If upgrade level is +9 or higher, +Increases Drop Rate in Otherworld Domain by 3% +# +2402219# +ATK +2 +HIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Alchemist Landstone Armor II +Alchemist Landstone Armor II Combo +Adds a 2% chance to drop Heart of Mermaid when killing a monster. + +If upgrade level is +7 or higher: +Increases Acid Terror damage by 5%. +-------------------------- +Weight: 1 +# +2402220# +ATK +2 +HIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Alchemist Landstone Garment II +Alchemist Landstone Garment II Combo +Adds a 2% chance to drop Heart of Mermaid when killing a monster. + +If upgrade level is +7 or higher: +Increases Acid Terror damage by 5%. +-------------------------- +Weight: 1 +# +2402221# +ATK +2 +HIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Alchemist Landstone Footgear II +Alchemist Landstone Footgear II Combo +Adds a 2% chance to drop Heart of Mermaid when killing a monster. + +If upgrade level is +7 or higher: +Increases Acid Terror damage by 5%. +-------------------------- +Weight: 1 +# +2402222# +ATK +1 +HIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Alchemist Landstone Armor I +Alchemist Landstone Armor I Combo +Adds a 1% chance to drop Heart of Mermaid when killing a monster. + +If upgrade level is +7 or higher: +Increases Acid Terror damage by 2%. +-------------------------- +Weight: 1 +# +2402223# +ATK +1 +HIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Alchemist Landstone Garment I +Alchemist Landstone Garment I Combo +Adds a 1% chance to drop Heart of Mermaid when killing a monster. + +If upgrade level is +7 or higher: +Increases Acid Terror damage by 2%. +-------------------------- +Weight: 1 +# +2402224# +ATK +1 +HIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Alchemist Landstone Footgear I +Alchemist Landstone Footgear I Combo +Adds a 1% chance to drop Heart of Mermaid when killing a monster. + +If upgrade level is +7 or higher: +Increases Acid Terror damage by 2%. +-------------------------- +Weight: 1 +# +2402225# +ATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Strong Landstone Armor II +Strong Landstone Armor II Combo +Increases physical damage against all race monster by 3%. + +If upgrade level is +7 or higher: +Increases physical damage against all race monster by 3%. +-------------------------- +Weight: 1 +# +2402226# +ATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Strong Landstone Garment II +Strong Landstone Garment II Combo +Increases physical damage against all race monster by 3%. + +If upgrade level is +7 or higher: +Increases physical damage against all race monster by 3%. +-------------------------- +Weight: 1 +# +2402227# +ATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Strong Landstone Footgear II +Strong Landstone Footgear II Combo +Increases physical damage against all race monster by 3%. + +If upgrade level is +7 or higher: +Increases physical damage against all race monster by 3%. +-------------------------- +Weight: 1 +# +2402228# +ATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Strong Landstone Armor I +Strong Landstone Armor I Combo +Increases physical damage against all race monster by 3%. +-------------------------- +Weight: 1 +# +2402229# +ATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Strong Landstone Garment I +Strong Landstone Garment I Combo +Increases physical damage against all race monster by 3%. +-------------------------- +Weight: 1 +# +2402230# +ATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Strong Landstone Footgear I +Strong Landstone Footgear I Combo +Increases physical damage against all race monster by 3%. +-------------------------- +Weight: 1 +# +2402231# +A stone that slightly reduces fixed cast time. +Used to install the following effect into the slot of a Costume Garment +-------------------------- +FCT -0.2 seconds. +-------------------------- +[Lace La Zard]mal_in01,20,107,0,100,0,0 +-------------------------- +Weight: 0 +# +2402232# +FCT -0.2 seconds. +# +2402233# +Increases physical and magical damage against Boss monster by 1%. +Reduses damage taken from Boss monster by 1%. +-------------------------- +Set Bonus: +When equip 3 pieces of Final Boss Landstone Armor +Final Boss Landstone Armor Combo +Increases physical and magical damage against Boss monster by 1%. +Reduses damage taken from Boss monster by 1%. + +If upgrade is +7 or higher, +Increases physical and magical damage against Boss monster by 2%. +Reduses damage taken from Boss monster by 1%. + +If upgrade is +9 or higher, +Increases physical and magical damage against Boss monster by 3%. +Reduses damage taken from Boss monster by 1%. +-------------------------- +Weight: 1 +# +2402234# +Increases physical and magical damage against Boss monster by 1%. +Reduses damage taken from Boss monster by 1%. +-------------------------- +Set Bonus: +When equip 3 pieces of Final Boss Landstone Garment +Final Boss Landstone Garment Combo +Increases physical and magical damage against Boss monster by 1%. +Reduses damage taken from Boss monster by 1%. + +If upgrade is +7 or higher, +Increases physical and magical damage against Boss monster by 2%. +Reduses damage taken from Boss monster by 1%. + +If upgrade is +9 or higher, +Increases physical and magical damage against Boss monster by 3%. +Reduses damage taken from Boss monster by 1%. +-------------------------- +Weight: 1 +# +2402235# +Increases physical and magical damage against Boss monster by 1%. +Reduses damage taken from Boss monster by 1%. +-------------------------- +Set Bonus: +When equip 3 pieces of Final Boss Landstone Footgear +Final Boss Landstone Footgear Combo +Increases physical and magical damage against Boss monster by 1%. +Reduses damage taken from Boss monster by 1%. + +If upgrade is +7 or higher, +Increases physical and magical damage against Boss monster by 2%. +Reduses damage taken from Boss monster by 1%. + +If upgrade is +9 or higher, +Increases physical and magical damage against Boss monster by 3%. +Reduses damage taken from Boss monster by 1%. +-------------------------- +Weight: 1 +# +2402236# +Increases physical and magical damage against Boss monster by 1%. +Reduses damage taken from Boss monster by 1%. +-------------------------- +Set Bonus: +When equip 3 pieces of Final Boss Landstone Armor +Final Boss Landstone Armor Combo +Increases physical and magical damage against Boss monster by 1%. +Reduses damage taken from Boss monster by 1%. + +If upgrade is +7 or higher, +Increases physical and magical damage against Boss monster by 2%. +Reduses damage taken from Boss monster by 1%. + +If upgrade is +9 or higher, +Increases physical and magical damage against Boss monster by 3%. +Reduses damage taken from Boss monster by 1%. +# +2402237# +Increases physical and magical damage against Boss monster by 1%. +Reduses damage taken from Boss monster by 1%. +-------------------------- +Set Bonus: +When equip 3 pieces of Final Boss Landstone Garment +Final Boss Landstone Garment Combo +Increases physical and magical damage against Boss monster by 1%. +Reduses damage taken from Boss monster by 1%. + +If upgrade is +7 or higher, +Increases physical and magical damage against Boss monster by 2%. +Reduses damage taken from Boss monster by 1%. + +If upgrade is +9 or higher, +Increases physical and magical damage against Boss monster by 3%. +Reduses damage taken from Boss monster by 1%. +# +2402238# +Increases physical and magical damage against Boss monster by 1%. +Reduses damage taken from Boss monster by 1%. +-------------------------- +Set Bonus: +When equip 3 pieces of Final Boss Landstone Footgear +Final Boss Landstone Footgear Combo +Increases physical and magical damage against Boss monster by 1%. +Reduses damage taken from Boss monster by 1%. + +If upgrade is +7 or higher, +Increases physical and magical damage against Boss monster by 2%. +Reduses damage taken from Boss monster by 1%. + +If upgrade is +9 or higher, +Increases physical and magical damage against Boss monster by 3%. +Reduses damage taken from Boss monster by 1%. +# +2402239# +ATK +2 +HIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Alchemist Landstone Armor II +Alchemist Landstone Armor II Combo +Adds a 2% chance to drop Heart of Mermaid when killing a monster. + +If upgrade level is +7 or higher: +Increases Acid Terror damage by 5%. +# +2402240# +ATK +2 +HIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Alchemist Landstone Garment II +Alchemist Landstone Garment II Combo +Adds a 2% chance to drop Heart of Mermaid when killing a monster. + +If upgrade level is +7 or higher: +Increases Acid Terror damage by 5%. +# +2402241# +ATK +2 +HIT +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Alchemist Landstone Footgear II +Alchemist Landstone Footgear II Combo +Adds a 2% chance to drop Heart of Mermaid when killing a monster. + +If upgrade level is +7 or higher: +Increases Acid Terror damage by 5%. +# +2402242# +ATK +1 +HIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Alchemist Landstone Armor I +Alchemist Landstone Armor I Combo +Adds a 1% chance to drop Heart of Mermaid when killing a monster. + +If upgrade level is +7 or higher: +Increases Acid Terror damage by 2%. +# +2402243# +ATK +1 +HIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Alchemist Landstone Garment I +Alchemist Landstone Garment I Combo +Adds a 1% chance to drop Heart of Mermaid when killing a monster. + +If upgrade level is +7 or higher: +Increases Acid Terror damage by 2%. +# +2402244# +ATK +1 +HIT +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Alchemist Landstone Footgear I +Alchemist Landstone Footgear I Combo +Adds a 1% chance to drop Heart of Mermaid when killing a monster. + +If upgrade level is +7 or higher: +Increases Acid Terror damage by 2%. +# +2402245# +ATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Strong Landstone Armor II +Strong Landstone Armor II Combo +Increases physical damage against all race monster by 3%. + +If upgrade level is +7 or higher: +Increases physical damage against all race monster by 3%. +# +2402246# +ATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Strong Landstone Garment II +Strong Landstone Garment II Combo +Increases physical damage against all race monster by 3%. + +If upgrade level is +7 or higher: +Increases physical damage against all race monster by 3%. +# +2402247# +ATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Strong Landstone Footgear II +Strong Landstone Footgear II Combo +Increases physical damage against all race monster by 3%. + +If upgrade level is +7 or higher: +Increases physical damage against all race monster by 3%. +# +2402248# +ATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Strong Landstone Armor I +Strong Landstone Armor I Combo +Increases physical damage against all race monster by 3%. +# +2402249# +ATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Strong Landstone Garment I +Strong Landstone Garment I Combo +Increases physical damage against all race monster by 3%. +# +2402250# +ATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Strong Landstone Footgear I +Strong Landstone Footgear I Combo +Increases physical damage against all race monster by 3%. +# +2402253# +A rare collectible coin, highly valued among collectors. +-------------------------- +Weight: 0 +# +2402254# +A Special Gift for new players. +This ticket can be used to mint 1 NFT for free. +-------------------------- +Weight: 0 +# +2402255# +A stone that, merely by holding it, feels as though you are being protected by a mysterious power. +-------------------------- +DEF +10 +MDEF +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Cranial Landstone Armor +Increases physical and magical damage against Demi-Human monster 1% +-------------------------- +If upgrade is +5 or higher, +Increases physical and magical damage against Demi-Human monster 1% +-------------------------- +If upgrade is +7 or higher, +Increases physical and magical damage against Demi-Human monster 1% +-------------------------- +If upgrade is +9 or higher, +Increases physical and magical damage against Demi-Human monster 2% +-------------------------- +Class: Etc +Position: Armor +Weight: 1 +# +2402256# +DEF +10 +MDEF +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Cranial Landstone Armor +Increases physical and magical damage against Demi-Human monster 1% +-------------------------- +If upgrade is +5 or higher, +Increases physical and magical damage against Demi-Human monster 1% +-------------------------- +If upgrade is +7 or higher, +Increases physical and magical damage against Demi-Human monster 1% +-------------------------- +If upgrade is +9 or higher, +Increases physical and magical damage against Demi-Human monster 2% +# +2402257# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Steadfast Landstone Armor +Steadfast Landstone Armor II Combo +Adds 30% resistance to the Stone Curse if base VIT is 70 or higher. +-------------------------- +Weight: 1 +# +2402258# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Steadfast Landstone Garment +Steadfast Landstone Garment II Combo +Adds 30% resistance to the Stone Curse if base VIT is 70 or higher. +-------------------------- +Weight: 1 +# +2402259# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Steadfast Landstone Footgear +Steadfast Landstone Footgear II Combo +Adds 30% resistance to the Stone Curse if base VIT is 70 or higher. +-------------------------- +Weight: 1 +# +2402260# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Steadfast Landstone Armor +Steadfast Landstone Armor II Combo +Adds 30% resistance to the Stone Curse if base VIT is 70 or higher. +# +2402261# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Steadfast Landstone Garment +Steadfast Landstone Garment II Combo +Adds 30% resistance to the Stone Curse if base VIT is 70 or higher. +# +2402262# +MaxHP +1% +-------------------------- +Set Bonus: +When equip 3 pieces of Steadfast Landstone Footgear +Steadfast Landstone Footgear II Combo +Adds 30% resistance to the Stone Curse if base VIT is 70 or higher. +# +2402271# +Coins used to purchase items in the Battle Pass SS8 shop. +-------------------------- +Weight: 1 +# +2402272# +HP +1% +-------------------------- +Class: Etc +Weight: 1 +# +2402273# +HP +2% +-------------------------- +Class: Etc +Weight: 1 +# +2402274# +HP +3% +-------------------------- +Class: Etc +Weight: 1 +# +2402275# +HP +1% +# +2402276# +HP +2% +# +2402277# +HP +3% +# +2402286# +CRIT +1 +FLEE +1 +HIT +1 +VCT -1% +ASPD +1% +ATK +2 +MATK +2 +-------------------------- +Weight: 1 +# +2402287# +CRIT +1 +FLEE +1 +HIT +1 +VCT -1% +ASPD +1% +ATK +2 +MATK +2 +-------------------------- +Weight: 1 +# +2402288# +CRIT +1 +FLEE +1 +HIT +1 +VCT -1% +ASPD +1% +ATK +2 +MATK +2 +-------------------------- +Weight: 1 +# +2402289# +CRIT +1 +FLEE +1 +HIT +1 +VCT -1% +ASPD +1% +-------------------------- +Weight: 1 +# +2402290# +CRIT +1 +FLEE +1 +HIT +1 +VCT -1% +ASPD +1% +-------------------------- +Weight: 1 +# +2402291# +CRIT +1 +FLEE +1 +HIT +1 +VCT -1% +ASPD +1% +-------------------------- +Weight: 1 +# +2402292# +MATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Potentia Landstone Armor II +Potentia Landstone Armor II Combo +Increases magical damage against all element monster by 3%. + +If upgrade level is +7 or higher: +Increases magical damage against all element monster by 3%. +-------------------------- +Weight: 1 +# +2402293# +MATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Potentia Landstone Garment II +Potentia Landstone Garment II Combo +Increases magical damage against all element monster by 3%. + +If upgrade level is +7 or higher: +Increases magical damage against all element monster by 3%. +-------------------------- +Weight: 1 +# +2402294# +MATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Potentia Landstone Footgear II +Potentia Landstone Footgear II Combo +Increases magical damage against all element monster by 3%. + +If upgrade level is +7 or higher: +Increases magical damage against all element monster by 3%. +-------------------------- +Weight: 1 +# +2402295# +MATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Potentia Landstone Armor I +Potentia Landstone Armor I Combo +Increases magical damage against all element monster by 3%. +-------------------------- +Weight: 1 +# +2402296# +MATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Potentia Landstone Garment I +Potentia Landstone Garment I Combo +Increases magical damage against all element monster by 3%. +-------------------------- +Weight: 1 +# +2402297# +MATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Potentia Landstone Footgear I +Potentia Landstone Footgear I Combo +Increases magical damage against all element monster by 3%. +-------------------------- +Weight: 1 +# +2402298# +CRIT +1 +FLEE +1 +HIT +1 +VCT -1% +ASPD +1% +ATK +2 +MATK +2 +# +2402299# +CRIT +1 +FLEE +1 +HIT +1 +VCT -1% +ASPD +1% +ATK +2 +MATK +2 +# +2402300# +CRIT +1 +FLEE +1 +HIT +1 +VCT -1% +ASPD +1% +ATK +2 +MATK +2 +# +2402301# +CRIT +1 +FLEE +1 +HIT +1 +VCT -1% +ASPD +1% +# +2402302# +CRIT +1 +FLEE +1 +HIT +1 +VCT -1% +ASPD +1% +# +2402303# +CRIT +1 +FLEE +1 +HIT +1 +VCT -1% +ASPD +1% +# +2402304# +MATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Potentia Landstone Armor II +Potentia Landstone Armor II Combo +Increases magical damage against all element monster by 3%. + +If upgrade level is +7 or higher: +Increases magical damage against all element monster by 3%. +# +2402305# +MATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Potentia Landstone Garment II +Potentia Landstone Garment II Combo +Increases magical damage against all element monster by 3%. + +If upgrade level is +7 or higher: +Increases magical damage against all element monster by 3%. +# +2402306# +MATK +2 +-------------------------- +Set Bonus: +When equip 3 pieces of Potentia Landstone Footgear II +Potentia Landstone Footgear II Combo +Increases magical damage against all element monster by 3%. + +If upgrade level is +7 or higher: +Increases magical damage against all element monster by 3%. +# +2402307# +MATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Potentia Landstone Armor I +Potentia Landstone Armor I Combo +Increases magical damage against all element monster by 3%. +# +2402308# +MATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Potentia Landstone Garment I +Potentia Landstone Garment I Combo +Increases magical damage against all element monster by 3%. +# +2402309# +MATK +1 +-------------------------- +Set Bonus: +When equip 3 pieces of Potentia Landstone Footgear I +Potentia Landstone Footgear I Combo +Increases magical damage against all element monster by 3%. +# +2402311# +Place your ores inside to refine them into a rare and precious new mineral. +-------------------------- +Class: Etc +Weight: 0 +# +2402312# +A rare ore used in the smelting of Landstone – its results are nothing short of astonishing! +-------------------------- +Class: Etc +Weight: 0 +# +2402313# +Ancient chips can sometimes be discovered on the 52nd floor of the Path of Truth. +-------------------------- +Class: Etc +Weight: 0 +# +2402314# +Ancient chips can sometimes be discovered on the 54th floor of the Path of Truth. +-------------------------- +Class: Etc +Weight: 0 +# +2402618# +A feather from the NOVA Costume. It seems like it can be used for something. +-------------------------- +Weight: 0 +# +2402619# +A thread from the NOVA Costume. It seems like it can be used for something. +-------------------------- +Weight: 0 +# +2402620# +A powder from the NOVA Costume. It seems like it can be used for something. +-------------------------- +Weight: 0 +# +2402621# +A scale from the NOVA Costume. It seems like it can be used for something. +-------------------------- +Weight: 0 +# +2402622# +A crystal orb containing a sealed magical flower. It can be used with NPC NOVA MD Costume. +-------------------------- +Weight: 0 +# +2402623# +The key to unlocking treasure in NOVA Instant. +-------------------------- +Weight: 0 +# +2402624# +A stone infused with mysterious energy. It can be used to upgrade equipment to Grade D. +-------------------------- +Weight: 0 +# +2402625# +A stone infused with mysterious energy. It can be used to upgrade equipment to Grade C. +-------------------------- +Weight: 0 +# +2402626# +A stone infused with mysterious energy. It can be used to upgrade equipment to Grade B. +-------------------------- +Weight: 0 +# +2402627# +A stone infused with mysterious energy. It can be used to upgrade equipment to Grade A. +-------------------------- +Weight: 0 +# +2402628# +An essence extracted from SR equipment. It can be used at the Exchange Material shop. +-------------------------- +Weight: 0 +# +2402629# +An essence extracted from SSR equipment. It can be used at the Exchange Material shop. +-------------------------- +Weight: 0 +# +2402630# +A fragment that can be collected to make Snake Head Hat. +-------------------------- +Weight: 0 +# +2402631# +A fragment that can be collected to make Pecopeco Hairband. +-------------------------- +Weight: 0 +# +2402632# +A fragment that can be collected to make Whikebain Ears. +-------------------------- +Weight: 0 +# +2402633# +A fragment that can be collected to make Poring Beret. +-------------------------- +Weight: 0 +# +2402634# +A fragment that can be collected to make Ancient Boned Helm. +-------------------------- +Weight: 0 +# +2402635# +A fragment that can be collected to make Giant Helm. +-------------------------- +Weight: 0 +# +2402636# +A fragment that can be collected to make Poring Sunglsses. +-------------------------- +Weight: 0 +# +2402637# +A fragment that can be collected to make Fish In Mouth. +-------------------------- +Weight: 0 +# +2402638# +A fragment that can be collected to make Angel Spirit. +-------------------------- +Weight: 0 +# +2402639# +A fragment that can be collected to make Happy Parrot. +-------------------------- +Weight: 0 +# +2402640# +A fragment that can be collected to make White Feather Beret. +-------------------------- +Weight: 0 +# +2402641# +A fragment that can be collected to make Spiked Scarf. +-------------------------- +Weight: 0 +# +2402642# +A red ore discovered NOVA Landstone Instant. It contains a mysterious power. +-------------------------- +Weight: 0 +# +2402643# +A green ore discovered NOVA Landstone Instant. It contains a mysterious power. +-------------------------- +Weight: 0 +# +2402644# +A orange ore discovered NOVA Landstone Instant. It contains a mysterious power. +-------------------------- +Weight: 0 +# +2402645# +A purple ore discovered NOVA Landstone Instant. It contains a mysterious power. +-------------------------- +Weight: 0 +# +2402646# +A white ore discovered NOVA Landstone Instant. It contains a mysterious power. +-------------------------- +Weight: 0 +# +2402647# +An ore made by fusing 5 refined mysterious ores. +It emits five brilliant hues. +-------------------------- +Weight: 0 +# +2402648# +An unknown ore. +Dusting off the soil on the surface will reveal what kind of ore it is. +-------------------------- +Weight: 0 +# +2402649# +A Shining Chimera egg desired by collectors of unusual pets. +-------------------------- +Weight: 0 +# +2402650# +The collective energy of pets that can be used for various purposes. +-------------------------- +Weight: 0 +# +2402651# +An ancient emblem, said to grant power to Rare Orc Warrior Pet. + +The effect will not be activated unless equipped with Orc Warrior Pet. +The effect functions with only one set at a time. +-------------------------- +Weight: 0 +# +2402652# +An ancient emblem, said to grant power to Rare Sohee Pet. + +The effect will not be activated unless equipped with Sohee Pet. +The effect functions with only one set at a time. +-------------------------- +Weight: 0 +# +2402653# +An ancient emblem, said to grant power to Rare Isis Pet. + +The effect will not be activated unless equipped with Isis Pet. +The effect functions with only one set at a time. +-------------------------- +Weight: 0 +# +2402654# +An ancient emblem, said to grant power to Rare Green Petite Pet. + +The effect will not be activated unless equipped with Green Petite Pet. +The effect functions with only one set at a time. +-------------------------- +Weight: 0 +# +2402655# +An ancient emblem, said to grant power to Rare Deviruchi Pet. + +The effect will not be activated unless equipped with Deviruchi Pet. +The effect functions with only one set at a time. +-------------------------- +Weight: 0 +# +2402656# +An ancient emblem, said to grant power to Rare Baphomet Jr Pet. + +The effect will not be activated unless equipped with Baphomet Jr Pet. +The effect functions with only one set at a time. +-------------------------- +Weight: 0 +# +2402657# +An ancient emblem, said to grant power to Rare Bongun Pet. + +The effect will not be activated unless equipped with Bongun Pet. +The effect functions with only one set at a time. +-------------------------- +Weight: 0 +# +2402658# +An ancient emblem, said to grant power to Rare Alice Pet. + +The effect will not be activated unless equipped with Alice Pet. +The effect functions with only one set at a time. +-------------------------- +Weight: 0 +# +2402659# +An ancient emblem, said to grant power to Rare Incubus Pet. + +The effect will not be activated unless equipped with Incubus Pet. +The effect functions with only one set at a time. +-------------------------- +Weight: 0 +# +2402660# +An ancient emblem, said to grant power to Rare Succubus Pet. + +The effect will not be activated unless equipped with Succubus Pet. +The effect functions with only one set at a time. +-------------------------- +Weight: 0 +# +2402661# +A fragment that can be collected to make Magical Feather Hairband. +-------------------------- +Weight: 0 +# +2402662# +A fragment that can be collected to make Galapago Cap. +-------------------------- +Weight: 0 +# +10000001# +A small, shimmering crystal infused with lunar energy. When activated, it grants the bearer 10 Moonstone Point +# +10000002# +The box requires 1 stamina to open. +Random chance to drop items from the monster this box originated from. +-------------------------- +Type: Container +Weight: 0 +# +10000003# +Sweet, tasty bubble gum. +Made specifically for monster loot boxes. +-------------------------- +Next 100 loot boxes you open will have 50% increase item drop rate. +The amount can be accumulated. +-------------------------- +Type: Usable +Weight: 0 +# +10000004# +Sweet, tasty bubble gum. +Made specifically for monster loot boxes. +-------------------------- +Next 500 loot boxes you open will have 50% increase item drop rate. +The amount can be accumulated. +-------------------------- +Type: Usable +Weight: 0 +# +10000005# +Sweet, tasty bubble gum. +Made specifically for monster loot boxes. +-------------------------- +Next 1,000 loot boxes you open will have 50% increase item drop rate. +The amount can be accumulated. +-------------------------- +Type: Usable +Weight: 0 +# +10000006# +Sweet, tasty bubble gum. +Made specifically for monster loot boxes. +-------------------------- +Next 100 loot boxes you open will have 100% increase item drop rate. +The amount can be accumulated. +-------------------------- +Type: Usable +Weight: 0 +# +10000007# +Sweet, tasty bubble gum. +Made specifically for monster loot boxes. +-------------------------- +Next 500 loot boxes you open will have 100% increase item drop rate. +The amount can be accumulated. +-------------------------- +Type: Usable +Weight: 0 +# +10000008# +Sweet, tasty bubble gum. +Made specifically for monster loot boxes. +-------------------------- +Next 1,000 loot boxes you open will have 100% increase item drop rate. +The amount can be accumulated. +-------------------------- +Type: Usable +Weight: 0 +# +10000009# +Can only be used with this character +Can be used to reset Endless Tower entrance quota. +Speak to Tower Guardian to use this ticket. +-------------------------- +Type: Etc +Weight: 0 +# +10000010# +Can only be used with this character +Can be used to reset Tower of Tides entrance quota. +Speak to Tower Guardian to use this ticket. +-------------------------- +Type: Etc +Weight: 0 +# +10000011# +Feeling lucky? Open this special box to get a surprise piece of equipment! This box has something inside for you. Go ahead, take a chance and see what you get! +-------------------------- +Type: Container +Weight: 0 +# +10000012# +Apply random enchantments to item. +# +10000013# +A small, shimmering crystal infused with lunar energy. When activated, it grants the bearer 250 Moonstone Point +# +10000014# +A small crystal that sparkles with the power of the moon. When used, it grants 31800 Moonstone Point +# +10000015# +A small crystal that sparkles with the power of the moon. When used, it grants 127200 Moonstone Point +# +10000016# +A small crystal that sparkles with the power of the moon. When used, it grants 318000 Moonstone Point +# +10000017# +The equipment will receive a random ability from Vybranium Enchant. +# +10000018# +A token representing 10 pieces of Oridecon. +Can be converted into an Oridecon Token +Type: Etc +Weight: 0 +# +10000019# +A token representing 10 pieces of Elunium +Can be converted into an Elunium Token +Type: Etc +Weight: 0 +# +10000020# +A token representing 1000 pieces of Adamantine Fragment +Can be converted into an Adamantine Token +Type: Etc +Weight: 0 +# +10000021# +A Token representing 1 pieces of Seagod anger +Can be converted into an Seagod's Anger Token +Type: Etc +Weight: 0 +# +10000022# +A Token representing 1,000,000 Zeny +Can be converted into an Zeny Token +Type: Etc +Weight: 0 +# +10000023# +A coin for exchanging an Uncommon There is a small chance to obtain Rare Pet +Type: Etc +Weight: 0 +# +10000024# +A coin for exchanging an Rare There is a small chance to obtain Epic Pet +Type: Etc +Weight: 0 +# +10000025# +A coin for exchanging an Epic There is a small chance to obtain Legendary Pet +Type: Etc +Weight: 0 +# +10000038# +A slot destroyed by the power of removing the Landstone. +This slot can no longer be used. +# +10000039# +Chemical used for adding slots into equipments. +-------------------------- +Weight: 0 +# +100000000# +You have this item in your collection. +# diff --git a/tables/laRO/itemslotcounttable.txt b/tables/laRO/itemslotcounttable.txt new file mode 100644 index 0000000000..ff64feb0d5 --- /dev/null +++ b/tables/laRO/itemslotcounttable.txt @@ -0,0 +1,3813 @@ +1101#3# +1102#4# +1104#3# +1105#4# +1107#3# +1108#4# +1110#2# +1111#3# +1113#2# +1114#3# +1115#3# +1116#3# +1117#4# +1119#1# +1120#2# +1122#2# +1123#1# +1125#3# +1126#2# +1127#3# +1128#2# +1146#1# +1147#2# +1148#1# +1149#2# +1151#2# +1152#3# +1154#2# +1155#3# +1157#1# +1158#2# +1160#1# +1162#2# +1171#2# +1172#2# +1175#1# +1176#2# +1178#2# +1179#1# +1180#2# +1181#2# +1182#2# +1185#2# +1186#2# +1188#1# +1189#3# +1201#3# +1202#4# +1204#3# +1205#4# +1207#3# +1208#4# +1210#2# +1211#3# +1213#2# +1214#3# +1216#2# +1217#3# +1219#2# +1220#3# +1222#1# +1226#2# +1245#1# +1246#2# +1250#2# +1251#3# +1252#1# +1253#2# +1255#1# +1264#4# +1266#1# +1268#1# +1270#1# +1271#2# +1275#3# +1276#3# +1277#3# +1278#3# +1284#2# +1285#2# +1287#1# +1290#1# +1291#1# +1292#1# +1295#3# +1296#1# +1297#2# +1298#2# +1300#3# +1301#3# +1302#4# +1306#1# +1309#4# +1311#2# +1317#1# +1318#2# +1320#1# +1321#3# +1322#1# +1323#2# +1324#3# +1325#1# +1326#2# +1331#1# +1333#2# +1336#2# +1351#3# +1352#4# +1354#2# +1355#3# +1357#1# +1358#2# +1360#1# +1361#2# +1371#1# +1375#2# +1376#1# +1377#1# +1381#3# +1384#2# +1387#1# +1392#1# +1393#1# +1394#1# +1397#2# +1398#1# +1400#1# +1401#3# +1402#4# +1404#3# +1405#4# +1407#3# +1408#4# +1411#2# +1417#1# +1418#2# +1420#1# +1421#1# +1422#1# +1428#1# +1429#1# +1433#1# +1435#1# +1438#1# +1440#3# +1441#1# +1442#2# +1443#2# +1444#3# +1447#3# +1448#3# +1449#3# +1450#1# +1451#2# +1452#3# +1454#2# +1455#3# +1457#1# +1458#2# +1460#2# +1461#3# +1463#1# +1464#2# +1476#1# +1479#1# +1480#2# +1481#3# +1483#1# +1484#1# +1485#4# +1491#1# +1493#1# +1494#3# +1496#1# +1497#3# +1498#2# +1501#3# +1502#4# +1504#3# +1505#4# +1507#2# +1508#3# +1509#3# +1510#2# +1511#3# +1512#3# +1513#1# +1514#2# +1515#2# +1517#1# +1518#1# +1519#2# +1520#3# +1521#3# +1524#1# +1532#2# +1535#1# +1538#2# +1539#2# +1540#1# +1544#3# +1545#3# +1548#2# +1550#3# +1551#2# +1552#1# +1558#1# +1560#2# +1561#1# +1562#1# +1564#2# +1565#2# +1568#3# +1569#3# +1570#3# +1571#3# +1572#2# +1573#2# +1579#2# +1581#2# +1582#2# +1584#2# +1585#1# +1588#1# +1589#2# +1590#2# +1592#2# +1593#1# +1594#2# +1595#2# +1596#2# +1598#3# +1600#1# +1601#3# +1602#4# +1604#2# +1605#3# +1607#2# +1608#3# +1610#1# +1611#2# +1618#1# +1620#1# +1621#1# +1622#2# +1624#2# +1629#1# +1631#1# +1639#3# +1645#2# +1646#2# +1647#1# +1654#1# +1657#2# +1659#1# +1660#1# +1662#2# +1663#2# +1664#1# +1665#2# +1666#2# +1668#2# +1669#1# +1670#1# +1671#1# +1672#1# +1675#3# +1676#2# +1677#1# +1678#1# +1679#2# +1680#2# +1682#2# +1683#1# +1684#1# +1685#1# +1686#1# +1687#1# +1688#2# +1690#3# +1691#2# +1692#2# +1693#1# +1694#3# +1695#2# +1696#2# +1697#1# +1701#3# +1702#4# +1704#3# +1705#4# +1707#2# +1708#3# +1710#2# +1711#3# +1713#1# +1714#1# +1715#2# +1716#2# +1721#1# +1723#2# +1725#1# +1726#1# +1727#1# +1730#1# +1731#1# +1732#1# +1733#1# +1736#3# +1737#1# +1740#2# +1741#1# +1742#3# +1745#2# +1746#1# +1800#1# +1801#3# +1802#4# +1803#2# +1804#3# +1805#2# +1806#3# +1808#1# +1809#1# +1810#2# +1811#1# +1812#2# +1815#1# +1816#1# +1818#3# +1819#3# +1820#3# +1821#3# +1822#4# +1825#3# +1830#1# +1833#2# +1835#2# +1836#1# +1837#1# +1839#2# +1841#3# +1842#1# +1843#1# +1845#1# +1846#2# +1847#2# +1848#1# +1861#1# +1862#2# +1864#2# +1865#2# +1866#2# +1867#2# +1870#2# +1900#1# +1901#3# +1902#4# +1903#2# +1904#3# +1905#2# +1906#3# +1908#1# +1909#1# +1910#2# +1911#1# +1912#2# +1919#1# +1922#2# +1925#3# +1926#2# +1930#1# +1933#1# +1934#2# +1935#2# +1936#1# +1937#2# +1938#1# +1939#2# +1940#1# +1941#1# +1943#3# +1944#2# +1945#1# +1946#1# +1948#3# +1950#3# +1951#4# +1952#2# +1953#3# +1954#2# +1955#3# +1957#1# +1958#1# +1959#2# +1960#1# +1961#2# +1972#2# +1973#1# +1976#2# +1979#2# +1980#3# +1984#1# +1988#1# +1989#2# +1990#2# +1991#1# +1992#2# +1993#1# +1994#1# +1995#2# +1996#1# +1997#1# +1999#3# +2000#1# +2003#1# +2005#1# +2007#2# +2008#2# +2009#2# +2010#2# +2011#1# +2012#1# +2013#1# +2014#1# +2015#1# +2017#1# +2018#1# +2022#1# +2023#1# +2024#1# +2025#2# +2026#1# +2027#2# +2028#2# +2030#1# +2033#1# +2035#1# +2036#1# +2038#1# +2039#2# +2040#1# +2041#1# +2042#1# +2043#1# +2044#1# +2045#1# +2046#1# +2048#2# +2049#2# +2051#2# +2053#1# +2054#2# +2055#2# +2056#2# +2057#2# +2058#2# +2060#2# +2102#1# +2104#1# +2106#1# +2108#1# +2113#1# +2114#1# +2115#1# +2116#1# +2118#1# +2120#1# +2121#1# +2123#1# +2124#1# +2125#1# +2128#1# +2130#1# +2131#1# +2133#1# +2134#1# +2135#1# +2138#1# +2140#1# +2146#1# +2147#1# +2148#1# +2149#1# +2150#1# +2151#1# +2153#1# +2154#1# +2156#1# +2158#1# +2159#1# +2160#1# +2161#1# +2162#1# +2163#1# +2164#1# +2165#1# +2166#1# +2167#1# +2168#1# +2170#1# +2171#1# +2172#1# +2173#1# +2174#1# +2175#1# +2176#1# +2177#1# +2183#1# +2185#1# +2186#1# +2187#1# +2188#1# +2189#1# +2191#1# +2192#1# +2193#1# +2194#1# +2195#1# +2196#1# +2197#1# +2198#1# +2202#1# +2204#1# +2209#1# +2217#1# +2221#1# +2223#1# +2225#1# +2227#1# +2229#1# +2231#1# +2233#1# +2302#1# +2304#1# +2306#1# +2308#1# +2310#1# +2311#1# +2313#1# +2315#1# +2317#1# +2318#1# +2319#1# +2320#1# +2322#1# +2324#1# +2326#1# +2329#1# +2331#1# +2333#1# +2336#1# +2340#1# +2342#1# +2345#1# +2347#1# +2349#1# +2351#1# +2353#1# +2355#1# +2356#1# +2357#1# +2359#1# +2360#1# +2364#1# +2365#1# +2366#1# +2367#1# +2371#1# +2372#1# +2373#1# +2374#1# +2375#1# +2376#1# +2377#1# +2378#1# +2379#1# +2380#1# +2381#1# +2382#1# +2387#1# +2388#1# +2389#1# +2390#1# +2391#1# +2393#1# +2398#1# +2399#1# +2402#1# +2404#1# +2406#1# +2412#1# +2415#1# +2416#1# +2420#1# +2421#1# +2422#1# +2424#1# +2432#1# +2433#1# +2434#1# +2435#1# +2436#1# +2437#1# +2440#1# +2459#1# +2460#1# +2461#1# +2465#1# +2466#1# +2474#1# +2475#1# +2476#1# +2477#1# +2478#1# +2479#1# +2480#1# +2483#1# +2484#1# +2485#1# +2486#1# +2487#1# +2488#1# +2489#1# +2490#1# +2492#1# +2493#1# +2494#1# +2495#1# +2502#1# +2504#1# +2506#1# +2512#1# +2513#1# +2514#1# +2515#1# +2521#1# +2523#1# +2524#1# +2525#1# +2527#1# +2528#1# +2530#1# +2531#1# +2532#1# +2536#1# +2537#1# +2538#1# +2539#1# +2540#1# +2542#1# +2544#1# +2545#1# +2546#1# +2551#1# +2552#1# +2553#1# +2554#1# +2561#1# +2562#1# +2563#1# +2565#1# +2572#1# +2573#1# +2576#1# +2579#1# +2583#1# +2584#1# +2586#1# +2587#1# +2588#1# +2589#1# +2591#1# +2592#1# +2593#1# +2594#1# +2595#1# +2596#1# +2597#1# +2598#1# +2599#1# +2607#1# +2621#1# +2622#1# +2623#1# +2624#1# +2625#1# +2626#1# +2627#1# +2628#1# +2647#1# +2658#1# +2669#1# +2671#1# +2701#1# +2702#1# +2703#1# +2714#1# +2715#1# +2716#1# +2718#1# +2728#1# +2729#1# +2730#1# +2731#1# +2732#1# +2745#1# +2749#1# +2776#1# +2777#1# +2781#1# +2783#1# +2785#1# +2787#1# +2788#1# +2789#1# +2790#1# +2791#1# +2794#1# +2799#1# +2800#1# +2801#1# +2802#1# +2803#1# +2804#1# +2805#1# +2806#1# +2807#1# +2808#1# +2809#1# +2810#1# +2828#1# +2854#1# +2871#1# +2873#1# +2874#1# +2875#1# +2881#1# +2882#1# +2883#1# +2884#1# +2888#1# +2889#1# +2892#1# +2893#1# +2898#1# +2899#1# +2900#1# +2901#1# +2902#1# +2903#1# +2906#1# +2908#1# +2909#1# +2912#1# +2913#1# +2914#1# +2923#1# +2924#1# +2925#1# +2926#1# +2927#1# +2928#1# +2935#1# +2936#1# +2943#1# +2948#1# +2949#1# +2955#1# +2956#1# +2960#1# +2962#1# +2963#1# +2964#1# +2965#1# +2967#1# +2969#1# +2970#1# +2971#1# +2974#1# +2976#1# +2977#1# +2978#1# +2979#1# +2980#1# +2982#1# +2983#1# +2984#1# +2985#1# +2986#1# +2987#1# +2988#1# +2989#1# +2992#1# +2993#1# +2995#1# +2996#1# +2997#1# +2998#1# +5093#1# +5095#1# +5108#1# +5119#1# +5120#1# +5123#1# +5125#1# +5137#1# +5140#1# +5141#1# +5142#1# +5143#1# +5147#1# +5151#1# +5157#1# +5158#1# +5159#1# +5160#1# +5161#1# +5162#1# +5163#1# +5164#1# +5165#1# +5166#1# +5167#1# +5168#1# +5169#1# +5171#1# +5173#1# +5174#1# +5177#1# +5181#1# +5185#1# +5187#1# +5190#1# +5208#1# +5211#1# +5212#1# +5225#1# +5243#1# +5253#1# +5254#1# +5256#1# +5258#1# +5270#1# +5271#1# +5282#1# +5284#1# +5285#1# +5287#1# +5296#1# +5297#1# +5298#1# +5299#1# +5304#1# +5307#1# +5308#1# +5310#1# +5311#1# +5312#1# +5313#1# +5319#1# +5334#1# +5340#1# +5341#1# +5342#1# +5343#1# +5344#1# +5345#1# +5347#1# +5348#1# +5349#1# +5350#1# +5351#1# +5353#1# +5359#1# +5363#1# +5364#1# +5365#1# +5367#1# +5373#1# +5375#1# +5376#1# +5379#1# +5381#1# +5382#1# +5383#1# +5384#1# +5387#1# +5388#1# +5392#1# +5395#1# +5396#1# +5398#1# +5399#1# +5404#1# +5409#1# +5417#1# +5418#1# +5420#1# +5424#1# +5425#1# +5426#1# +5427#1# +5429#1# +5431#1# +5433#1# +5434#1# +5435#1# +5437#1# +5442#1# +5443#1# +5446#1# +5448#1# +5449#1# +5451#1# +5452#1# +5453#1# +5454#1# +5455#1# +5457#1# +5464#1# +5465#1# +5466#1# +5467#1# +5468#1# +5469#1# +5477#1# +5481#1# +5495#1# +5497#1# +5498#1# +5501#1# +5506#1# +5507#1# +5511#1# +5519#1# +5520#1# +5522#1# +5523#1# +5524#1# +5525#1# +5528#1# +5529#1# +5530#1# +5531#1# +5533#1# +5537#1# +5538#1# +5539#1# +5545#1# +5546#1# +5547#1# +5557#1# +5558#1# +5562#1# +5563#1# +5564#1# +5567#1# +5568#1# +5569#1# +5570#1# +5572#1# +5573#1# +5575#1# +5579#1# +5585#1# +5586#1# +5591#1# +5593#1# +5595#1# +5599#1# +5603#1# +5604#1# +5605#1# +5606#1# +5607#1# +5608#1# +5609#1# +5623#1# +5627#1# +5629#1# +5630#1# +5631#1# +5653#1# +5654#1# +5656#1# +5658#1# +5660#1# +5665#1# +5666#1# +5667#1# +5671#1# +5672#1# +5673#1# +5677#1# +5679#1# +5682#1# +5689#1# +5691#1# +5738#1# +5739#1# +5740#1# +5744#1# +5745#1# +5746#1# +5747#1# +5748#1# +5749#1# +5750#1# +5751#1# +5752#1# +5753#1# +5754#1# +5756#1# +5757#1# +5758#1# +5759#1# +5760#1# +5764#1# +5765#1# +5766#1# +5768#1# +5770#1# +5771#1# +5778#1# +5779#1# +5781#1# +5782#1# +5790#1# +5795#1# +5802#1# +5808#1# +5824#1# +5841#1# +5856#1# +5857#1# +5858#1# +5859#1# +5867#1# +5873#1# +5874#1# +5875#1# +5876#1# +5877#1# +5888#1# +5889#1# +5891#1# +5896#1# +5897#1# +5898#1# +5899#1# +5900#1# +5901#1# +5902#1# +5903#1# +5904#1# +5905#1# +5906#1# +5907#1# +5908#1# +5910#1# +5919#1# +5925#1# +5930#1# +5931#1# +5932#1# +5937#1# +5938#1# +5940#1# +5943#1# +5944#1# +5946#1# +5963#1# +5965#1# +5968#1# +5969#1# +5970#1# +5971#1# +5974#1# +5975#1# +5986#1# +13003#1# +13004#2# +13005#1# +13008#1# +13010#2# +13011#3# +13012#1# +13013#2# +13015#1# +13016#2# +13017#1# +13018#1# +13019#1# +13027#3# +13028#1# +13030#2# +13031#3# +13032#3# +13033#1# +13034#2# +13035#4# +13038#3# +13039#2# +13040#3# +13041#3# +13046#3# +13047#2# +13049#1# +13061#1# +13067#1# +13071#1# +13073#1# +13076#1# +13078#1# +13079#1# +13081#3# +13082#3# +13088#1# +13089#1# +13090#2# +13091#1# +13092#1# +13093#1# +13094#1# +13097#1# +13098#1# +13099#1# +13100#1# +13101#2# +13102#1# +13103#2# +13104#1# +13105#2# +13107#2# +13115#1# +13119#2# +13120#1# +13124#1# +13125#1# +13126#1# +13127#2# +13128#1# +13129#1# +13130#2# +13131#1# +13132#1# +13133#2# +13134#2# +13135#2# +13136#1# +13138#2# +13139#2# +13140#1# +13141#1# +13143#2# +13144#1# +13146#2# +13150#3# +13151#1# +13152#2# +13153#1# +13154#1# +13155#1# +13157#1# +13159#1# +13161#1# +13162#1# +13164#1# +13166#1# +13168#1# +13169#2# +13170#2# +13180#3# +13188#1# +13189#2# +13190#1# +13192#1# +13193#1# +13196#1# +13197#2# +13199#1# +13301#3# +13302#4# +13304#2# +13313#2# +13316#1# +13322#1# +13323#1# +13324#3# +13325#3# +13326#3# +13327#2# +13328#1# +13329#1# +13330#1# +13332#2# +13333#1# +13334#1# +13336#1# +13337#2# +13338#2# +13339#1# +13340#3# +13341#1# +13343#1# +13345#2# +13346#2# +13347#2# +13400#1# +13404#1# +13405#2# +13412#3# +13413#3# +13414#3# +13415#3# +13420#1# +13421#1# +13428#3# +13433#1# +13435#3# +13436#3# +13437#4# +13438#2# +13441#1# +13442#3# +13444#1# +13446#3# +13447#2# +13448#3# +13449#2# +13450#2# +13451#1# +13452#2# +13453#3# +13454#2# +13455#1# +13456#1# +13457#1# +13459#3# +13460#2# +13461#2# +13462#2# +13463#3# +13464#3# +13465#3# +13466#1# +13467#1# +13469#2# +13470#3# +13471#3# +13472#3# +13473#1# +13483#1# +13485#2# +13492#1# +13493#2# +13495#2# +15000#1# +15002#1# +15012#1# +15013#1# +15014#1# +15015#1# +15016#1# +15017#1# +15018#1# +15019#1# +15020#1# +15021#1# +15032#1# +15034#1# +15038#1# +15039#1# +15041#1# +15042#1# +15043#1# +15044#1# +15046#1# +15047#1# +15048#1# +15052#1# +15054#1# +15055#1# +15056#1# +15057#1# +15058#1# +15060#1# +15061#1# +15066#1# +15068#1# +15070#1# +15071#1# +15072#1# +15073#1# +15074#1# +15075#1# +15076#1# +15077#1# +15078#1# +15079#1# +15080#1# +15081#1# +15082#1# +15083#1# +15084#1# +15085#1# +15086#1# +15087#1# +15088#1# +15090#1# +15091#1# +15092#1# +15093#1# +15094#1# +15095#1# +15096#1# +15097#1# +15098#1# +15099#1# +15100#1# +15101#1# +15102#1# +15103#1# +15104#1# +15105#1# +15106#1# +15107#1# +15108#1# +15109#1# +15112#1# +15113#1# +15114#1# +15115#1# +15118#1# +15119#1# +15120#1# +15121#1# +15122#1# +15123#1# +15124#1# +15125#1# +15126#1# +15127#1# +15129#1# +15130#1# +15132#1# +15133#1# +15134#1# +15135#1# +15136#1# +15137#1# +15138#1# +15139#1# +15140#1# +15141#1# +15142#1# +15143#1# +15144#1# +15145#1# +15146#1# +15147#1# +15150#1# +15151#1# +15152#1# +15153#1# +15154#1# +15155#1# +15156#1# +15157#1# +15158#1# +15162#1# +15163#1# +15164#1# +15165#1# +15169#1# +15170#1# +15171#1# +15172#1# +15173#1# +15174#1# +15175#1# +15186#1# +15187#1# +15188#1# +15189#1# +15191#1# +15193#1# +15194#1# +15195#1# +15196#1# +15205#1# +15208#1# +15209#1# +15212#1# +15213#1# +15237#1# +15241#1# +15242#1# +15243#1# +15244#1# +15245#1# +15246#1# +15249#1# +15250#1# +15275#1# +15276#1# +15277#1# +15278#1# +15279#1# +15282#1# +15283#1# +15343#1# +15344#1# +15346#1# +15347#1# +15348#1# +15349#1# +15353#1# +15354#1# +15374#1# +15375#1# +15376#1# +15377#1# +15378#1# +15379#1# +15380#1# +15381#1# +15383#1# +15384#1# +15386#1# +15387#1# +15388#1# +15389#1# +15390#1# +15391#1# +15392#1# +15393#1# +15394#1# +15395#1# +15396#1# +15397#1# +15398#1# +15399#1# +15400#1# +15401#1# +15402#1# +15410#1# +16000#2# +16001#2# +16003#2# +16010#1# +16013#2# +16015#3# +16018#1# +16019#1# +16022#2# +16023#1# +16024#2# +16026#1# +16027#1# +16028#1# +16029#1# +16030#1# +16032#1# +16033#2# +16036#1# +16037#2# +16038#1# +16039#1# +16040#2# +16041#1# +16043#2# +16044#3# +16045#3# +16046#3# +16047#3# +16048#1# +16049#3# +16051#4# +16052#3# +16053#3# +16054#1# +16055#3# +16056#3# +16057#3# +16058#1# +16059#1# +16060#3# +16062#2# +16063#2# +16064#1# +16065#2# +16066#3# +16075#1# +16076#1# +16087#1# +16088#2# +16089#2# +16092#2# +16093#2# +16094#2# +16095#2# +16096#2# +16099#2# +18109#2# +18110#2# +18111#2# +18112#1# +18115#1# +18116#1# +18117#1# +18119#1# +18120#1# +18121#1# +18122#1# +18123#1# +18125#2# +18126#1# +18127#2# +18128#1# +18129#3# +18130#2# +18132#1# +18133#2# +18137#2# +18138#2# +18139#2# +18140#2# +18141#1# +18142#2# +18144#2# +18145#2# +18146#1# +18147#1# +18149#2# +18150#1# +18151#1# +18152#2# +18153#1# +18154#1# +18155#1# +18163#3# +18164#2# +18165#1# +18166#1# +18170#2# +18174#2# +18177#1# +18178#2# +18179#2# +18180#2# +18182#2# +18183#2# +18184#2# +18185#2# +18186#2# +18187#2# +18188#2# +18190#2# +18191#2# +18198#2# +18506#1# +18507#1# +18508#1# +18509#1# +18512#1# +18514#1# +18515#1# +18516#1# +18517#1# +18518#1# +18519#1# +18522#1# +18525#1# +18528#1# +18529#1# +18531#1# +18532#1# +18533#1# +18534#1# +18537#1# +18539#1# +18541#1# +18542#1# +18543#1# +18549#1# +18550#1# +18551#1# +18552#1# +18555#1# +18561#1# +18562#1# +18563#1# +18565#1# +18570#1# +18571#1# +18572#1# +18573#1# +18574#1# +18575#1# +18580#1# +18585#1# +18586#1# +18587#1# +18588#1# +18589#1# +18590#1# +18591#1# +18593#1# +18594#1# +18595#1# +18597#1# +18598#1# +18600#1# +18601#1# +18603#1# +18605#1# +18607#1# +18608#1# +18609#1# +18611#1# +18612#1# +18613#1# +18614#1# +18618#1# +18622#1# +18623#1# +18624#1# +18625#1# +18628#1# +18629#1# +18632#1# +18633#1# +18634#1# +18635#1# +18637#1# +18638#1# +18639#1# +18640#1# +18641#1# +18645#1# +18646#1# +18651#1# +18652#1# +18653#1# +18654#1# +18659#1# +18660#1# +18661#1# +18663#1# +18667#1# +18668#1# +18669#1# +18673#1# +18674#1# +18675#1# +18681#1# +18684#1# +18692#1# +18693#1# +18694#1# +18695#1# +18700#1# +18704#1# +18705#1# +18709#1# +18713#1# +18714#1# +18715#1# +18717#1# +18723#1# +18724#1# +18725#1# +18726#1# +18727#1# +18728#1# +18729#1# +18730#1# +18747#1# +18748#1# +18749#1# +18752#1# +18755#1# +18756#1# +18757#1# +18758#1# +18760#1# +18761#1# +18763#1# +18764#1# +18765#1# +18766#1# +18767#1# +18768#1# +18769#1# +18770#1# +18776#1# +18777#1# +18779#1# +18780#1# +18781#1# +18783#1# +18784#1# +18785#1# +18789#1# +18790#1# +18791#1# +18793#1# +18794#1# +18795#1# +18796#1# +18797#1# +18798#1# +18802#1# +18803#1# +18804#1# +18806#1# +18807#1# +18811#1# +18812#1# +18814#1# +18815#1# +18816#1# +18817#1# +18820#1# +18821#1# +18825#1# +18826#1# +18827#1# +18828#1# +18829#1# +18830#1# +18831#1# +18833#1# +18836#1# +18838#1# +18839#1# +18841#1# +18842#1# +18843#1# +18847#1# +18848#1# +18849#1# +18853#1# +18857#1# +18860#1# +18861#1# +18862#1# +18863#1# +18865#1# +18866#1# +18872#1# +18874#1# +18875#1# +18876#1# +18878#1# +18880#1# +18881#1# +18883#1# +18884#1# +18885#1# +18886#1# +18887#1# +18888#1# +18889#1# +18890#1# +18891#1# +18892#1# +18893#1# +18898#1# +18899#1# +18901#1# +18904#1# +18907#1# +18908#1# +18909#1# +18910#1# +18911#1# +18913#1# +18915#1# +18922#1# +18923#1# +18924#1# +18929#1# +18930#1# +18931#1# +18932#1# +18933#1# +18934#1# +18935#1# +18938#1# +18939#1# +18940#1# +18941#1# +18942#1# +18943#1# +18944#1# +18950#1# +18952#1# +18953#1# +18954#1# +18955#1# +18959#1# +18964#1# +18969#1# +18970#1# +18971#1# +18972#1# +18973#1# +18974#1# +18975#1# +18976#1# +18977#1# +18978#1# +18979#1# +18980#1# +18981#1# +18982#1# +18983#1# +18984#1# +18986#1# +18987#1# +18988#1# +18989#1# +18990#1# +18991#1# +18992#1# +18995#1# +18997#1# +19001#1# +19002#1# +19003#1# +19006#1# +19007#1# +19008#1# +19018#1# +19019#1# +19020#1# +19021#1# +19023#1# +19025#1# +19026#1# +19029#1# +19030#1# +19032#1# +19033#1# +19035#1# +19038#1# +19042#1# +19043#1# +19044#1# +19046#1# +19047#1# +19048#1# +19050#1# +19051#1# +19053#1# +19079#1# +19081#1# +19084#1# +19085#1# +19086#1# +19087#1# +19088#1# +19089#1# +19090#1# +19091#1# +19092#1# +19093#1# +19094#1# +19096#1# +19098#1# +19099#1# +19102#1# +19103#1# +19106#1# +19107#1# +19108#1# +19110#1# +19111#1# +19114#1# +19115#1# +19116#1# +19118#1# +19125#1# +19126#1# +19127#1# +19128#1# +19129#1# +19130#1# +19131#1# +19132#1# +19133#1# +19134#1# +19136#1# +19140#1# +19142#1# +19144#1# +19156#1# +19157#1# +19159#1# +19162#1# +19163#1# +19164#1# +19165#1# +19166#1# +19167#1# +19168#1# +19169#1# +19171#1# +19172#1# +19175#1# +19176#1# +19178#1# +19179#1# +19180#1# +19181#1# +19185#1# +19186#1# +19187#1# +19188#1# +19189#1# +19190#1# +19191#1# +19192#1# +19193#1# +19194#1# +19195#1# +19196#1# +19197#1# +19198#1# +19199#1# +19200#1# +19201#1# +19202#1# +19203#1# +19204#1# +19205#1# +19209#1# +19210#1# +19211#1# +19212#1# +19213#1# +19214#1# +19223#1# +19241#1# +19242#1# +19245#1# +19247#1# +19249#1# +19256#1# +19262#1# +19263#1# +19264#1# +19265#1# +19266#1# +19269#1# +19272#1# +19279#1# +19280#1# +19281#1# +19282#1# +19283#1# +19285#1# +19296#1# +19300#1# +19302#1# +19303#1# +19304#1# +19308#1# +19311#1# +19313#1# +19324#1# +19325#1# +19326#1# +19337#1# +19338#1# +19339#1# +19340#1# +19341#1# +19342#1# +19344#1# +19347#1# +19348#1# +19349#1# +19351#1# +19352#1# +19364#1# +19366#1# +19367#1# +19379#1# +19385#1# +19386#1# +19387#1# +19390#1# +19394#1# +19395#1# +19396#1# +19397#1# +19404#1# +19415#1# +19428#1# +19436#1# +19446#1# +19452#1# +19474#1# +19475#1# +19476#1# +19477#1# +19478#1# +19479#1# +19480#1# +19481#1# +19482#1# +19483#1# +19484#1# +19485#1# +19486#1# +19487#1# +19488#1# +19489#1# +19490#1# +19491#1# +19492#1# +19495#1# +19501#1# +20700#1# +20701#1# +20705#1# +20708#1# +20710#1# +20711#1# +20712#1# +20713#1# +20714#1# +20715#1# +20716#1# +20718#1# +20720#1# +20721#1# +20722#1# +20723#1# +20724#1# +20725#1# +20726#1# +20728#1# +20729#1# +20730#1# +20731#1# +20732#1# +20733#1# +20734#1# +20735#1# +20738#1# +20739#1# +20740#1# +20741#1# +20742#1# +20743#1# +20744#1# +20745#1# +20747#1# +20749#1# +20750#1# +20753#1# +20754#1# +20755#1# +20756#1# +20757#1# +20758#1# +20759#1# +20760#1# +20766#1# +20769#1# +20770#1# +20771#1# +20772#1# +20774#1# +20776#1# +20777#1# +20778#1# +20779#1# +20780#1# +20781#1# +20782#1# +20783#1# +20784#1# +20785#1# +20786#1# +20787#1# +20788#1# +20789#1# +20790#1# +20791#1# +20795#1# +20796#1# +20797#1# +20799#1# +20800#1# +20802#1# +20803#1# +20804#1# +20805#1# +20806#1# +20807#1# +20808#1# +20809#1# +20811#1# +20812#1# +20813#1# +20814#1# +20815#1# +20816#1# +20817#1# +20818#1# +20819#1# +20826#1# +20827#1# +20828#1# +20830#1# +20831#1# +20835#1# +20836#1# +20837#1# +20838#1# +20840#1# +20841#1# +20842#1# +20843#1# +20844#1# +20845#1# +20846#1# +20847#1# +20852#1# +20853#1# +20854#1# +20856#1# +20857#1# +20858#1# +20859#1# +20860#1# +20861#1# +20863#1# +20899#1# +20900#1# +20901#1# +20902#1# +20907#1# +20915#1# +20916#1# +20917#1# +20918#1# +20922#1# +20923#1# +20924#1# +20925#1# +20932#1# +20933#1# +20934#1# +20935#1# +20936#1# +20937#1# +20939#1# +20940#1# +20941#1# +20942#1# +20943#1# +20944#1# +20945#1# +20946#1# +20947#1# +20948#1# +20949#1# +20952#1# +20953#1# +20955#1# +20963#1# +20964#1# +20965#1# +20966#1# +20967#1# +20968#1# +21000#1# +21003#2# +21004#2# +21005#1# +21007#1# +21008#2# +21009#1# +21010#1# +21011#1# +21012#2# +21013#2# +21014#1# +21015#2# +21016#1# +21018#2# +21019#2# +21020#3# +21023#1# +21024#3# +21026#1# +21027#1# +21029#1# +21030#1# +21031#1# +21037#1# +21038#2# +21039#2# +21046#1# +21047#2# +21049#2# +21050#2# +21051#2# +21052#2# +21054#2# +21055#2# +21058#2# +21063#2# +22006#1# +22007#1# +22008#1# +22009#1# +22010#1# +22011#1# +22014#1# +22015#1# +22018#1# +22019#1# +22020#1# +22021#1# +22022#1# +22023#1# +22024#1# +22025#1# +22026#1# +22027#1# +22028#1# +22029#1# +22030#1# +22033#1# +22035#1# +22036#1# +22037#1# +22038#1# +22039#1# +22041#1# +22042#1# +22043#1# +22044#1# +22048#1# +22049#1# +22051#1# +22053#1# +22054#1# +22055#1# +22057#1# +22059#1# +22061#1# +22063#1# +22064#1# +22065#1# +22066#1# +22068#1# +22069#1# +22070#1# +22071#1# +22072#1# +22075#1# +22076#1# +22077#1# +22078#1# +22079#1# +22080#1# +22081#1# +22082#1# +22083#1# +22084#1# +22085#1# +22086#1# +22089#1# +22090#1# +22091#1# +22092#1# +22093#1# +22094#1# +22095#1# +22096#1# +22097#1# +22098#1# +22099#1# +22100#1# +22101#1# +22105#1# +22106#1# +22113#1# +22114#1# +22115#1# +22116#1# +22117#1# +22118#1# +22119#1# +22127#1# +22128#1# +22129#1# +22131#1# +22132#1# +22133#1# +22140#1# +22141#1# +22142#1# +22143#1# +22168#1# +22171#1# +22173#1# +22174#1# +22178#1# +22185#1# +22186#1# +22187#1# +22190#1# +22192#1# +22193#1# +22195#1# +22196#1# +22197#1# +22199#1# +22200#1# +22201#1# +22203#1# +22204#1# +22206#1# +22208#1# +22209#1# +22215#1# +22234#1# +22238#1# +26000#2# +26001#1# +26002#3# +26004#1# +26005#1# +26007#1# +26008#1# +26015#1# +26016#2# +26021#1# +26102#2# +26104#2# +26105#1# +26106#1# +26107#3# +26109#2# +26110#2# +26111#1# +26112#1# +26113#2# +26118#2# +26119#1# +26120#1# +26124#1# +26125#1# +26126#1# +26127#1# +26129#1# +26130#1# +26131#1# +26133#1# +26134#1# +26136#1# +26138#2# +26139#2# +26140#2# +26143#1# +26144#1# +26149#1# +26150#1# +26151#2# +26152#1# +26154#2# +26155#2# +26156#2# +26158#2# +26159#2# +26160#2# +26161#2# +26162#2# +26163#2# +26164#2# +26165#2# +26166#2# +26172#2# +26200#2# +26201#1# +26202#1# +26204#3# +26212#2# +26213#2# +26215#2# +26216#2# +28000#1# +28001#1# +28003#2# +28004#2# +28005#1# +28006#2# +28007#2# +28008#1# +28010#2# +28011#1# +28014#3# +28015#1# +28018#1# +28019#1# +28021#2# +28022#2# +28023#2# +28024#1# +28026#1# +28027#1# +28037#1# +28038#2# +28039#2# +28040#2# +28042#2# +28044#2# +28045#2# +28046#2# +28100#1# +28101#1# +28103#1# +28104#2# +28105#1# +28106#2# +28107#1# +28109#1# +28110#1# +28113#1# +28114#3# +28116#2# +28117#1# +28118#1# +28120#1# +28121#1# +28122#1# +28127#3# +28130#2# +28135#1# +28136#2# +28137#2# +28138#2# +28140#2# +28141#2# +28200#1# +28202#1# +28205#2# +28206#2# +28207#2# +28208#2# +28209#3# +28210#3# +28211#3# +28212#3# +28213#3# +28214#1# +28215#1# +28216#1# +28217#1# +28218#1# +28223#2# +28224#2# +28225#2# +28226#2# +28227#1# +28228#1# +28229#1# +28230#1# +28231#1# +28232#1# +28233#1# +28234#1# +28235#1# +28240#2# +28241#2# +28242#2# +28243#2# +28244#2# +28249#1# +28250#1# +28251#1# +28252#1# +28253#2# +28254#2# +28255#2# +28256#2# +28257#2# +28258#2# +28302#1# +28303#1# +28304#1# +28305#1# +28309#1# +28312#1# +28313#1# +28314#1# +28319#1# +28320#1# +28321#1# +28322#1# +28323#1# +28326#1# +28327#1# +28328#1# +28329#1# +28333#1# +28334#1# +28341#1# +28342#1# +28347#1# +28348#1# +28349#1# +28350#1# +28351#1# +28352#1# +28353#1# +28354#1# +28355#1# +28357#1# +28358#1# +28359#1# +28360#1# +28362#1# +28363#1# +28364#1# +28365#1# +28366#1# +28367#1# +28368#1# +28369#1# +28370#1# +28371#1# +28372#1# +28373#1# +28375#1# +28376#1# +28377#1# +28379#1# +28380#1# +28381#1# +28382#1# +28386#1# +28388#1# +28389#1# +28393#1# +28394#1# +28410#1# +28411#1# +28413#1# +28414#1# +28415#1# +28416#1# +28417#1# +28418#1# +28419#1# +28420#1# +28421#1# +28422#1# +28423#1# +28424#1# +28429#1# +28430#1# +28431#1# +28432#1# +28433#1# +28434#1# +28435#1# +28436#1# +28437#1# +28438#1# +28439#1# +28440#1# +28483#1# +28484#1# +28485#1# +28491#1# +28492#1# +28495#1# +28496#1# +28500#1# +28501#1# +28503#1# +28505#1# +28506#1# +28507#1# +28508#1# +28509#1# +28510#1# +28511#1# +28513#1# +28517#1# +28518#1# +28519#1# +28520#1# +28521#1# +28526#1# +28527#1# +28528#1# +28529#1# +28530#1# +28531#1# +28533#1# +28534#1# +28535#1# +28550#1# +28551#1# +28552#1# +28554#1# +28555#1# +28556#1# +28557#1# +28560#1# +28561#1# +28562#1# +28563#1# +28564#1# +28565#1# +28573#1# +28575#1# +28577#1# +28578#1# +28579#1# +28580#1# +28581#1# +28582#1# +28583#1# +28584#1# +28585#1# +28586#1# +28587#1# +28588#1# +28589#1# +28590#1# +28591#1# +28592#1# +28594#1# +28596#1# +28597#1# +28598#1# +28600#1# +28601#2# +28602#2# +28603#3# +28604#2# +28605#1# +28606#1# +28607#1# +28608#2# +28609#1# +28610#1# +28612#2# +28613#1# +28614#1# +28615#3# +28616#1# +28618#4# +28619#2# +28626#2# +28627#1# +28629#2# +28630#2# +28631#2# +28632#2# +28633#2# +28635#2# +28636#2# +28700#2# +28703#1# +28704#4# +28705#2# +28706#1# +28708#3# +28712#3# +28713#3# +28714#1# +28715#3# +28716#3# +28717#4# +28718#2# +28719#1# +28720#3# +28721#2# +28722#1# +28723#1# +28725#1# +28726#1# +28727#3# +28737#3# +28738#3# +28740#1# +28744#2# +28745#2# +28753#1# +28755#2# +28759#2# +28762#2# +28763#2# +28764#2# +28765#2# +28766#3# +28767#2# +28768#2# +28771#2# +28772#2# +28774#2# +28775#3# +28776#2# +28900#1# +28902#1# +28903#1# +28904#1# +28905#1# +28906#1# +28907#1# +28908#1# +28909#1# +28910#1# +28912#1# +28913#1# +28915#1# +28916#1# +28918#1# +28921#1# +28922#1# +28927#1# +28928#1# +28929#1# +28930#1# +28931#1# +28932#1# +28940#1# +28941#1# +28942#1# +28943#1# +28945#1# +28946#1# +28951#1# +28953#1# +28956#1# +32000#3# +32001#1# +32002#1# +32004#1# +32005#2# +32006#3# +32007#1# +32008#1# +32012#1# +32013#3# +32017#1# +32018#2# +32019#2# +32021#2# +32023#2# +32024#2# +32025#2# +32026#2# +32027#2# +32105#1# +32106#1# +32107#2# +32108#2# +32110#2# +32111#2# +32203#1# +32204#1# +32206#1# +32207#1# +32208#1# +32209#1# +32210#1# +32221#1# +32222#1# +32227#1# +32228#1# +32229#1# +32230#1# +32231#1# +32232#1# +32233#1# +32234#1# +32237#1# +32238#1# +32239#1# +32246#1# +32248#1# +32249#1# +32250#1# +32251#1# +32252#1# +32258#1# +32263#1# +32300#1# +32301#2# +32302#2# +32303#2# +32304#2# +32350#2# +32351#2# +32352#2# +32353#2# +32401#2# +32402#2# +32403#2# +400002#1# +400011#1# +400021#1# +400022#1# +400023#1# +400043#1# +400044#1# +400049#1# +400053#1# +400054#1# +400059#1# +400061#1# +400078#1# +400079#1# +400094#1# +400095#1# +400097#1# +400098#1# +400099#1# +400116#1# +400117#1# +400118#1# +400119#1# +400120#1# +400121#1# +400134#1# +400135#1# +400141#1# +400142#1# +400145#1# +400146#1# +400150#1# +400151#1# +400152#1# +400153#1# +400154#1# +400155#1# +400156#1# +400178#1# +400179#1# +400180#1# +400181#1# +400189#1# +400190#1# +400191#1# +400192#1# +400198#1# +400199#1# +400200#1# +400201#1# +400213#1# +400216#1# +400217#1# +400218#1# +400219#1# +400226#1# +400227#1# +400228#1# +400229#1# +400230#1# +400231#1# +400233#1# +400234#1# +400235#1# +400236#1# +400237#1# +400238#1# +400239#1# +400240#1# +400241#1# +400242#1# +400243#1# +400244#1# +400245#1# +400246#1# +400261#1# +400262#1# +400263#1# +400264#1# +400265#1# +400266#1# +400267#1# +400344#1# +400418#1# +400478#1# +400512#1# +410013#1# +410017#1# +410018#1# +410019#1# +410020#1# +410080#1# +410092#1# +410094#1# +436003#1# +436004#1# +436005#1# +450000#1# +450001#1# +450002#1# +450003#1# +450004#1# +450018#1# +450019#1# +450020#1# +450021#1# +450022#1# +450023#1# +450024#1# +450025#1# +450026#1# +450027#1# +450028#1# +450029#1# +450030#1# +450031#1# +450032#1# +450033#1# +450034#1# +450035#1# +450036#1# +450037#1# +450038#1# +450039#1# +450040#1# +450041#1# +450042#1# +450043#1# +450044#1# +450045#1# +450046#1# +450047#1# +450048#1# +450049#1# +450050#1# +450051#1# +450052#1# +450053#1# +450054#1# +450055#1# +450056#1# +450057#1# +450058#1# +450059#1# +450060#1# +450061#1# +450062#1# +450063#1# +450064#1# +450065#1# +450066#1# +450067#1# +450068#1# +450069#1# +450070#1# +450071#1# +450072#1# +450073#1# +450074#1# +450075#1# +450076#1# +450077#1# +450078#1# +450079#1# +450080#1# +450081#1# +450082#1# +450083#1# +450084#1# +450085#1# +450086#1# +450087#1# +450088#1# +450089#1# +450090#1# +450091#1# +450092#1# +450093#1# +450094#1# +450095#1# +450096#1# +450097#1# +450098#1# +450099#1# +450100#1# +450101#1# +450102#1# +450103#1# +450104#1# +450105#1# +450106#1# +450107#1# +450108#1# +450109#1# +450110#1# +450111#1# +450112#1# +450113#1# +450114#1# +450115#1# +450116#1# +450117#1# +450118#1# +450119#1# +450121#1# +450122#1# +450123#1# +450124#1# +450125#1# +450126#1# +450127#1# +450128#1# +450131#1# +450132#1# +450144#1# +450145#1# +450146#1# +450147#1# +450148#1# +450149#1# +450150#1# +450151#1# +450164#1# +450166#1# +450167#1# +450168#1# +450169#1# +450170#1# +450171#1# +450172#1# +450173#1# +450174#1# +450177#1# +450178#1# +450179#1# +450182#1# +450191#1# +450192#1# +450199#1# +450200#1# +450201#1# +450202#1# +450203#1# +450206#1# +450207#1# +450217#1# +460005#1# +460006#1# +460010#1# +460012#1# +460013#1# +460017#1# +460018#1# +460020#1# +460021#1# +460022#1# +470000#1# +470001#1# +470002#1# +470003#1# +470016#1# +470017#1# +470018#1# +470019#1# +470020#1# +470021#1# +470022#1# +470023#1# +470033#1# +470054#1# +470055#1# +470066#1# +470070#1# +470071#1# +470072#1# +470073#1# +470074#1# +470076#1# +470077#1# +470087#1# +470088#1# +470094#1# +470107#1# +470108#1# +470109#1# +470110#1# +470111#1# +470115#1# +470116#1# +470122#1# +480000#1# +480001#1# +480002#1# +480003#1# +480012#1# +480014#1# +480016#1# +480017#1# +480018#1# +480019#1# +480020#1# +480021#1# +480054#1# +480061#1# +480062#1# +480063#1# +480065#1# +480066#1# +480067#1# +480068#1# +480083#1# +480090#1# +480091#1# +480124#1# +480125#1# +480136#1# +480138#1# +480144#1# +480145#1# +480146#1# +480147#1# +480148#1# +480159#1# +480160#1# +480174#1# +480193#1# +480197#1# +480226#1# +480333#1# +490004#1# +490005#1# +490006#1# +490007#1# +490013#1# +490014#1# +490015#1# +490016#1# +490017#1# +490018#1# +490019#1# +490020#1# +490022#1# +490024#1# +490025#1# +490026#1# +490027#1# +490029#1# +490036#1# +490038#1# +490044#1# +490045#1# +490046#1# +490047#1# +490048#1# +490049#1# +490050#1# +490051#1# +490052#1# +490053#1# +490054#1# +490055#1# +490056#1# +490057#1# +490058#1# +490059#1# +490060#1# +490061#1# +490062#1# +490063#1# +490064#1# +490065#1# +490066#1# +490067#1# +490069#1# +490070#1# +490072#1# +490073#1# +490074#1# +490075#1# +490076#1# +490077#1# +490078#1# +490079#1# +490083#1# +490090#1# +490091#1# +490092#1# +490093#1# +490098#1# +490100#1# +490101#1# +490106#1# +490107#1# +490108#1# +490109#1# +490120#1# +490121#1# +490131#1# +490132#1# +490133#1# +490134#1# +490135#1# +490136#1# +490137#1# +490152#1# +490153#1# +490155#1# +490156#1# +490159#1# +490160#1# +490161#1# +490162#1# +490163#1# +490164#1# +490165#1# +490166#1# +490167#1# +490171#1# +490172#1# +490176#1# +490177#1# +490178#1# +490179#1# +490180#1# +490181#1# +490184#1# +490185#1# +490186#1# +490187#1# +490188#1# +490220#1# +490236#1# +490267#1# +490282#1# +490295#1# +490351#1# +490378#1# +490399#1# +490537#1# +500000#1# +500001#2# +500003#2# +500004#2# +500007#3# +500008#2# +500013#2# +500014#2# +500017#2# +500018#2# +500019#2# +500020#2# +500024#2# +500025#2# +500026#2# +500027#2# +500028#2# +500030#2# +500038#2# +500039#2# +500040#2# +500044#2# +500045#2# +500046#2# +500051#2# +510001#2# +510002#2# +510006#2# +510008#2# +510009#2# +510019#2# +510020#2# +510021#1# +510022#2# +510026#2# +510027#2# +510028#2# +510030#2# +510032#2# +510033#2# +510034#2# +510040#2# +510041#2# +510049#2# +510050#2# +510051#2# +510052#2# +510053#2# +510054#2# +510055#2# +510056#2# +510057#2# +510060#2# +510066#2# +510070#2# +510071#2# +510072#2# +520000#2# +520002#2# +520008#2# +520009#2# +530000#2# +530002#2# +530006#2# +530009#2# +530010#2# +530012#2# +530013#2# +530014#2# +530015#2# +530019#2# +530023#2# +530031#2# +540000#2# +540001#2# +540004#2# +540005#2# +540010#2# +540011#2# +540013#2# +540014#2# +540015#2# +540019#2# +540020#2# +540021#2# +540022#2# +540023#2# +540024#2# +540025#2# +540026#2# +540035#2# +540041#2# +540042#2# +540043#2# +540044#2# +540045#2# +540046#2# +540048#2# +540051#2# +540053#2# +540054#2# +540055#2# +550001#2# +550002#2# +550006#2# +550007#2# +550008#2# +550009#2# +550012#2# +550013#2# +550014#2# +550015#2# +550019#2# +550020#2# +550023#2# +550024#2# +550025#2# +550026#2# +550027#2# +550028#2# +550029#2# +550030#2# +550031#2# +550045#2# +550046#2# +550054#2# +550055#2# +550056#2# +550057#2# +550058#2# +550059#2# +550060#2# +550061#2# +550062#2# +550063#2# +550064#2# +550065#2# +550066#2# +550067#2# +550068#2# +550075#2# +550076#2# +550080#2# +550081#2# +550082#2# +550088#2# +560000#2# +560002#2# +560004#2# +560008#2# +560009#2# +560011#2# +560012#2# +560013#2# +560017#2# +560018#2# +560019#2# +560020#2# +560021#2# +560026#2# +560027#2# +560030#2# +560034#2# +560036#2# +570000#2# +570002#2# +570005#2# +570008#2# +570009#2# +570012#2# +570013#2# +570016#2# +570017#2# +570018#2# +570019#2# +570020#2# +570027#2# +570028#2# +580000#2# +580002#2# +580005#2# +580008#2# +580009#2# +580012#2# +580013#2# +580016#2# +580017#2# +580018#2# +580019#2# +580020#2# +580027#2# +580028#2# +590000#2# +590002#2# +590003#2# +590006#2# +590011#2# +590012#2# +590015#2# +590016#2# +590017#2# +590020#2# +590021#2# +590022#2# +590023#2# +590024#2# +590030#2# +590034#2# +590036#2# +590043#2# +590044#2# +590045#2# +600000#1# +600001#2# +600004#2# +600008#2# +600009#2# +600011#2# +600013#2# +600014#2# +600016#2# +600017#2# +600018#2# +600023#2# +600024#2# +600028#2# +610000#2# +610003#2# +610006#2# +610008#2# +610009#2# +610012#2# +610015#2# +610016#2# +610019#2# +610020#2# +610021#2# +610022#2# +610023#2# +610033#2# +610034#2# +610035#2# +610039#2# +620004#2# +620005#2# +620006#2# +620009#2# +620010#2# +620015#2# +620016#2# +620018#2# +630003#2# +630006#2# +630007#2# +630009#2# +630012#2# +630013#2# +640000#2# +640004#2# +640005#2# +640011#2# +640012#2# +640013#2# +640014#2# +640015#2# +640017#2# +640019#2# +640020#2# +640021#2# +640022#2# +640027#2# +640028#2# +640031#2# +650003#2# +650004#2# +650008#2# +650009#2# +650019#2# +650020#2# +650021#2# +650022#2# +650024#2# +700000#1# +700001#2# +700003#2# +700007#2# +700008#2# +700009#2# +700013#2# +700018#2# +700019#2# +700021#2# +700022#2# +700023#2# +700024#2# +700025#2# +700029#2# +700030#2# +700031#2# +700032#2# +700033#2# +700034#2# +700035#2# +700045#2# +700046#2# +700049#2# +700050#2# +700054#2# +700055#2# +700056#2# +800000#1# +800002#2# +800003#2# +800009#2# +800010#2# +800011#2# +800012#2# +800013#2# +810000#2# +810001#2# +810002#2# +810005#2# +810006#2# +810007#2# +810008#2# +810009#2# +810013#2# +820000#2# +820001#2# +820002#2# +820004#2# +820005#2# +820006#2# +820007#2# +830000#2# +830001#2# +830002#2# +830003#2# +830008#2# +830009#2# +830010#2# +830011#2# +830012#2# +840000#2# +840001#2# +840002#2# +840004#2# +840005#2# +840006#2# +840007#2# +840008#2# +1500319#1# +1500320#1# +1500323#1# +1500324#1# +1500325#1# +1500347#1# +1500488#1# +1500489#1# +1500543#1# +1500547#1# +1500548#1# +1500781#1# +1500792#1# +1500793#1# +1500830#1# +1500831#1# +1500832#1# +1500833#1# +1500834#1# +1500835#1# +1500840#1# +1500850#1# +1500852#1# +1500853#1# +1500876#1# +1500977#1# +1500991#1# +1501002#1# +1501025#1# +1501027#1# +1501040#1# +1501052#1# +1501064#1# +1501087#1# +1501089#1# +1501112#1# +1501114#1# +1501127#1# +1501140#1# +1501164#1# +1501180#1# +1501183#1# +1501184#1# +1501185#1# +1501186#1# +1501187#1# +1501188#1# +1501189#1# +1501190#1# +1501191#1# +1501192#1# +1501193#1# +1501194#1# +1501195#1# +1501196#1# +1501197#1# +1501198#1# +1501199#1# +1501200#1# +1501201#1# +1501202#1# +1501249#1# +1501251#1# +1501252#1# +1501266#1# +1501267#1# +1501268#1# +1501269#1# +1501270#1# +1501271#1# +1501297#1# +1501298#1# +1501318#1# +1501319#1# +1501341#1# +1501342#1# +1501344#1# +1501465#1# +1501466#1# +1501467#1# +1501468#1# +1501469#1# +1501470#1# +1501475#1# +1501476#1# +1501478#1# +1501482#1# +1501483#1# +1501504#1# +2000085#1# +2300000#1# +2300001#1# +2300002#1# +2300003#1# +2300004#1# +2300005#1# +2300006#1# +2300008#1# +2300009#1# +2300010#1# +2300011#1# +2300013#1# +2300014#1# +2300015#1# +2300016#1# +2300017#1# +2300018#1# +2300020#1# +2300024#1# +2300028#1# +2300030#1# +2300032#1# +2300033#1# +2300034#1# +2300035#1# +2300036#1# +2300037#1# +2300038#1# +2300040#1# +2300041#1# +2300042#1# +2300043#1# +2300046#1# +2300047#1# +2300049#1# +2300051#1# +2300052#1# +2300053#1# +2300082#1# +2300083#1# +2300084#1# +2300085#1# +2300086#1# +2300087#1# +2300088#1# +2300089#1# +2300102#1# +2300103#1# +2300108#1# +2300109#1# +2300110#1# +2300111#1# +2300113#1# +2300115#1# +2300124#1# +2300134#1# +2300135#1# +2300153#1# +2300154#1# +2300156#1# +2300157#1# +2300170#1# +2300171#1# +2300195#1# +2300196#1# +2300197#1# +2300203#1# +2300217#1# +2300220#1# +2300223#1# +2300224#1# +2300239#1# +2300241#1# +2300242#1# +2300282#1# +2300288#1# +2300289#1# +2300299#1# +2300301#1# +2300302#1# +2300311#1# +2300312#1# +2300330#1# +2300331#1# +2300355#1# +2300362#1# +2300372#1# +2300374#2# +2300375#3# +2300376#3# +2300377#4# +2300378#2# +2300379#4# +2300382#2# +2300383#2# +2300384#2# +2300385#2# +2300386#1# +2300387#1# +2300388#2# +2300389#2# +2300390#1# +2300404#1# +2300405#1# +2300406#1# +2300407#1# +2300420#1# +2300423#1# +2300520#1# +2300522#1# +2300523#1# +2300524#1# +2300525#1# +2300530#1# +2300532#1# +2300533#1# +2300424#1# +2300431#1# +2300432#1# diff --git a/tables/laRO/itemslots.txt b/tables/laRO/itemslots.txt new file mode 100644 index 0000000000..0512cf277f --- /dev/null +++ b/tables/laRO/itemslots.txt @@ -0,0 +1,1800 @@ +2101# +32# +2102# +32# +2103# +32# +2104# +32# +2105# +32# +2106# +32# +2107# +32# +2108# +32# +2201# +512# +2202# +512# +2203# +512# +2204# +512# +2205# +512# +2206# +256# +2207# +256# +2208# +256# +2209# +256# +2210# +256# +2211# +256# +2212# +512# +2213# +256# +2214# +256# +2215# +256# +2216# +256# +2217# +256# +2218# +1# +2220# +256# +2221# +256# +2222# +256# +2223# +256# +2226# +256# +2227# +256# +2228# +256# +2229# +256# +2230# +256# +2231# +256# +2232# +256# +2233# +256# +2234# +256# +2235# +256# +2236# +256# +2237# +0# +2238# +0# +2239# +512# +2240# +0# +2241# +1# +2242# +512# +2243# +512# +2244# +256# +2245# +256# +2246# +256# +2247# +256# +2248# +256# +2249# +256# +2250# +256# +2251# +256# +2252# +256# +2253# +256# +2254# +256# +2255# +256# +2256# +256# +2257# +256# +2258# +256# +2259# +256# +2260# +512# +2261# +256# +2262# +1# +2263# +512# +2265# +1# +2266# +1# +2267# +1# +2268# +1# +2269# +1# +2270# +1# +2271# +256# +2272# +256# +2273# +256# +2274# +256# +2275# +256# +2276# +512# +2277# +256# +2279# +256# +2280# +256# +2282# +256# +2283# +256# +2284# +256# +2285# +256# +2286# +512# +2287# +256# +2289# +256# +2290# +256# +2291# +512# +2293# +256# +2294# +256# +2295# +512# +2296# +512# +2298# +256# +2299# +256# +2301# +16# +2302# +16# +2303# +16# +2304# +16# +2305# +16# +2306# +16# +2307# +16# +2308# +16# +2309# +16# +2310# +16# +2311# +16# +2312# +16# +2313# +16# +2314# +16# +2315# +16# +2316# +16# +2317# +16# +2318# +16# +2319# +16# +2320# +16# +2321# +16# +2322# +16# +2323# +16# +2324# +16# +2325# +16# +2326# +16# +2327# +16# +2328# +16# +2329# +16# +2330# +16# +2331# +16# +2332# +16# +2333# +16# +2334# +16# +2335# +16# +2336# +16# +2337# +16# +2338# +16# +2339# +16# +2401# +64# +2402# +64# +2403# +64# +2404# +64# +2405# +64# +2406# +64# +2407# +64# +2408# +64# +2409# +64# +2501# +4# +2502# +4# +2503# +4# +2504# +4# +2505# +4# +2506# +4# +2507# +4# +2508# +4# +2601# +136# +2602# +136# +2603# +136# +2604# +136# +2605# +136# +2607# +136# +2608# +136# +2609# +136# +2610# +136# +2611# +136# +2612# +136# +2613# +136# +2614# +136# +2615# +136# +2616# +136# +2617# +136# +2618# +136# +2619# +136# +2620# +136# +5001# +256# +5002# +256# +5003# +256# +5004# +1# +5006# +512# +5007# +256# +5008# +256# +5009# +256# +5010# +256# +5011# +256# +5012# +256# +5013# +256# +5014# +512# +5015# +256# +5016# +256# +5017# +256# +5018# +256# +5019# +256# +2278# +513# +2281# +513# +2288# +513# +2292# +513# +2297# +513# +5005# +513# +2224# +256# +2225# +256# +2264# +769# +1116# +34# +1117# +34# +1118# +34# +1151# +34# +1152# +34# +1153# +34# +1154# +34# +1155# +34# +1156# +34# +1157# +34# +1158# +34# +1159# +34# +1160# +34# +1162# +34# +1161# +34# +1163# +34# +1164# +34# +1165# +34# +1166# +34# +1167# +34# +1168# +34# +1169# +34# +1170# +34# +1351# +34# +1352# +34# +1353# +34# +1354# +34# +1355# +34# +1356# +34# +1357# +34# +1358# +34# +1359# +34# +1360# +34# +1361# +34# +1362# +34# +1363# +34# +1364# +34# +1365# +34# +1366# +34# +1367# +34# +1368# +34# +1369# +34# +1451# +34# +1452# +34# +1453# +34# +1454# +34# +1455# +34# +1456# +34# +1457# +34# +1458# +34# +1459# +34# +1460# +34# +1461# +34# +1462# +34# +1463# +34# +1464# +34# +1465# +34# +1466# +34# +1410# +34# +1411# +34# +1412# +34# +1467# +34# +1468# +34# +1469# +34# +1470# +34# +1471# +34# +1250# +34# +1251# +34# +1252# +34# +1253# +34# +1254# +34# +1255# +34# +1701# +34# +1702# +34# +1703# +34# +1715# +34# +1704# +34# +1705# +34# +1706# +34# +1716# +34# +1707# +34# +1708# +34# +1709# +34# +1718# +34# +1710# +34# +1711# +34# +1712# +34# +1719# +34# +1713# +34# +1714# +34# +1720# +34# +4001# +0# +4002# +0# +4003# +0# +4004# +0# +4005# +0# +4006# +0# +4007# +0# +4008# +0# +4009# +0# +4010# +0# +4011# +0# +4012# +0# +4013# +0# +4014# +0# +4015# +0# +4016# +0# +4017# +0# +4018# +0# +4019# +0# +4020# +0# +4021# +0# +4022# +0# +4023# +0# +4024# +0# +4025# +0# +4026# +0# +4027# +0# +4028# +0# +4029# +0# +4030# +0# +4031# +0# +4032# +0# +4033# +0# +4034# +0# +4035# +0# +4036# +0# +4037# +0# +4038# +0# +4039# +0# +4040# +0# +4041# +0# +4042# +0# +4043# +0# +4044# +0# +4045# +0# +4046# +0# +4047# +0# +4048# +0# +4049# +0# +4050# +0# +4051# +0# +4052# +0# +4053# +0# +4054# +0# +4055# +0# +4056# +0# +4057# +0# +4058# +0# +4059# +0# +4060# +0# +4061# +0# +4062# +0# +4063# +0# +4064# +0# +4065# +0# +4066# +0# +4067# +0# +4068# +0# +4069# +0# +4070# +0# +4071# +0# +4072# +0# +4073# +0# +4074# +0# +4075# +0# +4076# +0# +4077# +0# +4078# +0# +4079# +0# +4080# +0# +4081# +0# +4082# +0# +4083# +0# +4084# +0# +4085# +0# +4086# +0# +4087# +0# +4088# +0# +4089# +0# +4090# +0# +4091# +0# +4092# +0# +4093# +0# +4094# +0# +4095# +0# +4096# +0# +4097# +0# +4098# +0# +4099# +0# +4100# +0# +4101# +0# +4102# +0# +4103# +0# +4104# +0# +4105# +0# +4106# +0# +4107# +0# +4108# +0# +4109# +0# +4110# +0# +4111# +0# +4112# +0# +4113# +0# +4114# +0# +4115# +0# +4116# +0# +4117# +0# +4118# +0# +4119# +0# +4120# +0# +4121# +0# +4122# +0# +4123# +0# +4124# +0# +4125# +0# +4126# +0# +4127# +0# +4128# +0# +4129# +0# +4130# +0# +4131# +0# +4132# +0# +4133# +0# +4134# +0# +4135# +0# +4136# +0# +4137# +0# +4138# +0# +4139# +0# +4140# +0# +4141# +0# +4142# +0# +4143# +0# +4144# +0# +4145# +0# +4146# +0# +4147# +0# +4148# +0# +701# +0# +702# +0# +703# +0# +704# +0# +705# +0# +706# +0# +707# +0# +708# +0# +709# +0# +710# +0# +711# +0# +712# +0# +713# +0# +714# +0# +715# +0# +716# +0# +717# +0# +718# +0# +719# +0# +720# +0# +721# +0# +722# +0# +723# +0# +724# +0# +725# +0# +726# +0# +727# +0# +728# +0# +729# +0# +730# +0# +731# +0# +732# +0# +733# +0# +734# +0# +735# +0# +736# +0# +737# +0# +738# +0# +739# +0# +740# +0# +741# +0# +742# +0# +743# +0# +744# +0# +745# +0# +746# +0# +747# +0# +748# +0# +749# +0# +750# +0# +751# +0# +752# +0# +753# +0# +754# +0# +756# +0# +757# +0# +901# +0# +902# +0# +903# +0# +904# +0# +905# +0# +906# +0# +907# +0# +908# +0# +909# +0# +910# +0# +911# +0# +912# +0# +913# +0# +914# +0# +915# +0# +916# +0# +917# +0# +918# +0# +919# +0# +920# +0# +921# +0# +922# +0# +923# +0# +924# +0# +925# +0# +926# +0# +928# +0# +929# +0# +930# +0# +931# +0# +932# +0# +934# +0# +935# +0# +936# +0# +937# +0# +938# +0# +939# +0# +940# +0# +941# +0# +942# +0# +943# +0# +944# +0# +945# +0# +946# +0# +947# +0# +948# +0# +949# +0# +950# +0# +951# +0# +952# +0# +953# +0# +954# +0# +955# +0# +956# +0# +957# +0# +958# +0# +959# +0# +960# +0# +961# +0# +962# +0# +963# +0# +964# +0# +965# +0# +966# +0# +967# +0# +968# +0# +969# +0# +970# +0# +971# +0# +972# +0# +973# +0# +974# +0# +975# +0# +976# +0# +978# +0# +979# +0# +980# +0# +981# +0# +982# +0# +983# +0# +984# +0# +985# +0# +986# +0# +987# +0# +988# +0# +989# +0# +990# +0# +991# +0# +992# +0# +993# +0# +994# +0# +995# +0# +996# +0# +997# +0# +998# +0# +999# +0# +1000# +0# +1001# +0# +1002# +0# +1003# +0# +1004# +0# +1005# +0# +1006# +0# +1007# +0# +1008# +0# +1009# +0# +1010# +0# +1011# +0# +1012# +0# +1013# +0# +1014# +0# +1015# +0# +1016# +0# +1017# +0# +1018# +0# +1019# +0# +1020# +0# +1021# +0# +1022# +0# +1023# +0# +1024# +0# +1025# +0# +1026# +0# +1027# +0# +1028# +0# +1029# +0# +1030# +0# +1031# +0# +1032# +0# +1033# +0# +1034# +0# +1035# +0# +1036# +0# +1037# +0# +1038# +0# +1039# +0# +1040# +0# +1041# +0# +1042# +0# +1043# +0# +1044# +0# +1045# +0# +1046# +0# +1047# +0# +1048# +0# +1049# +0# +1050# +0# +1051# +0# +1052# +0# +1053# +0# +1054# +0# +1055# +0# +1056# +0# +1057# +0# +1058# +0# +1059# +0# +1060# +0# +1061# +0# +1062# +0# +1063# +0# +1064# +0# +1065# +0# +1066# +0# +1067# +0# +1068# +0# +1069# +0# +1070# +0# +1071# +0# +1072# +0# +1073# +0# +1074# +0# +1075# +0# +1076# +0# +1077# +0# +1078# +0# +1079# +0# +1080# +0# +1081# +0# +1082# +0# +1083# +0# +1084# +0# +1085# +0# +501# +0# +502# +0# +503# +0# +504# +0# +505# +0# +506# +0# +507# +0# +508# +0# +509# +0# +510# +0# +511# +0# +512# +0# +513# +0# +514# +0# +515# +0# +516# +0# +517# +0# +518# +0# +519# +0# +520# +0# +521# +0# +522# +0# +523# +0# +525# +0# +526# +0# +528# +0# +529# +0# +530# +0# +531# +0# +532# +0# +533# +0# +534# +0# +535# +0# +601# +0# +602# +0# +603# +0# +604# +0# +605# +0# +606# +0# +607# +0# +608# +0# +609# +0# +610# +0# +1101# +2# +1102# +2# +1103# +2# +1104# +2# +1105# +2# +1106# +2# +1107# +2# +1108# +2# +1109# +2# +1110# +2# +1111# +2# +1112# +2# +1113# +2# +1114# +2# +1115# +2# +1119# +2# +1120# +2# +1121# +2# +1122# +2# +1123# +2# +1124# +2# +1125# +2# +1126# +2# +1127# +2# +1128# +2# +1129# +2# +1130# +2# +1131# +2# +1132# +2# +1133# +2# +1134# +2# +1135# +2# +1136# +2# +1137# +2# +1138# +2# +1139# +2# +1140# +2# +1141# +2# +1201# +2# +1202# +2# +1203# +2# +1204# +2# +1205# +2# +1206# +2# +1207# +2# +1208# +2# +1209# +2# +1210# +2# +1211# +2# +1212# +2# +1213# +2# +1214# +2# +1215# +2# +1216# +2# +1217# +2# +1218# +2# +1219# +2# +1220# +2# +1221# +2# +1222# +2# +1223# +2# +1224# +2# +1225# +2# +1226# +2# +1227# +2# +1228# +2# +1229# +2# +1230# +2# +1231# +2# +1232# +2# +1233# +2# +1234# +2# +1235# +2# +1236# +2# +1237# +2# +1301# +2# +1302# +2# +1303# +2# +1304# +2# +1305# +2# +1401# +2# +1402# +2# +1403# +2# +1404# +2# +1405# +2# +1406# +2# +1407# +2# +1408# +2# +1409# +2# +1413# +2# +1414# +2# +1415# +2# +1416# +2# +1501# +2# +1502# +2# +1503# +2# +1504# +2# +1505# +2# +1506# +2# +1507# +2# +1508# +2# +1509# +2# +1510# +2# +1511# +2# +1512# +2# +1513# +2# +1514# +2# +1515# +2# +1516# +2# +1517# +2# +1518# +2# +1519# +2# +1520# +2# +1521# +2# +1522# +2# +1523# +2# +1524# +2# +1525# +2# +1526# +2# +1527# +2# +1528# +2# +1550# +2# +1551# +2# +1552# +2# +1601# +2# +1602# +2# +1603# +2# +1604# +2# +1605# +2# +1606# +2# +1607# +2# +1608# +2# +1609# +2# +1610# +2# +1611# +2# +1612# +2# +1613# +2# +1614# +2# +1615# +2# +1801# +2# +1802# +2# +1803# +2# +1804# +2# +1805# +2# +1806# +2# +1807# +2# +1808# +2# +1809# +2# +1810# +2# +1811# +2# +1812# +2# +1813# +2# +1814# +2# +1901# +2# +1902# +2# +1903# +2# +1904# +2# +1905# +2# +1906# +2# +1907# +2# +1908# +2# +1909# +2# +1910# +2# +1911# +2# +1912# +2# +1950# +2# +1951# +2# +1952# +2# +1953# +2# +1954# +2# +1955# +2# +1956# +2# +1957# +2# +1958# +2# +1959# +2# +1960# +2# +1961# +2# +1962# +2# +1963# +2# +1964# +2# \ No newline at end of file diff --git a/tables/laRO/maps.txt b/tables/laRO/maps.txt new file mode 100644 index 0000000000..f3656a9977 --- /dev/null +++ b/tables/laRO/maps.txt @@ -0,0 +1,1380 @@ +// Glastheim Challenge Mode +1@gl_he.rsw#Contaminated Dimension# + +// EDDA Biotechnology Research Institute +1@gol1.rsw#Biological Experiment Center# +1@gol2.rsw#Morgue# + +// Illusion of Labyrinth +prt_mz03_i.rsw#Twisted Labyrinth Forest# + +// 2018 Halloween +1@halo.rsw#Halloween Festival Hall# + +// Zero Amatsu Momotaro +1@momo.rsw#Momotaro Experience Hall# + +// Zero 2nd memorial +1@ant01.rsw#Ant Hell# +1@izd02.rsw#Undersea Tunnel B2# +1@tre02.rsw#Sunken Ship# + +// Prontera Sewer +1@sewb2.rsw#Sewer# + +// EDDA The Fall of Glastheim +1@gl_prq.rsw#The Fall of Glastheim# + +mag_dun03.rsw#Nogg Road Dungeon F3# +gl_cas01_.rsw#Abyss Glastheim Castle F1# + +// Episode 17.1 and illusion +1@cor.rsw#Core Memorial# +1@os_a.rsw#Occupied Battle# +1@os_b.rsw#Sealed OS# +1@rgsr.rsw#Regenshir Research Institute# +rgsr_in.rsw#Reckenberg Research Institute# +pub_cat.rsw#Bullet Cat# +sp_cor.rsw#Special Border FCor# +sp_os.rsw#Special Border OS# +sp_rudus.rsw#Rudus, Experiment Waste Disposal F1# +sp_rudus2.rsw#Rudus, Experiment Waste Disposal F2# +sp_rudus3.rsw#Rudus, Experiment Waste Disposal F3# + +// Star Emperor +star_frst.rsw#Yu Seong Lim# +star_in.rsw#Inside Yu Seong Lim# + +// Soul Reaper +1@soul.rsw#Soul Passage# + +// Illusion of Luanda +com_d02_i.rsw#Luanda, the North Cave# + +// Illusion Teddy Bear Nasarin Empire +ein_d02_i.rsw#Nasarin Empire# + +// Welcome Corridor +vis_h01.rsw#Welcome Corridor F1# +vis_h02.rsw#Welcome Corridor F2# +vis_h03.rsw#Welcome Corridor F3# +vis_h04.rsw#Welcome Corridor F4# + +// Memorial Dungeon +2@gl_kh.rsw#Old Glastheim Chivalry F2# +1@gl_kh.rsw#Old Glastheim Chivalry F1# + +// November hunting contest +prt_evt_in.rsw#Hunting Lodge# + +// X anniversary +x_prt.rsw#Prontera - Beyond dimension# +x_lhz.rsw#Lighthalzen - Beyond dimension# +x_ra.rsw#Rachel - Beyond dimension# + +// Noodles Festival July +lasa_sea.rsw#Cat Tunnel# +1@drdo.rsw#Legend of Dorado# + +//Old office of Ninja +que_ng.rsw#Unknown Place# + +//Volcanic island Korodo +1@crd.rsw#Volcanic island Korodo# + +// Illusion turtle island (Turtle Palace) +tur_d03_i.rsw#Desolate Village# +tur_d04_i.rsw#Bleak Turtle Palace# + +//Poring Town +1@begi.rsw#Poring Town# + +// Suspicious shipwreck +1@tre.rsw#Suspicious Shipwreck# + +// Illusion Ice cave (Frozen) +ice_d03_i.rsw#Frozen Memory# + +// Illusion Geffen (Vampire) +gef_d01_i.rsw#250 Pages# + +// Illusion Payon (Moonlight) +pay_d03_i.rsw#Nightmare of Moonlight# + +// Chicken Mode Horror Toy Factory +1@xm_d2.rsw#Horror Toy Factory# + +// Chicken Mode Nightmare Glastheim +1@gl_k2.rsw#Old Glastheim Chivalry F1# +2@gl_k2.rsw#Old Glastheim Chivalry F2# + +// Localizing Rockridge +har_in01.rsw#Rockridge# +harboro1.rsw#Rockridge# +harboro2.rsw#Underground Waterway# +rockmi1.rsw#Rockridge Mine# +rockmi2.rsw#Rockridge Mine# +rockrdg1.rsw#Kiwawa Desert# +rockrdg2.rsw#Kiwawa Desert# + +// Memorial day +1@md_gef.rsw#Friday Memorial# +1@md_pay.rsw#Weekend Memorial# + +// ep16.2 +1@slw.rsw#Central room of Werner Laboratory# +1@swat.rsw#Heart Hunter Military Base# +que_swat.rsw#Heart Hunter Military Base# +slabw01.rsw#Werner Laboratory# +rebel_in.rsw#Clana Nemieri# + +// Half moon in the daylight +1@pop1.rsw#Pope's Office# +1@pop2.rsw#Way Back Home# +1@pop3.rsw#Sky Garden# + +// Doram race - Lasagna town +lasagna.rsw#Port Town Lasagna# +lasa_fild01.rsw#Ravioli Plain, Border Post# +lasa_fild02.rsw#Ravioli Forest# +lasa_dun01.rsw#Dragon Nest# +lasa_dun02.rsw#Dragon Nest# +lasa_dun03.rsw#Dragon Nest# +conch_in.rsw#Inside Conch# +lasa_in01.rsw#Inside Lasagna# +lasa_dun_q.rsw#Dragon Nest# + +int_land.rsw#Remote Island# +int_land01.rsw#Remote Island# +int_land02.rsw#Remote Island# +int_land03.rsw#Remote Island# +int_land04.rsw#Remote Island# + +// ep16.1 Banquet for Hero + Prontera Renewal +1@mir.rsw#Ritual Room# +2@mir.rsw#Ritual Room# +1@sthb.rsw#Air Fortress - Inside# +1@sthc.rsw#Air Fortress - Secret Chamber# +1@sthd.rsw#Air Fortress - Top Floor# + +prt_cas.rsw#Prontera Central Palace# +prt_cas_q.rsw#Prontera Imperial Villa# +prt_prison.rsw#Prontera Dungeon# +prt_lib.rsw#Memorial of Royal Family# +prt_lib_q.rsw#Memorial of Past Royal Family# +prt_q.rsw#Invaded Prontera# +prt_pri00.rsw#Prontera Prison# + +// Clan MD +1@ffp.rsw#Remnant Hideout# + +// Infinite MD +1@infi.rsw#Infinite Space# + +// Para Market +paramk.rsw#Para Market# + +// ep15.2 Memory Record +verus01.rsw#Laboratory-OPTATIO# +verus02.rsw#Research Building-WISH# +un_bk_q.rsw#Underground Bunker# +un_bunker.rsw#Underground Bunker# +un_myst.rsw#Underground Tunnel# +1@uns.rsw#The Last room# +1@lab.rsw#Central Laboratory# + +// New Biolabs Dungeon +lhz_dun_n.rsw#Tomb of the Fallen# +lhz_d_n2.rsw#Void of Vicious Mind# + +// Trails of the 3 Heroes +1@glast.rsw#Past Glastheim# +1@air1.rsw#Airship# +1@air2.rsw#Airship# + +// Rebellion Job Change Map +job_gun.rsw#Shelter of Rebellion# + +// ep15.1 +ver_eju.rsw#Eastern Ruins of Juperos# +ver_tunn.rsw#Verus - Tunnel Outskirts# +verus04.rsw#Verus - Excavation Site# +verus03.rsw#Verus - Central Plaza# + +1@mcd.rsw#Charleston Factory# + +// Operations Team Event +e_hugel.rsw#Invaded Hugel# + +c_tower2_.rsw#Twisted Clock Tower F2# +c_tower3_.rsw#Twisted Clock Tower F3# + +silk_lair.rsw#Python's Lair# + +moro_vol.rsw#Flame Basin# +moro_cav.rsw#Flame Cave# +1@dth1.rsw#Bios Island# +1@dth2.rsw#Bios Island# +1@dth3.rsw#Bios Island# +1@rev.rsw#Morse Cave# +1@xm_d.rsw#Horror Toy Factory# +1@eom.rsw#Shrine of Demon God# +1@jtb.rsw#Dream and Shadow# + +dali02.rsw#Dimensional Rift# +1@face.rsw#Faceworm's Nest# +1@sara.rsw#Sara's Memory# +dali.rsw#Dimensional Rift# +1@tnm1.rsw#Demon's Tower - Upper floor# +1@tnm2.rsw#Demon's Tower - Top floor# +1@tnm3.rsw#Morocc Castle - Basement# +1@ge_st.rsw#Geffen Magic Tournament# +1@gef.rsw#Geffen Magic Tournament# +1@gef_in.rsw#Geffen Magic Tournament# +1@spa.rsw#Ghost Palace# + +1@def01.rsw#Wave Dungeon - Forest# +1@def02.rsw#Wave Dungeon - Sky# +1@def03.rsw#Wave Dungeon - Lava# + +evt_bomb.rsw#Labyrinth Event# + +gl_cas02_.rsw#Corridor F2# +gl_chyard_.rsw#Monastery Churchyard# +2@gl_k.rsw#Old Glastheim Chivalry F2# +1@gl_k.rsw#Old Glastheim Chivalry F1# + +te_prt_gld.rsw#Gloria# +te_prtcas01.rsw#Geoborg Castle# +te_prtcas02.rsw#Richard Castle# +te_prtcas03.rsw#Wigner Castle# +te_prtcas04.rsw#Heine Castle# +te_prtcas05.rsw#Nerius Castle# +teg_dun01.rsw#Guild Underground Dungeon# +te_alde_gld.rsw#Kafra's Den# +te_aldecas01.rsw#Glaris Castle# +te_aldecas02.rsw#Defolty Castle# +te_aldecas03.rsw#Sorin Castle# +te_aldecas04.rsw#Bennit Castle# +te_aldecas05.rsw#W Castle# +teg_dun02.rsw#Guild Underground Dungeon# + +prt_fild08d.rsw#Prontera Field F8# +prt_fild08c.rsw#Prontera Field F8# +prt_fild08b.rsw#Prontera Field F8# +prt_fild08a.rsw#Prontera Field F8# + +iz_ac01_d.rsw#Criatura Academy F1# +iz_ac02_d.rsw#Criatura Academy F2# +iz_ac01_c.rsw#Criatura Academy F1# +iz_ac02_c.rsw#Criatura Academy F2# +iz_ac01_b.rsw#Criatura Academy F1# +iz_ac02_b.rsw#Criatura Academy F2# +iz_ac01_a.rsw#Criatura Academy F1# +iz_ac02_a.rsw#Criatura Academy F2# + +izlude_d.rsw#Izlude, the Satellite City# +izlude_c.rsw#Izlude, the Satellite City# +izlude_b.rsw#Izlude, the Satellite City# +izlude_a.rsw#Izlude, the Satellite City# + +iz_int.rsw#Intro# +iz_int01.rsw#Intro# +iz_int02.rsw#Intro# +iz_int03.rsw#Intro# +iz_int04.rsw#Intro# +iz_ac01.rsw#Criatura Academy F1# +iz_ac02.rsw#Criatura Academy F2# +iz_ng01.rsw#Ninja tutorial map# +treasure_n1.rsw#Izlude Shipwreck B1# +treasure_n2.rsw#Izlude Shipwreck B2# + +moc_prydn1.rsw#Morocc Pyramid B1 - Nightmare# +moc_prydn2.rsw#Morocc Pyramid B2 - Nightmare# + +eclage.rsw#Eclage, Forestic Village# +ecl_fild01.rsw#Blooming Flower Land# +ecl_in01.rsw#Eclage Indoor 1# +ecl_in02.rsw#Eclage Indoor 2# +ecl_in03.rsw#Eclage Indoor 3# +ecl_in04.rsw#Eclage Indoor 4# +1@ecl.rsw#Eclage Interior# +ecl_tdun01.rsw#Bifrost Tower 1F# +ecl_tdun02.rsw#Bifrost Tower 2F# +ecl_tdun03.rsw#Bifrost Tower 3F# +ecl_tdun04.rsw#Bifrost Tower 4F# +ecl_hub01.rsw#Eclage Perimeter# +que_avan01.rsw#Avant's Laboratory# + + +malaya.rsw#Port Malaya# +ma_fild01.rsw#Baryo Mahiwaga# +ma_fild02.rsw#Forest# +ma_scene01.rsw#Bakonawa Lake# +ma_in01.rsw#Inside of Malaya# +ma_dun01.rsw#Bangungot Hospital F1# +1@ma_h.rsw#Bangungot Hospital F2# +1@ma_c.rsw#Buwaya Cave# +1@ma_b.rsw#Bakonawa Hideout# +ma_zif01.rsw#Inside of Jeepney# +ma_zif02.rsw#Inside of Jeepney# +ma_zif03.rsw#Inside of Jeepney# +ma_zif04.rsw#Inside of Jeepney# +ma_zif05.rsw#Inside of Jeepney# +ma_zif06.rsw#Inside of Jeepney# +ma_zif07.rsw#Inside of Jeepney# +ma_zif08.rsw#Inside of Jeepney# +ma_zif09.rsw#Inside of Jeepney# +job_ko.rsw#Hidden Place# + +gld_dun01_2.rsw#Guild Dungeon Underground F2# +gld_dun02_2.rsw#Guild Dungeon Underground F2# +gld_dun03_2.rsw#Guild Dungeon Underground F2# +gld_dun04_2.rsw#Guild Dungeon Underground F2# +gld2_ald.rsw#Corridor of the Abyss - Tears of Hero# +gld2_gef.rsw#Corridor of the Abyss - Dead Man Hill# +gld2_pay.rsw#Corridor of the Abyss - Ancient Wind# +gld2_prt.rsw#Corridor of the Abyss - Warrior's Way# + +lhz_dun04.rsw#Somatology Laboratory 4th Basement# +que_lhz.rsw#Lighthalzen Indoor# +1@lhz.rsw#Wolfchev's Lab# +malangdo.rsw#Malangdo# +mal_in01.rsw#Inside Malangdo# +mal_in02.rsw#Inside the Ship# +mal_dun01.rsw#Starry Coral Area# +1@cash.rsw#Octopus Cave# +1@pump.rsw#Culvert# +2@pump.rsw#Culvert# +evt_hello.rsw#Dead Angel's landing# +dic_dun03.rsw#Scaraba Hole - Nightmare Mode# +que_house_s.rsw#Strange House# +dewata.rsw#Dewata# +dew_in01.rsw#Inside Dewata# +dew_fild01.rsw#Dewata Field (Tribal Village)# +dew_dun01.rsw#Volcanic Island of Krakatoa# +dew_dun02.rsw#Istana Cave# +1@mist.rsw#The Hazy Maze Forest# +mora.rsw#Mora Village# +bif_fild01.rsw#Bifrost Bridge# +bif_fild02.rsw#Bifrost Bridge# +dicastes01.rsw#El Dicastes, the Sapha Capital# +dicastes02.rsw#Dicastes Diel# +dic_in01.rsw#Inside of El Dicastes# +dic_fild01.rsw#Outskirts of Kamidal Mountain F1# +dic_fild02.rsw#Outskirts of Kamidal Mountain F2# +dic_dun01.rsw#Kamidal Tunnel# +dic_dun02.rsw#Scaraba Hall# +job3_gen01.rsw#Geneticist Lab# +s_atelier.rsw#Shadow Workshop# +brasilis.rsw#Brasilis# +bra_in01.rsw#Inside Brasilis# +bra_fild01.rsw#Brasilis Field# +bra_dun01.rsw#Beyond the Waterfall# +bra_dun02.rsw#Beyond the Waterfall# +moc_para01.rsw#Inside of Morocc Eden Group# +job3_arch01.rsw#Waiting room for Archbishop Job Change# +job3_arch02.rsw#Odin Temple# +job3_arch03.rsw#Waiting room for Archbishop Job Change# +job3_guil01.rsw#Secret Tavern# +job3_guil02.rsw#Inside the Old Warehouse# +job3_guil03.rsw#Isolated mansion# +job3_rang01.rsw#Waiting room for Ranger Job Change# +job3_rang02.rsw#Test room for Ranger Job Change# +job3_rune01.rsw#Inside of Rune Knight Templar# +job3_rune02.rsw#Test room for Rune Knight Job Change# +job3_rune03.rsw#Test room for Rune Knight Job Change# +job3_war01.rsw#Test room for Warlock Job Change# +job3_war02.rsw#Test room for Warlock Job Change# +jupe_core2.rsw#Center of Juperos# +1@nyd.rsw#Nidhoggr's Nest F1# +2@nyd.rsw#Nidhoggr's Nest F2# +nyd_dun01.rsw#Yggdrasil Root F1# +nyd_dun02.rsw#Yggdrasil Root F2# +moc_fild22b.rsw#Dimensional Gorge# +mid_camp.rsw#Midgard Expedition Camp# +mid_campin.rsw#Inside Midgard Expedition Camp# +manuk.rsw#Manuk Mining Camp# +man_in01.rsw#Inside Manuk# +man_fild01.rsw#Manuk Field F1# +man_fild02.rsw#Manuk Field F2# +man_fild03.rsw#Manuk Field F3# +splendide.rsw#Splendide# +spl_fild01.rsw#Splendide Field F1# +spl_fild02.rsw#Splendide Field F2# +spl_fild03.rsw#Splendide Field F3# +spl_in01.rsw#Inside Splendide# +spl_in02.rsw#Inside Splendide# +bat_c01.rsw#Kreiger Von Midgard# +bat_c02.rsw#Kreiger Von Midgard# +bat_c03.rsw#Kreiger Von Midgard# +que_dan01.rsw#Hugel Field# +que_dan02.rsw#Inside of the Abandoned House in Yuno# +schg_que01.rsw#Morestone Prairie# +schg_dun01.rsw#Schwartzvald Guild Dungeon# +arug_que01.rsw#Morestone Prairie# +arug_dun01.rsw#Arunafeltz Guild Dungeon# +1@orcs.rsw#Subterranean Orc Cave F1# +2@orcs.rsw#Subterranean Orc Cave F2# +1@cata.rsw#Catacombs# +2@cata.rsw#Sealed Shrine# +e_tower.rsw#Misty Island# +1@tower.rsw#Endless Tower# +2@tower.rsw#Endless Tower# +3@tower.rsw#Endless Tower# +4@tower.rsw#Endless Tower# +5@tower.rsw#Endless Tower# +6@tower.rsw#Endless Tower (Unknown Area)# +bat_room.rsw#Battlegrounds Waiting Room# +bat_a01.rsw#Tierra Valley# +bat_a02.rsw#Tierra Valley# +bat_b01.rsw#Flavian# +bat_b02.rsw#Flavian# +que_qsch01.rsw#Fallacious Okolnir# +que_qsch02.rsw#Fallacious Okolnir# +que_qsch03.rsw#Fallacious Okolnir# +que_qsch04.rsw#Fallacious Okolnir# +que_qsch05.rsw#Fallacious Okolnir# +que_qaru01.rsw#Fallacious Okolnir# +que_qaru02.rsw#Fallacious Okolnir# +que_qaru03.rsw#Fallacious Okolnir# +que_qaru04.rsw#Fallacious Okolnir# +que_qaru05.rsw#Fallacious Okolnir# +arug_cas01.rsw#Mardol Castle# +arug_cas02.rsw#Cyr Castle# +arug_cas03.rsw#Horn Castle# +arug_cas04.rsw#Gefn Castle# +arug_cas05.rsw#Banadis Castle# +aru_gld.rsw#Valfreyja# +moscovia.rsw#Moscovia# +mosk_in.rsw#Inside Moscovia# +mosk_ship.rsw#Charabel# +mosk_fild01.rsw#Okrestnosti Of Moscovia# +mosk_fild02.rsw#Okrestnosti Of Moscovia# +mosk_dun01.rsw#Les Forest# +mosk_dun02.rsw#Temny Forest# +mosk_dun03.rsw#Dremuci Forest# +mosk_que.rsw#Marozka's Cave# +schg_cas01.rsw#Himinn Castle# +schg_cas02.rsw#Andlangr Castle# +schg_cas03.rsw#Vidblainn Castle# +schg_cas04.rsw#Hljod Castle# +schg_cas05.rsw#Skidbladnir Castle# +sch_gld.rsw#Nidhoggur# +cave.rsw#Cave Village# +moc_fild20.rsw#Sograt Desert - Dimensional Rift# +moc_fild21.rsw#Sograt Desert - Dimensional Rift# +moc_fild22.rsw#Sograt Desert - Dimensional Rift# +bossnia_01.rsw#Bossnia# +bossnia_02.rsw#Bossnia# +bossnia_03.rsw#Bossnia# +bossnia_04.rsw#Bossnia# +itemmall.rsw#Kafra Shop# +poring_w01.rsw#Poring War Waiting Room# +poring_w02.rsw#Poring War Market# +nameless_i.rsw#Nameless Island Entrance# +nameless_n.rsw#Nameless Island Entrance# +nameless_in.rsw#Inside Nameless Island# +abbey01.rsw#Cursed Abbey Dungeon F1# +abbey02.rsw#Cursed Abbey Dungeon F2# +abbey03.rsw#Cursed Abbey Dungeon F3# +que_temsky.rsw#Pope's Room (Sky Garden)# +z_agit.rsw#Z Gang's Hideout# +veins.rsw#Veins, the Canyon Village# +ve_in.rsw#Inside Veins# +ve_in02.rsw#Inside Veins# +ve_fild01.rsw#Veins Field F1# +ve_fild02.rsw#Veins Field F2# +ve_fild03.rsw#Veins Field F3# +ve_fild04.rsw#Veins Field F4# +ve_fild05.rsw#Veins Field F5# +ve_fild06.rsw#Veins Field F6# +ve_fild07.rsw#Veins Field F7# +thor_camp.rsw#Thor Volcano Camp# +que_thor.rsw#Thor Volcano Dungeon# +thor_v01.rsw#Thor Volcano Dungeon# +thor_v02.rsw#Thor Volcano Dungeon# +thor_v03.rsw#Thor Volcano Dungeon# +06guild_r.rsw#Guild Arena Waiting Room# +06guild_01.rsw#Guild Arena# +06guild_02.rsw#Guild Arena# +06guild_03.rsw#Guild Arena# +06guild_04.rsw#Guild Arena# +06guild_05.rsw#Guild Arena# +06guild_06.rsw#Guild Arena# +06guild_07.rsw#Guild Arena# +06guild_08.rsw#Guild Arena# +rachel.rsw#Rachel, Capital of Arunafelz, the Study Nation# +ra_in01.rsw#Inside Rachel# +ra_temple.rsw#Freya's Grand Temple (Sesilmir)# +ra_temin.rsw#Inside Rachel Sanctuary# +que_rachel.rsw#Inside Freya's Temple# +ra_temsky.rsw#Pope's Room (Sky Garden)# +ra_fild01.rsw#Audumra Grass Land# +ra_fild02.rsw#Oz Gorge# +ra_fild03.rsw#Ida Plane# +ra_fild04.rsw#Audumra Grass Land# +ra_fild05.rsw#Audumra Grass Land# +ra_fild06.rsw#Fortu Luna# +ra_fild07.rsw#Oz Gorge# +ra_fild08.rsw#Ida Plane# +ra_fild09.rsw#Audumra Grass Land# +ra_fild10.rsw#Oz Gorge# +ra_fild11.rsw#Ida Plane# +ra_fild12.rsw#Ida Plane# +ra_fild13.rsw#Beach of Tears# +ra_san01.rsw#Freya's Sacred Precinct F1# +ra_san02.rsw#Freya's Sacred Precinct F2# +ra_san03.rsw#Freya's Sacred Precinct F3# +ra_san04.rsw#Freya's Sacred Precinct F4# +ra_san05.rsw#Freya's Sacred Precinct F5# +ice_dun01.rsw#Rachel Ice Cave F1# +ice_dun02.rsw#Rachel Ice Cave F2# +ice_dun03.rsw#Rachel Ice Cave F3# +ice_dun04.rsw#Rachel Ice Cave - Sealed Space# +hugel.rsw#Hugel, the Quaint Garden Village# +hu_in01.rsw#Inside Hugel# +que_bingo.rsw#Bingo Game Room# +que_hugel.rsw#Odin Shrine's Underground# +p_track01.rsw#Monster Race Arena# +p_track02.rsw#Monster Race Arena# +odin_tem01.rsw#Odin Shrine F1# +odin_tem02.rsw#Odin Shrine F2# +odin_tem03.rsw#Odin Shrine F3# +odin_past.rsw#Odin Shrine Past# +hu_fild02.rsw#Hugel Field# +hu_fild03.rsw#Hunting Ground# +hu_fild06.rsw#Hugel Field# +yuno_fild10.rsw#Yuno Field# +kh_kiehl02.rsw#Kiel's Room# +kh_kiehl01.rsw#Kiel's Room# +kh_dun02.rsw#Robot Factory F2# +kh_dun01.rsw#Robot Factory F1# +kh_mansion.rsw#Kiel Hyre's Mansion# +kh_rossi.rsw#The Rosimier's Mansion# +kh_school.rsw#Kiel Hyre's Academy# +kh_vila.rsw#Kiel Hyre's Cottage# +auction_01.rsw#Auction Hall# +auction_02.rsw#Auction Hall# +que_job01.rsw#Private Pub# +abyss_01.rsw#Abyss Lakes Underground Cave F1# +abyss_02.rsw#Abyss Lakes Underground Cave F2# +abyss_03.rsw#Abyss Lakes Underground Cave F3# +abyss_04.rsw#Abyss Lakes Underground Cave F4# +tha_t01.rsw#Thanatos Tower Lower Level - Museum entrance# +tha_t02.rsw#Thanatos Tower Lower Level - Museum# +tha_t03.rsw#Thanatos Tower Lower Level - Abandoned Place# +tha_t04.rsw#Thanatos Tower Lower Level - Abandoned Place# +tha_t05.rsw#Thanatos Tower Upper Level# +tha_t06.rsw#Thanatos Tower Upper Level# +tha_t07.rsw#Thanatos Tower Upper Level - Room of Angel# +tha_t08.rsw#Thanatos Tower Upper Level - Room of Angel# +tha_t09.rsw#Thanatos Tower Upper Level - Room of Agony# +tha_t10.rsw#Thanatos Tower Upper Level - Room of Sorrow# +tha_t11.rsw#Thanatos Tower Upper Level - Room of Despair# +tha_t12.rsw#Thanatos Tower Upper Level - Room of Hatred# +thana_step.rsw#Thanatos Tower Upper Level - Stairs# +thana_boss.rsw#Thanatos Tower - Unknown Place# +tha_scene01.rsw#Thanatos Tower Entrance# +job_soul.rsw#Your Heart# +job_star.rsw#The Sun, the Moon and the Stars# +hu_fild07.rsw#Hugel Field F7# +hu_fild06.rsw#Hugel Field F6# +hu_fild05.rsw#Hugel Abyss Lake# +hu_fild04.rsw#Hugel Field F4# +hu_fild03.rsw#Hugel Field F3# +hu_fild02.rsw#Hugel Field F2# +hu_fild01.rsw#Entrance to Thanatos Tower# +yuno_fild06.rsw#El Mes Plateau# +quiz_02.rsw#Quiz Arena# +jupe_cave.rsw#Juperos Dungeon Entrance# +juperos_01.rsw#The Ruins of Juperos F1# +juperos_02.rsw#The Ruins of Juperos F2# +jupe_gate.rsw#Juperos, Restricted Zone# +jupe_area1.rsw#Juperos, Restricted Zone 1# +jupe_area2.rsw#Juperos, Restricted Zone 2# +jupe_ele.rsw#Juperos Elevator# +jupe_ele_r.rsw#Juperos Elevator# +jupe_core.rsw#Center of Juperos# +lighthalzen.rsw#Lighthalzen, the City-State of Prosperity# +lhz_in01.rsw#Rekenber Corporation Headquarters# +lhz_in02.rsw#Inside Lighthalzen# +lhz_in03.rsw#Inside Lighthalzen# +lhz_cube.rsw#Cube Room# +lhz_que01.rsw#Inside Lighthalzen# +lhz_airport.rsw#Lighthalzen Airport# +airplane_01.rsw#Airship# +lhz_dun01.rsw#Somatology Laboratory F1# +lhz_dun02.rsw#Somatology Laboratory F2# +lhz_dun03.rsw#Somatology Laboratory F3# +yuno_pre.rsw#Schwartzvald Government Buildings# +y_airport.rsw#Yuno Airport# +lhz_fild01.rsw#Lighthalzen Field F1# +lhz_fild02.rsw#Lighthalzen Field F2 (Grim Reaper's Valley)# +lhz_fild03.rsw#Lighthalzen Field F3# +ein_fild01.rsw#Einbroch Field F1# +ein_fild02.rsw#Einbroch Field F2# +ein_fild03.rsw#Einbroch Field F3# +ein_fild04.rsw#Einbroch Field F4# +ein_fild05.rsw#Einbroch Field F5# +ein_fild06.rsw#Einbroch Field F6# +ein_fild07.rsw#Einbroch Field F7# +ein_fild08.rsw#Einbroch Field F8# +ein_fild09.rsw#Einbroch Field F9# +ein_fild10.rsw#Einbroch Field F10# +ein_dun02.rsw#Einbech Mine F2# +ein_dun01.rsw#Einbech Mine F1# +airplane.rsw#Airship# +airport.rsw#Airport# +ein_in01.rsw#Inside Einbroch# +einbech.rsw#Einbech, the Mining Village# +einbroch.rsw#Einbroch, the City of Steel# +turbo_e_16.rsw#Turbo Track Stadium# +turbo_e_8.rsw#Turbo Track Stadium# +turbo_e_4.rsw#Turbo Track Stadium# +turbo_n_16.rsw#Turbo Track Stadium# +turbo_n_8.rsw#Turbo Track Stadium# +turbo_n_4.rsw#Turbo Track Stadium# +turbo_n_1.rsw#Turbo Track Stadium# +turbo_room.rsw#Waiting Room# +yuno_fild12.rsw#Border Checkpoint# +yuno_fild11.rsw#Yuno Field# +yuno_fild09.rsw#Schwartzvald Guards Camp# +yuno_fild08.rsw#Kiel Hyre's Academy# +yuno_fild07.rsw#El Mes Gorge (Valley of Abyss)# +yuno_fild05.rsw#El Mes Plateau# +ayo_in02.rsw#Inside Ayothaya# +ayo_in01.rsw#Inside Ayothaya# +ayo_dun02.rsw#Inside Ancient Shrine# +ayo_dun01.rsw#Ancient Shrine Maze# +ayo_fild02.rsw#Ayothaya Field F2# +ayo_fild01.rsw#Ayothaya Field F1# +ayothaya.rsw#Ayothaya# +que_god02.rsw#Quest Map# +que_god01.rsw#Quest Map# +quiz_test.rsw#Quiz Hall# +gefenia04.rsw#Geffenia F4# +gefenia03.rsw#Geffenia F3# +gefenia02.rsw#Geffenia F2# +gefenia01.rsw#Geffenia F1# +himinn.rsw#Valkyrie Hall (Himinn)# +jawaii_in.rsw#Inside Jawaii# +jawaii.rsw#Jawaii, the Honeymoon Island# +lou_in02.rsw#Inside Louyang# +lou_in01.rsw#Inside Louyang# +lou_dun03.rsw#Suei Long Gon# +lou_dun02.rsw#Inside the Royal Tomb# +lou_dun01.rsw#The Royal Tomb# +lou_fild01.rsw#Louyang Field# +louyang.rsw#Louyang, the Highland# +valkyrie.rsw#Valkyrie Hall, the Hall of Honor# +nif_in.rsw#Inside Niflheim# +yggdrasil01.rsw#Hvergelmir's Fountain (Trunk of Yggdrasil)# +nif_fild02.rsw#Valley of Niflheim# +nif_fild01.rsw#Skellington, a Solitary Village in Niflheim# +niflheim.rsw#Niflheim, Realm of the Dead# +um_dun01.rsw#Carpenter's Shop in the Tree# +um_dun02.rsw#Passage to a Foreign World# +um_in.rsw#Inside Umbala# +um_fild01.rsw#Luluka Forest# +um_fild02.rsw#Hoomga Forest# +um_fild03.rsw#Kalala Swamp# +um_fild04.rsw#Hoomga Jungle# +umbala.rsw#Wootan Tribe's Village, Umbala# +sec_in01.rsw#Inside Valhalla# +sec_in02.rsw#Inside Valhalla# +sec_pri.rsw#Room of Meditation (Valhalla Prison)# +gon_test.rsw#Gonryun Fighting Ground# +gon_dun01.rsw#Temple of the Western Queen# +gon_dun02.rsw#Hermit's Checkerboard# +gon_dun03.rsw#The Peach Blossom Land# +gon_fild01.rsw#Gonryun Field# +gon_in.rsw#Inside Gonryun# +gonryun.rsw#Gonryun, the Hermit Land# +ama_test.rsw#Momotaro Experience Place# +ama_dun03.rsw#Amatsu Underground Shrine# +ama_dun02.rsw#Battle Field in the Underground Forest# +ama_dun01.rsw#Tatami Maze# +ama_fild01.rsw#Amatsu Field# +ama_in02.rsw#Inside Himezi Castle# +ama_in01.rsw#Inside Amatsu# +amatsu.rsw#Amatsu, the Land of Destiny# +alde_alche.rsw#Alchemist Realm# +yuno_in05.rsw#Power Plant of Ymir's Heart# +yuno_in04.rsw#Republic Library# +job_duncer.rsw#Comodo Theatre# +job_sage.rsw#Sage Realm# +job_cru.rsw#Crusader Realm# +job_monk.rsw#Saint Capitolina Abbey# +monk_test.rsw#Saint Capitolina Abbey# +in_rogue.rsw#Inside the Rogue Guild# +mag_dun02.rsw#Nogg Road F2# +mag_dun01.rsw#Nogg Road F1# +yuno_fild04.rsw#El Mes Plateau# +yuno_fild03.rsw#El Mes Plateau# +yuno_fild02.rsw#Kiel Hyre's Cottage# +yuno_fild01.rsw#Border Posts# +yuno_in03.rsw#Inside Yuno# +yuno_in02.rsw#Inside the Sage Castle# +yuno_in01.rsw#Inside Yuno# +yuno.rsw#Yuno, Capital of Schwartzvald Republic# +job_wiz.rsw#Wizard Realm# +job_prist.rsw#Priest Realm# +job_knt.rsw#Knight Realm# +job_hunte.rsw#Hunter Job Change Place# +gld_dun04.rsw#Britoniah Guild Dungeon# +gld_dun03.rsw#Valkyrie Guild Dungeon# +gld_dun02.rsw#Luina Guild Dungeon# +gld_dun01.rsw#Baldur Guild Dungeon# +payg_cas05.rsw#Bamboo Grove Hill Castle# +payg_cas04.rsw#Sacred Altar Castle# +payg_cas03.rsw#Holy Shadow Castle# +payg_cas02.rsw#Scarlet Palace Castle# +payg_cas01.rsw#Bright Arbor Castle# +pay_gld.rsw#Greenwood Lake# +aldeg_cas05.rsw#Rothenburg Castle# +aldeg_cas04.rsw#Wuerzburg Castle# +aldeg_cas03.rsw#Nuernberg Castle# +aldeg_cas02.rsw#Hohenschwangau Castle# +aldeg_cas01.rsw#Neuschwanstein Castle# +alde_gld.rsw#Luina, the satellite of Aldebaran# +gefg_cas05.rsw#Mersetzdeitz Castle# +gefg_cas04.rsw#Bergel Castle# +gefg_cas03.rsw#Yesnelph Castle# +gefg_cas02.rsw#Eeyorbriggar Castle# +gefg_cas01.rsw#Repherion Castle# +prtg_cas05.rsw#Gondul Castle# +prtg_cas04.rsw#Skoegul Castle# +prtg_cas03.rsw#Fadhgridh Castle# +prtg_cas02.rsw#Swanhild Castle# +prtg_cas01.rsw#Kriemhild Castle# +prt_gld.rsw#Valkyrie Realm# +tur_dun01.rsw#Turtle Island# +tur_dun02.rsw#Turtle Island Dungeon# +tur_dun03.rsw#Turtle Village# +tur_dun04.rsw#Turtle Palace# +tur_dun05.rsw#Underground swamp zone# +tur_dun06.rsw#Underground swamp zone# +guild_vs5.rsw#Guild Arena# +guild_vs4.rsw#Guild Arena# +guild_vs3.rsw#Guild Arena# +guild_vs2.rsw#Guild Arena# +guild_vs1.rsw#Guild Arena# +guild_room.rsw#Guild Arena Waiting Room# +quiz_00.rsw#Quiz Revolution# +quiz_01.rsw#Quiz Revolution# +gef_fild12.rsw#Kordt Forest# +gef_fild13.rsw#Britoniah# +gef_fild14.rsw#West Orc Village# +cmd_in02.rsw#Inside Comodo# +cmd_in01.rsw#Inside Comodo# +comodo.rsw#Comodo, the Beach Town# +beach_dun.rsw#Karu, the West Cave# +beach_dun2.rsw#Luanda, the North Cave# +beach_dun3.rsw#Mao, the East Cave# +cmd_fild01.rsw#Papuchicha Forest# +cmd_fild02.rsw#Kokomo Beach# +cmd_fild03.rsw#Zenhai Marsh# +cmd_fild04.rsw#Kokomo Beach# +cmd_fild05.rsw#Border of Papuchica Forest# +cmd_fild06.rsw#Fortress Saint Darmain (West)# +cmd_fild07.rsw#Beacon Island, Pharos# +cmd_fild08.rsw#Fortress Saint Darmain (East)# +cmd_fild09.rsw#Fortress Saint Darmain (South)# +xmas_in.rsw#Inside Lutie# +xmas_dun02.rsw#Toy Monitoring Room# +xmas_dun01.rsw#Toy Factory Warehouse# +xmas_fild01.rsw#Lutie Field# +xmas.rsw#Lutie, the Snow Village# +mjolnir_01.rsw#Mt.Mjolnir North Area# +mjolnir_02.rsw#Mt.Mjolnir North Area# +mjolnir_03.rsw#Mt.Mjolnir North Area# +mjolnir_04.rsw#Mt.Mjolnir North Area# +mjolnir_05.rsw#Mt.Mjolnir North Area# +mjolnir_06.rsw#Mt.Mjolnir South Area# +mjolnir_07.rsw#Mt.Mjolnir South Area# +mjolnir_08.rsw#Mt.Mjolnir South Area# +mjolnir_09.rsw#Mt.Mjolnir South Foothills# +mjolnir_10.rsw#Mt.Mjolnir South Area# +mjolnir_11.rsw#Mt.Mjolnir South Area# +mjolnir_12.rsw#Mt.Mjolnir North Foothills# +prt_fild00.rsw#Prontera Field F0# +prt_fild01.rsw#Prontera Field F1# +prt_fild02.rsw#Prontera Field F2# +prt_fild03.rsw#Prontera Field F3# +prt_fild04.rsw#Prontera Field F4# +prt_fild05.rsw#Prontera Field F5# +prt_fild06.rsw#Prontera Field F6# +prt_fild07.rsw#Prontera Field F7# +prt_fild08.rsw#Prontera Field F8# +prt_fild09.rsw#Prontera Field F9# +prt_fild10.rsw#Prontera Field F10# +prt_fild11.rsw#Prontera Field F11# +prt_monk.rsw#St. Capitolina Abbey# +gef_fild00.rsw#Geffen Field F0# +gef_fild01.rsw#Geffen Field F1# +gef_fild02.rsw#Geffen Field F2# +gef_fild03.rsw#Geffen Field F3# +gef_fild04.rsw#Geffen Field F4# +gef_fild05.rsw#Geffen Field F5# +gef_fild06.rsw#Geffen Field F6# +gef_fild07.rsw#Geffen Field F7# +gef_fild08.rsw#Geffen Field F8# +gef_fild09.rsw#Geffen Field F9# +gef_fild10.rsw#Geffen Field F10# +gef_fild11.rsw#Geffen Field F11# +in_orcs01.rsw#Inside Orc Village# +moc_fild01.rsw#Sograt Desert F1# +moc_fild02.rsw#Sograt Desert F2# +moc_fild03.rsw#Sograt Desert F3# +moc_fild04.rsw#Sograt Desert F4# +moc_fild05.rsw#Sograt Desert F5# +moc_fild06.rsw#Sograt Desert F6# +moc_fild07.rsw#Sograt Desert F7# +moc_fild08.rsw#Sograt Desert F8# +moc_fild09.rsw#Sograt Desert F9# +moc_fild10.rsw#Sograt Desert F10# +moc_fild11.rsw#Sograt Desert F11# +moc_fild12.rsw#Sograt Desert F12# +moc_fild13.rsw#Sograt Desert F13# +moc_fild14.rsw#Sograt Desert F14# +moc_fild15.rsw#Sograt Desert F15# +moc_fild16.rsw#Sograt Desert F16# +moc_fild17.rsw#Sograt Desert F17# +moc_fild18.rsw#Sograt Desert F18# +moc_fild19.rsw#Sograt Desert F19# +in_moc_16.rsw#Assassin Clan# +pay_fild01.rsw#Payon Forest F1# +pay_fild02.rsw#Payon Forest F2# +pay_fild03.rsw#Payon Forest F3# +pay_fild04.rsw#Payon Forest F4# +pay_fild05.rsw#Payon Forest F5# +pay_fild06.rsw#Payon Forest F6# +pay_fild07.rsw#Payon Forest F7# +pay_fild08.rsw#Payon Forest F8# +pay_fild09.rsw#Payon Forest F9# +pay_fild10.rsw#Payon Forest F10# +pay_fild11.rsw#Payon Forest F11# +new_1-1.rsw#Training Ground# +new_2-1.rsw#Training Ground# +new_3-1.rsw#Training Ground# +new_4-1.rsw#Training Ground# +new_5-1.rsw#Training Ground# +new_1-2.rsw#Training Ground# +new_2-2.rsw#Training Ground# +new_3-2.rsw#Training Ground# +new_4-2.rsw#Training Ground# +new_5-2.rsw#Training Ground# +new_1-3.rsw#Training Ground# +new_2-3.rsw#Training Ground# +new_3-3.rsw#Training Ground# +new_4-3.rsw#Training Ground# +new_5-3.rsw#Training Ground# +new_1-4.rsw#Training Ground# +new_2-4.rsw#Training Ground# +new_3-4.rsw#Training Ground# +new_4-4.rsw#Training Ground# +new_5-4.rsw#Training Ground# +anthell01.rsw#Ant Hell F1# +anthell02.rsw#Ant Hell F2# +gef_dun00.rsw#Geffen Dungeon B1# +gef_dun01.rsw#Geffen Dungeon B2# +gef_dun02.rsw#Geffen Dungeon B3# +gef_dun03.rsw#Geffenia Dungeon# +iz_dun00.rsw#Undersea Tunnel B1# +iz_dun01.rsw#Undersea Tunnel B2# +iz_dun02.rsw#Undersea Tunnel B3# +iz_dun03.rsw#Undersea Tunnel B4# +iz_dun04.rsw#Undersea Tunnel B5# +iz_dun05.rsw#Undersea Tunnel B6# +in_sphinx1.rsw#Morocc Sphinx B1# +in_sphinx2.rsw#Morocc Sphinx B2# +in_sphinx3.rsw#Morocc Sphinx B3# +in_sphinx4.rsw#Morocc Sphinx B4# +in_sphinx5.rsw#Morocc Sphinx B5# +moc_pryd01.rsw#Inside Pyramid F1# +moc_pryd02.rsw#Inside Pyramid F2# +moc_pryd03.rsw#Inside Pyramid F3# +moc_pryd04.rsw#Inside Pyramid F4# +moc_pryd05.rsw#Inside Pyramid B1# +moc_pryd06.rsw#Inside Pyramid B2# +moc_prydb1.rsw#Thief Guild# +mjo_dun01.rsw#Mjolnir Dead Pit F1# +mjo_dun02.rsw#Mjolnir Dead Pit F2# +mjo_dun03.rsw#Mjolnir Dead Pit F3# +orcsdun01.rsw#Orc Dungeon F1# +orcsdun02.rsw#Orc Dungeon F2# +pay_dun00.rsw#Payon Cave F1# +pay_dun01.rsw#Payon Cave F2# +pay_dun02.rsw#Payon Cave F3# +pay_dun03.rsw#Payon Cave F4# +pay_dun04.rsw#Payon Cave F5# +prt_maze01.rsw#Labyrinth Forest F1# +prt_maze02.rsw#Labyrinth Forest F2# +prt_maze03.rsw#Labyrinth Forest F3# +prt_sewb1.rsw#Prontera Culvert F1# +prt_sewb2.rsw#Prontera Culvert F2# +prt_sewb3.rsw#Prontera Culvert F3# +prt_sewb4.rsw#Prontera Culvert F4# +treasure01.rsw#Sunken Ship B1# +treasure02.rsw#Sunken Ship B2# +hunter_1-1.rsw#Hunter Guild# +hunter_2-1.rsw#Hunter Guild# +hunter_3-1.rsw#Hunter Guild# +in_hunter.rsw#Hunter Guild# +knight_1-1.rsw#The Chivalry# +knight_2-1.rsw#The Chivalry# +knight_3-1.rsw#The Chivalry# +priest_1-1.rsw#The Sanctum# +priest_2-1.rsw#The Sanctum# +priest_3-1.rsw#The Sanctum# +sword_1-1.rsw#Swordman Test Hall# +sword_2-1.rsw#Swordman Test Hall# +sword_3-1.rsw#Swordman Test Hall# +job_thief1.rsw#Mushroom Farm# +wizard_1-1.rsw#Wizard Academy# +wizard_2-1.rsw#Wizard Academy# +wizard_3-1.rsw#Wizard Academy# +force_1-1.rsw#Time Limit Fight# +force_2-1.rsw#Time Limit Fight# +force_3-1.rsw#Time Limit Fight# +force_1-2.rsw#Time Limit Fight# +force_2-2.rsw#Time Limit Fight# +force_3-2.rsw#Time Limit Fight# +force_1-3.rsw#Time Limit Fight# +force_2-3.rsw#Time Limit Fight# +force_3-3.rsw#Time Limit Fight# +ordeal_1-1.rsw#Battle Ordeal Mode# +ordeal_2-1.rsw#Battle Ordeal Mode# +ordeal_3-1.rsw#Battle Ordeal Mode# +ordeal_1-2.rsw#Battle Ordeal Mode# +ordeal_2-2.rsw#Battle Ordeal Mode# +ordeal_3-2.rsw#Battle Ordeal Mode# +ordeal_1-3.rsw#Battle Ordeal Mode# +ordeal_2-3.rsw#Battle Ordeal Mode# +ordeal_3-3.rsw#Battle Ordeal Mode# +ordeal_1-4.rsw#Battle Ordeal Mode# +ordeal_2-4.rsw#Battle Ordeal Mode# +ordeal_3-4.rsw#Battle Ordeal Mode# +alb_ship.rsw#Alberta Ship# +alberta.rsw#Alberta# +alberta_in.rsw#Inside Alberta# +alb2trea.rsw#Alberta Island# +aldebaran.rsw#Border City Aldebaran# +aldeba_in.rsw#Inside Aldebaran# +gef_tower.rsw#Geffen Tower# +geffen.rsw#Geffen, the Magic City# +geffen_in.rsw#Inside Geffen# +moc_castle.rsw#Morocc Castle# +moc_ruins.rsw#Morocc Ruins# +morocc.rsw#Morocc Town# +morocc_in.rsw#Inside Morocc# +pay_arche.rsw#Archer Village# +payon.rsw#Payon Town# +payon_in01.rsw#Inside Payon# +payon_in02.rsw#Inside Payon# +payon_in03.rsw#Inside Payon# +prontera.rsw#Prontera, Capital of Rune Midgard# +prt_in.rsw#Inside Prontera# +prt_castle.rsw#Prontera Castle# +prt_church.rsw#The Sanctuary# +izlude.rsw#Izlude, the Satellite City# +izlude_in.rsw#Inside Izlude# +izlu2dun.rsw#Byalan Island# +monk_in.rsw#Inside St. Abbey# +prt_are_in.rsw#Waiting room# +arena_room.rsw#Waiting room# +prt_arena01.rsw#Arena# +prt_are01.rsw#Arena# +glast_01.rsw#Glastheim# +alde_dun01.rsw#Clock Tower B1# +alde_dun02.rsw#Clock Tower B2# +alde_dun03.rsw#Clock Tower B3# +alde_dun04.rsw#Clock Tower B4# +c_tower1.rsw#Clock Tower F1# +c_tower2.rsw#Clock Tower F2# +c_tower3.rsw#Clock Tower F3# +c_tower4.rsw#Clock Tower F4# +gl_cas01.rsw#Glastheim F1# +gl_cas02.rsw#Glastheim F2# +gl_church.rsw#Glastheim Monastery# +gl_chyard.rsw#Glastheim Underground Churchyard# +gl_dun01.rsw#The Lowest Cave in Glastheim B1# +gl_dun02.rsw#The Lowest Cave in Glastheim B2# +gl_in01.rsw#Inside Glastheim# +gl_knt01.rsw#Inside Glastheim Chivalry F1# +gl_knt02.rsw#Inside Glastheim Chivalry F2# +gl_prison.rsw#Glastheim Underground Prison B1# +gl_prison1.rsw#Glastheim Underground Prison B2# +gl_sew01.rsw#Glastheim Underground Waterway B1# +gl_sew02.rsw#Glastheim Underground Waterway B2# +gl_sew03.rsw#Glastheim Underground Waterway B3# +gl_sew04.rsw#Glastheim Underground Waterway B4# +gl_step.rsw#Glastheim Staircase Dungeon# + +// Maps officially not in the name table. +que_job02.rsw#Job Quest 2# +que_job03.rsw#Job Quest 3# +ordeal_a00.rsw#Battle Ordeal Mode# +ordeal_a02.rsw#Battle Ordeal Mode# +force_map1.rsw#Time Limit Fight# +force_map2.rsw#Time Limit Fight# +force_map3.rsw#Time Limit Fight# +job_hunter.rsw#Hunter Guild# +job_knight.rsw#The Chivalry# +job_priest.rsw#The Sanctum# +job_sword1.rsw#Swordman Test Hall# +job_wizard.rsw#Wizard Academy# +pvp_room.rsw#PvP : Waiting Room# +que_sign02.rsw#Valley of Gyoll# +g_room1-1.rsw#Quiz Revolution# +g_room1-2.rsw#Quiz Revolution# +g_room1-3.rsw#Quiz Revolution# +g_room2.rsw#Quiz Revolution# +guild_vs1-1.rsw#Guild Arena# +guild_vs1-2.rsw#Guild Arena# +guild_vs1-3.rsw#Guild Arena# +guild_vs1-4.rsw#Guild Arena# +guild_vs2-1.rsw#Guild Arena# +guild_vs2-2.rsw#Guild Arena# +new_zone01.rsw#Training Ground# +new_zone02.rsw#Training Ground# +new_zone03.rsw#Training Ground# +new_zone04.rsw#Training Ground# +que_ng.rsw#Ninja - Gunslinger map# +que_san04.rsw#Inside Freya's Temple# +que_ba.rsw#Unknown# + +// Christmas & Sakura Special. +prontera_x.rsw#Prontera City, Capital of Rune Midgard# +alberta_x.rsw#Alberta# +aldebaran_x.rsw#Aldebaran# +geffen_x.rsw#Geffen# +izlude_x.rsw#Izlude Town# +prt_church_x.rsw#The Sanctuary# +prontera_s.rsw#Prontera City, Capital of Rune Midgard# +pay_arche_s.rsw#Archer Village# + +// Ragnarok World Championship 2004. +rwc01.rsw#Ragnarok World Championship Arena 1# +rwc02.rsw#Ragnarok World Championship Arena 2# +rwc03.rsw#Ragnarok World Championship Arena 3# + +// Ragnarok World Championship 2007. +2007rwc_r.rsw#2007 Ragnarok World Championship Arena Waiting Room# +2007rwc_01.rsw#2007 Ragnarok World Championship Arena 1# +2007rwc_02.rsw#2007 Ragnarok World Championship Arena 2# +2007rwc_03.rsw#2007 Ragnarok World Championship Arena 3# +2007rwc_04.rsw#2007 Ragnarok World Championship Arena 4# +2007rwc_05.rsw#2007 Ragnarok World Championship Arena 5# +2007rwc_06.rsw#2007 Ragnarok World Championship Arena 6# +2007rwc_07.rsw#2007 Ragnarok World Championship Arena 7# +2007rwc_08.rsw#2007 Ragnarok World Championship Arena 8# +2007rwc_09.rsw#2007 Ragnarok World Championship Arena 9# +2007rwc_10.rsw#2007 Ragnarok World Championship Arena 10# +izlude07.rsw#Izlude Town# +guild_rwc1.rsw#Training Room# +guild_rwc2.rsw#Training Room# +guild_rwc3.rsw#Training Room# +guild_rwc4.rsw#Training Room# +guild_rwc5.rsw#Training Room# + +// Alpha Maps. +fay_vilg00.rsw#Payon Village# +fay_vilg01.rsw#Payon Village# +gef_vilg00.rsw#Geffen Village# +gef_vilg01.rsw#Geffen Village# +moc_dugn01.rsw#Morocc Dungeon# +moc_dugn02.rsw#Morocc Dungeon# +moc_fild01.rsw#Morocc Field# +moc_fild02.rsw#Morocc Field# +moc_fild03.rsw#Morocc Field# +moc_fild04.rsw#Morocc Field# +moc_intr00.rsw#Inside Morocc# +moc_intr01.rsw#Inside Morocc# +moc_intr02.rsw#Inside Morocc# +moc_intr04.rsw#Inside Morocc# +moc_vilg00.rsw#Morocc Village# +moc_vilg01.rsw#Morocc Village# +moc_vilg02.rsw#Morocc Village# +probemap.rsw#Probe Map 1# +probemap02.rsw#Probe Map 2# +prt_cstl01.rsw#Prontera Castle# +prt_dugn00.rsw#Prontera Dungeon# +prt_dugn01.rsw#Prontera Dungeon# +prt_fild00.rsw#Prontera Field# +prt_fild01.rsw#Prontera Field# +prt_fild03.rsw#Prontera Field# +prt_fild04.rsw#Prontera Field# +prt_fild05.rsw#Prontera Field# +prt_intr01.rsw#Inside Prontera# +prt_intr01_a.rsw#Inside Prontera# +prt_intr02.rsw#Inside Prontera# +prt_vilg00.rsw#Prontera Village# +prt_vilg01.rsw#Prontera Village# +prt_vilg02.rsw#Prontera Village# +tank_test.rsw#Tank Test 1# +tank_test2.rsw#Tank Test 2# +test.rsw#Test Map# + +// Other official maps. +oldpayon.rsw#Old Payon# +oldpay_in01.rsw#Inside Old Payon# +oldpay_in02.rsw#Inside Old Payon# +xmas_x.rsw#Lutie, the Snow Village# +alberta_d.gat#Alberta# + +// Chinese event maps. +holy_gold.rsw#Gold Sanctuary# +holy_silver.rsw#Silver Sanctuary# +darkness_z.rsw#Darkness Island# +baby_para.rsw#Playground# +dragon_nest.rsw#Evil Dragon Nest# +dragon_nes2.rsw#Evil Dragon Nest# +que_new01.rsw#New Year Day Place# +que_new02.rsw#New Year Day Place# + +// Japanese Event & Ragnarok Japanese Championship maps. +jp_stage_a.rsw#Stage A# +jp_castle.rsw#Halloween Castle# +jp_ruins.rsw#Sandy Beach of Ruins# +jp_magic.rsw#House of Magical# +jp_stage_b.rsw#Stage B# +jp_dress_a.rsw#Back Stage A# +jp_dress_b.rsw#Back Stage B# +anothership.rsw#Another Ship# +jp_event02.rsw#Japanese Event 2# +jp_event03.rsw#Japanese Event 3# +jp_event04.rsw#Japanese Event 4# +jp_event05.rsw#Japanese Event 5# +jp_event06.rsw#Japanese Event 6# +pvp_2vs2b.rsw#PvP : Event Coliseum# +pvp_2vs2c.rsw#PvP : Event Coliseum# +room_00.rsw#Room 0# +room_01.rsw#Room 1# +room_02.rsw#Room 2# +moonlight_a.rsw#Moonlight A# +guild_vs2pa.rsw#Prontera Room A# +guild_vs2pb.rsw#Prontera Room B# +guild_vs2pc.rsw#Prontera Room C# +guild_vs2ia.rsw#Izlude Room A# +guild_vs2ib.rsw#Izlude Room B# +guild_vs2ic.rsw#Izlude Room C# +guild_vs2ga.rsw#Geffen Room A# +guild_vs2gb.rsw#Geffen Room B# +guild_vs2gc.rsw#Geffen Room C# +guild_vs2ma.rsw#Morocc Room A# +guild_vs2mb.rsw#Morocc Room B# +guild_vs2mc.rsw#Morocc Room C# +tower_a0.rsw#Tower A0# +tower_a1.rsw#Tower A1# +tower_a2.rsw#Tower A2# +tower_a3.rsw#Tower A3# +tower_a4.rsw#Tower A4# +tower_a5.rsw#Tower A5# +tower_a6.rsw#Tower A6# +tower_a7.rsw#Tower A7# +tower_a8.rsw#Tower A8# +tower_a9.rsw#Tower A9# +tower_a10.rsw#Tower A10# +tower_a11.rsw#Tower A11# +tower_a12.rsw#Tower A12# +tower_b0.rsw#Tower B0# +tower_b1.rsw#Tower B1# +tower_b2.rsw#Tower B2# +tower_b3.rsw#Tower B3# +tower_b4.rsw#Tower B4# +tower_b5.rsw#Tower B5# +tower_b6.rsw#Tower B6# +tower_b7.rsw#Tower B7# +tower_b8.rsw#Tower B8# +tower_b9.rsw#Tower B9# +tower_b10.rsw#Tower B10# +tower_b11.rsw#Tower B11# +tower_b12.rsw#Tower B12# +tower_c0.rsw#Tower C0# +tower_c1.rsw#Tower C1# +tower_c2.rsw#Tower C2# +tower_c3.rsw#Tower C3# +tower_c4.rsw#Tower C4# +tower_c5.rsw#Tower C5# +tower_c6.rsw#Tower C6# +tower_c7.rsw#Tower C7# +tower_c8.rsw#Tower C8# +tower_c9.rsw#Tower C9# +tower_c10.rsw#Tower C10# +tower_c11.rsw#Tower C11# +tower_c12.rsw#Tower C12# +tower_d0.rsw#Tower D0# +tower_d1.rsw#Tower D1# +tower_d2.rsw#Tower D2# +tower_d3.rsw#Tower D3# +tower_d4.rsw#Tower D4# +tower_d5.rsw#Tower D5# +tower_d6.rsw#Tower D6# +tower_d7.rsw#Tower D7# +tower_d8.rsw#Tower D8# +tower_d9.rsw#Tower D9# +tower_d10.rsw#Tower D10# +tower_d11.rsw#Tower D11# +tower_d12.rsw#Tower D12# + +// Taiwanese event maps. +que_moon.rsw#Moon Palace# +que_moc_16.rsw#Moon Palace, Mob Area# + +// Thailand event maps. +ein_polu.rsw#Indoor# +poring_c01.rsw#Poring Waiting Room# +poring_c02.rsw#Poring Market# + +// France event map. +gl_in01_ev.rsw#Event Crazy Drops# + +// Halloween 2008 +evt_zombie.rsw#Run from Zombies# + +arcadanias.rsw#Arcadanias, Satellite World# + +pvp_y_room.rsw#PvP : Waiting Room# +pvp_n_room.rsw#PvP : Waiting Room# +pvp_c_room.rsw#PvP : Waiting Room# +pvp_n_1-1.rsw#PvP : Room Sandwich# +pvp_n_2-1.rsw#PvP : Room Sandwich# +pvp_n_3-1.rsw#PvP : Room Sandwich# +pvp_n_4-1.rsw#PvP : Room Sandwich# +pvp_n_5-1.rsw#PvP : Room Sandwich# +pvp_n_6-1.rsw#PvP : Room Sandwich# +pvp_n_7-1.rsw#PvP : Room Sandwich# +pvp_n_8-1.rsw#PvP : Room Sandwich# +pvp_n_1-2.rsw#PvP : Room Rock On# +pvp_n_2-2.rsw#PvP : Room Rock On# +pvp_n_3-2.rsw#PvP : Room Rock On# +pvp_n_4-2.rsw#PvP : Room Rock On# +pvp_n_5-2.rsw#PvP : Room Rock On# +pvp_n_6-2.rsw#PvP : Room Rock On# +pvp_n_7-2.rsw#PvP : Room Rock On# +pvp_n_8-2.rsw#PvP : Room Rock On# +pvp_n_1-3.rsw#PvP : Four Room# +pvp_n_2-3.rsw#PvP : Four Room# +pvp_n_3-3.rsw#PvP : Four Room# +pvp_n_4-3.rsw#PvP : Four Room# +pvp_n_5-3.rsw#PvP : Four Room# +pvp_n_6-3.rsw#PvP : Four Room# +pvp_n_7-3.rsw#PvP : Four Room# +pvp_n_8-3.rsw#PvP : Four Room# +pvp_n_1-4.rsw#PvP : Room Undercross# +pvp_n_2-4.rsw#PvP : Room Undercross# +pvp_n_3-4.rsw#PvP : Room Undercross# +pvp_n_4-4.rsw#PvP : Room Undercross# +pvp_n_5-4.rsw#PvP : Room Undercross# +pvp_n_6-4.rsw#PvP : Room Undercross# +pvp_n_7-4.rsw#PvP : Room Undercross# +pvp_n_8-4.rsw#PvP : Room Undercross# +pvp_n_1-5.rsw#PvP : Room Copass# +pvp_n_2-5.rsw#PvP : Room Copass# +pvp_n_3-5.rsw#PvP : Room Copass# +pvp_n_4-5.rsw#PvP : Room Copass# +pvp_n_5-5.rsw#PvP : Room Copass# +pvp_n_6-5.rsw#PvP : Room Copass# +pvp_n_7-5.rsw#PvP : Room Copass# +pvp_n_8-5.rsw#PvP : Room Copass# +pvp_y_1-1.rsw#PvP : Room Prontera# +pvp_y_2-1.rsw#PvP : Room Prontera# +pvp_y_3-1.rsw#PvP : Room Prontera# +pvp_y_4-1.rsw#PvP : Room Prontera# +pvp_y_5-1.rsw#PvP : Room Prontera# +pvp_y_6-1.rsw#PvP : Room Prontera# +pvp_y_7-1.rsw#PvP : Room Prontera# +pvp_y_8-1.rsw#PvP : Room Prontera# +pvp_y_1-2.rsw#PvP : Room Izlude# +pvp_y_2-2.rsw#PvP : Room Izlude# +pvp_y_3-2.rsw#PvP : Room Izlude# +pvp_y_4-2.rsw#PvP : Room Izlude# +pvp_y_5-2.rsw#PvP : Room Izlude# +pvp_y_6-2.rsw#PvP : Room Izlude# +pvp_y_7-2.rsw#PvP : Room Izlude# +pvp_y_8-2.rsw#PvP : Room Izlude# +pvp_y_1-3.rsw#PvP : Room Payon# +pvp_y_2-3.rsw#PvP : Room Payon# +pvp_y_3-3.rsw#PvP : Room Payon# +pvp_y_4-3.rsw#PvP : Room Payon# +pvp_y_5-3.rsw#PvP : Room Payon# +pvp_y_6-3.rsw#PvP : Room Payon# +pvp_y_7-3.rsw#PvP : Room Payon# +pvp_y_8-3.rsw#PvP : Room Payon# +pvp_y_1-4.rsw#PvP : Room Alberta# +pvp_y_2-4.rsw#PvP : Room Alberta# +pvp_y_3-4.rsw#PvP : Room Alberta# +pvp_y_4-4.rsw#PvP : Room Alberta# +pvp_y_5-4.rsw#PvP : Room Alberta# +pvp_y_6-4.rsw#PvP : Room Alberta# +pvp_y_7-4.rsw#PvP : Room Alberta# +pvp_y_8-4.rsw#PvP : Room Alberta# +pvp_y_1-5.rsw#PvP : Room Morocc# +pvp_y_2-5.rsw#PvP : Room Morocc# +pvp_y_3-5.rsw#PvP : Room Morocc# +pvp_y_4-5.rsw#PvP : Room Morocc# +pvp_y_5-5.rsw#PvP : Room Morocc# +pvp_y_6-5.rsw#PvP : Room Morocc# +pvp_y_7-5.rsw#PvP : Room Morocc# +pvp_y_8-5.rsw#PvP : Room Morocc# +pvp_2vs2.rsw#PvP : Event Coliseum# + +// Land Private House +h@alde.rsw#Private House# +h@cmd.rsw#Private House# +h@ein.rsw#Private House# +h@gef.rsw#Private House# +h@hu.rsw#Private House# +h@lhz.rsw#Private House# +h@lux.rsw#Private House# +h@lux2.rsw#Private House# +h@moc.rsw#Private House# +h@nif.rsw#Private House# +h@pay.rsw#Private House# +h@prt.rsw#Private House# +h@yuno.rsw#Private House# + +1@ch_tide.rsw#Tower of Tides# +1@lvpth.rsw#Path of Truth# +1@kiel.rsw#Kiel Robot Factory# +1@mosk.rsw#Moscovia Deep Forest# + +nova_sp.rsw#NOVA Space# + +1@dew_dun01.rsw#Volcanic Island of Krakatoa# +1@bra_dun02.rsw#Beyond the Waterfall# + +guildhall.rsw#Guildhall# +boss_guild.rsw#BossGuild# + +bp_fimdme.rsw#Battle Pass# +bp_he.rsw#Battle Pass# + +cmd_in_b01.rsw#Inside Comodo# + +iz_dun05_no.rsw#UnderWater# +iz_dun05_pk.rsw#UnderWater# + +kol_01.rsw#King of Landverse# +kol_02.rsw#King of Landverse# + +bp_lucky.rsw#Battle Pass# + +fow_nopk.rsw#Feast Of Winterworld# +fow_pk.rsw#Feast Of Winterworld# + +nyb.rsw#New Year Blessing# + +evilnian.rsw#Lunar New Year# + +land_prt#land prontera# +land_moc#land morocc# +land_izlude#land izlude# + +// Forest Valley +fv_nopk.rsw#Forest Valley# +fv_pk.rsw#Forest Valley# + +xmas@chess.rsw#Christmas Dungeon# \ No newline at end of file diff --git a/tables/laRO/msgstringtable.txt b/tables/laRO/msgstringtable.txt new file mode 100644 index 0000000000..1f79bb99b3 --- /dev/null +++ b/tables/laRO/msgstringtable.txt @@ -0,0 +1,4023 @@ +Do you agree?# +Failed to Connect to Server.# +Disconnected from Server.# +Disconnected from Server!# +Server Closed.# +Someone has Logged in with this ID.# +Unregistered ID. Please make sure you have a registered account and you have correctly typed in the user ID.# +Incorrect User ID or Password. Please try again.# +This ID is expired.# +Rejected from Server.# +Character Name already exists.# +Character Creation is denied.# +Character Deletion is denied.# +Please Enter Room Title.# +Foul Language Detected.# +Please enter Password.# +Please enter Password. Passwords must be at least 4 characters long.# +Are you sure that you want to quit?# +Passwords are at least 4 characters long. Please try again.# +Are you sure that you want to delete this character?# +Foul Language Detected.# +Character Name must be at least 4 characters long.# +Command List: /h | /help# +Effects On# +Effects Off# +Sound Volume# +BGM Volume# +Sound Effects On# +Sound Effects Off# +Frame Skip On# +Frame Skip Off# +BGM On# +BGM Off# +/h or /help: Shows this Command Help List# +/w or /who or /player or /who : wiew current the number of player# +/music: Turns BGM On or Off# +/sound: Turns Sound Effects On or Off# +/effect: Effects On or Off# +/where: Shows your present location# +/skip: Turns Frame Skip On or Off# +/v (0~127): Controls the volume of the Sound Effects# +/bv (0~127): Controls the volume of the BGM# +/ex (Character Name): Blocks whispering from the Character# +/ex: View a list of Characters you have Blocked# +/in (Character Name): Allows whispering from the Character# +/inall: Allows whispers from anyone# +/exall: Blocks whispers from everyone# +Right click on a character and select [Register as a Friend] to add a person to your Friend List.# +F12 Brings up a Hotkey Window which allows you to drag and drop Recovery Items, Equipment and Skills into it for faster access.# +You can't type the same word/phrase more than 3 times.# +Chat Filter: Yeah, uh, I don't think so buddy...# +You cannot overlap items on a window.# +You cannot carry more items because you are overweight.# +You cannot get the item.# +The deal has successfully completed.# +You do not have enough zeny.# +You are over your Weight Limit.# +The deal has failed.# +You've blocked whispers from everyone.# +You've failed to block all whispers.# +You've allowed whispers from everyone.# +You've failed to allow all whispers.# +You have no Block List.# +[ Character Block List ]# +Room has been successfully created.# +Room Limit Exceeded.# +Same Room exists.# +The Room is full.# +You have been kicked out of this room.# +The deal has been rejected.# +You are too far away from the person to trade.# +The Character is not currently online or does not exist.# +The person is in another deal.# +You cannot trade because this character will exceed his weight limit.# +The deal has been canceled.# +The deal has successfully completed.# +The deal has failed.# +Party has successfully been organized.# +That Party Name already exists.# +The Character is already in a party.# +The Character already joined another party.# +Request for party rejected.# +Request for party accepted.# +Party Capacity exceeded.# +You left the party.# +Send to All# +Send to Party# +Request a deal with %s# +Ask %s to join your party# +Pri:# +Pub:# +Click ''Restart'' to go back to your save point or click ''Exit'' to select another character.# +Please select a Deal Type.# + requests a deal.# + Party has sent you an invitation. Would you like to join?# +Invalid Command# +Leave party# +Expel from party# +Send Message# +1:1 Chat# +Information# +Party Setup# +Friend# +Party# +Equip# +Status# +Inventory# +/organize ''Party Name'' To organize a party. Type /leave To leave a Party.# +If you are the party master, you can invite someone into your party by right-clicking on a Character.# +Consumables# +Attack# +Support# +Entire# +Weapons# +Defense# +Water# +Earth# +Fire# +Wind# +Please avoid buying 2 of the same items at one time.# +Please change your desktop Color Depth to 16-bit when running Ragnarok in windowed mode.# +Please wait...# +Please wait...# +Please wait...# +Please wait...# +Create Chat Room# +Room Setup# +Kick Character Out# +Give Master Authority# +View Information# +Chat Room# +Ppl# +/sit: Sit command. If you are sitting, you will stand instead.# +/stand: Stand command. If you are standing, you will sit instead.# +/chat: Creates a Chat Room# +/q: Leaves a Chat Room# +/deal ''Character Name'' Requests a deal with a character# +/organize ''Party Name'' Organizes a party# +/leave: Leaves a party# +/expel ''Character Name'' kicks a Character out of your party# +[Alt] + [End]: Turns HP/SP Bar On or Off# +[Alt] + [Home]: Turns Ground Cursor On or Off# +[Insert]: Makes you sit or stand. (Hotkey to toggle between /sit and /stand)# +Congratulations! You are the MVP! Your reward item is # +!!# +Congratulations! You are the MVP! Your reward EXP Points are # +!!# +You are the MVP, but you can't take the reward because you are over your weight limit.# +There is no such character name or the user is offline.# + doesn't want to receive your messages.# + is not in the mood to talk with anyone.# +Killed/Disconnected User.# +Kill has failed.# +You got %s (%d).# +[Alt] + [=]: Fix the interval error between letters.# +[F10]: To toggle Chat Window size; [Alt] + [F10]: Toggle Chat Window On or Off# +How to Whisper: Enter a Character's Name on the left side of chat window and type your message on the right side. The Tab key helps you move between these boxes.# +/!,/?,/ho,/lv,/lv2,/swt,/ic,/an,/ag,/$,/??,/thx,/wah,/sry,/heh,/swt2,/hmm,/no1,/??,/omg,/oh,/X,/hp,/go,/sob,/gg,/kis,/kis2,/pif,/ok: Emotion icons corresponding to Alt + (1~9) Ctrl + (-=\\)# +How to Speak to Party: Add '%' in front of every message.(Example: \%Hello\)# +You haven't learned enough Basic Skills to Trade.# +You haven't learned enough Basic Skills to use Emotion icons.# +You haven't learned enough Basic Skills to Sit.# +You haven't learned enough Basic Skills to create a chat room.# +You haven't learned enough Basic Skills to Party.# +You haven't learned enough skills to Shout.# +You haven't learned enough skills for Pking.# +Buying Items# +Item Shop# +Selling Items# +Storage# + is put on.# + is taken off.# +To add names on the Whispering List# +How to Take Screen Shots: Press [Print Screen] or [Scroll Lock]# +Tip of the Day# +^3850a0Did you know...?^709fed# +Display at startup# +/tip: Opens ''Tip of the Day''# +There are %d Players Currently Connected.# +(%s) has entered.# +(%s) has left.# +(%s) was kicked out.# +%d ea.# +%s: %d ea.# +%s %s: %d# +Available Items to sell# +Shop Items# +Random Area# +Your Client language doesn't match the Server language.# +Please move your equipment to the inventory. And close the equipment window.# +This server provides English Text Characters Only.# +This is not implemented yet.# +No Whisper List.# +: Whispering Blocked.# +: Whispering Block has failed.# +: Whispering Block has failed. Block List is full.# +: Whispering accepted.# +: Command has failed.# +: Command has failed. Block List is full.# +You cannot put a space at the beginning or end of a name.# +Private# +Public# +Insufficient SP# +Insufficient HP# +Skill has failed.# +Steal has failed.# +Trade# +Envenom skill has failed.# +You cannot use this ID on this server.# +Speed has increased.# +Speed has decreased.# +/memo: To memorize a place as Warp Point (If you are an Acolyte Class character)# +Random Area# +Select an Area to Warp# +Skill Level is not high enough# +There are no memorized locations (Memo Points).# +You haven't learned Warp skill.# +Current location is saved as a Memo Point for Warp Skill.# +Cancel# +There is a Delay after using a Skill.# +You can't have this item because you will exceed the weight limit.# +Out of the maximum capacity# +Cart Items# +Take off Cart# +Opening a stall# +Please Name your Shop.# +My Shop# +Merchant Shop# +Buying Items# +%s Purchase Failed %s# +Out of Stock# +%s %d sold.# +Available Items for Vending# +Skill has failed because you do not have enough zeny.# +Select a Target.# +/pk on: Turns PK On. /pk off: Turns PK Off.# +Shop# +Cart Items [Alt+W]# +Basic Information# +The skill cannot be used with this weapon.# +Buying %s has been failed. Out of Stock. Current Stock %d.# +You've been disconnected due to a time gap between you and the server.# +Please equip the proper ammunition first.# +You can't attack or use skills because you've exceeded the Weight Limit.# +You can't use skills because you've exceeded the Weight Limit.# +Ammunition has been equipped.# +Red Gemstone required.# +Blue Gemstone required.# +Strength# +Agility# +Vitality# +Intelligence# +Dexterity# +Luck# +Physical Attack# +Physical Defense# +Accuracy Rate# +Critical Attack Rate# +Assigned Guild# +Status Points to allocate# +Magical Attack# +Magical Defense# +Flee Rate# +Attack Speed# +Server is jammed due to over population. Please try again shortly.# +Option# +Account ID blocked by the Game Master Team.# +Incorrect User ID or Password. Please try again.# +Choose Hairstyle# +ATK# +DEF# +Attack Snap On# +Attack Snap Off# +Skill Snap On# +Skill Snap Off# +/snap: Turns snap On | Off for fights, /skillsnap: Turns snap On | Off for skills. /itemsnap: Turns snap On | Off for items on the grounds.# +Item Snap On# +Item Snap Off# +Snap# +You cannot carry more than 30,000 of one kind of item.# +You cannot delete a Character with a level greater than 30. If you want to delete the character please contact a Game Master.# +You cannot use an NPC shop while in a trade.# +Name# +Skill Tree# +Skill Point: %d# +Skill has failed.# +Passive# +Each Take # +Even Share# +Each Take# +Party Share# +Party Setup# +How to share EXP# +How to share Items# +Only the Party Leader can change this setting.# +Toggle Item Amount.# +Character will be deleted after ^ff0000%d^000000 seconds. Press Cancel to quit.# +You cannot trade more than 10 types of items per trade.# +You are not old enough to use this server.# +Please enter the deletion password.# +E-mail Address (Case Sensitive).# +Character Deletion has failed because you have entered an incorrect e-mail address.# +Enter your account password.# +The character was not deleted because the password was wrong.# +You can't sell more than 15 types of Items at one time.# +You are underaged and cannot join this server.# +HP and SP natural regeneration are disabled because your Weight is over 50% of the Weight Limit.# +Attacks and skills cannot be used when your Weight is over 90%.# +Your HP/SP are now being restored naturally.# +Attack and Skills are now available.# +Your Game's Exe File is not the latest version.# +Items are sold out.# +Save Chat as Text File# +/savechat: Save a Chat Log# +Register# +Reject Whispering# +Allow Whispering# +Shows ''Miss'' On# +Shows ''Miss'' Off# +Camera Zooming On# +Camera Zooming Off# +/camera: Camera Zooming On or Off. /miss: Toggle ''Miss'' display# +View Skill Info# +Change Skill# +Sprite Resolution# +Texture Resolution# +Arrange Detail# +%s Zeny obtained# +Guild Name# +Guild Level# +Guild Master# +Members# +Avg.lvl of Members# +Castles Owned# +Tendency# +EXP# +Emblem# +Tax Point# +Alliances# +Antagonists# +Guild Info# +Member# +Position# +Guild Skill# +Expel List# +Announcement# +Entire Guild List# +Whispering List# +Open Whispering Window# +How to Open Whispering List: Press [Alt] + [H]# +Automatically open Whispering List# +Delete# +Close since next# +Last Log-in Time# +Last Log-in IP# +Friend Setup# +Are you sure that you want to delete it?# +Are you sure that you want to leave?# +Register as a Friend# +Open 1:1 Chat between Friends# +Open 1:1 Chat# +Open 1:1 Chat between Strangers# +Alarm when recieve a 1:1 Chat# +Are you sure that you want to expel him/her?# +%s has left the guild.# +Withdrawal Reason: %s# +You have failed to disband the guild.# +Disband Reason: %s# +This account has been deleted.# +Price: # +%s has been expelled from the guild.# +Expulsion Reason: %s# +You can't put this item on.# +You can't modify Party Setup.# +Guild has been created.# +You are already in a Guild.# +That Guild Name already exists.# + Guild has sent you an invitation. Would you like to join this Guild?# +He/She is already in a Guild.# +You have refused the guild invitation.# +You have accepted the guild invitation.# +Your Guild is full.# +Send (%s) a Guild Invitation# +You haven't learned enough skills for aligning.# +Aligning completed.# +You already spent your point for today.# +Hasn't been a month yet since you aligned this person.# +Received positive manner point from %s.# +Received negative manner point from %s.# +Align with a Good Point# +Align with a Bad Point# +Request a deal with (%s)# +Ask (%s) to join your party# + Guild is asking for an Alliance with them. Do you accept?# +Your Guild is already in an Alliance with this Guild.# +You rejected the Alliance Request.# +You accepted the Alliance Request.# +Other Guild has too many Alliances.# +You have too many Alliances.# +Send an Guild Alliance Request# +Guild was successfully disbanded.# +You have failed to disband the guild due to your incorrect SSN.# +You have failed to disband the guild because there are guildsmen still present.# +Set this guild as an Antagonist# +Choose Hair Color# +You need the necessary item to create a Guild.# +Monster Info# +Name# +Level# +HP# +Size# +Race# +MDEF# +Element# +Neutral# +Water# +Earth# +Fire# +Wind# +Poison# +Holy# +Shadow# +Ghost# +Undead# +You can't create items yet.# +Manufacturing List# + Create# +'s required materials# + item creation failed.# + item created successfully.# +Failed to create %s.# +Successfully created %s.# +You don't have the the required level.# +You level is too high for this job.# +Not the suitable job for this type of work.# +Record a message in the Talkie Box# +Please type a message for the Talkie Box# +Send to Guild# +You didn't pay for this account. Would you like to pay for it now?# +Server is jammed due to overpopulation. Please try again later.# +Server still recognizes your last log-in. Please try again after about 30 seconds.# +Release Falcon# +Dismount# +Small# +Medium# +Large# +Double# +Triple# +Quadruple# +You are prohibited to log in until %s.# +'s # +'s Fire # +'s Ice # +'s Wind # +'s Earth # +127.0.0.1# +6900# +https://landverse.maxion.gg# +Kill %s# +Very Strong # +Very Very Strong # +Very Very Very Strong # +The Reason of Expulsion# +Attack Speed is increased.# +Attack Speed is reduced.# +Weapon Damage is improved.# +Weapon Damage is reduced.# +Casting Delay is reduced.# +Casting Delay has returned to normal.# +Weapon is temporarily enchanted with Poison element.# +Weapon is temporarily enchanted with Holy element.# +Weapon has changed back to normal.# +Armor is temporarily enchanted with the Holy element.# +Armor has changed back to normal.# +Barrier formed.# +Barrier canceled.# +Weapon Perfection initiated.# +Weapon Perfection canceled.# +Power-Thrust initiated.# +Power-Thrust canceled.# +Maximize-Power initiated.# +Maximize-Power canceled.# +[New Server]# +(%d players)# +(On the maintenance)# +Guild Member %s has connected.# +Guild Member %s has disconnected.# +You got %s Base EXP.# +You got %s Job EXP.# +You left the guild.# +You have been expelled from the Guild.# +Item Appraisal has completed successfully.# +Item Appraisal has failed.# +Compounding has completed successfully.# +Compounding has failed.# +Antagonist has been set.# +Guild has too many Antagonists.# +Already set as an Antagonist# +Upgrade success!!# +Upgrade failed!!# +Unavailable Area to Teleport# +Unable to memorize this place as Warp Point# +Please wait 10 seconds before trying to log out.# +Position# +Job# +Note# +Devotion# +Tax Point# +Leave Guild# +Expel# +Rank# +Position Title# +Invitation# +Punish# +Tax %# +Title# +Contents# +Guild Name# +Guild Level# +Number of Members# +Ranking# +Item Appraisal# +Insert Card# +Please enter the reason of Withdrawal.# +Please enter the reason of Expulsion.# +Please close Shop.# +Skill # +Item Name# +https://pay.ragnarok.co.kr (Billing Web)# +IP capacity of this Internet Cafe is full. Would you like to pay the personal base?# +You are out of available paid playing time. Game will be shut down automatically.# +Name is too long. Please enter a name up to 23 english characters.# +deleted# +You paid with the personal regular base.# +You paid with the personal regular base. Available time is xx hrs xx mins xx secs.# +You are free!# +You are free for the test, your available time is xx hrs xx mins xx secs.# +You paid with the Internet Cafe regular base. Available time is xx hrs xx mins xx secs.# +You paid with the Time Limit for Internet Cafe. Available time is xx hrs xx mins xx secs.# +You are free for the test of Internet Cafe version .# +You are free for the Internet Cafe version.# +You paid on the Time Limit Website.# +Emoji List# +/emo# +/!# +/?# +/ho# +/lv# +/lv2# +/swt# +/ic# +/an# +/ag# +/$# +/...# +/thx# +/wah# +/sry# +/heh# +/swt2# +/hmm# +/no1# +/??# +/omg# +/oh# +/X# +/hlp# +/go# +/sob# +/gg# +/kis# +/kis2# +/pif# +/ok# +Shortcut List# +Your account is suspended.# +Your connection is terminated due to change in the billing policy. Please connect again.# +Your connection is terminated because your IP doesn't match the authorized IP from the account server.# +Your connection is terminated to prevent charging from your account's play time.# +You have been forced to disconnect by the Game Master Team.# +You can't use this Skill because you are over your Weight Limit.# +Nameless# +Congratulations! %s's rank has gone up to %d.# +What a pity! %s's rank has gone down to %d.# +Pet Info# +Hunger# +Intimacy# +Please avoid opening a chatroom while vending.# +ea# +You have knocked down %s.# +You have been knocked down by %s.# +Pet food '%s' is not available.# +Feed Pet# +Performance# +Return to Egg# +Unequip Accessory# +Check Pet Status# +Accessory# +Equipped# +Pet List# +Unequipped# +Are you sure that you want to feed your pet?# +Only the numbers (0~9) are available.# +You cannot sell unidentified items.# +Item at 0 Zeny exists. Do you wish to continue?# +[New Emoji List]# +N/A# +N/A# +Character in the same account already joined.# +(%d ppl) - over the age 18# + Provoke initiated.# + Provoke canceled.# + Endure initiated.# + Endure canceled.# + Improve Concentration initiated.# + Improve Concentration canceled.# + Hiding initiated.# + Hiding canceled.# + Cloaking initiated.# + Cloaking canceled.# + Poison React initiated.# + Poison React canceled.# + Movement Speed reduced.# + Quagmire canceled.# + Defense increased.# + Angelus canceled.# + STR, INT and DEX increased.# + Blessing canceled.# + Signum Crusis initiated.# + Signum Crusis canceled.# + Slow Poison initiated.# + Slow Poison canceled.# + SP Regeneration is increased.# + Magnificat canceled.# + LUK increased.# + Gloria canceled.# + You will receive double damage from 1 attack.# + Lex Aeterna canceled.# + Attack speed increased.# + Attack speed reduced.# + You have mounted a Pecopeco.# + You have dismounted your Pecopeco.# + You have rented a Falcon.# + You have released your Falcon.# + Play Dead initiated.# + Play Dead canceled.# + STR increased.# + Crazy Uproar canceled.# + Energy Coat initiated.# + Energy Coat canceled.# + Armor damaged.# + Armor repaired.# + Weapon damaged.# + Weapon repaired.# + Invisibility initiated.# + Invisibility canceled.# +Sorry. It is delayed due to the process of payment. Please re-connect in a minute.# +You must unequip ammunition first.# +Arrow List# +Cart List# +You must have a cart.# +You cannot open a Chat Window.# +Registering an account is the first step to accessing the game. Do you want to visit the registration page now?# +You cannot use this item while sitting.# +Your use of skills and chat will be blocked for the next %d minutes.# +Your use of skills and chat have been reinstated.# +- [Not equipped]# + Very Hungry# + Hungry# + Neutral# + Satisfied# + Stuffed# + Awkward# + Shy# + Cordial# + Loyal# +Unknown# +Your account has play time of %d day %d hour %d minute.# +Your account is already connected to account server.# +Your account has play time of %d hour %d minute.# +Your account is a free account.# +This account can't connect the Sakray server.# +Your pet name must be 23 characters or less.# +You may change your pet's name only once. Your pet's name will be changed to ^0000ff^0000ff %s^000000^000000. Do you wish to continue?# +/font# +Your guild lacks the funds to pay for this venture.# +Your guild zeny limit prevents you from performing this action.# +Effect Simplification On# +Effect Simplification Off# +Required Fee# +If you wish to drop an item, you must first open your Item Window (ALT+E).# +Internet Cafe Time Plan has been ended. Would you like to continue the game with your personal play time?# +# +# +Your lack of zeny or your zeny limit have prevented you from performing this action.# +Your character has fainted. Push the ESC key to restart.# + - %d obtained.# +Spell List# +/minimize# +This item has been damaged.# +/noshift: You may use your ''force heal'' ability without the Shift key. On | Off# +[no shift] option activated. [ON]# +[no shift] option deactivated. [OFF]# +MSI_REFUSE_BAN_BY_DBA# +MSI_REFUSE_EMAIL_NOT_CONFIRMED# +MSI_REFUSE_BAN_BY_GM# +MSI_REFUSE_TEMP_BAN_FOR_DBWORK# +MSI_REFUSE_SELF_LOCK# +MSI_REFUSE_NOT_PERMITTED_GROUP# +MSI_REFUSE_WAIT_FOR_SAKRAY_ACTIVE# +/aura: Simplify Aura effect On | Off# +Simplified Aura [OFF]# +Simplified Aura [ON]# +Chat block record %d times# +Chat block list# +/showname: Change the name font type.# +/noctrl | /nc: Auto attack without pressing ctrl key. On | Off# +Use auto attack without Ctrl. [Auto attack ON]# +Use auto attack with Ctrl. [Auto attack OFF]# +Mute this player.# +Unmute player & Erase mute time.# +Decrease Player Mute time.# +Normal Font Displayed. [showname type 1]# +Font will be thin and party name will be shown [showname type 2]# +/doridori: Shake head# +Internet cafe is paying now.# +Prepaid voucher validate until %d days %d hours %d minutes later.\nTime limit voucher validate untill %d hours %d minutes later.# +/bingbing: Rotates player counter clockwise.# +/bangbang: Rotates player clockwise.# +/skillfail: Display red font message when skill fails. On | Off# +Skill fail messages will be displayed. [Display On]# +Skill fail messages will not be displayed. [Display OFF]# +/notalkmsg: Chat will not be displayed in chat window. On | Off# +Chat content will be displayed in the chat window. [Display ON]# +Chat content will not be displayed in the chat window. [Display OFF]# +/set1: /noctrl + /showname + /skillfail# +/fog: Fog effect. On | Off# +You have received a marriage proposal. Do you accept?# +Item sharing type# +Individual# +Shared# +nProtect KeyCrypt# +Keyboard Driver has been detected. \n\nDo you want to install a program for keyboard security? \n\n(After installation, System Reboot is required)# +Installation has been completed. \n\nSystem will be rebooted.# +Installation has been failed.# +Keyboard Security will be skipped.# +Required file for Keyboard Security is not existing. \n\n(npkeyc.vxd, npkeyc.sys, npkeycs.sys)# +USB Keyboard has been detected. \n\nDo you want to install a program for keyboard security? \n\n(After installation, System Reboot is required)# +ftp://ragnarok.nefficient.co.kr/pub/ragnarok/ragnarok0526.exe# +FindHack is not installed correctly. Please download ragnarok0226.exe and install it in RagnarokOnline directory.(%d).# +Hacking tool is existing but it hasn't been cleaned. Rangarok Online will not be executed.# +Hacking tool scan program has not been downloaded correctly. Please download ragnarok0226.exe and install it in RagnarokOnline directory.# +NPX.DLL register error or there is no necessary file to run FindHack. Please download ragnarok0226.exe and install it in RagnarokOnline directory.# +Exceptional Error. Please contact the customer support. Return Value: (%d)# +Exit button has been clicked.# +Unable to connect Findhack Update Server. Please try again or contact the customer support.# +Beloved # +/report: Save a chat log file.# +Chat logs are not accepted as evidence for any ill-mannered violation on account of possible file modifications. However this feature is provided for players' personal reference.# +I love you.# +Please adjust your monitor/video brightness if effects appear too bright.# +If full screen mode fails to work, it is suggested you alt+tab [or ctrl+esc] to inactivate and reactivate the Ragnarok Client.# +(%d players) - Pay to Play Server# +(%d players) - Free Server# +Trial players can't connect Pay to Play Server.# +Right click menu skills for F9 are Enabled.[/q1 ON]# +Right click menu skills for F9 are Disabled.[/q1 OFF]# +/quickspell: Right-click menu enables you to use skills assigned to the F9 hotkey. On | Off# +Mouse wheel skills for F7 and F8 are Enabled.[/q2 ON]# +Mouse wheel skills for F7 and F8 are Disabled.[/q2 OFF]# +/quickspell2: By rolling the mouse wheel up and down, you are able to use skills registered on F7 and F8 hotkeys. On | Off# +/q3: /quickspell (/q1) + /quickspell2 (/q2)# +/bzz# +/rice# +/awsm# +/meh# +/shy# +/pat# +/mp# +/slur# +/com# +/yawn# +/grat# +/hp# +/emotion: views the emoticon list.# +Skills assigned to shortcut windows 1, 2, 3 are Enabled. [/bm ON]# +Skills assigned to shortcut windows 1, 2, 3 are Disabled. [/bm OFF]# +/battlemode: allows you to use skills assigned to Shortcut Window 2 by pressing Q ~ O keys.# +A ~ L keys allow you to use skills assigned to Shortcut Window 3.# +Please remember, programs running in the background while playing may affect the game's performance.# +Dear angel, can you hear my voice?# +I am# +Super Novice~# +Help me out~ Please~ T_T# + wishes to adopt you. Do you accept?# +Z ~ > keys allow you to use skills assigned on shortcut window 1. On | Off# +Press the space bar to Chat when in Battle mode [/battlemode | /bm].# +'Either there's no Game Guard installed on the program or Game Guard is cracked. Please, try to reinstall Game Guard from its setup file.'# +Some of Windows system files have been damaged. Please re-install your Internet Explorer.# +'Failed to run Game Guard. Please, try to reinstall Game Guard from its setup file.'# +'At least one hazardous program has been detected. Please, terminate all the unnecessary programs before executing Game Guard.'# +'Game Guard update is canceled. If the disconnection continues, please, check your internet or firewall settings.'# +'Failed to connect to Game Guard update server. Try to connect again later, or try to check the internet or firewall settings.'# +'Can't complete Game Guard update process. Please, try to execute a vaccine program to remove viruses. Or, please try to modify the settings of your PC managing tool if you are using any.'# +/notrade: Declines trade offers automatically. On | Off# +Auto decline trade offers has been Enabled. [/nt ON]# +Auto decline trade offers has been Disabled. [/nt OFF]# +You cannot buy more than 30,000ea items at once.# +You do not have enough ingredients.# +Login information remains at %s.# +Account has been locked for a hacking investigation. Please contact the GM Team for more information.# +This account has been temporarily prohibited from login due to a bug-related investigation.# +Repairable items# +Item has been successfully repaired.# +You have failed to repair this item. Please check the distance between you and opponent.# +System process enabled [GM mode] [/sc ON]# +System process disabled [GM mode] [/sc OFF]# +/systemcheck: Check the system process [GM mode] On | Off# +(%s) wishes to be friends with you. Would you like to accept?# +Your Friend List is full.# +(%s)'s Friend List is full.# +You have become friends with (%s).# +(%s) does not want to be friends with you.# +This character will be blocked to use until %s.# +Price will be fixed at 10,000,000 zeny, even if you enter higher price.# +(Very low)# +(Low)# +(Normal)# +(High)# +(Very high)# +You have been blocked from using chat and skills for %d minutes by the GM Team.# +%d minutes remain until release from the GM penalty.# +You have been released from the GM penalty.# +You have been blocked from using chat and skills for %d as an automatic penalty.# +%d minutes remain until release from auto penalty.# +You have been released from the auto penalty. Please refrain from spamming in-game.# +%s and %s have divorced from each other.# +%s has been designated as Gravity %s's Solar Space.# +%s has been designated as Gravity %s's Luna Space.# +%s has been designated as Gravity %s's Stellar Space.# +Gravity %s's Solar Space: %s# +Gravity %s's Luna Space: %s# +Gravity %s's Stellar Space: %s# +%s has been designated as Gravity %s's Solar Monster.# +%s has been designated as Gravity %s's Luna Monster.# +%s has been designated as Gravity %s's Stellar Monster.# +Gravity %s's Solar Monster: %s# +Gravity %s's Luna Monster: %s# +Gravity %s's Stellar Monster: %s# +/window: Display windows will snap/dock together. On | Off# +Display window docking enabled. [/wi ON]# +Display window docking disabled. [/wi OFF]# +/pvpinfo: shows your PVP result and PVP points.# +You have won %d times and have lost %d times in PVP. Current points %d.# +A manner point has been successfully aligned.# +You are in a PK area. Please beware of sudden attack.# +Game Guard update has been failed when either Virus or Spyware conflicted with. Please, Uninstall Spyware and Virus protection program before you log in.# +Program has encountered an error related to Windows compatibility. Please start the game again.# +You have been blocked from chatting, using skills and items.# +Login is temporarily unavailable while this character is being deleted.# +Login is temporarily unavailable while your spouse character is being deleted.# +Novice# +Swordman# +Mage# +Archer# +Acolyte# +Merchant# +Thief# +Knight# +Priest# +Wizard# +Blacksmith# +Hunter# +Assassin# +Novice# +Swordman# +Mage# +Archer# +Acolyte# +Merchant# +Thief# +Knight# +Priest# +Wizard# +Blacksmith# +Hunter# +Assassin# +Send an adoption request to %s# +When you become a child, you will be unable to become a Transcendent Class character, all stats will be limited to a maximum of 80, and Max HP/SP will be reduced. Are you sure that you want to be adopted?# +All abnormal status effects have been removed.# +You will be immune to abnormal status effects for the next minute.# +Your Max HP will stay increased for the next minute.# +Your Max SP will stay increased for the next minute.# +All of your Stats will stay increased for the next minute.# +Your weapon will remain blessed with Holy power for the next minute.# +Your armor will remain blessed with Holy power for the next minute.# +Your Defense will stay increased for the next 10 seconds.# +Your Attack strength will be increased for the next minute.# +Your Accuracy and Flee Rate will be increased for the next minute.# +You cannot adopt more than 1 child.# +You must be at least character level 70 in order to adopt someone.# +[Point] You have been rewarded with %d Blacksmith rank points. Your point total is %d.# +[Point] You have been rewarded with %d Alchemist rank points. Your point total is %d.# +Dear angel, can you hear my voice?# +I am# +Super Novice~# +Help me out~ Please~ T_T# +/notalkmsg2: Hides chat messages(including guild chat). On Off# +Show chat messages. [/nm2 ON]# +Hide chat messages(including guild chat) [/nm2 OFF]# +Upgradeable weapons# +Refined weapon: %s# +Refined weapon: %s# +You cannot upgrade %s until you level up your Upgrade Weapon skill.# +%s is required to upgrade this weapon.# +Full Divestment cannot pierce the target. The target is fully shielded.# +You cannot adopt a married person.# +This name is not registered in your Friend List. Please check the name again.# +/hi or /hi message: Send greetings to people who are online and registered on your Friend List.# +This character is not your guildsman. Please check the name again.# +Please be aware that the maximum selling price is fixed as 2 Billion. You cannot sell an item higher than that.# +Whispers from friends are displayed as [ Friend ], and ones from guildsmen are displayed as [ Member ].# +( From character name: ) is from an anonymous character who is neither your friend nor guildsman.# +/blacksmith: Shows top 10 Blacksmiths in the server.# +/alchemist: Shows top 10 Alchemists in the server.# +ALT+Y: Opens a window which allows you to use various commands with ease.# +[POINT] You have been rewarded with %d Tae-Kwon Mission rank points. Your point total is %d.# +[Taekwon Mission] Target Monster: %s (%d%%)# +Error - Failed to initialize GameGuard: %lu# +Speed Hack has been detected.# +The illegal program, (%s) has been detected.# +The Game or Gameguard has been cracked.# +GameGuard is currently running. Please wait for sometime and restart the game.# +The Game or GameGuard is already running. Please close the game and restart the game.# +Failed to intialize GameGuard. Please try again after rebooting the system or closing other programs.# +Failed to load the scan module of virus and hacking tool. It's caused by lack of memory or PC virus infection.# +Homunculus Info# +Homunculus Skill List# +Please give your Homunculus a name no longer than 23 letters.# +You can name a Homunculus only once. You have entered the name, ^0000ff%s^000000. Would you like to continue?# +(Away)# +[Automated Message]# +Send an automated message while you are away.# +Cancel automated away message.# +Please enter Away Message.# +/fsh# +/spin# +/sigh# +/dum# +/crwd# +/desp# +/dice# +/pk: Shows top 10 Slayers in the server.# +[POINT] You have been rewarded with %d Slayer rank points. Your point total is %d.# +Evolution Available# +You have decided to delete this Homunculus ^ff0000^ff0000. When deleted, the homunculus and its history will be deleted and they cannot be restored in the future. Would you like to continue?# +Save Homunculus status as a file.# +Do not save Homunculus status as a file.# +Crusader# +Monk# +Sage# +Rogue# +Alchemist# +Bard# +Crusader# +Monk# +Sage# +Rogue# +Alchemist# +Dancer# +High Novice# +High Swordman# +High Mage# +High Archer# +High Acolyte# +High Merchant# +High Thief# +High Novice# +High Swordman# +High Mage# +High Archer# +High Acolyte# +High Merchant# +High Thief# +Lord Knight# +High Priest# +High Wizard# +Whitesmith# +Sniper# +Assassin Cross# +Lord Knight# +High Priest# +High Wizard# +Whitesmith# +Sniper# +Assassin Cross# +Paladin# +Champion# +Professor# +Stalker# +Creator# +Clown# +Paladin# +Champion# +Professor# +Stalker# +Creator# +Gypsy# +You have not set a password yet. Would you like to create one now?# +You have incorrectly entered the password 3 times. Please try again later.# +Password creation has failed.# +Password must be 4~8 letters long.# +Password# +New Password# +Confirm Password# +Password has been changed.# +Password does not match.# +Enter Password# +Your Homunculus is starving. Please feed it, otherwise it will leave you.# +EXP# +[EVENT] You have won an event prize. Please claim your prize in game.# +Hate# +Hate with a Passion# +Homunculus has been customized.# +Homunculus has been activated with the basic AI.# +Mail List# +Write Mail# +Read Mail# +You cannot change a map's designation once it is designated. Are you sure that you want to designate this map?# +Item has been added in the Item Window.# +You have failed to add the item in the Item Window.# +You have successfully mailed a message.# +You have failed to mail a message. Recipient does not exist.# +[Solar, Lunar and Stellar Angel] Designated places and monsters have been reset.# +The minimum starting bid for auctions is 10,000,000 zeny.# +You have successfully started a new auction.# +The auction has been canceled.# +An auction with at least one bidder cannot be canceled.# +Mail has been successfully deleted.# +You have failed to delete the mail.# +You have equipped throwing daggers.# +%s has logged in.# +%s has logged out.# +/loginout: Shows guildsmen and friends online status. On Off# +Display online status of friends in Chat Window. [/li ON]# +Do not display online status of friends in Chat Window. [/li OFF]# +It is already running.# +Use of Macro program has been detected.# +Use of Speed hack has been detected.# +API Hooking has been detected.# +Message Hooking has been detected.# +Module has been modified or damaged or its version does not match.# +(Thailand) You have logged in game with Internet cafe payment.# +Prev# +Next# +Auction# +Product List# +Register# +Sale Status# +Purchase Status# +Item# +Name# +Current Bid / Max Bid# +Seller# +Buyer# +End Time# +%m %d %H# +Time (Hr)# +Fee# +No items found in auction search.# +Your Sale List is empty.# +Your Purchase List is empty.# +Auction Information is incorrect or incomplete.# +You must drag and drop an item from your Inventory into the Register Window to begin a new auction.# +The auction has already been registered.# +Starting Bid# +Current Bid# +Buy Now Price# +Your Current Zeny# +Highest Bid# +Previous Bid# +Next Bid# +Buy it now?# +Would you like to sell this item?# +Place Bid# +Buy Now# +End the Auction# +Place another Bid# +You have placed a bid.# +You have failed to place a bid.# +You do not have enough zeny.# +Armor# +Card# +Etc.# +Bid# +Search# +You have ended the auction.# +You cannot end the auction.# +Bid Number is incorrect.# +To# +Title# +You have received a message in the mail.# +Searching...# +You cannot register more than 5 items in an auction at a time.# +You cannot place more than 5 bids at a time.# +Please accept all items from your mail before deleting.# +Please enter a title.# +/shopping: Enables you to open a shop with a single left-click and close your shop with a single right-click. On Off# +You can now open a shop with a single left-click and close your shop with a single right-click. [sh ON].# +You can open a shop by double-clicking. [/sh OFF]# +Please enter zeny amount before sending mail.# +You do not have enough zeny to pay the Auction Fee.# +View Status# +Feed# +Stand By# +Super Novice# +Super Novice# +Taekwon Boy# +Taekwon Girl# +Star Gladiator# +Star Gladiator# +Soul Linker# +Soul Linker# +Please check the connection, more than 2 accounts are connected with Internet Cafe Time Plan.# +Your account is using monthly payment. (Remaining day: %d day)# +Your account is using time limited. (Remaining time: %d hour %d minute %d second)# +This item cannot be mailed.# +You cannot accept any more items. Please try again later.# +Male# +Female# +New User.# +E-mail address is required to delete a character.# +Please enter the correct information.# +Please use this key.# +Please enter the correct card password.# +PT Info# +PT_ID is %s# +NUM_ID is %s# +Please don't forget this information.# +1001# +1002# +1003# +1004# +1006# +1007# +1008# +1009# +1012# +1013# +1014# +1015# +1019# +1020# +1021# +1023# +1024# +1025# +1027# +1028# +10# +20# +40# +50# +60# +70# +80# +90# +100# +110# +Do you want to receive 30 points?# +30 points (5 hours) have been added.# +You cannot register Unidentified Items in auctions.# +You cannot register this Consumable Item in an auction.# +Please close the Cart Window to open the Mail Window.# +Please close the Mail Window to open the Cart Window.# +Bullets have been equipped.# +The mail has been returned to sender.# +The mail no longer exists.# +More than 30 players sharing the same IP have logged into the game for an hour. Please check this matter.# +More than 10 connections sharing the same IP have logged into the game for an hour. Please check this matter.# +Please restart the game.# +Mercenary: Archer# +Mercenary: Swordman# +Mercenary: Spearman# +Expiration# +Loyalty# +Summons# +Kill# +You can feel hatred from your pet for neglecting to feed it.# +[POINT] You earned %d Taming Mission Ranking Points, giving you a total of %d points.# +[Taming Mission] Target Monster: %s# +/hunting: You can check the your hunting list.# +[Angel's Question] Please tell me, how many %s skills do you have?# +[Angel's Question] Please tell me, how much zeny you'll have if you divide it by 100,000?# +[Angel's Question] Please tell me, what is today's date?# +[Angel's Question] Please tell me, how many %s do you have?# +[Angel's Question] If A is 1, B is 2, and so on, and if Z is 26, what number do you get if you add the letters in SiYeon's name?# +[Angel's Question] If A is 1, B is 2, and so on, and if Z is 26, what number do you get if you add the letters in Munak's name?# +[Angel's Question] If A is 1, B is 2, and so on, and if Z is 26, what number do you get if you add the letters in Bongun's name?# +[Angel's Question] If A is 1, B is 2, and so on, and if Z is 26, what number do you get if you add the letters in the word, Ragnarok?# +[Angel's Question] If A is 1, B is 2, and so on, and if Z is 26, what number do you get if you add the letters in the word, online?# +[Angel's Question] If A is 1, B is 2, and so on, and if Z is 26, what number do you get if you add the letters in the word, death?# +[Angel's Question] If A is 1, B is 2, and so on, and if Z is 26, what number do you get if you add the letters in the word, knight?# +[Angel's Question] If A is 1, B is 2, and so on, and if Z is 26, what number do you get if you add the letters in the word, gravity?# +[Angel's Question] If A is 1, B is 2, and so on, and if Z is 26, what number do you get if you add the letters in the word, dark?# +[Angel's Question] If A is 1, B is 2, and so on, and if Z is 26, what number do you get if you add the letters in the word, collecter?# +[Angel's Answer] Thank you for letting me know~# +[Angel's Answer] I'm very pleased with your answer. You are a splendid adventurer.# +[Angel's Answer] You've disappointed me...# +[Point] You earned %d Ranking Points, giving you a total of %d Ranking Points.# +[%s]'s Points: %d Points# +Unselected Characters will be deleted. Continue?# +You cannot select more than 8.# +Do you want to change your name to '%s'?# +Character Name has been changed successfully.# +You have failed to change this character's name.# +You can purchase only one kind of item at a time.# +No characters were selected. You must select at least one character.# +This character's name has already been changed. You cannot change a character's name more than once.# +User Information is not correct.# +Another user is using this character name, so please select another one.# +The party member was not summoned because you are not the party leader.# +There is no party member to summon in the current map.# +You cannot find any trace of a Boss Monster in this area.# +Boss Monster, '%s' will appear in %02d hour(s) and %02d minute(s).# +The location of Boss Monster, '%s', will be displayed on your Mini-Map.# +Do you want to open ^990099%s^000000? Once opened, the contents cannot be moved to other locations aside from the Kafra Storage. The item effect isn't doubled, even if the same items are used more than once.# +The Purchase has failed because the NPC does not exist.# +The Purchase has failed because the Kafra Shop System is not working correctly.# +You cannot purchase items while you are in a trade.# +The Purchase has failed because the Item Information was incorrect.# +STR has increased.# +STR has returned to normal.# +AGI has increased.# +AGI has returned to normal.# +VIT has increased.# +VIT has returned to normal.# +INT has increased.# +INT has returned to normal.# +DEX has increased.# +DEX has returned to normal.# +LUK has increased.# +LUK has returned to normal.# +Flee Rate (Flee) has increased.# +Flee Rate has returned to normal.# +Accuracy Rate (Hit) has increased.# +Accuracy Rate has returned to normal.# +Critical Attack (Critical) has increased.# +Critical Attack has returned to normal.# +You will receive 1.5 times more EXP from hunting monsters for the next 30 minutes.# +This character will not receive any EXP penalty if ko'ed within the next 30 minutes.# +Regular item drops from monsters will be doubled for the next 30 minutes.# +Boss Monster Map Information for the next 10 minutes.# +Do you really want to purchase this item? %d points will be deducted from your total Kafra Credit Points.# + You do not have enough Kafra Credit Points.# +^ff0000Expiration Date: %s^000000# +The '%s' item will disappear in %d minutes.# +'%s' item will be deleted from the Inventory in 1 minute.# +'%s' item has been deleted from the Inventory.# +Input Number# +%m/%d %H:%M# +Boss Monster '%s' will appear within 1 minute.# +Mercenary Soldier Skill List# +Do you agree to cast the magic spell that consumes 1 Black Gemstone and 1,000,000 Zeny?# +[Point] You have gained %d Collector Rank Points; you now have a total of %d Collector Rank Points.# +[Collector Rank] Target Item: %s# +The mercenary contract has expired.# +The mercenary has died.# +You have released the mercenary.# +The mercenary has run away.# + The '%s' item will disappear in %d seconds.# +IP Bonus: EXP/JEXP %d%%, Death Penalty %d%%, Item Drop %d%%# +Symbols in Character Names are forbidden.# +Mercenary will follow custom AI.# +Mercenary will follow basic AI.# + %s's # +%s has acquired %s.# +Public Chat# +Whisper# +Party Chat# +Guild Chat# +Item get/drop# +Equipment on/off# +Abnormal status# +Party member's obtained item# +Party member's abnormal status# +Skill failure# +Party configuration# +Damaged equipment# +Battle Message Window# +[%s]'s Han Coin: %d Han Coin# +Public# +Battle# +Mobile Authentication# +Read# +Auto Read# +Bookmark# +Previous# +Next# +Close# +%s's equipment has been damaged.# +%s's %s was damaged.# +Weapon# +Armor# +Insufficient Skill Level for joining a Party# +[%s]'s Free Cash: %d Cash# +Use Free Cash: # +Cash# +http://payment.ro.hangame.com/index.asp# +You need to accept the Privacy Policy from Gravity in order to use the service.# +You need to accept the User Agreement in order to use the service.# +Incorrect or nonexistent ID.# +Do you really want to purchase these items? You will spend %d Regular Cash Points and %d Free Cash Points.# +%d hour(s) has passed.# +%d hour(s) %d minute(s) has passed.# +Please stop playing the game, and take a break. Exp and other features will be reduced to 50%%.# +Please stop playing the game since you'll need to rest. Exp and other features will be fixed to 0%%.# +Quest List# +RO Shop# +Memorial Dungeon, '%s' is booked.# +Failed to book Memorial Dungeon, '%s'.# +Memorial Dungeon, '%s' is already booked.# +Memorial Dungeon, '%s' is created.\n Please enter in 5 minutes.# +Failed to create Memorial Dungeon, '%s'.\n Please try again.# +The character blocked the party invitation.# +Block all party invitations.# +Allow all party invitations.# +This item will be permanently bound to this character once it is equipped. Do you really want to equip this item?# +%s is now permanently bound to this character.# +You do not have enough Kafra Credit Points. Please enter whether you have free credit points.# +Request to Join Party# +WOE Information# +Memorial Dungeon %s's reservation has been canceled.# +Failed to create Memorial Dungeon %s. Please try again.# +This skill cannot be used within this area.# +This item cannot be used within this area.# +Memorial Dungeon# +%s in Standby# +%s Available# +%s in Progress# +No one entered the Memorial Dungeon within its duration; the dungeon has disappeared.# +Please apply for dungeon entry again to play in this dungeon.# +Your Standby Priority: ^ff0000%d^000000# +The requested dungeon will be removed if you do not enter within ^ff0000%s^000000.# +Dungeon Mission Time Limit:# +The Memorial Dungeon reservation has been canceled.# +The Memorial Dungeon duration expired; it has been destroyed.# +The Memorial Dungeon's entry time limit expired; it has been destroyed.# +The Memorial Dungeon has been removed.# +A system error has occurred in the Memorial Dungeon. Please relog in to the game to continue playing.# +This slot is not usable.# +Your Base Level is over 15.# +Your Job Level is over 15.# +You cannot play the Merchant class character in this slot.# +Not Yet Implemented# +You are not eligible to open the Character Slot.# +This character cannot be deleted.# +This character's equipment information is not open to the public.# +Equipment information not open to the public.# +Equipment information open to the public.# +Check %s's Equipment Info# +'%s's Equipment# +Show Equip# +This service is only available for premium users.# +Free Trial users can only hold up to 50,000 zeny.# +Battlefield Chat has been activated.# +Battlefield Chat has been deactivated.# +Mercenary Info - Monster Type# +World Map# +The Memorial Dungeon is now closed.# +^ff0000Deleting a Mercenary Soldier^000000 will also delete his growth history. Do you really want to proceed with the deletion?# +The Memorial Dungeon is now open.# +This account has not been confirmed by connecting to the safe communication key. Please connect to the key first, and then log into the game.# +The number of accounts connected to this IP has exceeded the limit.# +You have received a new quest.# +^CC3399Requirement:# +View Skill Info# +Once used, skill points cannot be re-allocated. Would you like to use the skill points?# +1stJob# +2ndJob# +This account has been used for illegal program or hacking program. Block Time: %s# +The possibility of exposure to illegal program, PC virus infection or Hacking Tool has been detected. Please execute licensed client. Our team is trying to make a best environment for Ro players.# +You are currently playing in the best game environment. Please enjoy the Ragnarok.# +Job Exp points from hunting monsters are increased by 50%% for 30 minutes.# +Exp points from hunting monsters are increased by 25%% for 30 minutes.# +EXP points from hunting monsters are increased by 100%% for 30 minutes.# +EXP points from hunting monsters are increased by 50%% for 60 minutes.# +Unable to organize a party in this map.# +(%s) are currently in restricted map to join a party.# +Simple Item Shop# +Han Coin: %d Han Coin# +RoK Point: %d RoK Point# +Free Cash: %d Cash# +An user of this server cannot connect to free server# +Your password has expired. Please log in again# +3rdJob# +This skill can't be used on that target.# +You can't use skill because you have exceeded the number Ancilla possession limit# +[Holy Water] is required.# +[Ancilla] is required.# +Cannot be duplicated within a certain distance.# +This skill requires other skills to be used.# +Chat is not allowed in this map# +3 hours have passed.# +5 hours have passed.# +Game guard initialization error or previous version game guard file is installed. Please re-install the setup file and try again# +Either ini file is missing or altered. Install game guard setup file to fix the problem# +There is a program found that conflicts with game guard# +Incorrect client. Please run a normal client# +Please run a mobile verification# +Verification failed# +This skill can't be used alone# +This skill can be used to certain direction only# +Cannot summon spheres anymore.# +There is no summoned sphere or you do not have enough sphere.# +There is no imitation skills available.# +You can't reuse this skill# +Skill can't be used in this state# +You have exceeded the maximum amount of possession of another item.# +No administrative privileges. Must first run the program with administrator privileges.# +nProtect KeyCrypt not the same. Please restart the program and the computer first.# +Currently in Windows XP Compatibility Mode. The program now removes Compatibility Mode. Please restart the program.# +PS/2 keyloggers exist.# +USB Keylogging attempt was detected.# +HHD monitoring tool has been detected.# +[Paint Brush] is required.# +[Surface Paint] is required.# +Use the skills that are not at the specified location.# +Insufficient SP.# +Character %d is character selection window cannot connect to the game that exceeds the total. Please remove unwanted characters.# +[Neck Protection Candy] is required.# +[Regrettable Tears] is required.# +[Neck Protection Candy] is required.# +Can only be used for linked to Weapon Blocking.# +A weapon coated with Guillotine Cross's Poison is required.# +Item can only be used when Mado Gear is mounted.# +[Vulcan Bullet] is required.# +[Mado Gear Fuel] is required.# +[Liquid Condensed Bullet] is required.# +Please load a [Cannon Ball].# +Please equip [Accelerator].# +Please equip [Hovering Booster].# +[Toxin] Poison effect is applied to the weapon.# +[Paralysis] Poison effect is applied to the weapon.# +[Fatigue] Poison effect is applied to the weapon.# +[Laughing] Poison effect is applied to the weapon.# +[Disheart] Poison effect is applied to the weapon.# +[Pyrexia] Poison effect is applied to the weapon.# +[Oblivion] Poison effect is applied to the weapon.# +[Leech] Poison effect is applied to the weapon.# +Can only be used in Hovering state.# +Please equip [Suicidal Device].# +Please equip [Shape Shifter].# +Guillotine Cross Poison is required.# +Please equip [Cooling Device].# +Please equip [Magnetic Field Generator].# +Please equip [Barrier Builder].# +Please equip [Camouflage Generator].# +Please equip [Repair Kit].# +[Monkey Wrench] is required.# +Cannot use [%s] due to cooldown delay.# +Deletion is impossible for over level %d# +Can't be used while on Mado Gear.# +Dismount Dragon# +Dismount Mado Gear# +Use# +Cash# +Armors# +Weapons# +Ammo# +Card# +Etc# +Client response time has passed so connection is terminated# +Incorrect version of hack shield file. Please reinstall the client# +[Magic Book] is required.# +Feel sleepy since Magic Book is too difficult to understand.# +Not enough saved point.# +Can't read a Magic Book anymore.# +[Face Paint] is required.# +[Makeover Brush] is required.# +Waiting time has passed. Please log in again# +Watch out! Same account is already logged in. Stop mobile verification and log in again after changing your password# +Watch out! Same account is waiting for mobile verification. Stop mobile verification and log in again after changing your password# +Game option # +Graphic Settings# +Sound Settings# +Press a key to assign. Pressing 'ESC' will remove the assigned key.# +Unable to specify a single key.# +Unable to specify the key assigned.# +Duplicated with ['%s']. Do you still want to change?# +Initialization is stored in the shortcut key settings. Do you want to initialized?# +Skill Bar# +Interface# +Macros# +Shortcut Settings# +BGM# +Effect# +Skin# +Chat room entry sound [ON]# +Chat room entry sound [OFF]# +/tingonly: you can hear only sound like a chat room entry.# +/rock# +/scissors# +/paper# +/love# +/mobile# +/mail# +/antenna0# +/antenna1# +/antenna2# +/antenna3# +/hum# +/abs# +/oops# +/spit# +/ene# +/panic# +/whisp# +Not Assigned# +Only available when cart is mounted.# +[Thorn Plant Seed] is required.# +[Blood Sucker Plant Seed] is required.# +Cannot be used anymore.# +[Bomb Mushroom Spore] is required.# +[Fire Bottle] is required.# +[Oil Bottle] is required.# +[Explosive Powder] is required.# +[Smokescreen Powder] is required.# +[Tear Gas] is required.# +[Acid Bottle] is required.# +[Plant Bottle] is required.# +[Mandragora Flowerpot] is required.# +Assign Party Leader# +Switch Party Leader?# +Can't re-assign party leader# +Can't be changed because of level gap# +[%s] required '%d' amount.# +Is now refining the value lowered.# +Please equip [%s].# +Battle field entrance setting# +Battlefield - [%s] you sign up?# +# +It was unregistered and not be able to enter the state.# +# +Do you want to cancel the admission application?# +Admission request has been cancelled.# +Go to the battlefield quickly.# +Battlefield - [%s]# +Do you really want to go back to your savepoint?# +Search Message for Party Members# +Message option is off the search party members.# +10 seconds delay of party support is in effect# +Party leader is '%s'.# +Unable to enter due to system error.# +Cannot wait to enter the number of excess.# +Has already been applied.# +Registration has been cancelled because of the excessive waiting time.# +Unregistered because admission requirements are not matching.# +Was unregistered and error.# +The skill need [%s].# +The skill need a particular skill.# +Requires %d Spirit Sphere.# +Spirit Sphere is required.# +Cannot create rune stone more than the maximum amount.# +Not able to receive battle field list. Please check and try again# +Level is not high enough to enter# +You must consume all '%d' points in your 1st Tab.# +You must consume all '%d' remaining points in your 2nd Tab. 1st Tab is already done.# +Convertible item# +Items that can be converted# +Item to convert# +Combination of item is not possible in conversion.# +Is a very heavy weight of the Inventory.# +Please ensure an extra space in your inventory.# +Item does not exist.# +Successful.# +All material has disappeared and failed.# +Not very long to change the name of the specified tab.# +Cannot add more.# +Authentication failed.# +Bot checks# +Items cannot be used in materials cannot be emotional.# +It is impossible to connect using this IP in Ragnarok Online. Please contact the customer support center or home.# +You have entered a wrong password for more than six times, please check your personal information again.# +Consumption items are used in the synthesis. Are you sure?# +Please input the captcha code found at your left side.# +Describes the battlefield --# +Waiting for admission --# +Request help battle position# +Sorry the character you are trying to use is banned for testing connection.# +Remove all equipment# +Mini Icon# +Camp A: Camp B# +Wait# +cancellation notice of Battlefield registration.# +Required field for staff# +Battlefield staff A is waiting.# +Battlefield staff B is waiting.# +Waiting for my situation: %d (Camp A)# +Waiting for my situation: %d (Camp B)# +Enable Battlefield icon.# +Disable Battlefield icon.# +Field notification was moved.# +Admission pending notification of the battlefield# +Someone# + [%s] inflicts '%d' damage points on you.# + [%s] attacked by [%s] with '%d' damage points.# + [%s] receives '%d' damage points.# + [%s] attacks [%s] with '%d' damage points.# +You dropped %s (%d).# +[%s] quest - defeating [%s] progress (%d/%d).# +[%s] quest was deleted.# +[%s] # + %d Base exp points# + %d Job exp points# + acquired.# + has lost.# +From [%s], '%d' coins were stolen.# +Battle message# +Party member's battle message# +Experience message# +Party member's experience message# +Quest information# +Battlefield message# +# +Casts [%s] skill.# +Activate lock function# +Deactivate lock function# +%s has opened [%s] and recieved [%s].# +Swordman# +Mage# +Archer# +Acolyte# +Merchant# +Thief# +Knight# +Priest# +Wizard# +Blacksmith# +Hunter# +Assassin# +Crusader# +Monk# +Sage# +Rogue# +Alchemist# +Bard# +Dancer# +Rune Knight# +Warlock# +Ranger# +Arc Bishop# +Mechanic# +Guillotine Cross# +Royal Guard# +Sorcerer# +Minstrel# +Wanderer# +Sura# +Genetic# +Shadow Chaser# +High Swordman# +High Mage# +High Archer# +High Acolyte# +High Merchant# +High Thief# +Lord Knight# +High Priest# +High Wizard# +Whitesmith# +Sniper# +Assassin Cross# +Paladin# +Champion# +Professor# +Stalker# +Creator# +Clown# +Gypsy# +Wedding# +High Novice# +Super Novice# +Gunslinger# +Ninja# +Taekwon Boy/Girl# +Star Gladiator# +Soul Linker# +Party Recruitment# +Party Booking List# +Recruiting Party# +[Bow] must be equipped.# +[Musical Instrument/Whip] must be equipped.# +Only alphanumeric characters are allowed.# +Notice# +Item purchase failed due to incorrect shop information.# +Item cannot be discarded from the window.# +hour(s)# +Map# +You can't use, equip or disarm items when you're trading.# +Unspecified value# +/stateinfo : Shows the description of status icons. On Off# +Status Information On: Status icon description is enabled.# +Status Information Off: Status icon description is disabled.# +It is not possible to purchase the same item more than %d pieces at a time# +It is not possible to purchase the same item more than %d pieces at a time# +Can purchase upto %d pieces of the same item at a time.# +User customized key is saved to [%s\%s]# +[%s] is currently on trade and cannot accept the request.# +RO_HELP# +Anvil does not exist.# +Novice below level 10 is not allowed to whisper.# +Attack# +Defense# +Consumables# +Support# +Party recruitment related command# +Guild alliance application is not possible..# +Guild hostility application is not possible.# +Adding friends is not possible in this map.# +Buying Store Window# +Price: # +Money: # +Purchase Zeny Limit# +Please register the item first that has to be purchased.# +Please enter the price for item %s.# +Please enter the price for item %s. It must be less than 9999 million Zeny.# +Please enter the quantity for %s.# +The total quantity of %s in possession is more than 9999. Please enter value less than 9999.# +You have duplicate items in your purchase list.# +Enter the limited price.# +You have entered a greater amount of zeny than you have. Please check your zeny.# +%s : %s Zeny => %s ea.# +Available items:# +Purchase list:# +Price limit: %s Zeny# +Buying %s for %s Zeny. Amount: %d.# +Wanted items# +Available items:# +The max. number of items you can sell is %d.# +Buyer has insufficient zeny, lower the amount of items you're selling.# +Failed to open purchase shop.# +You exceed the total amount of items.# +You have purchased all items within the limited price.# +You purchased all items.# +Failed to deal because you have insufficient zeny.# +You have sold %s. Amount: %d. Total Zeny: %dz# +%s item could not be sold because you do not have the wanted amount of items.# +You have not registered to sell the item.Please Register to sell item.# +You don't have any summoned spirits.# +This is a restricted server.# +OTP password is 6 digits long.# +OTP information is unavailable. Please contact your administrator.# +Party ad has been added.# +Recruit party members# +Roles# +1st Jobs# +2nd Jobs# +3-1 Classes# +3-2 Classes# +1st High Jobs# +2nd High Jobs# +Other Jobs# +Recruit# +Open party recruitment window.# +Searching - # +Select All# +Recruitment of at least one job must be running.# +You have to select at least 1 or more jobs.# +You have selected %d Jobs. You can only select up to 6 different jobs.# +Only numeric characters are allowed.# +Please enter levels between 1~150.# +Costumes are hidden in this area.# +You cannot equip this item with your current level.# +You cannot use this item with your current level.# +Enable Battle mode# +Failed to add because you have reached the limit.# + message log settings# +Sell# +Purchase# +Search for Vends# +Shop Name# +Amount# +Price# +Too much results have been found. Please do a more precisely search.# +Do you want to open a street stall?# +Failed to recognize SSO.# +Cannot move to the applied area.# +searching item including the word# +User has been expelled.# +You have not accepted the user agreements yet.# +You will not be disconnect from the game.# +It is available only for 12 hours.# +Your account is blocked due to illegal use of the game account.# +Your account is blocked because there may exist a bug with your account.# +Increases base exp and job exp gained by killing monsters up to 75%% for 30 minutes.# +Increases base exp and job exp gained by killing monsters up to 50%% for 30 minutes.# +No sales information.# +Failed to search any further.# +The selected item does not exist.# +Cannot search yet.# +Enter the card name or prefix/suffix.# +Searches left: %d# +No result has been found.# +The item price is too high.# +General# +Costume# +minute(s)# +second(s)# +Please enter the name of the item.# +The item you have entered does not exist.# +The map is not available.# +The selected name or prefix/suffix does not exist.# +You can purchase up to 10 items.# +Some items could not be purchased.# +Enter your birthday (e.g: 20101126)# +Now Logging Out.# +A database error has occurred.# +Please leave your guild first in order to remove your character.# +Please leave your party first in order to remove your character.# +You cannot delete this character because the delete time has not expired yet.# +You cannot delete this character at the moment.# +Your entered birthday does not match.# +You lack of familiarity.# +This is only available on style change for fighting classes.# +This is only available on style change for novice.# +Registering party has failed.# +No list matching search criteria were found.# +Failed to remove result.# +No results have been found.# +No payment information has been found.# +Screenshot Trade# +[Trade_%s]# +Death due to the auto insurance young people are spending.# +Chat Dialog# +Redundant is not available.# +Use the limit that has been set.# +No user restrictions are set.# +Connection has failed. Please contact your administrator.# +Failed to authenticate.# +User is offline.# +The age limit from commandment tables cannot connect to this server.# +Buy# +Empty shopping cart# +First page# +Last page# +New Items# +Hot Items# +Limited Sell# +Rental Equipment# +Permanent Equipment# +Scrolls# +Consumables# +Other# +Cost# +Quantity# +Total# +Free Cash : %s C# +Cash Points : %s C# +You cannot summon a monster in this area.# +Exceeded total free cash# +Content has been saved in [SaveData_ExMacro%d]# +%d seconds left until you can use# +Must be equipped with [Spear].# +Available only on the dragon.# +Unable to proceed due to exceeding capacity.# +Real name has not been verified. Go to name verification site.# +Please select slot you are going to save.# +Congratulation %s, Acquired '%s' !# +Unable to use in gloomy state# +Purchased products has exceeded the total price.# +Cannot join a party in this map.# +Cannot leave a party in this map.# +Cannot withdraw/break the party in this map.# +Real Name# +ID Number# +E-mail# +Invalid input# +Failed to send the zeny # +This is not a relevant job# +This is not a relevant gender# +User information identification was successful.# +Name does not match. Please retry.# +ID number does not match. Please retry.# +Service is currently unavailable. Please try again later.# +Unable to attack while riding.# +Unable to cast the skill while riding.# +Pin number should be 4~6 characters.# +Secured authentication is successful.# +Succeeded in creating 2nd password.# +2nd password has been deleted.# +2nd password has been corrected.# +Password is incorrect.# +Failed to create 2nd password.# +Failed to delete 2nd password.# +Failed to correct 2nd password.# +Unable to use restricted number in 2nd password.# +Unable to use your KSSN number.# +~There is already a password.# +Security Code# +Account for the additional password security settings are recommended.# +Do not use secure password.# +Use the set security password failed.# +Use secure passwords. Will be applied to your next login.# +Use the set security password failed.# +Added to the security of your account password is set.# +Use the mouse to enter the 4-digit password below.# +Typing an incorrect password 3 times will shut down the client.# +ITEM# +SKILL# +TACTIC# +ETC# +COMBAT# +NON-COMBAT# +BUFF# +AUTO EQUIPED# +1st. ATTACK# +ATTACK# +Next attack time: # +When died# +When invited to a party# +Pickup Item# +Over 85%% Weight# +Any work in progress (NPC dialog, manufacturing ...) quit and try again.# +Monster Job hunting experience that you can get through the doubling of %d is %.2f minutes.# +SaveData_ExMacro %d# +Settings for [%s] are stored in.# +Security level# +The current character is a party or join the guild cannot be deleted.# +Objects can be used only near the wall.# +%s : Level %d %s party to obtain level.# +While boarding reins is not available for items.# +This skill requires 1%% experience.# +E X P : # +Drop : # +Death Penalty: # +%d%% (Internet cafe %d%% + TPLUS %d%% + Premium %d%% + %s Server %d%%)# +Amount of party members to cast the skill Chorus SP is low.# +Relative character that has possession of the items cannot trade because amount is exceeded..# +Relative character that has possession of the item amount which exceeds makes it impossible to trade.# +Amounts are exceeded the possession of the item is not available for purchase.# +Advertising is pending registration.# +With the following files and text content Ragnarok Official Website -> Support -> Contact Us to submit your comments by:# +Has caused an error in billing system(%d)# +Failed purchase of runes, items exceed the maximum number that can be held.# +Exceeded the number of individual items, purchase failed.# +Purchase failed due to an unknown error.# +Please try again later.# +Kunai must be equipped to use this skill..# +Please enter the value of the minimum level to be recruited.# +Jonda agency receipt of the item to the NPC is not possible. Gaining possession of the free space of the window.# +This skill is only available during WoE.# +This skill is available only to the player.# +Can't equip this item because you don't meet the requirements.# +Current location of the shop and chat room creation is disabled.# +Elapsed time: %d:%d:%d / %d:%d:%d# +Speed: X 1/4# +Speed: X 1/2# +Speed: X 1 # +Speed: X 2 # +Speed: X 4 # +Speed: X 8 # +Speed: X 16 # +Speed: Unknown# +Service Info: %s# +Character Name: %s# +Map Name: %s# +Record Time: %d-%01d-%01d %d: %02d: %02d# +Play Time: %02d: %02d: %02d# +No Replay File.# +Server No Matching# +Replay Option Setting# +Enter File Name# +Set Replay Save Data# +Set Rec Option# +%.1f %% Pos->:%d:%d:%d# +%.1f %% Pos->:cannot move# +Start# +Stop# +Input FileName -> Start# +Open Option# +Close Option# +End# +Time# +Party & Friends# +Chat# +Shortcuts# +Automatic filename generation# +Checking for duplicate files# +The same file exists already.# +Record Start# + is Saved.# +Weight: %3d / %3d# +Total: %s C# +[Shuriken] must be equipped.# +Base Lv. %d# +Job Lv. %d# +Zeny: %s# +Trilinear# +attack# +skill# +item# +NoCtrl# +Battleground# +(Character/Total Slot)# +Premium Service# +Premium # +Service# +Billing Service# +Billing # +Command List# +LEVEL# +MAP# +JOB# +Not Available# +[Protection of Guardian Angel] You can't use it when you reach the highest level.# +Do you really want to move?# +Failed to move Char slot.# +Character name is invalid.# +Show Quest# +Depending on the protection of youth, and 0:00 to 6:00 while under the age of 16 of your game use is limited.# +Depending on the protection of youth, 0:00 to 6:00 ^ff0000 under the age of 16 ^000000 limit your use of the game and the game ends.# +In order to change the character name, you must leave the guild.# +In order to change the character name, you must leave the party.# +Character name change failed, due an unknown error.# +Ready to change character slot in.(%d)# +Ready to change character name in.(%d)# +Length exceeds the maximum size of the character name you want to change.# +Name contains invalid characters. Character name change failed.# +The name change is prohibited. Character name change failed.# +Complete# +For %d minutes your Exp will increase by %d%%.# +%02d seconds left until summon.# +Your party leader summons you to %s (%s). Warp costs %d Zeny.# +Summon target# +Block List# +%d Zeny will be spent for making party ad.# +Insufficient Zeny for making party ad.# +) party: accept invitation# +) party: decline invitation# +) party: show equipment window# +Up to 36 english letters can be entered# +Enter# +1:1 Chat# +Block# +Insufficient Zeny for recall.# +Input your party ad.# +Only party leader can register party ad.# +You have already accepted this ad.# +For# +Eqp# +Fav# + Drop Lock: On/Off# +Party Alarm# +Create Party# +Leave Party# +Party Invitation# +Party Name:# +Player Name:# + has recieved an invitation to join your party.# + rejected your party invitation.# + accepted your party invitation.# +Recruitment is already a party.# +Same conditions such as the previous search.# +Guild after withdrawl.# +Party after secession.# +The player cannot be summoned to this map.# +Party Leader is on a map that is restricted to summon players.# +Summon has been denied.# +Cannot be summoned.# +Only the leader can invite.# +Search item:# +You must enter a character name.# +You must enter the name of the party.# +Guild Companion# +Join a guild or start your own!# +Create Guild# +Guild Name# +Guild System# +What is the guild system# +You must enter the name of your guild.# +Supported at the party was rejected.# +Select Service:# +Possible escape area.# +Replay File List# +File info# +File List# +%s Item deal not possible.# +Disband the Guild# +Enter Guild Name# +The character is not online or does not exist.# +Failed to call Falcon.# +%d%%(default 100%%+ Premium%d%%+%s Server%d%%)# +This user is currently participating in WoE.# +It is only possible to change the party leader while on the same map.# +In the current region it is not possible to change the party.# +Dismount from Gryphon# +Delete: %d/%d - %d:%d:%d# +You can't invite characters in WoE maps.# +You are now in the battlefield queue.# +Queuing has finished.# +Invalid name of the battlefield.# +Invalid type of application.# +People count exceeded.# +Your level doesn't fit this battlefield rules.# +Duplicate application.# +After reconnecting, please re-apply.# +Your class can't participate in this battlefield.# +Only party leader / guild master can apply.# +You can't apply while your team member is already on a battlefield.# +You have left the battlefield queue.# +Wrong battlefield name.# +You are not in the battlefield queue list# +The selected arena is unavailable; your application has been cancelled# +You have left the queue# +Are you sure you want to join a battleground?# +[Battlefield application rules]# +Application and position into the battlefield cannot be applied under this circumtances# +1. Different types of battle cannot be applied simultaneously.# +2. Personal / party / guild battle cannot be applied simultaneously.# +3. Parties can only be applied by their party leaders.# +Offline party members won't proceed to the queue.# +4. You can add request to enter the arena from any map except for those who don't allow teleport/warp.# +When the battle is finished your character will be returned to the current spot or (if it's not possible) to the save point.# +5. You can view and choose rewards in the arena waiting room.# +Request help battle position# +%s battle begins.# +Do you want to enter the arena?# +[Note]# +When the battle is finished your character will# +be returned to the current spot or (if it's not# +possible) to the save point.# +Waiting for the opponents.# +Battlefield position request# +Accept standby time:%d seconds# +Standby position# +Battlefield name:%s# +Persons required:%d# +Your position:%d# +Name:# +Goal:# +Format:# +Level:# +Win:# +Draw:# +Loss:# +Do you want to participate in the individuals battle?# +Do you want to participate in the parties battle?# +Do you want to participate in the guilds battle?# +Battleground List# +%d VS %d# +LV %d and lower# +LV %d and higher# +LV %d ~ %d# +No restrictions# +[You can't apply on this map.]# +[You must wait about 1 minute to apply.]# +[You must be in a party.]# +[Only party leader can apply.]# +[Too many party members online.]# +[You must be in a guild.]# +[Only guild master can apply.]# +[Too many guild members online.]# +Moving Book# +Move# +Rename# +Create Character# +http://ro.game.gnjoy.com/# +(%s) Server# +Item Merge# +Two or more of the same type. Please select an item.# +Item merge is successful.# +Combining items will be only one kind at a time.# +You cannot have more than 30,000 stacked items.# +Rotate left# +Rotate right# +(%s) to view the old server information# +Existing server information# +^ff0000Existing server: ^0000ff# +^ff0000Existing character: ^0000ff# +Show monster HP bar when attacking.# +Hide monster HP bar when attacking.# +Merge does not exist as an item# +Merge items available does not exist.# +Act# +Pen# +Rec# +Episode# +Loc# +Evt# +New# +Target monsters# +Rewards# +Required Items# +Time Limit# +Deadline# +Search# +Navigation# +Back to Navigation# +View List# +Toggle Minimap# +Read external file path information# +Exit# +Change to basic UI# +Change to simple UI# +Help# +All# +Map# +Npc# +Mob# +Enter search string... (Ex: word word ...# +Scroll# +Use Scroll?# +Service# +Use Kafra Warp?# +Plane# +Use Airship?# +>> Failed to read the target information.# +>> Destination <<# +<< Goal... >># +-----------# +Navigation# += search result (%d) ==# +Npc)%s:%s# +Mob)%s:%s# +Map)%s# +======== Results ==========# +Dist %d Cell %d WarpMove# +Coords %s(%s)# +Goal:%s (%d,%d)# +Boss# +General# +Goal :# +Goal: (%d, %d)# +======= Guidance =======# +%2d) Item:%s => %s Use!# +%2d) %s(%d,%d)=>(%d,%d)# +E%2d) %s(%d,%d)=>(%d,%d)# +E%2d) %s# +Do you want to cancel navigation?# +How to Use Navigation# +------------------- Instruction --------------------# +1) /Navigation or /navi# +ex) /navi prontera 100 100 -> /navi 'MAPNAME', 100, 100# +2) /Navigation2 or /navi2 # +ex) /navi2 prontera 100 111# +-> MAPNAME location (100 90), Scroll | Zeny | Plane (1: Enable or 0: Disable)# +-> /navi2 goes with the case with location coordinates. They must be no less than 3 characters # +3) $$all Output all the items (Can take a while...) # +4) $$lv30 monsters are placed in the output # +5) $$lv20~30 monsters in that level range are placed in the output # +------------------- Description --------------------# +1) One can search for monsters, npcs, maps, or all at once# +2) You can press the search button to get results. It will out put the results depending on what rule you choose# +ex) Drop down box -> Select 'Npc', then type in the box 'Kafra'. Results will now be displayed# +3) When you select an item from a list, information about it are displayed.# +-> When button is clicked, it will point you towards your destination if available# +4) Scroll | Zeny | Plane options can be checked to find a faster route# +5) Guide button is pressed, the result list window displays where routes can change direction# +6) Using the button below, search results can be found# +-> [Results List Window] <-> [View Modes can be switched]# +Level:%d (Boss)# +Level:%d (Mob)# +Water %d# +Earth %d# +Fire %d# +Wind %d# +Poison %d# +Holy %d# +Shadow %d# +Ghost %d# +Undead %d# +Neutral %d# +Medium# +Large# +Small# +Undead# +Brute# +Plant# +Insect# +Fish# +Demon# +Demi-Human# +Angel# +Dragon# +Formless# +Click to move %s# +Move to the Kafra Service Npc# +Click the NPC# +Move %s# +Move to the Airship Service# +By Warp# +End Points: (%d %d)# +That does not support the navigation area# +The purpose is unclear# +Does not meet the map requirement# +Information Failure | Change settings# +Failed to set info for location!# +Failed to find a path# +Failed to find players # +No Information# +Map doesn't support directions# +Please specify target goals.# +Found# +Directions were started# +Is the map that you're looking for mob# +Map appears on the guide you are looking for# +Please navigate using the item# +To find the location, follow the arrows# +Arrived at the target map# +Arrived on the map that has the Npc you're looking for. Follow the arrows to go to that NPC.# +You have arrived at the mob you were looking for# +You have reached your goal# +Please go to indicated direction.# +The goal has been reached# +Navigation >: %s# +Navigation >: Talk to '%s'# +Navigation >: Please move to '%s' map# +Navigation >: Then select '%s'# +Navigation >: Please move to the Airship# +Navigation >: Use the Warp Portal to move to the next area.# +Item: # +$$# +$$lv# +~# +$$all# +Confirm Deal# +Below is the total cost:# + Zeny# +Press buy to confirm.# +%.1f%% (Internet cafe %.1f%% + TPLUS %.1f%% + Premium %.1f%% + %s Server %.1f%%)# +Card Book# +%d%% [ ( Basic 100%% + %s Server %d%% ) * Active %.1f ]# +%d%% [ Basic 100%% + %s Server %d%% ]# +This is PK region. Minors,Please leave immediately.# +Fatigue# +Health and gaming revenue is 100%%.# +Fatigue because it is now a guest of the gaming revenue is down 50 percent.Hope for the proper health# +Now because it is a non-health to the health of the guests want to offline games. If you still are online gaming revenue because the damage to the health of the game falls to 0%% again after 5 hours will be restored offline.# +Online since %d minutes# +Online Time: %d# +Online since %d hours and %d minutes# +/monsterhp : Show the hp of attacked monster. On off# +Skill Points : # +There is no response from the authentification server. Please try again# +Please change your password# +http://www.ragnarok.co.kr# +Guest access is prohibited# +Your System is been Shutdown, %1.2d-%1.2d-%1.2d %1.2d:%1.2d:%1.2d is the end time.# +Selected System Shutdown is activated in your account,Time Left: %1.2d hours %1.2d minutes.# +Replay# +Macro# +Webbrowser# +Navigation# +UAEURL# +Clan Info# +Clan Level# +Clan Name# +Clan Emblem# +Ally Clan# +Hostile Clan# +Send to Clan# +Clan Leader# +Number of Members# +Castles Owned# +Clan Chat# +Go to Page Charged.# +https://gfb.gameflier.com/Billing/ingame/index_new.asp?# +Create Character# +Name does not match# +Enter the name of character# +Sex Selection Window# +Editing of the File Detected# +Items obtained by opening the item is character bounded (cannot move to storage). Do you want to open the box?# +Game Settings# +Game System# +Game Commands# +Game Command ON/OFF# +Macro# +Trading is prohibited in this Map# +Using cart is prohibited in this Map# +In this Map,Effect of Mirace of Sun and Moon is nullified.# +Ranking Board# +Rank# +Name# +Points# +BlackSmith# +Alchemist# +Taekwon# +Killer# +7 vs 7# +RuneKnight# +Warlock# +Ranger# +Mechanic# +GuillotineCross# +Archbishop# +RoyalGuard# +Sorcerer# +Minstrel# +Wanderer# +Genetic# +ShadowChaser# +Sura# +Kagerou# +Oboro# +Select Ranking Type# +Ranking Type# +Currently,Server is full. ^0000ffPeople Currently Waiting : %d Expected Waiting Time : %dSeconds# +Currently,Server is full. ^0000ffPeople Currently Waiting : %d Expected Waiting Time : %dMinutes %d Seconds# +CBT is not an invited user# +------------------- Instruction --------------------# +1) /Navigation or /navi ex) /navi prontera 100 100 -> /navi 'MAPNAME', 100, 100# +2) /Navigation2 or /navi2 ex) /navi2 prontera 100 111 -> MAPNAME location (100 90), Scroll | Zeny | Plane (1: Enable or 0: Disable)# +-> /navi2 goes with the case with location coordinates. They must be no less than 3 characters # +3) $$all Output all the items (Can take a while...) # +4) $$lv30 monsters are placed in the output # +5) $$lv20~30 monsters in that level range are placed in the output # +1 vs 1# +Costume# +Suspicious character job info in slot %d. Please contact the customer support. ErrorCode(%d)# +(%s) %d / %d# +%s-%s(%d/%d)# +Server Exceeded the maximum number of users,Cannot Connect anymore users.# +Server Connection Failed (%d)# +Login Timeout Permitted# +Login Authentication Failed from Authentication Server.# +Guild Cannot use Space in the name.# +Hey,Hello There# +Available Time will End on %d month %d hour %d:%d# +You've lot of time,Play in Peace.# +Your hours will be terminated within this week. Please Charge before termination.# +Your hours will be terminated within 24 hours.Please Charge Quickly.# +Current Time Left:%d hours.Charge the game for uninterrupted play.# +Current Time Left:%d minutes.Charge the game for uninterrupted play.# +Time Left: %d hours %d minutes# +%d%% ( Basic 100%% + Internet cafe %d%% + Premium %d%% + %s Server %d%% )# +After %d hours %d minutes, your game will be terminated.# +This Account is permanently Banned.# +This Account is banned.\nTermination Time:%04d-%02d-%02d %02d:%02d # +Map Name# +Map(Alt)# +Product Information# +Find Information# +Non-Process# +Kafra# +(Arrival)# +Mob)%s:%s(%s)# +Distribution:%s# +Very High# +High# +Average# +Low# +Very Low# +The bank is not available. Please try again in a few minutes.# +Bank Balance is not enough.# +You don't have enough zeny# +Minimum Deposit Amount: 1 zeny# +Minimum Withdrawal Amount: 1 zeny# +You cannot hold more than 2,147,483,647 Zeny# +your account is lock by mobile otp# +MOTP auth fail# +For %d minutes, Job experience obtained from monster is increased by %d%%.# +Current Zeny: %s Zeny# +Zeny# +The Maximum amount is 2,147,483,647 Zeny# +Insufficient bullet# +You entered more than 1 Billion Zeny, the price will be set to 1 Billion Zeny.# +AuthTicket is Not Valid# +ErrorCategory : %d, ErrorCode : %d (%d,%d,%d,%d)# +%d%% ( Basic 100%% + Premium %d%% + Internet cafe %d%% + %s Server %d%% )# +For %d minutes, item drop rate from defeating monster is increased by %d%%.# +For %d minutes %.2d, item drop rate from defeating monster is increased by %d%%.# +The price of^0000FF %s^000000# +100000000# + is over ^FF0000%d00^0000FF million^000000 zeny and# +10000000# + more than^FF0000 %d0^0000FF million^000000 zeny# +. Is it correct?# +Safe check for over 10 mil zeny# +https://www.warpportal.com/account/login.aspx?ReturnUrl=%2faccount%2fpayment.aspx# +https://kepler.warpportal.com/ro1/purchase/?step=1&steamid=%lld&accountname=# +A giant crevice appeared in Bifrost, the bridge between Splendide, the end of the world and the floating continent of Alfheim, and you do not know the source of the labyrinth forest.# +This is a marker indicating the end of the trip, a new world is opening indicators! Guardian, such as the lyrics to the temptation was gradually losing the soul.# +For thousands of years, a mysterious melody has mesmerized the guardian. After a millennia of slumber, the guardian became confused about what he had been protecting all these years, and began to suspect that he might be the one who has been sealed and hidden away.# +When the melody reached its peak, a giant crevice appeared in Bifrost, the bridge between Splendide, the end of the world and the floating continent of Alfheim. As a result, the two worlds were cut off from each other, causing a big problem for the people.# +Now, the only way to get to Bifrost is through the Labyrinth Forest. Nobody knows how the forest came to exist, and nobody has ever come out of it alive...# +Swallowed countless adventurers to put a hell of confusion, wandering in the forest labyrinth of nowhere, like the heart of a woman was being extend deeper confusion.# +You can enter only numbers.# +Exchange or store window is active and cannot register the withdrawal.# +Go to# +Compare# +This Weapon is not suitable for the bullet you are equipping.# +This bullet is not suitable for the weapon you are equipping.# +This item you want to sell is not registered. Please register the item first.# +ITEM# +Guild storage is not available.# +You are not joining any guild. Please try again after joining a guild.# +Other guild member is using it. Please try againt later.# +Strg Permit# +Guild Storage# +You do not have permission to use guild storage.# +Limited Sale Registration Window# +Item DB Name# +Item DB Number# +Number of Sale# +Sale Start Time# +Time to sell# +Please enter amount you want to sell# +Enter start time of sale# +Start time does not match the scope of sales.# +Please enter the time# +Please enter the Item DB Name# +Item ID lookup failed. Please try again later# +>> ItemName : %s / Price : %dc / Quantity : %d / TimeOfSale : %dMonth:%dDay:%dHour:%dMinute ~ %dMonth:%dDay:%dHour:%dMinute# +Registration successful# +Registration failure. Please try again later.# +Item has already been registered. Please try again later.# +Failed to remove this item. Please try again later.# +%s item has been removed.# +Special# +Update quantity of limited sale items# +Sales closed# +item count should be renewed# +Item stock is low. You can only buy %d items.# +%s Items are on sale# +%s time-out or sale of the items sold has been shut down due to the limited sales # +/limitedsale# +http://www.ragnarokeurope.com/news/home-r70.html# +http://www.ragnarokeurope.com/index.php?rubrique=70&Steam# +Item purchase successful# +You do not have enough items.# +Character with that name is not possible to invite.# +Character with that name is not possbile to invite to the guild.# +Unable to purchase, this item is out of stock.# +Cannot save location as a Memo Point at current location.# +Cannot purchase item, You exceeded the weight limit.# +No.# +Item# +Number# +Name# +Time# +Input/Output# +Log does not exist.# +Entire# +Insert Symbol# +Remaining Time# +Guild Storage Logs# +100 entries are displayed.# +Guild Storage is open only for 2 minutes, and will close automatically.# +Incorrect GameSamba ID. Please Try Again.# +%s [%d Option] : %d Quantity# +Requires a Coin.# +%d Coins are required.# +[Gatling Gun] weapon class must be equipped.# +[Shotgun] weapon class must be equipped.# +[Rifle] weapon class must be equipped.# +[Revolver] weapon class must be equipped.# +[Silver Bullet] must be equipped.# +Item Sell History# +Item Purchase History# +[Grenade Launcher] weapon class must be equipped.# +[Heat Barrel], [Madness Canceller] and [Platinum Alter] cannot be used while sitting.# +Cannot use skill in this map.# +If you are using a guild storage, all items inside it will disappear.# +http://ragnarok.gamesamba.com/paytest.html# +Please enter a password to login.# +Pet Evolution# +Evolution - %s# +Evolution requires the following ingredients:# +Do you want to evolve your pet?# +Unknown Error# +No pet can be summoned.# +It is not requested petal.# +Evolution material is low.# +Lack of required materials for evolution.# +Pet can only be evolved when intimacy is Loyal.# +Automatic feeding# +Your pet has been fed. %s (%d) remaining# +Automatic feeding is ON# +Automatic feeding is OFF# +Update# +%d minutes ago# +%d hours ago# +%d days ago# +%d%% ( Premium %d%% + %s Server )# +Mailed# +Your mail has been sent.# +This item has been moved to the inventory.# +Failed to get items.# +Please empty your inventory.# +Zeny received.# +Failed to get zeny.# +Exceeded the limit of zeny.# +Item successfully attached.# +The name of the recipient must be included.# +The length of the title must be 4 to 50 characters long.# +Mail delivery failed.# +Transmission has failed to inappropriate items.# +Information of the recipient does not exist.# +%s [%d Option]# +Level, enter a number between 1 and %d.# +Please free the window possessing space.# +Sending mail count exceeded.# +You cannot open the mail.# +You currently belong to a clan.# +Internet cafe Gold mileage information# +Unequip pet accessory first to begin pet evolution# +in %d minutes# +in %d hours# +in %d days# +Press the OK button to confirm the C-CODE.# +Please claim all attachments before deleting your mail.# +You cannot send any more zeny.# +Fee: %s Zeny# +The recipient's name does not exist.# +E X P : %.1f%% ( basic %.1f%% premium %.1f%% + %s %.1f%%)# +DROP : %.1f%% ( basic %.1f%% premium %.1f%% + %s %.1f%%)# +DEATH : %.1f%% ( basic %.1f%% premium %.1f%% + %s %.1f%%)# +You can accumulate points of Internet cafe Gold up to %d points maximum.# +This function cannot be used in this server.# +Imposible to use in server.# +The auction is not available in server.# +The deal is imposible in server.# +Item discard is imposible in server.# +Store selling feature is not available.# +The SP's summoned enough.# +%s/%s# +The maximum length of the message content is 1K.# +Failed to attach an item.# +The weight of the items that can be attached to mail has been exceeded.# +Is already in service. Please try again in a few minutes.# +Unable to open the window of Lucky Roulette.# +Unable to close the window of the Lucky Roulette.# +You cannot start a roulette wheel of fortune.# +Points is required to play Lucky Roulette.# +You cannot receive a winning items.# +The number of items in the inventory has been exceeded. # +The weight has been exceeded. Please free up the possesion window.# +Failed to open stalls.# +The roulette wheel is spinning. Please try again after checking with prizes.# +Lucky Roulette# +Notify when item sells out# +Please check the fees.# +Verify user name# +Schedule deletion# +Achievement Challenges# +Achievement score# +Achievement rank# +[%5d] points to the next rank# +Progress# +Recent completed achievements# +Cracker Item# +Cracker : %d / %d # +Cracker is low.# +%s # +Summary # +General # +Character # +Action # +Other # +Adventure # +Rune Midgarts # +Schwartzvald # +Arunafeltz # +New World # +Localizing # +Dungeon # +Battle # +Duel # +Training # +Quest # +Episode # +General # +Memorial # +Midgard # +New World # +Other # +Feat # +Achieved challenges# +You cannot add anymore.# +< %s > achieved.# +only otp user login allow# +When this button pressed, you will receive a specified initialized roulette item.# +When this button pressed, the flashing arrows from the lines of the roulette wheel begins.# +Title# +Disable Title# +Can't create a Guild in this area.# +Can't disband a Guild in this area.# +Can't join a Guild in this area.# +Can't leave a Guild in this area.# +Can't expel Guild member in this area.# +Can't change a Guild title in this area# +Please empty at least 5 amount of possession in item window.# +E X P : %.1f%% ( basic 100.0%% Internet cafe %.1f%% + %s %.1f%% )# +DROP : %.1f%% ( basic 100.0%% Internet cafe %.1f%% + %s %.1f%% )# +DEATH : %.1f%% ( basic 100.0%% Internet cafe %.1f%% + %s %.1f%% )# +The number of items that can be attached is exceeded.# +Notify when item purchased# +Unable to attach the items.# +Because you cannot win a slam room and turn the roulette of the next higher step.# +Write reply# +Read mail# +Delete mail# +Crackers : %d# +%s %s crackers # +Crackers # +Total : %d Crackers # +%d -> %s Crackers # +%s Crackers # + Current Crackers : %s# + %s : %s Crackers# +%10s Crackers# +Total : %s Crackers# +* Commission 3% / Minimum 1 Crackers comission deducted# +The Crackers.# +^0000ff more than crackers^000000Did you enter the correct amount?# +Over than 10billions secure check# +If you fill over 1 billion, the price will be automatically set as 10 billion Crackers.# +If you fill over 9,999 Crackers, the price will automatically set as 9,999 Crackers.# +There are items priced 0 Crackers. You cannot open vending.# +The player have over the Crackers limit. Trade failed.# +Please fill out %s item price less than 1 billion Crackers.# +%s : %s Crackers => %s ea.# +Limited price : %s Crackers# +%s %s Crackers %d# +%s %d are sold. In total %d Crackers . 3%% charge will be imposed.# +RODEX# +SEND# +RECEIVE# +Please close the mail compose window.# +Server access denied(A)# +Server access denied(B)# +You need to unequip Arrow and Ammunition.# +Consuming item in inventory will close mail compose window.# +You don't have any Magnifier.# +Close email window if you want to discard item.# +The player has already requested you to be a friend.# +SCRIPT ERROR AID# +\nErrorfile : %s\nErrorLine : %d line\nErrorContent: \n*before line : %s \n*Errorline : %s \n*next line:\n %s# +^ff0000Do you want to purchase the item? after confirmation will consume %d point and %d crackers.# +Close# +Quest# +Show Quest icon# +Facility# +Show Facility icon# +Guild/Party# +Show Guild/Party# +Record# +Boss Monster# +I# +Do you want to delete it?# +Quest NPC# +Record content# +Store# +Record# +%s [%d ea.] %d ea.# +%s [%d ea.] %s Zeny# +%s [%d ea.] %d %s %d -> %s %s# +%s [%d ea.] %d %s %s %s# +%s [%d ea.] %d -> %s %s# +%s [%d ea.] %s %s# +The minimum trading unit must be 100 crackers or more.# +Hair Color# +Hair Style# +Cloth Color# +Cloth Pattern# +In this map You can't memorize and zoom the minimap.# +Enter zeny below 2,147,483,647.# +Please enter at least 1 zeny.# +You don't have any zeny.# +Zeny Storage# +In Bank:# +On Hand:# +Deposit# +Withdraw# ++ 1z# +- 1z# +Max# +There is no Input value# +Insufficient Zeny# +Input Required# +Numbers only# +Exceeded max input# +Below Minimum Input# +Insufficient Zeny# +Insufficient funds# +Exceeded max zeny# +Can't be dropped# +Can't be put in Storage# +Can't be put in Cart# +Can't be attached in Mail# +Can't be traded with player# +Can't be auctioned# +Can't be put in Guild Storage# +Can't be sold to NPC# +Item move restrictions# +Click here to create a Character# +Please unequip ammunition first.# +Unable to enter, due to exceeding number of players.# +Access denied, due to exceeding number of players.# +%.1f%% ( %s Server: %.1f%% + Premium:%.1f%% )# +%.1f%% ( %s Server: %.1f%% + Premium:%.1f%% )# +Unable to use because there is duplicate item.# +Unable to use because there is similiar effect exist.# +Screen shake ON# +Screen shake OFF# +Illegal program detected.# +Send a mail# +E X P : %.1f%% ( basic 100.0%% VIP Bonus %.1f%% + %s %.1f%%)# +DROP : %.1f%% ( basic 100.0%% VIP Bonus %.1f%% + %s %.1f%%)# +DEATH : %.1f%% ( basic 100.0%% VIP Bonus %.1f%% + %s %.1f%%)# +Name with this tag cannot be used.# +Style Shop# +No Coupons. Please visit the Cash Shop to buy one.# +Please open the item coupon box in the inventory.# +Are you sure you want to delete this style information?# +Slot is full, please delete a character.# +Item cannot be restored, are you sure want to apply it?# +The current style is saved.# +There are plenty of zeny in the bank, Please go to the bank now.# +moving...# +You are not allowed to fly over the sovereign airspace of the country.# +Airship flight is temporarily unavailable due to atmospheric instability caused by magic.# +Private airship# +Please try again in a moment.# +Not enough Zeny to use the private airship.# +Not enough item to use the private airship.# +You don't meet the level to use the private airship.# +You cannot move to the selected point by the private airship.# +You cannot use the private airship from your current location.# +Accessory# +Second costume# +Wardrobe# +This hairstyle cannot be dyed.# +Press an arrow to choose the style you want.# +Come and see the new styles.\n(Purchased accessories will be sent via RODEX.)# +Basic style# +You can level up the skill from the base Lv. %d.# +Special symbol can't be used in name# +MaxHP is too low to use this skill# +MaxSP is too low to use this skill# +Compare equips# +Lock item drop# +Screenshot is not attached# +Twitter# +General# +Notice# +# +Refresh# +%d minute# +%d hour# +%d day# +Returned# +Do you want to delete the message?# +Show information# +Zoom in# +Zoom out# +Maximize# +World Map# +Total possession item type# +/minimap# +Show minimap buttons# +Hide minimap buttons# +Show guild member login status# +^0000CCIntimacy:^000000 %s# +Before confirmation# +Team name# +Leader# +Time limit exceeded. Closing the client# +Input error. Closing the client# +Correct input. A small buff has given to you# +Enter 4 english words and 2 chinese words# +Your entered answer is [%s]. Is it right?# +Icon is unchecked# +Incorrect input (Remaining chance: %d)# +Do you want to announce %d to player?# +Message has been sent to player# +Needed Data for Query illegal software are not signed.# +The player is being monitored.# +Already signed in investigation system.# +Failed to store icon.# +Failed to store replied answer.# +Hello, illegal software is being monitored.# +Please enter the text below within the specified time.# +If you enter the text wrong three times, you will get banned.# +Remaining chance : %d# +Character# +Range# +You use the left mouse button to specify the role# +You use the left mouse button to specify the range# +Not a valid range, please press Enter# +E X P : %.1f%% ( basic %.1f%% %s %.1f%%)# +DROP : %.1f%% ( basic %.1f%% %s %.1f%%)# +DEATH : %.1f%% ( basic %.1f%% %s %.1f%%)# +The character name will be changed: %s # +Synthesis of the required materials# +Insufficient synthesis materials# +Required material %d ea.# +Refine value is to low for synthesis# +Do you want to sign in to the adventurers?# +Please leave a message# +Please enter the text on the graph# +%d second left# +Please enter your 6 identification number.# +Identification number.# +It's not a 6 identification number. Please try again# +The message has been deleted# +Please select the area where the private airship will move# +E X P : %d%% ( basic 100.0%% %s %d%%)# +DROP : %d%% ( basic 100.0%% %s %d%%)# +DEATH : %d%% ( basic 100.0%% %s %d%%)# +Move to the destination# +The [%s] is not present, the default AI will be used instead.# +%.1f%% ( Basic 100.0%% + Premium %.1f%% + %s %.1f%%)# +Would you like to open a shop at this location?# +Doram race can't wear this clothes# +Street vending sales will be traded on RODEX# +30,000 z# +Malangdo Special Can 100 pc# +Cannot carry anymore because weight limit is over 80%# +Unsold items are sent to RODEX# +Wear costume# +Assign Guild Leader# +Are sure want to assign %s as guild leader? After assigned your position will become %s# +Cancel# +Do you want to close the shop?# +%02d day %02d hour %02d min %02d sec# +Unable to sign in# +Unable to sign in because the maximum number of sign-in is exceeded# +Please select a location for your shop# +Pet name will be changed to ^0000ff^0000ff %s^000000^000000, do you want to continue?# +Trade date : # +Trade item : # +Trade quantity : # +Trade price : # +Total trade : # +Open vending sales agent# +Open vending purchase agent# +Close vending sales agent# +Close vending purchase agent# +Balance: # +Item list: # +Vending agent# +Returned item: # +Returned quantity: # +Returned date: # +Total trade will be sent to RODEX # +Name isn't available# +Item has been delivered# +Thank you for purchasing# +NPC sale lock applied# +NPC sale lock# +There is no callable location nearby# +Capture full screens# +Capture part of screen# +Send# +Family Affairs agent# +Acknowledgement of family member registrations.# +Dear whom it may concern. \r\n\r\n Today, \"%s\" and \"%s\" 's son/daughter \"%s\" has fully separated and independent from your member of family.\r\n\r\nHereat, we inform you in writing.\r\n\r\nPlease contact to Prontera Family Affairs if you have any enquiries.\r\n\r\nThank you.# +Equip# +No image# +[%s] is blocking Call Massage.# +Currently in WoE hours, unable to delegate Guild leader# +You have to wait for one day before delegating a new Guild leader# +When adopted, character will not able to transcend, maximum stats will be limited, MaxHP and MaxSP will be reduced.\nAre you sure you want to continue?# +Refine# +It's your lucky day ;)# +Insufficient Zeny# +Not enough Adamantine Blessing# +This equipment can not be refined# +Upgrade success!# +Upgrade failed!# +Back# +Success# +Return# +With Mr/Miss# +The Homunculus's name will be changed to^0000ff^0000ff %s^000000^000000, Are you sure?# +Call function is ON# +Call function is OFF# +Display Call messages# +This character is currently opening a shop and can't be deleted# +The same vend shop NPC has been set up# +Opening shop is not allowed on this location# +Opening shop is not allowed when there is other character# +Failed to feed pet, please close RODEX window# +Swap Equipment# +Equip# +Adamantine Blessing is required!# +Equipment's refine level will be decreased when refine fails# +Equipment will dissapear or refine level will decrease when refine fails# +You cannot use RODEX while refining. RODEX has been closed.# +You cannot use RODEX while refining.# +Please close other windows to continue.# +Aura effect is ON# +Aura effect is OFF# +Aura effect is OFF. Please turn it ON and try again# +You need %d bullet(s) to use the skill.# +Do you want to swap the equipment?# +You can not do it while KO'ed.# +You can not do it while casting# +You can not do it while trading# +You can not do it while opening vendor# +You can not do it while talking with NPC# +You can not do it while opening chat room# +Party members are not connected.# +You need %d arrow(s) to use the skill.# +Align items# +To discard item, please close the Swap Equipment window.# +There is no item to replace.# +Deleted character# +%y.%m.%d# +Access date: %s# +You can not use bank while refining. Bank has been closed.# +You can not use bank while refining.# +This item has been set for Swap Equipment.# +Human# +Swordman, Mage, Merchant, Acolyte, Thief, Archer, Expanded Classes# +Doram# +Summoner# +Dominant race of Rune Midgard. Unlimited potential. Excellent adaptability to solve problems.# +Race of Pasta continent with natural born curiosity and sparkie character.# +Possession limit is over 70%, or you have less than 10 free inventory space.# +C# +C# +Another work is in progress.# +Overheat limit : %d# +You can't invite or withdraw while in Memorial dungeon.# +Profanity detected.\nPlease check again.# +Please enter at least %d characters. If you don't have account, please click [Register] button to create account.# +Please enter at least %d characters.# +A work is in progress, please try again.# +%.1f%% (PCcafe %.1f%% + TPLUS %.1f%% + %s Server %.1f%%)# +Unable to register item# +/100# +/2000# +https://member.gnjoy.com.tw/mRO_SecPwd.aspx# +The selected emblem isn't available, try placing it in 'emblem' folder then try again# +New Ragnarok Online# +Please obtain permission first from other user that appears in screenshot or chat room# +Unable to swap equipment.# +Loading the player's name# +The message contains unrecognizable character# +Purchase failed# +ID card is incorrect# +Close# +Rules# +Buy 1 ea.# +Buy 10 ea.# +Buy 100 ea.# +1st prize# +2nd prize# +3rd prize# +Currently unused# +Currently unused# +Zeny Lotto Winners# +Lottery purchase amount# +Participate in role# +1st prize# +2nd prize# +3rd prize# +Purchase reward items# +^1a1a1a1 ^b%d ^/b Lottery will spend \n^4435b2%d zeny^1a1a1a\nBuy it?# +Lottery purchase success# +Insufficient Zeny to purchase lottery ticket# +Maximum amount of purchase is 1000# +Yes# +No# +HP# +SP# +Lv# +Lv# +Exp# + all on# +Play Replay File# +P# +Total# +Basicinfo# +Equip# +Item# +Skill# +Guild# +Party# +Chatting# +Shortcut# +Status# +ALL# +User defined file name# +Repeated File Check# +on# +# +Select Skin# +Unable to delete lottery ticket# +/achievement# +Zeny lottery# +%d Zeny lottery prize# +%d bonus prize: %s# +Total Zeny reward# +Total %d reward: %s# +Purchase Zeny# +Refund amount: %d Zeny\r\nRefund reason: Server failed to draw lottery# +Add small party window# +Remove small party window# +Lottery drawing is over, please verify if you've won the prize.# +%d month %d day# +Until next level# +Complete# +Incomplete# +(Complete!)# +(Incomplete)# +Swap Equipment# +CHANGE# +Strength: ^66cc33ATK^ffffff and ^66cc33Weight Capacity^ffffff# +Agility: ^66cc33ASPD, FLEE^ffffff and ^66cc33DEF^ffffff# +Vitality: ^66cc33MaxHP, DEF^ffffff and ^66cc33MDEF^ffffff# +Intelligence: ^66cc33MATK, Casting Time^ffffff and ^66cc33MDEF^ffffff# +Dexterity: ^66cc33Ranged ATK, HIT, MATK^ffffff and ^66cc33Casting Time^ffffff# +Luck: ^66cc33Critical, HIT, ATK, MATK^ffffff and ^66cc33Perfect Dodge^ffffff# +Physical Damage# +Physical Defense# +Hit Rate# +Critical Rate# +Affiliated Guild# +Status point# +Magical Damage# +Magical Defense# +Flee Rate# +Attack Speed# +Shortcut Description# +Effect# +Skill shortcut (F1 ~ F9)# +Screenshot# +Zoom Out# +Zoom In# +Guild# +Bank# +Mail# +Cash Shop# +Sit# +Move# +Rotate# +Party leader role must be appointed to other party member before leaving the party# +Stop watching the replay?# + have been placed on the Swap Equipment window.# + have been removed from the Swap Equipment window.# +In the last row# +%.1f%% (Basic 100%% + Bonus%.1f%%+ %s Server%.1f%% )# +Ctrl# +Set shortcut# +Your monthly subscribsion will expire in %s# +Unable to find replay file# +Shoes# +Headgear# +Armor# +Garment# +Accessory# +Costume# +Sort order# +General# +Costume# +Title# +/quake : Screen shake effect ON/OFF# +/aura2 : Completly turn aura effect ON/OFF# +Basic Settings# +Advanced Settings# +Set Basic Settings# +Set Basic Settings?# +Set to these values?# +To apply these values, client restart is required, proceed?# +Fog# +Simplify aura# +Enable aura# +Effect# +Shadow# +No Shift# +Select hardware T&L acceleration# +Select game resolution# +Enable# +Enable# +Effect# +Control# +Graphic Device# +Resolution# +Fullscreen# +Fixed mouse# +Fee : # +Total fee : # +Select receiver# +Select receiving group# +Change size(F10)# +Loading mailbox, Please don't delete the^c92114 message^000000~!!# +NOW LOADING..# +Title# +Sender# +Can't open two game windows, game installation might corrupt# +More commands# +This account does not exist.# +Passwords does not match.# +Failed to pass IP authentication# +No identification number, supplement your registration information# +Account block# +System error# +unknown error found.# +Navigation guide icon set# +navigation UI# +Navigation information# +Share current location# +Search result[0]# +Search & description# +Location error# +Search result[%d]# +Show navigation icon setting# +Path that uses zeny# +Open navigation window# +Account is not active# +Click on the location to share it in a chat room# +4. Select Service project, Contains use of zeny and airship# +5. [<-]ID : navigation mode<->swap search mode# +Share mode -> use it when searching# +%lld Base Experience obtained# +'%lld' Base Experience# +^b- Street vending fee description^/b: will be set according to item price, with certain percentage of fee.^b> Fee rate^/b The proportion of fee described as follows: 0 z ~ 10,000 z = Fee rate : ^1567fe0%^000000, 10,001 z ~ 100,000 z = Fee rate : ^1567fe2%^000000, 100,001 z ~ 1,000,000 z = Fee rate : ^1567fe4%^000000, 1,000,001 z ~ 10,000,000 z = Fee rate : ^1567fe6%^000000, 10,000,001 z ~ 100,000,000 z = Fee rate : ^1567fe8%^000000, more than 100,000,001 z = Fee rate : ^1567fe10%^000000# +Total amount : # +~ When selling items, total amount of zeny received # +~ When buying items, total amount of zeny reduced # +Open chat room# +Character with this level cannot join the party# +'%lld' Job Experience# +%lld Job Experience obtained# +Unable to open a shop at the current location# + seconds left before it become usable again.# +Cap# +SNS Failed to send(%d)# +SNS Failed to connect to server# +SNS will available after login.# +Address doesn't exist.# +Mini party windows can't be overlapped.# +My Shop# +TIPBOX# +Tipbox# +Tweet success.# +Refine# +Please return then select refine material again.# +Closed due insufficient refine material, please check again.# +Closed due insufficient zeny, please check again.# +Closed due insufficient Adamantine Blessing, please check again.# +This item has been broken.# +All stats have been reduced.# +All stats reducement have been disabled.# +OTP Password is 8 digits.# +Integrated Account# +Ragnarok# +Currently service under maintenance.# +Please enter a search term# +MOTP# +Certification Number# +GNJOY MOTP downloaded to your phone, Please enter your verification number.# +There is no party member that can be delegated. Do you want to disband the party instead?# + - Age 18+# + - Paid server# + - Free server# +Smooth# +Normal# +Busy# +Crowded# +map# +The Server Storage can only store inventory items.# +You can't store Cute Pet Egg in Server Storage.# +You can't store Forged/Brewed item in Server Storage.# +%s can't be stored.# +Destroy instance# +[%s] successfully upgrades an equipment, [+%d %s] obtained.# +[%s] fails to upgrade [+%d %s].# +You can leave a party after delegation.# +Upgrade# +Downgrade# +Base# +Modified file is found. Please restart the game.# +%s can't be used in this map.# +Auto \nFeeding# +You can't feed Homunculus while the RODEX window is open.# +Homunculus has been fed. '%s' - %d remaining# +Homunculus automatic feeding is ON# +Homunculus automatic feeding is OFF# +Homunculus receives \n10% of master's experience.# +Rate : %d%%# +The target isn't in attack range vicinity. Please use 'Alt + Right Click' to command Homunculus attacks a target.# +There is no target in attack range vicinity. Please use 'Alt + Right Click' to command Homunculus attacks a target.# +Sell List# +Buy List# +New# +Popular# +Limited Sale# +Rental Equipment# +Permanent Equipment# +Scrolls# +Consumables# +Other# +Special# +Charging# +Purchase# +https://landverse.maxion.gg/TopUp# +Item Search# +Free points# +Use Free points# +Owned points# +Refresh# +Star Emperor(Girl)# +Soul Reaper(Girl)# +Star Emperor(Boy)# +Soul Reaper(Boy)# +Your weight limit is over %d, HP and SP will not recover naturally.# +The number of items that can be purchased in 8.# +https://landverse.maxion.gg/# +UNKNOWN ERROR:%d# +NOT USER# +THIS ACCOUNT ID IS BLOCKED# +COUNTRY REJECT (OR NOT AVALIABLE USER )# +NOT MATCH PASSWORD# +NOT EMAIL CERT# +PAYPAL BLOCK# +COUNTRY REJECT# +PAYPAL BLOCK# +WEB BLOCK# +AGE LIMIT USER# +PASSWORD HAS NOT BEEN CHANGED FOR MORE THAN 90DAYS# +INPUT DATA ERROR# +ERROR DATABASE# +ERROR SYSTEM# +Use %s# +Payment# +This map isn't available for restart.# +You can't teleport in this map# +Insufficient item.# +Please enter one line without line breaks.# +Names with bad words can not be registered.# +Go to the official website for membership.# +TokenAgency Server connection failed# +Billing information# +Delete reservation# +Cancel reservation# +Game start# +Delete# +Character List# +Notice# +Create# +Hair Style# +Hair Color# +Check availability# +%d hour %d min %d sec# +MOTP Input time exceeded. Please log in again from the beginning.# +Return# +You can not use items.# +Can not move to the same map.# +It is impossible to move when your character KO'ed# +Character Creation# +Registration in Adventurer Agency# +Stop recruiting# +Adventurer Agency Settings# +Note# +Quest# +Field# +Dungeon# +MD# +Paradise# +Other# +Search# +Reset# +Registration for Party# +Purpose# +* Please respect the rules of the server.# +Register# +Contains words that cannot be used.# +Join# +PM# +Party recruitment suspended# +Edit# +Entire# +[% s] has requested to join the party.# +Login# +Account# +Exit# +Apply# +Connect# +Confirm# +GNJOY MOTP downloaded to mobile phone# +Please enter the verification code.# +NPC will move to random coondinate of the map.# +Taekwon# + is blocked.# + Failed to block.# + Failed to block.(Maximum number exceeded)# + is unblocked.# + Failed to unblock.# + Failed to unblock.(Maximum number exceeded)# +There is no block list.# +-Block list-# +Act# +Rec# +Pen# +Quest information# +Description# +Monster# +Reward# +Base Exp# +Job Exp# +Item# +Show/Hide# +Hide# +Display small quest window# +Input time# +Save ID# +Password# +ID# +Sign Up# +Leader# +You don't meet the required level to join the party.# +Failed to register for the Adventurer's Agency.# +Registered for the Adventurer's Agency.# +Enter search details# +Tank# +%.1f%% (+ %s server %.1f%%)# +/ex (Character name) or /block (Character name) : Block all chats and whispers from a character# +/in (Character name) or /release (Character name) : Allow all chats and whispers from a character# +/ex or /block : Block all chats and whispers from a character# +/exall or /Blockall : Block all chats and whispers from all characters# +/inall or /Releaseall : Allow all chats and whispers from all characters# +Blocked all chats and whispers from all characters# +Failed to block all chats and whispers from all characters# +Allowed all chats and whispers from all characters# +Failed to allow all chats and whispers from all characters# +Opening# +Do you want to return to the login screen?# +STR and ATK increased.# +STR, INT, DEX and HIT increased.# +HP and DEF increased.# +Gelstar# +Account Buff# +Fixed service# +Your connection is currently delayed. You can connect again later.# +Your connection is currently delayed, Please reconnect again later.# +Name with bad words can not be searched.# +The party master cannot accept the request.# +No party can be found.# +Dealer# +https://landverse.maxion.gg# +UP# +DOWN# +You're already friends# +Can't find other party# +You're already a friend with another character.# +Sprite Marble effect is ON# +Sprite Marble effect is OFF# +This account has limited in-game access due to a secondary password mis-input. \n %02d hour %02d minute until released, To release it go to -> Change personal information -> and enter your secondary password.# +You've entered wrong password 3 times. Your account will be locked for 24 hours to secure your account.\n To release it go to -> Change personal information -> and enter your secondary password.# +Officer# +Day %d attendance reward.# +There was an error when loading the data account settings. (Please restart to retry.)# +This skill can only be used when in party.# +Party recruitment has been canceled.# +Guild experience can be accumulated up to %d%%.# +Guild level is at maximum, you can no longer contribute to guild exp.# +To keep your account secure, please login to MOTP homepage.\nPlease try to log in to the home page.# +Physical attack and magical attack have been improved.# +Physical attack and magical attack have been reduced.# +ROVerse %s attendance reward# +Event period: month %02d day %02d - month %2d day %2d 24:00# +day %d# +Click the item to claim day %d reward# +You have claimed day %d reward# +D-day# +# +Attendance check failed. Please try again.# +Attendance check# +Currently there is no attendance check event.# +Guild experience reaches max, You can no longer accumulate Guild EXP# +Character experience reaches max, You can no longer accumulate Guild EXP# +message# +Failed to send message to twitter# +Must at least 4 characters in English, or 2 characters in Hangul.# +Monster taming is prohibited in this map.# +Fetching rank...# +This skill can only be used when in party.# +Partner's SP is insufficient or skill is disabled.# +Force close part time shop notification email# +Hello. Operation team.\r\nThose part-time job booths were confirmed to be inconsistent with the operation policy and were forcibly terminated.\r\nIf you would like more information, please contact us.\r\n thank you# +You can't enter value more than 50%.# +Sent a request to join the party.# +You can not register a party at an Adventurer's Agency.# +Accept# +Refuse# +Healer# +The character could not be found.# +Close shop# +Unable to find applicable party.# +You can not join the party because your job level is low.# +The current requestor is in an area where it's not possible to join the party.# +Party number exceeded.# +%s party leader has approved you to join the party.# +%s party leader has rejected you from joining the party.# +%s is already in the party.# +%s has accepted party invitation.# +%s refused party invitation.# +Since you can not receive party request, %s's party invitation has been rejected.# +Adventurer's Agency List# +Request to join the party# +If you are not a party leader, you can not register party at the Adventurer's Agency.# +You can not stop the party recruitment.# +Support# +Zoom Out# +%s : Zoom Out can be turned On Off# +Zoom Out is turned (On)# +Zoom Out is turned (Off)# +/zoom# +Adventurer's Agency# +You can not request to join, if you are a party leader.# +Registering at the Adventurer's Agency. Please wait.# +You can no longer choose a job.# +Block party request from this player.# +After a few moments, please re-open.# +This function is not available for %d minutes during WoE.# +/viewclear# +Translucent building ON# +Translucent building OFF# +Building transparency# +Failed to revert, please close the window.# +Emblem Frame# +Emblem displayed with border# +Emblem displayed without border# +No equipped weapon.# +Insufficient energy sphere.# +Contains skill (%s) that can't be learned.# +/frame# +After Weapon Blocking is triggered, possible skills are available for use for limited duration.# +The username or password is incorrect.# +E X P : %.1f%% ( basic 100.0%% %s %.1f%%)# +DROP : %.1f%% ( basic 100.0%% %s %.1f%%)# +DEATH : %.1f%% ( basic 100.0%% %s %.1f%%)# +Available in English or Russian only.# +you must have an AccessTicket to login# +Loading Guild Storage.# +NOW LOADING..# +Delete# +Reply# +Send# +Validate name# +Notice# +General# +Return# +Search# +Failed to feed the pet. Pet in a state that can't be fed.# +Failed to feed the homunculus. Homunculus in a state that can't be fed.# +money# +%s %d ea# +Exchange failed.# +Exchange successfuly completed.# +Not enough items to exchange.# +The item has been sold and out of stock.# +KO'ed# +PvP# +Expand possession limit# +Do you want to expand the maximum possession limit by using ^0000ff%s^000000? \nIt will expand from (^0000ff%d^000000) to (^0000ff%d^000000).\n^ff0000 Expanded item possession limit can't be reversed.^000000# +Failed to expand the maximum possession limit.# +To expand the possession limit, please close other windows.# +Failed to expand the maximum possession limit, insufficient required item.# +You can no longer expand the maximum possession limit.# +You have successfully expanded the possession limit.# +You can't have more the same %d item at a time.# +It is not possible to purchase as it will exceeds the possession limit.# +You can only buy one item at a time.# +Star Emperor# +Soul Reaper# +The settings are stored on the server on normal exit.# +Capture Monster# +message# +TITLE# +Expand Damage# +Display Map Name# +System Message: The current shop display function is in %s state. (/showshop)# +Vertical Sync# +Material# +http://rodata.zhaouc.com/renwu.html# +Title# +Frame Limit# +If it exceeds %d it can no longer be installed.# +Destination# +Please try again in a few minutes.# +This file cannot be registered.# +Delete Selection# +Delete all# +Are you sure you want to delete all mails in the [%s] mailbox?# +Retrieve selected# +Retrieve all# +Would you like to retrieve the attachment of the selected email?# +Would you like to retrieve all attached items in the [%s] mailbox?# +Skill Bar 2# +Change Skill Bar# +��c# +��e# +����# +��e# +��C# +��c# +This window cannot be closed while loading.# +There is no Magic Spellbook available.# +Items used during movement cannot be exchanged.# +I purchased a free pass# +While using the free pass, no related items are consumed.# +Apply# +Stop# +Free Movement# +%d hours, %s %d# +Using Free Pass# +Trait Status# +Power: ^66cc33Status ATK^ffffff and ^66cc33P.ATK^ffffff# +Stamina: ^66cc33Physical Resistance^ffffff# +Wisdom: ^66cc33Magical Resistance^ffffff# +Spell: ^66cc33Status MATK^ffffff and ^66cc33S.MATK^ffffff# +Concentration: ^66cc33HIT, FLEE, P.ATK^ffffff and ^66cc33S.MATK^ffffff# +Creative: ^66cc33H.Plus^ffffff and ^66cc33C.RATE^ffffff# +Final Physical Damage# +Final Magic Damage# +Physical Resistance# +Magical Resistance# +Heal Plus# +Critical Damage Rate# +Trait Points available# +J.Lv# +AP# +Go to destination# +Commercial/Defense Check# +Would you like to move to "%s" Management Territory?\n%d Zeny will be consumed with every move.\n(%d Zeny will be consumed during WoE times.)# +\nManagement Territory: "%s"\n \nDefense: %d / %d\nCommercial: %d / %d# +This feature is not available in WoE territory.# +This character has not acquired Basic Skills skill.# +The connected IP cannot be used for Ragnarok:Zero.\nPlease contact the customer center or homepage.# +Mounting/Dismounting# +Import# +Get the item information registered in the previous stall.# +Login is restricted due to server issues.# +Message# +You can play only with +18 or higher.# +We don't recommend playing over 3 hours.# +You don't have enough AP.# +It cannot be combined due to it's high refine level.# +The refine level is higher than required for the combination.# +A card is inserted or it's enchanted.# +��A# +Z# +Total : %s Zeny# +Limited Account Sales Registration Window# +Item DB Name# +Item DB Number# +Number of Sale# +Sale Start Time# +End of Sale# +Account Limited# +Sales Period: %02d/%02d %02d:%02d# +Available per account# +Limit: %d each# +>> ItemName: %s / Quantity: %d / Sales Period: %d month:%d day:%d hour:%d minutes ~ %d month:%d day:%d hour:%d minutes# +Sold Out# +[%s] is currently in a non-summonable area.# +~ %d month/%d day %d:%d# +No more products can be added# +Equipped items cannot be exchanged. Please try after unequipping it.# +You cannot go to the character selection window while using the guild warehouse.# +It cannot be used because it contains an Item Tag.# +Monster# +Unknown# +Undead# +Animal# +Plant# +Insect# +Marine# +Devil# +Human# +Angel# +Dragon# +Balance: %s %c# + ^ff0000You can withdraw your subscription within 7 days of purchasing this item. However, if 7 days have passed or the item is opened, it will be excluded from the withdrawal of subscription. Also, the free cash used for purchase will not be returned upon withdrawal of subscription. ^000000Are you sure you want to purchase the item? %s Cash will be deducted when purchasing.# + ^ff0000You can withdraw your subscription within 7 days of purchasing this item. However, if 7 days have passed or the item is opened, it will be excluded from the withdrawal of subscription. Also, the free cash used for purchase will not be returned upon withdrawal of subscription. ^000000Are you sure you want to purchase the item? If you purchase, normal %s cash and free %s cash will be deducted.# +The call was rejected.# +The purchase limit cannot exceed your possession.# +Failed to open the stall. Please close the window of the purchase stall.# +The list of stall items for sale has been saved.# +The list of purchase stall items has been saved.# +VTC authentication failed.# +Equipment cannot be worn while bartering.# +Items you want to exchange# + Please raise 1st, 2nd and 3rd Job Skills.# +You can have up to %d of the same item.# +Up to %d items can be exchanged at once.# +That rodex can be opened on server "%s".# +[Notice] Are you sure you want to delete all mails in the mailbox? \n (Only mail from the "%s" server will be deleted.)# +[Notice] Would you like to receive all the attached items in your letterbox? \n (You can only receive mail from the "%s" server.)# +This mail can only be deleted from server "%s".# +This mail can only be received from the "%s" server.# +The mail can be read only on the "%s" server.# +Total: %d z# +message# +During the opening of a purchasing store, you cannot purchase the items of a private store.# +The grade has been successfully upgraded.# +Refinement failed.# +The refine level has decreased.# +Equipment destroyed.# +The equipment is protected.# +No material selected.# +Insufficient ingredients.# +Insufficient amount of materials.# +There is not enough item space.# +Equipment is protected.# +Equipment can be destroyed.# +If the refine upgrade fails, the refine level will go down.# +Rodex cannot be used while upgrading. Forced the end of Rodex.# +Rodex cannot be used while upgrading.# +Bank cannot be used while upgrading. The bank was forcibly closed.# +Bank cannot be used during the upgrade.# +%.0s [%s grade %s] item has appeared.# +[%s] failed to upgrade the [%s grade %s] item.# +This equipment cannot be upgraded.# +Change Material# +Alphabetical Sort# +- [%s] %d ~%d production# +Success %d%%# +Item tags can only tag items you own.# +ATK and P.ATK has been increased.# +The Powerful Faith effect has been canceled.# +HP and Res has been increased.# +The Firm Faith effect has been canceled.# +Attack Speed and Perfect Hit chance has been increased.# +The Sincere Faith has been canceled.# +POW, CRT and CON has been increased.# +The Benedictum effect has been canceled.# +SPL, WIS and CRT has been increased.# +Religio effect has been canceled.# +P.ATK and S.MATK has been increased.# +The Competentia effect has been canceled.# +Critical damage chance has been increased.# +The Presens Acies effect has been canceled.# +The effect of ignoring Res been granted.# +The Argutus Telum effect has been canceled.# +The effect of ignoring M.Res been granted.# +The Argutus Vita effect has been canceled.# +Num: %d/%d Weight: %d/%d# +The Servant Weapon effect has been canceled.# +The Charging Pierce effect has been canceled.# +The Vigor effect has been canceled.# +Attack Power has been increased and Defense decreased.# +The Attack Stance effect has been canceled.# +Defense has been increased and Attack Power decreased.# +The Guard Stance effect has been canceled.# +Guardian Barrier has been granted.# +The Guardian Barrier effect has been canceled.# +The damage taken by the Devotion effect will be decreased.# +The Rebound Shield effect has been canceled.# +Holy elemental magic damage and Shadow/Undead elemental resistance has been increased.# +The Holy Shield effect has been canceled.# +Instant resurrection effect was granted.# +Ultimate Sacrifice effect has been canceled.# +The effects of certain skills has changed.# +The Climax effect has been canceled.# +The effects of certain skills have returned to normal.# +The Shadow Exceed effect has been canceled.# +The effect of ignoring Res has been granted.# +The Potent Venom effect has been canceled.# +The Shadow Wound status can be inflicted on your enemy with a chance on each physical attacks# +The Enchanting Shadow effect has been canceled.# +Suppression Count On# +Suppression Count Off# +The target has reached it's maximum AP.# +^ff0000You can withdraw your subscription within 7 days of purchasing this item. However, if 7 days have passed or the item is opened, it will be excluded from the withdrawal of subscription. Also, the free cash used at the time of purchase will not be returned when the subscription is withdrawn. Some (event) items may be deleted at the end of the event, Please confirm the deletion period listed. ^000000 Are you sure you want to purchase the item? %d Cash will be deducted when purchasing.# +^ff0000You can withdraw your subscription within 7 days of purchasing this item. However, if 7 days have passed or the item is opened, it will be excluded from the withdrawal of subscription. Also, the free cash used at the time of purchase will not be returned when the subscription is withdrawn. Some (event) items may be deleted at the end of the event, Please confirm the deletion period listed. ^000000 Are you sure you want to purchase the item? When purchasing, the regular %d cache and free% d cache will be deducted.# +Requires %d Servant Weapons# +https://member.gnjoy.com.tw/billing.aspx# +Reverse sort# +Enter your search# +Search# +The Research Report Status will be displayed.# +The Research Report Status has been cleared.# +Successful manufacturing.# +Manufacturing failed.# +Shadow Equipment is protected from destruction and disarming.# +The Full Shadow Protection has been canceled.# +Damage against Plant and Formless race monsters has been increased.# +The Hell Tree Powder effect has disappeared.# +The Attack Device has been activated.# +The Attack Device has been disabled.# +DEF and RES increased.# +The Defense Device has been disabled.# +Search# +You can now use Ensemble skills alone.# +The Sonata of Kvasir effect has been canceled.# +The effect of Mystic Symphony has been granted.# +The effect of Mystic Symphony has been canceled.# +M.Res decreased.# +The Geffenia Nocturne effect has been canceled.# +Res decreased.# +The Rhapsody of Mineworker effect has been canceled.# +Res increased.# +The Musical Interlude effect has been canceled.# +S.MATK and Movement Speed increased.# +The Serenade of Jawaii effect has been canceled.# +P.ATK and Movement Speed increased.# +The March of Prontera effect has been canceled.# +The rage of the wind flows into the caster's body.# +The Calamity Gale effect has been canceled.# +Your weakness and appearance are revealed by the wind.# +The Wind Sign effect has been canceled.# +E X P : %.1f%% ( basic 100.0%% %s %.1f%%)# +DROP : %.1f%% ( basic 100.0%% %s %.1f%%)# +DEATH : %.1f%% ( basic 100.0%% %s %.1f%%)# +S.MATK increased.# +The Spell Enchanting effect has been canceled.# +The From the Abyss effect has been canceled.# +P.ATK, S.MATK and HIT increased.# +The Abyss Slayer effect has been canceled.# +There may be restrictions on character creation.# +The world is saturated. Please use another world.# +Unblock Chat (Toggle)# +Block Chat (Toggle)# +You can't proceed with this refine level.# +Use more material guarantees success!# +No auxiliary material has been selected. \nDo you want to continue the enhancement?# +The client file has been tampered with# +message# +The total amount of items to sell exceeds the amount of Zeny you can have. \nPlease modify the quantity and price.# +Reputation Status# +%u / 1000 P# +Entire# +NOW LOADING..# +Secondary material selection is initialized.# +# +Normal# +Perfect# +Upgrade# +Reset# +It weighs more than 70%. Decrease the Weight and try again.# +Enchant# +Enchant# +Upgrade# +Reset# +RODEX cannot be used while enchanting. RODEX was forcibly closed.# +RODEX cannot be used during enchantment.# +Bank cannot be used while enchanting. The bank was forcibly closed.# +Bank cannot be used while enchanted.# +Do you want to enchant it?# +Combination# +There are not enough materials for the Combination.# +Equipped Cards and Enchantments will be lost.# +Equipped Cards may be lost.# +Enchantments may be lost.# +Hide other players on the screen ON# +Hide other players on the screen OFF# +Check Details# +Please check the details.# +There are no items that can be combined.# +Enchantment successful!# +Enchantment failed!# +Enchantment Information not found# +Enchantment Conditions are not met.# +Failed to set whether to receive random users.# +It has been set to the state of refusing to receive arbitrary users.# +All users have been set to receive status.# +%s is unsubscribed.# +RODEX has been returned.# +RODEX return failed.# +The sender of this RODEX is not a friend or guild member. Please be careful.# +Recieve RODEX from all users# +The duration of the same effect exceeds the limit and cannot be used.# +If successful, Refine Level is reset to 0!# +Cards, Options and Enchants are kept.# +If failed, refine level is kept.# +Initialization# +Old Version# +Base Lv. %d# +Job Lv. %d# +Lv.%d %s# +Quest List# +Cash Shop# +Shortcut Information# +Adventurer Agency# +UI Theme# +Legacy UI# +New UI# +UI Skin# +- New Option -# +Formless# +Undead# +Brute# +Plant# +Insect# +Fish# +Demon# +Demi-Human# +Angel# +Dragon# +Neutral# +Water# +Earth# +Fire# +Wind# +Poison# +Holy# +Shadow# +Ghost# +Undead# +Small# +Medium# +Large# +DEF# +Youth access is restricted.# +0Zeny (Dye Removal)# +Select All# +Easy Quest UI# +FREE!# +Rental Period# +The rental period can be entered up to 14 days.# +Trading impossible# +View quick Quests# +Hide Easy Quest# +Add to simple quest window# +Deleted from simple quest window# +Quest Help# +1. Combo Box + Search Box: Quest Sorting, Search Function# +- ALL: View all received quests# +- Quest Type: NORMAL / MAIN / EPISODE / DAILY / LOCAL / JOB / GUIDE / EVENT are sorted by quest.# +- Search can adjusted in the quest list sorted by Combo Box.# +2. Navigation UI# +- Open Navigation UI:# +Menu Icon > Navigation Icon (Shortcut Key: N)# +- Click on the hyperlink or npc/monster image: # +Displays navigation route (arrows) to the target point on the field floor# +3. When the navigation is executed, the moving route is displayed in the chat window# +4. You can use [Teleport Service] by talking to the Kafra staff.# +5. Easy Quest UI :# +A function to simply display the Quest UI on the game screen# +When you right-click each quest title, you can call the Quest Information UI or delete it from the quest list# +There is a function.# +Open on Startup# +Your billing session has expired. Please restart the client# +An error has occurred. please try again# +Resize(%s)# +Feature Lock# +Disable function# +Input active# +Input disabled# +Set destination# +Receiving group setting# +setting# +Detach popup window# +Return to tab# +Add tab# +Delete tab# +You can start chatting by pressing the Enter key# +Unequip All# +Please try again in 10 seconds.# +It can be used in the range of the Twinkling Galaxy skill.# +Requires Soul Energy.# +Not enough Amulets.# +You must be equipped with a Gatling Gun or Shotgun.# +You must be equipped with a Rifle or Revolver.# +You must be equipped with a Grenade Launcher or Rifle.# +You must be equipped with a Gatling Gun or Revolver.# +You must be equipped with a Shotgun or Grenade Launcher.# +You must be equipped with a Shield.# +Bank cannot be used when Expanded Barter Shop is open. The bank was forcibly closed.# +Bank cannot be used when Expanded Barter Shop is open.# +The target's Shadow has no space to move to.# +You must be in Communication with at least one kind of Mystical Creature.# +You cannot use items while sleeping or petrified.# +Items cannot be used in Burrow status.# +This Package item cannot be used.# +Failed to set Package item!!# +^ff0000 Available for %d days %d hours ^000000# +You have selected %s. Is this correct?# +Required quantity per request: %d# +Imperial Guard# +Abyss Chaser# +Wind Hawk# +Emblem registration failed.# +Server registration failed.# +File registration failed.# +Sort Mini Party Window# +It is evenly distributed.\nItems cannot be obtained because the weight or type of party members is excessive.# +[%s] obtained '+%d %s' from [%s].# +Please reopen your mailbox.# +Homunculus S cannot be summoned with your current job. You need to change to a higher job first.# +You don't have any equipment which can be equipped with cards.# +Damage Indicator# +Damage Indicator# +Style 3# +Style 2# +Style 1# +Default# +This target is already being tracked.# +Start tracking the target.# +There is no target which can be tracked.# +End tracking the target.# +The time has expired and the tracking ends.# +Target not found...# +^0054FF[Ability Correction] % d.%d %%^000000# +You can no longer call NPCs.# +In case of %d errors, it is permanently blocked according to the operation policy.# +It cannot be summoned with your current job. You need to change to a higher job first.# +Strip skills are not available for Madogear characters.# +Map# +Quiz# +In the text range below, type the map to which you want to send checkers to.# +In the text range below, enter the quiz to be displayed on the checkers.# +The map file name is incorrect.# +The number combination is incorrect.# +Please type and press enter to save.# +You have sent checkers to %d blacklisted users.# +Blacklist Checker Cool time.# +There is a problem with Map values.# +There is a problem with the quiz or the number of correct answers.# +There is a problem with your Quiz values.# +There is a problem with the number of maps.# +Remaining Time %02d: %02d: %02d# +Detection mode has been activated. Enter the number displayed on the left of the screen with the keypad.# +A penalty will be awarded when the remaining time expires or %d incorrect answers.# +Enter security code# \ No newline at end of file diff --git a/tables/laRO/recvpackets.txt b/tables/laRO/recvpackets.txt new file mode 100644 index 0000000000..0f98c60169 --- /dev/null +++ b/tables/laRO/recvpackets.txt @@ -0,0 +1,1489 @@ +0187 6 6 0 +0081 3 3 0 +01C6 4 4 0 +01C7 2 2 1 +0064 55 55 0 +0069 -1 47 0 +006A 23 23 0 +01DB 2 2 0 +01DC -1 4 0 +01DD 47 47 0 +01FA 48 48 0 +0204 18 18 0 +01F1 -1 4 0 +0200 26 26 0 +01BE 2 2 0 +01BF 3 3 0 +0065 17 17 0 +0066 3 3 0 +0067 37 37 0 +0970 31 31 0 +020D -1 4 0 +006B -1 24 0 +006C 3 3 0 +006D 157 157 0 +006E 3 3 0 +0071 28 28 0 +0068 46 46 0 +01FB 56 56 0 +006F 2 2 0 +0070 3 3 0 +02CA 3 3 0 +009B 34 34 0 +0082 2 2 0 +00A7 9 9 0 +0190 23 23 0 +00F3 -1 4 0 +0089 11 11 0 +007D 2 2 0 +0090 7 7 0 +0099 -1 4 0 +019C -1 4 0 +0085 10 10 0 +00CC 6 6 0 +00CE 2 2 0 +00F5 11 11 0 +0116 17 17 0 +009F 20 20 0 +00A9 6 6 0 +00AB 4 4 0 +00B8 7 7 0 +00B9 6 6 0 +00B2 3 3 0 +00BA 2 2 0 +00BB 5 5 0 +00BF 3 3 0 +00C1 2 2 0 +00C5 7 7 0 +00C8 -1 4 0 +00C9 -1 4 0 +0096 -1 28 0 +00CF 27 27 0 +00D0 3 3 0 +00D3 2 2 0 +00D5 -1 15 0 +00D9 14 14 0 +00DE -1 15 0 +00E0 30 30 0 +00E2 26 26 0 +00E3 2 2 0 +00E4 6 6 0 +00E6 3 3 0 +00E8 8 8 0 +00EB 2 2 0 +00ED 2 2 0 +00EF 2 2 0 +0094 19 19 0 +00F7 17 17 0 +0193 2 2 0 +00F9 26 26 0 +01E8 28 28 0 +00FC 6 6 0 +00FF 10 10 0 +0102 6 6 0 +0100 2 2 0 +0103 30 30 0 +0108 -1 4 0 +0112 4 4 0 +0072 22 22 0 +0113 25 25 0 +0118 2 2 0 +011B 20 20 0 +011D 2 2 0 +0126 8 8 0 +0127 8 8 0 +0128 8 8 0 +0129 8 8 0 +012A 2 2 0 +012E 2 2 0 +012F -1 84 0 +01B2 -1 85 0 +0134 -1 8 0 +0130 6 6 0 +0138 3 3 0 +013F 26 26 0 +0140 22 22 0 +0143 10 10 0 +0146 6 6 0 +0178 4 4 0 +017A 4 4 0 +017C 6 6 0 +01FD 25 25 0 +018A 4 4 0 +018E 18 18 0 +007E 46 46 0 +0197 4 4 0 +0198 8 8 0 +01AE 6 6 0 +025B 8 8 0 +01AF 4 4 0 +01B9 6 6 1 +01CD 30 30 1 +01CE 6 6 0 +01CF 28 28 1 +01D0 8 8 1 +01E1 8 8 1 +01D1 14 14 1 +01D2 10 10 1 +008C 14 14 0 +0095 30 30 1 +0195 102 102 1 +00A2 14 14 0 +0175 6 6 0 +0176 106 106 0 +0079 53 53 1 +019D 6 6 0 +014C -1 4 1 +014D 2 2 0 +014E 6 6 1 +014F 6 6 0 +0150 110 110 1 +01B6 114 114 1 +0151 6 6 0 +0152 -1 12 1 +0153 -1 4 0 +0154 -1 4 1 +0166 -1 4 1 +0155 -1 4 0 +0156 -1 4 1 +0157 6 6 0 +0159 54 54 0 +015A 66 66 1 +015B 54 54 0 +015C 90 90 1 +015D 42 42 0 +015E 6 6 1 +015F 42 42 1 +0160 -1 4 1 +0161 -1 4 0 +0162 -1 6 1 +0163 -1 4 1 +0164 -1 4 1 +0165 30 30 0 +0167 3 3 1 +0168 14 14 0 +0169 3 3 1 +016A 30 30 1 +016B 10 10 0 +0149 9 9 0 +014A 6 6 1 +014B 27 27 1 +016E 186 186 0 +016F 182 182 1 +017E -1 4 0 +017F -1 4 1 +016C 43 43 1 +02F7 47 47 1 +016D 14 14 1 +01F2 20 20 1 +0170 14 14 0 +0171 30 30 1 +0172 10 10 0 +0173 3 3 1 +0174 -1 4 1 +0180 6 6 0 +0181 3 3 1 +0182 106 106 1 +0183 10 10 0 +0184 10 10 1 +0185 34 34 1 +019E 2 2 1 +019F 6 6 0 +01A0 3 3 1 +01A1 3 3 0 +01A2 37 37 1 +01A3 7 7 1 +01A4 11 11 1 +01A5 26 26 0 +01A6 -1 4 1 +01A7 4 4 0 +01A8 4 4 0 +01A9 6 6 0 +01AA 10 10 1 +01CA 3 3 0 +01B0 11 11 1 +01B1 7 7 1 +01BA 26 26 0 +01BB 26 26 0 +01BC 26 26 0 +01BD 26 26 0 +01C0 2 2 0 +01C1 14 14 1 +01C2 10 10 1 +01D3 35 35 1 +01D5 -1 8 0 +01D4 6 6 1 +01DF 6 6 0 +01F3 10 10 1 +0284 14 14 1 +01FF 10 10 1 +01ED 2 2 0 +01E7 2 2 0 +01B7 6 6 0 +01F7 14 14 0 +01E3 14 14 0 +01CB 9 9 0 +01F9 6 6 0 +01E5 6 6 0 +0201 -1 4 1 +0203 10 10 0 +0205 26 26 1 +0206 35 35 1 +0207 34 34 1 +0208 14 14 0 +0209 36 36 1 +020A 10 10 1 +020E 32 32 1 +0212 26 26 0 +0213 26 26 0 +0214 42 42 1 +0215 6 6 1 +0216 6 6 1 +0217 2 2 0 +0218 2 2 0 +0225 2 2 0 +0219 282 282 1 +021A 282 282 1 +0226 282 282 1 +0282 284 284 1 +021B 10 10 1 +021C 10 10 1 +0224 10 10 1 +0280 12 12 1 +0285 6 6 1 +0286 4 4 0 +021D 6 6 0 +021E 6 6 0 +021F 66 66 1 +0222 6 6 0 +0221 -1 4 1 +0220 10 10 1 +0223 10 10 1 +0073 11 11 1 +0074 3 3 0 +0075 -1 11 1 +0076 9 9 1 +0077 5 5 1 +0078 55 55 1 +007A 58 58 1 +007B 60 60 1 +007C 44 44 1 +007F 6 6 1 +0080 7 7 1 +0083 2 2 1 +0084 2 2 1 +0086 16 16 1 +0087 12 12 1 +0BB8 16 16 1 +0088 10 10 1 +08CD 10 10 1 +008A 29 29 1 +008B 23 23 1 +008D -1 8 1 +008E -1 4 1 +0091 22 22 1 +0092 28 28 1 +0093 2 2 1 +0097 -1 32 1 +0098 3 3 1 +009A -1 4 1 +009C 9 9 1 +009D 19 19 1 +009E 19 19 1 +00A0 33 33 1 +00A1 6 6 1 +00A3 -1 4 1 +00A4 -1 4 1 +00A5 -1 4 1 +00A6 -1 4 1 +00A8 7 7 1 +00AA 9 9 1 +00AC 7 7 1 +00AE -1 4 1 +00AF 6 6 1 +00B0 8 8 1 +00B1 8 8 1 +00B3 3 3 0 +00B4 -1 8 1 +00B5 6 6 1 +00B6 6 6 1 +00B7 -1 8 1 +00BC 6 6 1 +00BD 44 44 1 +00BE 5 5 1 +00C0 7 7 1 +00C2 6 6 1 +00C3 8 8 1 +00C4 6 6 1 +00C6 -1 4 1 +00C7 -1 4 1 +00CA 3 3 1 +00CB 3 3 1 +00CD 3 3 1 +00D1 4 4 1 +00D2 4 4 1 +00D4 -1 4 1 +00D6 3 3 1 +00D7 -1 17 1 +00D8 6 6 1 +00DA 3 3 1 +00DB -1 8 1 +00DC 28 28 1 +00DD 29 29 1 +00DF -1 17 1 +00E1 30 30 1 +00E5 26 26 1 +00E7 3 3 1 +00E9 29 29 1 +00EA 5 5 1 +00EC 3 3 1 +00EE 2 2 1 +00F0 3 3 1 +00F1 2 2 1 +00F2 6 6 1 +00F4 31 31 1 +00F6 8 8 1 +00F8 2 2 1 +00FA 3 3 1 +00FB -1 28 1 +00FD 27 27 1 +00FE 30 30 1 +0101 6 6 1 +0104 79 79 1 +0105 31 31 1 +0106 10 10 1 +0107 10 10 1 +0109 -1 8 1 +010A 6 6 1 +010B 6 6 1 +010C 6 6 1 +010D 2 2 1 +010E 11 11 1 +010F -1 4 1 +02B1 -1 8 1 +02B2 -1 8 1 +02B5 -1 6 1 +0110 14 14 1 +0111 39 39 1 +0114 31 31 1 +0115 35 35 1 +0117 18 18 1 +0119 13 13 1 +0229 15 15 1 +011A 15 15 1 +011C 68 68 1 +011E 3 3 1 +011F 16 16 1 +0120 6 6 1 +0121 14 14 1 +0122 -1 4 1 +0123 -1 4 1 +0124 31 31 1 +0125 8 8 1 +012B 2 2 1 +012C 3 3 1 +012D 4 4 1 +0131 86 86 1 +0132 6 6 1 +0133 -1 8 1 +0135 7 7 1 +0136 -1 8 1 +0137 6 6 1 +0139 16 16 1 +013A 4 4 1 +013B 4 4 1 +013C 4 4 1 +013D 6 6 1 +013E 24 24 1 +0141 14 14 1 +0142 6 6 1 +0144 23 23 1 +0145 19 19 1 +0147 39 39 1 +0148 8 8 1 +0177 -1 4 1 +0179 5 5 1 +017B -1 4 1 +017D 7 7 1 +0188 8 8 1 +0189 4 4 1 +018B 4 4 0 +018C 29 29 1 +018D -1 4 1 +018F 8 8 1 +0191 27 27 1 +0192 24 24 1 +0194 30 30 1 +0196 9 9 1 +028A 18 18 1 +0199 4 4 1 +019A 14 14 1 +019B 10 10 1 +01AB 12 12 1 +01AC 6 6 1 +01AD -1 4 1 +025A -1 4 1 +01B3 67 67 1 +01B4 12 12 1 +01B5 18 18 0 +01B8 3 3 1 +01C3 -1 16 1 +01C4 32 32 1 +01C5 32 32 1 +01C8 15 15 1 +01C9 97 97 1 +01CC 9 9 1 +01D6 4 4 1 +01D7 15 15 1 +01D8 58 58 1 +022A 62 62 1 +01D9 57 57 1 +022B 61 61 1 +01DA 64 64 1 +022C 69 69 1 +01DE 33 33 1 +01E0 30 30 1 +01E2 34 34 1 +01E4 2 2 1 +01E6 26 26 1 +01E9 81 81 1 +01EA 6 6 1 +01EB 10 10 1 +01EC 26 26 1 +01EE -1 4 1 +01EF -1 4 1 +01F0 -1 4 1 +01F4 32 32 1 +01F5 9 9 1 +01F6 34 34 1 +0253 3 3 1 +0254 3 3 0 +01F8 2 2 1 +01FC -1 4 1 +01FE 5 5 1 +0227 18 18 0 +0228 18 18 0 +0232 9 9 0 +0233 11 11 0 +0234 6 6 0 +0230 12 12 1 +022E 73 73 1 +027D 62 62 0 +0235 -1 4 1 +0239 11 11 1 +022F 7 7 1 +0231 26 26 0 +0237 2 2 0 +0238 282 282 1 +0236 10 10 1 +023A 4 4 0 +023C 6 6 0 +023D 6 6 0 +023E 8 8 0 +023F 2 2 0 +0240 -1 8 1 +0241 6 6 0 +0242 -1 109 1 +0243 6 6 0 +0257 8 8 1 +0244 6 6 0 +0245 3 3 1 +0246 4 4 0 +0247 8 8 0 +0248 -1 68 0 +0249 3 3 1 +024A 70 70 1 +024B 4 4 0 +024C 8 8 0 +024D 12 12 0 +024E 6 6 0 +024F 10 10 0 +0250 3 3 1 +0251 34 34 0 +0252 -1 12 1 +0255 5 5 1 +0256 5 5 1 +0258 2 2 0 +0259 3 3 0 +025C 4 4 0 +025D 6 6 1 +025E 4 4 0 +025F 6 6 1 +0260 6 6 1 +0261 11 11 0 +0262 11 11 0 +0263 11 11 0 +0264 20 20 0 +0265 20 20 0 +0266 30 30 0 +0267 4 4 0 +0268 4 4 0 +0269 4 4 0 +026A 4 4 0 +026B 4 4 0 +026C 4 4 0 +026D 4 4 0 +026F 2 2 0 +0270 2 2 0 +0271 40 40 0 +0272 44 44 0 +0273 30 30 0 +0274 8 8 1 +0275 37 37 0 +0276 -1 51 0 +0277 84 84 0 +0278 2 2 0 +0279 2 2 0 +027A -1 4 1 +027B 14 14 0 +027C 60 60 0 +027E -1 6 0 +027F 8 8 0 +0283 6 6 1 +0287 -1 12 1 +0288 -1 10 0 +0289 12 12 1 +0444 -1 12 1 +0445 12 12 0 +028B -1 4 0 +028C 46 46 0 +028D 34 34 0 +028E 4 4 0 +028F 6 6 0 +0290 4 4 0 +0291 4 4 1 +0292 2 2 0 +0293 70 70 1 +0294 10 10 1 +0295 -1 4 1 +0296 -1 4 1 +0297 -1 4 1 +0298 10 10 1 +0299 8 8 1 +029A 37 37 1 +029B 80 80 1 +029C 66 66 0 +029D -1 4 1 +029E 11 11 1 +029F 3 3 0 +02A2 8 8 1 +02A5 8 8 0 +02A6 -1 10 0 +02A7 -1 10 0 +02AA 4 4 0 +02AB 36 36 0 +02AC 6 6 0 +02AD 8 8 0 +02B0 85 85 0 +02B8 32 32 1 +02BB 8 8 1 +02B9 191 191 1 +02BA 11 11 0 +02BC 6 6 0 +02B3 107 107 1 +02B4 6 6 1 +02B6 7 7 0 +02B7 7 7 1 +02C1 -1 12 1 +02C2 -1 6 1 +02C5 30 30 1 +02C8 3 3 0 +02C9 3 3 1 +02C6 30 30 1 +02C7 7 7 0 +02CB 65 65 1 +02CC 4 4 1 +02CD 71 71 1 +02CE 10 10 1 +02CF 6 6 0 +02D5 2 2 1 +02D0 -1 4 1 +02D1 -1 4 1 +02D2 -1 4 1 +02D3 4 4 1 +02D4 39 39 1 +02D6 6 6 0 +02D7 -1 43 1 +02D8 10 10 0 +02D9 10 10 1 +02DA 3 3 1 +02DB -1 4 0 +02DC -1 32 1 +02DD 32 32 1 +02DE 6 6 1 +02DF 36 36 1 +02E0 34 34 1 +02E1 33 33 1 +02E2 20 20 0 +02E3 22 22 0 +02E4 11 11 0 +02E5 9 9 0 +02E6 6 6 0 +02E7 -1 6 1 +02E8 -1 4 1 +02E9 -1 4 1 +02EA -1 4 1 +02EB 13 13 1 +02EC 71 71 1 +02ED 63 63 1 +02EE 64 64 1 +02EF 8 8 1 +02F0 10 10 1 +02F1 2 2 0 +02F2 2 2 1 +035C 2 2 0 +035D -1 20 0 +035E 2 2 0 +03DD 18 18 0 +03DE 18 18 0 +0439 8 8 0 +043D 8 8 1 +043E -1 4 1 +043F 25 25 1 +0440 10 10 1 +0441 4 4 1 +0442 -1 8 1 +0443 8 8 0 +0446 14 14 1 +0448 -1 4 0 +0449 4 4 0 +044A 6 6 0 +044B 2 2 0 +0447 2 2 0 +07D7 8 8 0 +07D8 8 8 1 +07D9 268 268 1 +07DA 6 6 0 +07DB 8 8 1 +07DC 6 6 0 +07DD 54 54 1 +07DE 30 30 0 +07DF 54 54 0 +07E0 58 58 0 +07E1 15 15 1 +07E2 8 8 1 +07E3 6 6 1 +07E6 8 8 1 +07E5 4 4 0 +07E8 -1 4 0 +07E7 32 32 0 +07E9 5 5 0 +07EA 2 2 0 +07EB -1 8 1 +07ED 10 10 1 +07EE 6 6 0 +07EF 8 8 1 +07F0 6 6 0 +07F1 18 18 1 +07F2 8 8 1 +07F3 6 6 1 +07F4 3 3 0 +07F5 6 6 0 +07F6 14 14 1 +07F7 -1 73 1 +07F8 -1 66 1 +07F9 -1 67 1 +07FA 8 8 1 +07FB 25 25 1 +07FC 10 10 1 +07FD -1 9 1 +07FE 26 26 1 +0800 -1 12 1 +0801 -1 12 0 +0803 4 4 1 +0804 14 14 0 +0805 -1 5 1 +0806 2 2 0 +0807 4 4 1 +0808 14 14 0 +0809 50 50 1 +080A 18 18 1 +080B 6 6 1 +080C 2 2 0 +080D 3 3 1 +080E 14 14 1 +080F 30 30 1 +0810 3 3 1 +0812 8 8 1 +0813 -1 12 1 +0814 86 86 1 +0816 6 6 1 +0818 -1 16 1 +081A 4 4 1 +0824 8 8 1 +081B 12 12 1 +081C 10 10 1 +081D 22 22 1 +081E 8 8 1 +081F -1 9 1 +0820 11 11 0 +0821 2 2 0 +0822 9 9 0 +0823 -1 4 0 +0825 -1 92 0 +0836 -1 7 0 +0837 3 3 0 +0839 66 66 1 +083A 5 5 0 +083B 2 2 0 +083D 6 6 0 +083E 26 26 0 +0840 -1 4 0 +0841 4 4 0 +0827 6 6 0 +0828 14 14 0 +0829 12 12 0 +082A 10 10 0 +082B 6 6 0 +082C 10 10 0 +0842 6 6 0 +0843 6 6 0 +0844 2 2 0 +0845 10 10 0 +0846 4 4 0 +0847 -1 6 0 +0848 -1 10 0 +0849 16 16 0 +084A 2 2 0 +084B 21 21 1 +084C 10 10 0 +084D 10 10 0 +084E 5 5 0 +084F 6 6 0 +0850 7 7 0 +0855 6 6 0 +0851 -1 4 0 +0852 2 2 0 +0853 -1 4 0 +0854 -1 4 0 +0856 -1 75 1 +0857 -1 69 1 +0858 -1 68 1 +0859 -1 45 1 +08B1 -1 4 0 +082D -1 29 0 +08B2 -1 6 0 +08AF 10 10 0 +08B0 17 17 0 +08B3 -1 8 0 +08B4 2 2 0 +08B5 6 6 0 +08B6 3 3 0 +02F3 -1 68 0 +02F4 3 3 0 +02F5 7 7 0 +02F6 7 7 0 +08B8 10 10 0 +08B9 12 12 0 +08BA 10 10 0 +08BB 8 8 0 +08BC 10 10 0 +08BD 8 8 0 +08BE 14 14 0 +08BF 8 8 0 +08C3 10 10 0 +08C4 8 8 0 +08C5 6 6 0 +08C6 4 4 0 +08C0 -1 10 0 +08C1 2 2 0 +08C2 2 2 0 +08C7 -1 19 1 +08C8 34 34 1 +08C9 2 2 0 +08CA -1 8 0 +08CB -1 10 0 +097B -1 16 0 +08CC 109 109 0 +08CE 2 2 0 +08CF 10 10 0 +08D0 9 9 1 +08D1 7 7 1 +08D2 10 10 1 +08D3 10 10 0 +08D4 8 8 0 +08D5 -1 8 0 +08D6 6 6 0 +08D7 28 28 1 +08D8 27 27 1 +08D9 30 30 1 +08DA 26 26 1 +08DB 27 27 1 +08DC 26 26 1 +08DD 27 27 1 +08DE 27 27 1 +08DF 50 50 1 +08E0 51 51 1 +08E1 51 51 1 +08E2 27 27 0 +08E3 157 157 0 +08E4 6 6 0 +08FC 30 30 0 +08FD 6 6 0 +08FE -1 4 1 +08FF 24 24 1 +0900 -1 4 1 +0901 -1 4 1 +0902 -1 4 1 +0903 -1 4 1 +0904 -1 4 1 +0905 -1 4 1 +0906 -1 45 1 +0907 5 5 0 +0908 5 5 1 +090A 26 26 1 +090D -1 10 1 +090E 2 2 0 +0910 10 10 1 +0911 30 30 1 +0912 10 10 1 +0913 30 30 1 +0914 -1 84 1 +090F -1 77 1 +0915 -1 78 1 +0916 26 26 1 +096B 4 4 1 +096C 6 6 1 +096D -1 4 1 +096E -1 4 1 +096F 7 7 1 +0971 6 6 1 +0972 -1 9 1 +0973 7 7 1 +0974 2 2 1 +0975 -1 28 1 +0976 -1 28 1 +0977 14 14 1 +0978 6 6 0 +0979 50 50 0 +097A -1 8 1 +097C 4 4 0 +097D 288 288 1 +097E 12 12 1 +097F -1 8 1 +0980 7 7 1 +0981 -1 12 0 +0982 7 7 0 +0983 29 29 1 +0984 28 28 1 +0985 -1 4 1 +0986 10 10 0 +0987 -1 41 0 +0988 6 6 0 +0989 2 2 0 +098A -1 74 0 +098D -1 4 0 +098E -1 28 0 +098B 2 2 0 +098C 4 4 0 +098F -1 8 0 +0990 41 41 1 +0991 -1 4 1 +0992 -1 4 1 +0993 -1 4 1 +0994 -1 4 1 +0995 -1 28 1 +0996 -1 28 1 +0997 -1 45 1 +0998 8 8 1 +0999 11 11 1 +099A 9 9 1 +099B 8 8 1 +099C 6 6 0 +099D -1 4 0 +099E 12 12 0 +099F -1 22 1 +09A0 6 6 0 +09A1 2 2 0 +09A2 6 6 0 +09A3 -1 8 0 +09A4 18 18 0 +09A5 7 7 0 +09AB 6 6 0 +09A6 12 12 0 +09A7 10 10 0 +09A8 16 16 0 +09A9 10 10 0 +09AA 16 16 0 +09AC -1 8 0 +09AD 12 12 0 +09AE 19 19 0 +09AF 4 4 0 +09B0 10 10 0 +09B1 4 4 0 +09B2 10 10 0 +09B3 6 6 0 +09B4 6 6 0 +09B5 2 2 0 +09B6 6 6 0 +09B7 4 4 0 +09B8 6 6 0 +09B9 4 4 0 +09BA 2 2 0 +09BB 6 6 0 +09BC 6 6 0 +09BD 2 2 0 +09BE 2 2 0 +09BF 4 4 0 +09C1 10 10 0 +09C2 -1 4 0 +09C3 10 10 0 +09C4 10 10 0 +09C5 1042 1042 0 +09C6 -1 16 0 +09C7 18 18 0 +09C8 -1 13 0 +09C9 -1 4 0 +09CA -1 23 1 +0BC8 -1 27 1 +09CB 17 17 1 +09CC -1 4 0 +09CD 8 8 1 +09CE 102 102 1 +09CF -1 4 0 +09D0 -1 4 0 +09D1 14 14 1 +09D2 -1 28 0 +09D3 -1 28 0 +09D4 2 2 0 +09D5 -1 4 1 +09D6 -1 4 1 +09D8 2 2 1 +09D7 -1 5 1 +09D9 4 4 0 +09DA -1 8 0 +09DB -1 88 1 +09DC -1 81 1 +09DD -1 82 1 +09DE -1 33 1 +09DF 7 7 1 +09E0 -1 40 0 +09E1 8 8 1 +09E2 8 8 1 +09E3 8 8 1 +09E4 8 8 1 +09E5 18 18 1 +09E6 24 24 1 +09E7 3 3 1 +09E8 11 11 1 +09E9 2 2 1 +09EE 11 11 1 +09EF 11 11 1 +09F0 -1 7 1 +0A7D -1 7 1 +09F5 11 11 1 +09F6 11 11 1 +09EA 11 11 1 +09EB -1 24 1 +09F7 77 77 1 +09EC -1 64 1 +09ED 3 3 1 +09F3 11 11 1 +09F4 12 12 1 +09F1 11 11 1 +09F2 12 12 1 +0A04 6 6 1 +0A05 63 63 1 +0A06 6 6 1 +0A07 9 9 1 +0A03 2 2 1 +0A08 26 26 1 +0A12 27 27 1 +0A13 26 26 1 +0A14 10 10 1 +0A51 34 34 1 +0A32 2 2 0 +09F8 -1 8 1 +09F9 143 143 1 +09FA -1 6 1 +09FB -1 8 0 +09FC 6 6 1 +09FD -1 90 1 +09FE -1 83 1 +09FF -1 84 1 +0BB7 -1 94 1 +0A00 269 269 1 +0A01 3 3 0 +0A02 4 4 1 +0A09 55 55 1 +0A0A 57 57 1 +0A0B 57 57 1 +0A0C 66 66 1 +0A0D -1 4 1 +0A0F -1 4 1 +0A10 -1 28 1 +0A11 -1 28 1 +0A0E 14 14 1 +0A15 12 12 1 +0A16 26 26 0 +0A17 6 6 1 +0A18 14 14 1 +0BB6 18 18 1 +0A19 2 2 1 +0A1A 25 25 1 +0A1B 2 2 1 +0A1C -1 8 1 +0A1D 2 2 1 +0A1E 3 3 1 +0A1F 2 2 1 +0A20 23 23 1 +0A21 3 3 1 +0A22 7 7 1 +0A23 -1 22 1 +0A24 66 66 1 +0A25 6 6 1 +0A26 7 7 1 +0A27 8 8 1 +0A28 3 3 1 +0A29 6 6 0 +0A2A 6 6 0 +0A2B 14 14 0 +0A2C 12 12 0 +0A2D -1 45 0 +0A2E 6 6 1 +0A2F 7 7 1 +0A30 106 106 1 +0A31 -1 8 0 +0A33 7 7 0 +0A34 6 6 0 +0A35 4 4 0 +0A36 7 7 1 +0A37 69 69 1 +0A38 3 3 1 +0A68 3 3 1 +0AE2 7 7 1 +0A39 36 36 1 +0A3A 12 12 1 +0A3B -1 12 1 +0A3C -1 18 0 +0A3D 20 20 0 +0A3E -1 16 0 +0A3F 11 11 0 +0A40 11 11 0 +0A41 18 18 0 +0A42 43 43 0 +0A43 85 85 0 +0A44 -1 28 0 +0A46 14 14 0 +0A47 3 3 0 +0A48 2 2 0 +0AFC 16 16 0 +0A49 22 22 0 +0A4A 6 6 0 +0A4B 22 22 0 +0A4C 28 28 0 +0A8F 2 2 0 +0A90 3 3 0 +0B23 6 6 0 +0A4D -1 64 0 +0A79 -1 67 0 +0B61 -1 47 0 +0B6A -1 63 0 +0A4E 6 6 0 +0A70 2 2 0 +0A4F -1 8 0 +0A50 4 4 0 +0A52 20 20 0 +0A53 10 10 0 +0A54 -1 8 0 +0A55 2 2 0 +0A56 6 6 0 +0A57 6 6 0 +0A58 8 8 0 +0A59 -1 8 0 +0A5A 2 2 0 +0A5B 7 7 0 +0A5C 18 18 0 +0A5D 6 6 0 +0A69 6 6 0 +0A6A 12 12 0 +0A6B -1 8 0 +0A6C 7 7 0 +0A6D -1 4 0 +0A5E 26 26 0 +0A5F 8 8 0 +0A60 3 3 0 +0A6E -1 68 1 +0A6F -1 10 1 +0A71 -1 5 0 +0A72 61 61 0 +0A73 2 2 0 +0A74 8 8 0 +0A76 80 80 0 +0A77 15 15 0 +0A78 15 15 0 +0A7B -1 4 0 +0A7C -1 4 0 +0A7E -1 5 1 +0A8C 2 2 1 +0A80 6 6 1 +0A7F -1 88 1 +0A8D -1 17 1 +0A81 4 4 1 +0A92 -1 96 1 +0A91 -1 25 1 +0A93 3 3 1 +0A94 2 2 1 +0A89 61 61 1 +0B05 63 63 1 +0A8A 6 6 1 +0A82 46 46 1 +0A83 46 46 1 +0A84 94 94 1 +0A85 82 82 1 +0A86 -1 4 1 +0A87 -1 4 1 +0B7B 118 118 1 +0B7C -1 4 1 +0B7D -1 4 1 +0B7E 60 60 1 +0A88 2 2 0 +0A8B 2 2 0 +0A8E 2 2 0 +0A95 4 4 1 +0A96 61 61 0 +0A97 8 8 0 +0A98 10 10 0 +0A99 4 4 0 +0A9A 10 10 0 +0A9B -1 4 0 +0A9C 2 2 0 +0ACE 4 4 0 +0A9D 4 4 0 +0A9E 2 2 0 +0A9F 2 2 0 +0AA0 2 2 0 +0AA1 4 4 0 +0AA2 -1 7 0 +0AA3 9 9 0 +0AA4 2 2 0 +0AA5 -1 4 1 +0AA6 36 36 1 +0AA7 6 6 1 +0AA8 5 5 1 +0AA9 -1 4 1 +0AAA -1 4 1 +0AAB -1 5 1 +0AAC 69 69 0 +0AB1 14 14 1 +0AAD 51 51 0 +0AAE 2 2 0 +0AAF 6 6 0 +0AB0 6 6 0 +0ABA 2 2 0 +0ABB 2 2 0 +0AB2 7 7 0 +0AB3 19 19 0 +0AB4 6 6 0 +0AB5 2 2 0 +0AB6 8 8 0 +0AB7 4 4 0 +0AB8 2 2 0 +0AB9 47 47 0 +0ABC -1 4 0 +0ABD 10 10 0 +0ABE -1 6 0 +0ABF -1 4 0 +0AC0 26 26 0 +0AC1 26 26 0 +0AC2 -1 5 0 +0AC3 2 2 0 +0AC4 -1 64 0 +0AC5 156 156 0 +0AC6 156 156 0 +0AC7 156 156 1 +0AC8 2 2 0 +0AC9 -1 47 0 +0ACA 3 3 0 +0ACB 12 12 0 +0ACC 18 18 0 +0ACD 23 23 0 +0ACF 68 68 0 +0AD0 11 11 0 +0AD1 -1 8 0 +0AD2 30 30 1 +0AD3 -1 4 1 +0AD4 -1 4 1 +0AD5 2 2 0 +0AD6 2 2 1 +0AD7 8 8 0 +0AD8 8 8 0 +0AD9 -1 6 1 +0ADA 32 32 1 +0ADB -1 8 0 +0ADC 6 6 1 +0ADD 24 24 1 +0ADE 6 6 0 +0ADF 58 58 0 +0AE0 30 30 0 +0AE1 28 28 0 +0AE4 89 89 1 +0AE5 -1 28 1 +0AE3 -1 28 0 +0AE6 10 10 0 +0AE7 38 38 0 +0AE8 2 2 0 +0AEC 2 2 0 +0AED 2 2 0 +0AEE 2 2 0 +0AE9 13 13 0 +0AEF 2 2 0 +0AF0 10 10 0 +0AF1 102 102 0 +0AF2 40 40 1 +0AF3 -1 4 1 +0AF4 11 11 0 +0AF5 3 3 0 +0AF6 88 88 0 +0AF7 32 32 0 +0AF8 11 11 0 +0AF9 6 6 0 +0AFA 58 58 0 +0AFB -1 4 1 +0AFD -1 8 1 +0B0C 155 155 1 +0AFE -1 6 1 +0AFF -1 8 1 +0B00 8 8 1 +0B01 56 56 0 +0B02 26 26 0 +0B03 -1 47 0 +0B04 190 190 0 +0B07 -1 47 0 +0B08 -1 5 1 +0B09 -1 5 1 +0B0A -1 5 1 +0B0B 4 4 1 +0B0D 10 10 1 +0B0E -1 4 1 +0B0F -1 4 1 +0B10 10 10 1 +0B11 4 4 1 +0B12 2 2 -1 +0B13 48 48 0 +0B14 2 2 0 +0B16 2 2 0 +0B19 2 2 0 +0B15 7 7 1 +0B17 3 3 1 +0B18 4 4 1 +0B1A 29 29 1 +0B1B 2 2 1 +0B1C 2 2 0 +0B1D 2 2 0 +0B1E 14 14 0 +0B1F 14 14 1 +0B20 271 271 1 +0B22 5 5 0 +0B21 13 13 0 +0B24 6 6 1 +0B25 6 6 1 +0B27 -1 4 1 +0B28 3 3 1 +0B2B 11 11 1 +0B2C 3 3 1 +0B2D 11 11 1 +0B2E 4 4 1 +0B2F 73 73 1 +0B30 -1 4 1 +0B31 17 17 1 +0B32 -1 4 1 +0B33 17 17 1 +0B34 50 50 0 +0B35 3 3 0 +0B36 -1 14 1 +0B37 -1 47 1 +0B39 -1 5 1 +0B3C 4 4 1 +0B3D -1 12 1 +0B3E -1 8 1 +0B3F 64 64 1 +0B40 -1 8 1 +0B41 70 70 1 +0B42 62 62 1 +0B43 48 48 1 +0B44 58 58 1 +0B45 58 58 1 +0B46 10 10 0 +0B47 14 14 1 +0B48 18 18 0 +0B49 4 4 0 +0B4A 6 6 0 +0B4B 4 4 0 +0B4C 2 2 0 +0B4D -1 6 0 +0B4F 2 2 0 +0B50 2 2 0 +0B51 2 2 0 +0B52 2 2 0 +0B53 52 52 0 +0B54 8 8 0 +0B4E -1 6 1 +0B55 -1 4 0 +0B56 -1 8 1 +0B57 -1 4 1 +0B58 2 2 1 +0B59 4 4 1 +0B5A -1 34 1 +0B5B 14 14 1 +0B5C 2 2 1 +0B5D 10 10 1 +0B5E 33 33 1 +0B5F -1 5 0 +0B60 -1 64 0 +0B62 -1 17 1 +0B63 -1 24 1 +0B64 -1 7 1 +0B65 -1 4 1 +0B66 26 26 1 +0B67 33 33 1 +0B68 12 12 1 +0B69 18 18 1 +0B6B 14 14 1 +0B6C 12 12 1 +0B6D 6 6 0 +0B6E 14 14 0 +0B6F 177 177 0 +0B70 -1 8 0 +0B71 177 177 0 +0B72 -1 4 0 +0B73 8 8 1 +0B74 1026 1026 0 +0B75 1026 1026 0 +0B76 77 77 1 +0B77 -1 4 1 +0B78 -1 4 1 +0B79 -1 8 1 +0B7A -1 4 1 +0B7F 10 10 1 +0B8C -1 5 1 +0B8D -1 5 1 +0B8E 18 18 1 +0B8F 6 6 0 +0B90 2 2 0 +0B91 8 8 0 +0B92 5 5 0 +0B93 12 12 0 +0B94 14 14 0 +0B95 -1 4 0 +0B96 26 26 0 +0B97 27 27 0 +0B98 6 6 0 +0B99 10 10 0 +0B9A 11 11 0 +0B9B 12 12 0 +0B9C 16 16 0 +0B9D 14 14 0 +0B9E 12 12 0 +0B9F 10 10 0 +0BA0 2 2 0 +0BA1 3 3 0 +0BA2 10 10 0 +0BA3 10 10 0 +0BA4 85 85 1 +0BA5 12 12 1 +0BA6 -1 8 1 +0BA7 -1 8 1 +0BA8 7 7 1 +0BA9 -1 8 1 +0BAA 22 22 1 +0BAB 22 22 1 +0BAC 22 22 0 +0BAD 2 2 0 +0BF5 6 6 0 +0BAE 3 3 0 +0BAF 16 16 0 +0BB0 9 9 0 +0BB1 3 3 0 +0BB2 2 2 0 +0BB3 -1 8 0 +0BB4 31 31 0 +0BB5 10 10 0 +0BBA -1 9 1 +0BBB -1 5 -1 +0BBC 22 22 1 +0BBD 6 6 0 +0BBE 6 6 1 +0BBF 12 12 1 +0BC0 3 3 0 +0BC1 -1 13 0 +0BC3 10 10 0 +0BC6 9 9 0 +0BDA -1 22 0 +0BDB 19 19 0 +0BDC 18 18 0 +0BC2 5 5 0 +0BC4 2 2 0 +0BC5 7 7 0 +0BC7 6 6 0 +0BC9 10 10 1 +0BCA -1 8 1 +0BCB 4 4 0 +0BCC -1 9 0 +0BCD -1 9 0 +0BCE 8 8 0 +0BCF 9 9 0 +0BD0 8 8 0 +0BD1 13 13 0 +0BD2 8 8 0 +0BD3 13 13 0 +0BD4 2 2 0 +0BD5 9 9 0 +0BD6 8 8 0 +0BD7 9 9 0 +0BD8 14 14 0 +0BD9 51 51 0 +0BDD -1 4 0 +0BDE -1 4 1 +0BDF 3 3 0 +0BE0 3 3 0 +0BE1 3 3 0 +0BE2 137 137 0 +0BE3 34 34 0 +0BE4 14 14 0 +0BE5 8 8 0 +0BE6 8 8 0 +0BE7 4 4 0 +0BE8 4 4 0 +0BE9 6 6 0 +0BEA 10 10 0 +0BEB 7 7 0 +0BEC 7 7 0 +0BED 9 9 0 +0BEE 5 5 0 +0BEF -1 8 0 +0BF0 14 14 0 +0BF1 18 18 0 +0BF2 13 13 0 +0BF3 -1 4 0 +0BF4 -1 4 0 +0BF6 -1 10 0 +0437 7 7 0 +0438 10 10 0 +0BFF 5 5 0 +0360 6 6 0 +0361 5 5 0 +0362 6 6 0 +0363 6 6 0 +0364 8 8 0 +0365 8 8 0 +0366 10 10 0 +0367 31 31 0 +0368 6 6 0 +0369 6 6 0 +083C 14 14 0 +0838 2 2 0 +0835 -1 14 0 +0819 -1 12 0 +0817 6 6 0 +0815 2 2 0 +0811 -1 89 0 +0802 18 18 0 +07EC 8 8 0 +07E4 -1 12 0 +0436 23 23 0 +02C4 26 26 0 +0281 4 4 0 +0202 26 26 0 +022D 5 5 0 +023B 36 36 0 diff --git a/tables/laRO/resnametable.txt b/tables/laRO/resnametable.txt new file mode 100644 index 0000000000..18cb64b6ed --- /dev/null +++ b/tables/laRO/resnametable.txt @@ -0,0 +1,1675 @@ +06guild_01.gat#guild_vs2.gat# +06guild_01.gnd#guild_vs2.gnd# +06guild_01.rsw#guild_vs2.rsw# +06guild_02.gat#guild_vs2.gat# +06guild_02.gnd#guild_vs2.gnd# +06guild_02.rsw#guild_vs2.rsw# +06guild_03.gat#guild_vs2.gat# +06guild_03.gnd#guild_vs2.gnd# +06guild_03.rsw#guild_vs2.rsw# +06guild_04.gat#guild_vs2.gat# +06guild_04.gnd#guild_vs2.gnd# +06guild_04.rsw#guild_vs2.rsw# +06guild_05.gat#guild_vs2.gat# +06guild_05.gnd#guild_vs2.gnd# +06guild_05.rsw#guild_vs2.rsw# +06guild_06.gat#guild_vs2.gat# +06guild_06.gnd#guild_vs2.gnd# +06guild_06.rsw#guild_vs2.rsw# +06guild_07.gat#guild_vs2.gat# +06guild_07.gnd#guild_vs2.gnd# +06guild_07.rsw#guild_vs2.rsw# +06guild_08.gat#guild_vs2.gat# +06guild_08.gnd#guild_vs2.gnd# +06guild_08.rsw#guild_vs2.rsw# +1@20cn1.gat#1@20cn1.gat# +1@20cn1.gnd#1@20cn1.gnd# +1@20cn1.rsw#1@20cn1.rsw# +1@20cn2.gat#1@20cn2.gat# +1@20cn2.gnd#1@20cn2.gnd# +1@20cn2.rsw#1@20cn2.rsw# +1@4cdn.gat#1@4cdn.gat# +1@4cdn.gnd#1@4cdn.gnd# +1@4cdn.rsw#1@4cdn.rsw# +1@4drk.gat#1@4drk.gat# +1@4drk.gnd#1@4drk.gnd# +1@4drk.rsw#1@4drk.rsw# +1@4igd.gat#1@4igd.gat# +1@4igd.gnd#1@4igd.gnd# +1@4igd.rsw#1@4igd.rsw# +1@4inq.gat#1@4inq.gat# +1@4inq.gnd#1@4inq.gnd# +1@4inq.rsw#1@4inq.rsw# +1@4mag.gat#1@4mag.gat# +1@4mag.gnd#1@4mag.gnd# +1@4mag.rsw#1@4mag.rsw# +1@4mst.gat#1@4mst.gat# +1@4mst.gnd#1@4mst.gnd# +1@4mst.rsw#1@4mst.rsw# +1@4sac.gat#1@4sac.gat# +1@4sac.gnd#1@4sac.gnd# +1@4sac.rsw#1@4sac.rsw# +1@4tro.gat#1@4tro.gat# +1@4tro.gnd#1@4tro.gnd# +1@4tro.rsw#1@4tro.rsw# +1@4win.gat#1@4win.gat# +1@4win.gnd#1@4win.gnd# +1@4win.rsw#1@4win.rsw# +1@adv.gat#1@adv.gat# +1@adv.gnd#1@adv.gnd# +1@adv.rsw#1@adv.rsw# +1@advs.gat#1@advs.gat# +1@advs.gnd#1@advs.gnd# +1@advs.rsw#1@advs.rsw# +1@air1.gat#1@air1.gat# +1@air1.gnd#1@air1.gnd# +1@air1.rsw#1@air1.rsw# +1@air2.gat#1@air2.gat# +1@air2.gnd#1@air2.gnd# +1@air2.rsw#1@air2.rsw# +1@ant01.gat#1@ant01.gat# +1@ant01.gnd#1@ant01.gnd# +1@ant01.rsw#1@ant01.rsw# +1@ba_go.gat#1@ba_go.gat# +1@ba_go.gnd#1@ba_go.gnd# +1@ba_go.rsw#1@ba_go.rsw# +1@bamn.gat#1@bamn.gat# +1@bamn.gnd#1@bamn.gnd# +1@bamn.rsw#1@bamn.rsw# +1@bamq.gat#1@bamq.gat# +1@bamq.gnd#1@bamq.gnd# +1@bamq.rsw#1@bamq.rsw# +1@begi.gat#1@begi.gat# +1@begi.gnd#1@begi.gnd# +1@begi.rsw#1@begi.rsw# +1@cash.gat#1@cash.gat# +1@cash.gnd#1@cash.gnd# +1@cash.rsw#1@cash.rsw# +1@cata.gat#1@cata.gat# +1@cata.gnd#1@cata.gnd# +1@cata.rsw#1@cata.rsw# +1@ch_t.gat#1@ch_t.gat# +1@ch_t.gnd#1@ch_t.gnd# +1@ch_t.rsw#1@ch_t.rsw# +1@ch_u.gat#1@ch_u.gat# +1@ch_u.gnd#1@ch_u.gnd# +1@ch_u.rsw#1@ch_u.rsw# +1@cor.gat#1@cor.gat# +1@cor.gnd#1@cor.gnd# +1@cor.rsw#1@cor.rsw# +1@crd.gat#1@crd.gat# +1@crd.gnd#1@crd.gnd# +1@crd.rsw#1@crd.rsw# +1@def01.gat#1@def01.gat# +1@def01.gnd#1@def01.gnd# +1@def01.rsw#1@def01.rsw# +1@def02.gat#1@def02.gat# +1@def02.gnd#1@def02.gnd# +1@def02.rsw#1@def02.rsw# +1@def03.gat#1@def03.gat# +1@def03.gnd#1@def03.gnd# +1@def03.rsw#1@def03.rsw# +1@dime.gat#1@dime.gat# +1@dime.gnd#1@dime.gnd# +1@dime.rsw#1@dime.rsw# +1@drdo.gat#1@drdo.gat# +1@drdo.gnd#1@drdo.gnd# +1@drdo.rsw#1@drdo.rsw# +1@dth1.gat#1@dth1.gat# +1@dth1.gnd#1@dth1.gnd# +1@dth1.rsw#1@dth1.rsw# +1@dth2.gat#1@dth2.gat# +1@dth2.gnd#1@dth2.gnd# +1@dth2.rsw#1@dth2.rsw# +1@dth3.gat#1@dth3.gat# +1@dth3.gnd#1@dth3.gnd# +1@dth3.rsw#1@dth3.rsw# +1@ecl.gat#1@ecl.gat# +1@ecl.gnd#1@ecl.gnd# +1@ecl.rsw#1@ecl.rsw# +1@eom.gat#1@eom.gat# +1@eom.gnd#1@eom.gnd# +1@eom.rsw#1@eom.rsw# +1@exds.gat#1@exds.gat# +1@exds.gnd#1@exds.gnd# +1@exds.rsw#1@exds.rsw# +1@exhn.gat#1@exhn.gat# +1@exhn.gnd#1@exhn.gnd# +1@exhn.rsw#1@exhn.rsw# +1@exnw.gat#1@exnw.gat# +1@exnw.gnd#1@exnw.gnd# +1@exnw.rsw#1@exnw.rsw# +1@exse.gat#1@exse.gat# +1@exse.gnd#1@exse.gnd# +1@exse.rsw#1@exse.rsw# +1@exsh.gat#1@exsh.gat# +1@exsh.gnd#1@exsh.gnd# +1@exsh.rsw#1@exsh.rsw# +1@exsr.gat#1@exsr.gat# +1@exsr.gnd#1@exsr.gnd# +1@exsr.rsw#1@exsr.rsw# +1@f_lake.gat#1@f_lake.gat# +1@f_lake.gnd#1@f_lake.gnd# +1@f_lake.rsw#1@f_lake.rsw# +1@face.gat#1@face.gat# +1@face.gnd#1@face.gnd# +1@face.rsw#1@face.rsw# +1@ffp.gat#1@ffp.gat# +1@ffp.gnd#1@ffp.gnd# +1@ffp.rsw#1@ffp.rsw# +1@ge_sn.gat#1@ge_sn.gat# +1@ge_sn.gnd#1@ge_sn.gnd# +1@ge_sn.rsw#1@ge_sn.rsw# +1@ge_st.gat#1@ge_st.gat# +1@ge_st.gnd#1@ge_st.gnd# +1@ge_st.rsw#1@ge_st.rsw# +1@gef.gat#1@gef.gat# +1@gef.gnd#1@gef.gnd# +1@gef.rsw#1@gef.rsw# +1@gef_in.gat#1@gef_in.gat# +1@gef_in.gnd#1@gef_in.gnd# +1@gef_in.rsw#1@gef_in.rsw# +1@ghg.gat#1@ghg.gat# +1@ghg.gnd#1@ghg.gnd# +1@ghg.rsw#1@ghg.rsw# +1@gl_he.gat#1@gl_he.gat# +1@gl_he.gnd#1@gl_he.gnd# +1@gl_he.rsw#1@gl_he.rsw# +1@gl_he2.gat#1@gl_he2.gat# +1@gl_he2.gnd#1@gl_he2.gnd# +1@gl_he2.rsw#1@gl_he2.rsw# +1@gl_k.gat#1@gl_k.gat# +1@gl_k.gnd#1@gl_k.gnd# +1@gl_k.rsw#1@gl_k.rsw# +1@gl_k2.gat#1@gl_k.gat# +1@gl_k2.gnd#1@gl_k.gnd# +1@gl_k2.rsw#1@gl_k.rsw# +1@gl_kh.gat#1@gl_k.gat# +1@gl_kh.gnd#1@gl_k.gnd# +1@gl_kh.rsw#1@gl_k.rsw# +1@gl_prq.gat#1@gl_prq.gat# +1@gl_prq.gnd#1@gl_prq.gnd# +1@gl_prq.rsw#1@gl_prq.rsw# +1@glast.gat#1@glast.gat# +1@glast.gnd#1@glast.gnd# +1@glast.rsw#1@glast.rsw# +1@gol1.gat#1@gol1.gat# +1@gol1.gnd#1@gol1.gnd# +1@gol1.rsw#1@gol1.rsw# +1@gol2.gat#1@gol2.gat# +1@gol2.gnd#1@gol2.gnd# +1@gol2.rsw#1@gol2.rsw# +1@halo.gat#1@halo.gat# +1@halo.gnd#1@halo.gnd# +1@halo.rsw#1@halo.rsw# +1@herbs.gat#1@herbs.gat# +1@herbs.gnd#1@herbs.gnd# +1@herbs.rsw#1@herbs.rsw# +1@infi.gat#1@infi.gat# +1@infi.gnd#1@infi.gnd# +1@infi.rsw#1@infi.rsw# +1@iwp.gat#1@iwp.gat# +1@iwp.gnd#1@iwp.gnd# +1@iwp.rsw#1@iwp.rsw# +1@izd02.gat#1@izd02.gat# +1@izd02.gnd#1@izd02.gnd# +1@izd02.rsw#1@izd02.rsw# +1@jorchs.gat#1@jorchs.gat# +1@jorchs.gnd#1@jorchs.gnd# +1@jorchs.rsw#1@jorchs.rsw# +1@jorlab.gat#1@jorlab.gat# +1@jorlab.gnd#1@jorlab.gnd# +1@jorlab.rsw#1@jorlab.rsw# +1@jtb.gat#1@jtb.gat# +1@jtb.gnd#1@jtb.gnd# +1@jtb.rsw#1@jtb.rsw# +1@lab.gat#1@lab.gat# +1@lab.gnd#1@lab.gnd# +1@lab.rsw#1@lab.rsw# +1@lhz.gat#1@lhz.gat# +1@lhz.gnd#1@lhz.gnd# +1@lhz.rsw#1@lhz.rsw# +1@lost.gat#1@lost.gat# +1@lost.gnd#1@lost.gnd# +1@lost.rsw#1@lost.rsw# +1@lvcb.gat#1@lvcb.gat# +1@lvcb.gnd#1@lvcb.gnd# +1@lvcb.rsw#1@lvcb.rsw# +1@ma_b.gat#1@ma_b.gat# +1@ma_b.gnd#1@ma_b.gnd# +1@ma_b.rsw#1@ma_b.rsw# +1@ma_c.gat#1@ma_c.gat# +1@ma_c.gnd#1@ma_c.gnd# +1@ma_c.rsw#1@ma_c.rsw# +1@ma_h.gat#1@ma_h.gat# +1@ma_h.gnd#1@ma_h.gnd# +1@ma_h.rsw#1@ma_h.rsw# +1@mcd.gat#1@mcd.gat# +1@mcd.gnd#1@mcd.gnd# +1@mcd.rsw#1@mcd.rsw# +1@md_gef.gat#1@md_gef.gat# +1@md_gef.gnd#1@md_gef.gnd# +1@md_gef.rsw#1@md_gef.rsw# +1@md_pay.gat#1@md_pay.gat# +1@md_pay.gnd#1@md_pay.gnd# +1@md_pay.rsw#1@md_pay.rsw# +1@mir.gat#1@mir.gat# +1@mir.gnd#1@mir.gnd# +1@mir.rsw#1@mir.rsw# +1@mist.gat#1@mist.gat# +1@mist.gnd#1@mist.gnd# +1@mist.rsw#1@mist.rsw# +1@mjo1.gat#1@mjo1.gat# +1@mjo1.gnd#1@mjo1.gnd# +1@mjo1.rsw#1@mjo1.rsw# +1@mjo2.gat#1@mjo2.gat# +1@mjo2.gnd#1@mjo2.gnd# +1@mjo2.rsw#1@mjo2.rsw# +1@momo.gat#1@momo.gat# +1@momo.gnd#1@momo.gnd# +1@momo.rsw#1@momo.rsw# +1@nyd.gat#1@nyd.gat# +1@nyd.gnd#1@nyd.gnd# +1@nyd.rsw#1@nyd.rsw# +1@nyr.gat#1@nyr.gat# +1@nyr.gnd#1@nyr.gnd# +1@nyr.rsw#1@nyr.rsw# +1@odin.gat#1@odin.gat# +1@odin.gnd#1@odin.gnd# +1@odin.rsw#1@odin.rsw# +1@orcs.gat#1@orcs.gat# +1@orcs.gnd#1@orcs.gnd# +1@orcs.rsw#1@orcs.rsw# +1@os_a.gat#1@os_a.gat# +1@os_a.gnd#1@os_a.gnd# +1@os_a.rsw#1@os_a.rsw# +1@os_b.gat#1@os_b.gat# +1@os_b.gnd#1@os_b.gnd# +1@os_b.rsw#1@os_b.rsw# +1@oz.gat#1@oz.gat# +1@oz.gnd#1@oz.gnd# +1@oz.rsw#1@oz.rsw# +1@pda.gat#1@pda.gat# +1@pda.gnd#1@pda.gnd# +1@pda.rsw#1@pda.rsw# +1@pdb.gat#1@pdb.gat# +1@pdb.gnd#1@pdb.gnd# +1@pdb.rsw#1@pdb.rsw# +1@pop1.gat#1@pop1.gat# +1@pop1.gnd#1@pop1.gnd# +1@pop1.rsw#1@pop1.rsw# +1@pop2.gat#1@pop2.gat# +1@pop2.gnd#1@pop2.gnd# +1@pop2.rsw#1@pop2.rsw# +1@pop3.gat#1@pop3.gat# +1@pop3.gnd#1@pop3.gnd# +1@pop3.rsw#1@pop3.rsw# +1@pump.gat#1@pump.gat# +1@pump.gnd#1@pump.gnd# +1@pump.rsw#1@pump.rsw# +1@rev.gat#1@rev.gat# +1@rev.gnd#1@rev.gnd# +1@rev.rsw#1@rev.rsw# +1@rgsr.gat#1@rgsr.gat# +1@rgsr.gnd#1@rgsr.gnd# +1@rgsr.rsw#1@rgsr.rsw# +1@sara.gat#1@sara.gat# +1@sara.gnd#1@sara.gnd# +1@sara.rsw#1@sara.rsw# +1@sewb2.gat#1@sewb2.gat# +1@sewb2.gnd#1@sewb2.gnd# +1@sewb2.rsw#1@sewb2.rsw# +1@slug.gat#1@slug.gat# +1@slug.gnd#1@slug.gnd# +1@slug.rsw#1@slug.rsw# +1@slw.gat#1@slw.gat# +1@slw.gnd#1@slw.gnd# +1@slw.rsw#1@slw.rsw# +1@soul.gat#1@soul.gat# +1@soul.gnd#1@soul.gnd# +1@soul.rsw#1@soul.rsw# +1@spa.gat#1@spa.gat# +1@spa.gnd#1@spa.gnd# +1@spa.rsw#1@spa.rsw# +1@spa2.gat#1@spa2.gat# +1@spa2.gnd#1@spa2.gnd# +1@spa2.rsw#1@spa2.rsw# +1@sthb.gat#1@sthb.gat# +1@sthb.gnd#1@sthb.gnd# +1@sthb.rsw#1@sthb.rsw# +1@sthc.gat#1@sthc.gat# +1@sthc.gnd#1@sthc.gnd# +1@sthc.rsw#1@sthc.rsw# +1@sthd.gat#1@sthd.gat# +1@sthd.gnd#1@sthd.gnd# +1@sthd.rsw#1@sthd.rsw# +1@swat.gat#1@swat.gat# +1@swat.gnd#1@swat.gnd# +1@swat.rsw#1@swat.rsw# +1@tcamp.gat#1@tcamp.gat# +1@tcamp.gnd#1@tcamp.gnd# +1@tcamp.rsw#1@tcamp.rsw# +1@thts.gat#1@thts.gat# +1@thts.gnd#1@thts.gnd# +1@thts.rsw#1@thts.rsw# +1@tnm1.gat#1@tnm1.gat# +1@tnm1.gnd#1@tnm1.gnd# +1@tnm1.rsw#1@tnm1.rsw# +1@tnm2.gat#1@tnm2.gat# +1@tnm2.gnd#1@tnm2.gnd# +1@tnm2.rsw#1@tnm2.rsw# +1@tnm3.gat#1@tnm3.gat# +1@tnm3.gnd#1@tnm3.gnd# +1@tnm3.rsw#1@tnm3.rsw# +1@tower.gat#1@tower.gat# +1@tower.gnd#1@tower.gnd# +1@tower.rsw#1@tower.rsw# +1@tre.gat#treasure01.gat# +1@tre.gnd#treasure01.gnd# +1@tre.rsw#treasure01.rsw# +1@tre02.gat#1@tre02.gat# +1@tre02.gnd#1@tre02.gnd# +1@tre02.rsw#1@tre02.rsw# +1@twas.gat#1@twas.gat# +1@twas.gnd#1@twas.gnd# +1@twas.rsw#1@twas.rsw# +1@twbs.gat#1@twbs.gat# +1@twbs.gnd#1@twbs.gnd# +1@twbs.rsw#1@twbs.rsw# +1@twig.gat#1@twig.gat# +1@twig.gnd#1@twig.gnd# +1@twig.rsw#1@twig.rsw# +1@twsd.gat#1@twsd.gat# +1@twsd.gnd#1@twsd.gnd# +1@twsd.rsw#1@twsd.rsw# +1@uns.gat#1@uns.gat# +1@uns.gnd#1@uns.gnd# +1@uns.rsw#1@uns.rsw# +1@vrac1.gat#1@vrac1.gat# +1@vrac1.gnd#1@vrac1.gnd# +1@vrac1.rsw#1@vrac1.rsw# +1@vrac2.gat#1@vrac2.gat# +1@vrac2.gnd#1@vrac2.gnd# +1@vrac2.rsw#1@vrac2.rsw# +1@vrcas.gat#1@vrcas.gat# +1@vrcas.gnd#1@vrcas.gnd# +1@vrcas.rsw#1@vrcas.rsw# +1@vrclo.gat#1@vrclo.gat# +1@vrclo.gnd#1@vrclo.gnd# +1@vrclo.rsw#1@vrclo.rsw# +1@vrev.gat#1@vrev.gat# +1@vrev.gnd#1@vrev.gnd# +1@vrev.rsw#1@vrev.rsw# +1@vrgen.gat#1@vrgen.gat# +1@vrgen.gnd#1@vrgen.gnd# +1@vrgen.rsw#1@vrgen.rsw# +1@vrhha.gat#1@vrhha.gat# +1@vrhha.gnd#1@vrhha.gnd# +1@vrhha.rsw#1@vrhha.rsw# +1@vrpo.gat#1@vrpo.gat# +1@vrpo.gnd#1@vrpo.gnd# +1@vrpo.rsw#1@vrpo.rsw# +1@vrpop.gat#1@vrpop.gat# +1@vrpop.gnd#1@vrpop.gnd# +1@vrpop.rsw#1@vrpop.rsw# +1@whl.gat#1@whl.gat# +1@whl.gnd#1@whl.gnd# +1@whl.rsw#1@whl.rsw# +1@xm_d.gat#1@xm_d.gat# +1@xm_d.gnd#1@xm_d.gnd# +1@xm_d.rsw#1@xm_d.rsw# +1@xm_d2.gat#1@xm_d.gat# +1@xm_d2.gnd#1@xm_d.gnd# +1@xm_d2.rsw#1@xm_d.rsw# +2@cata.gat#2@cata.gat# +2@cata.gnd#2@cata.gnd# +2@cata.rsw#2@cata.rsw# +2@ch_t.gat#2@ch_t.gat# +2@ch_t.gnd#2@ch_t.gnd# +2@ch_t.rsw#2@ch_t.rsw# +2@exds.gat#2@exds.gat# +2@exds.gnd#2@exds.gnd# +2@exds.rsw#2@exds.rsw# +2@gl_k.gat#2@gl_k.gat# +2@gl_k.gnd#2@gl_k.gnd# +2@gl_k.rsw#2@gl_k.rsw# +2@gl_k2.gat#2@gl_k.gat# +2@gl_k2.gnd#2@gl_k.gnd# +2@gl_k2.rsw#2@gl_k.rsw# +2@gl_kh.gat#2@gl_k.gat# +2@gl_kh.gnd#2@gl_k.gnd# +2@gl_kh.rsw#2@gl_k.rsw# +2@mir.gat#2@mir.gat# +2@mir.gnd#2@mir.gnd# +2@mir.rsw#2@mir.rsw# +2@nyd.gat#2@nyd.gat# +2@nyd.gnd#2@nyd.gnd# +2@nyd.rsw#2@nyd.rsw# +2@nyr.gat#2@nyr.gat# +2@nyr.gnd#2@nyr.gnd# +2@nyr.rsw#2@nyr.rsw# +2@orcs.gat#2@orcs.gat# +2@orcs.gnd#2@orcs.gnd# +2@orcs.rsw#2@orcs.rsw# +2@pump.gat#2@pump.gat# +2@pump.gnd#2@pump.gnd# +2@pump.rsw#2@pump.rsw# +2@thts.gat#2@thts.gat# +2@thts.gnd#2@thts.gnd# +2@thts.rsw#2@thts.rsw# +2@tower.gat#2@tower.gat# +2@tower.gnd#2@tower.gnd# +2@tower.rsw#2@tower.rsw# +2@vrclo.gat#2@vrclo.gat# +2@vrclo.gnd#2@vrclo.gnd# +2@vrclo.rsw#2@vrclo.rsw# +2@vrpop.gat#2@vrpop.gat# +2@vrpop.gnd#2@vrpop.gnd# +2@vrpop.rsw#2@vrpop.rsw# +3@ch_t.gat#3@ch_t.gat# +3@ch_t.gnd#3@ch_t.gnd# +3@ch_t.rsw#3@ch_t.rsw# +3@thts.gat#3@thts.gat# +3@thts.gnd#3@thts.gnd# +3@thts.rsw#3@thts.rsw# +3@tower.gat#3@tower.gat# +3@tower.gnd#3@tower.gnd# +3@tower.rsw#3@tower.rsw# +3@vrpop.gat#3@vrpop.gat# +3@vrpop.gnd#3@vrpop.gnd# +3@vrpop.rsw#3@vrpop.rsw# +4@thts.gat#4@thts.gat# +4@thts.gnd#4@thts.gnd# +4@thts.rsw#4@thts.rsw# +4@tower.gat#4@tower.gat# +4@tower.gnd#4@tower.gnd# +4@tower.rsw#4@tower.rsw# +5@thts.gat#5@thts.gat# +5@thts.gnd#5@thts.gnd# +5@thts.rsw#5@thts.rsw# +5@tower.gat#5@tower.gat# +5@tower.gnd#5@tower.gnd# +5@tower.rsw#5@tower.rsw# +6@thts.gat#6@thts.gat# +6@thts.gnd#6@thts.gnd# +6@thts.rsw#6@thts.rsw# +6@tower.gat#6@tower.gat# +6@tower.gnd#6@tower.gnd# +6@tower.rsw#6@tower.rsw# +7@thts.gat#7@thts.gat# +7@thts.gnd#7@thts.gnd# +7@thts.rsw#7@thts.rsw# +8@thts.gat#8@thts.gat# +8@thts.gnd#8@thts.gnd# +8@thts.rsw#8@thts.rsw# +airplane_01.gat#airplane.gat# +airplane_01.gnd#airplane.gnd# +airplane_01.rsw#airplane.rsw# +airplane_evt.gat#airplane.gat# +airplane_evt.gnd#airplane.gnd# +airplane_evt.rsw#airplane.rsw# +arena_room.gat#nova_l.gat# +arena_room.gnd#nova_l.gnd# +arena_room.rsw#nova_l.rsw# +arug_cas04.gat#arug_cas03.gat# +arug_cas04.gnd#arug_cas03.gnd# +arug_cas04.rsw#arug_cas03.rsw# +arug_cas05.gat#arug_cas03.gat# +arug_cas05.gnd#arug_cas03.gnd# +arug_cas05.rsw#arug_cas03.rsw# +bat_a02.gat#bat_a01.gat# +bat_a02.gnd#bat_a01.gnd# +bat_a02.rsw#bat_a01.rsw# +bat_b02.gat#bat_b01.gat# +bat_b02.gnd#bat_b01.gnd# +bat_b02.rsw#bat_b01.rsw# +bat_c02.gat#bat_c01.gat# +bat_c02.gnd#bat_c01.gnd# +bat_c02.rsw#bat_c01.rsw# +bat_c03.gat#bat_c01.gat# +bat_c03.gnd#bat_c01.gnd# +bat_c03.rsw#bat_c01.rsw# +bossnia_01.gat#gef_dun03.gat# +bossnia_01.gnd#gef_dun03.gnd# +bossnia_01.rsw#gef_dun03.rsw# +bossnia_02.gat#gef_dun03.gat# +bossnia_02.gnd#gef_dun03.gnd# +bossnia_02.rsw#gef_dun03.rsw# +bossnia_03.gat#gef_dun03.gat# +bossnia_03.gnd#gef_dun03.gnd# +bossnia_03.rsw#gef_dun03.rsw# +bossnia_04.gat#gef_dun03.gat# +bossnia_04.gnd#gef_dun03.gnd# +bossnia_04.rsw#gef_dun03.rsw# +dali02.gat#dali.gat# +dali02.gnd#dali.gnd# +dali02.rsw#dali.rsw# +dic_dun03.gat#dic_dun02.gat# +dic_dun03.gnd#dic_dun02.gnd# +dic_dun03.rsw#dic_dun02.rsw# +e_hugel.gat#hugel.gat# +e_hugel.gnd#hugel.gnd# +e_hugel.rsw#hugel.rsw# +eabyss_01h.gat#abyss_01.gat# +eabyss_01h.gnd#abyss_01.gnd# +eabyss_01h.rsw#abyss_01.rsw# +eabyss_01l.gat#abyss_01.gat# +eabyss_01l.gnd#abyss_01.gnd# +eabyss_01l.rsw#abyss_01.rsw# +eabyss_01m.gat#abyss_01.gat# +eabyss_01m.gnd#abyss_01.gnd# +eabyss_01m.rsw#abyss_01.rsw# +eabyss_03h.gat#abyss_03.gat# +eabyss_03h.gnd#abyss_03.gnd# +eabyss_03h.rsw#abyss_03.rsw# +eabyss_03l.gat#abyss_03.gat# +eabyss_03l.gnd#abyss_03.gnd# +eabyss_03l.rsw#abyss_03.rsw# +eabyss_03m.gat#abyss_03.gat# +eabyss_03m.gnd#abyss_03.gnd# +eabyss_03m.rsw#abyss_03.rsw# +ebeach_dunh.gat#beach_dun.gat# +ebeach_dunh.gnd#beach_dun.gnd# +ebeach_dunh.rsw#beach_dun.rsw# +ebeach_dunl.gat#beach_dun.gat# +ebeach_dunl.gnd#beach_dun.gnd# +ebeach_dunl.rsw#beach_dun.rsw# +ebeach_dunm.gat#beach_dun.gat# +ebeach_dunm.gnd#beach_dun.gnd# +ebeach_dunm.rsw#beach_dun.rsw# +ebif_fld01h.gat#bif_fild01.gat# +ebif_fld01h.gnd#bif_fild01.gnd# +ebif_fld01h.rsw#bif_fild01.rsw# +ebif_fld01l.gat#bif_fild01.gat# +ebif_fld01l.gnd#bif_fild01.gnd# +ebif_fld01l.rsw#bif_fild01.rsw# +ebif_fld01m.gat#bif_fild01.gat# +ebif_fld01m.gnd#bif_fild01.gnd# +ebif_fld01m.rsw#bif_fild01.rsw# +ecl_fild01.gat#ecl_fild01.gat# +ecl_fild01.gnd#ecl_fild01.gnd# +ecl_fild01.rsw#ecl_fild01.rsw# +ecl_hub01.gat#ecl_hub01.gat# +ecl_hub01.gnd#ecl_hub01.gnd# +ecl_hub01.rsw#ecl_hub01.rsw# +ecl_tdun01.gat#ecl_tdun01.gat# +ecl_tdun01.gnd#ecl_tdun01.gnd# +ecl_tdun01.rsw#ecl_tdun01.rsw# +ecl_tdun02.gat#ecl_tdun02.gat# +ecl_tdun02.gnd#ecl_tdun02.gnd# +ecl_tdun02.rsw#ecl_tdun02.rsw# +ecl_tdun03.gat#nova_c.gat# +ecl_tdun03.gnd#nova_c.gnd# +ecl_tdun03.rsw#nova_c.rsw# +eclage.gat#eclage.gat# +eclage.gnd#eclage.gnd# +eclage.rsw#eclage.rsw# +edic_dun01h.gat#dic_dun01.gat# +edic_dun01h.gnd#dic_dun01.gnd# +edic_dun01h.rsw#dic_dun01.rsw# +edic_dun01l.gat#dic_dun01.gat# +edic_dun01l.gnd#dic_dun01.gnd# +edic_dun01l.rsw#dic_dun01.rsw# +edic_dun01m.gat#dic_dun01.gat# +edic_dun01m.gnd#dic_dun01.gnd# +edic_dun01m.rsw#dic_dun01.rsw# +edic_dun02h.gat#dic_dun02.gat# +edic_dun02h.gnd#dic_dun02.gnd# +edic_dun02h.rsw#dic_dun02.rsw# +edic_dun02l.gat#dic_dun02.gat# +edic_dun02l.gnd#dic_dun02.gnd# +edic_dun02l.rsw#dic_dun02.rsw# +edic_dun02m.gat#dic_dun02.gat# +edic_dun02m.gnd#dic_dun02.gnd# +edic_dun02m.rsw#dic_dun02.rsw# +edic_fld01h.gat#dic_fild01.gat# +edic_fld01h.gnd#dic_fild01.gnd# +edic_fld01h.rsw#dic_fild01.rsw# +edic_fld01l.gat#dic_fild01.gat# +edic_fld01l.gnd#dic_fild01.gnd# +edic_fld01l.rsw#dic_fild01.rsw# +edic_fld01m.gat#dic_fild01.gat# +edic_fld01m.gnd#dic_fild01.gnd# +edic_fld01m.rsw#dic_fild01.rsw# +egef_dun03h.gat#gef_dun03.gat# +egef_dun03h.gnd#gef_dun03.gnd# +egef_dun03h.rsw#gef_dun03.rsw# +egef_dun03l.gat#gef_dun03.gat# +egef_dun03l.gnd#gef_dun03.gnd# +egef_dun03l.rsw#gef_dun03.rsw# +egef_dun03m.gat#gef_dun03.gat# +egef_dun03m.gnd#gef_dun03.gnd# +egef_dun03m.rsw#gef_dun03.rsw# +egl_chyardh.gat#gl_chyard.gat# +egl_chyardh.gnd#gl_chyard.gnd# +egl_chyardh.rsw#gl_chyard.rsw# +egl_chyardl.gat#gl_chyard.gat# +egl_chyardl.gnd#gl_chyard.gnd# +egl_chyardl.rsw#gl_chyard.rsw# +egl_chyardm.gat#gl_chyard.gat# +egl_chyardm.gnd#gl_chyard.gnd# +egl_chyardm.rsw#gl_chyard.rsw# +ehu_fild01h.gat#hu_fild01.gat# +ehu_fild01h.gnd#hu_fild01.gnd# +ehu_fild01h.rsw#hu_fild01.rsw# +ehu_fild01l.gat#hu_fild01.gat# +ehu_fild01l.gnd#hu_fild01.gnd# +ehu_fild01l.rsw#hu_fild01.rsw# +ehu_fild01m.gat#hu_fild01.gat# +ehu_fild01m.gnd#hu_fild01.gnd# +ehu_fild01m.rsw#hu_fild01.rsw# +elhz_fld01h.gat#lhz_fild01.gat# +elhz_fld01h.gnd#lhz_fild01.gnd# +elhz_fld01h.rsw#lhz_fild01.rsw# +elhz_fld01l.gat#lhz_fild01.gat# +elhz_fld01l.gnd#lhz_fild01.gnd# +elhz_fld01l.rsw#lhz_fild01.rsw# +elhz_fld01m.gat#lhz_fild01.gat# +elhz_fld01m.gnd#lhz_fild01.gnd# +elhz_fld01m.rsw#lhz_fild01.rsw# +emag_dun02h.gat#mag_dun02.gat# +emag_dun02h.gnd#mag_dun02.gnd# +emag_dun02h.rsw#mag_dun02.rsw# +emag_dun02l.gat#mag_dun02.gat# +emag_dun02l.gnd#mag_dun02.gnd# +emag_dun02l.rsw#mag_dun02.rsw# +emag_dun02m.gat#mag_dun02.gat# +emag_dun02m.gnd#mag_dun02.gnd# +emag_dun02m.rsw#mag_dun02.rsw# +eman_fld03h.gat#man_fild03.gat# +eman_fld03h.gnd#man_fild03.gnd# +eman_fld03h.rsw#man_fild03.rsw# +eman_fld03l.gat#man_fild03.gat# +eman_fld03l.gnd#man_fild03.gnd# +eman_fld03l.rsw#man_fild03.rsw# +eman_fld03m.gat#man_fild03.gat# +eman_fld03m.gnd#man_fild03.gnd# +eman_fld03m.rsw#man_fild03.rsw# +emos_dun02h.gat#mosk_dun02.gat# +emos_dun02h.gnd#mosk_dun02.gnd# +emos_dun02h.rsw#mosk_dun02.rsw# +emos_dun02l.gat#mosk_dun02.gat# +emos_dun02l.gnd#mosk_dun02.gnd# +emos_dun02l.rsw#mosk_dun02.rsw# +emos_dun02m.gat#mosk_dun02.gat# +emos_dun02m.gnd#mosk_dun02.gnd# +emos_dun02m.rsw#mosk_dun02.rsw# +epay_dun00h.gat#pay_dun00.gat# +epay_dun00h.gnd#pay_dun00.gnd# +epay_dun00h.rsw#pay_dun00.rsw# +epay_dun00l.gat#pay_dun00.gat# +epay_dun00l.gnd#pay_dun00.gnd# +epay_dun00l.rsw#pay_dun00.rsw# +epay_dun00m.gat#pay_dun00.gat# +epay_dun00m.gnd#pay_dun00.gnd# +epay_dun00m.rsw#pay_dun00.rsw# +era_fild12h.gat#ra_fild12.gat# +era_fild12h.gnd#ra_fild12.gnd# +era_fild12h.rsw#ra_fild12.rsw# +era_fild12l.gat#ra_fild12.gat# +era_fild12l.gnd#ra_fild12.gnd# +era_fild12l.rsw#ra_fild12.rsw# +era_fild12m.gat#ra_fild12.gat# +era_fild12m.gnd#ra_fild12.gnd# +era_fild12m.rsw#ra_fild12.rsw# +era_san04h.gat#ra_san04.gat# +era_san04h.gnd#ra_san04.gnd# +era_san04h.rsw#ra_san04.rsw# +era_san04l.gat#ra_san04.gat# +era_san04l.gnd#ra_san04.gnd# +era_san04l.rsw#ra_san04.rsw# +era_san04m.gat#ra_san04.gat# +era_san04m.gnd#ra_san04.gnd# +era_san04m.rsw#ra_san04.rsw# +etha_t04h.gat#tha_t04.gat# +etha_t04h.gnd#tha_t04.gnd# +etha_t04h.rsw#tha_t04.rsw# +etha_t04l.gat#tha_t04.gat# +etha_t04l.gnd#tha_t04.gnd# +etha_t04l.rsw#tha_t04.rsw# +etha_t04m.gat#tha_t04.gat# +etha_t04m.gnd#tha_t04.gnd# +etha_t04m.rsw#tha_t04.rsw# +ethor_v02h.gat#thor_v02.gat# +ethor_v02h.gnd#thor_v02.gnd# +ethor_v02h.rsw#thor_v02.rsw# +ethor_v02l.gat#thor_v02.gat# +ethor_v02l.gnd#thor_v02.gnd# +ethor_v02l.rsw#thor_v02.rsw# +ethor_v02m.gat#thor_v02.gat# +ethor_v02m.gnd#thor_v02.gnd# +ethor_v02m.rsw#thor_v02.rsw# +etur_dun03h.gat#tur_dun03.gat# +etur_dun03h.gnd#tur_dun03.gnd# +etur_dun03h.rsw#tur_dun03.rsw# +etur_dun03l.gat#tur_dun03.gat# +etur_dun03l.gnd#tur_dun03.gnd# +etur_dun03l.rsw#tur_dun03.rsw# +etur_dun03m.gat#tur_dun03.gat# +etur_dun03m.gnd#tur_dun03.gnd# +etur_dun03m.rsw#tur_dun03.rsw# +evt_coke.gat#evt_coke.gat# +evt_coke.gnd#evt_coke.gnd# +evt_coke.rsw#evt_coke.rsw# +evt_swar_b.gat#moc_ruins.gat# +evt_swar_b.gnd#moc_ruins.gnd# +evt_swar_b.rsw#moc_ruins.rsw# +evt_swar_d.gat#moc_ruins.gat# +evt_swar_d.gnd#moc_ruins.gnd# +evt_swar_d.rsw#moc_ruins.rsw# +evt_swar_r.gat#moc_ruins.gat# +evt_swar_r.gnd#moc_ruins.gnd# +evt_swar_r.rsw#moc_ruins.rsw# +evt_swar_s.gat#moc_ruins.gat# +evt_swar_s.gnd#moc_ruins.gnd# +evt_swar_s.rsw#moc_ruins.rsw# +evt_swar_t.gat#moc_ruins.gat# +evt_swar_t.gnd#moc_ruins.gnd# +evt_swar_t.rsw#moc_ruins.rsw# +eyno_fld07h.gat#yuno_fild07.gat# +eyno_fld07h.gnd#yuno_fild07.gnd# +eyno_fld07h.rsw#yuno_fild07.rsw# +eyno_fld07l.gat#yuno_fild07.gat# +eyno_fld07l.gnd#yuno_fild07.gnd# +eyno_fld07l.rsw#yuno_fild07.rsw# +eyno_fld07m.gat#yuno_fild07.gat# +eyno_fld07m.gnd#yuno_fild07.gnd# +eyno_fld07m.rsw#yuno_fild07.rsw# +force_1-1.gat#force_map1.gat# +force_1-1.gnd#force_map1.gnd# +force_1-1.rsw#force_map1.rsw# +force_1-2.gat#force_map2.gat# +force_1-2.gnd#force_map2.gnd# +force_1-2.rsw#force_map2.rsw# +force_1-3.gat#force_map3.gat# +force_1-3.gnd#force_map3.gnd# +force_1-3.rsw#force_map3.rsw# +force_2-1.gat#force_map1.gat# +force_2-1.gnd#force_map1.gnd# +force_2-1.rsw#force_map1.rsw# +force_2-2.gat#force_map2.gat# +force_2-2.gnd#force_map2.gnd# +force_2-2.rsw#force_map2.rsw# +force_2-3.gat#force_map3.gat# +force_2-3.gnd#force_map3.gnd# +force_2-3.rsw#force_map3.rsw# +force_3-1.gat#force_map1.gat# +force_3-1.gnd#force_map1.gnd# +force_3-1.rsw#force_map1.rsw# +force_3-2.gat#force_map2.gat# +force_3-2.gnd#force_map2.gnd# +force_3-2.rsw#force_map2.rsw# +force_3-3.gat#force_map3.gat# +force_3-3.gnd#force_map3.gnd# +force_3-3.rsw#force_map3.rsw# +force_4-1.gat#force_map1.gat# +force_4-1.gnd#force_map1.gnd# +force_4-1.rsw#force_map1.rsw# +force_5-1.gat#force_map1.gat# +force_5-1.gnd#force_map1.gnd# +force_5-1.rsw#force_map1.rsw# +g_room1-1.gat#quiz_01.gat# +g_room1-1.gnd#quiz_01.gnd# +g_room1-1.rsw#quiz_01.rsw# +g_room1-2.gat#quiz_01.gat# +g_room1-2.gnd#quiz_01.gnd# +g_room1-2.rsw#quiz_01.rsw# +g_room1-3.gat#quiz_01.gat# +g_room1-3.gnd#quiz_01.gnd# +g_room1-3.rsw#quiz_01.rsw# +g_room2.gat#quiz_01.gat# +g_room2.gnd#quiz_01.gnd# +g_room2.rsw#quiz_01.rsw# +gj_ba_chess.gat#ba_chess.gat# +gj_ba_chess.gnd#ba_chess.gnd# +gj_ba_chess.rsw#ba_chess.rsw# +gj_hero_out.gat#hero_out2.gat# +gj_hero_out.gnd#hero_out2.gnd# +gj_hero_out.rsw#hero_out2.rsw# +gj_job_knt.gat#job_knt.gat# +gj_job_knt.gnd#job_knt.gnd# +gj_job_knt.rsw#job_knt.rsw# +gl_cas02_.gat#gl_cas02_.gat# +gl_cas02_.gnd#gl_cas02_.gnd# +gl_cas02_.rsw#gl_cas02_.rsw# +gl_church_evt.gat#gl_church.gat# +gl_church_evt.gnd#gl_church.gnd# +gl_church_evt.rsw#gl_church.rsw# +gl_chyard_.gat#gl_chyard_.gat# +gl_chyard_.gnd#gl_chyard_.gnd# +gl_chyard_.rsw#gl_chyard_.rsw# +gld_dun01_2.gat#gld_dun01.gat# +gld_dun01_2.gnd#gld_dun01.gnd# +gld_dun01_2.rsw#gld_dun01.rsw# +gld_dun02_2.gat#gld_dun02.gat# +gld_dun02_2.gnd#gld_dun02.gnd# +gld_dun02_2.rsw#gld_dun02.rsw# +gld_dun03_2.gat#gld_dun03.gat# +gld_dun03_2.gnd#gld_dun03.gnd# +gld_dun03_2.rsw#gld_dun03.rsw# +gld_dun04_2.gat#gld_dun04.gat# +gld_dun04_2.gnd#gld_dun04.gnd# +gld_dun04_2.rsw#gld_dun04.rsw# +guild_room.gat#quiz_01.gat# +guild_room.gnd#quiz_01.gnd# +guild_room.rsw#quiz_01.rsw# +guild_vs01.gat#guild_vs01.gat# +guild_vs01.gnd#guild_vs01.gnd# +guild_vs01.rsw#guild_vs01.rsw# +guild_vs02.gat#guild_vs02.gat# +guild_vs02.gnd#guild_vs02.gnd# +guild_vs02.rsw#guild_vs02.rsw# +guild_vs03.gat#guild_vs03.gat# +guild_vs03.gnd#guild_vs03.gnd# +guild_vs03.rsw#guild_vs03.rsw# +guild_vs04.gat#guild_vs04.gat# +guild_vs04.gnd#guild_vs04.gnd# +guild_vs04.rsw#guild_vs04.rsw# +guild_vs1-1.gat#guild_vs1.gat# +guild_vs1-1.gnd#guild_vs1.gnd# +guild_vs1-1.rsw#guild_vs1.rsw# +guild_vs1-2.gat#guild_vs1.gat# +guild_vs1-2.gnd#guild_vs1.gnd# +guild_vs1-2.rsw#guild_vs1.rsw# +guild_vs1-3.gat#guild_vs1.gat# +guild_vs1-3.gnd#guild_vs1.gnd# +guild_vs1-3.rsw#guild_vs1.rsw# +guild_vs1-4.gat#guild_vs1.gat# +guild_vs1-4.gnd#guild_vs1.gnd# +guild_vs1-4.rsw#guild_vs1.rsw# +guild_vs2-1.gat#guild_vs2.gat# +guild_vs2-1.gnd#guild_vs2.gnd# +guild_vs2-1.rsw#guild_vs2.rsw# +guild_vs2-2.gat#guild_vs2.gat# +guild_vs2-2.gnd#guild_vs2.gnd# +guild_vs2-2.rsw#guild_vs2.rsw# +himinn.gat#valkyrie.gat# +himinn.gnd#valkyrie.gnd# +himinn.rsw#valkyrie.rsw# +hunter_1-1.gat#job_hunter.gat# +hunter_1-1.gnd#job_hunter.gnd# +hunter_1-1.rsw#job_hunter.rsw# +hunter_2-1.gat#job_hunter.gat# +hunter_2-1.gnd#job_hunter.gnd# +hunter_2-1.rsw#job_hunter.rsw# +hunter_3-1.gat#job_hunter.gat# +hunter_3-1.gnd#job_hunter.gnd# +hunter_3-1.rsw#job_hunter.rsw# +int_land01.gat#int_land.gat# +int_land01.gnd#int_land.gnd# +int_land01.rsw#int_land.rsw# +int_land02.gat#int_land.gat# +int_land02.gnd#int_land.gnd# +int_land02.rsw#int_land.rsw# +int_land03.gat#int_land.gat# +int_land03.gnd#int_land.gnd# +int_land03.rsw#int_land.rsw# +int_land04.gat#int_land.gat# +int_land04.gnd#int_land.gnd# +int_land04.rsw#int_land.rsw# +itemmall.gat#auction_01.gat# +itemmall.gnd#auction_01.gnd# +itemmall.rsw#auction_01.rsw# +iz_ac01_a.gat#iz_ac01.gat# +iz_ac01_a.gnd#iz_ac01.gnd# +iz_ac01_a.rsw#iz_ac01.rsw# +iz_ac01_b.gat#iz_ac01.gat# +iz_ac01_b.gnd#iz_ac01.gnd# +iz_ac01_b.rsw#iz_ac01.rsw# +iz_ac01_c.gat#iz_ac01.gat# +iz_ac01_c.gnd#iz_ac01.gnd# +iz_ac01_c.rsw#iz_ac01.rsw# +iz_ac01_d.gat#iz_ac01.gat# +iz_ac01_d.gnd#iz_ac01.gnd# +iz_ac01_d.rsw#iz_ac01.rsw# +iz_ac02_a.gat#iz_ac02.gat# +iz_ac02_a.gnd#iz_ac02.gnd# +iz_ac02_a.rsw#iz_ac02.rsw# +iz_ac02_b.gat#iz_ac02.gat# +iz_ac02_b.gnd#iz_ac02.gnd# +iz_ac02_b.rsw#iz_ac02.rsw# +iz_ac02_c.gat#iz_ac02.gat# +iz_ac02_c.gnd#iz_ac02.gnd# +iz_ac02_c.rsw#iz_ac02.rsw# +iz_ac02_d.gat#iz_ac02.gat# +iz_ac02_d.gnd#iz_ac02.gnd# +iz_ac02_d.rsw#iz_ac02.rsw# +iz_dun03_evt.gat#iz_dun03.gat# +iz_dun03_evt.gnd#iz_dun03.gnd# +iz_dun03_evt.rsw#iz_dun03.rsw# +iz_int.gat#iz_int.gat# +iz_int.gnd#iz_int.gnd# +iz_int.rsw#iz_int.rsw# +iz_int01.gat#iz_int.gat# +iz_int01.gnd#iz_int.gnd# +iz_int01.rsw#iz_int.rsw# +iz_int02.gat#iz_int.gat# +iz_int02.gnd#iz_int.gnd# +iz_int02.rsw#iz_int.rsw# +iz_int03.gat#iz_int.gat# +iz_int03.gnd#iz_int.gnd# +iz_int03.rsw#iz_int.rsw# +iz_int04.gat#iz_int.gat# +iz_int04.gnd#iz_int.gnd# +iz_int04.rsw#iz_int.rsw# +izlude_a.gat#izlude.gat# +izlude_a.gnd#izlude.gnd# +izlude_a.rsw#izlude.rsw# +izlude_b.gat#izlude.gat# +izlude_b.gnd#izlude.gnd# +izlude_b.rsw#izlude.rsw# +izlude_c.gat#izlude.gat# +izlude_c.gnd#izlude.gnd# +izlude_c.rsw#izlude.rsw# +izlude_d.gat#izlude.gat# +izlude_d.gnd#izlude.gnd# +izlude_d.rsw#izlude.rsw# +job3_arch03.gat#job3_arch01.gat# +job3_arch03.gnd#job3_arch01.gnd# +job3_arch03.rsw#job3_arch01.rsw# +job3_gen01.gat#job3_gen01.gat# +job3_gen01.gnd#job3_gen01.gnd# +job3_gen01.rsw#job3_gen01.rsw# +job3_rune03.gat#job3_rune02.gat# +job3_rune03.gnd#job3_rune02.gnd# +job3_rune03.rsw#job3_rune02.rsw# +job3_war02.gat#job3_war01.gat# +job3_war02.gnd#job3_war01.gnd# +job3_war02.rsw#job3_war01.rsw# +job4_bio.gat#nova_p.gat# +job4_bio.gnd#nova_p.gnd# +job4_bio.rsw#nova_p.rsw# +job_cru.gat#job_prist.gat# +job_cru.gnd#job_prist.gnd# +job_cru.rsw#job_prist.rsw# +job_ko.gat#job_ko.gat# +job_ko.gnd#job_ko.gnd# +job_ko.rsw#job_ko.rsw# +job_sage.gat#job_wiz.gat# +job_sage.gnd#job_wiz.gnd# +job_sage.rsw#job_wiz.rsw# +jupe_core2.gat#jupe_core.gat# +jupe_core2.gnd#jupe_core.gnd# +jupe_core2.rsw#jupe_core.rsw# +knight_1-1.gat#job_knight.gat# +knight_1-1.gnd#job_knight.gnd# +knight_1-1.rsw#job_knight.rsw# +knight_2-1.gat#job_knight.gat# +knight_2-1.gnd#job_knight.gnd# +knight_2-1.rsw#job_knight.rsw# +knight_3-1.gat#job_knight.gat# +knight_3-1.gnd#job_knight.gnd# +knight_3-1.rsw#job_knight.rsw# +lhz_airport.gat#airport.gat# +lhz_airport.gnd#airport.gnd# +lhz_airport.rsw#airport.rsw# +lhz_cube_evt.gat#lhz_cube.gat# +lhz_cube_evt.gnd#lhz_cube.gnd# +lhz_cube_evt.rsw#lhz_cube.rsw# +ma_zif02.gat#ma_zif01.gat# +ma_zif02.gnd#ma_zif01.gnd# +ma_zif02.rsw#ma_zif01.rsw# +ma_zif03.gat#ma_zif01.gat# +ma_zif03.gnd#ma_zif01.gnd# +ma_zif03.rsw#ma_zif01.rsw# +ma_zif04.gat#ma_zif01.gat# +ma_zif04.gnd#ma_zif01.gnd# +ma_zif04.rsw#ma_zif01.rsw# +ma_zif05.gat#ma_zif01.gat# +ma_zif05.gnd#ma_zif01.gnd# +ma_zif05.rsw#ma_zif01.rsw# +ma_zif06.gat#ma_zif01.gat# +ma_zif06.gnd#ma_zif01.gnd# +ma_zif06.rsw#ma_zif01.rsw# +ma_zif07.gat#ma_zif01.gat# +ma_zif07.gnd#ma_zif01.gnd# +ma_zif07.rsw#ma_zif01.rsw# +ma_zif08.gat#ma_zif01.gat# +ma_zif08.gnd#ma_zif01.gnd# +ma_zif08.rsw#ma_zif01.rsw# +ma_zif09.gat#ma_zif01.gat# +ma_zif09.gnd#ma_zif01.gnd# +ma_zif09.rsw#ma_zif01.rsw# +mosk_que.gat#1@mosk_que.gat# +mosk_que.gnd#1@mosk_que.gnd# +mosk_que.rsw#1@mosk_que.rsw# +new_1-1.gat#new_zone01.gat# +new_1-1.gnd#new_zone01.gnd# +new_1-1.rsw#new_zone01.rsw# +new_1-1_evt.gat#new_1-1.gat# +new_1-1_evt.gnd#new_1-1.gnd# +new_1-1_evt.rsw#new_1-1.rsw# +new_1-2.gat#new_zone02.gat# +new_1-2.gnd#new_zone02.gnd# +new_1-2.rsw#new_zone02.rsw# +new_1-2_evt.gat#new_1-2.gat# +new_1-2_evt.gnd#new_1-2.gnd# +new_1-2_evt.rsw#new_1-2.rsw# +new_1-3.gat#new_zone03.gat# +new_1-3.gnd#new_zone03.gnd# +new_1-3.rsw#new_zone03.rsw# +new_1-4.gat#new_zone04.gat# +new_1-4.gnd#new_zone04.gnd# +new_1-4.rsw#new_zone04.rsw# +new_2-1.gat#new_zone01.gat# +new_2-1.gnd#new_zone01.gnd# +new_2-1.rsw#new_zone01.rsw# +new_2-2.gat#new_zone02.gat# +new_2-2.gnd#new_zone02.gnd# +new_2-2.rsw#new_zone02.rsw# +new_2-3.gat#new_zone03.gat# +new_2-3.gnd#new_zone03.gnd# +new_2-3.rsw#new_zone03.rsw# +new_2-4.gat#new_zone04.gat# +new_2-4.gnd#new_zone04.gnd# +new_2-4.rsw#new_zone04.rsw# +new_3-1.gat#new_zone01.gat# +new_3-1.gnd#new_zone01.gnd# +new_3-1.rsw#new_zone01.rsw# +new_3-2.gat#new_zone02.gat# +new_3-2.gnd#new_zone02.gnd# +new_3-2.rsw#new_zone02.rsw# +new_3-3.gat#new_zone03.gat# +new_3-3.gnd#new_zone03.gnd# +new_3-3.rsw#new_zone03.rsw# +new_3-4.gat#new_zone04.gat# +new_3-4.gnd#new_zone04.gnd# +new_3-4.rsw#new_zone04.rsw# +new_4-1.gat#new_zone01.gat# +new_4-1.gnd#new_zone01.gnd# +new_4-1.rsw#new_zone01.rsw# +new_4-2.gat#new_zone02.gat# +new_4-2.gnd#new_zone02.gnd# +new_4-2.rsw#new_zone02.rsw# +new_4-3.gat#new_zone03.gat# +new_4-3.gnd#new_zone03.gnd# +new_4-3.rsw#new_zone03.rsw# +new_4-4.gat#new_zone04.gat# +new_4-4.gnd#new_zone04.gnd# +new_4-4.rsw#new_zone04.rsw# +new_5-1.gat#new_zone01.gat# +new_5-1.gnd#new_zone01.gnd# +new_5-1.rsw#new_zone01.rsw# +new_5-2.gat#new_zone02.gat# +new_5-2.gnd#new_zone02.gnd# +new_5-2.rsw#new_zone02.rsw# +new_5-3.gat#new_zone03.gat# +new_5-3.gnd#new_zone03.gnd# +new_5-3.rsw#new_zone03.rsw# +new_5-4.gat#new_zone04.gat# +new_5-4.gnd#new_zone04.gnd# +new_5-4.rsw#new_zone04.rsw# +nguild_alde.gat#aldeg_cas01.gat# +nguild_alde.gnd#aldeg_cas01.gnd# +nguild_alde.rsw#aldeg_cas01.rsw# +nguild_gef.gat#gefg_cas01.gat# +nguild_gef.gnd#gefg_cas01.gnd# +nguild_gef.rsw#gefg_cas01.rsw# +nguild_pay.gat#payg_cas01.gat# +nguild_pay.gnd#payg_cas01.gnd# +nguild_pay.rsw#payg_cas01.rsw# +nguild_prt.gat#prtg_cas01.gat# +nguild_prt.gnd#prtg_cas01.gnd# +nguild_prt.rsw#prtg_cas01.rsw# +nofear01.gat#guild_vs2.gat# +nofear01.gnd#guild_vs2.gnd# +nofear01.rsw#guild_vs2.rsw# +nofear02.gat#hero_ent2.gat# +nofear02.gnd#hero_ent2.gnd# +nofear02.rsw#hero_ent2.rsw# +ordeal_1-1.gat#ordeal_a00.gat# +ordeal_1-1.gnd#ordeal_a00.gnd# +ordeal_1-1.rsw#ordeal_a00.rsw# +ordeal_1-2.gat#ordeal_a02.gat# +ordeal_1-2.gnd#ordeal_a02.gnd# +ordeal_1-2.rsw#ordeal_a02.rsw# +ordeal_1-3.gat#ordeal_a03.gat# +ordeal_1-3.gnd#ordeal_a00.gnd# +ordeal_1-3.rsw#ordeal_a03.rsw# +ordeal_1-4.gat#ordeal_a04.gat# +ordeal_1-4.gnd#ordeal_a02.gnd# +ordeal_1-4.rsw#ordeal_a04.rsw# +ordeal_2-1.gat#ordeal_a00.gat# +ordeal_2-1.gnd#ordeal_a00.gnd# +ordeal_2-1.rsw#ordeal_a00.rsw# +ordeal_2-2.gat#ordeal_a02.gat# +ordeal_2-2.gnd#ordeal_a02.gnd# +ordeal_2-2.rsw#ordeal_a02.rsw# +ordeal_2-3.gat#ordeal_a03.gat# +ordeal_2-3.gnd#ordeal_a00.gnd# +ordeal_2-3.rsw#ordeal_a03.rsw# +ordeal_2-4.gat#ordeal_a04.gat# +ordeal_2-4.gnd#ordeal_a02.gnd# +ordeal_2-4.rsw#ordeal_a04.rsw# +ordeal_3-1.gat#ordeal_a00.gat# +ordeal_3-1.gnd#ordeal_a00.gnd# +ordeal_3-1.rsw#ordeal_a00.rsw# +ordeal_3-2.gat#ordeal_a02.gat# +ordeal_3-2.gnd#ordeal_a02.gnd# +ordeal_3-2.rsw#ordeal_a02.rsw# +ordeal_3-3.gat#ordeal_a03.gat# +ordeal_3-3.gnd#ordeal_a00.gnd# +ordeal_3-3.rsw#ordeal_a03.rsw# +ordeal_3-4.gat#ordeal_a04.gat# +ordeal_3-4.gnd#ordeal_a02.gnd# +ordeal_3-4.rsw#ordeal_a04.rsw# +oth_fild01h.gat#moc_fild20.gat# +oth_fild01h.gnd#moc_fild20.gnd# +oth_fild01h.rsw#moc_fild20.rsw# +oth_fild01n.gat#moc_fild20.gat# +oth_fild01n.gnd#moc_fild20.gnd# +oth_fild01n.rsw#moc_fild20.rsw# +oth_fild02h.gat#moc_fild21.gat# +oth_fild02h.gnd#moc_fild21.gnd# +oth_fild02h.rsw#moc_fild21.rsw# +oth_fild02n.gat#moc_fild21.gat# +oth_fild02n.gnd#moc_fild21.gnd# +oth_fild02n.rsw#moc_fild21.rsw# +oth_fild03h.gat#moc_fild22.gat# +oth_fild03h.gnd#moc_fild22.gnd# +oth_fild03h.rsw#moc_fild22.rsw# +oth_fild03n.gat#moc_fild22.gat# +oth_fild03n.gnd#moc_fild22.gnd# +oth_fild03n.rsw#moc_fild22.rsw# +p_track02.gat#p_track01.gat# +p_track02.gnd#p_track01.gnd# +p_track02.rsw#p_track01.rsw# +pay_dun00_evt.gat#pay_dun00.gat# +pay_dun00_evt.gnd#pay_dun00.gnd# +pay_dun00_evt.rsw#pay_dun00.rsw# +poring_w01.gat#nova_t.gat# +poring_w01.gnd#nova_t.gnd# +poring_w01.rsw#nova_t.rsw# +priest_1-1.gat#job_priest.gat# +priest_1-1.gnd#job_priest.gnd# +priest_1-1.rsw#job_priest.rsw# +priest_2-1.gat#job_priest.gat# +priest_2-1.gnd#job_priest.gnd# +priest_2-1.rsw#job_priest.rsw# +priest_3-1.gat#job_priest.gat# +priest_3-1.gnd#job_priest.gnd# +priest_3-1.rsw#job_priest.rsw# +prt_castle_evt.gat#prt_castle.gat# +prt_castle_evt.gnd#prt_castle.gnd# +prt_castle_evt.rsw#prt_castle.rsw# +prt_church_evt.gat#prt_church.gat# +prt_church_evt.gnd#prt_church.gnd# +prt_church_evt.rsw#prt_church.rsw# +prt_evt.gat#prontera.gat# +prt_evt.gnd#prontera.gnd# +prt_evt.rsw#prontera.rsw# +prt_fild08a.gat#prt_fild08.gat# +prt_fild08a.gnd#prt_fild08.gnd# +prt_fild08a.rsw#prt_fild08.rsw# +prt_fild08b.gat#prt_fild08.gat# +prt_fild08b.gnd#prt_fild08.gnd# +prt_fild08b.rsw#prt_fild08.rsw# +prt_fild08c.gat#prt_fild08.gat# +prt_fild08c.gnd#prt_fild08.gnd# +prt_fild08c.rsw#prt_fild08.rsw# +prt_fild08d.gat#prt_fild08.gat# +prt_fild08d.gnd#prt_fild08.gnd# +prt_fild08d.rsw#prt_fild08.rsw# +prt_in_evt.gat#prt_in.gat# +prt_in_evt.gnd#prt_in.gnd# +prt_in_evt.rsw#prt_in.rsw# +pvp.gat#rwc_arena03.gat# +pvp.gnd#rwc_arena03.gnd# +pvp.rsw#rwc_arena03.rsw# +pvp_c_room.gat#pvp_room.gat# +pvp_c_room.gnd#pvp_room.gnd# +pvp_c_room.rsw#pvp_room.rsw# +pvp_n_1-1.gat#prt_maze02.gat# +pvp_n_1-1.gnd#prt_maze02.gnd# +pvp_n_1-1.rsw#prt_maze02.rsw# +pvp_n_1-2.gat#job_hunter.gat# +pvp_n_1-2.gnd#job_hunter.gnd# +pvp_n_1-2.rsw#job_hunter.rsw# +pvp_n_1-3.gat#job_wizard.gat# +pvp_n_1-3.gnd#job_wizard.gnd# +pvp_n_1-3.rsw#job_wizard.rsw# +pvp_n_1-4.gat#job_priest.gat# +pvp_n_1-4.gnd#job_priest.gnd# +pvp_n_1-4.rsw#job_priest.rsw# +pvp_n_1-5.gat#job_knight.gat# +pvp_n_1-5.gnd#job_knight.gnd# +pvp_n_1-5.rsw#job_knight.rsw# +pvp_n_2-1.gat#prt_maze02.gat# +pvp_n_2-1.gnd#prt_maze02.gnd# +pvp_n_2-1.rsw#prt_maze02.rsw# +pvp_n_2-2.gat#job_hunter.gat# +pvp_n_2-2.gnd#job_hunter.gnd# +pvp_n_2-2.rsw#job_hunter.rsw# +pvp_n_2-3.gat#job_wizard.gat# +pvp_n_2-3.gnd#job_wizard.gnd# +pvp_n_2-3.rsw#job_wizard.rsw# +pvp_n_2-4.gat#job_priest.gat# +pvp_n_2-4.gnd#job_priest.gnd# +pvp_n_2-4.rsw#job_priest.rsw# +pvp_n_2-5.gat#job_knight.gat# +pvp_n_2-5.gnd#job_knight.gnd# +pvp_n_2-5.rsw#job_knight.rsw# +pvp_n_3-1.gat#prt_maze02.gat# +pvp_n_3-1.gnd#prt_maze02.gnd# +pvp_n_3-1.rsw#prt_maze02.rsw# +pvp_n_3-2.gat#job_hunter.gat# +pvp_n_3-2.gnd#job_hunter.gnd# +pvp_n_3-2.rsw#job_hunter.rsw# +pvp_n_3-3.gat#job_wizard.gat# +pvp_n_3-3.gnd#job_wizard.gnd# +pvp_n_3-3.rsw#job_wizard.rsw# +pvp_n_3-4.gat#job_priest.gat# +pvp_n_3-4.gnd#job_priest.gnd# +pvp_n_3-4.rsw#job_priest.rsw# +pvp_n_3-5.gat#job_knight.gat# +pvp_n_3-5.gnd#job_knight.gnd# +pvp_n_3-5.rsw#job_knight.rsw# +pvp_n_4-1.gat#prt_maze02.gat# +pvp_n_4-1.gnd#prt_maze02.gnd# +pvp_n_4-1.rsw#prt_maze02.rsw# +pvp_n_4-2.gat#job_hunter.gat# +pvp_n_4-2.gnd#job_hunter.gnd# +pvp_n_4-2.rsw#job_hunter.rsw# +pvp_n_4-3.gat#job_wizard.gat# +pvp_n_4-3.gnd#job_wizard.gnd# +pvp_n_4-3.rsw#job_wizard.rsw# +pvp_n_4-4.gat#job_priest.gat# +pvp_n_4-4.gnd#job_priest.gnd# +pvp_n_4-4.rsw#job_priest.rsw# +pvp_n_4-5.gat#job_knight.gat# +pvp_n_4-5.gnd#job_knight.gnd# +pvp_n_4-5.rsw#job_knight.rsw# +pvp_n_5-1.gat#prt_maze02.gat# +pvp_n_5-1.gnd#prt_maze02.gnd# +pvp_n_5-1.rsw#prt_maze02.rsw# +pvp_n_5-2.gat#job_hunter.gat# +pvp_n_5-2.gnd#job_hunter.gnd# +pvp_n_5-2.rsw#job_hunter.rsw# +pvp_n_5-3.gat#job_wizard.gat# +pvp_n_5-3.gnd#job_wizard.gnd# +pvp_n_5-3.rsw#job_wizard.rsw# +pvp_n_5-4.gat#job_priest.gat# +pvp_n_5-4.gnd#job_priest.gnd# +pvp_n_5-4.rsw#job_priest.rsw# +pvp_n_5-5.gat#job_knight.gat# +pvp_n_5-5.gnd#job_knight.gnd# +pvp_n_5-5.rsw#job_knight.rsw# +pvp_n_6-1.gat#prt_maze02.gat# +pvp_n_6-1.gnd#prt_maze02.gnd# +pvp_n_6-1.rsw#prt_maze02.rsw# +pvp_n_6-2.gat#job_hunter.gat# +pvp_n_6-2.gnd#job_hunter.gnd# +pvp_n_6-2.rsw#job_hunter.rsw# +pvp_n_6-3.gat#job_wizard.gat# +pvp_n_6-3.gnd#job_wizard.gnd# +pvp_n_6-3.rsw#job_wizard.rsw# +pvp_n_6-4.gat#job_priest.gat# +pvp_n_6-4.gnd#job_priest.gnd# +pvp_n_6-4.rsw#job_priest.rsw# +pvp_n_6-5.gat#job_knight.gat# +pvp_n_6-5.gnd#job_knight.gnd# +pvp_n_6-5.rsw#job_knight.rsw# +pvp_n_7-1.gat#prt_maze02.gat# +pvp_n_7-1.gnd#prt_maze02.gnd# +pvp_n_7-1.rsw#prt_maze02.rsw# +pvp_n_7-2.gat#job_hunter.gat# +pvp_n_7-2.gnd#job_hunter.gnd# +pvp_n_7-2.rsw#job_hunter.rsw# +pvp_n_7-3.gat#job_wizard.gat# +pvp_n_7-3.gnd#job_wizard.gnd# +pvp_n_7-3.rsw#job_wizard.rsw# +pvp_n_7-4.gat#job_priest.gat# +pvp_n_7-4.gnd#job_priest.gnd# +pvp_n_7-4.rsw#job_priest.rsw# +pvp_n_7-5.gat#job_knight.gat# +pvp_n_7-5.gnd#job_knight.gnd# +pvp_n_7-5.rsw#job_knight.rsw# +pvp_n_8-1.gat#prt_maze02.gat# +pvp_n_8-1.gnd#prt_maze02.gnd# +pvp_n_8-1.rsw#prt_maze02.rsw# +pvp_n_8-2.gat#job_hunter.gat# +pvp_n_8-2.gnd#job_hunter.gnd# +pvp_n_8-2.rsw#job_hunter.rsw# +pvp_n_8-3.gat#job_wizard.gat# +pvp_n_8-3.gnd#job_wizard.gnd# +pvp_n_8-3.rsw#job_wizard.rsw# +pvp_n_8-4.gat#job_priest.gat# +pvp_n_8-4.gnd#job_priest.gnd# +pvp_n_8-4.rsw#job_priest.rsw# +pvp_n_8-5.gat#job_knight.gat# +pvp_n_8-5.gnd#job_knight.gnd# +pvp_n_8-5.rsw#job_knight.rsw# +pvp_n_room.gat#pvp_room.gat# +pvp_n_room.gnd#pvp_room.gnd# +pvp_n_room.rsw#pvp_room.rsw# +pvp_y_1-1.gat#prontera.gat# +pvp_y_1-1.gnd#prontera.gnd# +pvp_y_1-1.rsw#prontera.rsw# +pvp_y_1-2.gat#izlude.gat# +pvp_y_1-2.gnd#izlude.gnd# +pvp_y_1-2.rsw#izlude.rsw# +pvp_y_1-3.gat#payon.gat# +pvp_y_1-3.gnd#payon.gnd# +pvp_y_1-3.rsw#payon.rsw# +pvp_y_1-4.gat#alberta.gat# +pvp_y_1-4.gnd#alberta.gnd# +pvp_y_1-4.rsw#alberta.rsw# +pvp_y_1-5.gnd#morocc.gnd# +pvp_y_1-5.rsw#morocc.rsw# +pvp_y_2-1.gat#prontera.gat# +pvp_y_2-1.gnd#prontera.gnd# +pvp_y_2-1.rsw#prontera.rsw# +pvp_y_2-2.gat#izlude.gat# +pvp_y_2-2.gnd#izlude.gnd# +pvp_y_2-2.rsw#izlude.rsw# +pvp_y_2-3.gat#payon.gat# +pvp_y_2-3.gnd#payon.gnd# +pvp_y_2-3.rsw#payon.rsw# +pvp_y_2-4.gat#alberta.gat# +pvp_y_2-4.gnd#alberta.gnd# +pvp_y_2-4.rsw#alberta.rsw# +pvp_y_2-5.gnd#morocc.gnd# +pvp_y_2-5.rsw#morocc.rsw# +pvp_y_3-1.gat#prontera.gat# +pvp_y_3-1.gnd#prontera.gnd# +pvp_y_3-1.rsw#prontera.rsw# +pvp_y_3-2.gat#izlude.gat# +pvp_y_3-2.gnd#izlude.gnd# +pvp_y_3-2.rsw#izlude.rsw# +pvp_y_3-3.gat#payon.gat# +pvp_y_3-3.gnd#payon.gnd# +pvp_y_3-3.rsw#payon.rsw# +pvp_y_3-4.gat#alberta.gat# +pvp_y_3-4.gnd#alberta.gnd# +pvp_y_3-4.rsw#alberta.rsw# +pvp_y_3-5.gnd#morocc.gnd# +pvp_y_3-5.rsw#morocc.rsw# +pvp_y_4-1.gat#prontera.gat# +pvp_y_4-1.gnd#prontera.gnd# +pvp_y_4-1.rsw#prontera.rsw# +pvp_y_4-2.gat#izlude.gat# +pvp_y_4-2.gnd#izlude.gnd# +pvp_y_4-2.rsw#izlude.rsw# +pvp_y_4-3.gat#payon.gat# +pvp_y_4-3.gnd#payon.gnd# +pvp_y_4-3.rsw#payon.rsw# +pvp_y_4-4.gat#alberta.gat# +pvp_y_4-4.gnd#alberta.gnd# +pvp_y_4-4.rsw#alberta.rsw# +pvp_y_4-5.gnd#morocc.gnd# +pvp_y_4-5.rsw#morocc.rsw# +pvp_y_5-1.gat#prontera.gat# +pvp_y_5-1.gnd#prontera.gnd# +pvp_y_5-1.rsw#prontera.rsw# +pvp_y_5-2.gat#izlude.gat# +pvp_y_5-2.gnd#izlude.gnd# +pvp_y_5-2.rsw#izlude.rsw# +pvp_y_5-3.gat#payon.gat# +pvp_y_5-3.gnd#payon.gnd# +pvp_y_5-3.rsw#payon.rsw# +pvp_y_5-4.gat#alberta.gat# +pvp_y_5-4.gnd#alberta.gnd# +pvp_y_5-4.rsw#alberta.rsw# +pvp_y_5-5.gnd#morocc.gnd# +pvp_y_5-5.rsw#morocc.rsw# +pvp_y_6-1.gat#prontera.gat# +pvp_y_6-1.gnd#prontera.gnd# +pvp_y_6-1.rsw#prontera.rsw# +pvp_y_6-2.gat#izlude.gat# +pvp_y_6-2.gnd#izlude.gnd# +pvp_y_6-2.rsw#izlude.rsw# +pvp_y_6-3.gat#payon.gat# +pvp_y_6-3.gnd#payon.gnd# +pvp_y_6-3.rsw#payon.rsw# +pvp_y_6-4.gat#alberta.gat# +pvp_y_6-4.gnd#alberta.gnd# +pvp_y_6-4.rsw#alberta.rsw# +pvp_y_6-5.gnd#morocc.gnd# +pvp_y_6-5.rsw#morocc.rsw# +pvp_y_7-1.gat#prontera.gat# +pvp_y_7-1.gnd#prontera.gnd# +pvp_y_7-1.rsw#prontera.rsw# +pvp_y_7-2.gat#izlude.gat# +pvp_y_7-2.gnd#izlude.gnd# +pvp_y_7-2.rsw#izlude.rsw# +pvp_y_7-3.gat#payon.gat# +pvp_y_7-3.gnd#payon.gnd# +pvp_y_7-3.rsw#payon.rsw# +pvp_y_7-4.gat#alberta.gat# +pvp_y_7-4.gnd#alberta.gnd# +pvp_y_7-4.rsw#alberta.rsw# +pvp_y_7-5.gnd#morocc.gnd# +pvp_y_7-5.rsw#morocc.rsw# +pvp_y_8-1.gat#prontera.gat# +pvp_y_8-1.gnd#prontera.gnd# +pvp_y_8-1.rsw#prontera.rsw# +pvp_y_8-2.gat#izlude.gat# +pvp_y_8-2.gnd#izlude.gnd# +pvp_y_8-2.rsw#izlude.rsw# +pvp_y_8-3.gat#payon.gat# +pvp_y_8-3.gnd#payon.gnd# +pvp_y_8-3.rsw#payon.rsw# +pvp_y_8-4.gat#alberta.gat# +pvp_y_8-4.gnd#alberta.gnd# +pvp_y_8-4.rsw#alberta.rsw# +pvp_y_8-5.gnd#morocc.gnd# +pvp_y_8-5.rsw#morocc.rsw# +pvp_y_room.gat#pvp_room.gat# +pvp_y_room.gnd#pvp_room.gnd# +pvp_y_room.rsw#pvp_room.rsw# +que_job03.gat#que_job02.gat# +que_job03.gnd#que_job02.gnd# +que_job03.rsw#que_job02.rsw# +que_moc_16.gat#in_moc_16.gat# +que_moc_16.gnd#in_moc_16.gnd# +que_moc_16.rsw#in_moc_16.rsw# +que_moon.gat#job_star.gat# +que_moon.gnd#job_star.gnd# +que_moon.rsw#job_star.rsw# +que_qaru01.gat#que_qsch01.gat# +que_qaru01.gnd#que_qsch01.gnd# +que_qaru01.rsw#que_qsch01.rsw# +que_qaru02.gat#que_qsch01.gat# +que_qaru02.gnd#que_qsch01.gnd# +que_qaru02.rsw#que_qsch01.rsw# +que_qaru03.gat#que_qsch01.gat# +que_qaru03.gnd#que_qsch01.gnd# +que_qaru03.rsw#que_qsch01.rsw# +que_qaru04.gat#que_qsch01.gat# +que_qaru04.gnd#que_qsch01.gnd# +que_qaru04.rsw#que_qsch01.rsw# +que_qaru05.gat#que_qsch01.gat# +que_qaru05.gnd#que_qsch01.gnd# +que_qaru05.rsw#que_qsch01.rsw# +que_qsch02.gat#que_qsch01.gat# +que_qsch02.gnd#que_qsch01.gnd# +que_qsch02.rsw#que_qsch01.rsw# +que_qsch03.gat#que_qsch01.gat# +que_qsch03.gnd#que_qsch01.gnd# +que_qsch03.rsw#que_qsch01.rsw# +que_qsch04.gat#que_qsch01.gat# +que_qsch04.gnd#que_qsch01.gnd# +que_qsch04.rsw#que_qsch01.rsw# +que_qsch05.gat#que_qsch01.gat# +que_qsch05.gnd#que_qsch01.gnd# +que_qsch05.rsw#que_qsch01.rsw# +que_san04.gat#ra_san04.gat# +que_san04.gnd#ra_san04.gnd# +que_san04.rsw#ra_san04.rsw# +que_sign02.gat#nif_fild02.gat# +que_sign02.gnd#nif_fild02.gnd# +que_sign02.rsw#nif_fild02.rsw# +que_temsky.gat#ra_temsky.gat# +que_temsky.gnd#ra_temsky.gnd# +que_temsky.rsw#ra_temsky.rsw# +quiz_test.gat#monk_test.gat# +quiz_test.gnd#monk_test.gnd# +quiz_test.rsw#monk_test.rsw# +roc_arena01.gat#rwc_arena03.gat# +roc_arena01.gnd#rwc_arena03.gnd# +roc_arena01.rsw#rwc_arena03.rsw# +roc_arena02.gat#rwc_arena03.gat# +roc_arena02.gnd#rwc_arena03.gnd# +roc_arena02.rsw#rwc_arena03.rsw# +roc_arena03.gat#rwc_arena03.gat# +roc_arena03.gnd#rwc_arena03.gnd# +roc_arena03.rsw#rwc_arena03.rsw# +roc_arena04.gat#rwc_arena03.gat# +roc_arena04.gnd#rwc_arena03.gnd# +roc_arena04.rsw#rwc_arena03.rsw# +roc_field01.gat#rwc_arena03.gat# +roc_field01.gnd#rwc_arena03.gnd# +roc_field01.rsw#rwc_arena03.rsw# +roc_field02.gat#rwc_arena03.gat# +roc_field02.gnd#rwc_arena03.gnd# +roc_field02.rsw#rwc_arena03.rsw# +roc_field03.gat#rwc_arena03.gat# +roc_field03.gnd#rwc_arena03.gnd# +roc_field03.rsw#rwc_arena03.rsw# +roc_field04.gat#rwc_arena03.gat# +roc_field04.gnd#rwc_arena03.gnd# +roc_field04.rsw#rwc_arena03.rsw# +rwc_arena01.gat#rwc_arena01.gat# +rwc_arena01.gnd#rwc_arena01.gnd# +rwc_arena01.rsw#rwc_arena01.rsw# +rwc_arena02.gat#rwc_arena02.gat# +rwc_arena02.gnd#rwc_arena02.gnd# +rwc_arena02.rsw#rwc_arena02.rsw# +rwc_arena03.gat#rwc_arena03.gat# +rwc_arena03.gnd#rwc_arena03.gnd# +rwc_arena03.rsw#rwc_arena03.rsw# +rwc_arena04.gat#rwc_arena04.gat# +rwc_arena04.gnd#rwc_arena04.gnd# +rwc_arena04.rsw#rwc_arena04.rsw# +rwc_arena05.gat#rwc_arena05.gat# +rwc_arena05.gnd#rwc_arena05.gnd# +rwc_arena05.rsw#rwc_arena05.rsw# +rwc_arena06.gat#rwc_arena06.gat# +rwc_arena06.gnd#rwc_arena06.gnd# +rwc_arena06.rsw#rwc_arena06.rsw# +rwc_arena07.gat#rwc_arena07.gat# +rwc_arena07.gnd#rwc_arena07.gnd# +rwc_arena07.rsw#rwc_arena07.rsw# +rwc_arena08.gat#rwc_arena08.gat# +rwc_arena08.gnd#rwc_arena08.gnd# +rwc_arena08.rsw#rwc_arena08.rsw# +rwc_arena09.gat#rwc_arena01.gat# +rwc_arena09.gnd#rwc_arena01.gnd# +rwc_arena09.rsw#rwc_arena01.rsw# +rwc_arena10.gat#rwc_arena02.gat# +rwc_arena10.gnd#rwc_arena02.gnd# +rwc_arena10.rsw#rwc_arena02.rsw# +rwc_arena11.gat#rwc_arena03.gat# +rwc_arena11.gnd#rwc_arena03.gnd# +rwc_arena11.rsw#rwc_arena03.rsw# +rwc_arena12.gat#rwc_arena04.gat# +rwc_arena12.gnd#rwc_arena04.gnd# +rwc_arena12.rsw#rwc_arena04.rsw# +schg_cas04.gat#schg_cas01.gat# +schg_cas04.gnd#schg_cas01.gnd# +schg_cas04.rsw#schg_cas01.rsw# +schg_cas05.gat#schg_cas01.gat# +schg_cas05.gnd#schg_cas01.gnd# +schg_cas05.rsw#schg_cas01.rsw# +schg_que01.gat#arug_que01.gat# +schg_que01.gnd#arug_que01.gnd# +schg_que01.rsw#arug_que01.rsw# +silk_lair.gat#1@cash.gat# +silk_lair.gnd#1@cash.gnd# +silk_lair.rsw#1@cash.rsw# +sword_1-1.gat#job_sword1.gat# +sword_1-1.gnd#job_sword1.gnd# +sword_1-1.rsw#job_sword1.rsw# +sword_2-1.gat#job_sword1.gat# +sword_2-1.gnd#job_sword1.gnd# +sword_2-1.rsw#job_sword1.rsw# +sword_3-1.gat#job_sword1.gat# +sword_3-1.gnd#job_sword1.gnd# +sword_3-1.rsw#job_sword1.rsw# +te_alde_gld.gat#alde_gld.gat# +te_alde_gld.gnd#alde_gld.gnd# +te_alde_gld.rsw#alde_gld.rsw# +te_aldecas1.gat#aldeg_cas01.gat# +te_aldecas1.gnd#aldeg_cas01.gnd# +te_aldecas1.rsw#aldeg_cas01.rsw# +te_aldecas2.gat#aldeg_cas02.gat# +te_aldecas2.gnd#aldeg_cas02.gnd# +te_aldecas2.rsw#aldeg_cas02.rsw# +te_aldecas3.gat#aldeg_cas03.gat# +te_aldecas3.gnd#aldeg_cas03.gnd# +te_aldecas3.rsw#aldeg_cas03.rsw# +te_aldecas4.gat#aldeg_cas04.gat# +te_aldecas4.gnd#aldeg_cas04.gnd# +te_aldecas4.rsw#aldeg_cas04.rsw# +te_aldecas5.gat#aldeg_cas05.gat# +te_aldecas5.gnd#aldeg_cas05.gnd# +te_aldecas5.rsw#aldeg_cas05.rsw# +te_prt_gld.gat#te_prt_gld.gat# +te_prt_gld.gnd#te_prt_gld.gnd# +te_prt_gld.rsw#te_prt_gld.rsw# +te_prtcas01.gat#prtg_cas01.gat# +te_prtcas01.gnd#prtg_cas01.gnd# +te_prtcas01.rsw#prtg_cas01.rsw# +te_prtcas02.gat#prtg_cas02.gat# +te_prtcas02.gnd#prtg_cas02.gnd# +te_prtcas02.rsw#prtg_cas02.rsw# +te_prtcas03.gat#prtg_cas03.gat# +te_prtcas03.gnd#prtg_cas03.gnd# +te_prtcas03.rsw#prtg_cas03.rsw# +te_prtcas04.gat#prtg_cas04.gat# +te_prtcas04.gnd#prtg_cas04.gnd# +te_prtcas04.rsw#prtg_cas04.rsw# +te_prtcas05.gat#prtg_cas05.gat# +te_prtcas05.gnd#prtg_cas05.gnd# +te_prtcas05.rsw#prtg_cas05.rsw# +teg_dun01.gat#gld_dun03.gat# +teg_dun01.gnd#gld_dun03.gnd# +teg_dun01.rsw#gld_dun03.rsw# +teg_dun02.gat#gld_dun02.gat# +teg_dun02.gnd#gld_dun02.gnd# +teg_dun02.rsw#gld_dun02.rsw# +thief_1-1.rsw#job_thief1.rsw# +thief_2-1.rsw#job_thief1.rsw# +thief_3-1.rsw#job_thief1.rsw# +treasure_n1.gat#treasure01.gat# +treasure_n1.gnd#treasure01.gnd# +treasure_n1.rsw#treasure01.rsw# +treasure_n2.gat#treasure02.gat# +treasure_n2.gnd#treasure02.gnd# +treasure_n2.rsw#treasure02.rsw# +turbo_e_16.gat#alde_tt02.gat# +turbo_e_16.gnd#alde_tt02.gnd# +turbo_e_16.rsw#alde_tt02.rsw# +turbo_e_4.gat#alde_tt02.gat# +turbo_e_4.gnd#alde_tt02.gnd# +turbo_e_4.rsw#alde_tt02.rsw# +turbo_e_8.gat#alde_tt02.gat# +turbo_e_8.gnd#alde_tt02.gnd# +turbo_e_8.rsw#alde_tt02.rsw# +turbo_n_1.gat#alde_tt02.gat# +turbo_n_1.gnd#alde_tt02.gnd# +turbo_n_1.rsw#alde_tt02.rsw# +turbo_n_16.gat#alde_tt02.gat# +turbo_n_16.gnd#alde_tt02.gnd# +turbo_n_16.rsw#alde_tt02.rsw# +turbo_n_4.gat#alde_tt02.gat# +turbo_n_4.gnd#alde_tt02.gnd# +turbo_n_4.rsw#alde_tt02.rsw# +turbo_n_8.gat#alde_tt02.gat# +turbo_n_8.gnd#alde_tt02.gnd# +turbo_n_8.rsw#alde_tt02.rsw# +wizard_1-1.gat#job_wizard.gat# +wizard_1-1.gnd#job_wizard.gnd# +wizard_1-1.rsw#job_wizard.rsw# +wizard_2-1.gat#job_wizard.gat# +wizard_2-1.gnd#job_wizard.gnd# +wizard_2-1.rsw#job_wizard.rsw# +wizard_3-1.gat#job_wizard.gat# +wizard_3-1.gnd#job_wizard.gnd# +wizard_3-1.rsw#job_wizard.rsw# +y_airport.gat#airport.gat# +y_airport.gnd#airport.gnd# +y_airport.rsw#airport.rsw# +z_agit.gat#job_prist.gat# +z_agit.gnd#job_prist.gnd# +z_agit.rsw#job_prist.rsw# \ No newline at end of file diff --git a/tables/laRO/skillssp.txt b/tables/laRO/skillssp.txt new file mode 100644 index 0000000000..363151373a --- /dev/null +++ b/tables/laRO/skillssp.txt @@ -0,0 +1,8673 @@ +SN_WINDWALK# +46# +52# +58# +64# +70# +76# +82# +88# +94# +100# +@ +AL_RUWACH# +10# +@ +WS_MELTDOWN# +50# +50# +60# +60# +70# +70# +80# +80# +90# +90# +@ +WS_CREATECOIN# +10# +20# +30# +@ +MER_MAGNIFICAT# +40# +40# +40# +40# +40# +@ +WS_CREATENUGGET# +10# +20# +30# +@ +WS_CARTBOOST# +20# +@ +WS_SYSTEMCREATE# +40# +@ +ST_CHASEWALK# +10# +10# +10# +10# +10# +@ +ST_REJECTSWORD# +10# +15# +20# +25# +30# +@ +ST_STEALBACKPACK# +30# +30# +30# +30# +30# +@ +CG_ARROWVULCAN# +12# +14# +16# +18# +20# +22# +24# +26# +28# +30# +@ +CG_MOONLIT# +30# +40# +50# +60# +70# +@ +CG_MARIONETTE# +100# +@ +LK_SPIRALPIERCE# +18# +21# +24# +27# +30# +@ +LK_HEADCRUSH# +23# +23# +23# +23# +23# +@ +LK_JOINTBEAT# +12# +12# +14# +14# +16# +16# +18# +18# +20# +20# +@ +AL_PNEUMA# +10# +@ +HW_NAPALMVULCAN# +30# +40# +50# +60# +70# +@ +CH_SOULCOLLECT# +20# +@ +PF_MINDBREAKER# +12# +15# +18# +21# +24# +@ +PF_MEMORIZE# +1# +@ +PF_FOGWALL# +25# +@ +PF_SPIDERWEB# +30# +@ +ASC_METEORASSAULT# +10# +12# +14# +16# +18# +20# +22# +24# +26# +28# +@ +ASC_CDP# +50# +@ +WE_BABY# +10# +@ +WE_CALLPARENT# +1# +@ +WE_CALLBABY# +1# +@ +TK_RUN# +100# +90# +80# +70# +60# +50# +40# +30# +20# +10# +@ +TK_READYSTORM# +1# +@ +TK_STORMKICK# +14# +12# +10# +8# +6# +4# +2# +@ +TK_READYDOWN# +1# +@ +TK_DOWNKICK# +14# +12# +10# +8# +6# +4# +2# +@ +AL_TELEPORT# +10# +9# +@ +TK_READYTURN# +1# +@ +TK_TURNKICK# +14# +12# +10# +8# +6# +4# +2# +@ +TK_READYCOUNTER# +1# +@ +TK_COUNTER# +14# +12# +10# +8# +6# +4# +2# +@ +TK_DODGE# +1# +@ +TK_JUMPKICK# +70# +60# +50# +40# +30# +20# +10# +@ +TK_SEVENWIND# +20# +20# +20# +20# +50# +50# +50# +@ +TK_HIGHJUMP# +50# +50# +50# +50# +50# +@ +SG_FEEL# +100# +100# +100# +@ +SG_SUN_WARM# +20# +20# +20# +@ +SG_MOON_WARM# +20# +20# +20# +@ +SG_STAR_WARM# +10# +10# +10# +@ +SG_SUN_COMFORT# +70# +60# +50# +40# +@ +AL_WARP# +35# +32# +29# +26# +@ +SG_MOON_COMFORT# +70# +60# +50# +40# +@ +SG_STAR_COMFORT# +70# +60# +50# +40# +@ +SG_HATE# +100# +100# +100# +@ +SG_FUSION# +100# +@ +SL_ALCHEMIST# +460# +360# +260# +160# +60# +@ +AM_BERSERKPITCHER# +10# +@ +SL_MONK# +460# +360# +260# +160# +60# +@ +AL_HEAL# +13# +16# +19# +22# +25# +28# +31# +34# +37# +40# +@ +SL_STAR# +460# +360# +260# +160# +60# +@ +SL_SAGE# +460# +360# +260# +160# +60# +@ +MER_QUICKEN# +14# +18# +22# +26# +30# +34# +38# +42# +46# +50# +@ +SL_CRUSADER# +460# +360# +260# +160# +60# +@ +SL_SUPERNOVICE# +460# +360# +260# +160# +60# +@ +SL_KNIGHT# +460# +360# +260# +160# +60# +@ +SL_WIZARD# +460# +360# +260# +160# +60# +@ +SL_PRIEST# +460# +360# +260# +160# +60# +@ +SL_BARDDANCER# +460# +360# +260# +160# +60# +@ +SL_ROGUE# +460# +360# +260# +160# +60# +@ +SL_ASSASIN# +460# +360# +260# +160# +60# +@ +SL_BLACKSMITH# +460# +360# +260# +160# +60# +@ +BS_ADRENALINE2# +64# +@ +SL_HUNTER# +460# +360# +260# +160# +60# +@ +SL_SOULLINKER# +460# +360# +260# +160# +60# +@ +SL_KAIZEL# +120# +110# +100# +90# +80# +70# +60# +@ +SL_KAAHI# +30# +30# +30# +30# +30# +30# +30# +@ +AL_INCAGI# +18# +21# +24# +27# +30# +33# +36# +39# +42# +45# +@ +SL_KAUPE# +20# +30# +40# +@ +SL_KAITE# +70# +70# +70# +70# +70# +70# +70# +@ +SL_STIN# +18# +20# +22# +24# +26# +28# +30# +@ +SL_STUN# +18# +20# +22# +24# +26# +28# +30# +@ +SL_SMA# +8# +16# +24# +32# +40# +48# +56# +64# +72# +80# +@ +SL_SWOO# +75# +65# +55# +45# +35# +25# +15# +@ +SL_SKE# +45# +30# +15# +@ +SL_SKA# +100# +80# +60# +@ +ST_PRESERVE# +30# +@ +ST_FULLSTRIP# +22# +24# +26# +28# +30# +@ +WS_WEAPONREFINE# +30# +30# +30# +30# +30# +30# +30# +30# +30# +30# +@ +CR_SLIMPITCHER# +30# +30# +30# +30# +30# +30# +30# +30# +30# +30# +@ +CR_FULLPROTECTION# +40# +40# +40# +40# +40# +@ +AL_DECAGI# +15# +17# +19# +21# +23# +25# +27# +29# +31# +33# +@ +PA_SHIELDCHAIN# +28# +31# +34# +37# +40# +@ +PF_DOUBLECASTING# +40# +45# +50# +55# +60# +@ +HW_GANBANTEIN# +40# +@ +HW_GRAVITATION# +60# +70# +80# +90# +100# +@ +WS_CARTTERMINATION# +15# +15# +15# +15# +15# +15# +15# +15# +15# +15# +@ +WS_OVERTHRUSTMAX# +15# +15# +15# +15# +15# +@ +CG_SPECIALSINGER# +1# +@ +CG_HERMODE# +20# +30# +40# +50# +60# +@ +CG_TAROTCARD# +40# +40# +40# +40# +40# +@ +CR_ACIDDEMONSTRATION# +30# +30# +30# +30# +30# +30# +30# +30# +30# +30# +@ +CR_CULTIVATION# +10# +10# +@ +TK_MISSION# +10# +@ +SL_HIGH# +460# +360# +260# +160# +60# +@ +KN_ONEHAND# +100# +100# +100# +100# +100# +100# +100# +100# +100# +100# +@ +AL_HOLYWATER# +10# +@ +AM_TWILIGHT1# +200# +@ +AM_TWILIGHT2# +200# +@ +AM_TWILIGHT3# +200# +@ +HT_POWER# +12# +@ +RK_ENCHANTBLADE# +34# +38# +42# +46# +50# +54# +58# +62# +66# +70# +@ +RK_WINDCUTTER# +23# +26# +29# +32# +35# +@ +RK_DRAGONHOWLING# +30# +30# +30# +30# +30# +@ +GC_VENOMIMPRESS# +12# +16# +20# +24# +28# +@ +GC_CREATENEWPOISON# +10# +@ +GC_COUNTERSLASH# +5# +8# +11# +14# +17# +19# +21# +23# +25# +27# +@ +GC_CLOAKINGEXCEED# +45# +45# +45# +45# +45# +@ +GC_CROSSRIPPERSLASHER# +20# +24# +28# +32# +36# +@ +AB_CLEMENTIA# +280# +320# +360# +@ +AL_CRUCIS# +35# +35# +35# +35# +35# +35# +35# +35# +35# +35# +@ +NJ_SYURIKEN# +5# +5# +5# +5# +5# +5# +5# +5# +5# +5# +@ +NJ_KUNAI# +10# +10# +10# +10# +10# +@ +NJ_HUUMA# +20# +25# +30# +35# +40# +@ +NJ_ZENYNAGE# +50# +50# +50# +50# +50# +50# +50# +50# +50# +50# +@ +AL_ANGELUS# +23# +26# +29# +32# +35# +38# +41# +44# +47# +50# +@ +NJ_KASUMIKIRI# +8# +8# +8# +8# +8# +8# +8# +8# +8# +8# +@ +NJ_SHADOWJUMP# +10# +11# +12# +13# +14# +@ +NJ_KIRIKAGE# +14# +16# +18# +20# +22# +@ +NJ_UTSUSEMI# +12# +15# +18# +21# +24# +@ +NJ_BUNSINJYUTSU# +30# +32# +34# +36# +38# +40# +42# +44# +46# +48# +@ +NJ_KOUENKA# +18# +20# +22# +24# +26# +28# +30# +32# +34# +36# +@ +NJ_KAENSIN# +25# +25# +25# +25# +25# +25# +25# +25# +25# +25# +@ +NJ_BAKUENRYU# +20# +25# +30# +35# +40# +@ +NJ_HYOUSENSOU# +15# +18# +21# +24# +27# +30# +33# +36# +39# +42# +@ +NJ_SUITON# +15# +18# +21# +24# +27# +30# +33# +36# +39# +42# +@ +NJ_HYOUSYOURAKU# +40# +45# +50# +55# +60# +@ +NJ_HUUJIN# +12# +14# +16# +18# +20# +22# +24# +26# +28# +30# +@ +NJ_RAIGEKISAI# +16# +20# +24# +28# +32# +@ +NJ_KAMAITACHI# +24# +28# +32# +36# +40# +@ +AL_BLESSING# +28# +32# +36# +40# +44# +48# +52# +56# +60# +64# +@ +NJ_ISSEN# +55# +60# +65# +70# +75# +80# +85# +90# +95# +100# +@ +MB_WHITEPOTION# +1# +@ +MB_MENTAL# +60# +@ +MB_CARDPITCHER# +1# +1# +1# +1# +1# +1# +1# +1# +1# +1# +@ +MB_PETPITCHER# +10# +9# +8# +7# +6# +5# +4# +3# +2# +1# +@ +MB_PETMEMORY# +1# +@ +MB_M_TELEPORT# +50# +40# +30# +20# +10# +@ +MB_B_GAIN# +12# +15# +18# +21# +24# +27# +30# +@ +MB_M_GAIN# +1# +1# +1# +1# +1# +1# +1# +@ +MB_MISSION# +10# +@ +AL_CURE# +15# +@ +MB_MUNAKBALL# +20# +20# +20# +20# +20# +20# +20# +20# +20# +20# +@ +MB_B_GATHERING# +17# +15# +13# +11# +9# +7# +5# +@ +MB_M_GATHERING# +32# +30# +28# +26# +24# +22# +20# +@ +MB_B_EXCLUDE# +180# +160# +140# +120# +100# +@ +MB_B_DRIFT# +50# +40# +30# +20# +10# +@ +MB_B_WALLRUSH# +9# +10# +11# +12# +13# +14# +15# +@ +MB_M_WALLRUSH# +9# +10# +11# +12# +13# +14# +15# +@ +MB_B_WALLSHIFT# +13# +11# +9# +7# +5# +@ +MB_M_WALLCRASH# +27# +25# +23# +21# +19# +17# +15# +@ +MB_M_REINCARNATION# +50# +50# +50# +50# +50# +@ +SL_DEATHKNIGHT# +460# +360# +260# +160# +60# +@ +SL_COLLECTOR# +460# +360# +260# +160# +60# +@ +SL_NINJA# +460# +360# +260# +160# +60# +@ +AM_TWILIGHT4# +200# +@ +DE_BERSERKAIZER# +10# +@ +DA_DARKPOWER# +50# +@ +DE_RESET# +280# +@ +DE_ENERGY# +1# +1# +1# +1# +1# +@ +DE_SLASH# +10# +8# +6# +4# +2# +@ +DE_COIL# +8# +10# +12# +14# +16# +18# +20# +@ +DE_WAVE# +55# +50# +45# +40# +35# +30# +25# +@ +DE_AURA# +80# +75# +70# +65# +60# +55# +50# +@ +DE_FREEZER# +20# +20# +20# +20# +20# +20# +20# +@ +DE_CHANGEATTACK# +80# +70# +60# +50# +40# +30# +20# +@ +DE_POISON# +14# +12# +10# +8# +6# +4# +2# +@ +DE_INSTANT# +50# +100# +150# +200# +250# +300# +350# +@ +DE_WARNING# +50# +50# +50# +50# +50# +50# +50# +@ +DE_RANKEDKNIFE# +20# +20# +20# +20# +20# +20# +20# +@ +DE_RANKEDGRADIUS# +20# +20# +20# +20# +20# +20# +20# +@ +DE_ACCEL# +50# +40# +30# +20# +10# +@ +DE_BLOCKDOUBLE# +40# +30# +20# +@ +DE_BLOCKMELEE# +40# +30# +20# +@ +DE_BLOCKFAR# +100# +75# +50# +@ +DE_FRONTATTACK# +20# +20# +20# +20# +20# +20# +20# +20# +20# +20# +@ +DE_DANGERATTACK# +30# +30# +30# +30# +30# +30# +30# +30# +30# +30# +@ +DE_TWINATTACK# +20# +20# +20# +20# +20# +20# +20# +20# +20# +20# +@ +DE_WINDATTACK# +20# +20# +20# +20# +20# +50# +50# +50# +50# +50# +@ +DE_WATERATTACK# +40# +40# +40# +40# +40# +40# +40# +40# +40# +40# +@ +DA_ENERGY# +10# +10# +10# +10# +10# +@ +DA_CLOUD# +40# +40# +40# +40# +40# +40# +40# +40# +40# +40# +@ +DA_FIRSTSLOT# +100# +90# +80# +70# +60# +@ +DA_HEADDEF# +60# +60# +60# +60# +@ +DA_TRANSFORM# +180# +150# +120# +90# +60# +@ +DA_EXPLOSION# +140# +120# +100# +80# +60# +@ +DA_REWARD# +10# +@ +DA_CRUSH# +130# +110# +90# +70# +50# +@ +DA_ITEMREBUILD# +50# +40# +30# +20# +10# +@ +DA_ILLUSION# +120# +100# +80# +60# +40# +@ +DA_RUNNER# +50# +40# +30# +20# +10# +@ +DA_TRANSFER# +70# +60# +50# +40# +30# +@ +DA_WALL# +10# +20# +30# +40# +50# +@ +DA_EARPLUG# +60# +60# +60# +60# +60# +@ +DA_CONTRACT# +10# +@ +DA_BLACK# +60# +60# +60# +60# +60# +@ +MC_IDENTIFY# +10# +@ +DA_MAGICCART# +50# +40# +30# +20# +10# +@ +DA_COPY# +10# +@ +DA_CRYSTAL# +1# +@ +DA_EXP# +10# +@ +DA_CARTSWING# +20# +20# +20# +20# +20# +20# +20# +20# +20# +20# +@ +DA_REBUILD# +10# +@ +DA_EDARKNESS# +1100# +900# +700# +500# +300# +@ +DA_EGUARDIAN# +1300# +1100# +900# +700# +500# +@ +DA_TIMEOUT# +500# +300# +100# +@ +ALL_TIMEIN# +100# +@ +DA_ZENYRANK# +10# +@ +DA_ACCESSORYMIX# +10# +@ +EL_CIRCLE_OF_FIRE# +40# +@ +MC_VENDING# +30# +30# +30# +30# +30# +30# +30# +30# +30# +30# +@ +EL_TIDAL_WEAPON# +80# +@ +MC_MAMMONITE# +5# +5# +5# +5# +5# +5# +5# +5# +5# +5# +@ +GM_SANDMAN# +1# +@ +ALL_CATCRY# +50# +@ +ALL_PARTYFLEE# +1# +1# +1# +1# +1# +1# +1# +1# +1# +1# +@ +ALL_ANGEL_PROTECT# +1# +@ +ALL_DREAM_SUMMERNIGHT# +20# +@ +ALL_REVERSEORCISH# +1# +@ +ALL_WEWISH# +1# +@ +AC_CONCENTRATION# +25# +30# +35# +40# +45# +50# +55# +60# +65# +70# +@ +AC_DOUBLE# +12# +12# +12# +12# +12# +12# +12# +12# +12# +12# +@ +HLIF_HEAL# +13# +16# +19# +22# +25# +@ +HFLI_MOON# +4# +8# +12# +16# +20# +@ +MH_XENO_SLASHER# +85# +90# +95# +100# +105# +110# +115# +120# +125# +130# +@ +MH_STEINWAND# +80# +90# +100# +110# +120# +@ +MH_LAVA_SLIDE# +40# +45# +50# +55# +60# +65# +70# +75# +80# +85# +@ +AC_SHOWER# +15# +15# +15# +15# +15# +15# +15# +15# +15# +15# +@ +MA_LANDMINE# +10# +10# +10# +10# +10# +@ +MER_REGAIN# +10# +@ +EL_FIRE_CLOAK# +60# +@ +EL_WIND_SLASH# +40# +@ +TF_STEAL# +150# +150# +150# +150# +150# +150# +150# +150# +150# +150# +@ +TF_HIDING# +10# +10# +10# +10# +10# +10# +10# +10# +10# +10# +@ +TF_POISON# +12# +12# +12# +12# +12# +12# +12# +12# +12# +12# +@ +TF_DETOXIFY# +10# +@ +ALL_RESURRECTION# +60# +60# +60# +60# +@ +KN_PIERCE# +7# +7# +7# +7# +7# +7# +7# +7# +7# +7# +@ +MA_SANDMAN# +12# +12# +12# +12# +12# +@ +MER_TENDER# +10# +@ +EL_FIRE_MANTLE# +80# +@ +KN_BRANDISHSPEAR# +24# +24# +24# +24# +24# +24# +24# +24# +24# +24# +@ +EL_HURRICANE# +60# +@ +KN_SPEARSTAB# +9# +9# +9# +9# +9# +9# +9# +9# +9# +9# +@ +KN_SPEARBOOMERANG# +10# +10# +10# +10# +10# +@ +KN_TWOHANDQUICKEN# +14# +18# +22# +26# +30# +34# +38# +42# +46# +50# +@ +KN_AUTOCOUNTER# +3# +3# +3# +3# +3# +@ +KN_BOWLINGBASH# +13# +14# +15# +16# +17# +18# +19# +20# +21# +22# +@ +KN_CHARGEATK# +40# +@ +CR_SHRINK# +100# +@ +AS_VENOMKNIFE# +35# +@ +RG_CLOSECONFINE# +40# +@ +WZ_SIGHTBLASTER# +80# +@ +HT_PHANTASMIC# +50# +@ +BA_PANGVOICE# +40# +@ +DC_WINKCHARM# +40# +@ +PR_REDEMPTIO# +800# +@ +MO_BALKYOUNG# +40# +@ +BS_GREED# +10# +@ +MO_KITRANSLATION# +40# +@ +SA_ELEMENTGROUND# +30# +@ +SA_ELEMENTFIRE# +30# +@ +SA_ELEMENTWIND# +30# +@ +SA_ELEMENTWATER# +30# +@ +AB_HIGHNESSHEAL# +70# +100# +130# +160# +190# +@ +MER_BENEDICTION# +10# +@ +EL_WATER_SCREEN# +40# +@ +PR_IMPOSITIO# +13# +16# +19# +22# +25# +@ +PR_SUFFRAGIUM# +8# +8# +8# +@ +PR_ASPERSIO# +14# +18# +22# +26# +30# +@ +PR_BENEDICTIO# +20# +20# +20# +20# +20# +@ +WL_SIENNAEXECRATE# +32# +34# +36# +38# +40# +@ +WL_CRIMSONROCK# +60# +70# +80# +90# +100# +@ +WL_SUMMONBL# +10# +50# +@ +PR_SANCTUARY# +15# +18# +21# +24# +27# +30# +33# +36# +39# +42# +@ +RA_CLUSTERBOMB# +20# +20# +20# +20# +20# +@ +RA_WUGSTRIKE# +20# +22# +24# +26# +28# +@ +RA_CAMOUFLAGE# +40# +40# +40# +40# +40# +@ +RA_MAIZETRAP# +10# +@ +NC_FLAMELAUNCHER# +20# +20# +20# +@ +NC_HOVERING# +25# +@ +PR_SLOWPOISON# +6# +8# +10# +12# +@ +NC_ANALYZE# +30# +30# +30# +@ +NC_REPAIR# +25# +30# +35# +40# +45# +@ +NC_POWERSWING# +20# +22# +24# +26# +28# +30# +32# +34# +36# +38# +@ +NC_DISJOINT# +15# +@ +SC_SHADOWFORM# +40# +50# +60# +70# +80# +@ +SC_DEADLYINFECT# +40# +44# +48# +52# +56# +@ +SC_LAZINESS# +30# +40# +50# +@ +PR_STRECOVERY# +5# +@ +SC_BLOODYLUST# +60# +70# +80# +@ +LG_CANNONSPEAR# +30# +35# +40# +45# +50# +@ +LG_REFLECTDAMAGE# +60# +70# +80# +900# +100# +@ +LG_SHIELDSPELL# +50# +50# +50# +@ +LG_BANDING# +30# +36# +42# +48# +54# +@ +LG_EARTHDRIVE# +52# +60# +68# +76# +84# +@ +PR_KYRIE# +20# +20# +20# +25# +25# +25# +30# +30# +30# +35# +@ +WA_SYMPHONY_OF_LOVER# +60# +69# +78# +87# +96# +@ +PR_MAGNIFICAT# +40# +40# +40# +40# +40# +@ +MI_HARMONIZE# +70# +75# +80# +85# +90# +@ +PR_GLORIA# +20# +20# +20# +20# +20# +@ +WM_POEMOFNETHERWORLD# +12# +16# +20# +24# +28# +@ +WM_SIRCLEOFNATURE# +42# +46# +50# +54# +58# +@ +PR_LEXDIVINA# +20# +20# +20# +20# +20# +18# +16# +14# +12# +10# +@ +WM_LERADS_DEW# +120# +130# +140# +150# +160# +@ +SO_FIREWALK# +30# +34# +38# +42# +46# +@ +SO_DIAMONDDUST# +50# +56# +62# +68# +74# +@ +SO_STRIKING# +50# +55# +60# +65# +70# +@ +SO_ARRULLO# +30# +35# +40# +45# +50# +@ +PR_TURNUNDEAD# +20# +20# +20# +20# +20# +20# +20# +20# +20# +20# +@ +SO_WIND_INSIGNIA# +22# +30# +38# +@ +GN_THORNS_TRAP# +22# +26# +30# +34# +38# +@ +GN_CRAZYWEED# +24# +28# +32# +36# +40# +44# +48# +52# +56# +60# +@ +PR_LEXAETERNA# +10# +@ +GN_MIX_COOKING# +5# +40# +@ +AB_SECRAMENT# +100# +120# +140# +160# +180# +@ +PR_MAGNUS# +40# +42# +44# +46# +48# +50# +52# +54# +56# +58# +@ +ALL_BUYING_STORE# +30# +30# +@ +SM_BASH# +8# +8# +8# +8# +8# +15# +15# +15# +15# +15# +@ +WZ_FIREPILLAR# +75# +75# +75# +75# +75# +75# +75# +75# +75# +75# +@ +MA_REMOVETRAP# +5# +@ +MER_RECUPERATE# +10# +@ +WZ_SIGHTRASHER# +35# +37# +39# +41# +43# +45# +47# +49# +51# +53# +@ +EL_WATER_DROP# +60# +@ +WZ_FIREIVY# +12# +14# +16# +18# +20# +22# +24# +26# +28# +30# +@ +EL_TYPOON_MIS# +80# +@ +WZ_METEOR# +20# +24# +30# +34# +40# +44# +50# +54# +60# +64# +@ +WZ_JUPITEL# +20# +23# +26# +29# +32# +35# +38# +41# +44# +47# +@ +WZ_VERMILION# +60# +64# +68# +72# +76# +80# +84# +88# +92# +96# +@ +WZ_WATERBALL# +15# +20# +20# +25# +25# +@ +WZ_ICEWALL# +20# +20# +20# +20# +20# +20# +20# +20# +20# +20# +@ +WZ_FROSTNOVA# +45# +43# +41# +39# +37# +35# +33# +31# +29# +27# +@ +WZ_STORMGUST# +78# +78# +78# +78# +78# +78# +78# +78# +78# +78# +@ +WZ_EARTHSPIKE# +14# +18# +22# +26# +30# +@ +WZ_HEAVENDRIVE# +28# +32# +36# +40# +44# +@ +WZ_QUAGMIRE# +5# +10# +15# +20# +25# +@ +WZ_ESTIMATION# +10# +@ +HFLI_SPEED# +30# +40# +50# +60# +70# +@ +MH_NEEDLE_OF_PARALYZE# +42# +48# +54# +60# +66# +72# +78# +84# +90# +96# +@ +MH_STYLE_CHANGE# +35# +@ +MH_ANGRIFFS_MODUS# +60# +65# +70# +75# +80# +@ +MH_VOLCANIC_ASH# +60# +65# +70# +75# +80# +@ +SM_PROVOKE# +4# +5# +6# +7# +8# +9# +10# +11# +12# +13# +@ +MA_CHARGEARROW# +15# +@ +MER_MENTALCURE# +10# +@ +EL_WATER_BARRIER# +80# +@ +BS_REPAIRWEAPON# +30# +@ +BS_HAMMERFALL# +10# +10# +10# +10# +10# +@ +BS_ADRENALINE# +20# +23# +26# +29# +32# +@ +SM_MAGNUM# +30# +30# +30# +30# +30# +30# +30# +30# +30# +30# +@ +BS_WEAPONPERFECT# +18# +16# +14# +12# +10# +@ +MA_SHARPSHOOTING# +18# +21# +24# +27# +30# +@ +MER_COMPRESS# +10# +@ +BS_OVERTHRUST# +18# +16# +14# +12# +10# +@ +EL_WIND_STEP# +40# +@ +BS_MAXIMIZE# +10# +10# +10# +10# +10# +@ +EL_STONE_HAMMER# +40# +@ +HT_SKIDTRAP# +10# +10# +10# +10# +10# +@ +HT_LANDMINE# +10# +10# +10# +10# +10# +@ +HT_ANKLESNARE# +12# +12# +12# +12# +12# +@ +HT_SHOCKWAVE# +45# +45# +45# +45# +45# +@ +HT_SANDMAN# +12# +12# +12# +12# +12# +@ +HT_FLASHER# +12# +12# +12# +12# +12# +@ +HT_FREEZINGTRAP# +10# +10# +10# +10# +10# +@ +HT_BLASTMINE# +10# +10# +10# +10# +10# +@ +HT_CLAYMORETRAP# +15# +15# +15# +15# +15# +@ +HT_REMOVETRAP# +5# +@ +HT_TALKIEBOX# +1# +@ +RK_SONICWAVE# +33# +36# +39# +42# +45# +48# +51# +54# +57# +60# +@ +RK_HUNDREDSPEAR# +60# +60# +60# +60# +60# +60# +60# +60# +60# +60# +@ +RK_IGNITIONBREAK# +35# +40# +45# +50# +55# +@ +RK_DRAGONBREATH# +30# +35# +40# +45# +50# +55# +60# +65# +70# +75# +@ +RK_PHANTOMTHRUST# +15# +18# +21# +24# +27# +@ +GC_CROSSIMPACT# +40# +40# +40# +40# +40# +@ +GC_ANTIDOTE# +10# +@ +GC_WEAPONBLOCKING# +40# +36# +32# +28# +24# +@ +GC_POISONSMOKE# +40# +40# +40# +40# +40# +@ +GC_PHANTOMMENACE# +30# +@ +GC_ROLLINGCUTTER# +5# +5# +5# +5# +5# +@ +AB_JUDEX# +20# +23# +26# +29# +32# +34# +36# +38# +40# +42# +@ +AB_ADORAMUS# +32# +40# +48# +56# +64# +72# +80# +88# +96# +104# +@ +AB_CANTO# +200# +220# +240# +@ +SM_ENDURE# +10# +10# +10# +10# +10# +10# +10# +10# +10# +10# +@ +AB_VITUPERATUM# +144# +120# +106# +92# +78# +@ +AB_CONVENIO# +70# +@ +AB_LAUDARAMUS# +50# +60# +70# +80# +@ +AB_CLEARANCE# +54# +60# +66# +72# +78# +@ +HT_BLITZBEAT# +10# +13# +16# +19# +22# +@ +HT_DETECTING# +8# +8# +8# +8# +@ +HT_SPRINGTRAP# +10# +10# +10# +10# +10# +@ +EL_WIND_CURTAIN# +60# +@ +EL_ROCK_CRUSHER# +60# +@ +AS_CLOAKING# +15# +15# +15# +15# +15# +15# +15# +15# +15# +15# +@ +AS_SONICBLOW# +16# +18# +20# +22# +24# +26# +28# +30# +32# +34# +@ +AS_GRIMTOOTH# +3# +3# +3# +3# +3# +@ +AS_ENCHANTPOISON# +20# +20# +20# +20# +20# +20# +20# +20# +20# +20# +@ +WL_HELLINFERNO# +64# +70# +76# +82# +88# +@ +WL_EARTHSTRAIN# +70# +78# +86# +94# +102# +@ +AS_POISONREACT# +25# +30# +35# +40# +45# +50# +55# +60# +45# +45# +@ +WL_SUMMONWB# +10# +50# +@ +AS_VENOMDUST# +20# +20# +20# +20# +20# +20# +20# +20# +20# +20# +@ +RA_WUGMASTERY# +5# +@ +RA_WUGBITE# +40# +42# +44# +46# +48# +@ +AS_SPLASHER# +12# +14# +16# +18# +20# +22# +24# +26# +28# +30# +@ +NC_BOOSTKNUCKLE# +5# +10# +15# +20# +25# +@ +NC_COLDSLOWER# +20# +20# +20# +@ +NC_F_SIDESLIDE# +5# +@ +NV_FIRSTAID# +3# +@ +NC_MAGNETICFIELD# +60# +70# +80# +@ +NC_AXETORNADO# +45# +45# +45# +45# +45# +@ +NV_TRICKDEAD# +5# +@ +SC_TRIANGLESHOT# +22# +24# +26# +28# +30# +32# +34# +36# +38# +40# +@ +SC_ENERVATION# +30# +40# +50# +@ +SC_FEINTBOMB# +24# +28# +32# +36# +40# +44# +48# +52# +56# +60# +@ +LG_BANISHINGPOINT# +20# +20# +20# +20# +20# +25# +25# +25# +25# +25# +@ +LG_PINPOINTATTACK# +50# +50# +50# +50# +50# +@ +LG_MOONSLASHER# +20# +24# +28# +32# +36# +@ +LG_HESPERUSLIT# +37# +44# +51# +58# +65# +@ +SM_AUTOBERSERK# +1# +@ +AC_MAKINGARROW# +10# +@ +WA_MOONLIT_SERENADE# +84# +96# +108# +120# +134# +@ +AC_CHARGEARROW# +15# +@ +TF_SPRINKLESAND# +9# +@ +TF_BACKSLIDING# +7# +@ +TF_PICKSTONE# +2# +@ +WM_VOICEOFSIREN# +48# +56# +64# +72# +80# +@ +WM_RANDOMIZESPELL# +40# +45# +50# +55# +60# +@ +TF_THROWSTONE# +2# +@ +WM_MELODYOFSINK# +120# +130# +140# +150# +160# +@ +MC_CARTREVOLUTION# +12# +@ +SO_POISON_BUSTER# +70# +90# +110# +130# +150# +@ +SO_WARMER# +40# +52# +64# +76# +88# +@ +SO_EL_CONTROL# +10# +10# +10# +10# +@ +MC_CHANGECART# +40# +@ +SO_EL_CURE# +10# +@ +SO_EARTH_INSIGNIA# +22# +30# +38# +@ +MC_LOUD# +8# +@ +GN_BLOOD_SUCKER# +30# +35# +40# +45# +50# +@ +AL_HOLYLIGHT# +15# +@ +GN_MAKEBOMB# +5# +40# +@ +MG_ENERGYCOAT# +30# +@ +MG_SIGHT# +10# +@ +MS_BASH# +8# +8# +8# +8# +8# +15# +15# +15# +15# +15# +@ +ML_BRANDISH# +12# +12# +12# +12# +12# +12# +12# +12# +12# +12# +@ +MER_AUTOBERSERK# +1# +@ +EL_ZEPHYR# +80# +@ +EL_FIRE_ARROW# +40# +@ +MG_NAPALMBEAT# +9# +9# +9# +12# +12# +12# +15# +15# +15# +18# +@ +HAMI_CASTLE# +10# +10# +10# +10# +10# +@ +HVAN_CAPRICE# +22# +24# +26# +28# +30# +@ +MH_PAIN_KILLER# +48# +52# +56# +60# +64# +68# +72# +76# +80# +84# +@ +MH_SILVERVEIN_RUSH# +17# +19# +21# +23# +25# +27# +29# +31# +33# +35# +@ +MH_CBC# +10# +20# +30# +40# +50# +@ +MG_SAFETYWALL# +30# +30# +30# +35# +35# +35# +40# +40# +40# +40# +@ +MS_MAGNUM# +30# +30# +30# +30# +30# +30# +30# +30# +30# +30# +@ +ML_SPIRALPIERCE# +18# +21# +24# +27# +30# +@ +MER_DECAGI# +15# +17# +19# +21# +23# +25# +27# +29# +31# +33# +@ +EL_SOLID_SKIN# +40# +@ +EL_FIRE_BOMB# +60# +@ +EL_STONE_RAIN# +80# +@ +MG_SOULSTRIKE# +18# +14# +24# +20# +30# +26# +36# +32# +42# +38# +@ +RG_STEALCOIN# +15# +15# +15# +15# +15# +15# +15# +15# +15# +15# +@ +RG_BACKSTAP# +16# +16# +16# +16# +16# +16# +16# +16# +16# +16# +@ +RG_RAID# +15# +15# +15# +15# +15# +@ +RG_STRIPWEAPON# +17# +19# +21# +23# +25# +@ +RG_STRIPSHIELD# +12# +14# +16# +18# +20# +@ +RG_STRIPARMOR# +17# +19# +21# +23# +25# +@ +RG_STRIPHELM# +12# +14# +16# +18# +20# +@ +RG_INTIMIDATE# +13# +16# +19# +22# +25# +@ +RG_GRAFFITI# +15# +@ +RG_FLAGGRAFFITI# +10# +10# +10# +10# +10# +@ +RG_CLEANER# +5# +@ +MG_COLDBOLT# +12# +14# +16# +18# +20# +22# +24# +26# +28# +30# +@ +MS_BOWLINGBASH# +13# +14# +15# +16# +17# +18# +19# +20# +21# +22# +@ +ML_DEFENDER# +30# +30# +30# +30# +30# +@ +SC_STRIPACCESSARY# +15# +18# +21# +24# +27# +@ +MER_INCAGI# +18# +21# +24# +27# +30# +33# +36# +39# +42# +45# +@ +MER_BLESSING# +28# +32# +36# +40# +44# +48# +52# +56# +60# +64# +@ +MER_KYRIE# +20# +20# +20# +25# +25# +25# +30# +30# +30# +35# +@ +EL_STONE_SHIELD# +60# +@ +AM_PHARMACY# +5# +5# +5# +5# +5# +5# +5# +5# +5# +5# +@ +MER_ESTIMATION# +10# +@ +MER_LEXDIVINA# +20# +20# +20# +20# +20# +18# +16# +14# +12# +10# +@ +MER_SCAPEGOAT# +5# +@ +AM_DEMONSTRATION# +10# +10# +10# +10# +10# +@ +MER_PROVOKE# +4# +5# +6# +7# +8# +9# +10# +11# +12# +13# +@ +MER_CRASH# +10# +10# +10# +10# +10# +@ +MER_SIGHT# +10# +@ +AM_ACIDTERROR# +15# +15# +15# +15# +15# +@ +LG_SHIELDPRESS# +10# +12# +14# +16# +18# +20# +22# +24# +26# +28# +@ +ML_AUTOGUARD# +12# +14# +16# +18# +20# +22# +24# +26# +28# +30# +@ +ML_PIERCE# +7# +7# +7# +7# +7# +7# +7# +7# +7# +7# +@ +AM_POTIONPITCHER# +1# +1# +1# +1# +1# +@ +MA_FREEZINGTRAP# +10# +10# +10# +10# +10# +@ +MA_SKIDTRAP# +10# +10# +10# +10# +10# +@ +MA_SHOWER# +15# +15# +15# +15# +15# +15# +15# +15# +15# +15# +@ +AM_CANNIBALIZE# +20# +20# +20# +20# +20# +@ +MA_DOUBLE# +12# +12# +12# +12# +12# +12# +12# +12# +12# +12# +@ +MS_BERSERK# +200# +@ +MS_REFLECTSHIELD# +35# +40# +45# +50# +55# +60# +65# +70# +75# +80# +@ +AM_SPHEREMINE# +10# +10# +10# +10# +10# +@ +MS_PARRYING# +50# +50# +50# +50# +50# +50# +50# +50# +50# +50# +@ +MH_PYROCLASTIC# +20# +28# +36# +44# +52# +56# +60# +64# +66# +70# +@ +MH_GRANITIC_ARMOR# +54# +58# +62# +66# +70# +@ +AM_CP_WEAPON# +30# +30# +30# +30# +30# +@ +MH_MAGMA_FLOW# +34# +38# +42# +46# +50# +@ +MH_TINDER_BREAKER# +20# +25# +30# +35# +40# +@ +AM_CP_SHIELD# +25# +25# +25# +25# +25# +@ +MH_HEILIGE_STANGE# +48# +54# +60# +66# +72# +78# +84# +90# +96# +102# +@ +MH_GOLDENE_FERSE# +60# +65# +70# +75# +80# +@ +AM_CP_ARMOR# +25# +25# +25# +25# +25# +@ +MH_SONIC_CRAW# +20# +25# +30# +35# +40# +@ +MH_SILENT_BREEZE# +45# +54# +63# +72# +81# +@ +AM_CP_HELM# +20# +20# +20# +20# +20# +@ +MH_ERASER_CUTTER# +25# +30# +35# +40# +45# +50# +55# +60# +65# +70# +@ +MH_OVERED_BOOST# +70# +90# +110# +130# +150# +@ +MH_LIGHT_OF_REGENE# +40# +50# +60# +70# +80# +@ +MH_POISON_MIST# +65# +75# +85# +95# +105# +@ +MH_SUMMON_LEGION# +60# +80# +100# +120# +140# +@ +HVAN_EXPLOSION# +1# +1# +1# +@ +SA_CREATECON# +30# +@ +MG_FROSTDIVER# +25# +24# +23# +22# +21# +20# +19# +18# +17# +16# +@ +AM_CREATECREATURE# +30# +30# +30# +30# +30# +@ +HFLI_SBR44# +1# +1# +1# +@ +HFLI_FLEET# +30# +40# +50# +60# +70# +@ +HAMI_BLOODLUST# +120# +120# +120# +@ +AM_CULTIVATION# +40# +40# +40# +40# +40# +@ +HLIF_CHANGE# +100# +100# +100# +@ +HLIF_AVOID# +20# +25# +30# +35# +40# +@ +LG_OVERBRAND# +20# +30# +40# +50# +60# +@ +ALL_ODINS_RECALL# +1# +@ +AM_CALLHOMUN# +10# +@ +AM_REST# +50# +@ +GN_CHANGEMATERIAL# +5# +@ +GN_SLINGITEM# +4# +@ +GN_MANDRAGORA# +40# +45# +50# +55# +60# +@ +GN_HELLS_PLANT# +40# +45# +50# +55# +60# +@ +GN_FIRE_EXPANSION# +30# +35# +40# +45# +50# +@ +GN_DEMONIC_FIRE# +24# +28# +32# +36# +40# +@ +AM_HEALHOMUN# +12# +14# +16# +18# +20# +22# +24# +26# +28# +30# +@ +GN_WALLOFTHORN# +40# +50# +60# +70# +80# +@ +GN_CARTBOOST# +20# +24# +28# +32# +36# +@ +AM_RESURRECTHOMUN# +74# +68# +62# +56# +50# +@ +GN_CARTCANNON# +40# +42# +46# +48# +50# +@ +GN_CART_TORNADO# +30# +30# +30# +30# +30# +30# +30# +30# +30# +30# +@ +EL_WATER_SCREW# +60# +@ +EL_ICE_NEEDLE# +40# +@ +CR_AUTOGUARD# +12# +14# +16# +18# +20# +22# +24# +26# +28# +30# +@ +EL_FIRE_WAVE# +80# +@ +CR_SHIELDCHARGE# +10# +10# +10# +10# +10# +@ +HAMI_DEFENCE# +20# +25# +30# +35# +40# +@ +HVAN_CHAOTIC# +40# +40# +40# +40# +40# +@ +CR_SHIELDBOOMERANG# +12# +12# +12# +12# +12# +@ +MH_MIDNIGHT_FRENZY# +18# +21# +24# +27# +30# +33# +36# +39# +42# +45# +@ +MH_EQC# +24# +28# +32# +36# +40# +@ +CR_REFLECTSHIELD# +35# +40# +45# +50# +55# +60# +65# +70# +75# +80# +@ +CR_HOLYCROSS# +11# +12# +13# +14# +15# +16# +17# +18# +19# +20# +@ +SO_CLOUD_KILL# +48# +56# +64# +70# +78# +@ +SO_EL_ACTION# +50# +@ +CR_GRANDCROSS# +37# +44# +51# +58# +65# +72# +78# +86# +93# +100# +@ +SO_WATER_INSIGNIA# +22# +30# +38# +@ +CR_DEVOTION# +25# +25# +25# +25# +25# +@ +SO_SUMMON_AQUA# +100# +150# +200# +@ +MG_STONECURSE# +25# +24# +23# +22# +21# +20# +19# +18# +17# +16# +@ +CR_PROVIDENCE# +30# +30# +30# +30# +30# +@ +CR_DEFENDER# +30# +30# +30# +30# +30# +@ +AB_SILENTIUM# +64# +68# +72# +76# +80# +@ +CR_SPEARQUICKEN# +24# +28# +32# +36# +40# +44# +48# +52# +56# +60# +@ +SO_SUMMON_TERA# +100# +150# +200# +@ +SO_SUMMON_VENTUS# +100# +150# +200# +@ +SO_EL_ANALYSIS# +10# +20# +@ +MO_CALLSPIRITS# +8# +8# +8# +8# +8# +@ +SO_VARETYR_SPEAR# +65# +70# +75# +80# +85# +90# +95# +100# +105# +110# +@ +MO_ABSORBSPIRITS# +5# +@ +SO_VACUUM_EXTREME# +34# +42# +50# +58# +66# +@ +EL_POWER_OF_GAIA# +80# +@ +MO_BODYRELOCATION# +14# +@ +SO_EARTHGRAVE# +62# +70# +78# +86# +94# +@ +MO_INVESTIGATE# +10# +14# +17# +19# +20# +@ +SO_SPELLFIST# +40# +44# +48# +52# +56# +60# +64# +68# +72# +76# +@ +MO_FINGEROFFENSIVE# +12# +16# +20# +24# +28# +@ +SO_ELECTRICWALK# +30# +34# +38# +42# +46# +@ +MO_STEELBODY# +200# +200# +200# +200# +200# +@ +WM_UNLIMITED_HUMMING_VOICE# +120# +130# +140# +150# +160# +@ +MO_BLADESTOP# +10# +10# +10# +10# +10# +@ +WA_SWING_DANCE# +96# +112# +128# +144# +160# +@ +MO_EXPLOSIONSPIRITS# +15# +15# +15# +15# +15# +@ +WM_SATURDAY_NIGHT_FEVER# +150# +160# +170# +180# +190# +@ +MO_EXTREMITYFIST# +1# +1# +1# +1# +1# +@ +MG_FIREBALL# +25# +25# +25# +25# +25# +25# +25# +25# +25# +25# +@ +MO_CHAINCOMBO# +12# +14# +16# +18# +20# +@ +WM_SOUND_OF_DESTRUCTION# +50# +60# +70# +80# +90# +@ +MO_COMBOFINISH# +3# +4# +5# +6# +7# +@ +WM_DANCE_WITH_WUG# +120# +140# +160# +180# +200# +@ +WM_SONG_OF_MANA# +120# +140# +160# +180# +200# +@ +SA_CASTCANCEL# +2# +2# +2# +2# +2# +@ +WL_WHITEIMPRISON# +50# +55# +60# +65# +70# +@ +SA_MAGICROD# +2# +2# +2# +2# +2# +@ +WL_STASIS# +50# +60# +70# +80# +90# +@ +SA_SPELLBREAKER# +10# +10# +10# +10# +10# +@ +WL_TETRAVORTEX# +120# +150# +180# +210# +240# +200# +240# +280# +320# +360# +@ +WM_GREAT_ECHO# +80# +90# +100# +110# +120# +@ +SA_AUTOSPELL# +35# +35# +35# +35# +35# +35# +35# +35# +35# +35# +@ +RA_ARROWSTORM# +24# +28# +32# +36# +40# +44# +48# +52# +56# +60# +@ +SA_FLAMELAUNCHER# +40# +40# +40# +40# +40# +@ +RA_WUGRIDER# +2# +2# +2# +@ +SA_FROSTWEAPON# +40# +40# +40# +40# +40# +@ +RA_MAGENTATRAP# +10# +@ +SA_LIGHTNINGLOADER# +40# +40# +40# +40# +40# +@ +NC_PILEBUNKER# +50# +50# +50# +@ +SA_SEISMICWEAPON# +40# +40# +40# +40# +40# +@ +NC_B_SIDESLIDE# +5# +@ +NC_NEUTRALBARRIER# +80# +90# +100# +@ +SA_VOLCANO# +48# +46# +44# +42# +40# +@ +NC_SILVERSNIPER# +25# +30# +35# +40# +45# +@ +SA_DELUGE# +48# +46# +44# +42# +40# +@ +SC_BODYPAINT# +10# +15# +20# +25# +30# +@ +SA_VIOLENTGALE# +48# +46# +44# +42# +40# +@ +MG_FIREWALL# +40# +40# +40# +40# +40# +40# +40# +40# +40# +40# +@ +SA_LANDPROTECTOR# +66# +62# +58# +54# +50# +@ +WM_GLOOMYDAY# +60# +75# +90# +105# +120# +@ +SA_DISPELL# +1# +1# +1# +1# +1# +@ +LG_FORCEOFVANGUARD# +30# +30# +30# +30# +30# +@ +SA_ABRACADABRA# +50# +50# +50# +50# +50# +50# +50# +50# +50# +50# +@ +LG_RAYOFGENESIS# +45# +50# +55# +60# +65# +70# +75# +80# +85# +90# +@ +WM_LULLABY_DEEPSLEEP# +80# +90# +100# +110# +120# +@ +WM_DEADHILLHERE# +50# +53# +56# +59# +62# +@ +WM_SEVERE_RAINSTORM# +80# +90# +100# +110# +120# +@ +MI_RUSH_WINDMILL# +82# +88# +94# +100# +106# +@ +WM_REVERBERATION# +56# +62# +68# +74# +80# +@ +WM_METALICSOUND# +62# +64# +66# +68# +70# +72# +74# +76# +78# +80# +@ +MI_ECHOSONG# +86# +92# +98# +104# +110# +@ +WM_DOMINION_IMPULSE# +10# +@ +MG_FIREBOLT# +12# +14# +16# +18# +20# +22# +24# +26# +28# +30# +@ +BD_ADAPTATION# +10# +@ +WM_BEYOND_OF_WARCRY# +120# +130# +140# +150# +160# +@ +BD_ENCORE# +1# +@ +BD_LULLABY# +40# +@ +SO_PSYCHIC_WAVE# +48# +56# +64# +70# +78# +@ +BD_RICHMANKIM# +62# +68# +74# +80# +86# +@ +SO_SUMMON_AGNI# +100# +150# +200# +@ +BD_ETERNALCHAOS# +120# +@ +SO_FIRE_INSIGNIA# +22# +30# +38# +@ +BD_DRUMBATTLEFIELD# +50# +54# +58# +62# +66# +@ +BD_RINGNIBELUNGEN# +64# +60# +56# +52# +48# +@ +GN_SPORE_EXPLOSION# +48# +52# +56# +60# +64# +68# +72# +76# +80# +84# +@ +BD_ROKISWEIL# +180# +@ +BD_INTOABYSS# +70# +@ +GN_S_PHARMACY# +12# +12# +12# +12# +12# +12# +12# +12# +12# +12# +@ +BD_SIEGFRIED# +40# +44# +48# +52# +56# +@ +LG_INSPIRATION# +80# +90# +100# +110# +120# +@ +LG_PIETY# +40# +45# +50# +55# +60# +@ +BA_MUSICALSTRIKE# +12# +12# +12# +12# +12# +@ +LG_PRESTIGE# +75# +80# +85# +90# +95# +@ +BA_DISSONANCE# +35# +38# +41# +44# +47# +@ +ALL_ODINS_POWER# +70# +100# +@ +BA_FROSTJOKE# +12# +14# +16# +18# +20# +@ +LG_EXEEDBREAK# +20# +32# +44# +56# +68# +@ +BA_WHISTLE# +22# +24# +26# +28# +30# +32# +34# +36# +38# +40# +@ +MG_LIGHTNINGBOLT# +12# +14# +16# +18# +20# +22# +24# +26# +28# +30# +@ +BA_ASSASSINCROSS# +40# +45# +50# +55# +60# +65# +70# +75# +80# +85# +@ +LG_RAGEBURST# +150# +@ +BA_POEMBRAGI# +65# +70# +75# +80# +85# +90# +95# +100# +105# +110# +@ +ML_DEVOTION# +25# +25# +25# +25# +25# +@ +BA_APPLEIDUN# +40# +45# +50# +55# +60# +65# +70# +75# +80# +85# +@ +LG_TRAMPLE# +30# +45# +60# +@ +SC_MAELSTROM# +50# +55# +60# +@ +DC_THROWARROW# +12# +12# +12# +12# +12# +@ +SC_CHAOSPANIC# +30# +36# +42# +@ +DC_UGLYDANCE# +35# +38# +41# +44# +47# +@ +SC_DIMENSIONDOOR# +30# +36# +42# +@ +DC_SCREAM# +12# +14# +16# +18# +20# +@ +SC_MANHOLE# +20# +25# +30# +@ +DC_HUMMING# +33# +36# +39# +42# +45# +48# +51# +54# +57# +60# +@ +DC_DONTFORGETME# +38# +41# +44# +47# +50# +53# +56# +59# +62# +65# +@ +SC_WEAKNESS# +30# +40# +50# +@ +DC_FORTUNEKISS# +40# +45# +50# +55# +60# +65# +70# +75# +80# +85# +@ +SC_UNLUCKY# +30# +40# +50# +@ +DC_SERVICEFORYOU# +60# +63# +66# +69# +72# +75# +78# +81# +84# +87# +@ +SC_IGNORANCE# +30# +40# +50# +@ +SC_GROOMY# +30# +40# +50# +@ +SC_INVISIBILITY# +100# +100# +100# +100# +100# +@ +SC_AUTOSHADOWSPELL# +40# +45# +50# +55# +60# +65# +70# +75# +80# +85# +@ +SC_REPRODUCE# +40# +45# +50# +55# +60# +65# +70# +75# +80# +85# +@ +SC_FATALMENACE# +10# +14# +18# +22# +26# +30# +34# +38# +42# +46# +@ +NC_MAGICDECOY# +40# +45# +50# +55# +60# +@ +WE_MALE# +1# +@ +NC_AXEBOOMERANG# +20# +22# +24# +26# +28# +@ +WE_FEMALE# +1# +@ +MG_THUNDERSTORM# +29# +34# +39# +44# +49# +54# +59# +64# +69# +74# +@ +WE_CALLPARTNER# +1# +@ +ITM_TOMAHAWK# +24# +@ +NC_STEALTHFIELD# +80# +100# +120# +@ +NC_INFRAREDSCAN# +45# +@ +NC_EMERGENCYCOOL# +20# +@ +NC_SHAPESHIFT# +100# +100# +100# +100# +@ +NC_SELFDESTRUCTION# +200# +200# +200# +@ +NC_ACCELERATION# +20# +40# +60# +@ +NC_ARMSCANNON# +40# +45# +50# +55# +60# +@ +NC_VULCANARM# +9# +12# +15# +@ +RA_ICEBOUNDTRAP# +10# +10# +10# +10# +10# +@ +RA_FIRINGTRAP# +10# +10# +10# +10# +10# +@ +RA_VERDURETRAP# +10# +@ +RA_COBALTTRAP# +10# +@ +RA_SENSITIVEKEEN# +12# +12# +12# +12# +12# +@ +RA_WUGDASH# +4# +@ +RA_ELECTRICSHOCKER# +35# +35# +35# +35# +35# +@ +RA_DETONATOR# +15# +@ +RA_AIMEDBOLT# +40# +40# +40# +40# +40# +40# +40# +40# +40# +40# +@ +RA_FEARBREEZE# +55# +60# +65# +70# +75# +@ +WL_RELEASE# +10# +10# +@ +WL_SUMMONSTONE# +10# +50# +@ +WL_SUMMONFB# +10# +50# +@ +WL_CHAINLIGHTNING# +80# +90# +100# +110# +120# +@ +WL_COMET# +70# +90# +110# +130# +150# +@ +WL_DRAINLIFE# +20# +24# +28# +32# +36# +@ +WL_RECOGNIZEDSPELL# +100# +120# +140# +160# +180# +@ +WL_MARSHOFABYSS# +40# +42# +44# +46# +48# +@ +WL_JACKFROST# +50# +60# +70# +80# +90# +@ +WL_FROSTMISTY# +40# +48# +56# +64# +72# +@ +WL_SOULEXPANSION# +30# +35# +40# +45# +50# +@ +AB_DUPLELIGHT# +55# +60# +65# +70# +75# +80# +85# +90# +95# +100# +@ +AB_EXPIATIO# +35# +40# +45# +50# +55# +@ +LK_AURABLADE# +18# +26# +34# +42# +50# +@ +AB_RENOVATIO# +240# +280# +320# +360# +@ +LK_PARRYING# +50# +50# +50# +50# +50# +50# +50# +50# +50# +50# +@ +AB_LAUDAAGNUS# +50# +60# +70# +80# +@ +LK_CONCENTRATION# +14# +18# +22# +26# +30# +@ +AB_ORATIO# +35# +38# +41# +44# +47# +50# +53# +56# +59# +62# +@ +LK_TENSIONRELAX# +15# +@ +AB_PRAEFATIO# +90# +100# +110# +120# +130# +140# +150# +160# +170# +180# +@ +LK_BERSERK# +200# +@ +AB_EPICLESIS# +300# +300# +300# +300# +300# +@ +AB_CHEAL# +200# +220# +240# +@ +AB_ANCILLA# +10# +@ +HP_ASSUMPTIO# +20# +30# +40# +50# +60# +@ +GC_HALLUCINATIONWALK# +100# +100# +100# +100# +100# +@ +HP_BASILICA# +40# +50# +60# +70# +80# +@ +GC_VENOMPRESSURE# +30# +40# +50# +60# +70# +@ +GC_WEAPONCRUSH# +20# +20# +20# +20# +20# +@ +GC_POISONINGWEAPON# +20# +24# +28# +32# +36# +@ +HW_MAGICCRASHER# +8# +@ +GC_DARKILLUSION# +20# +25# +30# +35# +40# +@ +HW_MAGICPOWER# +35# +40# +45# +50# +55# +60# +65# +70# +75# +80# +@ +PA_PRESSURE# +30# +35# +40# +45# +50# +@ +PA_SACRIFICE# +100# +100# +100# +100# +100# +@ +PA_GOSPEL# +80# +80# +80# +80# +80# +100# +100# +100# +100# +100# +@ +CH_PALMSTRIKE# +2# +4# +6# +8# +10# +@ +CH_TIGERFIST# +4# +6# +8# +10# +12# +@ +CH_CHAINCRUSH# +4# +6# +8# +10# +12# +14# +16# +18# +20# +22# +@ +RK_DEATHBOUND# +50# +60# +65# +70# +75# +80# +85# +90# +95# +100# +@ +PF_HPCONVERSION# +1# +2# +3# +4# +5# +@ +PF_SOULCHANGE# +5# +@ +MH_STAHL_HORN# +43# +46# +49# +52# +55# +58# +61# +64# +67# +70# +@ +PF_SOULBURN# +80# +90# +100# +110# +120# +@ +DA_DREAM# +600# +500# +400# +300# +200# +@ +DA_SPACE# +120# +100# +80# +60# +40# +@ +ASC_EDP# +60# +70# +80# +90# +100# +@ +DE_NIGHTMARE# +20# +@ +ASC_BREAKER# +60# +60# +60# +60# +60# +60# +60# +60# +60# +60# +@ +SL_GUNNER# +460# +360# +260# +160# +60# +@ +SN_SIGHT# +20# +20# +25# +25# +30# +30# +35# +35# +40# +40# +@ +MB_MUNAKKNOWLEDGE# +10# +@ +SN_FALCONASSAULT# +30# +34# +38# +42# +46# +@ +NJ_NEN# +20# +30# +40# +50# +60# +@ +SN_SHARPSHOOTING# +18# +21# +24# +27# +30# +@ +NJ_TATAMIGAESHI# +15# +15# +15# +15# +15# +@ +KO_YAMIKUMO# +10# +@ +KO_JYUMONJIKIRI# +10# +12# +14# +16# +18# +20# +22# +24# +26# +28# +@ +KO_SETSUDAN# +12# +16# +20# +24# +28# +@ +KO_BAKURETSU# +5# +6# +7# +8# +9# +@ +KO_HAPPOKUNAI# +12# +14# +16# +18# +20# +@ +KO_MUCHANAGE# +50# +50# +50# +50# +50# +50# +50# +50# +50# +50# +@ +KO_HUUMARANKA# +22# +24# +26# +28# +30# +32# +34# +36# +38# +40# +@ +KO_MAKIBISHI# +9# +12# +15# +18# +21# +@ +KO_MEIKYOUSISUI# +100# +100# +100# +100# +100# +@ +KO_ZANZOU# +40# +44# +48# +52# +56# +@ +KO_KYOUGAKU# +40# +44# +48# +52# +56# +@ +KO_JYUSATSU# +40# +44# +48# +52# +56# +@ +KO_KAHU_ENTEN# +20# +@ +KO_HYOUHU_HUBUKI# +20# +@ +KO_KAZEHU_SEIRAN# +20# +@ +KO_DOHU_KOUKAI# +20# +@ +KO_KAIHOU# +10# +@ +KO_ZENKAI# +30# +@ +KO_GENWAKU# +40# +44# +48# +52# +56# +@ +KO_IZAYOI# +70# +75# +80# +85# +90# +@ +KG_KAGEHUMI# +25# +30# +35# +40# +45# +@ +KG_KYOMU# +50# +50# +50# +50# +50# +@ +KG_KAGEMUSYA# +60# +65# +70# +75# +80# +@ +OB_ZANGETSU# +60# +70# +80# +90# +100# +@ +OB_OBOROGENSOU# +55# +60# +65# +70# +75# +@ +OB_AKAITSUKI# +20# +30# +40# +50# +60# +@ +MER_INVINCIBLEOFF2# +1# +@ +GC_DARKCROW# +22# +34# +46# +58# +70# +@ +RA_UNLIMIT# +100# +120# +140# +160# +180# +@ +LG_KINGS_GRACE# +200# +180# +160# +140# +120# +@ +RK_DRAGONBREATH_WATER# +30# +35# +40# +45# +50# +55# +60# +65# +70# +75# +@ +NC_MAGMA_ERUPTION# +60# +70# +80# +90# +100# +@ +WM_FRIGG_SONG# +200# +230# +260# +290# +320# +@ +SO_ELEMENTAL_SHIELD# +120# +120# +120# +120# +120# +@ +SC_ESCAPE# +30# +26# +22# +18# +14# +@ +AB_OFFERTORIUM# +30# +60# +90# +120# +150# +@ +WL_TELEKINESIS_INTENSE# +100# +150# +200# +250# +300# +@ +ALL_FULL_THROTTLE# +1# +1# +1# +1# +1# +@ +GN_ILLUSIONDOPING# +60# +70# +80# +90# +100# +@ +GM_ITEM_ATKMAX# +1# +@ +GM_ITEM_ATKMIN# +1# +@ +GM_ITEM_MATKMAX# +1# +@ +GM_ITEM_MATKMIN# +1# +@ +BA_POEMBRAGI2# +40# +45# +50# +55# +60# +65# +70# +75# +80# +85# +@ +DC_FORTUNEKISS2# +43# +46# +49# +52# +55# +58# +61# +64# +67# +70# +@ +MC_CARTDECORATE# +40# +@ +SU_BITE# +10# +@ +SU_HIDE# +10# +@ +SU_SCRATCH# +20# +25# +30# +@ +SU_STOOP# +10# +@ +SU_LOPE# +30# +30# +30# +@ +SU_FRESHSHRIMP# +22# +24# +26# +28# +30# +@ +SU_BUNCHOFSHRIMP# +44# +48# +52# +56# +60# +@ +SU_TUNABELLY# +20# +30# +40# +50# +60# +@ +SU_TUNAPARTY# +20# +30# +40# +50# +60# +@ +SU_SV_STEMSPEAR# +40# +40# +40# +40# +40# +@ +SU_SV_ROOTTWIST# +10# +12# +14# +16# +18# +@ +SU_CN_METEOR# +20# +35# +50# +65# +80# +@ +SU_CN_POWDERING# +40# +36# +32# +28# +24# +@ +SU_PICKYPECK# +10# +12# +14# +16# +18# +@ +SU_ARCLOUSEDASH# +12# +14# +16# +18# +20# +@ +SU_SCAROFTAROU# +10# +12# +14# +16# +18# +@ +SU_LUNATICCARROTBEAT# +15# +20# +25# +30# +35# +@ +SU_POWEROFFLOCK# +50# +50# +50# +50# +50# +@ +SU_SVG_SPIRIT# +60# +60# +60# +60# +60# +@ +SU_HISS# +50# +46# +42# +38# +34# +@ +SU_NYANGGRASS# +50# +48# +46# +44# +42# +@ +SU_GROOMING# +15# +15# +15# +15# +15# +@ +SU_PURRING# +70# +65# +60# +55# +50# +@ +SU_SHRIMPARTY# +100# +90# +80# +70# +60# +@ +SU_MEOWMEOW# +100# +90# +80# +70# +60# +@ +SU_CHATTERING# +50# +45# +40# +35# +30# +@ +GS_GLITTERING# +2# +2# +2# +2# +2# +@ +GS_FLING# +10# +@ +GS_TRIPLEACTION# +20# +@ +GS_BULLSEYE# +30# +@ +GS_MADNESSCANCEL# +30# +@ +GS_ADJUSTMENT# +15# +@ +GS_INCREASING# +30# +@ +GS_MAGICALBULLET# +7# +@ +GS_CRACKER# +10# +@ +GS_TRACKING# +15# +20# +25# +30# +35# +40# +45# +50# +55# +60# +@ +GS_DISARM# +15# +20# +25# +30# +35# +@ +GS_PIERCINGSHOT# +11# +12# +13# +14# +15# +@ +GS_RAPIDSHOWER# +22# +24# +26# +28# +30# +32# +34# +36# +38# +40# +@ +GS_DESPERADO# +32# +34# +36# +38# +40# +42# +44# +46# +48# +50# +@ +GS_GATLINGFEVER# +30# +32# +34# +36# +38# +40# +42# +44# +46# +48# +@ +GS_DUST# +3# +6# +9# +12# +15# +18# +21# +24# +27# +30# +@ +GS_FULLBUSTER# +20# +25# +30# +35# +40# +45# +50# +55# +60# +65# +@ +GS_SPREADATTACK# +13# +16# +19# +22# +25# +28# +31# +34# +37# +40# +@ +GS_GROUNDDRIFT# +3# +6# +9# +12# +15# +18# +21# +24# +27# +30# +@ +RL_FLICKER# +2# +@ +RL_RICHS_COIN# +10# +@ +RL_E_CHAIN# +45# +45# +45# +45# +45# +45# +45# +45# +45# +45# +@ +RL_QD_SHOT# +5# +@ +RL_C_MARKER# +10# +@ +RL_P_ALTER# +20# +24# +28# +32# +36# +@ +RL_B_TRAP# +30# +32# +34# +36# +38# +@ +RL_HEAT_BARREL# +30# +30# +30# +30# +30# +@ +RL_FIREDANCE# +13# +16# +19# +22# +25# +28# +31# +34# +37# +40# +@ +RL_FALLEN_ANGEL# +10# +@ +RL_MASS_SPIRAL# +40# +44# +48# +52# +56# +@ +RL_AM_BLAST# +80# +84# +88# +92# +96# +@ +RL_HAMMER_OF_GOD# +37# +39# +41# +43# +45# +47# +49# +51# +53# +55# +@ +RL_R_TRIP# +43# +46# +49# +52# +55# +58# +61# +64# +67# +70# +@ +RL_FIRE_RAIN# +70# +70# +70# +70# +70# +@ +RL_BANISHING_BUSTER# +55# +57# +59# +61# +63# +65# +67# +69# +71# +73# +@ +RL_S_STORM# +50# +55# +60# +65# +70# +@ +RL_SLUGSHOT# +80# +84# +88# +92# +96# +@ +RL_D_TAIL# +55# +60# +65# +70# +75# +80# +85# +90# +95# +100# +@ +RL_H_MINE# +45# +50# +55# +60# +65# +@ +WE_CALLALLFAMILY# +100# +@ +WE_ONEFOREVER# +100# +@ +WE_CHEERUP# +50# +@ +SJ_LIGHTOFMOON# +40# +40# +40# +40# +40# +@ +SJ_LUNARSTANCE# +10# +10# +10# +@ +SJ_FULLMOONKICK# +30# +35# +40# +45# +50# +55# +60# +65# +70# +75# +@ +SJ_NEWMOONKICK# +20# +25# +30# +35# +40# +45# +50# +@ +SJ_LIGHTOFSTAR# +40# +40# +40# +40# +40# +@ +SJ_STARSTANCE# +10# +10# +10# +@ +SJ_FLASHKICK# +45# +40# +35# +30# +25# +20# +15# +@ +SJ_STAREMPEROR# +70# +75# +80# +85# +90# +@ +SJ_NOVAEXPLOSING# +60# +65# +70# +75# +80# +@ +SJ_UNIVERSESTANCE# +10# +10# +10# +@ +SJ_FALLINGSTAR# +40# +45# +50# +55# +60# +65# +70# +75# +80# +85# +@ +SJ_GRAVITYCONTROL# +80# +@ +SJ_BOOKOFDIMENSION# +40# +40# +40# +40# +40# +@ +SJ_BOOKOFCREATINGSTAR# +50# +55# +60# +65# +70# +@ +SJ_DOCUMENT# +60# +60# +60# +@ +SJ_LIGHTOFSUN# +40# +40# +40# +40# +40# +@ +SJ_SUNSTANCE# +10# +10# +10# +@ +SJ_SOLARBURST# +34# +37# +40# +43# +46# +49# +52# +55# +58# +61# +@ +SJ_PROMINENCEKICK# +20# +20# +20# +20# +20# +20# +20# +@ +SP_SOULGOLEM# +250# +200# +150# +100# +50# +@ +SP_SOULSHADOW# +250# +200# +150# +100# +50# +@ +SP_SOULFALCON# +250# +200# +150# +100# +50# +@ +SP_SOULFAIRY# +250# +200# +150# +100# +50# +@ +SP_CURSEEXPLOSION# +50# +55# +60# +65# +70# +75# +80# +85# +90# +95# +@ +SP_SOULCURSE# +70# +70# +70# +70# +70# +@ +SP_SPA# +52# +56# +60# +64# +68# +72# +76# +80# +84# +88# +@ +SP_SHA# +18# +20# +22# +24# +26# +@ +SP_SWHOO# +66# +70# +74# +78# +82# +86# +90# +94# +98# +102# +@ +SP_SOULUNITY# +44# +46# +48# +50# +52# +54# +56# +@ +SP_SOULDIVISION# +36# +40# +44# +48# +52# +@ +SP_SOULREAPER# +42# +44# +46# +48# +50# +@ +SP_SOULCOLLECT# +100# +100# +100# +100# +100# +@ +SP_SOULREVOLVE# +50# +100# +150# +@ +SP_SOULEXPLOSION# +30# +60# +90# +120# +150# +@ +SP_KAUTE# +24# +30# +36# +42# +48# +@ +SR_SKYNETBLOW# +12# +14# +16# +18# +20# +@ +SR_LIGHTNINGWALK# +40# +40# +40# +40# +40# +@ +SR_GATEOFHELL# +100# +100# +100# +100# +100# +100# +100# +100# +100# +100# +@ +SR_GENTLETOUCH_CHANGE# +40# +50# +60# +70# +80# +@ +SR_EARTHSHAKER# +36# +40# +44# +48# +52# +@ +SR_KNUCKLEARROW# +12# +14# +16# +18# +20# +22# +24# +26# +28# +30# +@ +SR_ASSIMILATEPOWER# +10# +@ +SR_GENTLETOUCH_QUIET# +20# +25# +30# +35# +40# +@ +SR_DRAGONCOMBO# +3# +4# +5# +6# +7# +8# +9# +10# +11# +12# +@ +SR_RIDEINLIGHTNING# +40# +50# +60# +70# +80# +@ +SR_HOWLINGOFLION# +70# +70# +70# +70# +70# +@ +SR_TIGERCANNON# +30# +35# +40# +45# +50# +55# +60# +65# +70# +75# +@ +SR_CRESCENTELBOW# +80# +80# +80# +80# +80# +@ +SR_RAISINGDRAGON# +120# +120# +120# +120# +120# +120# +120# +120# +120# +120# +@ +SR_POWERVELOCITY# +50# +@ +SR_GENTLETOUCH_ENERGYGAIN# +40# +50# +60# +70# +80# +@ +SR_FALLENEMPIRE# +18# +21# +24# +27# +30# +33# +36# +39# +42# +45# +@ +SR_WINDMILL# +45# +@ +SR_GENTLETOUCH_CURE# +40# +50# +60# +70# +80# +@ +SR_GENTLETOUCH_REVITALIZE# +40# +50# +60# +70# +80# +@ +SR_CURSEDCIRCLE# +40# +60# +80# +100# +120# +@ +SR_RAMPAGEBLASTER# +100# +100# +100# +100# +100# +@ +SR_FLASHCOMBO# +65# +65# +65# +65# +65# +@ +DK_SERVANTWEAPON# +30# +40# +50# +60# +70# +@ +DK_SERVANT_W_SIGN# +15# +15# +15# +15# +15# +@ +DK_SERVANT_W_PHANTOM# +40# +40# +40# +40# +40# +@ +DK_SERVANT_W_DEMOL# +30# +35# +40# +45# +50# +@ +DK_CHARGINGPIERCE# +25# +30# +35# +40# +45# +50# +55# +60# +65# +70# +@ +DK_HACKANDSLASHER# +34# +38# +42# +46# +50# +54# +58# +62# +66# +70# +@ +DK_DRAGONIC_AURA# +100# +100# +100# +100# +100# +100# +100# +100# +100# +100# +@ +DK_MADNESS_CRUSHER# +34# +38# +42# +46# +50# +@ +DK_VIGOR# +100# +100# +100# +100# +100# +100# +100# +100# +100# +100# +@ +DK_STORMSLASH# +30# +35# +40# +45# +50# +@ +DK_DRAGONIC_BREATH# +61# +64# +67# +70# +73# +76# +79# +82# +85# +88# +@ +AG_DEADLY_PROJECTION# +80# +90# +100# +110# +120# +@ +AG_DESTRUCTIVE_HURRICANE# +80# +90# +100# +110# +120# +@ +AG_RAIN_OF_CRYSTAL# +40# +50# +60# +70# +80# +@ +AG_MYSTERY_ILLUSION# +80# +90# +100# +110# +120# +@ +AG_VIOLENT_QUAKE# +80# +90# +100# +110# +120# +@ +AG_SOUL_VC_STRIKE# +80# +90# +100# +110# +120# +@ +AG_STRANTUM_TREMOR# +35# +45# +55# +65# +75# +@ +AG_ALL_BLOOM# +80# +90# +100# +110# +120# +@ +AG_CRYSTAL_IMPACT# +80# +90# +100# +110# +120# +@ +AG_TORNADO_STORM# +45# +55# +65# +75# +85# +@ +AG_FLORAL_FLARE_ROAD# +30# +40# +50# +60# +70# +@ +AG_CLIMAX# +60# +60# +60# +60# +60# +@ +AG_ASTRAL_STRIKE# +150# +150# +150# +150# +150# +150# +150# +150# +150# +150# +@ +AG_ROCK_DOWN# +65# +70# +75# +80# +85# +@ +AG_STORM_CANNON# +60# +70# +80# +90# +100# +@ +AG_CRIMSON_ARROW# +65# +75# +85# +95# +105# +@ +AG_FROZEN_SLASH# +45# +55# +65# +75# +85# +@ +IQ_POWERFUL_FAITH# +54# +58# +62# +66# +70# +@ +IQ_FIRM_FAITH# +54# +58# +62# +66# +70# +@ +IQ_OLEUM_SANCTUM# +30# +40# +50# +60# +70# +@ +IQ_SINCERE_FAITH# +54# +58# +62# +66# +70# +@ +IQ_FIRST_BRAND# +22# +29# +36# +43# +50# +@ +IQ_FIRST_FAITH_POWER# +60# +60# +60# +60# +60# +@ +IQ_THIRD_PUNISH# +56# +62# +68# +74# +80# +@ +IQ_THIRD_FLAME_BOMB# +74# +78# +82# +86# +90# +@ +IQ_THIRD_CONSECRATION# +65# +70# +75# +80# +85# +@ +IQ_SECOND_FLAME# +46# +52# +58# +64# +70# +@ +IQ_SECOND_FAITH# +36# +42# +48# +54# +60# +@ +IQ_SECOND_JUDGEMENT# +45# +50# +55# +60# +65# +@ +IQ_EXPOSION_BLASTER# +80# +90# +100# +110# +120# +@ +IQ_MASSIVE_F_BLASTER# +100# +100# +100# +100# +100# +100# +100# +100# +100# +100# +@ +IQ_JUDGE# +60# +60# +60# +60# +60# +@ +IQ_THIRD_EXOR_FLAME# +60# +60# +60# +60# +60# +@ +IG_GUARD_STANCE# +50# +50# +50# +50# +50# +@ +IG_GUARDIAN_SHIELD# +60# +60# +60# +60# +60# +@ +IG_REBOUND_SHIELD# +60# +60# +60# +60# +60# +@ +IG_ATTACK_STANCE# +50# +50# +50# +50# +50# +@ +IG_ULTIMATE_SACRIFICE# +120# +120# +120# +120# +120# +@ +IG_HOLY_SHIELD# +60# +60# +60# +60# +60# +@ +IG_GRAND_JUDGEMENT# +41# +44# +47# +50# +54# +58# +62# +66# +70# +74# +@ +IG_JUDGEMENT_CROSS# +150# +150# +150# +150# +150# +150# +150# +150# +150# +150# +@ +IG_SHIELD_SHOOTING# +40# +45# +50# +55# +60# +@ +IG_OVERSLASH# +41# +44# +47# +50# +53# +56# +59# +62# +65# +68# +@ +IG_CROSS_RAIN# +50# +54# +58# +62# +66# +70# +74# +78# +82# +86# +@ +SHC_DANCING_KNIFE# +40# +45# +50# +55# +60# +@ +SHC_SAVAGE_IMPACT# +28# +31# +34# +37# +40# +43# +46# +49# +52# +55# +@ +SHC_ETERNAL_SLASH# +40# +40# +40# +40# +40# +@ +SHC_ENCHANTING_SHADOW# +30# +40# +50# +60# +70# +@ +SHC_POTENT_VENOM# +15# +20# +25# +30# +35# +40# +45# +50# +55# +60# +@ +SHC_SHADOW_EXCEED# +100# +100# +100# +100# +100# +100# +100# +100# +100# +100# +@ +SHC_FATAL_SHADOW_CROW# +150# +150# +150# +150# +150# +150# +150# +150# +150# +150# +@ +SHC_SHADOW_STAB# +45# +50# +55# +60# +65# +@ +SHC_IMPACT_CRATER# +43# +46# +49# +52# +55# +@ +CD_REPARATIO# +120# +120# +120# +120# +120# +@ +CD_MEDIALE_VOTUM# +30# +40# +50# +60# +70# +@ +CD_ARGUTUS_VITA# +30# +45# +60# +75# +90# +@ +CD_ARGUTUS_TELUM# +30# +45# +60# +75# +90# +@ +CD_ARBITRIUM# +50# +60# +70# +80# +90# +100# +110# +120# +130# +140# +@ +CD_PRESENS_ACIES# +30# +45# +60# +75# +90# +@ +CD_EFFLIGO# +60# +60# +60# +60# +60# +60# +60# +60# +60# +60# +@ +CD_COMPETENTIA# +60# +60# +60# +60# +60# +@ +CD_PNEUMATICUS_PROCELLA# +150# +150# +150# +150# +150# +150# +150# +150# +150# +150# +@ +CD_DILECTIO_HEAL# +50# +55# +60# +65# +70# +@ +CD_RELIGIO# +70# +75# +80# +85# +90# +@ +CD_BENEDICTUM# +70# +75# +80# +85# +90# +@ +CD_PETITIO# +32# +34# +36# +38# +40# +42# +44# +46# +48# +50# +@ +CD_FRAMEN# +40# +45# +50# +55# +60# +@ +BO_BIONIC_PHARMACY# +30# +30# +30# +30# +30# +@ +BO_THE_WHOLE_PROTECTION# +220# +260# +300# +340# +380# +@ +BO_ADVANCE_PROTECTION# +120# +130# +140# +150# +@ +BO_ACIDIFIED_ZONE_WATER# +40# +52# +64# +76# +88# +@ +BO_ACIDIFIED_ZONE_GROUND# +40# +52# +64# +76# +88# +@ +BO_ACIDIFIED_ZONE_FIRE# +40# +52# +64# +76# +88# +@ +BO_ACIDIFIED_ZONE_WIND# +40# +52# +64# +76# +88# +@ +BO_WOODENWARRIOR# +100# +120# +140# +160# +180# +@ +BO_WOODEN_FAIRY# +120# +155# +180# +205# +230# +@ +BO_CREEPER# +80# +96# +112# +128# +144# +@ +BO_RESEARCHREPORT# +60# +@ +BO_HELLTREE# +100# +100# +100# +100# +100# +@ +BO_EXPLOSIVE_POWDER# +58# +62# +66# +70# +74# +@ +BO_MAYHEMIC_THORNS# +68# +70# +72# +74# +76# +78# +80# +82# +84# +86# +@ +WH_WIND_SIGN# +100# +90# +80# +70# +60# +@ +WH_HAWKRUSH# +40# +44# +48# +52# +56# +@ +WH_HAWK_M# +5# +@ +WH_CALAMITYGALE# +300# +@ +WH_HAWKBOOMERANG# +120# +120# +120# +120# +120# +@ +WH_GALESTORM# +80# +91# +102# +113# +124# +135# +146# +157# +168# +179# +@ +WH_DEEPBLINDTRAP# +50# +53# +56# +59# +62# +@ +WH_SOLIDTRAP# +70# +80# +90# +100# +110# +@ +WH_SWIFTTRAP# +60# +62# +64# +66# +68# +@ +WH_FLAMETRAP# +40# +44# +48# +52# +56# +@ +WH_CRESCIVE_BOLT# +55# +60# +65# +70# +75# +80# +85# +90# +95# +100# +@ +TR_RETROSPECTION# +1# +@ +TR_MYSTIC_SYMPHONY# +250# +@ +TR_KVASIR_SONATA# +300# +@ +TR_ROSEBLOSSOM# +215# +230# +245# +260# +275# +@ +TR_RHYTHMSHOOTING# +80# +92# +104# +116# +128# +@ +TR_METALIC_FURY# +120# +132# +144# +156# +168# +@ +TR_SOUNDBLEND# +80# +92# +104# +116# +128# +@ +TR_GEF_NOCTURN# +120# +160# +200# +240# +280# +@ +TR_ROKI_CAPRICCIO# +120# +160# +200# +240# +280# +@ +TR_AIN_RHAPSODY# +120# +160# +200# +240# +280# +@ +TR_MUSICAL_INTERLUDE# +171# +182# +193# +204# +215# +@ +TR_JAWAII_SERENADE# +140# +150# +160# +170# +180# +@ +TR_NIPELHEIM_REQUIEM# +120# +160# +200# +240# +280# +@ +TR_PRON_MARCH# +140# +150# +160# +170# +180# +@ +ABC_STRIP_SHADOW# +29# +33# +37# +41# +45# +@ +ABC_ABYSS_DAGGER# +40# +45# +50# +55# +60# +@ +ABC_UNLUCKY_RUSH# +30# +35# +40# +45# +50# +@ +ABC_CHAIN_REACTION_SHOT# +40# +50# +60# +70# +80# +@ +ABC_FROM_THE_ABYSS# +40# +50# +60# +70# +80# +@ +ABC_ABYSS_SLAYER# +100# +100# +100# +100# +100# +100# +100# +100# +100# +100# +@ +ABC_ABYSS_STRIKE# +150# +150# +150# +150# +150# +150# +150# +150# +150# +150# +@ +ABC_DEFT_STAB# +28# +31# +34# +37# +40# +43# +46# +49# +52# +55# +@ +ABC_ABYSS_SQUARE# +65# +75# +85# +95# +105# +@ +ABC_FRENZY_SHOT# +40# +45# +50# +55# +60# +65# +70# +75# +80# +85# +@ +MT_AXE_STOMP# +25# +30# +35# +40# +45# +@ +MT_RUSH_QUAKE# +150# +150# +150# +150# +150# +150# +150# +150# +150# +150# +@ +MT_M_MACHINE# +30# +40# +50# +60# +70# +@ +MT_A_MACHINE# +43# +46# +49# +52# +55# +@ +MT_D_MACHINE# +43# +46# +49# +52# +55# +@ +MT_SUMMON_ABR_BATTLE_WARIOR# +30# +40# +50# +60# +@ +MT_SUMMON_ABR_DUAL_CANNON# +30# +40# +50# +60# +@ +MT_SUMMON_ABR_MOTHER_NET# +30# +40# +50# +60# +@ +MT_SUMMON_ABR_INFINITY# +30# +40# +50# +60# +@ +MT_SPARK_BLASTER# +48# +52# +56# +60# +64# +68# +72# +76# +80# +84# +@ +MT_TRIPLE_LASER# +40# +45# +50# +55# +60# +@ +MT_MIGHTY_SMASH# +51# +54# +57# +60# +63# +66# +69# +72# +75# +78# +@ +EM_SPELL_ENCHANTING# +43# +46# +49# +52# +55# +@ +EM_ACTIVITY_BURN# +30# +40# +50# +60# +70# +@ +EM_INCREASING_ACTIVITY# +30# +40# +50# +60# +70# +@ +EM_DIAMOND_STORM# +84# +88# +92# +96# +100# +@ +EM_LIGHTNING_LAND# +65# +70# +80# +85# +95# +@ +EM_VENOM_SWAMP# +84# +88# +92# +96# +100# +@ +EM_CONFLAGRATION# +70# +80# +90# +100# +110# +@ +EM_TERRA_DRIVE# +84# +88# +92# +96# +100# +@ +EM_SUMMON_ELEMENTAL_ARDOR# +100# +@ +EM_SUMMON_ELEMENTAL_DILUVIO# +100# +@ +EM_SUMMON_ELEMENTAL_PROCELLA# +100# +@ +EM_SUMMON_ELEMENTAL_TERREMOTUS# +100# +@ +EM_SUMMON_ELEMENTAL_SERPENS# +100# +@ +EM_ELEMENTAL_BUSTER# +150# +150# +150# +150# +150# +150# +150# +150# +150# +150# +@ +EM_ELEMENTAL_VEIL# +70# +75# +80# +85# +90# +@ +MH_BLAST_FORGE# +52# +59# +66# +73# +80# +87# +94# +101# +108# +115# +@ +MH_TEMPERING# +83# +91# +99# +107# +115# +123# +131# +139# +147# +155# +@ +MH_TWISTER_CUTTER# +106# +112# +118# +124# +130# +136# +142# +148# +154# +160# +@ +MH_ABSOLUTE_ZEPHYR# +122# +129# +136# +143# +150# +157# +164# +171# +178# +185# +@ +MH_BLAZING_AND_FURIOUS# +103# +108# +113# +118# +123# +128# +133# +138# +143# +148# +@ +MH_THE_ONE_FIGHTER_RISES# +100# +106# +112# +118# +124# +130# +136# +142# +148# +154# +@ +MH_TOXIN_OF_MANDARA# +60# +65# +70# +75# +80# +85# +90# +95# +100# +105# +@ +MH_NEEDLE_STINGER# +74# +82# +90# +98# +106# +114# +122# +130# +138# +146# +@ +MH_GLANZEN_SPIES# +60# +65# +70# +75# +80# +85# +90# +95# +100# +105# +@ +MH_HEILIGE_PFERD# +122# +129# +136# +143# +150# +157# +164# +171# +178# +185# +@ +MH_GOLDENE_TONE# +124# +133# +142# +151# +160# +169# +178# +187# +196# +205# +@ +SKE_RISING_SUN# +25# +25# +25# +25# +25# +@ +SKE_NOON_BLAST# +24# +28# +32# +36# +40# +@ +SKE_SUNSET_BLAST# +28# +30# +32# +34# +36# +@ +SKE_RISING_MOON# +35# +35# +35# +35# +35# +@ +SKE_MIDNIGHT_KICK# +36# +40# +44# +48# +52# +@ +SKE_DAWN_BREAK# +34# +37# +40# +43# +46# +@ +SKE_TWINKLING_GALAXY# +30# +30# +30# +30# +30# +@ +SKE_STAR_BURST# +41# +45# +49# +53# +57# +@ +SKE_STAR_CANNON# +29# +33# +37# +41# +45# +@ +SKE_ALL_IN_THE_SKY# +100# +100# +100# +100# +100# +100# +100# +100# +100# +100# +@ +SKE_ENCHANTING_SKY# +100# +100# +100# +100# +100# +100# +100# +100# +100# +100# +@ +SOA_TALISMAN_OF_PROTECTION# +50# +55# +60# +65# +70# +@ +SOA_TALISMAN_OF_WARRIOR# +50# +55# +60# +65# +70# +@ +SOA_TALISMAN_OF_MAGICIAN# +50# +55# +60# +65# +70# +@ +SOA_SOUL_GATHERING# +80# +85# +90# +95# +100# +@ +SOA_TOTEM_OF_TUTELARY# +76# +92# +108# +124# +140# +@ +SOA_TALISMAN_OF_FIVE_ELEMENTS# +50# +55# +60# +65# +70# +@ +SOA_TALISMAN_OF_SOUL_STEALING# +30# +30# +30# +30# +30# +@ +SOA_EXORCISM_OF_MALICIOUS_SOUL# +60# +75# +90# +105# +120# +@ +SOA_TALISMAN_OF_BLUE_DRAGON# +42# +47# +52# +57# +62# +@ +SOA_TALISMAN_OF_WHITE_TIGER# +66# +69# +72# +75# +78# +@ +SOA_TALISMAN_OF_RED_PHOENIX# +65# +75# +85# +95# +105# +@ +SOA_TALISMAN_OF_BLACK_TORTOISE# +67# +79# +91# +103# +115# +@ +SOA_TALISMAN_OF_FOUR_BEARING_GOD# +70# +86# +102# +118# +134# +@ +SOA_CIRCLE_OF_DIRECTIONS_AND_ELEMENTALS# +90# +105# +120# +135# +150# +@ +SOA_SOUL_OF_HEAVEN_AND_EARTH# +90# +100# +110# +120# +130# +140# +150# +160# +170# +180# +@ +SH_CHUL_HO_SONIC_CLAW# +24# +27# +30# +33# +36# +39# +42# +@ +SH_HOWLING_OF_CHUL_HO# +32# +37# +42# +47# +52# +57# +62# +@ +SH_HOGOGONG_STRIKE# +50# +53# +56# +59# +62# +65# +68# +@ +SH_KI_SUL_WATER_SPRAYING# +61# +65# +69# +73# +77# +81# +85# +@ +SH_MARINE_FESTIVAL_OF_KI_SUL# +80# +90# +100# +110# +120# +@ +SH_SANDY_FESTIVAL_OF_KI_SUL# +80# +90# +100# +110# +120# +@ +SH_KI_SUL_RAMPAGE# +90# +100# +110# +120# +130# +140# +150# +@ +SH_COLORS_OF_HYUN_ROK# +90# +90# +90# +90# +90# +90# +90# +@ +SH_HYUN_ROKS_BREEZE# +56# +62# +68# +74# +80# +86# +92# +@ +SH_HYUN_ROK_CANNON# +44# +47# +50# +53# +56# +59# +62# +@ +SH_TEMPORARY_COMMUNION# +100# +100# +100# +100# +100# +@ +SH_BLESSING_OF_MYSTICAL_CREATURES# +100# +100# +100# +100# +100# +@ +NW_INTENSIVE_AIM# +10# +@ +NW_GRENADE_FRAGMENT# +50# +50# +50# +50# +50# +50# +50# +@ +NW_THE_VIGILANTE_AT_NIGHT# +49# +53# +57# +61# +65# +@ +NW_ONLY_ONE_BULLET# +30# +32# +34# +36# +38# +@ +NW_SPIRAL_SHOOTING# +48# +53# +58# +63# +68# +@ +NW_MAGAZINE_FOR_ONE# +30# +33# +36# +39# +42# +@ +NW_WILD_FIRE# +51# +55# +59# +63# +67# +@ +NW_BASIC_GRENADE# +31# +37# +43# +49# +55# +@ +NW_HASTY_FIRE_IN_THE_HOLE# +50# +53# +56# +59# +62# +@ +NW_GRENADES_DROPPING# +54# +60# +66# +72# +78# +@ +NW_AUTO_FIRING_LAUNCHER# +90# +100# +110# +120# +130# +@ +NW_HIDDEN_CARD# +150# +150# +150# +150# +150# +150# +150# +150# +150# +150# +@ +NW_MISSION_BOMBARD# +150# +150# +150# +150# +150# +150# +150# +150# +150# +150# +@ +HN_DOUBLEBOWLINGBASH# +54# +56# +58# +60# +62# +64# +66# +68# +70# +72# +@ +HN_SHIELD_CHAIN_RUSH# +38# +41# +44# +47# +50# +53# +56# +59# +62# +65# +@ +HN_MEGA_SONIC_BLOW# +27# +29# +31# +33# +35# +37# +39# +41# +43# +45# +@ +HN_SPIRAL_PIERCE_MAX# +20# +23# +26# +29# +32# +35# +38# +41# +44# +47# +@ +HN_METEOR_STORM_BUSTER# +55# +58# +61# +64# +67# +70# +73# +76# +79# +82# +@ +HN_JUPITEL_THUNDER_STORM# +50# +52# +54# +56# +58# +60# +62# +64# +66# +68# +@ +HN_JACK_FROST_NOVA# +58# +61# +64# +67# +70# +73# +76# +79# +82# +85# +@ +HN_HELLS_DRIVE# +43# +46# +49# +52# +55# +58# +61# +64# +67# +70# +@ +HN_GROUND_GRAVITATION# +70# +72# +74# +76# +78# +80# +82# +84# +86# +88# +@ +HN_NAPALM_VULCAN_STRIKE# +40# +42# +44# +46# +48# +50# +52# +54# +56# +58# +@ +HN_BREAKINGLIMIT# +150# +@ +HN_RULEBREAK# +150# +@ +SS_SHINKIROU# +25# +@ +SS_TOKEDASU# +35# +35# +35# +35# +35# +@ +SS_SHIMIRU# +40# +40# +40# +40# +40# +@ +SS_AKUMUKESU# +10# +@ +SS_KAGEGARI# +30# +32# +34# +36# +38# +40# +42# +44# +46# +48# +@ +SS_KAGENOMAI# +30# +33# +36# +39# +42# +45# +48# +51# +49# +52# +@ +SS_KAGEGISSEN# +36# +39# +42# +45# +48# +51# +54# +57# +60# +63# +@ +SS_FUUMASHOUAKU# +38# +40# +42# +44# +46# +48# +50# +52# +54# +56# +@ +SS_FUUMAKOUCHIKU# +34# +37# +40# +43# +46# +49# +52# +55# +58# +61# +@ +SS_KUNAIWAIKYOKU# +28# +30# +32# +34# +36# +38# +40# +42# +44# +46# +@ +SS_KUNAIKAITEN# +55# +55# +55# +55# +55# +@ +SS_KUNAIKUSSETSU# +50# +50# +50# +50# +50# +50# +50# +50# +50# +50# +@ +SS_SEKIENHOU# +44# +46# +48# +50# +52# +54# +56# +58# +60# +62# +@ +SS_REIKETSUHOU# +34# +37# +40# +43# +46# +49# +52# +55# +58# +61# +@ +SS_RAIDENPOU# +44# +46# +48# +50# +52# +54# +56# +58# +60# +62# +@ +SS_KINRYUUHOU# +30# +32# +34# +36# +38# +40# +42# +44# +46# +48# +@ +SS_ANTENPOU# +40# +42# +44# +46# +48# +50# +52# +54# +56# +58# +@ +SS_KAGEAKUMU# +70# +@ +SS_HITOUAKUMU# +70# +@ +SS_ANKOKURYUUAKUMU# +120# +@ From e5a8fae8781b2ca70f6ed1b299870c48f74795ec Mon Sep 17 00:00:00 2001 From: baphomello Date: Wed, 4 Mar 2026 14:59:22 -0300 Subject: [PATCH 07/10] chore: add laRO to README server list and clean up sys.txt plugins - Adds laRO (Landverse America) entry to the supported servers table in README.md with maintainer credit - Removes server-specific plugins from loadPlugins_list in sys.txt, keeping only the standard set --- README.md | 1 + control/config.txt | 2 +- control/sys.txt | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index baaee51e3a..1812d74521 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,7 @@ git clone https://github.com/OpenKore/openkore.git | [jRO](https://ragnarokonline.gungho.jp/) | Japan RO | nProtect | Not working | N/A | | [kRO](http://ro.gnjoy.com/) | Korea RO | nProtect | Not working | N/A | | [kRO Zero](http://roz.gnjoy.com/) | Korea RO | nProtect | Not working | N/A | +| [laRO](https://rola.maxion.gg/) | Latam (Landverse America) | Custom | Working | [Baphomello](https://github.com/baphomello) | | [ROla](https://www.gnjoylatam.com/) | Latam RO | nProtect | Not working | N/A | | [ruRO Prime](https://ru.4game.com/roprime/) | Russia RO | Frost Security | Not Working | ya4ept | | [tRO Chaos/Thor](https://ro.gnjoy.in.th/) | Thailand RO (Online) | nProtect | Not Working | N/A | diff --git a/control/config.txt b/control/config.txt index f7b30b9704..3c1a137367 100644 --- a/control/config.txt +++ b/control/config.txt @@ -1029,4 +1029,4 @@ logToFile_Debug logToFile_Errors logToFile_Messages logToFile_Warnings -history_max 50 +history_max 50 \ No newline at end of file diff --git a/control/sys.txt b/control/sys.txt index 05807b7518..305d81b40d 100644 --- a/control/sys.txt +++ b/control/sys.txt @@ -50,7 +50,7 @@ loadPlugins 2 # loadPlugins_list # if loadPlugins is set to 2, this comma-separated list of plugin names (filename without the extension) # specifies which plugin files to load at startup or when the "plugin load all" command is used. -loadPlugins_list macro,profiles,breakTime,raiseStat,raiseSkill,map,reconnect,eventMacro,item_weight_recorder,xconf,OTP,LatamChecksum,AdventureAgency,LATAMTranslate +loadPlugins_list macro,profiles,breakTime,raiseStat,raiseSkill,map,reconnect,eventMacro,item_weight_recorder,xconf # skipPlugins_list # if loadPlugins is set to 3, this comma-separated list of plugin names (filename without the extension) From a644b661ee339a983faa0853f1785704c7284236 Mon Sep 17 00:00:00 2001 From: baphomello Date: Sat, 7 Mar 2026 14:52:01 -0300 Subject: [PATCH 08/10] chore(control): Undo LATAM-exclusive changes --- control/config.txt | 2 +- control/sys.txt | 2 +- plugins/shopIndexer | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) create mode 160000 plugins/shopIndexer diff --git a/control/config.txt b/control/config.txt index a5e23d2910..e5dd6adb19 100644 --- a/control/config.txt +++ b/control/config.txt @@ -1031,4 +1031,4 @@ logToFile_Debug logToFile_Errors logToFile_Messages logToFile_Warnings -history_max 50 \ No newline at end of file +history_max 50 diff --git a/control/sys.txt b/control/sys.txt index 305d81b40d..05807b7518 100644 --- a/control/sys.txt +++ b/control/sys.txt @@ -50,7 +50,7 @@ loadPlugins 2 # loadPlugins_list # if loadPlugins is set to 2, this comma-separated list of plugin names (filename without the extension) # specifies which plugin files to load at startup or when the "plugin load all" command is used. -loadPlugins_list macro,profiles,breakTime,raiseStat,raiseSkill,map,reconnect,eventMacro,item_weight_recorder,xconf +loadPlugins_list macro,profiles,breakTime,raiseStat,raiseSkill,map,reconnect,eventMacro,item_weight_recorder,xconf,OTP,LatamChecksum,AdventureAgency,LATAMTranslate # skipPlugins_list # if loadPlugins is set to 3, this comma-separated list of plugin names (filename without the extension) diff --git a/plugins/shopIndexer b/plugins/shopIndexer new file mode 160000 index 0000000000..8c0b92eb5b --- /dev/null +++ b/plugins/shopIndexer @@ -0,0 +1 @@ +Subproject commit 8c0b92eb5b743d884c78b2cfd1bfa933d507d993 From 9efe50e1213e35f30621e20330f2c25add0a0539 Mon Sep 17 00:00:00 2001 From: baphomello Date: Sat, 7 Mar 2026 14:54:16 -0300 Subject: [PATCH 09/10] chore(plugins): remove accidentally committed plugin --- plugins/shopIndexer | 1 - 1 file changed, 1 deletion(-) delete mode 160000 plugins/shopIndexer diff --git a/plugins/shopIndexer b/plugins/shopIndexer deleted file mode 160000 index 8c0b92eb5b..0000000000 --- a/plugins/shopIndexer +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 8c0b92eb5b743d884c78b2cfd1bfa933d507d993 From 87578d625ce81daf1f0d2ff7113822ef4775f9c1 Mon Sep 17 00:00:00 2001 From: baphomello Date: Sat, 7 Mar 2026 15:03:56 -0300 Subject: [PATCH 10/10] chore(src): minimize changes for review --- README.md | 2 +- src/Network/MessageTokenizer.pm | 29 +++++++++++++++++------------ src/Network/Receive.pm | 15 +++++++-------- 3 files changed, 25 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index 1812d74521..db3ba6e7cf 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ git clone https://github.com/OpenKore/openkore.git | [jRO](https://ragnarokonline.gungho.jp/) | Japan RO | nProtect | Not working | N/A | | [kRO](http://ro.gnjoy.com/) | Korea RO | nProtect | Not working | N/A | | [kRO Zero](http://roz.gnjoy.com/) | Korea RO | nProtect | Not working | N/A | -| [laRO](https://rola.maxion.gg/) | Latam (Landverse America) | Custom | Working | [Baphomello](https://github.com/baphomello) | +| [laRO](https://rola.maxion.gg/) | Latam (Landverse America) | Custom | Not working | N/A | | [ROla](https://www.gnjoylatam.com/) | Latam RO | nProtect | Not working | N/A | | [ruRO Prime](https://ru.4game.com/roprime/) | Russia RO | Frost Security | Not Working | ya4ept | | [tRO Chaos/Thor](https://ro.gnjoy.in.th/) | Thailand RO (Online) | nProtect | Not Working | N/A | diff --git a/src/Network/MessageTokenizer.pm b/src/Network/MessageTokenizer.pm index 53b6425b29..db980dc5d9 100644 --- a/src/Network/MessageTokenizer.pm +++ b/src/Network/MessageTokenizer.pm @@ -130,20 +130,25 @@ sub readNext { if ($nextMessageMightBeAccountID) { if (length($$buffer) >= 4) { - $result = substr($$buffer, 0, 4); - - if ($masterServer->{accountIdFromBuffer} || - unpack("V1",$result) == unpack("V1",$Globals::accountID)) { - $Globals::accountID = $result if $masterServer->{accountIdFromBuffer}; - substr($$buffer, 0, 4, ''); - $$type = ACCOUNT_ID; - } else { - return $self->readNext($type); - } - } else { - $self->{nextMessageMightBeAccountID} = $nextMessageMightBeAccountID; + + $result = substr($$buffer, 0, 4); + + if ($masterServer->{accountIdFromBuffer}) { + $Globals::accountID = $result if $masterServer->{accountIdFromBuffer}; } + if (unpack("V1",$result) == unpack("V1",$Globals::accountID)) { + substr($$buffer, 0, 4, ''); + $$type = ACCOUNT_ID; + } else { + # Account ID is "hidden" in a packet (0283 is one of them) + return $self->readNext($type); + } + + } else { + $self->{nextMessageMightBeAccountID} = $nextMessageMightBeAccountID; + } + } elsif ($size > 1) { # Static length message. if (length($$buffer) >= $size) { diff --git a/src/Network/Receive.pm b/src/Network/Receive.pm index b7a052b849..34f7786cf4 100644 --- a/src/Network/Receive.pm +++ b/src/Network/Receive.pm @@ -712,7 +712,7 @@ sub received_characters_blockSize { sub received_characters_unpackString { my $char_info; for ($masterServer && $masterServer->{charBlockSize}) { - if ($_ == 247) { # PACKETVER >= 20211103? [extended char block: character name increased to 96 bytes] + if ($_ == 247) { # PACKETVER >= 20211103? [extended char block: character name increased to 96 bytes] $char_info = { types => 'a4 V2 V V2 V6 v V2 V2 V2 V2 v2 V v9 Z96 C8 v Z16 V4 C', keys => [qw(charID exp exp_2 zeny exp_job exp_job_2 lv_job body_state health_state effect_state stance manner status_point hp hp_2 hp_max hp_max_2 sp sp_2 sp_max sp_max_2 walkspeed jobID hair_style weapon lv skill_point head_bottom shield head_top head_mid hair_pallete clothes_color name str agi vit int dex luk slot hair_color is_renamed last_map delete_date robe slot_addon rename_addon sex)], @@ -1062,12 +1062,12 @@ sub parse_account_server_info { keys => [qw(ip port name state users property ip_port unknown)], }; - } elsif ($args->{switch} eq '0AC4' || $args->{switch} eq '0B07') { # kRO Zero 2017, kRO ST 201703+, vRO 2021 - $server_info = { - len => 160, - types => 'a4 v Z20 v3 a128', - keys => [qw(ip port name users state property ip_port)], - }; + } elsif ($args->{switch} eq '0AC4' || $args->{switch} eq '0B07') { # kRO Zero 2017, kRO ST 201703+, vRO 2021 + $server_info = { + len => 160, + types => 'a4 v Z20 v3 a128', + keys => [qw(ip port name users state property ip_port)], + }; } elsif ($args->{switch} eq '0AC9') { # cRO 2017 $server_info = { @@ -1108,7 +1108,6 @@ sub parse_account_server_info { $server{ip} = inet_ntoa($server{ip}); } $server{name} = bytesToString($server{name}); - $server{name} =~ s/[^\x20-\x7E]//g; # Remove non-printable characters from server name \%server } unpack '(a'.$server_info->{len}.')*', $args->{serverInfo};